Booster for WooCommerce - Version 3.0.0

Version Description

  • 31/07/2017 =
  • Dev - Plugin update checker added.
  • Dev - wcj_modules filter added.
  • Dev - WC_Settings_Jetpack - wcj_custom_dashboard_modules filter added.
  • Dev - Shortcodes - Orders - [wcj_order_billing_country_name] and [wcj_order_shipping_country_name] shortcodes added.
  • Dev - Shortcodes - Orders - [wcj_order_items_table] - columns - item_product_addons column added.
  • Fix - PRICES & CURRENCIES - Offer Your Price - Button Options - CSS Class - Fixed (wasn't applied at all).
  • Dev - PRICES & CURRENCIES - Product Price by Formula - Compatibility with "Products XML" module added.
  • Dev - PRODUCTS - Bookings - Datepicker Options - "Exclude Months" options added.
  • Dev - PRODUCTS - Bookings - Datepicker Options - "Exclude Days" options added.
  • Dev - PRODUCTS - Product Addons - All Products Addons - "Exclude Products" option added.
  • Dev - PRODUCTS - Product Addons - "Title" option added.
  • Dev - PRODUCTS - Product Addons - "Placeholder" option (for "Select Box" type only) added.
  • Dev - PRODUCTS - Product Addons - "Select Box" type added.
  • Dev - PRODUCTS - Product Bulk Meta Editor - Restyling; minor fixes.
  • Dev - PAYMENT GATEWAYS - Gateways Currency Converter - Module renamed (was "Gateways Currency").
  • Dev - PAYMENT GATEWAYS - Gateways by Currency - Initial module release.
  • Dev - PDF INVOICING & PACKING SLIPS - Styling - wcj_pdf_invoicing_fonts filter added.
  • Dev - EMAILS & MISC. - Admin Bar - Booster - Dashboard - wcj_admin_bar_dashboard_nodes filter added.
  • Dev - EMAILS & MISC. - Export - Date ranges added.
Download this release

Release Info

Developer algoritmika
Plugin Icon 128x128 Booster for WooCommerce
Version 3.0.0
Comparing to
See all releases

Code changes from version 2.9.1 to 3.0.0

Files changed (41) hide show
  1. includes/admin/class-wc-settings-jetpack.php +58 -14
  2. includes/admin/wcj-modules-cats.php +4 -3
  3. includes/class-wcj-admin-bar.php +4 -4
  4. includes/class-wcj-export-import.php +43 -3
  5. includes/class-wcj-offer-price.php +6 -4
  6. includes/class-wcj-payment-gateways-by-currency.php +62 -0
  7. includes/class-wcj-payment-gateways-by-user-role.php +3 -3
  8. includes/class-wcj-payment-gateways-currency.php +5 -5
  9. includes/class-wcj-product-addons.php +63 -15
  10. includes/class-wcj-product-bookings.php +13 -4
  11. includes/class-wcj-product-bulk-meta-editor.php +21 -13
  12. includes/class-wcj-product-price-by-formula.php +3 -3
  13. includes/classes/class-wcj-module.php +4 -2
  14. includes/classes/class-wcj-scripts.php +3 -2
  15. includes/css/wcj-offer-price.css +3 -1
  16. includes/emails/class-wc-email-wcj-custom.php +1 -0
  17. includes/export/class-wcj-exporter-customers.php +7 -4
  18. includes/export/class-wcj-exporter-orders.php +11 -5
  19. includes/export/class-wcj-exporter-products.php +3 -2
  20. includes/functions/wcj-general-functions.php +24 -1
  21. includes/functions/wcj-product-functions.php +66 -1
  22. includes/js/wcj-datepicker.js +28 -3
  23. includes/js/wcj-product-addons.js +5 -10
  24. includes/lib/PHPMathParser/Expressions.php +110 -110
  25. includes/lib/PHPMathParser/Math.php +120 -120
  26. includes/lib/PHPMathParser/Stack.php +21 -21
  27. includes/lib/PHPMathParser/TerminalExpression.php +53 -53
  28. includes/lib/tcpdf_min/fonts/stsongstdlight.php +39 -39
  29. includes/lib/wSelect/wSelect.css +178 -178
  30. includes/settings/meta-box/wcj-settings-meta-box-product-addons.php +18 -4
  31. includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php +2 -2
  32. includes/settings/wcj-settings-offer-price.php +2 -1
  33. includes/settings/wcj-settings-payment-gateways-by-currency.php +72 -0
  34. includes/settings/wcj-settings-pdf-invoicing-styling.php +3 -3
  35. includes/settings/wcj-settings-product-addons.php +31 -4
  36. includes/settings/wcj-settings-product-bookings.php +61 -1
  37. includes/settings/wcj-settings-product-by-date.php +2 -2
  38. includes/shortcodes/class-wcj-order-items-shortcodes.php +5 -2
  39. includes/shortcodes/class-wcj-orders-shortcodes.php +34 -2
  40. langs/woocommerce-jetpack-de_DE.po +10815 -10815
  41. langs/woocommerce-jetpack.pot +0 -7865
includes/admin/class-wc-settings-jetpack.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Settings
4
  *
5
- * @version 2.9.1
6
  * @since 1.0.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -16,7 +16,7 @@ class WC_Settings_Jetpack extends WC_Settings_Page {
16
  /**
17
  * Constructor.
18
  *
19
- * @version 2.8.0
20
  */
21
  function __construct() {
22
 
@@ -25,6 +25,8 @@ class WC_Settings_Jetpack extends WC_Settings_Page {
25
 
26
  $this->cats = include( 'wcj-modules-cats.php' );
27
 
 
 
28
  add_filter( 'woocommerce_settings_tabs_array', array( $this, 'add_settings_page' ), 20 );
29
  add_action( 'woocommerce_settings_' . $this->id, array( $this, 'output' ) );
30
  add_action( 'woocommerce_settings_save_' . $this->id, array( $this, 'save' ) );
@@ -55,7 +57,7 @@ class WC_Settings_Jetpack extends WC_Settings_Page {
55
  /**
56
  * Output sections (modules) sub menu
57
  *
58
- * @version 2.9.0
59
  */
60
  function output_sections_submenu() {
61
  global $current_section;
@@ -81,6 +83,11 @@ class WC_Settings_Jetpack extends WC_Settings_Page {
81
  $sections['by_category'] = __( 'By Category', 'woocommerce-jetpack' ) . ' <span class="count">(' . $all . ')</span>';
82
  $sections['active'] = __( 'Active', 'woocommerce-jetpack' ) . ' <span class="count">(' . $active . ')</span>';
83
  $sections['manager'] = __( 'Manage Settings', 'woocommerce-jetpack' );
 
 
 
 
 
84
  if ( '' == $current_section ) {
85
  $current_section = 'by_category';
86
  }
@@ -140,10 +147,20 @@ class WC_Settings_Jetpack extends WC_Settings_Page {
140
  return ( 'yes' === $active ) ? 'active' : 'inactive';
141
  }
142
 
 
 
 
 
 
 
 
 
 
 
143
  /**
144
  * Output the settings.
145
  *
146
- * @version 2.9.0
147
  * @todo (maybe) admin_notices
148
  */
149
  function output() {
@@ -154,8 +171,7 @@ class WC_Settings_Jetpack extends WC_Settings_Page {
154
  echo '<div id="wcj_message" class="updated"><p><strong>' . $wcj_notice . '</strong></p></div>';
155
  }
156
 
157
- $is_dashboard = ( '' != $current_section && 'alphabetically' != $current_section && 'by_category' != $current_section && 'active' != $current_section && 'manager' != $current_section )
158
- ? false : true;
159
 
160
  // Deprecated message
161
  if ( $replacement_module = wcj_is_module_deprecated( $current_section ) ) {
@@ -227,7 +243,7 @@ class WC_Settings_Jetpack extends WC_Settings_Page {
227
  /**
228
  * output_dashboard.
229
  *
230
- * @version 2.9.1
231
  */
232
  function output_dashboard( $current_section ) {
233
 
@@ -238,7 +254,9 @@ class WC_Settings_Jetpack extends WC_Settings_Page {
238
  $the_settings = $this->get_settings();
239
 
240
  echo '<h3>' . $the_settings[0]['title'] . '</h3>';
241
- if ( 'manager' != $current_section ) {
 
 
242
  echo '<p>' . $the_settings[0]['desc'] . '</p>';
243
  } else {
244
  echo '<p>' . __( 'This section lets you export, import or reset all Booster\'s modules settings.', 'woocommerce-jetpack' ) . '</p>';
@@ -295,7 +313,28 @@ class WC_Settings_Jetpack extends WC_Settings_Page {
295
  echo wcj_get_table_html( $table_data, array( 'table_class' => 'widefat striped', 'table_heading_type' => 'none' ) );
296
  }
297
 
298
- echo '<p style="text-align:right;color:gray;font-size:x-small;font-style:italic;">' . __( 'Version' ) . ': ' . get_option( 'booster_for_woocommerce_version', 'N/A' ) . '</p>';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
299
 
300
  $readme_html .= '</pre>';
301
  if ( isset( $_GET['woojetpack_readme'] ) ) echo $readme_html;
@@ -311,7 +350,7 @@ class WC_Settings_Jetpack extends WC_Settings_Page {
311
  /**
312
  * output_dashboard_modules.
313
  *
314
- * @version 2.9.0
315
  */
316
  function output_dashboard_modules( $settings, $cat_id = '' ) {
317
  $readme_html = '';
@@ -347,9 +386,12 @@ class WC_Settings_Jetpack extends WC_Settings_Page {
347
  }
348
  if ( '' != $cat_id ) {
349
  if ( 'active_modules_only' === $cat_id ) {
350
- if ( 'no' === get_option( $the_feature['id'] ) ) continue;
 
 
 
 
351
  }
352
- elseif ( $cat_id != $this->get_cat_by_section( $section ) ) continue;
353
  }
354
  $total_modules++;
355
  $html .= '<tr id="' . $the_feature['id'] . '" ' . 'class="' . $this->active( get_option( $the_feature['id'] ) ) . '">';
@@ -424,14 +466,16 @@ class WC_Settings_Jetpack extends WC_Settings_Page {
424
  /**
425
  * Get settings array
426
  *
427
- * @version 2.9.1
428
  * @return array
429
  */
430
  function get_settings( $current_section = '' ) {
431
- if ( '' != $current_section && 'alphabetically' != $current_section && 'by_category' != $current_section && 'active' != $current_section && 'manager' != $current_section ) {
432
  return apply_filters( 'wcj_settings_' . $current_section, array() );
433
  } elseif ( 'manager' === $current_section ) {
434
  return $this->get_manager_settings();
 
 
435
  } else {
436
  $cat_id = ( isset( $_GET['wcj-cat'] ) && '' != $_GET['wcj-cat'] ) ? $_GET['wcj-cat'] : 'dashboard';
437
  $settings[] = array(
2
  /**
3
  * Booster for WooCommerce - Settings
4
  *
5
+ * @version 3.0.0
6
  * @since 1.0.0
7
  * @author Algoritmika Ltd.
8
  */
16
  /**
17
  * Constructor.
18
  *
19
+ * @version 3.0.0
20
  */
21
  function __construct() {
22
 
25
 
26
  $this->cats = include( 'wcj-modules-cats.php' );
27
 
28
+ $this->custom_dashboard_modules = apply_filters( 'wcj_custom_dashboard_modules', array() );
29
+
30
  add_filter( 'woocommerce_settings_tabs_array', array( $this, 'add_settings_page' ), 20 );
31
  add_action( 'woocommerce_settings_' . $this->id, array( $this, 'output' ) );
32
  add_action( 'woocommerce_settings_save_' . $this->id, array( $this, 'save' ) );
57
  /**
58
  * Output sections (modules) sub menu
59
  *
60
+ * @version 3.0.0
61
  */
62
  function output_sections_submenu() {
63
  global $current_section;
83
  $sections['by_category'] = __( 'By Category', 'woocommerce-jetpack' ) . ' <span class="count">(' . $all . ')</span>';
84
  $sections['active'] = __( 'Active', 'woocommerce-jetpack' ) . ' <span class="count">(' . $active . ')</span>';
85
  $sections['manager'] = __( 'Manage Settings', 'woocommerce-jetpack' );
86
+ if ( ! empty( $this->custom_dashboard_modules ) ) {
87
+ foreach ( $this->custom_dashboard_modules as $custom_dashboard_module_id => $custom_dashboard_module_data ) {
88
+ $sections[ $custom_dashboard_module_id ] = $custom_dashboard_module_data['title'];
89
+ }
90
+ }
91
  if ( '' == $current_section ) {
92
  $current_section = 'by_category';
93
  }
147
  return ( 'yes' === $active ) ? 'active' : 'inactive';
148
  }
149
 
150
+ /**
151
+ * is_dashboard_section.
152
+ *
153
+ * @version 3.0.0
154
+ * @since 3.0.0
155
+ */
156
+ function is_dashboard_section( $current_section ) {
157
+ return in_array( $current_section, array_merge( array( '', 'alphabetically', 'by_category', 'active', 'manager' ), array_keys( $this->custom_dashboard_modules ) ) );
158
+ }
159
+
160
  /**
161
  * Output the settings.
162
  *
163
+ * @version 3.0.0
164
  * @todo (maybe) admin_notices
165
  */
166
  function output() {
171
  echo '<div id="wcj_message" class="updated"><p><strong>' . $wcj_notice . '</strong></p></div>';
172
  }
173
 
174
+ $is_dashboard = $this->is_dashboard_section( $current_section );
 
175
 
176
  // Deprecated message
177
  if ( $replacement_module = wcj_is_module_deprecated( $current_section ) ) {
243
  /**
244
  * output_dashboard.
245
  *
246
+ * @version 3.0.0
247
  */
248
  function output_dashboard( $current_section ) {
249
 
254
  $the_settings = $this->get_settings();
255
 
256
  echo '<h3>' . $the_settings[0]['title'] . '</h3>';
257
+ if ( isset( $this->custom_dashboard_modules[ $current_section ] ) ) {
258
+ echo '<p>' . $this->custom_dashboard_modules[ $current_section ]['desc'] . '</p>';
259
+ } elseif ( 'manager' != $current_section ) {
260
  echo '<p>' . $the_settings[0]['desc'] . '</p>';
261
  } else {
262
  echo '<p>' . __( 'This section lets you export, import or reset all Booster\'s modules settings.', 'woocommerce-jetpack' ) . '</p>';
313
  echo wcj_get_table_html( $table_data, array( 'table_class' => 'widefat striped', 'table_heading_type' => 'none' ) );
314
  }
315
 
316
+ if ( isset( $this->custom_dashboard_modules[ $current_section ] ) ) {
317
+ $table_data = array();
318
+ foreach ( $this->custom_dashboard_modules[ $current_section ]['settings'] as $_settings ) {
319
+ $table_data[] = array(
320
+ $_settings['title'],
321
+ '<label for="' . $_settings['id'] . '">' .
322
+ '<input name="' . $_settings['id'] .
323
+ '" id="' . $_settings['id'] .
324
+ '" type="' . $_settings['type'] .
325
+ '" class="' . $_settings['class'] .
326
+ '" value="' . get_option( $_settings['id'], $_settings['default'] )
327
+ . '">' . ' ' . '<em>' . $_settings['desc'] . '</em>' .
328
+ '</label>',
329
+ );
330
+ }
331
+ echo wcj_get_table_html( $table_data, array( 'table_class' => 'widefat striped', 'table_heading_type' => 'vertical' ) );
332
+ }
333
+
334
+ $plugin_data = get_plugin_data( wcj_plugin_file() );
335
+ $plugin_title = ( isset( $plugin_data['Name'] ) ? '[' . $plugin_data['Name'] . '] ' : '' );
336
+ echo '<p style="text-align:right;color:gray;font-size:x-small;font-style:italic;">' . $plugin_title .
337
+ __( 'Version', 'woocommerce-jetpack' ) . ': ' . get_option( 'booster_for_woocommerce_version', 'N/A' ) . '</p>';
338
 
339
  $readme_html .= '</pre>';
340
  if ( isset( $_GET['woojetpack_readme'] ) ) echo $readme_html;
350
  /**
351
  * output_dashboard_modules.
352
  *
353
+ * @version 3.0.0
354
  */
355
  function output_dashboard_modules( $settings, $cat_id = '' ) {
356
  $readme_html = '';
386
  }
387
  if ( '' != $cat_id ) {
388
  if ( 'active_modules_only' === $cat_id ) {
389
+ if ( 'no' === get_option( $the_feature['id'], 'no' ) ) {
390
+ continue;
391
+ }
392
+ } elseif ( $cat_id != $this->get_cat_by_section( $section ) ) {
393
+ continue;
394
  }
 
395
  }
396
  $total_modules++;
397
  $html .= '<tr id="' . $the_feature['id'] . '" ' . 'class="' . $this->active( get_option( $the_feature['id'] ) ) . '">';
466
  /**
467
  * Get settings array
468
  *
469
+ * @version 3.0.0
470
  * @return array
471
  */
472
  function get_settings( $current_section = '' ) {
473
+ if ( ! $this->is_dashboard_section( $current_section ) ) {
474
  return apply_filters( 'wcj_settings_' . $current_section, array() );
475
  } elseif ( 'manager' === $current_section ) {
476
  return $this->get_manager_settings();
477
+ } elseif ( isset( $this->custom_dashboard_modules[ $current_section ] ) ) {
478
+ return $this->custom_dashboard_modules[ $current_section ]['settings'];
479
  } else {
480
  $cat_id = ( isset( $_GET['wcj-cat'] ) && '' != $_GET['wcj-cat'] ) ? $_GET['wcj-cat'] : 'dashboard';
481
  $settings[] = array(
includes/admin/wcj-modules-cats.php CHANGED
@@ -4,12 +4,12 @@
4
  *
5
  * The WooCommerce Modules Array.
6
  *
7
- * @version 2.9.1
8
  * @since 2.2.0
9
  * @author Algoritmika Ltd.
10
  */
11
 
12
- return array(
13
 
14
  'dashboard' => array(
15
  'label' => __( 'Dashboard', 'woocommerce-jetpack' ),
@@ -111,6 +111,7 @@ return array(
111
  'payment_gateways_fees',
112
  'payment_gateways_per_category',
113
  'payment_gateways_currency',
 
114
  'payment_gateways_min_max',
115
  'payment_gateways_by_country',
116
  'payment_gateways_by_user_role',
@@ -175,4 +176,4 @@ return array(
175
  ),
176
  ),
177
 
178
- );
4
  *
5
  * The WooCommerce Modules Array.
6
  *
7
+ * @version 3.0.0
8
  * @since 2.2.0
9
  * @author Algoritmika Ltd.
10
  */
11
 
12
+ return apply_filters( 'wcj_modules', array(
13
 
14
  'dashboard' => array(
15
  'label' => __( 'Dashboard', 'woocommerce-jetpack' ),
111
  'payment_gateways_fees',
112
  'payment_gateways_per_category',
113
  'payment_gateways_currency',
114
+ 'payment_gateways_by_currency',
115
  'payment_gateways_min_max',
116
  'payment_gateways_by_country',
117
  'payment_gateways_by_user_role',
176
  ),
177
  ),
178
 
179
+ ) );
includes/class-wcj-admin-bar.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Module - Admin Bar
4
  *
5
- * @version 2.9.1
6
  * @since 2.9.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -117,7 +117,7 @@ class WCJ_Admin_Bar extends WCJ_Module {
117
  /**
118
  * get_nodes_booster_modules.
119
  *
120
- * @version 2.9.1
121
  * @since 2.9.0
122
  * @todo (maybe) dashes instead of underscores
123
  * @todo (maybe) dashboard > alphabetically - list all modules
@@ -134,7 +134,7 @@ class WCJ_Admin_Bar extends WCJ_Module {
134
  'meta' => array( 'title' => strip_tags( $label_info['desc'] ) ),
135
  );
136
  if ( 'dashboard' === $id ) {
137
- $nodes[ $id ]['nodes'] = array(
138
  'alphabetically' => array(
139
  'title' => __( 'Alphabetically', 'woocommerce-jetpack' ),
140
  'href' => admin_url( 'admin.php?page=wc-settings&tab=jetpack&wcj-cat=dashboard&section=alphabetically' ),
@@ -151,7 +151,7 @@ class WCJ_Admin_Bar extends WCJ_Module {
151
  'title' => __( 'Manage Settings', 'woocommerce-jetpack' ),
152
  'href' => admin_url( 'admin.php?page=wc-settings&tab=jetpack&wcj-cat=dashboard&section=manager' ),
153
  ),
154
- );
155
  } else {
156
  $cat_nodes = array();
157
  foreach ( $label_info['all_cat_ids'] as $link_id ) {
2
  /**
3
  * Booster for WooCommerce - Module - Admin Bar
4
  *
5
+ * @version 3.0.0
6
  * @since 2.9.0
7
  * @author Algoritmika Ltd.
8
  */
117
  /**
118
  * get_nodes_booster_modules.
119
  *
120
+ * @version 3.0.0
121
  * @since 2.9.0
122
  * @todo (maybe) dashes instead of underscores
123
  * @todo (maybe) dashboard > alphabetically - list all modules
134
  'meta' => array( 'title' => strip_tags( $label_info['desc'] ) ),
135
  );
136
  if ( 'dashboard' === $id ) {
137
+ $nodes[ $id ]['nodes'] = apply_filters( 'wcj_admin_bar_dashboard_nodes', array(
138
  'alphabetically' => array(
139
  'title' => __( 'Alphabetically', 'woocommerce-jetpack' ),
140
  'href' => admin_url( 'admin.php?page=wc-settings&tab=jetpack&wcj-cat=dashboard&section=alphabetically' ),
151
  'title' => __( 'Manage Settings', 'woocommerce-jetpack' ),
152
  'href' => admin_url( 'admin.php?page=wc-settings&tab=jetpack&wcj-cat=dashboard&section=manager' ),
153
  ),
154
+ ) );
155
  } else {
156
  $cat_nodes = array();
157
  foreach ( $label_info['all_cat_ids'] as $link_id ) {
includes/class-wcj-export-import.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Module - Export
4
  *
5
- * @version 2.8.0
6
  * @since 2.5.4
7
  * @author Algoritmika Ltd.
8
  * @todo import products, customers and (maybe) orders
@@ -65,6 +65,7 @@ class WCJ_Export_Import extends WCJ_Module {
65
  * @version 2.5.9
66
  * @since 2.4.8
67
  * @todo when filtering now using strpos, but other options would be stripos (case-insensitive) or strict equality
 
68
  */
69
  function export( $tool_id ) {
70
  $data = array();
@@ -217,15 +218,53 @@ class WCJ_Export_Import extends WCJ_Module {
217
  }
218
  }
219
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
220
  /**
221
  * create_export_tool.
222
  *
223
- * @version 2.5.9
224
  * @since 2.4.8
225
  */
226
  function create_export_tool( $tool_id ) {
227
- $data = $this->export( $tool_id );
228
  echo $this->get_tool_header_html( 'export_' . $tool_id );
 
 
 
 
229
  echo '<form method="post" action="">';
230
  echo '<p>' . $this->export_filter_fields( $tool_id ) . '</p>';
231
  echo '<p>';
@@ -236,6 +275,7 @@ class WCJ_Export_Import extends WCJ_Module {
236
  echo '<input style="float:right;margin-right:10px;" type="text" name="wcj_export_filter_all_columns" value="' . ( isset( $_POST['wcj_export_filter_all_columns'] ) ? $_POST['wcj_export_filter_all_columns'] : '' ) . '">';
237
  echo '</p>';
238
  echo '</form>';
 
239
  echo ( is_array( $data ) ) ? wcj_get_table_html( $data, array( 'table_class' => 'widefat striped' ) ) : $data;
240
  }
241
 
2
  /**
3
  * Booster for WooCommerce - Module - Export
4
  *
5
+ * @version 3.0.0
6
  * @since 2.5.4
7
  * @author Algoritmika Ltd.
8
  * @todo import products, customers and (maybe) orders
65
  * @version 2.5.9
66
  * @since 2.4.8
67
  * @todo when filtering now using strpos, but other options would be stripos (case-insensitive) or strict equality
68
+ * @todo (maybe) do filtering directly in WP_Query
69
  */
70
  function export( $tool_id ) {
71
  $data = array();
218
  }
219
  }
220
 
221
+ /**
222
+ * export_date_fields.
223
+ *
224
+ * @version 3.0.0
225
+ * @since 3.0.0
226
+ * @todo mark current (i.e. active) link (if exists)
227
+ */
228
+ function export_date_fields( $tool_id ) {
229
+ $current_start_date = ( isset( $_GET['start_date'] ) ? $_GET['start_date'] : '' );
230
+ $current_end_date = ( isset( $_GET['end_date'] ) ? $_GET['end_date'] : '' );
231
+ $predefined_ranges = array();
232
+ $predefined_ranges[] = '<a href="' . add_query_arg( 'range', 'all_time', remove_query_arg( array( 'start_date', 'end_date' ) ) ) . '">' .
233
+ __( 'All time', 'woocommerce-jetpack' ) . '</a>';
234
+ foreach ( array_merge( wcj_get_reports_standard_ranges(), wcj_get_reports_custom_ranges() ) as $range_id => $range_data ) {
235
+ $link = add_query_arg( array(
236
+ 'start_date' => $range_data['start_date'],
237
+ 'end_date' => $range_data['end_date'],
238
+ 'range' => $range_id,
239
+ ) );
240
+ $predefined_ranges[] = '<a href="' . $link . '">' . $range_data['title'] . '</a>';
241
+ }
242
+ $predefined_ranges = implode( ' | ', $predefined_ranges );
243
+ $date_input_fields = '<form method="get" action="">' .
244
+ '<input type="hidden" name="page" value="wcj-tools">' .
245
+ '<input type="hidden" name="tab" value="export_' . $tool_id . '">' .
246
+ '<strong>' . __( 'Custom:', 'woocommerce-jetpack' ) . '</strong>' . ' ' .
247
+ '<input name="start_date" id="start_date" type="text" display="date" value="' . $current_start_date . '">' .
248
+ '<strong>' . ' - ' . '</strong>' .
249
+ '<input name="end_date" id="end_date" type="text" display="date" value="' . $current_end_date . '">' .
250
+ ' ' .
251
+ '<button class="button-primary" name="range" id="range" type="submit" value="custom">' . __( 'Go', 'woocommerce-jetpack' ) . '</button>' .
252
+ '</form>';
253
+ return $predefined_ranges . '<br>' . $date_input_fields;
254
+ }
255
+
256
  /**
257
  * create_export_tool.
258
  *
259
+ * @version 3.0.0
260
  * @since 2.4.8
261
  */
262
  function create_export_tool( $tool_id ) {
 
263
  echo $this->get_tool_header_html( 'export_' . $tool_id );
264
+ echo '<p>' . $this->export_date_fields( $tool_id ) . '</p>';
265
+ if ( ! isset( $_GET['range'] ) ) {
266
+ return;
267
+ }
268
  echo '<form method="post" action="">';
269
  echo '<p>' . $this->export_filter_fields( $tool_id ) . '</p>';
270
  echo '<p>';
275
  echo '<input style="float:right;margin-right:10px;" type="text" name="wcj_export_filter_all_columns" value="' . ( isset( $_POST['wcj_export_filter_all_columns'] ) ? $_POST['wcj_export_filter_all_columns'] : '' ) . '">';
276
  echo '</p>';
277
  echo '</form>';
278
+ $data = $this->export( $tool_id );
279
  echo ( is_array( $data ) ) ? wcj_get_table_html( $data, array( 'table_class' => 'widefat striped' ) ) : $data;
280
  }
281
 
includes/class-wcj-offer-price.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Module - Offer Price
4
  *
5
- * @version 2.9.0
6
  * @since 2.9.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -320,7 +320,7 @@ class WCJ_Offer_Price extends WCJ_Module {
320
  /**
321
  * add_offer_price_button.
322
  *
323
- * @version 2.9.0
324
  * @since 2.9.0
325
  */
326
  function add_offer_price_button() {
@@ -330,12 +330,14 @@ class WCJ_Offer_Price extends WCJ_Module {
330
  return;
331
  }
332
  // The button
 
 
 
333
  echo '<p>' .
334
  '<button type="submit"' .
335
  ' name="wcj-offer-price-button"' .
336
- ' class="wcj-offer-price-button"' .
337
  ' value="' . $product_id . '"' .
338
- ' class="' . get_option( 'wcj_offer_price_button_class', 'button' ) . '"' .
339
  ' style="' . get_option( 'wcj_offer_price_button_style', '' ) . '"' .
340
  ' wcj_data=\'' . json_encode( $this->get_wcj_data_array( $product_id ) ) . '\'' .
341
  '>' .
2
  /**
3
  * Booster for WooCommerce - Module - Offer Price
4
  *
5
+ * @version 3.0.0
6
  * @since 2.9.0
7
  * @author Algoritmika Ltd.
8
  */
320
  /**
321
  * add_offer_price_button.
322
  *
323
+ * @version 3.0.0
324
  * @since 2.9.0
325
  */
326
  function add_offer_price_button() {
330
  return;
331
  }
332
  // The button
333
+ if ( '' != $additional_class = get_option( 'wcj_offer_price_button_class', 'button' ) ) {
334
+ $additional_class = ' ' . $additional_class;
335
+ }
336
  echo '<p>' .
337
  '<button type="submit"' .
338
  ' name="wcj-offer-price-button"' .
339
+ ' class="wcj-offer-price-button' . $additional_class . '"' .
340
  ' value="' . $product_id . '"' .
 
341
  ' style="' . get_option( 'wcj_offer_price_button_style', '' ) . '"' .
342
  ' wcj_data=\'' . json_encode( $this->get_wcj_data_array( $product_id ) ) . '\'' .
343
  '>' .
includes/class-wcj-payment-gateways-by-currency.php ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Booster for WooCommerce - Module - Gateways by Currency
4
+ *
5
+ * @version 3.0.0
6
+ * @since 3.0.0
7
+ * @author Algoritmika Ltd.
8
+ */
9
+
10
+ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
11
+
12
+ if ( ! class_exists( 'WCJ_Payment_Gateways_By_Currency' ) ) :
13
+
14
+ class WCJ_Payment_Gateways_By_Currency extends WCJ_Module {
15
+
16
+ /**
17
+ * Constructor.
18
+ *
19
+ * @version 3.0.0
20
+ * @since 3.0.0
21
+ */
22
+ function __construct() {
23
+
24
+ $this->id = 'payment_gateways_by_currency';
25
+ $this->short_desc = __( 'Gateways by Currency', 'woocommerce-jetpack' );
26
+ $this->desc = __( 'Set allowed currencies for WooCommerce payment gateways to show up.', 'woocommerce-jetpack' );
27
+ $this->link_slug = 'woocommerce-payment-gateways-by-currency';
28
+ parent::__construct();
29
+
30
+ if ( $this->is_enabled() ) {
31
+ add_filter( 'woocommerce_available_payment_gateways', array( $this, 'available_payment_gateways' ), PHP_INT_MAX, 1 );
32
+ }
33
+ }
34
+
35
+ /**
36
+ * available_payment_gateways.
37
+ *
38
+ * @version 3.0.0
39
+ * @since 3.0.0
40
+ */
41
+ function available_payment_gateways( $_available_gateways ) {
42
+ $current_currency = get_woocommerce_currency();
43
+ foreach ( $_available_gateways as $key => $gateway ) {
44
+ $allowed_currencies = get_option( 'wcj_gateways_by_currency_allowed_' . $key, '' );
45
+ if ( ! empty( $allowed_currencies ) && ! in_array( $current_currency, $allowed_currencies ) ) {
46
+ unset( $_available_gateways[ $key ] );
47
+ continue;
48
+ }
49
+ $denied_currencies = get_option( 'wcj_gateways_by_currency_denied_' . $key, '' );
50
+ if ( ! empty( $denied_currencies ) && in_array( $current_currency, $denied_currencies ) ) {
51
+ unset( $_available_gateways[ $key ] );
52
+ continue;
53
+ }
54
+ }
55
+ return $_available_gateways;
56
+ }
57
+
58
+ }
59
+
60
+ endif;
61
+
62
+ return new WCJ_Payment_Gateways_By_Currency();
includes/class-wcj-payment-gateways-by-user-role.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Module - Gateways by User Role
4
  *
5
- * @version 2.8.0
6
  * @since 2.5.3
7
  * @author Algoritmika Ltd.
8
  */
@@ -35,12 +35,12 @@ class WCJ_Payment_Gateways_By_User_Role extends WCJ_Module {
35
  /**
36
  * available_payment_gateways.
37
  *
38
- * @version 2.5.3
39
  * @since 2.5.3
40
  */
41
  function available_payment_gateways( $_available_gateways ) {
 
42
  foreach ( $_available_gateways as $key => $gateway ) {
43
- $customer_role = wcj_get_current_user_first_role();
44
  $include_roles = get_option( 'wcj_gateways_user_roles_include_' . $key, '' );
45
  if ( ! empty( $include_roles ) && ! in_array( $customer_role, $include_roles ) ) {
46
  unset( $_available_gateways[ $key ] );
2
  /**
3
  * Booster for WooCommerce - Module - Gateways by User Role
4
  *
5
+ * @version 3.0.0
6
  * @since 2.5.3
7
  * @author Algoritmika Ltd.
8
  */
35
  /**
36
  * available_payment_gateways.
37
  *
38
+ * @version 3.0.0
39
  * @since 2.5.3
40
  */
41
  function available_payment_gateways( $_available_gateways ) {
42
+ $customer_role = wcj_get_current_user_first_role();
43
  foreach ( $_available_gateways as $key => $gateway ) {
 
44
  $include_roles = get_option( 'wcj_gateways_user_roles_include_' . $key, '' );
45
  if ( ! empty( $include_roles ) && ! in_array( $customer_role, $include_roles ) ) {
46
  unset( $_available_gateways[ $key ] );
includes/class-wcj-payment-gateways-currency.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Module - Gateways Currency
4
  *
5
- * @version 2.9.0
6
  * @since 2.3.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -16,14 +16,14 @@ class WCJ_Payment_Gateways_Currency extends WCJ_Module {
16
  /**
17
  * Constructor.
18
  *
19
- * @version 2.8.0
20
  */
21
  function __construct() {
22
 
23
  $this->id = 'payment_gateways_currency';
24
- $this->short_desc = __( 'Gateways Currency', 'woocommerce-jetpack' );
25
- $this->desc = __( 'Currency per WooCommerce payment gateway.', 'woocommerce-jetpack' );
26
- $this->link_slug = 'woocommerce-payment-gateways-currency';
27
  parent::__construct();
28
 
29
  if ( $this->is_enabled() ) {
2
  /**
3
  * Booster for WooCommerce - Module - Gateways Currency
4
  *
5
+ * @version 3.0.0
6
  * @since 2.3.0
7
  * @author Algoritmika Ltd.
8
  */
16
  /**
17
  * Constructor.
18
  *
19
+ * @version 3.0.0
20
  */
21
  function __construct() {
22
 
23
  $this->id = 'payment_gateways_currency';
24
+ $this->short_desc = __( 'Gateways Currency Converter', 'woocommerce-jetpack' );
25
+ $this->desc = __( 'Currency converter for WooCommerce payment gateways.', 'woocommerce-jetpack' );
26
+ $this->link_slug = 'woocommerce-payment-gateways-currency-converter';
27
  parent::__construct();
28
 
29
  if ( $this->is_enabled() ) {
includes/class-wcj-product-addons.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Module - Product Addons
4
  *
5
- * @version 2.8.0
6
  * @since 2.5.3
7
  * @author Algoritmika Ltd.
8
  * @todo admin order view (names);
@@ -133,7 +133,7 @@ class WCJ_Product_Addons extends WCJ_Module {
133
  /**
134
  * price_change_ajax.
135
  *
136
- * @version 2.8.0
137
  * @since 2.5.3
138
  */
139
  function price_change_ajax( $param ) {
@@ -148,7 +148,7 @@ class WCJ_Product_Addons extends WCJ_Module {
148
  if ( isset( $_POST[ $addon['checkbox_key'] ] ) ) {
149
  if ( 'checkbox' === $addon['type'] || '' == $addon['type'] ) {
150
  $the_addons_price += $addon['price_value'];
151
- } elseif ( 'radio' === $addon['type'] ) {
152
  $labels = explode( PHP_EOL, $addon['label_value'] );
153
  $prices = explode( PHP_EOL, $addon['price_value'] );
154
  if ( count( $labels ) === count( $prices ) ) {
@@ -194,10 +194,26 @@ class WCJ_Product_Addons extends WCJ_Module {
194
  }
195
  }
196
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
197
  /**
198
  * get_product_addons.
199
  *
200
- * @version 2.5.5
201
  * @since 2.5.3
202
  */
203
  function get_product_addons( $product_id ) {
@@ -207,6 +223,9 @@ class WCJ_Product_Addons extends WCJ_Module {
207
  $total_number = apply_filters( 'booster_get_option', 1, get_option( 'wcj_product_addons_all_products_total_number', 1 ) );
208
  for ( $i = 1; $i <= $total_number; $i++ ) {
209
  if ( 'yes' === get_option( 'wcj_product_addons_all_products_enabled_' . $i, 'yes' ) ) {
 
 
 
210
  $addons[] = array(
211
  // 'scope' => 'all_products',
212
  // 'index' => $i,
@@ -215,6 +234,8 @@ class WCJ_Product_Addons extends WCJ_Module {
215
  'label_key' => 'wcj_product_all_products_addons_label_' . $i,
216
  'price_value' => get_option( 'wcj_product_addons_all_products_price_' . $i ),
217
  'label_value' => get_option( 'wcj_product_addons_all_products_label_' . $i ),
 
 
218
  'tooltip' => get_option( 'wcj_product_addons_all_products_tooltip_' . $i, '' ),
219
  'type' => get_option( 'wcj_product_addons_all_products_type_' . $i, 'checkbox' ),
220
  'default' => get_option( 'wcj_product_addons_all_products_default_' . $i, '' ),
@@ -237,6 +258,8 @@ class WCJ_Product_Addons extends WCJ_Module {
237
  'label_key' => 'wcj_product_per_product_addons_label_' . $i,
238
  'price_value' => get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_price_' . $i, true ),
239
  'label_value' => get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_label_' . $i, true ),
 
 
240
  'tooltip' => get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_tooltip_' . $i, true ),
241
  'type' => get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_type_' . $i, true ),
242
  'default' => get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_default_' . $i, true ),
@@ -359,7 +382,7 @@ class WCJ_Product_Addons extends WCJ_Module {
359
  /**
360
  * add_addons_price_to_cart_item_data.
361
  *
362
- * @version 2.5.5
363
  * @since 2.5.3
364
  */
365
  function add_addons_price_to_cart_item_data( $cart_item_data, $product_id, $variation_id ) {
@@ -369,7 +392,7 @@ class WCJ_Product_Addons extends WCJ_Module {
369
  if ( 'checkbox' === $addon['type'] || '' == $addon['type'] ) {
370
  $cart_item_data[ $addon['price_key'] ] = $addon['price_value'];
371
  $cart_item_data[ $addon['label_key'] ] = $addon['label_value'];
372
- } elseif ( 'radio' === $addon['type'] ) {
373
  $prices = explode( PHP_EOL, $addon['price_value'] );
374
  $labels = explode( PHP_EOL, $addon['label_value'] );
375
  if ( count( $labels ) === count( $prices ) ) {
@@ -390,7 +413,7 @@ class WCJ_Product_Addons extends WCJ_Module {
390
  /**
391
  * add_addons_to_frontend.
392
  *
393
- * @version 2.8.0
394
  * @since 2.5.3
395
  */
396
  function add_addons_to_frontend() {
@@ -398,6 +421,9 @@ class WCJ_Product_Addons extends WCJ_Module {
398
  $addons = $this->get_product_addons( get_the_ID() );
399
  $_product = wc_get_product( get_the_ID() );
400
  foreach ( $addons as $addon ) {
 
 
 
401
  $is_required = ( 'yes' === $addon['is_required'] ) ? ' required' : '';
402
  if ( 'checkbox' === $addon['type'] || '' == $addon['type'] ) {
403
  $is_checked = '';
@@ -414,25 +440,47 @@ class WCJ_Product_Addons extends WCJ_Module {
414
  '<label for="' . $addon['checkbox_key'] . '">' . $addon['label_value'] . ' ('. wc_price( wcj_get_product_display_price( $_product, $this->maybe_convert_currency( $addon['price_value'] ) ) ) . ')' . '</label>' .
415
  $maybe_tooltip .
416
  '</p>';
417
- } elseif ( 'radio' === $addon['type'] ) {
418
  $prices = explode( PHP_EOL, $addon['price_value'] );
419
  $labels = explode( PHP_EOL, $addon['label_value'] );
420
- $tooltips = explode( PHP_EOL, $addon['tooltip'] );
 
 
421
  if ( count( $labels ) === count( $prices ) ) {
 
 
 
422
  foreach ( $labels as $i => $label ) {
423
  $label = sanitize_title( $label );
424
  $is_checked = '';
 
425
  if ( isset( $_POST[ $addon['checkbox_key'] ] ) ) {
426
- $is_checked = ( $label === $_POST[ $addon['checkbox_key'] ] ) ? ' checked' : '';
427
  } elseif ( '' != $addon['default'] ) {
428
- $is_checked = ( $label === sanitize_title( $addon['default'] ) ) ? ' checked' : '';
 
 
 
 
 
 
 
 
 
 
 
 
429
  }
430
- $maybe_tooltip = ( isset( $tooltips[ $i ] ) && '' != $tooltips[ $i ] ) ?
431
- ' <img style="display:inline;" class="wcj-question-icon" src="' . wcj_plugin_url() . '/assets/images/question-icon.png' . '" title="' . $tooltips[ $i ] . '">' :
 
 
432
  '';
 
 
 
433
  $html .= '<p>' .
434
- '<input type="radio" id="' . $addon['checkbox_key'] . '-' . $label . '" name="' . $addon['checkbox_key'] . '" value="' . $label . '"' . $is_checked . $is_required . '>' . ' ' .
435
- '<label for="' . $addon['checkbox_key'] . '-' . $label . '">' . $labels[ $i ] . ' ('. wc_price( wcj_get_product_display_price( $_product, $this->maybe_convert_currency( $prices[ $i ] ) ) ) . ')' . '</label>' .
436
  $maybe_tooltip .
437
  '</p>';
438
  }
2
  /**
3
  * Booster for WooCommerce - Module - Product Addons
4
  *
5
+ * @version 3.0.0
6
  * @since 2.5.3
7
  * @author Algoritmika Ltd.
8
  * @todo admin order view (names);
133
  /**
134
  * price_change_ajax.
135
  *
136
+ * @version 3.0.0
137
  * @since 2.5.3
138
  */
139
  function price_change_ajax( $param ) {
148
  if ( isset( $_POST[ $addon['checkbox_key'] ] ) ) {
149
  if ( 'checkbox' === $addon['type'] || '' == $addon['type'] ) {
150
  $the_addons_price += $addon['price_value'];
151
+ } elseif ( 'radio' === $addon['type'] || 'select' === $addon['type'] ) {
152
  $labels = explode( PHP_EOL, $addon['label_value'] );
153
  $prices = explode( PHP_EOL, $addon['price_value'] );
154
  if ( count( $labels ) === count( $prices ) ) {
194
  }
195
  }
196
 
197
+ /**
198
+ * is_global_addon_visible.
199
+ *
200
+ * @version 3.0.0
201
+ * @since 3.0.0
202
+ * @todo add "include only products"
203
+ * @todo add "include/exclude categories/tags"
204
+ */
205
+ function is_global_addon_visible( $i, $product_id ) {
206
+ $exclude_products = get_option( 'wcj_product_addons_all_products_exclude_products_' . $i, '' );
207
+ if ( ! empty( $exclude_products ) && in_array( $product_id, $exclude_products ) ) {
208
+ return false;
209
+ }
210
+ return true;
211
+ }
212
+
213
  /**
214
  * get_product_addons.
215
  *
216
+ * @version 3.0.0
217
  * @since 2.5.3
218
  */
219
  function get_product_addons( $product_id ) {
223
  $total_number = apply_filters( 'booster_get_option', 1, get_option( 'wcj_product_addons_all_products_total_number', 1 ) );
224
  for ( $i = 1; $i <= $total_number; $i++ ) {
225
  if ( 'yes' === get_option( 'wcj_product_addons_all_products_enabled_' . $i, 'yes' ) ) {
226
+ if ( ! $this->is_global_addon_visible( $i, $product_id ) ) {
227
+ continue;
228
+ }
229
  $addons[] = array(
230
  // 'scope' => 'all_products',
231
  // 'index' => $i,
234
  'label_key' => 'wcj_product_all_products_addons_label_' . $i,
235
  'price_value' => get_option( 'wcj_product_addons_all_products_price_' . $i ),
236
  'label_value' => get_option( 'wcj_product_addons_all_products_label_' . $i ),
237
+ 'title' => get_option( 'wcj_product_addons_all_products_title_' . $i, '' ),
238
+ 'placeholder' => get_option( 'wcj_product_addons_all_products_placeholder_' . $i, '' ),
239
  'tooltip' => get_option( 'wcj_product_addons_all_products_tooltip_' . $i, '' ),
240
  'type' => get_option( 'wcj_product_addons_all_products_type_' . $i, 'checkbox' ),
241
  'default' => get_option( 'wcj_product_addons_all_products_default_' . $i, '' ),
258
  'label_key' => 'wcj_product_per_product_addons_label_' . $i,
259
  'price_value' => get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_price_' . $i, true ),
260
  'label_value' => get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_label_' . $i, true ),
261
+ 'title' => get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_title_' . $i, true ),
262
+ 'placeholder' => get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_placeholder_' . $i, true ),
263
  'tooltip' => get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_tooltip_' . $i, true ),
264
  'type' => get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_type_' . $i, true ),
265
  'default' => get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_default_' . $i, true ),
382
  /**
383
  * add_addons_price_to_cart_item_data.
384
  *
385
+ * @version 3.0.0
386
  * @since 2.5.3
387
  */
388
  function add_addons_price_to_cart_item_data( $cart_item_data, $product_id, $variation_id ) {
392
  if ( 'checkbox' === $addon['type'] || '' == $addon['type'] ) {
393
  $cart_item_data[ $addon['price_key'] ] = $addon['price_value'];
394
  $cart_item_data[ $addon['label_key'] ] = $addon['label_value'];
395
+ } elseif ( 'radio' === $addon['type'] || 'select' === $addon['type'] ) {
396
  $prices = explode( PHP_EOL, $addon['price_value'] );
397
  $labels = explode( PHP_EOL, $addon['label_value'] );
398
  if ( count( $labels ) === count( $prices ) ) {
413
  /**
414
  * add_addons_to_frontend.
415
  *
416
+ * @version 3.0.0
417
  * @since 2.5.3
418
  */
419
  function add_addons_to_frontend() {
421
  $addons = $this->get_product_addons( get_the_ID() );
422
  $_product = wc_get_product( get_the_ID() );
423
  foreach ( $addons as $addon ) {
424
+ if ( '' != $addon['title'] ) {
425
+ $html .= '<p>' .'<label for="' . $addon['checkbox_key'] . '">' . $addon['title'] . '</label>' . '</p>';
426
+ }
427
  $is_required = ( 'yes' === $addon['is_required'] ) ? ' required' : '';
428
  if ( 'checkbox' === $addon['type'] || '' == $addon['type'] ) {
429
  $is_checked = '';
440
  '<label for="' . $addon['checkbox_key'] . '">' . $addon['label_value'] . ' ('. wc_price( wcj_get_product_display_price( $_product, $this->maybe_convert_currency( $addon['price_value'] ) ) ) . ')' . '</label>' .
441
  $maybe_tooltip .
442
  '</p>';
443
+ } elseif ( 'radio' === $addon['type'] || 'select' === $addon['type'] ) {
444
  $prices = explode( PHP_EOL, $addon['price_value'] );
445
  $labels = explode( PHP_EOL, $addon['label_value'] );
446
+ if ( 'radio' === $addon['type'] ) {
447
+ $tooltips = explode( PHP_EOL, $addon['tooltip'] );
448
+ }
449
  if ( count( $labels ) === count( $prices ) ) {
450
+ if ( 'select' === $addon['type'] ) {
451
+ $select_options = '';
452
+ }
453
  foreach ( $labels as $i => $label ) {
454
  $label = sanitize_title( $label );
455
  $is_checked = '';
456
+ $checked_or_selected = ( 'radio' === $addon['type'] ? ' checked' : ' selected' );
457
  if ( isset( $_POST[ $addon['checkbox_key'] ] ) ) {
458
+ $is_checked = ( $label === $_POST[ $addon['checkbox_key'] ] ) ? $checked_or_selected : '';
459
  } elseif ( '' != $addon['default'] ) {
460
+ $is_checked = ( $label === sanitize_title( $addon['default'] ) ) ? $checked_or_selected : '';
461
+ }
462
+ if ( 'radio' === $addon['type'] ) {
463
+ $maybe_tooltip = ( isset( $tooltips[ $i ] ) && '' != $tooltips[ $i ] ) ?
464
+ ' <img style="display:inline;" class="wcj-question-icon" src="' . wcj_plugin_url() . '/assets/images/question-icon.png' . '" title="' . $tooltips[ $i ] . '">' :
465
+ '';
466
+ $html .= '<p>' .
467
+ '<input type="radio" id="' . $addon['checkbox_key'] . '-' . $label . '" name="' . $addon['checkbox_key'] . '" value="' . $label . '"' . $is_checked . $is_required . '>' . ' ' .
468
+ '<label for="' . $addon['checkbox_key'] . '-' . $label . '">' . $labels[ $i ] . ' ('. wc_price( wcj_get_product_display_price( $_product, $this->maybe_convert_currency( $prices[ $i ] ) ) ) . ')' . '</label>' .
469
+ $maybe_tooltip .
470
+ '</p>';
471
+ } else {
472
+ $select_options .= '<option value="' . $label . '"' . $is_checked . '>' . $labels[ $i ] . ' ('. wc_price( wcj_get_product_display_price( $_product, $this->maybe_convert_currency( $prices[ $i ] ) ) ) . ')' . '</option>';
473
  }
474
+ }
475
+ if ( 'select' === $addon['type'] ) {
476
+ $maybe_tooltip = ( '' != $addon['tooltip'] ) ?
477
+ ' <img style="display:inline;" class="wcj-question-icon" src="' . wcj_plugin_url() . '/assets/images/question-icon.png' . '" title="' . $addon['tooltip'] . '">' :
478
  '';
479
+ if ( '' != $addon['placeholder'] ) {
480
+ $select_options = '<option value="">' . $addon['placeholder'] . '</option>' . $select_options;
481
+ }
482
  $html .= '<p>' .
483
+ '<select' . $is_required . ' id="' . $addon['checkbox_key'] . '" name="' . $addon['checkbox_key'] . '">' . $select_options . '</select>' .
 
484
  $maybe_tooltip .
485
  '</p>';
486
  }
includes/class-wcj-product-bookings.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Module - Bookings
4
  *
5
- * @version 2.8.0
6
  * @since 2.5.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -286,21 +286,30 @@ class WCJ_Product_Bookings extends WCJ_Module {
286
  /**
287
  * add_input_fields_to_frontend.
288
  *
289
- * @version 2.5.2
290
  * @since 2.5.0
 
291
  */
292
  function add_input_fields_to_frontend() {
293
  if ( $this->is_bookings_product( wc_get_product() ) ) {
294
  $data_table = array();
295
  $date_from_value = ( isset( $_POST['wcj_product_bookings_date_from'] ) ) ? $_POST['wcj_product_bookings_date_from'] : '';
296
  $date_to_value = ( isset( $_POST['wcj_product_bookings_date_to'] ) ) ? $_POST['wcj_product_bookings_date_to'] : '';
 
 
 
 
 
 
 
 
297
  $data_table[] = array(
298
  '<label for="wcj_product_bookings_date_from">' . get_option( 'wcj_product_bookings_label_date_from', __( 'Date from' ) ) . '</label>',
299
- '<input firstday="0" dateformat="mm/dd/yy" mindate="0" type="datepicker" display="date" id="wcj_product_bookings_date_from" name="wcj_product_bookings_date_from" placeholder="" value="' . $date_from_value . '">',
300
  );
301
  $data_table[] = array(
302
  '<label for="wcj_product_bookings_date_to">' . get_option( 'wcj_product_bookings_label_date_to', __( 'Date to' ) ) . '</label>',
303
- '<input firstday="0" dateformat="mm/dd/yy" mindate="0" type="datepicker" display="date" id="wcj_product_bookings_date_to" name="wcj_product_bookings_date_to" placeholder="" value="' . $date_to_value . '">',
304
  );
305
  echo wcj_get_table_html( $data_table, array( 'table_heading_type' => 'none', ) );
306
  echo '<div style="display:none !important;" name="wcj_bookings_message"><p style="color:red;"></p></div>';
2
  /**
3
  * Booster for WooCommerce - Module - Bookings
4
  *
5
+ * @version 3.0.0
6
  * @since 2.5.0
7
  * @author Algoritmika Ltd.
8
  */
286
  /**
287
  * add_input_fields_to_frontend.
288
  *
289
+ * @version 3.0.0
290
  * @since 2.5.0
291
+ * @todo more options: exclude days (1-31), exact availability dates, mindate, maxdate, firstday, dateformat etc.
292
  */
293
  function add_input_fields_to_frontend() {
294
  if ( $this->is_bookings_product( wc_get_product() ) ) {
295
  $data_table = array();
296
  $date_from_value = ( isset( $_POST['wcj_product_bookings_date_from'] ) ) ? $_POST['wcj_product_bookings_date_from'] : '';
297
  $date_to_value = ( isset( $_POST['wcj_product_bookings_date_to'] ) ) ? $_POST['wcj_product_bookings_date_to'] : '';
298
+ $date_from_exclude_days = ( '' != ( $exclude = get_option( 'wcj_product_bookings_datepicker_date_from_exclude_days', '' ) ) ?
299
+ ' excludedays="[' . str_replace( 'S', '0', implode( ',', $exclude ) ) . ']"' : '' );
300
+ $date_to_exclude_days = ( '' != ( $exclude = get_option( 'wcj_product_bookings_datepicker_date_to_exclude_days', '' ) ) ?
301
+ ' excludedays="[' . str_replace( 'S', '0', implode( ',', $exclude ) ) . ']"' : '' );
302
+ $date_from_exclude_months = ( '' != ( $exclude = get_option( 'wcj_product_bookings_datepicker_date_from_exclude_months', '' ) ) ?
303
+ ' excludemonths="[' . implode( ',', $exclude ) . ']"' : '' );
304
+ $date_to_exclude_months = ( '' != ( $exclude = get_option( 'wcj_product_bookings_datepicker_date_to_exclude_months', '' ) ) ?
305
+ ' excludemonths="[' . implode( ',', $exclude ) . ']"' : '' );
306
  $data_table[] = array(
307
  '<label for="wcj_product_bookings_date_from">' . get_option( 'wcj_product_bookings_label_date_from', __( 'Date from' ) ) . '</label>',
308
+ '<input firstday="0"' . $date_from_exclude_days . $date_from_exclude_months . ' dateformat="mm/dd/yy" mindate="0" type="datepicker" display="date" id="wcj_product_bookings_date_from" name="wcj_product_bookings_date_from" placeholder="" value="' . $date_from_value . '">',
309
  );
310
  $data_table[] = array(
311
  '<label for="wcj_product_bookings_date_to">' . get_option( 'wcj_product_bookings_label_date_to', __( 'Date to' ) ) . '</label>',
312
+ '<input firstday="0"' . $date_to_exclude_days . $date_to_exclude_months . ' dateformat="mm/dd/yy" mindate="0" type="datepicker" display="date" id="wcj_product_bookings_date_to" name="wcj_product_bookings_date_to" placeholder="" value="' . $date_to_value . '">',
313
  );
314
  echo wcj_get_table_html( $data_table, array( 'table_heading_type' => 'none', ) );
315
  echo '<div style="display:none !important;" name="wcj_bookings_message"><p style="color:red;"></p></div>';
includes/class-wcj-product-bulk-meta-editor.php CHANGED
@@ -2,8 +2,8 @@
2
  /**
3
  * Booster for WooCommerce - Module - Product Bulk Meta Editor
4
  *
5
- * @version 2.8.0
6
- * @version 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
9
 
@@ -175,16 +175,16 @@ class WCJ_Product_Bulk_Meta_Editor extends WCJ_Module {
175
  /**
176
  * get_result_message.
177
  *
178
- * @version 2.8.0
179
  * @since 2.8.0
180
  */
181
  function get_result_message( $success, $fail ) {
182
  $result_message = '';
183
  if ( $success > 0 ) {
184
- $result_message .= '<p><div class="updated"><p>' . sprintf( __( 'Meta for <strong>%d</strong> was product(s) updated.', 'woocommerce-jetpack' ), $success ) . '</p></div></p>';
185
  }
186
  if ( $fail > 0 ) {
187
- $result_message .= '<p><div class="error"><p>' . sprintf( __( 'Meta for <strong>%d</strong> product(s) was not updated.', 'woocommerce-jetpack' ), $fail ) . '</p></div></p>';
188
  }
189
  return $result_message;
190
  }
@@ -214,18 +214,22 @@ class WCJ_Product_Bulk_Meta_Editor extends WCJ_Module {
214
  /**
215
  * get_html_meta_key_input.
216
  *
217
- * @version 2.8.0
218
  * @since 2.8.0
219
  */
220
  function get_html_meta_key_input( $meta_name ) {
221
  $meta_html = '';
222
  $meta_html .= '<p>';
 
223
  $meta_html .= __( 'Meta key', 'woocommerce-jetpack' );
224
  if ( '' == $meta_name ) {
225
  $meta_html .= ', ' . sprintf( __( 'for example %s', 'woocommerce-jetpack' ), '<code>_sku</code>' );
226
  }
227
- $meta_html .= ' ' . '<input required type="text" name="wcj_product_bulk_meta_editor_show_meta" value="' . $meta_name . '">';
228
- $meta_html .= ' ' . '<button class="button-primary" type="submit" name="wcj_product_bulk_meta_editor_show" value="show">' . __( 'Show', 'woocommerce-jetpack' ) . '</button>';
 
 
 
229
  $meta_html .= '</p>';
230
  $table_data = array();
231
  $table_data[] = array(
@@ -282,14 +286,18 @@ class WCJ_Product_Bulk_Meta_Editor extends WCJ_Module {
282
  /**
283
  * get_html_meta_table_set_single_value.
284
  *
285
- * @version 2.8.0
286
  * @since 2.8.0
287
  */
288
  function get_html_meta_table_set_single_value( $set_meta, $js_confirmation ) {
289
- $single_value_html = __( 'Value', 'woocommerce-jetpack' ) .
290
- ' ' . '<input type="text" name="wcj_product_bulk_meta_editor_set_meta" value="' . $set_meta . '">' .
291
- ' ' . '<button class="button-primary" type="submit" name="wcj_product_bulk_meta_editor_set" value="set"' . $js_confirmation . '>' .
292
- __( 'Set', 'woocommerce-jetpack' ) . '</button>';
 
 
 
 
293
  $table_data = array();
294
  $table_data[] = array(
295
  __( 'Set Meta for All Products', 'woocommerce-jetpack' ),
2
  /**
3
  * Booster for WooCommerce - Module - Product Bulk Meta Editor
4
  *
5
+ * @version 3.0.0
6
+ * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
9
 
175
  /**
176
  * get_result_message.
177
  *
178
+ * @version 3.0.0
179
  * @since 2.8.0
180
  */
181
  function get_result_message( $success, $fail ) {
182
  $result_message = '';
183
  if ( $success > 0 ) {
184
+ $result_message .= '<p><div class="notice notice-success is-dismissible"><p>' . sprintf( __( 'Meta for <strong>%d</strong> product(s) was updated.', 'woocommerce-jetpack' ), $success ) . '</p></div></p>';
185
  }
186
  if ( $fail > 0 ) {
187
+ $result_message .= '<p><div class="notice notice-warning is-dismissible"><p>' . sprintf( __( 'Meta for <strong>%d</strong> product(s) was not updated.', 'woocommerce-jetpack' ), $fail ) . '</p></div></p>';
188
  }
189
  return $result_message;
190
  }
214
  /**
215
  * get_html_meta_key_input.
216
  *
217
+ * @version 3.0.0
218
  * @since 2.8.0
219
  */
220
  function get_html_meta_key_input( $meta_name ) {
221
  $meta_html = '';
222
  $meta_html .= '<p>';
223
+ $meta_html .= '<label for="wcj_product_bulk_meta_editor_show_meta">';
224
  $meta_html .= __( 'Meta key', 'woocommerce-jetpack' );
225
  if ( '' == $meta_name ) {
226
  $meta_html .= ', ' . sprintf( __( 'for example %s', 'woocommerce-jetpack' ), '<code>_sku</code>' );
227
  }
228
+ $meta_html .= '</label>';
229
+ $meta_html .= '<input required class="widefat" type="text" id="wcj_product_bulk_meta_editor_show_meta" name="wcj_product_bulk_meta_editor_show_meta" value="' . $meta_name . '">';
230
+ $meta_html .= '</p>';
231
+ $meta_html .= '<p>';
232
+ $meta_html .= '<button class="button-primary" type="submit" name="wcj_product_bulk_meta_editor_show" value="show">' . __( 'Show', 'woocommerce-jetpack' ) . '</button>';
233
  $meta_html .= '</p>';
234
  $table_data = array();
235
  $table_data[] = array(
286
  /**
287
  * get_html_meta_table_set_single_value.
288
  *
289
+ * @version 3.0.0
290
  * @since 2.8.0
291
  */
292
  function get_html_meta_table_set_single_value( $set_meta, $js_confirmation ) {
293
+ $single_value_html = '<p>' .
294
+ '<label for="wcj_product_bulk_meta_editor_set_meta">' . __( 'Value', 'woocommerce-jetpack' ) . '</label>' .
295
+ '<input type="text" class="widefat" id="wcj_product_bulk_meta_editor_set_meta" name="wcj_product_bulk_meta_editor_set_meta" value="' . $set_meta . '">' .
296
+ '</p>' .
297
+ '<p>' .
298
+ '<button class="button-primary" type="submit" name="wcj_product_bulk_meta_editor_set" value="set"' . $js_confirmation . '>' .
299
+ __( 'Set', 'woocommerce-jetpack' ) . '</button>' .
300
+ '</p>';
301
  $table_data = array();
302
  $table_data[] = array(
303
  __( 'Set Meta for All Products', 'woocommerce-jetpack' ),
includes/class-wcj-product-price-by-formula.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Module - Product Price by Formula
4
  *
5
- * @version 2.8.0
6
  * @since 2.5.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -16,7 +16,7 @@ class WCJ_Product_Price_by_Formula extends WCJ_Module {
16
  /**
17
  * Constructor.
18
  *
19
- * @version 2.8.0
20
  * @since 2.5.0
21
  */
22
  function __construct() {
@@ -33,7 +33,7 @@ class WCJ_Product_Price_by_Formula extends WCJ_Module {
33
  add_action( 'add_meta_boxes', array( $this, 'add_meta_box' ) );
34
  add_action( 'save_post_product', array( $this, 'save_meta_box' ), PHP_INT_MAX, 2 );
35
 
36
- if ( ! is_admin() || ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) {
37
  wcj_add_change_price_hooks( $this, PHP_INT_MAX - 100, false );
38
  }
39
 
2
  /**
3
  * Booster for WooCommerce - Module - Product Price by Formula
4
  *
5
+ * @version 3.0.0
6
  * @since 2.5.0
7
  * @author Algoritmika Ltd.
8
  */
16
  /**
17
  * Constructor.
18
  *
19
+ * @version 3.0.0
20
  * @since 2.5.0
21
  */
22
  function __construct() {
33
  add_action( 'add_meta_boxes', array( $this, 'add_meta_box' ) );
34
  add_action( 'save_post_product', array( $this, 'save_meta_box' ), PHP_INT_MAX, 2 );
35
 
36
+ if ( ! is_admin() || ( defined( 'DOING_AJAX' ) && DOING_AJAX ) || isset( $_GET['wcj_create_products_xml'] ) ) {
37
  wcj_add_change_price_hooks( $this, PHP_INT_MAX - 100, false );
38
  }
39
 
includes/classes/class-wcj-module.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce Module
4
  *
5
- * @version 2.9.1
6
  * @since 2.2.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -371,10 +371,12 @@ if ( ! class_exists( 'WCJ_Module' ) ) :
371
 
372
  /**
373
  * is_enabled.
 
 
374
  */
375
  function is_enabled() {
376
  $the_id = ( 'module' === $this->type ) ? $this->id : $this->parent_id;
377
- return ( 'yes' === get_option( 'wcj_' . $the_id . '_enabled' ) ) ? true : false;
378
  }
379
 
380
  /**
2
  /**
3
  * Booster for WooCommerce Module
4
  *
5
+ * @version 3.0.0
6
  * @since 2.2.0
7
  * @author Algoritmika Ltd.
8
  */
371
 
372
  /**
373
  * is_enabled.
374
+ *
375
+ * @version 3.0.0
376
  */
377
  function is_enabled() {
378
  $the_id = ( 'module' === $this->type ) ? $this->id : $this->parent_id;
379
+ return ( 'yes' === get_option( 'wcj_' . $the_id . '_enabled', 'no' ) );
380
  }
381
 
382
  /**
includes/classes/class-wcj-scripts.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Scripts
4
  *
5
- * @version 2.9.0
6
  * @since 2.9.0
7
  * @author Algoritmika Ltd.
8
  * @todo move this class to another directory
@@ -17,7 +17,7 @@ class WCJ_Scripts {
17
  /**
18
  * Constructor.
19
  *
20
- * @version 2.9.0
21
  * @since 2.9.0
22
  */
23
  function __construct() {
@@ -25,6 +25,7 @@ class WCJ_Scripts {
25
  if ( is_admin() ) {
26
  add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_wcj_backend_scripts' ) );
27
  if (
 
28
  wcj_is_module_enabled( 'purchase_data' ) ||
29
  wcj_is_module_enabled( 'pdf_invoicing' ) ||
30
  wcj_is_module_enabled( 'crowdfunding' ) ||
2
  /**
3
  * Booster for WooCommerce - Scripts
4
  *
5
+ * @version 3.0.0
6
  * @since 2.9.0
7
  * @author Algoritmika Ltd.
8
  * @todo move this class to another directory
17
  /**
18
  * Constructor.
19
  *
20
+ * @version 3.0.0
21
  * @since 2.9.0
22
  */
23
  function __construct() {
25
  if ( is_admin() ) {
26
  add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_wcj_backend_scripts' ) );
27
  if (
28
+ wcj_is_module_enabled( 'export' ) ||
29
  wcj_is_module_enabled( 'purchase_data' ) ||
30
  wcj_is_module_enabled( 'pdf_invoicing' ) ||
31
  wcj_is_module_enabled( 'crowdfunding' ) ||
includes/css/wcj-offer-price.css CHANGED
@@ -72,7 +72,9 @@
72
  color: white;
73
  }
74
 
75
- .wcj-offer-price-modal-body {padding: 2px 16px;}
 
 
76
 
77
  .wcj-offer-price-modal-footer {
78
  padding: 2px 16px;
72
  color: white;
73
  }
74
 
75
+ .wcj-offer-price-modal-body {
76
+ padding: 2px 16px;
77
+ }
78
 
79
  .wcj-offer-price-modal-footer {
80
  padding: 2px 16px;
includes/emails/class-wc-email-wcj-custom.php CHANGED
@@ -116,6 +116,7 @@ class WC_Email_WCJ_Custom extends WC_Email {
116
  * Trigger.
117
  *
118
  * @version 2.5.6
 
119
  */
120
  function trigger( $order_id ) {
121
 
116
  * Trigger.
117
  *
118
  * @version 2.5.6
119
+ * @todo WC3 compatibility
120
  */
121
  function trigger( $order_id ) {
122
 
includes/export/class-wcj-exporter-customers.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce Exporter Customers
4
  *
5
- * @version 2.7.0
6
  * @since 2.5.9
7
  * @author Algoritmika Ltd.
8
  */
@@ -26,7 +26,7 @@ class WCJ_Exporter_Customers {
26
  /**
27
  * export_customers.
28
  *
29
- * @version 2.5.9
30
  * @since 2.4.8
31
  */
32
  function export_customers( $fields_helper ) {
@@ -42,7 +42,9 @@ class WCJ_Exporter_Customers {
42
  // Get the Data
43
  $data = array();
44
  $data[] = $titles;
45
- $customers = get_users( 'role=customer' );
 
 
46
  foreach ( $customers as $customer ) {
47
  $row = array();
48
  foreach( $fields_ids as $field_id ) {
@@ -87,7 +89,7 @@ class WCJ_Exporter_Customers {
87
  /**
88
  * export_customers_from_orders.
89
  *
90
- * @version 2.7.0
91
  * @since 2.4.8
92
  * @todo (maybe) add more order fields (shipping)
93
  */
@@ -118,6 +120,7 @@ class WCJ_Exporter_Customers {
118
  'offset' => $offset,
119
  'fields' => 'ids',
120
  );
 
121
  $loop_orders = new WP_Query( $args_orders );
122
  if ( ! $loop_orders->have_posts() ) {
123
  break;
2
  /**
3
  * Booster for WooCommerce Exporter Customers
4
  *
5
+ * @version 3.0.0
6
  * @since 2.5.9
7
  * @author Algoritmika Ltd.
8
  */
26
  /**
27
  * export_customers.
28
  *
29
+ * @version 3.0.0
30
  * @since 2.4.8
31
  */
32
  function export_customers( $fields_helper ) {
42
  // Get the Data
43
  $data = array();
44
  $data[] = $titles;
45
+ $args = array( 'role' => 'customer' );
46
+ $args = wcj_maybe_add_date_query( $args );
47
+ $customers = get_users( $args );
48
  foreach ( $customers as $customer ) {
49
  $row = array();
50
  foreach( $fields_ids as $field_id ) {
89
  /**
90
  * export_customers_from_orders.
91
  *
92
+ * @version 3.0.0
93
  * @since 2.4.8
94
  * @todo (maybe) add more order fields (shipping)
95
  */
120
  'offset' => $offset,
121
  'fields' => 'ids',
122
  );
123
+ $args_orders = wcj_maybe_add_date_query( $args_orders );
124
  $loop_orders = new WP_Query( $args_orders );
125
  if ( ! $loop_orders->have_posts() ) {
126
  break;
includes/export/class-wcj-exporter-orders.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce Exporter Orders
4
  *
5
- * @version 2.7.0
6
  * @since 2.5.9
7
  * @author Algoritmika Ltd.
8
  * @todo filter export by date
@@ -186,7 +186,7 @@ class WCJ_Exporter_Orders {
186
  /**
187
  * export_orders.
188
  *
189
- * @version 2.6.0
190
  * @since 2.4.8
191
  * @todo (maybe) metainfo as separate column
192
  */
@@ -222,8 +222,11 @@ class WCJ_Exporter_Orders {
222
  'offset' => $offset,
223
  'fields' => 'ids',
224
  );
 
225
  $loop_orders = new WP_Query( $args_orders );
226
- if ( ! $loop_orders->have_posts() ) break;
 
 
227
  foreach ( $loop_orders->posts as $order_id ) {
228
  $order = wc_get_order( $order_id );
229
 
@@ -298,7 +301,7 @@ class WCJ_Exporter_Orders {
298
  /**
299
  * export_orders_items.
300
  *
301
- * @version 2.6.0
302
  * @since 2.5.9
303
  */
304
  function export_orders_items( $fields_helper ) {
@@ -333,8 +336,11 @@ class WCJ_Exporter_Orders {
333
  'offset' => $offset,
334
  'fields' => 'ids',
335
  );
 
336
  $loop_orders = new WP_Query( $args_orders );
337
- if ( ! $loop_orders->have_posts() ) break;
 
 
338
  foreach ( $loop_orders->posts as $order_id ) {
339
  $order = wc_get_order( $order_id );
340
 
2
  /**
3
  * Booster for WooCommerce Exporter Orders
4
  *
5
+ * @version 3.0.0
6
  * @since 2.5.9
7
  * @author Algoritmika Ltd.
8
  * @todo filter export by date
186
  /**
187
  * export_orders.
188
  *
189
+ * @version 3.0.0
190
  * @since 2.4.8
191
  * @todo (maybe) metainfo as separate column
192
  */
222
  'offset' => $offset,
223
  'fields' => 'ids',
224
  );
225
+ $args_orders = wcj_maybe_add_date_query( $args_orders );
226
  $loop_orders = new WP_Query( $args_orders );
227
+ if ( ! $loop_orders->have_posts() ) {
228
+ break;
229
+ }
230
  foreach ( $loop_orders->posts as $order_id ) {
231
  $order = wc_get_order( $order_id );
232
 
301
  /**
302
  * export_orders_items.
303
  *
304
+ * @version 3.0.0
305
  * @since 2.5.9
306
  */
307
  function export_orders_items( $fields_helper ) {
336
  'offset' => $offset,
337
  'fields' => 'ids',
338
  );
339
+ $args_orders = wcj_maybe_add_date_query( $args_orders );
340
  $loop_orders = new WP_Query( $args_orders );
341
+ if ( ! $loop_orders->have_posts() ) {
342
+ break;
343
+ }
344
  foreach ( $loop_orders->posts as $order_id ) {
345
  $order = wc_get_order( $order_id );
346
 
includes/export/class-wcj-exporter-products.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce Exporter Products
4
  *
5
- * @version 2.7.0
6
  * @since 2.5.9
7
  * @author Algoritmika Ltd.
8
  */
@@ -57,7 +57,7 @@ class WCJ_Exporter_Products {
57
  /**
58
  * export_products.
59
  *
60
- * @version 2.7.0
61
  * @since 2.5.3
62
  * @todo product attributes
63
  */
@@ -93,6 +93,7 @@ class WCJ_Exporter_Products {
93
  'offset' => $offset,
94
  'fields' => 'ids',
95
  );
 
96
  $loop = new WP_Query( $args );
97
  if ( ! $loop->have_posts() ) {
98
  break;
2
  /**
3
  * Booster for WooCommerce Exporter Products
4
  *
5
+ * @version 3.0.0
6
  * @since 2.5.9
7
  * @author Algoritmika Ltd.
8
  */
57
  /**
58
  * export_products.
59
  *
60
+ * @version 3.0.0
61
  * @since 2.5.3
62
  * @todo product attributes
63
  */
93
  'offset' => $offset,
94
  'fields' => 'ids',
95
  );
96
+ $args = wcj_maybe_add_date_query( $args );
97
  $loop = new WP_Query( $args );
98
  if ( ! $loop->have_posts() ) {
99
  break;
includes/functions/wcj-general-functions.php CHANGED
@@ -2,12 +2,35 @@
2
  /**
3
  * Booster for WooCommerce - Functions
4
  *
5
- * @version 2.9.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
9
  if ( ! defined( 'ABSPATH' ) ) exit;
10
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  if ( ! function_exists( 'wcj_is_module_deprecated' ) ) {
12
  /**
13
  * wcj_is_module_deprecated.
2
  /**
3
  * Booster for WooCommerce - Functions
4
  *
5
+ * @version 3.0.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
9
  if ( ! defined( 'ABSPATH' ) ) exit;
10
 
11
+ if ( ! function_exists( 'wcj_maybe_add_date_query' ) ) {
12
+ /**
13
+ * wcj_maybe_add_date_query.
14
+ *
15
+ * @version 3.0.0
16
+ * @since 3.0.0
17
+ */
18
+ function wcj_maybe_add_date_query( $args ) {
19
+ if ( ( isset( $_GET['start_date'] ) && '' != $_GET['start_date'] ) || ( isset( $_GET['end_date'] ) && '' != $_GET['end_date'] ) ) {
20
+ $date_query = array();
21
+ $date_query['inclusive'] = true;
22
+ if ( isset( $_GET['start_date'] ) && '' != $_GET['start_date'] ) {
23
+ $date_query['after'] = $_GET['start_date'];
24
+ }
25
+ if ( isset( $_GET['end_date'] ) && '' != $_GET['end_date'] ) {
26
+ $date_query['before'] = $_GET['end_date'];
27
+ }
28
+ $args['date_query'] = array( $date_query );
29
+ }
30
+ return $args;
31
+ }
32
+ }
33
+
34
  if ( ! function_exists( 'wcj_is_module_deprecated' ) ) {
35
  /**
36
  * wcj_is_module_deprecated.
includes/functions/wcj-product-functions.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Functions - Product
4
  *
5
- * @version 2.9.0
6
  * @since 2.9.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -179,6 +179,71 @@ if ( ! function_exists( 'wcj_get_product_input_fields' ) ) {
179
  }
180
  }
181
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
182
  if ( ! function_exists( 'wcj_get_products' ) ) {
183
  /**
184
  * wcj_get_products.
2
  /**
3
  * Booster for WooCommerce - Functions - Product
4
  *
5
+ * @version 3.0.0
6
  * @since 2.9.0
7
  * @author Algoritmika Ltd.
8
  */
179
  }
180
  }
181
 
182
+ if ( ! function_exists( 'wcj_get_index_from_key' ) ) {
183
+ /*
184
+ * wcj_get_index_from_key.
185
+ *
186
+ * @version 3.0.0
187
+ * @since 3.0.0
188
+ * @return string
189
+ */
190
+ function wcj_get_index_from_key( $key ) {
191
+ $index = explode( '_', $key );
192
+ $index = array_reverse( $index );
193
+ return $index[0];
194
+ }
195
+ }
196
+
197
+ if ( ! function_exists( 'wcj_get_product_addons' ) ) {
198
+ /*
199
+ * wcj_get_product_addons.
200
+ *
201
+ * @version 3.0.0
202
+ * @since 3.0.0
203
+ * @return string
204
+ */
205
+ function wcj_get_product_addons( $item, $order_currency ) {
206
+
207
+ // Prepare item values
208
+ $values = array();
209
+ if ( WCJ_IS_WC_VERSION_BELOW_3 ) {
210
+ $values = $item;
211
+ } else {
212
+ foreach ( $item->get_meta_data() as $value ) {
213
+ if ( isset( $value->key ) && isset( $value->value ) ) {
214
+ $values[ $value->key ] = $value->value;
215
+ }
216
+ }
217
+ }
218
+
219
+ // Prepare addons (if any)
220
+ $addons = array();
221
+ foreach ( $values as $key => $value ) {
222
+ if ( false !== strpos( $key, 'wcj_product_all_products_addons_label_' ) ) {
223
+ $addons['all_products'][ wcj_get_index_from_key( $key ) ]['label'] = $value;
224
+ }
225
+ if ( false !== strpos( $key, 'wcj_product_per_product_addons_label_' ) ) {
226
+ $addons['per_product'][ wcj_get_index_from_key( $key ) ]['label'] = $value;
227
+ }
228
+ if ( false !== strpos( $key, 'wcj_product_all_products_addons_price_' ) ) {
229
+ $addons['all_products'][ wcj_get_index_from_key( $key ) ]['price'] = $value;
230
+ }
231
+ if ( false !== strpos( $key, 'wcj_product_per_product_addons_price_' ) ) {
232
+ $addons['per_product'][ wcj_get_index_from_key( $key ) ]['price'] = $value;
233
+ }
234
+ }
235
+
236
+ // Final result array
237
+ $return = array();
238
+ foreach ( $addons as $scope => $scope_addons ) {
239
+ foreach ( $scope_addons as $index => $addons_data ) {
240
+ $return[] = $addons_data['label'] . ': ' . wc_price( $addons_data['price'], array( 'currency' => $order_currency ) );
241
+ }
242
+ }
243
+ return ( ! empty( $return ) ) ? implode( ', ', $return ) : '';
244
+ }
245
+ }
246
+
247
  if ( ! function_exists( 'wcj_get_products' ) ) {
248
  /**
249
  * wcj_get_products.
includes/js/wcj-datepicker.js CHANGED
@@ -1,8 +1,11 @@
1
  /**
2
  * wcj-datepicker.
3
  *
4
- * version 2.8.0
 
 
5
  */
 
6
  jQuery(document).ready(function() {
7
  jQuery("input[display='date']").each( function () {
8
  var mindate = jQuery(this).attr("mindate");
@@ -19,7 +22,29 @@ jQuery(document).ready(function() {
19
  maxDate : maxdate,
20
  firstDay : jQuery(this).attr("firstday"),
21
  changeYear: jQuery(this).attr("changeyear"),
22
- yearRange: jQuery(this).attr("yearrange")
 
23
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  });
25
- });
1
  /**
2
  * wcj-datepicker.
3
  *
4
+ * @version 3.0.0
5
+ * @todo maybe_exclude_dates: `date.getDate()`, `date.getFullYear()`
6
+ * @see maybe_exclude_dates: https://stackoverflow.com/questions/501943/can-the-jquery-ui-datepicker-be-made-to-disable-saturdays-and-sundays-and-holid
7
  */
8
+
9
  jQuery(document).ready(function() {
10
  jQuery("input[display='date']").each( function () {
11
  var mindate = jQuery(this).attr("mindate");
22
  maxDate : maxdate,
23
  firstDay : jQuery(this).attr("firstday"),
24
  changeYear: jQuery(this).attr("changeyear"),
25
+ yearRange: jQuery(this).attr("yearrange"),
26
+ beforeShowDay: maybe_exclude_dates,
27
  });
28
+ function maybe_exclude_dates(date){
29
+ var exclude_days = jQuery(this).attr("excludedays");
30
+ if (typeof exclude_days !== typeof undefined && exclude_days !== false) {
31
+ var day = date.getDay();
32
+ for (var i = 0; i < exclude_days.length; i++) {
33
+ if (day == exclude_days[i]) {
34
+ return [false];
35
+ }
36
+ }
37
+ }
38
+ var exclude_months = jQuery(this).attr("excludemonths");
39
+ if (typeof exclude_months !== typeof undefined && exclude_months !== false) {
40
+ var month = date.getMonth() + 1;
41
+ for (var i = 0; i < exclude_months.length; i++) {
42
+ if (month == exclude_months[i]) {
43
+ return [false];
44
+ }
45
+ }
46
+ }
47
+ return [true];
48
+ }
49
  });
50
+ });
includes/js/wcj-product-addons.js CHANGED
@@ -1,7 +1,7 @@
1
  /**
2
  * wcj-product-addons.
3
  *
4
- * version 2.8.0
5
  * since 2.5.3
6
  */
7
 
@@ -31,15 +31,13 @@ function change_price() {
31
  'action': 'product_addons_price_change',
32
  'product_id': product_id,
33
  };
34
- jQuery("input[name^='wcj_product_all_products_addons_']").each( function () {
35
  if (jQuery(this).is(':checked')) {
36
  data[jQuery(this).attr('name')] = jQuery(this).val();
37
  }
38
  });
39
- jQuery("input[name^='wcj_product_per_product_addons_']").each( function () {
40
- if (jQuery(this).is(':checked')) {
41
- data[jQuery(this).attr('name')] = jQuery(this).val();
42
- }
43
  });
44
  jQuery.post(_ajax_object.ajax_url, data, function(response) {
45
  if ( '' != response ) {
@@ -55,10 +53,7 @@ function change_price() {
55
 
56
  jQuery(document).ready(function() {
57
  change_price();
58
- jQuery("input[name^='wcj_product_all_products_addons_']").each( function () {
59
- jQuery(this).change( change_price );
60
- });
61
- jQuery("input[name^='wcj_product_per_product_addons_']").each( function () {
62
  jQuery(this).change( change_price );
63
  });
64
  });
1
  /**
2
  * wcj-product-addons.
3
  *
4
+ * version 3.0.0
5
  * since 2.5.3
6
  */
7
 
31
  'action': 'product_addons_price_change',
32
  'product_id': product_id,
33
  };
34
+ jQuery("input[name^='wcj_product_all_products_addons_'], input[name^='wcj_product_per_product_addons_']").each( function () {
35
  if (jQuery(this).is(':checked')) {
36
  data[jQuery(this).attr('name')] = jQuery(this).val();
37
  }
38
  });
39
+ jQuery("select[name^='wcj_product_all_products_addons_'], select[name^='wcj_product_per_product_addons_']").each( function () {
40
+ data[jQuery(this).attr('name')] = jQuery(this).find(':selected').val();
 
 
41
  });
42
  jQuery.post(_ajax_object.ajax_url, data, function(response) {
43
  if ( '' != response ) {
53
 
54
  jQuery(document).ready(function() {
55
  change_price();
56
+ jQuery("[name^='wcj_product_all_products_addons_'], [name^='wcj_product_per_product_addons_']").each( function () {
 
 
 
57
  jQuery(this).change( change_price );
58
  });
59
  });
includes/lib/PHPMathParser/Expressions.php CHANGED
@@ -1,110 +1,110 @@
1
- <?php
2
-
3
- //namespace PHPMathParser;
4
-
5
- class Alg_Parenthesis extends Alg_TerminalExpression {
6
-
7
- protected $precedence = 6;
8
-
9
- public function operate(Alg_Stack $stack) {
10
- }
11
-
12
- public function getPrecedence() {
13
- return $this->precedence;
14
- }
15
-
16
- public function isNoOp() {
17
- return true;
18
- }
19
-
20
- public function isParenthesis() {
21
- return true;
22
- }
23
-
24
- public function isOpen() {
25
- return $this->value == '(';
26
- }
27
-
28
- }
29
-
30
- class Alg_Number extends Alg_TerminalExpression {
31
-
32
- public function operate(Alg_Stack $stack) {
33
- return $this->value;
34
- }
35
-
36
- }
37
-
38
- abstract class Alg_Operator extends Alg_TerminalExpression {
39
-
40
- protected $precedence = 0;
41
- protected $leftAssoc = true;
42
-
43
- public function getPrecedence() {
44
- return $this->precedence;
45
- }
46
-
47
- public function isLeftAssoc() {
48
- return $this->leftAssoc;
49
- }
50
-
51
- public function isOperator() {
52
- return true;
53
- }
54
-
55
- }
56
-
57
- class Alg_Addition extends Alg_Operator {
58
-
59
- protected $precedence = 4;
60
-
61
- public function operate(Alg_Stack $stack) {
62
- return $stack->pop()->operate($stack) + $stack->pop()->operate($stack);
63
- }
64
-
65
- }
66
-
67
- class Alg_Subtraction extends Alg_Operator {
68
-
69
- protected $precedence = 4;
70
-
71
- public function operate(Alg_Stack $stack) {
72
- $left = $stack->pop()->operate($stack);
73
- $right = $stack->pop()->operate($stack);
74
- return $right - $left;
75
- }
76
-
77
- }
78
-
79
- class Alg_Multiplication extends Alg_Operator {
80
-
81
- protected $precedence = 5;
82
-
83
- public function operate(Alg_Stack $stack) {
84
- return $stack->pop()->operate($stack) * $stack->pop()->operate($stack);
85
- }
86
-
87
- }
88
-
89
- class Alg_Division extends Alg_Operator {
90
-
91
- protected $precedence = 5;
92
-
93
- public function operate(Alg_Stack $stack) {
94
- $left = $stack->pop()->operate($stack);
95
- $right = $stack->pop()->operate($stack);
96
- return $right / $left;
97
- }
98
-
99
- }
100
-
101
- class Alg_Power extends Alg_Operator {
102
-
103
- protected $precedence = 5;
104
-
105
- public function operate(Alg_Stack $stack) {
106
- $left = $stack->pop()->operate($stack);
107
- $right = $stack->pop()->operate($stack);
108
- return pow($left,$right);
109
- }
110
- }
1
+ <?php
2
+
3
+ //namespace PHPMathParser;
4
+
5
+ class Alg_Parenthesis extends Alg_TerminalExpression {
6
+
7
+ protected $precedence = 6;
8
+
9
+ public function operate(Alg_Stack $stack) {
10
+ }
11
+
12
+ public function getPrecedence() {
13
+ return $this->precedence;
14
+ }
15
+
16
+ public function isNoOp() {
17
+ return true;
18
+ }
19
+
20
+ public function isParenthesis() {
21
+ return true;
22
+ }
23
+
24
+ public function isOpen() {
25
+ return $this->value == '(';
26
+ }
27
+
28
+ }
29
+
30
+ class Alg_Number extends Alg_TerminalExpression {
31
+
32
+ public function operate(Alg_Stack $stack) {
33
+ return $this->value;
34
+ }
35
+
36
+ }
37
+
38
+ abstract class Alg_Operator extends Alg_TerminalExpression {
39
+
40
+ protected $precedence = 0;
41
+ protected $leftAssoc = true;
42
+
43
+ public function getPrecedence() {
44
+ return $this->precedence;
45
+ }
46
+
47
+ public function isLeftAssoc() {
48
+ return $this->leftAssoc;
49
+ }
50
+
51
+ public function isOperator() {
52
+ return true;
53
+ }
54
+
55
+ }
56
+
57
+ class Alg_Addition extends Alg_Operator {
58
+
59
+ protected $precedence = 4;
60
+
61
+ public function operate(Alg_Stack $stack) {
62
+ return $stack->pop()->operate($stack) + $stack->pop()->operate($stack);
63
+ }
64
+
65
+ }
66
+
67
+ class Alg_Subtraction extends Alg_Operator {
68
+
69
+ protected $precedence = 4;
70
+
71
+ public function operate(Alg_Stack $stack) {
72
+ $left = $stack->pop()->operate($stack);
73
+ $right = $stack->pop()->operate($stack);
74
+ return $right - $left;
75
+ }
76
+
77
+ }
78
+
79
+ class Alg_Multiplication extends Alg_Operator {
80
+
81
+ protected $precedence = 5;
82
+
83
+ public function operate(Alg_Stack $stack) {
84
+ return $stack->pop()->operate($stack) * $stack->pop()->operate($stack);
85
+ }
86
+
87
+ }
88
+
89
+ class Alg_Division extends Alg_Operator {
90
+
91
+ protected $precedence = 5;
92
+
93
+ public function operate(Alg_Stack $stack) {
94
+ $left = $stack->pop()->operate($stack);
95
+ $right = $stack->pop()->operate($stack);
96
+ return $right / $left;
97
+ }
98
+
99
+ }
100
+
101
+ class Alg_Power extends Alg_Operator {
102
+
103
+ protected $precedence = 5;
104
+
105
+ public function operate(Alg_Stack $stack) {
106
+ $left = $stack->pop()->operate($stack);
107
+ $right = $stack->pop()->operate($stack);
108
+ return pow($left,$right);
109
+ }
110
+ }
includes/lib/PHPMathParser/Math.php CHANGED
@@ -1,120 +1,120 @@
1
- <?php
2
-
3
- //namespace PHPMathParser;
4
-
5
- require_once 'Stack.php';
6
- require_once 'TerminalExpression.php';
7
- require_once 'Expressions.php';
8
-
9
- class Alg_Math {
10
-
11
- protected $variables = array();
12
-
13
- public function evaluate($string) {
14
- $stack = $this->parse($string);
15
- return $this->run($stack);
16
- }
17
-
18
- public function parse($string) {
19
- $tokens = $this->tokenize($string);
20
- $output = new Alg_Stack();
21
- $operators = new Alg_Stack();
22
- foreach ($tokens as $token) {
23
- $token = $this->extractVariables($token);
24
- $expression = Alg_TerminalExpression::factory($token);
25
- if ($expression->isOperator()) {
26
- $this->parseOperator($expression, $output, $operators);
27
- } elseif ($expression->isParenthesis()) {
28
- $this->parseParenthesis($expression, $output, $operators);
29
- } else {
30
- $output->push($expression);
31
- }
32
- }
33
- while (($op = $operators->pop())) {
34
- if ($op->isParenthesis()) {
35
- throw new RuntimeException('Mismatched Parenthesis');
36
- }
37
- $output->push($op);
38
- }
39
- return $output;
40
- }
41
-
42
- public function registerVariable($name, $value) {
43
- $this->variables[$name] = $value;
44
- }
45
-
46
- public function run(Alg_Stack $stack) {
47
- while (($operator = $stack->pop()) && $operator->isOperator()) {
48
- $value = $operator->operate($stack);
49
- if (!is_null($value)) {
50
- $stack->push(Alg_TerminalExpression::factory($value));
51
- }
52
- }
53
- return $operator ? $operator->render() : $this->render($stack);
54
- }
55
-
56
- protected function extractVariables($token) {
57
- if ($token[0] == '$') {
58
- $key = substr($token, 1);
59
- return isset($this->variables[$key]) ? $this->variables[$key] : 0;
60
- }
61
- return $token;
62
- }
63
-
64
- protected function render(Alg_Stack $stack) {
65
- $output = '';
66
- while (($el = $stack->pop())) {
67
- $output .= $el->render();
68
- }
69
- if ($output) {
70
- return $output;
71
- }
72
- throw new RuntimeException('Could not render output');
73
- }
74
-
75
- protected function parseParenthesis(Alg_TerminalExpression $expression, Alg_Stack $output, Alg_Stack $operators) {
76
- if ($expression->isOpen()) {
77
- $operators->push($expression);
78
- } else {
79
- $clean = false;
80
- while (($end = $operators->pop())) {
81
- if ($end->isParenthesis()) {
82
- $clean = true;
83
- break;
84
- } else {
85
- $output->push($end);
86
- }
87
- }
88
- if (!$clean) {
89
- throw new RuntimeException('Mismatched Parenthesis');
90
- }
91
- }
92
- }
93
-
94
- protected function parseOperator(Alg_TerminalExpression $expression, Alg_Stack $output, Alg_Stack $operators) {
95
- $end = $operators->poke();
96
- if (!$end) {
97
- $operators->push($expression);
98
- } elseif ($end->isOperator()) {
99
- do {
100
- if ($expression->isLeftAssoc() && $expression->getPrecedence() <= $end->getPrecedence()) {
101
- $output->push($operators->pop());
102
- } elseif (!$expression->isLeftAssoc() && $expression->getPrecedence() < $end->getPrecedence()) {
103
- $output->push($operators->pop());
104
- } else {
105
- break;
106
- }
107
- } while (($end = $operators->poke()) && $end->isOperator());
108
- $operators->push($expression);
109
- } else {
110
- $operators->push($expression);
111
- }
112
- }
113
-
114
- protected function tokenize($string) {
115
- $parts = preg_split('((\f+|\+|-|\(|\)|\*|\^|/)|\s+)', $string, null, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE);
116
- $parts = array_map('trim', $parts);
117
- return $parts;
118
- }
119
-
120
- }
1
+ <?php
2
+
3
+ //namespace PHPMathParser;
4
+
5
+ require_once 'Stack.php';
6
+ require_once 'TerminalExpression.php';
7
+ require_once 'Expressions.php';
8
+
9
+ class Alg_Math {
10
+
11
+ protected $variables = array();
12
+
13
+ public function evaluate($string) {
14
+ $stack = $this->parse($string);
15
+ return $this->run($stack);
16
+ }
17
+
18
+ public function parse($string) {
19
+ $tokens = $this->tokenize($string);
20
+ $output = new Alg_Stack();
21
+ $operators = new Alg_Stack();
22
+ foreach ($tokens as $token) {
23
+ $token = $this->extractVariables($token);
24
+ $expression = Alg_TerminalExpression::factory($token);
25
+ if ($expression->isOperator()) {
26
+ $this->parseOperator($expression, $output, $operators);
27
+ } elseif ($expression->isParenthesis()) {
28
+ $this->parseParenthesis($expression, $output, $operators);
29
+ } else {
30
+ $output->push($expression);
31
+ }
32
+ }
33
+ while (($op = $operators->pop())) {
34
+ if ($op->isParenthesis()) {
35
+ throw new RuntimeException('Mismatched Parenthesis');
36
+ }
37
+ $output->push($op);
38
+ }
39
+ return $output;
40
+ }
41
+
42
+ public function registerVariable($name, $value) {
43
+ $this->variables[$name] = $value;
44
+ }
45
+
46
+ public function run(Alg_Stack $stack) {
47
+ while (($operator = $stack->pop()) && $operator->isOperator()) {
48
+ $value = $operator->operate($stack);
49
+ if (!is_null($value)) {
50
+ $stack->push(Alg_TerminalExpression::factory($value));
51
+ }
52
+ }
53
+ return $operator ? $operator->render() : $this->render($stack);
54
+ }
55
+
56
+ protected function extractVariables($token) {
57
+ if ($token[0] == '$') {
58
+ $key = substr($token, 1);
59
+ return isset($this->variables[$key]) ? $this->variables[$key] : 0;
60
+ }
61
+ return $token;
62
+ }
63
+
64
+ protected function render(Alg_Stack $stack) {
65
+ $output = '';
66
+ while (($el = $stack->pop())) {
67
+ $output .= $el->render();
68
+ }
69
+ if ($output) {
70
+ return $output;
71
+ }
72
+ throw new RuntimeException('Could not render output');
73
+ }
74
+
75
+ protected function parseParenthesis(Alg_TerminalExpression $expression, Alg_Stack $output, Alg_Stack $operators) {
76
+ if ($expression->isOpen()) {
77
+ $operators->push($expression);
78
+ } else {
79
+ $clean = false;
80
+ while (($end = $operators->pop())) {
81
+ if ($end->isParenthesis()) {
82
+ $clean = true;
83
+ break;
84
+ } else {
85
+ $output->push($end);
86
+ }
87
+ }
88
+ if (!$clean) {
89
+ throw new RuntimeException('Mismatched Parenthesis');
90
+ }
91
+ }
92
+ }
93
+
94
+ protected function parseOperator(Alg_TerminalExpression $expression, Alg_Stack $output, Alg_Stack $operators) {
95
+ $end = $operators->poke();
96
+ if (!$end) {
97
+ $operators->push($expression);
98
+ } elseif ($end->isOperator()) {
99
+ do {
100
+ if ($expression->isLeftAssoc() && $expression->getPrecedence() <= $end->getPrecedence()) {
101
+ $output->push($operators->pop());
102
+ } elseif (!$expression->isLeftAssoc() && $expression->getPrecedence() < $end->getPrecedence()) {
103
+ $output->push($operators->pop());
104
+ } else {
105
+ break;
106
+ }
107
+ } while (($end = $operators->poke()) && $end->isOperator());
108
+ $operators->push($expression);
109
+ } else {
110
+ $operators->push($expression);
111
+ }
112
+ }
113
+
114
+ protected function tokenize($string) {
115
+ $parts = preg_split('((\f+|\+|-|\(|\)|\*|\^|/)|\s+)', $string, null, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE);
116
+ $parts = array_map('trim', $parts);
117
+ return $parts;
118
+ }
119
+
120
+ }
includes/lib/PHPMathParser/Stack.php CHANGED
@@ -1,21 +1,21 @@
1
- <?php
2
-
3
- //namespace PHPMathParser;
4
-
5
- class Alg_Stack {
6
-
7
- protected $data = array();
8
-
9
- public function push($element) {
10
- $this->data[] = $element;
11
- }
12
-
13
- public function poke() {
14
- return end($this->data);
15
- }
16
-
17
- public function pop() {
18
- return array_pop($this->data);
19
- }
20
-
21
- }
1
+ <?php
2
+
3
+ //namespace PHPMathParser;
4
+
5
+ class Alg_Stack {
6
+
7
+ protected $data = array();
8
+
9
+ public function push($element) {
10
+ $this->data[] = $element;
11
+ }
12
+
13
+ public function poke() {
14
+ return end($this->data);
15
+ }
16
+
17
+ public function pop() {
18
+ return array_pop($this->data);
19
+ }
20
+
21
+ }
includes/lib/PHPMathParser/TerminalExpression.php CHANGED
@@ -1,53 +1,53 @@
1
- <?php
2
-
3
- //namespace PHPMathParser;
4
-
5
- abstract class Alg_TerminalExpression {
6
-
7
- protected $value = '';
8
-
9
- public function __construct($value) {
10
- $this->value = $value;
11
- }
12
-
13
- public static function factory($value) {
14
-
15
- // var_dump($value);
16
- if (is_object($value) && $value instanceof Alg_TerminalExpression) {
17
- return $value;
18
- } elseif (is_numeric($value)) {
19
- return new Alg_Number($value);
20
- } elseif ($value == '+') {
21
- return new Alg_Addition($value);
22
- } elseif ($value == '-') {
23
- return new Alg_Subtraction($value);
24
- } elseif ($value == '*') {
25
- return new Alg_Multiplication($value);
26
- } elseif ($value == '/') {
27
- return new Alg_Division($value);
28
- } elseif (in_array($value, array('(', ')'))) {
29
- return new Alg_Parenthesis($value);
30
- } elseif ($value == '^') {
31
- return new Alg_Power($value);
32
- }
33
- throw new Exception('Undefined Value ' . $value);
34
- }
35
-
36
- abstract public function operate(Alg_Stack $stack);
37
-
38
- public function isOperator() {
39
- return false;
40
- }
41
-
42
- public function isParenthesis() {
43
- return false;
44
- }
45
-
46
- public function isNoOp() {
47
- return false;
48
- }
49
-
50
- public function render() {
51
- return $this->value;
52
- }
53
- }
1
+ <?php
2
+
3
+ //namespace PHPMathParser;
4
+
5
+ abstract class Alg_TerminalExpression {
6
+
7
+ protected $value = '';
8
+
9
+ public function __construct($value) {
10
+ $this->value = $value;
11
+ }
12
+
13
+ public static function factory($value) {
14
+
15
+ // var_dump($value);
16
+ if (is_object($value) && $value instanceof Alg_TerminalExpression) {
17
+ return $value;
18
+ } elseif (is_numeric($value)) {
19
+ return new Alg_Number($value);
20
+ } elseif ($value == '+') {
21
+ return new Alg_Addition($value);
22
+ } elseif ($value == '-') {
23
+ return new Alg_Subtraction($value);
24
+ } elseif ($value == '*') {
25
+ return new Alg_Multiplication($value);
26
+ } elseif ($value == '/') {
27
+ return new Alg_Division($value);
28
+ } elseif (in_array($value, array('(', ')'))) {
29
+ return new Alg_Parenthesis($value);
30
+ } elseif ($value == '^') {
31
+ return new Alg_Power($value);
32
+ }
33
+ throw new Exception('Undefined Value ' . $value);
34
+ }
35
+
36
+ abstract public function operate(Alg_Stack $stack);
37
+
38
+ public function isOperator() {
39
+ return false;
40
+ }
41
+
42
+ public function isParenthesis() {
43
+ return false;
44
+ }
45
+
46
+ public function isNoOp() {
47
+ return false;
48
+ }
49
+
50
+ public function render() {
51
+ return $this->value;
52
+ }
53
+ }
includes/lib/tcpdf_min/fonts/stsongstdlight.php CHANGED
@@ -1,39 +1,39 @@
1
- <?php
2
- $type = 'cidfont0';
3
- $name = 'STSongStd-Light-Acro';
4
- $displayname = 'STSong Light (Simp. Chinese)';
5
- $desc = array(
6
- 'Ascent' => 752,
7
- 'Descent' => -271,
8
- 'CapHeight' => 737,
9
- 'Flags' => 6,
10
- 'FontBBox' => '[-25 -254 1000 880]',
11
- 'ItalicAngle' => 0,
12
- 'StemV' => 58,
13
- 'Style' => '<< /Panose <000000000400000000000000> >>',
14
- );
15
- $cidinfo = array(
16
- 'Registry' => 'Adobe',
17
- 'Ordering' => 'GB1',
18
- 'Supplement' => '2',
19
- );
20
- $enc = 'UniGB-UCS2-H';
21
-
22
- // underline position, needs checking:
23
- $up = -130;
24
- $ut = 40;
25
-
26
- $dw = 1000;
27
- $cw = array(
28
- 32 => 207, 33 => 270, 34 => 342, 35 => 467, 36 => 462, 37 => 797, 38 => 710, 39 => 239, 40 => 374, 41 => 374,
29
- 42 => 423, 43 => 605, 44 => 238, 45 => 375, 46 => 238, 47 => 334, 48 => 462, 49 => 462, 50 => 462, 51 => 462,
30
- 52 => 462, 53 => 462, 54 => 462, 55 => 462, 56 => 462, 57 => 462, 58 => 238, 59 => 238, 60 => 605, 61 => 605,
31
- 62 => 605, 63 => 344, 64 => 748, 65 => 684, 66 => 560, 67 => 695, 68 => 739, 69 => 563, 70 => 511, 71 => 729,
32
- 72 => 793, 73 => 318, 74 => 312, 75 => 666, 76 => 526, 77 => 896, 78 => 758, 79 => 772, 80 => 544, 81 => 772,
33
- 82 => 628, 83 => 465, 84 => 607, 85 => 753, 86 => 711, 87 => 972, 88 => 647, 89 => 620, 90 => 607, 91 => 374,
34
- 92 => 333, 93 => 374, 94 => 606, 95 => 500, 96 => 239, 97 => 417, 98 => 503, 99 => 427, 100 => 529, 101 => 415,
35
- 102 => 264, 103 => 444, 104 => 518, 105 => 241, 106 => 230, 107 => 495, 108 => 228, 109 => 793, 110 => 527, 111 => 524,
36
- 112 => 524, 113 => 504, 114 => 338, 115 => 336, 116 => 277, 117 => 517, 118 => 450, 119 => 652, 120 => 466, 121 => 452,
37
- 122 => 407, 123 => 370, 124 => 258, 125 => 370, 126 => 605
38
- );
39
- // --- EOF ---
1
+ <?php
2
+ $type = 'cidfont0';
3
+ $name = 'STSongStd-Light-Acro';
4
+ $displayname = 'STSong Light (Simp. Chinese)';
5
+ $desc = array(
6
+ 'Ascent' => 752,
7
+ 'Descent' => -271,
8
+ 'CapHeight' => 737,
9
+ 'Flags' => 6,
10
+ 'FontBBox' => '[-25 -254 1000 880]',
11
+ 'ItalicAngle' => 0,
12
+ 'StemV' => 58,
13
+ 'Style' => '<< /Panose <000000000400000000000000> >>',
14
+ );
15
+ $cidinfo = array(
16
+ 'Registry' => 'Adobe',
17
+ 'Ordering' => 'GB1',
18
+ 'Supplement' => '2',
19
+ );
20
+ $enc = 'UniGB-UCS2-H';
21
+
22
+ // underline position, needs checking:
23
+ $up = -130;
24
+ $ut = 40;
25
+
26
+ $dw = 1000;
27
+ $cw = array(
28
+ 32 => 207, 33 => 270, 34 => 342, 35 => 467, 36 => 462, 37 => 797, 38 => 710, 39 => 239, 40 => 374, 41 => 374,
29
+ 42 => 423, 43 => 605, 44 => 238, 45 => 375, 46 => 238, 47 => 334, 48 => 462, 49 => 462, 50 => 462, 51 => 462,
30
+ 52 => 462, 53 => 462, 54 => 462, 55 => 462, 56 => 462, 57 => 462, 58 => 238, 59 => 238, 60 => 605, 61 => 605,
31
+ 62 => 605, 63 => 344, 64 => 748, 65 => 684, 66 => 560, 67 => 695, 68 => 739, 69 => 563, 70 => 511, 71 => 729,
32
+ 72 => 793, 73 => 318, 74 => 312, 75 => 666, 76 => 526, 77 => 896, 78 => 758, 79 => 772, 80 => 544, 81 => 772,
33
+ 82 => 628, 83 => 465, 84 => 607, 85 => 753, 86 => 711, 87 => 972, 88 => 647, 89 => 620, 90 => 607, 91 => 374,
34
+ 92 => 333, 93 => 374, 94 => 606, 95 => 500, 96 => 239, 97 => 417, 98 => 503, 99 => 427, 100 => 529, 101 => 415,
35
+ 102 => 264, 103 => 444, 104 => 518, 105 => 241, 106 => 230, 107 => 495, 108 => 228, 109 => 793, 110 => 527, 111 => 524,
36
+ 112 => 524, 113 => 504, 114 => 338, 115 => 336, 116 => 277, 117 => 517, 118 => 450, 119 => 652, 120 => 466, 121 => 452,
37
+ 122 => 407, 123 => 370, 124 => 258, 125 => 370, 126 => 605
38
+ );
39
+ // --- EOF ---
includes/lib/wSelect/wSelect.css CHANGED
@@ -1,179 +1,179 @@
1
- /***********************************
2
- * Layout
3
- ***********************************/
4
- .wSelect-el {
5
- width: 0px;
6
- height: 0px;
7
- padding: 0px;
8
- margin: 0px;
9
- border: none;
10
- overflow: hidden;
11
- }
12
- .wSelect {
13
- position: relative;
14
- display: inline-block;
15
- *display: inline;
16
- zoom: 1;
17
- vertical-align: middle;
18
- cursor: pointer;
19
- -webkit-touch-callout: none;
20
- -webkit-user-select: none;
21
- -khtml-user-select: none;
22
- -moz-user-select: none;
23
- -ms-user-select: none;
24
- user-select: none;
25
- }
26
- .wSelect-arrow {
27
- position: absolute;
28
- width: 30px;
29
- right: 0px;
30
- top: 0px;
31
- height: 100%;
32
- background-repeat: no-repeat;
33
- background-position: 0px center;
34
- }
35
- .wSelect-hover .wSelect-arrow,
36
- .wSelect-active .wSelect-arrow {
37
- background-position: -30px center;
38
- }
39
- .wSelect.wSelect-multiple {
40
- overflow: hidden;
41
- }
42
- .wSelect-selected {
43
- margin: 0px 35px 0px 5px;
44
- padding: 5px 0;
45
- overflow: hidden;
46
- white-space: nowrap;
47
- background-repeat: no-repeat;
48
- background-position: 0 center;
49
- }
50
- .wSelect-options-holder {
51
- position: absolute;
52
- display: none;
53
- left: 0px;
54
- z-index: 200;
55
- overflow: hidden;
56
- }
57
- .wSelect-multiple .wSelect-options-holder {
58
- position: relative !important;
59
- display: block !important;
60
- top: auto !important;
61
- z-index: auto !important;
62
- border: none !important;
63
- }
64
- .wSelect-options {
65
- overflow-y: scroll;
66
- overflow-x: hidden;
67
- }
68
- .wSelect-option {
69
- background-repeat: no-repeat;
70
- background-position: 5px center;
71
- margin-bottom: 1px;
72
- cursor: pointer;
73
- }
74
- .wSelect-option-last {
75
- margin-bottom: 0px;
76
- }
77
- .wSelect-option-value {
78
- margin: 0 5px;
79
- padding: 5px 0;
80
- background-repeat: no-repeat;
81
- background-position: 0 center;
82
- white-space: nowrap;
83
- overflow: hidden;
84
- }
85
- .wSelect-option-disabled .wSelect-option-value {
86
- filter: alpha(opacity=20);
87
- opacity: 0.2;
88
- }
89
- .wSelect-option-icon {
90
- padding-left: 20px;
91
- }
92
-
93
- /***********************************
94
- * Theme - classic
95
- ***********************************/
96
- .wSelect-theme-classic.wSelect {
97
- border: solid #CCC 1px;
98
- color: #555;
99
- background-color: #FAFAFA;
100
- font-size: 12px;
101
- font-family: verdana;
102
- line-height: 20px;
103
- min-width: 100px;
104
- max-width: 300px;
105
- margin-bottom: 7px;
106
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
107
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
108
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
109
- border-radius: 5px;
110
- -webkit-border-radius: 5px;
111
- -moz-border-radius: 5px;
112
- }
113
- .wSelect-arrow {
114
- background-image: url('./img/arrow-down.png');
115
- }
116
- .wSelect-theme-classic.wSelect-hover,
117
- .wSelect-theme-classic.wSelect-active {
118
- border-color: rgb(82, 168, 236);
119
- border-color: rgba(82, 168, 236, 0.8);
120
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
121
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
122
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
123
- }
124
- .wSelect-theme-classic .wSelect-options-holder {
125
- background-color: #FAFAFA;
126
- border: solid #CACACA 1px;
127
- border-radius: 5px;
128
- -webkit-border-radius: 5px;
129
- -moz-border-radius: 5px;
130
- min-width: 100px;
131
- max-width: 300px;
132
- }
133
- .wSelect-theme-classic .wSelect-options {
134
- border: solid #FAFAFA 1px;
135
- border-radius: 4px;
136
- -webkit-border-radius: 4px;
137
- -moz-border-radius: 4px;
138
- }
139
- .wSelect-theme-classic .wSelect-option {
140
- background-color: #FFF;
141
- color: #333;
142
- }
143
- .wSelect-theme-classic .wSelect-option-disabled {
144
- background-color: #FFF !important;
145
- color: #333 !important;
146
- }
147
- .wSelect-theme-classic .wSelect-option-selected,
148
- .wSelect-theme-classic .wSelect-option:hover {
149
- background-color: #99AAFF;
150
- color: #FAFAFA;
151
- }
152
-
153
- /***********************************
154
- * Labels
155
- ***********************************/
156
- .wLabel-top,
157
- .wLabel-left,
158
- .wLabel-left-top {
159
- vertical-align: middle;
160
- font-size: 10px;
161
- line-height: 16px;
162
- color: #999;
163
- display: block;
164
- margin: 5px 0 3px 3px;
165
- }
166
- .wLabel-left-top {
167
- vertical-align: top;
168
- }
169
- @media screen and (min-width: 600px) {
170
- .wLabel-left,
171
- .wLabel-left-top {
172
- display: inline-block;
173
- *display: inline;
174
- zoom: 1;
175
- width: 70px;
176
- text-align: right;
177
- margin: 0 0 7px 0;
178
- }
179
  }
1
+ /***********************************
2
+ * Layout
3
+ ***********************************/
4
+ .wSelect-el {
5
+ width: 0px;
6
+ height: 0px;
7
+ padding: 0px;
8
+ margin: 0px;
9
+ border: none;
10
+ overflow: hidden;
11
+ }
12
+ .wSelect {
13
+ position: relative;
14
+ display: inline-block;
15
+ *display: inline;
16
+ zoom: 1;
17
+ vertical-align: middle;
18
+ cursor: pointer;
19
+ -webkit-touch-callout: none;
20
+ -webkit-user-select: none;
21
+ -khtml-user-select: none;
22
+ -moz-user-select: none;
23
+ -ms-user-select: none;
24
+ user-select: none;
25
+ }
26
+ .wSelect-arrow {
27
+ position: absolute;
28
+ width: 30px;
29
+ right: 0px;
30
+ top: 0px;
31
+ height: 100%;
32
+ background-repeat: no-repeat;
33
+ background-position: 0px center;
34
+ }
35
+ .wSelect-hover .wSelect-arrow,
36
+ .wSelect-active .wSelect-arrow {
37
+ background-position: -30px center;
38
+ }
39
+ .wSelect.wSelect-multiple {
40
+ overflow: hidden;
41
+ }
42
+ .wSelect-selected {
43
+ margin: 0px 35px 0px 5px;
44
+ padding: 5px 0;
45
+ overflow: hidden;
46
+ white-space: nowrap;
47
+ background-repeat: no-repeat;
48
+ background-position: 0 center;
49
+ }
50
+ .wSelect-options-holder {
51
+ position: absolute;
52
+ display: none;
53
+ left: 0px;
54
+ z-index: 200;
55
+ overflow: hidden;
56
+ }
57
+ .wSelect-multiple .wSelect-options-holder {
58
+ position: relative !important;
59
+ display: block !important;
60
+ top: auto !important;
61
+ z-index: auto !important;
62
+ border: none !important;
63
+ }
64
+ .wSelect-options {
65
+ overflow-y: scroll;
66
+ overflow-x: hidden;
67
+ }
68
+ .wSelect-option {
69
+ background-repeat: no-repeat;
70
+ background-position: 5px center;
71
+ margin-bottom: 1px;
72
+ cursor: pointer;
73
+ }
74
+ .wSelect-option-last {
75
+ margin-bottom: 0px;
76
+ }
77
+ .wSelect-option-value {
78
+ margin: 0 5px;
79
+ padding: 5px 0;
80
+ background-repeat: no-repeat;
81
+ background-position: 0 center;
82
+ white-space: nowrap;
83
+ overflow: hidden;
84
+ }
85
+ .wSelect-option-disabled .wSelect-option-value {
86
+ filter: alpha(opacity=20);
87
+ opacity: 0.2;
88
+ }
89
+ .wSelect-option-icon {
90
+ padding-left: 20px;
91
+ }
92
+
93
+ /***********************************
94
+ * Theme - classic
95
+ ***********************************/
96
+ .wSelect-theme-classic.wSelect {
97
+ border: solid #CCC 1px;
98
+ color: #555;
99
+ background-color: #FAFAFA;
100
+ font-size: 12px;
101
+ font-family: verdana;
102
+ line-height: 20px;
103
+ min-width: 100px;
104
+ max-width: 300px;
105
+ margin-bottom: 7px;
106
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
107
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
108
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
109
+ border-radius: 5px;
110
+ -webkit-border-radius: 5px;
111
+ -moz-border-radius: 5px;
112
+ }
113
+ .wSelect-arrow {
114
+ background-image: url('./img/arrow-down.png');
115
+ }
116
+ .wSelect-theme-classic.wSelect-hover,
117
+ .wSelect-theme-classic.wSelect-active {
118
+ border-color: rgb(82, 168, 236);
119
+ border-color: rgba(82, 168, 236, 0.8);
120
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
121
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
122
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
123
+ }
124
+ .wSelect-theme-classic .wSelect-options-holder {
125
+ background-color: #FAFAFA;
126
+ border: solid #CACACA 1px;
127
+ border-radius: 5px;
128
+ -webkit-border-radius: 5px;
129
+ -moz-border-radius: 5px;
130
+ min-width: 100px;
131
+ max-width: 300px;
132
+ }
133
+ .wSelect-theme-classic .wSelect-options {
134
+ border: solid #FAFAFA 1px;
135
+ border-radius: 4px;
136
+ -webkit-border-radius: 4px;
137
+ -moz-border-radius: 4px;
138
+ }
139
+ .wSelect-theme-classic .wSelect-option {
140
+ background-color: #FFF;
141
+ color: #333;
142
+ }
143
+ .wSelect-theme-classic .wSelect-option-disabled {
144
+ background-color: #FFF !important;
145
+ color: #333 !important;
146
+ }
147
+ .wSelect-theme-classic .wSelect-option-selected,
148
+ .wSelect-theme-classic .wSelect-option:hover {
149
+ background-color: #99AAFF;
150
+ color: #FAFAFA;
151
+ }
152
+
153
+ /***********************************
154
+ * Labels
155
+ ***********************************/
156
+ .wLabel-top,
157
+ .wLabel-left,
158
+ .wLabel-left-top {
159
+ vertical-align: middle;
160
+ font-size: 10px;
161
+ line-height: 16px;
162
+ color: #999;
163
+ display: block;
164
+ margin: 5px 0 3px 3px;
165
+ }
166
+ .wLabel-left-top {
167
+ vertical-align: top;
168
+ }
169
+ @media screen and (min-width: 600px) {
170
+ .wLabel-left,
171
+ .wLabel-left-top {
172
+ display: inline-block;
173
+ *display: inline;
174
+ zoom: 1;
175
+ width: 70px;
176
+ text-align: right;
177
+ margin: 0 0 7px 0;
178
+ }
179
  }
includes/settings/meta-box/wcj-settings-meta-box-product-addons.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Settings Meta Box - Product Addons
4
  *
5
- * @version 2.8.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -49,18 +49,25 @@ for ( $i = 1; $i <= $total_number; $i++ ) {
49
  'options' => array(
50
  'checkbox' => __( 'Checkbox', 'woocommerce-jetpack' ),
51
  'radio' => __( 'Radio Buttons', 'woocommerce-jetpack' ),
 
52
  ),
53
  ),
 
 
 
 
 
 
54
  array(
55
  'title' => __( 'Label(s)', 'woocommerce-jetpack' ),
56
- 'tooltip' => __( 'For radio enter one value per line.', 'woocommerce-jetpack' ),
57
  'name' => 'wcj_product_addons_per_product_label_' . $i,
58
  'default' => '',
59
  'type' => 'textarea',
60
  ),
61
  array(
62
  'title' => __( 'Price(s)', 'woocommerce-jetpack' ),
63
- 'tooltip' => __( 'For radio enter one value per line.', 'woocommerce-jetpack' ),
64
  'name' => 'wcj_product_addons_per_product_price_' . $i,
65
  'default' => 0,
66
  'type' => 'textarea',
@@ -74,11 +81,18 @@ for ( $i = 1; $i <= $total_number; $i++ ) {
74
  ),
75
  array(
76
  'title' => __( 'Default Value', 'woocommerce-jetpack' ),
77
- 'tooltip' => __( 'For checkbox use \'checked\'; for radio enter default label. Leave blank for no default value.', 'woocommerce-jetpack' ),
78
  'name' => 'wcj_product_addons_per_product_default_' . $i,
79
  'default' => '',
80
  'type' => 'text',
81
  ),
 
 
 
 
 
 
 
82
  array(
83
  'title' => __( 'Is required', 'woocommerce-jetpack' ),
84
  'name' => 'wcj_product_addons_per_product_required_' . $i,
2
  /**
3
  * Booster for WooCommerce - Settings Meta Box - Product Addons
4
  *
5
+ * @version 3.0.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
49
  'options' => array(
50
  'checkbox' => __( 'Checkbox', 'woocommerce-jetpack' ),
51
  'radio' => __( 'Radio Buttons', 'woocommerce-jetpack' ),
52
+ 'select' => __( 'Select Box', 'woocommerce-jetpack' ),
53
  ),
54
  ),
55
+ array(
56
+ 'title' => __( 'Title', 'woocommerce-jetpack' ),
57
+ 'name' => 'wcj_product_addons_per_product_title_' . $i,
58
+ 'default' => '',
59
+ 'type' => 'textarea',
60
+ ),
61
  array(
62
  'title' => __( 'Label(s)', 'woocommerce-jetpack' ),
63
+ 'tooltip' => __( 'For radio and select enter one value per line.', 'woocommerce-jetpack' ),
64
  'name' => 'wcj_product_addons_per_product_label_' . $i,
65
  'default' => '',
66
  'type' => 'textarea',
67
  ),
68
  array(
69
  'title' => __( 'Price(s)', 'woocommerce-jetpack' ),
70
+ 'tooltip' => __( 'For radio and select enter one value per line.', 'woocommerce-jetpack' ),
71
  'name' => 'wcj_product_addons_per_product_price_' . $i,
72
  'default' => 0,
73
  'type' => 'textarea',
81
  ),
82
  array(
83
  'title' => __( 'Default Value', 'woocommerce-jetpack' ),
84
+ 'tooltip' => __( 'For checkbox use \'checked\'; for radio and select enter default label. Leave blank for no default value.', 'woocommerce-jetpack' ),
85
  'name' => 'wcj_product_addons_per_product_default_' . $i,
86
  'default' => '',
87
  'type' => 'text',
88
  ),
89
+ array(
90
+ 'title' => __( 'Placeholder', 'woocommerce-jetpack' ),
91
+ 'tooltip' => __( 'For "Select Box" type only.', 'woocommerce-jetpack' ),
92
+ 'name' => 'wcj_product_addons_per_product_placeholder_' . $i,
93
+ 'default' => '',
94
+ 'type' => 'text',
95
+ ),
96
  array(
97
  'title' => __( 'Is required', 'woocommerce-jetpack' ),
98
  'name' => 'wcj_product_addons_per_product_required_' . $i,
includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Settings Meta Box - Product Availability by Date
4
  *
5
- * @version 2.9.1
6
  * @since 2.9.1
7
  * @author Algoritmika Ltd.
8
  */
@@ -22,7 +22,7 @@ $settings = array(
22
  // 'tooltip' => __( 'Date formats:', 'woocommerce-jetpack' ) . ' ' . '<code>DD-DD</code>' . ', ' . '<code>DD-DD,DD-DD</code>' . ', ' . '<code>-</code>' . '.',
23
  ),
24
  );
25
- $_timestamp = strtotime( '2017-01' );
26
  for ( $i = 1; $i <= 12; $i++ ) {
27
  $settings = array_merge( $settings, array(
28
  array(
2
  /**
3
  * Booster for WooCommerce - Settings Meta Box - Product Availability by Date
4
  *
5
+ * @version 3.0.0
6
  * @since 2.9.1
7
  * @author Algoritmika Ltd.
8
  */
22
  // 'tooltip' => __( 'Date formats:', 'woocommerce-jetpack' ) . ' ' . '<code>DD-DD</code>' . ', ' . '<code>DD-DD,DD-DD</code>' . ', ' . '<code>-</code>' . '.',
23
  ),
24
  );
25
+ $_timestamp = 1; // January 1 1970
26
  for ( $i = 1; $i <= 12; $i++ ) {
27
  $settings = array_merge( $settings, array(
28
  array(
includes/settings/wcj-settings-offer-price.php CHANGED
@@ -253,7 +253,8 @@ return array(
253
  'desc' => wcj_message_replaced_values( array( '%product_title%', '%offered_price%', '%customer_name%', '%customer_email%', '%customer_message%' ) ),
254
  'id' => 'wcj_offer_price_email_template',
255
  'type' => 'custom_textarea',
256
- 'default' => sprintf( __( 'Product: %s', 'woocommerce-jetpack' ), '%product_title%' ) . '<br>' . PHP_EOL .
 
257
  sprintf( __( 'Offered price: %s', 'woocommerce-jetpack' ), '%offered_price%' ) . '<br>' . PHP_EOL .
258
  sprintf( __( 'From: %s %s', 'woocommerce-jetpack' ), '%customer_name%', '%customer_email%' ) . '<br>' . PHP_EOL .
259
  sprintf( __( 'Message: %s', 'woocommerce-jetpack' ), '%customer_message%' ),
253
  'desc' => wcj_message_replaced_values( array( '%product_title%', '%offered_price%', '%customer_name%', '%customer_email%', '%customer_message%' ) ),
254
  'id' => 'wcj_offer_price_email_template',
255
  'type' => 'custom_textarea',
256
+ 'default' =>
257
+ sprintf( __( 'Product: %s', 'woocommerce-jetpack' ), '%product_title%' ) . '<br>' . PHP_EOL .
258
  sprintf( __( 'Offered price: %s', 'woocommerce-jetpack' ), '%offered_price%' ) . '<br>' . PHP_EOL .
259
  sprintf( __( 'From: %s %s', 'woocommerce-jetpack' ), '%customer_name%', '%customer_email%' ) . '<br>' . PHP_EOL .
260
  sprintf( __( 'Message: %s', 'woocommerce-jetpack' ), '%customer_message%' ),
includes/settings/wcj-settings-payment-gateways-by-currency.php ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Booster for WooCommerce - Settings - Gateways by Currency
4
+ *
5
+ * @version 3.0.0
6
+ * @since 3.0.0
7
+ * @author Algoritmika Ltd.
8
+ */
9
+
10
+ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
11
+
12
+ $settings = array(
13
+ array(
14
+ 'title' => __( 'Payment Gateways', 'woocommerce-jetpack' ),
15
+ 'type' => 'title',
16
+ 'desc' => __( 'Leave empty to disable.', 'woocommerce-jetpack' ),
17
+ 'id' => 'wcj_payment_gateways_by_currency_gateways_options',
18
+ ),
19
+ );
20
+ $currencies = wcj_get_currencies_names_and_symbols();
21
+ $gateways = WC()->payment_gateways->payment_gateways();
22
+ $paypal_allowed_currencies = array( 'AUD', 'BRL', 'CAD', 'MXN', 'NZD', 'HKD', 'SGD', 'USD', 'EUR', 'JPY', 'TRY', 'NOK', 'CZK', 'DKK', 'HUF', 'ILS', 'MYR', 'PHP', 'PLN', 'SEK', 'CHF', 'TWD', 'THB', 'GBP', 'RMB', 'RUB' );
23
+ $paypal_allowed_currencies_and_names = '';
24
+ foreach ( $paypal_allowed_currencies as $paypal_allowed_currency ) {
25
+ $paypal_allowed_currencies_and_names[] = $currencies[ $paypal_allowed_currency ];
26
+ }
27
+ $paypal_tip = sprintf( __( 'PayPal allows only these currencies:<br>%s.', 'woocommerce-jetpack' ), implode( '<br>', $paypal_allowed_currencies_and_names ) );
28
+ foreach ( $gateways as $key => $gateway ) {
29
+ $default_gateways = array( 'bacs' );
30
+ if ( ! empty( $default_gateways ) && ! in_array( $key, $default_gateways ) ) {
31
+ $custom_attributes = apply_filters( 'booster_get_message', '', 'disabled' );
32
+ if ( '' == $custom_attributes ) {
33
+ $custom_attributes = array();
34
+ }
35
+ $desc_tip = apply_filters( 'booster_get_message', '', 'desc_no_link' );
36
+ } else {
37
+ $custom_attributes = array();
38
+ $desc_tip = '';
39
+ }
40
+ $settings = array_merge( $settings, array(
41
+ array(
42
+ 'title' => $gateway->title,
43
+ 'desc_tip' => $desc_tip . ( 'paypal' == $key ? ' ' . $paypal_tip : '' ),
44
+ 'desc' => __( 'Allowed Currencies', 'woocommerce-jetpack' ),
45
+ 'id' => 'wcj_gateways_by_currency_allowed_' . $key,
46
+ 'default' => '',
47
+ 'type' => 'multiselect',
48
+ 'class' => 'chosen_select',
49
+ 'css' => 'width: 450px;',
50
+ 'options' => $currencies,
51
+ 'custom_attributes' => $custom_attributes,
52
+ ),
53
+ array(
54
+ 'desc_tip' => $desc_tip,
55
+ 'desc' => __( 'Denied Currencies', 'woocommerce-jetpack' ),
56
+ 'id' => 'wcj_gateways_by_currency_denied_' . $key,
57
+ 'default' => '',
58
+ 'type' => 'multiselect',
59
+ 'class' => 'chosen_select',
60
+ 'css' => 'width: 450px;',
61
+ 'options' => $currencies,
62
+ 'custom_attributes' => $custom_attributes,
63
+ ),
64
+ ) );
65
+ }
66
+ $settings = array_merge( $settings, array(
67
+ array(
68
+ 'type' => 'sectionend',
69
+ 'id' => 'wcj_payment_gateways_by_currency_gateways_options',
70
+ ),
71
+ ) );
72
+ return $settings;
includes/settings/wcj-settings-pdf-invoicing-styling.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Settings - PDF Invoicing - Styling
4
  *
5
- * @version 2.9.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -29,7 +29,7 @@ foreach ( $invoice_types as $invoice_type ) {
29
  'id' => 'wcj_invoicing_' . $invoice_type['id'] . '_general_font_family',
30
  'default' => 'helvetica',
31
  'type' => 'select',
32
- 'options' => array(
33
  'courier' => 'Courier',
34
  'helvetica' => 'Helvetica',
35
  'times' => 'Times',
@@ -40,7 +40,7 @@ foreach ( $invoice_types as $invoice_type ) {
40
  'thsarabun' => 'THSarabunPSK (Unicode)',
41
  'stsongstdlight' => 'STSong Light (Simp. Chinese)',
42
  'cid0ct' => 'cid0ct (Chinese Traditional)',
43
- ),
44
  ) :
45
  array(
46
  'title' => __( 'Font Family', 'woocommerce-jetpack' ),
2
  /**
3
  * Booster for WooCommerce - Settings - PDF Invoicing - Styling
4
  *
5
+ * @version 3.0.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
29
  'id' => 'wcj_invoicing_' . $invoice_type['id'] . '_general_font_family',
30
  'default' => 'helvetica',
31
  'type' => 'select',
32
+ 'options' => apply_filters( 'wcj_pdf_invoicing_fonts', array(
33
  'courier' => 'Courier',
34
  'helvetica' => 'Helvetica',
35
  'times' => 'Times',
40
  'thsarabun' => 'THSarabunPSK (Unicode)',
41
  'stsongstdlight' => 'STSong Light (Simp. Chinese)',
42
  'cid0ct' => 'cid0ct (Chinese Traditional)',
43
+ ) ),
44
  ) :
45
  array(
46
  'title' => __( 'Font Family', 'woocommerce-jetpack' ),
includes/settings/wcj-settings-product-addons.php CHANGED
@@ -2,13 +2,16 @@
2
  /**
3
  * Booster for WooCommerce - Settings - Product Addons
4
  *
5
- * @version 2.8.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
 
8
  */
9
 
10
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
11
 
 
 
12
  $settings = array();
13
  $settings = array_merge( $settings, array(
14
  array(
@@ -75,11 +78,19 @@ for ( $i = 1; $i <= $total_number; $i++ ) {
75
  'options' => array(
76
  'checkbox' => __( 'Checkbox', 'woocommerce-jetpack' ),
77
  'radio' => __( 'Radio Buttons', 'woocommerce-jetpack' ),
 
78
  ),
79
  ),
 
 
 
 
 
 
 
80
  array(
81
  'desc' => __( 'Label(s)', 'woocommerce-jetpack' ),
82
- 'desc_tip' => __( 'For radio enter one value per line.', 'woocommerce-jetpack' ),
83
  'id' => 'wcj_product_addons_all_products_label_' . $i,
84
  'default' => '',
85
  'type' => 'textarea',
@@ -87,7 +98,7 @@ for ( $i = 1; $i <= $total_number; $i++ ) {
87
  ),
88
  array(
89
  'desc' => __( 'Price(s)', 'woocommerce-jetpack' ),
90
- 'desc_tip' => __( 'For radio enter one value per line.', 'woocommerce-jetpack' ),
91
  'id' => 'wcj_product_addons_all_products_price_' . $i,
92
  'default' => 0,
93
  'type' => 'textarea',
@@ -104,18 +115,34 @@ for ( $i = 1; $i <= $total_number; $i++ ) {
104
  ),
105
  array(
106
  'desc' => __( 'Default Value', 'woocommerce-jetpack' ),
107
- 'desc_tip' => __( 'For checkbox use \'checked\'; for radio enter default label. Leave blank for no default value.', 'woocommerce-jetpack' ),
108
  'id' => 'wcj_product_addons_all_products_default_' . $i,
109
  'default' => '',
110
  'type' => 'text',
111
  'css' => 'width:300px;',
112
  ),
 
 
 
 
 
 
 
 
113
  array(
114
  'desc' => __( 'Is Required', 'woocommerce-jetpack' ),
115
  'id' => 'wcj_product_addons_all_products_required_' . $i,
116
  'default' => 'no',
117
  'type' => 'checkbox',
118
  ),
 
 
 
 
 
 
 
 
119
  ) );
120
  }
121
  $settings = array_merge( $settings, array(
2
  /**
3
  * Booster for WooCommerce - Settings - Product Addons
4
  *
5
+ * @version 3.0.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
+ * @todo add "frontend template" options
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
12
 
13
+ $products = wcj_get_products();
14
+
15
  $settings = array();
16
  $settings = array_merge( $settings, array(
17
  array(
78
  'options' => array(
79
  'checkbox' => __( 'Checkbox', 'woocommerce-jetpack' ),
80
  'radio' => __( 'Radio Buttons', 'woocommerce-jetpack' ),
81
+ 'select' => __( 'Select Box', 'woocommerce-jetpack' ),
82
  ),
83
  ),
84
+ array(
85
+ 'desc' => __( 'Title', 'woocommerce-jetpack' ),
86
+ 'id' => 'wcj_product_addons_all_products_title_' . $i,
87
+ 'default' => '',
88
+ 'type' => 'textarea',
89
+ 'css' => 'width:300px;',
90
+ ),
91
  array(
92
  'desc' => __( 'Label(s)', 'woocommerce-jetpack' ),
93
+ 'desc_tip' => __( 'For radio and select enter one value per line.', 'woocommerce-jetpack' ),
94
  'id' => 'wcj_product_addons_all_products_label_' . $i,
95
  'default' => '',
96
  'type' => 'textarea',
98
  ),
99
  array(
100
  'desc' => __( 'Price(s)', 'woocommerce-jetpack' ),
101
+ 'desc_tip' => __( 'For radio and select enter one value per line.', 'woocommerce-jetpack' ),
102
  'id' => 'wcj_product_addons_all_products_price_' . $i,
103
  'default' => 0,
104
  'type' => 'textarea',
115
  ),
116
  array(
117
  'desc' => __( 'Default Value', 'woocommerce-jetpack' ),
118
+ 'desc_tip' => __( 'For checkbox use \'checked\'; for radio and select enter default label. Leave blank for no default value.', 'woocommerce-jetpack' ),
119
  'id' => 'wcj_product_addons_all_products_default_' . $i,
120
  'default' => '',
121
  'type' => 'text',
122
  'css' => 'width:300px;',
123
  ),
124
+ array(
125
+ 'desc' => __( 'Placeholder', 'woocommerce-jetpack' ),
126
+ 'desc_tip' => __( 'For "Select Box" type only.', 'woocommerce-jetpack' ),
127
+ 'id' => 'wcj_product_addons_all_products_placeholder_' . $i,
128
+ 'default' => '',
129
+ 'type' => 'text',
130
+ 'css' => 'width:300px;',
131
+ ),
132
  array(
133
  'desc' => __( 'Is Required', 'woocommerce-jetpack' ),
134
  'id' => 'wcj_product_addons_all_products_required_' . $i,
135
  'default' => 'no',
136
  'type' => 'checkbox',
137
  ),
138
+ array(
139
+ 'desc' => __( 'Exclude Products', 'woocommerce-jetpack' ),
140
+ 'id' => 'wcj_product_addons_all_products_exclude_products_' . $i,
141
+ 'default' => '',
142
+ 'type' => 'multiselect',
143
+ 'class' => 'chosen_select',
144
+ 'options' => $products,
145
+ ),
146
  ) );
147
  }
148
  $settings = array_merge( $settings, array(
includes/settings/wcj-settings-product-bookings.php CHANGED
@@ -2,13 +2,27 @@
2
  /**
3
  * Booster for WooCommerce - Settings - Bookings
4
  *
5
- * @version 2.8.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
9
 
10
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
11
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  return array(
13
  array(
14
  'title' => __( 'Labels and Messages', 'woocommerce-jetpack' ),
@@ -84,4 +98,50 @@ return array(
84
  'type' => 'sectionend',
85
  'id' => 'wcj_product_bookings_options',
86
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87
  );
2
  /**
3
  * Booster for WooCommerce - Settings - Bookings
4
  *
5
+ * @version 3.0.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
9
 
10
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
11
 
12
+ $days_array = array();
13
+ $_timestamp = strtotime( 'next Sunday' );
14
+ for ( $i = 0; $i < 7; $i++ ) {
15
+ $index = ( 0 == $i ? 'S' : $i );
16
+ $days_array[ $index ] = date_i18n( 'l', $_timestamp );
17
+ $_timestamp = strtotime( '+1 day', $_timestamp );
18
+ }
19
+ $months_array = array();
20
+ $_timestamp = 1; // January 1 1970
21
+ for ( $i = 1; $i <= 12; $i++ ) {
22
+ $months_array[ $i ] = date_i18n( 'F', $_timestamp );
23
+ $_timestamp = strtotime( '+1 month', $_timestamp );
24
+ }
25
+
26
  return array(
27
  array(
28
  'title' => __( 'Labels and Messages', 'woocommerce-jetpack' ),
98
  'type' => 'sectionend',
99
  'id' => 'wcj_product_bookings_options',
100
  ),
101
+ array(
102
+ 'title' => __( 'Datepicker Options', 'woocommerce-jetpack' ),
103
+ 'desc' => __( 'This settings will be applied to all your bookings products.', 'woocommerce-jetpack' ),
104
+ 'type' => 'title',
105
+ 'id' => 'wcj_product_bookings_datepicker_options',
106
+ ),
107
+ array(
108
+ 'title' => __( 'Date from: Exclude Days', 'woocommerce-jetpack' ),
109
+ 'desc_tip' => __( 'Leave blank to include all days.', 'woocommerce-jetpack' ),
110
+ 'id' => 'wcj_product_bookings_datepicker_date_from_exclude_days',
111
+ 'default' => '',
112
+ 'type' => 'multiselect',
113
+ 'class' => 'chosen_select',
114
+ 'options' => $days_array,
115
+ ),
116
+ array(
117
+ 'title' => __( 'Date to: Exclude Days', 'woocommerce-jetpack' ),
118
+ 'desc_tip' => __( 'Leave blank to include all days.', 'woocommerce-jetpack' ),
119
+ 'id' => 'wcj_product_bookings_datepicker_date_to_exclude_days',
120
+ 'default' => '',
121
+ 'type' => 'multiselect',
122
+ 'class' => 'chosen_select',
123
+ 'options' => $days_array,
124
+ ),
125
+ array(
126
+ 'title' => __( 'Date from: Exclude Months', 'woocommerce-jetpack' ),
127
+ 'desc_tip' => __( 'Leave blank to include all months.', 'woocommerce-jetpack' ),
128
+ 'id' => 'wcj_product_bookings_datepicker_date_from_exclude_months',
129
+ 'default' => '',
130
+ 'type' => 'multiselect',
131
+ 'class' => 'chosen_select',
132
+ 'options' => $months_array,
133
+ ),
134
+ array(
135
+ 'title' => __( 'Date to: Exclude Months', 'woocommerce-jetpack' ),
136
+ 'desc_tip' => __( 'Leave blank to include all months.', 'woocommerce-jetpack' ),
137
+ 'id' => 'wcj_product_bookings_datepicker_date_to_exclude_months',
138
+ 'default' => '',
139
+ 'type' => 'multiselect',
140
+ 'class' => 'chosen_select',
141
+ 'options' => $months_array,
142
+ ),
143
+ array(
144
+ 'type' => 'sectionend',
145
+ 'id' => 'wcj_product_bookings_datepicker_options',
146
+ ),
147
  );
includes/settings/wcj-settings-product-by-date.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Settings - Product Availability by Date
4
  *
5
- * @version 2.9.1
6
  * @since 2.9.1
7
  * @author Algoritmika Ltd.
8
  */
@@ -25,7 +25,7 @@ $settings = array(
25
  'type' => 'checkbox',
26
  ),
27
  );
28
- $_timestamp = strtotime( '2017-01' );
29
  for ( $i = 1; $i <= 12; $i++ ) {
30
  $settings = array_merge( $settings, array(
31
  array(
2
  /**
3
  * Booster for WooCommerce - Settings - Product Availability by Date
4
  *
5
+ * @version 3.0.0
6
  * @since 2.9.1
7
  * @author Algoritmika Ltd.
8
  */
25
  'type' => 'checkbox',
26
  ),
27
  );
28
+ $_timestamp = 1; // January 1 1970
29
  for ( $i = 1; $i <= 12; $i++ ) {
30
  $settings = array_merge( $settings, array(
31
  array(
includes/shortcodes/class-wcj-order-items-shortcodes.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Shortcodes - Order Items
4
  *
5
- * @version 2.9.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
@@ -272,7 +272,7 @@ class WCJ_Order_Items_Shortcodes extends WCJ_Shortcodes {
272
  /**
273
  * wcj_order_items_table.
274
  *
275
- * @version 2.9.0
276
  */
277
  function wcj_order_items_table( $atts, $content = '' ) {
278
 
@@ -442,6 +442,9 @@ class WCJ_Order_Items_Shortcodes extends WCJ_Shortcodes {
442
  case 'item_product_input_fields':
443
  $cell_data = wcj_get_product_input_fields( $item );
444
  break;
 
 
 
445
  case 'item_key':
446
  if ( isset( $column_param ) && '' != $column_param && isset( $item[ $column_param ] ) ) {
447
  $maybe_unserialized_value = maybe_unserialize( $item[ $column_param ] );
2
  /**
3
  * Booster for WooCommerce - Shortcodes - Order Items
4
  *
5
+ * @version 3.0.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
272
  /**
273
  * wcj_order_items_table.
274
  *
275
+ * @version 3.0.0
276
  */
277
  function wcj_order_items_table( $atts, $content = '' ) {
278
 
442
  case 'item_product_input_fields':
443
  $cell_data = wcj_get_product_input_fields( $item );
444
  break;
445
+ case 'item_product_addons':
446
+ $cell_data = wcj_get_product_addons( $item, wcj_get_order_currency( $this->the_order ) );
447
+ break;
448
  case 'item_key':
449
  if ( isset( $column_param ) && '' != $column_param && isset( $item[ $column_param ] ) ) {
450
  $maybe_unserialized_value = maybe_unserialize( $item[ $column_param ] );
includes/shortcodes/class-wcj-orders-shortcodes.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Shortcodes - Orders
4
  *
5
- * @version 2.9.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
@@ -15,7 +15,7 @@ class WCJ_Orders_Shortcodes extends WCJ_Shortcodes {
15
  /**
16
  * Constructor.
17
  *
18
- * @version 2.9.0
19
  */
20
  function __construct() {
21
 
@@ -28,6 +28,8 @@ class WCJ_Orders_Shortcodes extends WCJ_Shortcodes {
28
  'wcj_order_id',
29
  'wcj_order_billing_address',
30
  'wcj_order_billing_phone',
 
 
31
  'wcj_order_checkout_field',
32
  'wcj_order_shipping_address',
33
  'wcj_order_customer_note',
@@ -464,6 +466,36 @@ class WCJ_Orders_Shortcodes extends WCJ_Shortcodes {
464
  return ( WCJ_IS_WC_VERSION_BELOW_3 ? $this->the_order->customer_note : $this->the_order->get_customer_note() );
465
  }
466
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
467
  /**
468
  * wcj_order_billing_phone.
469
  *
2
  /**
3
  * Booster for WooCommerce - Shortcodes - Orders
4
  *
5
+ * @version 3.0.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
15
  /**
16
  * Constructor.
17
  *
18
+ * @version 3.0.0
19
  */
20
  function __construct() {
21
 
28
  'wcj_order_id',
29
  'wcj_order_billing_address',
30
  'wcj_order_billing_phone',
31
+ 'wcj_order_billing_country_name',
32
+ 'wcj_order_shipping_country_name',
33
  'wcj_order_checkout_field',
34
  'wcj_order_shipping_address',
35
  'wcj_order_customer_note',
466
  return ( WCJ_IS_WC_VERSION_BELOW_3 ? $this->the_order->customer_note : $this->the_order->get_customer_note() );
467
  }
468
 
469
+ /**
470
+ * wcj_order_billing_country_name.
471
+ *
472
+ * @version 3.0.0
473
+ * @since 3.0.0
474
+ */
475
+ function wcj_order_billing_country_name( $atts ) {
476
+ $country_code = ( WCJ_IS_WC_VERSION_BELOW_3 ? $this->the_order->billing_country : $this->the_order->get_billing_country() );
477
+ if ( false !== ( $country_name = wcj_get_country_name_by_code( $country_code ) ) ) {
478
+ return $country_name;
479
+ } else {
480
+ return $country_code;
481
+ }
482
+ }
483
+
484
+ /**
485
+ * wcj_order_shipping_country_name.
486
+ *
487
+ * @version 3.0.0
488
+ * @since 3.0.0
489
+ */
490
+ function wcj_order_shipping_country_name( $atts ) {
491
+ $country_code = ( WCJ_IS_WC_VERSION_BELOW_3 ? $this->the_order->shipping_country : $this->the_order->get_shipping_country() );
492
+ if ( false !== ( $country_name = wcj_get_country_name_by_code( $country_code ) ) ) {
493
+ return $country_name;
494
+ } else {
495
+ return $country_code;
496
+ }
497
+ }
498
+
499
  /**
500
  * wcj_order_billing_phone.
501
  *
langs/woocommerce-jetpack-de_DE.po CHANGED
@@ -1,10815 +1,10815 @@
1
- msgid ""
2
- msgstr ""
3
- "PO-Revision-Date: 2017-03-01 12:48+0000\n"
4
- "MIME-Version: 1.0\n"
5
- "Content-Type: text/plain; charset=UTF-8\n"
6
- "Content-Transfer-Encoding: 8bit\n"
7
- "Plural-Forms: nplurals=2; plural=n != 1\n"
8
- "X-Generator: Loco - https://localise.biz/\n"
9
- "Language: de-DE\n"
10
- "Project-Id-Version: Plugins - Booster for WooCommerce - Stable (latest "
11
- "release)\n"
12
- "Report-Msgid-Bugs-To: \n"
13
- "POT-Creation-Date: 2017-02-28 23:21+0000\n"
14
- "Last-Translator: Michael Pekić <michael@pekic.de>\n"
15
- "Language-Team: German"
16
-
17
- #: includes/class-wcj-product-tabs.php:567
18
- #: includes/class-wcj-product-tabs.php:736
19
- msgid "To hide this tab from some products, enter products here."
20
- msgstr ""
21
- "Um diese Registerkarte von einigen Produkten zu verstecken, gib hier "
22
- "Produkte ein."
23
-
24
- #: includes/class-wcj-product-tabs.php:576
25
- #: includes/class-wcj-product-tabs.php:745
26
- msgid "PRODUCTS to SHOW this tab"
27
- msgstr "PRODUKTE, um diese Registerkarte ANZUZEIGEN"
28
-
29
- #: includes/class-wcj-product-tabs.php:577
30
- #: includes/class-wcj-product-tabs.php:746
31
- msgid "To show this tab only for some products, enter products here."
32
- msgstr ""
33
- "Um diese Registerkarte nur für einige Produkte anzuzeigen, gib hier Produkte "
34
- "ein."
35
-
36
- #: includes/class-wcj-product-tabs.php:587
37
- #: includes/class-wcj-product-tabs.php:756
38
- msgid "To hide this tab from some categories, enter categories here."
39
- msgstr ""
40
- "Um diese Registerkarte aus einigen Kategorien zu verbergen, gib hier "
41
- "Kategorien ein."
42
-
43
- #: includes/class-wcj-product-tabs.php:596
44
- #: includes/class-wcj-product-tabs.php:765
45
- msgid "CATEGORIES to SHOW this tab"
46
- msgstr "KATEGORIEN, um diese Registerkarte zu sehen"
47
-
48
- #: includes/class-wcj-product-tabs.php:597
49
- #: includes/class-wcj-product-tabs.php:766
50
- msgid "To show this tab only for some categories, enter categories here."
51
- msgstr ""
52
- "Um diese Registerkarte nur für einige Kategorien anzuzeigen, gib hier "
53
- "Kategorien ein."
54
-
55
- #: includes/class-wcj-product-tabs.php:607
56
- #: includes/class-wcj-product-tabs.php:776
57
- msgid "To hide this tab from some tags, enter tags here."
58
- msgstr ""
59
- "Um diese Registerkarte aus einigen Stichwörtern zu verbergen, gib hier "
60
- "Stichwörter ein."
61
-
62
- #: includes/class-wcj-product-tabs.php:616
63
- #: includes/class-wcj-product-tabs.php:785
64
- msgid "TAGS to SHOW this tab"
65
- msgstr "STICHWÖRTER, um diese Registerkarte zu sehen"
66
-
67
- #: includes/class-wcj-product-tabs.php:617
68
- #: includes/class-wcj-product-tabs.php:786
69
- msgid "To show this tab only for some tags, enter tags here."
70
- msgstr ""
71
- "Um diese Registerkarte nur für einige Stichwörter anzuzeigen, gib hier "
72
- "Stichwörter ein."
73
-
74
- #: includes/class-wcj-product-tabs.php:626
75
- msgid "Comma separated PRODUCT IDs to HIDE this tab"
76
- msgstr "Komma getrennte PRODUKT-IDs, um diese Registerkarte zu verbergen"
77
-
78
- #: includes/class-wcj-product-tabs.php:626
79
- #: includes/class-wcj-product-tabs.php:635
80
- #: includes/class-wcj-product-tabs.php:644
81
- #: includes/class-wcj-product-tabs.php:653
82
- #: includes/classes/class-wcj-module.php:424
83
- msgid "Deprecated"
84
- msgstr "Veraltet"
85
-
86
- #: includes/class-wcj-product-tabs.php:627
87
- msgid "To hide this tab from some products, enter product IDs here."
88
- msgstr ""
89
- "Um diese Registerkarte aus einigen Produkten zu verbergen, gib hier Produkt-"
90
- "IDs ein."
91
-
92
- #: includes/class-wcj-product-tabs.php:635
93
- msgid "Comma separated PRODUCT IDs to SHOW this tab"
94
- msgstr "Komma getrennte PRODUKT-IDs, um diese Registerkarte zu aktivieren"
95
-
96
- #: includes/class-wcj-product-tabs.php:636
97
- msgid "To show this tab only for some products, enter product IDs here."
98
- msgstr ""
99
- "Um diese Registerkarte nur für einige Produkte anzuzeigen, gib hier Produkt-"
100
- "IDs ein."
101
-
102
- #: includes/class-wcj-product-tabs.php:644
103
- msgid "Comma separated CATEGORY IDs to HIDE this tab"
104
- msgstr "Komma getrennt KATEGORIE-IDs, um diese Registerkarte zu verbergen"
105
-
106
- #: includes/class-wcj-product-tabs.php:645
107
- msgid "To hide this tab from some categories, enter category IDs here."
108
- msgstr ""
109
- "Um diese Registerkarte aus einigen Kategorien zu verbergen, gib hier "
110
- "Kategorie-IDs ein."
111
-
112
- #: includes/class-wcj-product-tabs.php:653
113
- msgid "Comma separated CATEGORY IDs to SHOW this tab"
114
- msgstr "Komma getrennt KATEGORIE-IDs, um diese Registerkarte zu aktivieren"
115
-
116
- #: includes/class-wcj-product-tabs.php:654
117
- msgid "To show this tab only for some categories, enter category IDs here."
118
- msgstr ""
119
- "Um diese Registerkarte nur für einige Kategorien anzuzeigen, gib hier "
120
- "Kategorie-IDs ein."
121
-
122
- #: includes/currencies/wcj-currencies.php:63
123
- msgid "Guyanese dollar"
124
- msgstr "Guyanese dollar"
125
-
126
- #: includes/currencies/wcj-currencies.php:64
127
- msgid "Gambian dalasi"
128
- msgstr "Gambian dalasi"
129
-
130
- #: includes/currencies/wcj-currencies.php:65
131
- msgid "Guinean franc"
132
- msgstr "Guinean franc"
133
-
134
- #: includes/currencies/wcj-currencies.php:66
135
- #: includes/currencies/wcj-currencies.php:169
136
- msgid "Central African CFA franc"
137
- msgstr "Central African CFA franc"
138
-
139
- #: includes/currencies/wcj-currencies.php:67
140
- msgid "Guatemalan quetzal"
141
- msgstr "Guatemalan quetzal"
142
-
143
- #: includes/currencies/wcj-currencies.php:68
144
- msgid "Hong Kong Dollar"
145
- msgstr "Hong Kong Dollar"
146
-
147
- #: includes/currencies/wcj-currencies.php:69
148
- msgid "Honduran lempira"
149
- msgstr "Honduran lempira"
150
-
151
- #: includes/currencies/wcj-currencies.php:70
152
- msgid "Croatia kuna"
153
- msgstr "Croatia kuna"
154
-
155
- #: includes/currencies/wcj-currencies.php:71
156
- msgid "Haitian gourde"
157
- msgstr "Haitian gourde"
158
-
159
- #: includes/currencies/wcj-currencies.php:72
160
- msgid "Hungarian Forint"
161
- msgstr "Hungarian Forint"
162
-
163
- #: includes/currencies/wcj-currencies.php:73
164
- msgid "Indonesia Rupiah"
165
- msgstr "Indonesia Rupiah"
166
-
167
- #: includes/currencies/wcj-currencies.php:74
168
- msgid "Israeli Shekel"
169
- msgstr "Israeli Shekel"
170
-
171
- #: includes/currencies/wcj-currencies.php:75
172
- msgid "Indian Rupee"
173
- msgstr "Indian Rupee"
174
-
175
- #: includes/currencies/wcj-currencies.php:76
176
- msgid "Iraqi dinar"
177
- msgstr "Iraqi dinar"
178
-
179
- #: includes/currencies/wcj-currencies.php:77
180
- msgid "Iranian rial"
181
- msgstr "Iranian rial"
182
-
183
- #: includes/currencies/wcj-currencies.php:78
184
- msgid "Icelandic krona"
185
- msgstr "Icelandic krona"
186
-
187
- #: includes/currencies/wcj-currencies.php:79
188
- msgid "Yemeni rial"
189
- msgstr "Yemeni rial"
190
-
191
- #: includes/currencies/wcj-currencies.php:80
192
- msgid "Jamaican dollar"
193
- msgstr "Jamaican dollar"
194
-
195
- #: includes/currencies/wcj-currencies.php:81
196
- msgid "Jordanian dinar"
197
- msgstr "Jordanian dinar"
198
-
199
- #: includes/currencies/wcj-currencies.php:82
200
- msgid "Japanese Yen"
201
- msgstr "Japanese Yen"
202
-
203
- #: includes/currencies/wcj-currencies.php:84
204
- msgid "Kyrgyzstani som"
205
- msgstr "Kyrgyzstani som"
206
-
207
- #: includes/currencies/wcj-currencies.php:85
208
- msgid "Cambodian riel"
209
- msgstr "Cambodian riel"
210
-
211
- #: includes/currencies/wcj-currencies.php:86
212
- msgid "Lao kip"
213
- msgstr "Lao kip"
214
-
215
- #: includes/currencies/wcj-currencies.php:87
216
- msgid "Cayman Islands dollar"
217
- msgstr "Cayman Islands dollar"
218
-
219
- #: includes/currencies/wcj-currencies.php:88
220
- msgid "Comorian franc"
221
- msgstr "Comorian franc"
222
-
223
- #: includes/currencies/wcj-currencies.php:89
224
- msgid "North Korean won"
225
- msgstr "Nordkoreanischer Won"
226
-
227
- #: includes/currencies/wcj-currencies.php:90
228
- msgid "South Korean Won"
229
- msgstr "Südkoreanischer Won"
230
-
231
- #: includes/currencies/wcj-currencies.php:91
232
- msgid "Kuwaiti dinar"
233
- msgstr "Kuwaitischer Dinar"
234
-
235
- #: includes/currencies/wcj-currencies.php:92
236
- msgid "Kazakhstani tenge"
237
- msgstr "Kasachstanischer Tenge"
238
-
239
- #: includes/currencies/wcj-currencies.php:93
240
- msgid "Lao Kip"
241
- msgstr "Lao Kip"
242
-
243
- #: includes/currencies/wcj-currencies.php:94
244
- msgid "Lebanese lira"
245
- msgstr "Libanesische Lira"
246
-
247
- #: includes/currencies/wcj-currencies.php:95
248
- msgid "Libyan dinar"
249
- msgstr "Lybischer DInar"
250
-
251
- #: includes/currencies/wcj-currencies.php:96
252
- msgid "Sri Lankan rupee"
253
- msgstr "Sri Lanka Rupie"
254
-
255
- #: includes/currencies/wcj-currencies.php:97
256
- msgid "Liberian dollar"
257
- msgstr "Liberianischer Dollar"
258
-
259
- #: includes/currencies/wcj-currencies.php:98
260
- msgid "Lesotho loti"
261
- msgstr "Lesotho loti"
262
-
263
- #: includes/currencies/wcj-currencies.php:99
264
- msgid "Lithuanian litas"
265
- msgstr "Litauische Litas"
266
-
267
- #: includes/currencies/wcj-currencies.php:100
268
- msgid "Latvian lats"
269
- msgstr "Lettische Lats"
270
-
271
- #: includes/currencies/wcj-currencies.php:101
272
- msgid "Moroccan dirham"
273
- msgstr "Marokkanischer Dirham"
274
-
275
- #: includes/currencies/wcj-currencies.php:102
276
- msgid "Moldovan leu"
277
- msgstr "Moldawischer Leu"
278
-
279
- #: includes/currencies/wcj-currencies.php:103
280
- msgid "Malagasy ariary"
281
- msgstr "Madagassische Arien"
282
-
283
- #: includes/currencies/wcj-currencies.php:104
284
- msgid "Malaysian ringgit"
285
- msgstr "Malaysischer Ringgit"
286
-
287
- #: includes/currencies/wcj-currencies.php:105
288
- msgid "Macedonian denar"
289
- msgstr "Mazedonischer Dinar"
290
-
291
- #: includes/currencies/wcj-currencies.php:106
292
- msgid "Myanma kyat"
293
- msgstr "Myanma Kyat"
294
-
295
- #: includes/currencies/wcj-currencies.php:107
296
- msgid "Mongolian tugrik"
297
- msgstr "Mongolischer Tugrik"
298
-
299
- #: includes/currencies/wcj-currencies.php:108
300
- msgid "Macanese pataca"
301
- msgstr "Macanese pataca"
302
-
303
- #: includes/currencies/wcj-currencies.php:109
304
- msgid "Mauritanian ouguiya"
305
- msgstr "Mauritanian ouguiya"
306
-
307
- #: includes/currencies/wcj-currencies.php:110
308
- msgid "Mauritian rupee"
309
- msgstr "Mauritian rupee"
310
-
311
- #: includes/currencies/wcj-currencies.php:111
312
- msgid "Maldivian rufiyaa"
313
- msgstr "Maldivian rufiyaa"
314
-
315
- #: includes/currencies/wcj-currencies.php:112
316
- msgid "Malawian kwacha"
317
- msgstr "Malawian kwacha"
318
-
319
- #: includes/currencies/wcj-currencies.php:113
320
- msgid "Mexican Peso"
321
- msgstr "Mexican Peso"
322
-
323
- #: includes/currencies/wcj-currencies.php:114
324
- msgid "Malaysian Ringgits"
325
- msgstr "Malaysian Ringgits"
326
-
327
- #: includes/currencies/wcj-currencies.php:115
328
- msgid "Mozambican metical"
329
- msgstr "Mozambican metical"
330
-
331
- #: includes/currencies/wcj-currencies.php:116
332
- msgid "Namibian dollar"
333
- msgstr "Namibian dollar"
334
-
335
- #: includes/currencies/wcj-currencies.php:117
336
- msgid "Nigerian Naira"
337
- msgstr "Nigerian Naira"
338
-
339
- #: includes/currencies/wcj-currencies.php:118
340
- msgid "Nicaraguan cordoba"
341
- msgstr "Nicaraguan cordoba"
342
-
343
- #: includes/currencies/wcj-currencies.php:119
344
- msgid "Norwegian Krone"
345
- msgstr "Norwegian Krone"
346
-
347
- #: includes/currencies/wcj-currencies.php:120
348
- msgid "Nepali Rupee"
349
- msgstr "Nepali Rupee"
350
-
351
- #: includes/currencies/wcj-currencies.php:121
352
- msgid "New Zealand Dollar"
353
- msgstr "New Zealand Dollar"
354
-
355
- #: includes/currencies/wcj-currencies.php:122
356
- msgid "Omani rial"
357
- msgstr "Omani rial"
358
-
359
- #: includes/currencies/wcj-currencies.php:123
360
- msgid "Panamanian balboa"
361
- msgstr "Panamanian balboa"
362
-
363
- #: includes/currencies/wcj-currencies.php:124
364
- msgid "Peruvian nuevo sol"
365
- msgstr "Peruvian nuevo sol"
366
-
367
- #: includes/currencies/wcj-currencies.php:125
368
- msgid "Papua New Guinean kina"
369
- msgstr "Papua New Guinean kina"
370
-
371
- #: includes/currencies/wcj-currencies.php:126
372
- msgid "Philippine Pesos"
373
- msgstr "Philippine Pesos"
374
-
375
- #: includes/currencies/wcj-currencies.php:127
376
- msgid "Paraguayan guarani"
377
- msgstr "Paraguayan guarani"
378
-
379
- #: includes/currencies/wcj-currencies.php:128
380
- msgid "Pakistani Rupee"
381
- msgstr "Pakistani Rupee"
382
-
383
- #: includes/currencies/wcj-currencies.php:129
384
- msgid "Polish Zloty"
385
- msgstr "Polish Zloty"
386
-
387
- #: includes/currencies/wcj-currencies.php:130
388
- msgid "Paraguayan Guaraní"
389
- msgstr "Paraguayan Guaraní"
390
-
391
- #: includes/currencies/wcj-currencies.php:131
392
- msgid "Qatari riyal"
393
- msgstr "Qatari riyal"
394
-
395
- #: includes/currencies/wcj-currencies.php:132
396
- msgid "Chinese renminbi"
397
- msgstr "Chinese renminbi"
398
-
399
- #: includes/currencies/wcj-currencies.php:133
400
- msgid "Romanian Leu"
401
- msgstr "Romanian Leu"
402
-
403
- #: includes/currencies/wcj-currencies.php:134
404
- msgid "Serbian dinar"
405
- msgstr "Serbian dinar"
406
-
407
- #: includes/currencies/wcj-currencies.php:135
408
- msgid "Russian Ruble"
409
- msgstr "Russian Ruble"
410
-
411
- #: includes/currencies/wcj-currencies.php:136
412
- msgid "Rwandan franc"
413
- msgstr "Rwandan franc"
414
-
415
- #: includes/currencies/wcj-currencies.php:137
416
- msgid "Saudi Riyal"
417
- msgstr "Saudi Riyal"
418
-
419
- #: includes/currencies/wcj-currencies.php:138
420
- msgid "Solomon Islands dollar"
421
- msgstr "Solomon Islands dollar"
422
-
423
- #: includes/currencies/wcj-currencies.php:139
424
- msgid "Seychellois rupee"
425
- msgstr "Seychellois rupee"
426
-
427
- #: includes/currencies/wcj-currencies.php:140
428
- msgid "Sudanese pound"
429
- msgstr "Sudanese pound"
430
-
431
- #: includes/currencies/wcj-currencies.php:141
432
- msgid "Swedish Krona"
433
- msgstr "Swedish Krona"
434
-
435
- #: includes/currencies/wcj-currencies.php:142
436
- msgid "Singapore Dollar"
437
- msgstr "Singapore Dollar"
438
-
439
- #: includes/currencies/wcj-currencies.php:143
440
- msgid "Saint Helena pound"
441
- msgstr "Saint Helena pound"
442
-
443
- #: includes/currencies/wcj-currencies.php:144
444
- msgid "Syrian pound"
445
- msgstr "Syrian pound"
446
-
447
- #: includes/currencies/wcj-currencies.php:145
448
- msgid "Slovak koruna"
449
- msgstr "Slovak koruna"
450
-
451
- #: includes/currencies/wcj-currencies.php:146
452
- msgid "Sierra Leonean leone"
453
- msgstr "Sierra Leonean leone"
454
-
455
- #: includes/currencies/wcj-currencies.php:147
456
- msgid "Somali shilling"
457
- msgstr "Somali shilling"
458
-
459
- #: includes/currencies/wcj-currencies.php:148
460
- msgid "Surinamese dollar"
461
- msgstr "Surinamese dollar"
462
-
463
- #: includes/currencies/wcj-currencies.php:149
464
- msgid "Sao Tome and Principe dobra"
465
- msgstr "Sao Tome and Principe dobra"
466
-
467
- #: includes/currencies/wcj-currencies.php:150
468
- msgid "Swazi lilangeni"
469
- msgstr "Swazi lilangeni"
470
-
471
- #: includes/currencies/wcj-currencies.php:151
472
- msgid "Thai Baht"
473
- msgstr "Thai Baht"
474
-
475
- #: includes/currencies/wcj-currencies.php:152
476
- msgid "Tajikistani somoni"
477
- msgstr "Tajikistani somoni"
478
-
479
- #: includes/currencies/wcj-currencies.php:153
480
- msgid "Turkmen manat"
481
- msgstr "Turkmen manat"
482
-
483
- #: includes/currencies/wcj-currencies.php:154
484
- msgid "Tunisian dinar"
485
- msgstr "Tunisian dinar"
486
-
487
- #: includes/currencies/wcj-currencies.php:155
488
- msgid "Paanga"
489
- msgstr "Paanga"
490
-
491
- #: includes/currencies/wcj-currencies.php:156
492
- msgid "Turkish Lira"
493
- msgstr "Turkish Lira"
494
-
495
- #: includes/currencies/wcj-currencies.php:157
496
- msgid "Trinidad and Tobago dollar"
497
- msgstr "Trinidad and Tobago dollar"
498
-
499
- #: includes/currencies/wcj-currencies.php:158
500
- msgid "Taiwan New Dollars"
501
- msgstr "Taiwan New Dollars"
502
-
503
- #: includes/currencies/wcj-currencies.php:159
504
- msgid "Tanzanian shilling"
505
- msgstr "Tanzanian shilling"
506
-
507
- #: includes/currencies/wcj-currencies.php:160
508
- msgid "Ukrainian Hryvnia"
509
- msgstr "Ukrainian Hryvnia"
510
-
511
- #: includes/currencies/wcj-currencies.php:161
512
- msgid "Ugandan shilling"
513
- msgstr "Ugandan shilling"
514
-
515
- #: includes/currencies/wcj-currencies.php:162
516
- msgid "Uruguayan peso"
517
- msgstr "Uruguayan peso"
518
-
519
- #: includes/currencies/wcj-currencies.php:163
520
- msgid "US Dollars"
521
- msgstr "US Dollars"
522
-
523
- #: includes/currencies/wcj-currencies.php:164
524
- msgid "Uzbekistani som"
525
- msgstr "Uzbekistani som"
526
-
527
- #: includes/currencies/wcj-currencies.php:165
528
- msgid "Venezuelan bolivar"
529
- msgstr "Venezuelan bolivar"
530
-
531
- #: includes/currencies/wcj-currencies.php:166
532
- msgid "Vietnamese Dong"
533
- msgstr "Vietnamese Dong"
534
-
535
- #: includes/currencies/wcj-currencies.php:167
536
- msgid "Vanuatu vatu"
537
- msgstr "Vanuatu vatu"
538
-
539
- #: includes/currencies/wcj-currencies.php:168
540
- msgid "Samoan tala"
541
- msgstr "Samoan tala"
542
-
543
- #: includes/currencies/wcj-currencies.php:170
544
- msgid "East Caribbean dollar"
545
- msgstr "East Caribbean dollar"
546
-
547
- #: includes/currencies/wcj-currencies.php:172
548
- msgid "West African CFA franc"
549
- msgstr "West African CFA franc"
550
-
551
- #: includes/currencies/wcj-currencies.php:173
552
- msgid "CFP franc"
553
- msgstr "CFP franc"
554
-
555
- #: includes/currencies/wcj-currencies.php:174
556
- msgid "South African rand"
557
- msgstr "South African rand"
558
-
559
- #: includes/currencies/wcj-currencies.php:175
560
- msgid "Zambian kwacha"
561
- msgstr "Zambian kwacha"
562
-
563
- #: includes/currencies/wcj-currencies.php:176
564
- msgid "Zimbabwean dollar"
565
- msgstr "Zimbabwean dollar"
566
-
567
- #: includes/emails/class-wc-email-wcj-custom.php:333
568
- msgid "Plain text template"
569
- msgstr "Reiner Text-Vorlage"
570
-
571
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:178
572
- msgid "Cron job: exchange rates successfully updated"
573
- msgstr "Cron Job: Wechselkurse erfolgreich aktualisiert"
574
-
575
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:180
576
- msgid "Cron job: exchange rates not updated, as currency_from == currency_to"
577
- msgstr ""
578
- "Cron Job: Wechselkurse nicht aktualisiert, als currency_from == currency_to"
579
-
580
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:183
581
- msgid "Cron job: exchange rates update failed"
582
- msgstr "Cron Job: Wechselkursaktualisierung fehlgeschlagen"
583
-
584
- #: includes/export/class-wcj-fields-helper.php:79
585
- msgid "Login"
586
- msgstr "Login"
587
-
588
- #: includes/export/class-wcj-fields-helper.php:80
589
- msgid "Nicename"
590
- msgstr "Nicename"
591
-
592
- #: includes/export/class-wcj-fields-helper.php:81
593
- #: includes/export/class-wcj-fields-helper.php:295
594
- #: includes/gateways/class-wc-gateway-wcj-custom.php:163
595
- msgid "URL"
596
- msgstr "URL"
597
-
598
- #: includes/export/class-wcj-fields-helper.php:83
599
- msgid "Display Name"
600
- msgstr "Anzeigename"
601
-
602
- #: includes/export/class-wcj-fields-helper.php:115
603
- #: includes/export/class-wcj-fields-helper.php:198
604
- msgid "Order Time"
605
- msgstr "Bestellzeit"
606
-
607
- #: includes/export/class-wcj-fields-helper.php:143
608
- msgid "Item Name"
609
- msgstr "Posten Name"
610
-
611
- #: includes/export/class-wcj-fields-helper.php:144
612
- msgid "Item Meta"
613
- msgstr "Posten Meta"
614
-
615
- #: includes/export/class-wcj-fields-helper.php:145
616
- msgid "Item Variation Meta"
617
- msgstr "Posten Variation-Meta"
618
-
619
- #: includes/export/class-wcj-fields-helper.php:146
620
- msgid "Item Quantity"
621
- msgstr "Posten Menge"
622
-
623
- #: includes/export/class-wcj-fields-helper.php:148
624
- msgid "Item Product ID"
625
- msgstr "Posten Produkt-ID"
626
-
627
- #: includes/export/class-wcj-fields-helper.php:149
628
- msgid "Item Variation ID"
629
- msgstr "Posten Variations-ID"
630
-
631
- #: includes/export/class-wcj-fields-helper.php:150
632
- msgid "Item Line Subtotal"
633
- msgstr "Posten Zwischensumme"
634
-
635
- #: includes/export/class-wcj-fields-helper.php:151
636
- msgid "Item Line Total"
637
- msgstr "Posten Gesamtsumme"
638
-
639
- #: includes/export/class-wcj-fields-helper.php:156
640
- msgid "Item Product Input Fields"
641
- msgstr "Posten Produkt-Eingabefelder"
642
-
643
- #: includes/export/class-wcj-fields-helper.php:201
644
- msgid "Order Items Product Input Fields"
645
- msgstr "Bestell-Posten Produkt-Eingabefelder"
646
-
647
- #: includes/export/class-wcj-fields-helper.php:284
648
- msgid "Total Stock"
649
- msgstr "Gesamtbestand"
650
-
651
- #: includes/export/class-wcj-fields-helper.php:285
652
- msgid "Stock Quantity"
653
- msgstr "Bestandsmenge"
654
-
655
- #: includes/export/class-wcj-fields-helper.php:296
656
- msgid "Shipping Class"
657
- msgstr "Versandklasse"
658
-
659
- #: includes/export/class-wcj-fields-helper.php:297
660
- msgid "Shipping Class ID"
661
- msgstr "Versandklassen-ID"
662
-
663
- #: includes/export/class-wcj-fields-helper.php:298
664
- msgid "Width"
665
- msgstr "Breite"
666
-
667
- #: includes/export/class-wcj-fields-helper.php:299
668
- msgid "Length"
669
- msgstr "Länge"
670
-
671
- #: includes/export/class-wcj-fields-helper.php:300
672
- msgid "Height"
673
- msgstr "Höhe"
674
-
675
- #: includes/export/class-wcj-fields-helper.php:301
676
- msgid "Weight"
677
- msgstr "Gewicht"
678
-
679
- #: includes/export/class-wcj-fields-helper.php:302
680
- msgid "Downloadable"
681
- msgstr "Downloadbar"
682
-
683
- #: includes/export/class-wcj-fields-helper.php:303
684
- msgid "Virtual"
685
- msgstr "Virtuell"
686
-
687
- #: includes/export/class-wcj-fields-helper.php:304
688
- msgid "Sold Individually"
689
- msgstr "Einzeln verkauft"
690
-
691
- #: includes/export/class-wcj-fields-helper.php:307
692
- msgid "Manage Stock"
693
- msgstr "Bestandsverwaltung"
694
-
695
- #: includes/export/class-wcj-fields-helper.php:308
696
- msgid "Stock Status"
697
- msgstr "Bestandstatus"
698
-
699
- #: includes/export/class-wcj-fields-helper.php:309
700
- msgid "Backorders"
701
- msgstr "Lieferrückstand"
702
-
703
- #: includes/export/class-wcj-fields-helper.php:310
704
- msgid "Featured"
705
- msgstr "Hervorgehoben"
706
-
707
- #: includes/export/class-wcj-fields-helper.php:311
708
- msgid "Visibility"
709
- msgstr "Sichtbarkeit"
710
-
711
- #: includes/export/class-wcj-fields-helper.php:314
712
- msgid "Display Price"
713
- msgstr "Preis anzeigen"
714
-
715
- #: includes/export/class-wcj-fields-helper.php:315
716
- msgid "Average Rating"
717
- msgstr "Durchschnittliche Bewertung"
718
-
719
- #: includes/export/class-wcj-fields-helper.php:316
720
- msgid "Rating Count"
721
- msgstr "Bewertungs-Zähler"
722
-
723
- #: includes/export/class-wcj-fields-helper.php:317
724
- msgid "Review Count"
725
- msgstr "Rezension-Zähler"
726
-
727
- #: includes/export/class-wcj-fields-helper.php:320
728
- msgid "Dimensions"
729
- msgstr "Dimensionen"
730
-
731
- #: includes/export/class-wcj-fields-helper.php:321
732
- msgid "Formatted Name"
733
- msgstr "Formatierter Name"
734
-
735
- #: includes/export/class-wcj-fields-helper.php:322
736
- msgid "Availability"
737
- msgstr "Verfügbarkeit"
738
-
739
- #: includes/export/class-wcj-fields-helper.php:323
740
- msgid "Availability Class"
741
- msgstr "Verfügbarkeitsklasse"
742
-
743
- #: includes/functions/wcj-country-functions.php:114
744
- msgid "&#197;land Islands"
745
- msgstr "&#197;land Islands"
746
-
747
- #: includes/functions/wcj-country-functions.php:120
748
- msgid "Antarctica"
749
- msgstr "Antarctica"
750
-
751
- #: includes/functions/wcj-country-functions.php:134
752
- msgid "Belau"
753
- msgstr "Belau"
754
-
755
- #: includes/functions/wcj-country-functions.php:140
756
- msgid "Bonaire, Saint Eustatius and Saba"
757
- msgstr "Bonaire, Saint Eustatius and Saba"
758
-
759
- #: includes/functions/wcj-country-functions.php:143
760
- msgid "Bouvet Island"
761
- msgstr "Bouvet Island"
762
-
763
- #: includes/functions/wcj-country-functions.php:161
764
- msgid "Cocos (Keeling) Islands"
765
- msgstr "Cocos (Keeling) Islands"
766
-
767
- #: includes/functions/wcj-country-functions.php:164
768
- msgid "Congo (Brazzaville)"
769
- msgstr "Congo (Brazzaville)"
770
-
771
- #: includes/functions/wcj-country-functions.php:165
772
- msgid "Congo (Kinshasa)"
773
- msgstr "Congo (Kinshasa)"
774
-
775
- #: includes/functions/wcj-country-functions.php:166
776
- msgid "Cook Islands"
777
- msgstr "Cook Islands"
778
-
779
- #: includes/functions/wcj-country-functions.php:170
780
- msgid "Cura&Ccedil;ao"
781
- msgstr "Cura&Ccedil;ao"
782
-
783
- #: includes/functions/wcj-country-functions.php:184
784
- msgid "Falkland Islands"
785
- msgstr "Falkland Islands"
786
-
787
- #: includes/functions/wcj-country-functions.php:194
788
- msgid "Georgia"
789
- msgstr "Georgia"
790
-
791
- #: includes/functions/wcj-country-functions.php:197
792
- msgid "Gibraltar"
793
- msgstr "Gibraltar"
794
-
795
- #: includes/functions/wcj-country-functions.php:203
796
- msgid "Guernsey"
797
- msgstr "Guernsey"
798
-
799
- #: includes/functions/wcj-country-functions.php:208
800
- msgid "Heard Island and McDonald Islands"
801
- msgstr "Heard Island and McDonald Islands"
802
-
803
- #: includes/functions/wcj-country-functions.php:217
804
- msgid "Republic of Ireland"
805
- msgstr "Republic of Ireland"
806
-
807
- #: includes/functions/wcj-country-functions.php:218
808
- msgid "Isle of Man"
809
- msgstr "Isle of Man"
810
-
811
- #: includes/functions/wcj-country-functions.php:222
812
- msgid "Jamaica"
813
- msgstr "Jamaica"
814
-
815
- #: includes/functions/wcj-country-functions.php:224
816
- msgid "Jersey"
817
- msgstr "Jersey"
818
-
819
- #: includes/functions/wcj-country-functions.php:227
820
- msgid "Kenya"
821
- msgstr "Kenya"
822
-
823
- #: includes/functions/wcj-country-functions.php:228
824
- msgid "Kiribati"
825
- msgstr "Kiribati"
826
-
827
- #: includes/functions/wcj-country-functions.php:231
828
- msgid "Laos"
829
- msgstr "Laos"
830
-
831
- #: includes/functions/wcj-country-functions.php:234
832
- msgid "Lesotho"
833
- msgstr "Lesotho"
834
-
835
- #: includes/functions/wcj-country-functions.php:240
836
- msgid "Macao S.A.R., China"
837
- msgstr "Macao S.A.R., China"
838
-
839
- #: includes/functions/wcj-country-functions.php:247
840
- msgid "Malta"
841
- msgstr "Malta"
842
-
843
- #: includes/functions/wcj-country-functions.php:252
844
- msgid "Mayotte"
845
- msgstr "Mayotte"
846
-
847
- #: includes/functions/wcj-country-functions.php:271
848
- msgid "Niger"
849
- msgstr "Niger"
850
-
851
- #: includes/functions/wcj-country-functions.php:272
852
- msgid "Nigeria"
853
- msgstr "Nigeria"
854
-
855
- #: includes/functions/wcj-country-functions.php:273
856
- msgid "Niue"
857
- msgstr "Niue"
858
-
859
- #: includes/functions/wcj-country-functions.php:274
860
- msgid "Norfolk Island"
861
- msgstr "Norfolk Island"
862
-
863
- #: includes/functions/wcj-country-functions.php:278
864
- msgid "Pakistan"
865
- msgstr "Pakistan"
866
-
867
- #: includes/functions/wcj-country-functions.php:279
868
- msgid "Palestinian Territory"
869
- msgstr "Palestinian Territory"
870
-
871
- #: includes/functions/wcj-country-functions.php:280
872
- msgid "Panama"
873
- msgstr "Panama"
874
-
875
- #: includes/functions/wcj-country-functions.php:282
876
- msgid "Paraguay"
877
- msgstr "Paraguay"
878
-
879
- #: includes/functions/wcj-country-functions.php:285
880
- msgid "Pitcairn"
881
- msgstr "Pitcairn"
882
-
883
- #: includes/functions/wcj-country-functions.php:289
884
- msgid "Reunion"
885
- msgstr "Reunion"
886
-
887
- #: includes/functions/wcj-country-functions.php:293
888
- msgid "Saint Barth&eacute;lemy"
889
- msgstr "Saint Barth&eacute;lemy"
890
-
891
- #: includes/functions/wcj-country-functions.php:295
892
- msgid "Saint Kitts and Nevis"
893
- msgstr "Saint Kitts and Nevis"
894
-
895
- #: includes/functions/wcj-country-functions.php:296
896
- msgid "Saint Lucia"
897
- msgstr "Saint Lucia"
898
-
899
- #: includes/functions/wcj-country-functions.php:297
900
- msgid "Saint Martin (French part)"
901
- msgstr "Saint Martin (French part)"
902
-
903
- #: includes/functions/wcj-country-functions.php:298
904
- msgid "Saint Martin (Dutch part)"
905
- msgstr "Saint Martin (Dutch part)"
906
-
907
- #: includes/functions/wcj-country-functions.php:299
908
- msgid "Saint Pierre and Miquelon"
909
- msgstr "Saint Pierre and Miquelon"
910
-
911
- #: includes/functions/wcj-country-functions.php:301
912
- msgid "San Marino"
913
- msgstr "San Marino"
914
-
915
- #: includes/functions/wcj-country-functions.php:302
916
- msgid "S&atilde;o Tom&eacute; and Pr&iacute;ncipe"
917
- msgstr "S&atilde;o Tom&eacute; and Pr&iacute;ncipe"
918
-
919
- #: includes/functions/wcj-country-functions.php:304
920
- msgid "Senegal"
921
- msgstr "Senegal"
922
-
923
- #: includes/functions/wcj-country-functions.php:307
924
- msgid "Sierra Leone"
925
- msgstr "Sierra Leone"
926
-
927
- #: includes/functions/wcj-country-functions.php:312
928
- msgid "Somalia"
929
- msgstr "Somalia"
930
-
931
- #: includes/functions/wcj-country-functions.php:314
932
- msgid "South Georgia/Sandwich Islands"
933
- msgstr "South Georgia/Sandwich Islands"
934
-
935
- #: includes/functions/wcj-country-functions.php:316
936
- msgid "South Sudan"
937
- msgstr "South Sudan"
938
-
939
- #: includes/functions/wcj-country-functions.php:318
940
- msgid "Sri Lanka"
941
- msgstr "Sri Lanka"
942
-
943
- #: includes/functions/wcj-country-functions.php:319
944
- msgid "Sudan"
945
- msgstr "Sudan"
946
-
947
- #: includes/functions/wcj-country-functions.php:320
948
- msgid "Suriname"
949
- msgstr "Suriname"
950
-
951
- #: includes/functions/wcj-country-functions.php:321
952
- msgid "Svalbard and Jan Mayen"
953
- msgstr "Svalbard and Jan Mayen"
954
-
955
- #: includes/functions/wcj-country-functions.php:322
956
- msgid "Swaziland"
957
- msgstr "Swaziland"
958
-
959
- #: includes/functions/wcj-country-functions.php:327
960
- msgid "Tajikistan"
961
- msgstr "Tajikistan"
962
-
963
- #: includes/functions/wcj-country-functions.php:330
964
- msgid "Timor-Leste"
965
- msgstr "Timor-Leste"
966
-
967
- #: includes/functions/wcj-country-functions.php:331
968
- msgid "Togo"
969
- msgstr "Togo"
970
-
971
- #: includes/functions/wcj-country-functions.php:332
972
- msgid "Tokelau"
973
- msgstr "Tokelau"
974
-
975
- #: includes/functions/wcj-country-functions.php:333
976
- msgid "Tonga"
977
- msgstr "Tonga"
978
-
979
- #: includes/functions/wcj-country-functions.php:337
980
- msgid "Turkmenistan"
981
- msgstr "Turkmenistan"
982
-
983
- #: includes/functions/wcj-country-functions.php:339
984
- msgid "Tuvalu"
985
- msgstr "Tuvalu"
986
-
987
- #: includes/functions/wcj-country-functions.php:340
988
- msgid "Uganda"
989
- msgstr "Uganda"
990
-
991
- #: includes/functions/wcj-country-functions.php:343
992
- msgid "United Kingdom (UK)"
993
- msgstr "United Kingdom (UK)"
994
-
995
- #: includes/functions/wcj-country-functions.php:344
996
- msgid "United States (US)"
997
- msgstr "United States (US)"
998
-
999
- #: includes/functions/wcj-country-functions.php:347
1000
- msgid "Vanuatu"
1001
- msgstr "Vanuatu"
1002
-
1003
- #: includes/functions/wcj-country-functions.php:350
1004
- msgid "Vietnam"
1005
- msgstr "Vietnam"
1006
-
1007
- #: includes/functions/wcj-country-functions.php:352
1008
- msgid "Western Sahara"
1009
- msgstr "Western Sahara"
1010
-
1011
- #: includes/functions/wcj-functions.php:628
1012
- msgid "Before shipping calculator"
1013
- msgstr "Vor Versandrechner"
1014
-
1015
- #: includes/functions/wcj-functions.php:629
1016
- msgid "After shipping calculator"
1017
- msgstr "Nach Versandrechner"
1018
-
1019
- #: includes/functions/wcj-functions.php:898
1020
- #: includes/functions/wcj-functions.php:917
1021
- msgid "Guest"
1022
- msgstr "Gast"
1023
-
1024
- #: includes/functions/wcj-invoicing-functions.php:19
1025
- msgid "Invoice"
1026
- msgstr "Rechnung"
1027
-
1028
- #: includes/functions/wcj-invoicing-functions.php:20
1029
- msgid "Invoices"
1030
- msgstr "Rechnungen"
1031
-
1032
- #: includes/functions/wcj-invoicing-functions.php:27
1033
- msgid "Proforma Invoice"
1034
- msgstr "Proforma-Rechnung"
1035
-
1036
- #: includes/functions/wcj-invoicing-functions.php:28
1037
- msgid "Proforma Invoices"
1038
- msgstr "Proforma-Rechnungen"
1039
-
1040
- #: includes/functions/wcj-invoicing-functions.php:35
1041
- msgid "Packing Slip"
1042
- msgstr "Verpackungsschein"
1043
-
1044
- #: includes/functions/wcj-invoicing-functions.php:43
1045
- msgid "Credit Note"
1046
- msgstr "Gutschrift"
1047
-
1048
- #: includes/functions/wcj-invoicing-functions.php:44
1049
- msgid "Credit Notes"
1050
- msgstr "Gutschriften"
1051
-
1052
- #: includes/gateways/class-wc-gateway-wcj-custom.php:70
1053
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:115
1054
- #: includes/shipping/class-wc-shipping-wcj-custom.php:84
1055
- msgid "This controls the title which the user sees during checkout."
1056
- msgstr "Dies steuert den Titel, den der Benutzer während der Kasse sieht."
1057
-
1058
- #: includes/gateways/class-wc-gateway-wcj-custom.php:79
1059
- msgid "You can add input fields with [wcj_input_field] shortcode."
1060
- msgstr "Du kannst Eingabefelder mit [wcj_input_field] Shortcode hinzufügen."
1061
-
1062
- #: includes/gateways/class-wc-gateway-wcj-custom.php:87
1063
- msgid "Instructions that will be added to the thank you page."
1064
- msgstr "Instruktionen, die dem Dankeschön hinzugefügt werden."
1065
-
1066
- #: includes/gateways/class-wc-gateway-wcj-custom.php:93
1067
- msgid "Email Instructions"
1068
- msgstr "Email-Instruktionen"
1069
-
1070
- #: includes/gateways/class-wc-gateway-wcj-custom.php:95
1071
- msgid "Instructions that will be added to the emails."
1072
- msgstr "Instruktionen, die den E-Mails hinzugefügt werden."
1073
-
1074
- #: includes/gateways/class-wc-gateway-wcj-custom.php:101
1075
- msgid "Icon"
1076
- msgstr "Icon"
1077
-
1078
- #: includes/gateways/class-wc-gateway-wcj-custom.php:110
1079
- msgid "Minimum order amount"
1080
- msgstr "Mindestbestellmenge"
1081
-
1082
- #: includes/gateways/class-wc-gateway-wcj-custom.php:119
1083
- msgid "Enable for shipping methods"
1084
- msgstr "Für Versandmethoden aktivieren"
1085
-
1086
- #: includes/gateways/class-wc-gateway-wcj-custom.php:124
1087
- msgid ""
1088
- "If gateway is only available for certain shipping methods, set it up here. "
1089
- "Leave blank to enable for all methods."
1090
- msgstr ""
1091
- "Wenn das Gateway nur für bestimmte Versandmethoden verfügbar ist, richte es "
1092
- "hier ein. Leer lassen, um alle Methoden zu aktivieren."
1093
-
1094
- #: includes/gateways/class-wc-gateway-wcj-custom.php:127
1095
- msgid "Select shipping methods"
1096
- msgstr "Wähle Versandmethoden"
1097
-
1098
- #: includes/gateways/class-wc-gateway-wcj-custom.php:131
1099
- msgid "Enable for virtual orders"
1100
- msgstr "Aktivieren für virtuelle Aufträge"
1101
-
1102
- #: includes/gateways/class-wc-gateway-wcj-custom.php:132
1103
- msgid "Enable gateway if the order is virtual"
1104
- msgstr "Aktiviere das Gateway, wenn der Auftrag virtuell ist"
1105
-
1106
- #: includes/gateways/class-wc-gateway-wcj-custom.php:146
1107
- msgid "Send Additional Emails"
1108
- msgstr "Sende zusätzliche E-Mails"
1109
-
1110
- #: includes/gateways/class-wc-gateway-wcj-custom.php:147
1111
- msgid "Send to Admin"
1112
- msgstr "An Admin senden"
1113
-
1114
- #: includes/gateways/class-wc-gateway-wcj-custom.php:164
1115
- msgid "Enter full URL with http(s)."
1116
- msgstr "Gib die vollständige URL mit http(s) ein"
1117
-
1118
- #: includes/gateways/class-wc-gateway-wcj-custom.php:165
1119
- msgid "Optional. Leave blank to use default URL."
1120
- msgstr "Optional. Leer lassen, um die Standard-URL zu verwenden."
1121
-
1122
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:80
1123
- msgid "Checkbox: ON"
1124
- msgstr "Checkbox: AN"
1125
-
1126
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:88
1127
- msgid "Checkbox: OFF"
1128
- msgstr "Checkbox: AUS"
1129
-
1130
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:96
1131
- msgid "Checkbox: Default"
1132
- msgstr "Checkbox: Voreinstellung"
1133
-
1134
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:108
1135
- msgid ""
1136
- "If file is selected, set accepted file types here. E.g.: \".jpg,.jpeg,.png\"."
1137
- " Leave blank to accept all files"
1138
- msgstr ""
1139
- "Wenn die Datei ausgewählt ist, lege hier die akzeptierten Dateitypen fest. z."
1140
- "B.: \".jpg,.jpeg,.png\". Leer lassen, um alle Dateien zu akzeptieren"
1141
-
1142
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:109
1143
- msgid "File: Accepted types"
1144
- msgstr "Datei: Akzeptierte Typen"
1145
-
1146
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:111
1147
- msgid ".jpg,.jpeg,.png"
1148
- msgstr ".jpg,.jpeg,.png"
1149
-
1150
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:116
1151
- msgid ""
1152
- "If file is selected, set max file size here. Set to zero to accept all files"
1153
- msgstr ""
1154
- "Wenn die Datei ausgewählt ist, stelle hier die maximale Dateigröße ein. Auf "
1155
- "Null setzen, um alle Dateien zu akzeptieren"
1156
-
1157
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:117
1158
- msgid "File: Max size"
1159
- msgstr "Datei: Maximale Größe"
1160
-
1161
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:113
1162
- msgid "Download monthly documents CSV"
1163
- msgstr "Monatliche Dokumente herunterladen CSV"
1164
-
1165
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:121
1166
- msgid "Admin - Failed Order"
1167
- msgstr "Admin - Fehlgeschlagene Bestellung"
1168
-
1169
- #: includes/reports/wcj-class-reports-sales.php:141
1170
- msgid "Variation"
1171
- msgstr "Variation"
1172
-
1173
- #: includes/reports/wcj-class-reports-sales.php:172
1174
- msgid "Last Sale"
1175
- msgstr "Letzter Verkauf"
1176
-
1177
- #: includes/reports/wcj-class-reports-sales.php:173
1178
- msgid "Total Sales"
1179
- msgstr "Gesamtumsatz"
1180
-
1181
- #: includes/reports/wcj-class-reports-sales.php:227
1182
- msgid "Filter products"
1183
- msgstr "Produkte filtern"
1184
-
1185
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:141
1186
- msgid "Min Weight"
1187
- msgstr "Mindestgewicht"
1188
-
1189
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:159
1190
- msgid ""
1191
- "Press \"Save changes\" and reload the page after you change this number."
1192
- msgstr ""
1193
- "Drücke \"Änderungen speichern\" und lade die Seite nach dem Ändern dieser "
1194
- "Nummer neu."
1195
-
1196
- #: includes/shortcodes/class-wcj-order-items-shortcodes.php:151
1197
- msgid "Standard"
1198
- msgstr "Standard"
1199
-
1200
- #: woocommerce-jetpack.php:346
1201
- msgid ""
1202
- "Please upgrade <strong>Booster Plus for WooCommerce</strong> plugin to "
1203
- "version %s. Please visit <a href=\"%s\">your account</a> on booster.io to "
1204
- "download the latest Booster Plus version."
1205
- msgstr ""
1206
- "Bitte aktualisiere <strong>Booster Plus for WooCommerce</strong> -Plugin auf "
1207
- "Version %s. Bitte besuche <a href=\"%s\">Dein Konto</a> auf booster.io um "
1208
- "die aktuellste Booster Plus Version herunterzuladen."
1209
-
1210
- #: includes/class-wcj-product-bulk-price-converter.php:152
1211
- msgid "Original Price"
1212
- msgstr "Original-Preis"
1213
-
1214
- #: includes/class-wcj-product-bulk-price-converter.php:153
1215
- msgid "Modified Price"
1216
- msgstr "Geänderter Preis"
1217
-
1218
- #: includes/class-wcj-product-bulk-price-converter.php:206
1219
- msgid "Multiply value must be above zero."
1220
- msgstr "Multiplizier-Wert muss über Null liegen."
1221
-
1222
- #: includes/class-wcj-product-bulk-price-converter.php:213
1223
- msgid "Prices changed successfully!"
1224
- msgstr "Preise erfolgreich geändert!"
1225
-
1226
- #: includes/class-wcj-product-bulk-price-converter.php:238
1227
- msgid "Multiply all product prices by"
1228
- msgstr "Multipliziere alle Produktpreise mit"
1229
-
1230
- #: includes/class-wcj-product-by-user-role.php:88
1231
- msgid ""
1232
- "When enabled, module will add new \"Booster: Product Visibility by User "
1233
- "Role\" meta box to each product's edit page."
1234
- msgstr ""
1235
- "Wenn diese Option aktiviert ist, wird das Modul \"Booster: "
1236
- "Produktsichtbarkeit nach Benutzerrolle\" in die Meta-Box des jeweiligen "
1237
- "Produkts hinzugefügt."
1238
-
1239
- #: includes/class-wcj-product-input-fields.php:143
1240
- msgid ""
1241
- "You will be able to change this number later as well as define the fields, "
1242
- "for each product individually, in product's \"Edit\"."
1243
- msgstr ""
1244
- "Du kannst diese Nummer später ändern und die Felder für jedes Produkt "
1245
- "einzeln im Produkt \"Bearbeiten\" definieren."
1246
-
1247
- #: includes/class-wcj-product-input-fields.php:217
1248
- msgid "Frontend View Options"
1249
- msgstr "Frontend-Ansichtsoptionen"
1250
-
1251
- #: includes/class-wcj-product-input-fields.php:223
1252
- msgid "HTML to add after required field title"
1253
- msgstr "HTML nach dem gewünschten Feldtitel hinzufügen"
1254
-
1255
- #: includes/class-wcj-product-input-fields.php:231
1256
- msgid "Item Name Order Table Format"
1257
- msgstr "Produktname Bestell-Tabellenformat"
1258
-
1259
- #: includes/class-wcj-product-listings.php:482
1260
- msgid "Position Priority"
1261
- msgstr "Positions-Priorität"
1262
-
1263
- #: includes/class-wcj-product-open-pricing.php:28
1264
- msgid ""
1265
- "Let your WooCommerce store customers enter price for the product manually."
1266
- msgstr ""
1267
- "Lasse Deine WooCommerce-Shop Kunden den Preis für das Produkt eingeben."
1268
-
1269
- #: includes/class-wcj-product-open-pricing.php:131
1270
- msgid ""
1271
- "Booster: Free plugin's version is limited to only one open pricing product "
1272
- "enabled at a time. You will need to get <a href=\"http://booster.io/plus/\" "
1273
- "target=\"_blank\">Booster Plus</a> to add unlimited number of open pricing "
1274
- "products."
1275
- msgstr ""
1276
- "Booster: Die kostenlose Version des Plugins ist auf nur ein offenes "
1277
- "Preisprodukt beschränkt. Du musst <a href=\"http://booster.io/plus/\" "
1278
- "target=\"_blank\">Booster Plus</a> erwerben, um eine unbegrenzte Anzahl "
1279
- "offener Preisprodukte hinzuzufügen."
1280
-
1281
- #: includes/class-wcj-product-open-pricing.php:184
1282
- msgid "Default Price"
1283
- msgstr "Preisvoreinstellung"
1284
-
1285
- #: includes/class-wcj-product-open-pricing.php:190
1286
- msgid "Min Price"
1287
- msgstr "Min Preis"
1288
-
1289
- #: includes/class-wcj-product-open-pricing.php:196
1290
- msgid "Max Price"
1291
- msgstr "Max Preis"
1292
-
1293
- #: includes/class-wcj-product-open-pricing.php:265
1294
- #: includes/class-wcj-product-open-pricing.php:391
1295
- msgid "Price is required!"
1296
- msgstr "Preis wird benötigt!"
1297
-
1298
- #: includes/class-wcj-product-open-pricing.php:269
1299
- #: includes/class-wcj-product-open-pricing.php:398
1300
- msgid "Entered price is to small!"
1301
- msgstr "Eingegebener Preis ist zu niedrig!"
1302
-
1303
- #: includes/class-wcj-product-open-pricing.php:275
1304
- #: includes/class-wcj-product-open-pricing.php:405
1305
- msgid "Entered price is to big!"
1306
- msgstr "Eingegebener Preis ist zu hoch!"
1307
-
1308
- #: includes/class-wcj-product-open-pricing.php:332
1309
- #: includes/class-wcj-product-open-pricing.php:376
1310
- msgid "Name Your Price"
1311
- msgstr "Nenne Deinen Preis"
1312
-
1313
- #: includes/class-wcj-product-open-pricing.php:374
1314
- msgid "Frontend Label"
1315
- msgstr "Frontend Label"
1316
-
1317
- #: includes/class-wcj-product-open-pricing.php:381
1318
- msgid "Frontend Template"
1319
- msgstr "Frontend Template"
1320
-
1321
- #: includes/class-wcj-product-open-pricing.php:382
1322
- msgid "Here you can use"
1323
- msgstr "Hier kannst Du verwenden"
1324
-
1325
- #: includes/class-wcj-product-open-pricing.php:389
1326
- msgid "Message on Empty Price"
1327
- msgstr "Nachricht auf leeren Preis"
1328
-
1329
- #: includes/class-wcj-product-open-pricing.php:396
1330
- msgid "Message on Price to Small"
1331
- msgstr "Nachricht auf Preis zu niedrig"
1332
-
1333
- #: includes/class-wcj-product-open-pricing.php:403
1334
- msgid "Message on Price to Big"
1335
- msgstr "Nachricht auf Preis zu hoch"
1336
-
1337
- #: includes/class-wcj-product-price-by-formula.php:28
1338
- msgid "Set formula for automatic WooCommerce product price calculation."
1339
- msgstr ""
1340
- "Setze die Formel für die automatische WooCommerce-Produktpreisberechnung."
1341
-
1342
- #: includes/class-wcj-product-price-by-formula.php:119
1343
- msgid "Error in formula"
1344
- msgstr "Fehler in Formel"
1345
-
1346
- #: includes/class-wcj-product-price-by-formula.php:244
1347
- msgid "Use values below"
1348
- msgstr "Werte unten nutzen"
1349
-
1350
- #: includes/class-wcj-product-price-by-formula.php:245
1351
- msgid "Use default values"
1352
- msgstr "Voreingestellte Werte nutzen"
1353
-
1354
- #: includes/class-wcj-product-tabs.php:411
1355
- #: includes/input-fields/class-wcj-product-input-fields-per-product.php:153
1356
- msgid "Click \"Update\" product after you change this number."
1357
- msgstr "Klicke auf \"Produkt Aktualisieren\", nachdem Du diese Nummer änderst."
1358
-
1359
- #: includes/class-wcj-product-tabs.php:443
1360
- #: includes/class-wcj-product-tabs.php:541
1361
- #: includes/class-wcj-product-tabs.php:710
1362
- msgid "Custom Product Tab"
1363
- msgstr "Benutzerdefiniertes Produkt Tab"
1364
-
1365
- #: includes/class-wcj-product-tabs.php:497
1366
- msgid "Custom Product Tabs Options"
1367
- msgstr "Benutzerdefinierte Produkt-Registerkarten-Optionen"
1368
-
1369
- #: includes/class-wcj-product-tabs.php:503
1370
- msgid "Custom Product Tabs Number"
1371
- msgstr "Benutzerdefinierte Produkt-Registerkarten-Nummer"
1372
-
1373
- #: includes/class-wcj-product-tabs.php:558
1374
- #: includes/class-wcj-product-tabs.php:727
1375
- msgid "You can use shortcodes here..."
1376
- msgstr "Hier kannst du Shortcodes verwenden..."
1377
-
1378
- #: includes/class-wcj-product-tabs.php:566
1379
- #: includes/class-wcj-product-tabs.php:735
1380
- msgid "PRODUCTS to HIDE this tab"
1381
- msgstr "PRODUKTE, die in dieser Registerkarte auszublenden sind"
1382
-
1383
- #: includes/class-wcj-product-tabs.php:586
1384
- #: includes/class-wcj-product-tabs.php:755
1385
- msgid "CATEGORIES to HIDE this tab"
1386
- msgstr "KATEGORIEN, die in dieser Registerkarte auszublenden sind"
1387
-
1388
- #: includes/class-wcj-product-tabs.php:606
1389
- #: includes/class-wcj-product-tabs.php:775
1390
- msgid "TAGS to HIDE this tab"
1391
- msgstr "STICHWÖRTER, die in dieser Registerkarte auszublenden sind"
1392
-
1393
- #: includes/class-wcj-product-tabs.php:671
1394
- msgid "Custom Product Tabs - Per Product"
1395
- msgstr "Benutzerdefinierte Produkt-Registerkarten - Pro Produkt"
1396
-
1397
- #: includes/class-wcj-product-tabs.php:677
1398
- msgid "Enable Per Product Custom Product Tabs"
1399
- msgstr "Aktiviere pro Produkt benutzerdefinierte Produkt-Registerkarten"
1400
-
1401
- #: includes/class-wcj-product-tabs.php:679
1402
- msgid "This will add meta boxes to each product's edit page."
1403
- msgstr "Dies fügt jeder Produktbearbeitungsseite Meta-Boxen hinzu."
1404
-
1405
- #: includes/class-wcj-product-tabs.php:685
1406
- msgid "Use Visual Editor"
1407
- msgstr "Verwendung des Visual Editor"
1408
-
1409
- #: includes/class-wcj-product-tabs.php:692
1410
- msgid "Default Per Product Custom Product Tabs Number"
1411
- msgstr ""
1412
- "Voreingestellte pro Produkt benutzerdefinierte Produkt-Registerkarten-Nummer"
1413
-
1414
- #: includes/class-wcj-product-tabs.php:711
1415
- msgid "Default Title"
1416
- msgstr "Voreingestellter Titel"
1417
-
1418
- #: includes/class-wcj-product-tabs.php:719
1419
- msgid "Default Priority (i.e. Order)"
1420
- msgstr "Voreingestellte Priorität (d.h. Reihenfolge)"
1421
-
1422
- #: includes/class-wcj-product-tabs.php:726
1423
- msgid "Default Content"
1424
- msgstr "Voreingestellter Inhalt"
1425
-
1426
- #: includes/class-wcj-product-tabs.php:803
1427
- msgid "WooCommerce Standard Product Tabs Options"
1428
- msgstr "WooCommerce Standard-Produkt-Registerkarten-Optionen"
1429
-
1430
- #: includes/class-wcj-product-tabs.php:809
1431
- msgid "Description Tab"
1432
- msgstr "Beschreibungs-Registerkarte"
1433
-
1434
- #: includes/class-wcj-product-tabs.php:810
1435
- #: includes/class-wcj-product-tabs.php:833
1436
- #: includes/class-wcj-product-tabs.php:856
1437
- msgid "Remove tab from product page"
1438
- msgstr "Registerkarte von der Produktseite entfernen"
1439
-
1440
- #: includes/class-wcj-product-tabs.php:817
1441
- #: includes/class-wcj-product-tabs.php:840
1442
- #: includes/class-wcj-product-tabs.php:863
1443
- msgid "Title."
1444
- msgstr "Titel."
1445
-
1446
- #: includes/class-wcj-product-tabs.php:818
1447
- #: includes/class-wcj-product-tabs.php:841
1448
- #: includes/class-wcj-product-tabs.php:864
1449
- msgid "Leave blank for WooCommerce defaults"
1450
- msgstr "Leer lassen für WooCommerce-Standardwerte"
1451
-
1452
- #: includes/class-wcj-product-tabs.php:828
1453
- #: includes/class-wcj-product-tabs.php:851
1454
- #: includes/class-wcj-product-tabs.php:874
1455
- msgid "Priority (i.e. Order)."
1456
- msgstr "Priorität (d.h. Reihenfolge)."
1457
-
1458
- #: includes/class-wcj-product-tabs.php:832
1459
- msgid "Additional Information Tab"
1460
- msgstr "Zusätzliche Informations-Registerkarte"
1461
-
1462
- #: includes/class-wcj-product-tabs.php:855
1463
- msgid "Reviews Tab"
1464
- msgstr "Bewertungs-Registerkarte "
1465
-
1466
- #: includes/class-wcj-products-xml.php:28
1467
- msgid "Products XML"
1468
- msgstr "Produkte XML"
1469
-
1470
- #: includes/class-wcj-products-xml.php:29
1471
- msgid "WooCommerce products XML feed."
1472
- msgstr "WooCommerce-Produkte XML-Feed."
1473
-
1474
- #: includes/class-wcj-products-xml.php:100
1475
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:207
1476
- msgid "Once a Minute"
1477
- msgstr "Einmal pro Minute"
1478
-
1479
- #: includes/class-wcj-products-xml.php:112
1480
- msgid "Products XML file created successfully."
1481
- msgstr "Produkte XML-Datei erfolgreich erstellt."
1482
-
1483
- #: includes/class-wcj-products-xml.php:122
1484
- msgid "An error has occurred while creating products XML file."
1485
- msgstr "Beim Erstellen der Produkt-XML-Datei ist ein Fehler aufgetreten."
1486
-
1487
- #: includes/class-wcj-products-xml.php:226
1488
- msgid "Create Now"
1489
- msgstr "Jetzt erstellen"
1490
-
1491
- #: includes/class-wcj-products-xml.php:231
1492
- msgid "XML File"
1493
- msgstr "XML-Datei"
1494
-
1495
- #: includes/class-wcj-products-xml.php:243
1496
- msgid "XML Header"
1497
- msgstr "XML Header"
1498
-
1499
- #: includes/class-wcj-products-xml.php:250
1500
- msgid "XML Item"
1501
- msgstr "XML-Produkt"
1502
-
1503
- #: includes/class-wcj-products-xml.php:252
1504
- msgid ""
1505
- "You can use shortcodes here. Please take a look at <a target=\"_blank\" "
1506
- "href=\"%s\">Booster's products shortcodes</a>."
1507
- msgstr ""
1508
- "Hier kannst Du Shortcodes verwenden. Bitte werfe einen Blick auf <a "
1509
- "target=\"_blank\" href=\"%s\">Booster's Produkt-Shortcodes</a>."
1510
-
1511
- #: includes/class-wcj-products-xml.php:269
1512
- msgid "XML Footer"
1513
- msgstr "XML Footer"
1514
-
1515
- #: includes/class-wcj-products-xml.php:276
1516
- msgid "XML File Path and Name"
1517
- msgstr "XML-Datei Pfad und Name"
1518
-
1519
- #: includes/class-wcj-products-xml.php:277
1520
- msgid "Path on server:"
1521
- msgstr "Pfad auf Server"
1522
-
1523
- #: includes/class-wcj-products-xml.php:278
1524
- msgid "URL:"
1525
- msgstr "URL:"
1526
-
1527
- #: includes/class-wcj-purchase-data.php:49
1528
- #: includes/class-wcj-purchase-data.php:235
1529
- #: includes/class-wcj-purchase-data.php:390
1530
- msgid "Profit"
1531
- msgstr "Gewinnt"
1532
-
1533
- #: includes/class-wcj-purchase-data.php:126
1534
- #: includes/class-wcj-purchase-data.php:285
1535
- msgid "Extra expenses (shipping etc.)"
1536
- msgstr "Nebenkosten (Versand etc.)"
1537
-
1538
- #: includes/class-wcj-purchase-data.php:136
1539
- #: includes/class-wcj-purchase-data.php:292
1540
- msgid "Affiliate commission"
1541
- msgstr "Affiliate Provision"
1542
-
1543
- #: includes/class-wcj-purchase-data.php:178
1544
- #: includes/class-wcj-purchase-data.php:366
1545
- msgid "Seller"
1546
- msgstr "Verkäufer"
1547
-
1548
- #: includes/class-wcj-purchase-data.php:188
1549
- #: includes/class-wcj-purchase-data.php:373
1550
- msgid "Purchase info"
1551
- msgstr "Kaufinformationen"
1552
-
1553
- #: includes/class-wcj-purchase-data.php:233
1554
- msgid "Selling"
1555
- msgstr "Verkaufen"
1556
-
1557
- #: includes/class-wcj-purchase-data.php:234
1558
- msgid "Buying"
1559
- msgstr "Kaufen"
1560
-
1561
- #: includes/class-wcj-purchase-data.php:243
1562
- msgid "Report"
1563
- msgstr "Bericht"
1564
-
1565
- #: includes/class-wcj-purchase-data.php:272
1566
- msgid "Price Fields"
1567
- msgstr "Preisfelder"
1568
-
1569
- #: includes/class-wcj-purchase-data.php:274
1570
- #: includes/class-wcj-purchase-data.php:305
1571
- msgid ""
1572
- "This fields will be added to product's edit page and will be included in "
1573
- "product's purchase cost calculation."
1574
- msgstr ""
1575
- "Diese Felder werden der Produkt-Bearbeitungsseite hinzugefügt und in die "
1576
- "Kaufpreisberechnung des Produkts aufgenommen."
1577
-
1578
- #: includes/class-wcj-purchase-data.php:303
1579
- msgid "Custom Price Fields"
1580
- msgstr "Benutzerdefinierte Preisfelder"
1581
-
1582
- #: includes/class-wcj-purchase-data.php:309
1583
- msgid "Total Custom Price Fields"
1584
- msgstr "Gesamte benutzerdefinierte Preisfelder"
1585
-
1586
- #: includes/class-wcj-purchase-data.php:321
1587
- msgid "Custom Price Field"
1588
- msgstr "Benutzerdefiniertes Preisfeld"
1589
-
1590
- #: includes/class-wcj-purchase-data.php:324
1591
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:58
1592
- msgid "Leave blank to disable"
1593
- msgstr "Leer lassen, um zu deaktivieren"
1594
-
1595
- #: includes/class-wcj-purchase-data.php:353
1596
- msgid "Info Fields"
1597
- msgstr "Info-Felder"
1598
-
1599
- #: includes/class-wcj-purchase-data.php:355
1600
- msgid "This fields will be added to product's edit page."
1601
- msgstr "Diese Felder werden der Produkt-Bearbeitungsseite hinzugefügt."
1602
-
1603
- #: includes/class-wcj-related-products.php:128
1604
- msgid "Ignored if order by \"Random\" is selected above."
1605
- msgstr "Ignoriert, wenn die Bestellung von \"Zufällig\" oben gewählt wird."
1606
-
1607
- #: includes/class-wcj-related-products.php:138
1608
- msgid "Relate by Category"
1609
- msgstr "Verwandt nach Kategorie"
1610
-
1611
- #: includes/class-wcj-related-products.php:144
1612
- msgid "Relate by Tag"
1613
- msgstr "Verwandt nach Stichwort"
1614
-
1615
- #: includes/class-wcj-reports.php:35
1616
- msgid "WooCommerce stock, sales, customers etc. reports."
1617
- msgstr "WooCommerce-Berichte für Lager, Abverkauf, Kunden etc."
1618
-
1619
- #: includes/class-wcj-reports.php:292
1620
- msgid "Booster: Customers by Country"
1621
- msgstr "Booster: Kunden nach Land"
1622
-
1623
- #: includes/class-wcj-reports.php:299
1624
- msgid "Booster: Customers by Country Sets"
1625
- msgstr "Booster: Kunden nach Land Sets"
1626
-
1627
- #: includes/class-wcj-reports.php:316
1628
- msgid "Product Sales"
1629
- msgstr "Produktabverkäufe"
1630
-
1631
- #: includes/class-wcj-reports.php:334
1632
- msgid "Customers by Country"
1633
- msgstr "Kunden nach Land"
1634
-
1635
- #: includes/class-wcj-reports.php:340
1636
- msgid "Customers by Country Sets"
1637
- msgstr "Kunden nach Land Sets"
1638
-
1639
- #: includes/class-wcj-reports.php:346
1640
- msgid "All in Stock with sales data"
1641
- msgstr "Alles auf Lager mit Verkaufsdaten"
1642
-
1643
- #: includes/class-wcj-shipping-calculator.php:177
1644
- msgid "Labels Options"
1645
- msgstr "Label-ptionen"
1646
-
1647
- #: includes/class-wcj-shipping-calculator.php:182
1648
- msgid "Labels"
1649
- msgstr "Label"
1650
-
1651
- #: includes/class-wcj-shipping-calculator.php:191
1652
- msgid "Label for Calculate Shipping"
1653
- msgstr "Label für Versandkostenberechnung"
1654
-
1655
- #: includes/class-wcj-shipping-calculator.php:193
1656
- msgid "Calculate Shipping"
1657
- msgstr "Versandkostenberechnung"
1658
-
1659
- #: includes/class-wcj-shipping-calculator.php:199
1660
- msgid "Label for Update Totals"
1661
- msgstr "Label für Aktualisiere Gesamtsumme"
1662
-
1663
- #: includes/class-wcj-shipping-calculator.php:201
1664
- msgid "Update Totals"
1665
- msgstr "Aktualisiere Gesamtsumme"
1666
-
1667
- #: includes/class-wcj-shipping.php:28
1668
- msgid "Add descriptions and icons to shipping methods on frontend."
1669
- msgstr "Füge Beschreibungen und Icons den Versandmethoden im Frontend hinzu."
1670
-
1671
- #: includes/class-wcj-shipping.php:127
1672
- msgid "Booster: Hide shipping"
1673
- msgstr "Booster: Versandkosten ausblenden"
1674
-
1675
- #: includes/class-wcj-shipping.php:128 includes/class-wcj-shipping.php:246
1676
- msgid "Hide all when free is available"
1677
- msgstr "ALles ausblenden wenn kostenlos verfügbar ist"
1678
-
1679
- #: includes/class-wcj-shipping.php:168
1680
- msgid "WooCommerce > Settings > Shipping"
1681
- msgstr "WooCommerce > Einstellungen > Versand"
1682
-
1683
- #: includes/class-wcj-shipping.php:171 includes/class-wcj-shipping.php:178
1684
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:116
1685
- #: includes/shipping/class-wc-shipping-wcj-custom.php:85
1686
- msgid "Custom Shipping"
1687
- msgstr "Benutzerdefinierte Versandkosten"
1688
-
1689
- #: includes/class-wcj-shipping.php:174
1690
- msgid "This section lets you add custom shipping method."
1691
- msgstr ""
1692
- "Dieser Abschnitt lässt Dich benutzerdefinierte Versandmethoden hinzufügen."
1693
-
1694
- #: includes/class-wcj-shipping.php:175
1695
- msgid "Visit %s to set method's options."
1696
- msgstr "Besuche %s, um die Optionen der Methode festzulegen."
1697
-
1698
- #: includes/class-wcj-shipping.php:185
1699
- msgid "Admin Title"
1700
- msgstr "Admin-Titel"
1701
-
1702
- #: includes/class-wcj-shipping.php:187
1703
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:51
1704
- msgid "Booster: Custom Shipping"
1705
- msgstr "Booster: Benutzerdefinierter Versand"
1706
-
1707
- #: includes/class-wcj-shipping.php:198
1708
- msgid "Custom Shipping (Legacy - without Shipping Zones)"
1709
- msgstr "Benutzerdefinierter Versand (Legacy - ohne Versandzonen)"
1710
-
1711
- #: includes/class-wcj-shipping.php:202
1712
- msgid "After setting the number, visit %s to set each method options."
1713
- msgstr ""
1714
- "Nachdem Du die Nummer eingestellt hast, besuche %s, um die einzelnen "
1715
- "Methodenoptionen festzulegen."
1716
-
1717
- #: includes/class-wcj-shipping.php:304
1718
- msgid "Icon Position"
1719
- msgstr "Icon-Position"
1720
-
1721
- #: includes/class-wcj-shipping.php:309
1722
- msgid "Before label"
1723
- msgstr "Vor Label"
1724
-
1725
- #: includes/class-wcj-shipping.php:310
1726
- msgid "After label"
1727
- msgstr "Nach Label"
1728
-
1729
- #: includes/class-wcj-shipping.php:314
1730
- msgid "Icon Style"
1731
- msgstr "Icon-Stil"
1732
-
1733
- #: includes/class-wcj-shipping.php:315
1734
- msgid ""
1735
- "You can also style icons with CSS class \"wcj_shipping_icon\", or id "
1736
- "\"wcj_shipping_icon_method_id\""
1737
- msgstr ""
1738
- "Du kannst auch Symbole mit CSS-Klasse \"wcj_shipping_icon\", oder ID "
1739
- "\"wcj_shipping_icon_method_id\" stylen"
1740
-
1741
- #: includes/class-wcj-shipping.php:326
1742
- #: includes/export/class-wcj-fields-helper.php:291
1743
- msgid "Image URL"
1744
- msgstr "Bild-URL"
1745
-
1746
- #: includes/class-wcj-sku.php:34
1747
- msgid "The tool generates and sets product SKUs for existing products."
1748
- msgstr "Das Werkzeug erzeugt und setzt Produkt-SKUs für bestehende Produkte."
1749
-
1750
- #: includes/class-wcj-sku.php:251
1751
- msgid "SKUs generated and set successfully!"
1752
- msgstr "SKUs generiert und erfolgreich eingestellt!"
1753
-
1754
- #: includes/class-wcj-sku.php:257
1755
- msgid "Preview SKUs"
1756
- msgstr "Vorschau SKUs"
1757
-
1758
- #: includes/class-wcj-sku.php:258
1759
- msgid "Set SKUs"
1760
- msgstr "SKUs einstellen"
1761
-
1762
- #: includes/class-wcj-sku.php:272
1763
- msgid "SKU Format Options"
1764
- msgstr "SKU Format-Optionen"
1765
-
1766
- #: includes/class-wcj-sku.php:277
1767
- msgid "Number Generation"
1768
- msgstr "Nummer-Generierung"
1769
-
1770
- #: includes/class-wcj-sku.php:282
1771
- msgid "From product ID"
1772
- msgstr "Aus Produkt-ID"
1773
-
1774
- #: includes/class-wcj-sku.php:283
1775
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-numbering.php:45
1776
- msgid "Sequential"
1777
- msgstr "Sequentiell"
1778
-
1779
- #: includes/class-wcj-sku.php:290
1780
- msgid "Sequential Number Generation Counter"
1781
- msgstr "Sequentieller Nummer-Generierungszähler"
1782
-
1783
- #: includes/class-wcj-sku.php:301 includes/class-wcj-sku.php:352
1784
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-numbering.php:63
1785
- msgid "Prefix"
1786
- msgstr "Präfix"
1787
-
1788
- #: includes/class-wcj-sku.php:307
1789
- msgid "Minimum Number Length"
1790
- msgstr "Minimale Nummernlänge"
1791
-
1792
- #: includes/class-wcj-sku.php:313 includes/class-wcj-sku.php:361
1793
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-numbering.php:70
1794
- msgid "Suffix"
1795
- msgstr "Suffix"
1796
-
1797
- #: includes/class-wcj-sku.php:327
1798
- msgid "SKU same as parent's product"
1799
- msgstr "SKU gleich wie das Produkt der Eltern"
1800
-
1801
- #: includes/class-wcj-sku.php:328
1802
- msgid "Generate different SKU for each variation"
1803
- msgstr "Generiere verschiedene SKU für jede Variation"
1804
-
1805
- #: includes/class-wcj-sku.php:329
1806
- msgid "SKU same as parent's product + variation letter suffix"
1807
- msgstr "SKU gleich wie das Eltern-Produkt + Variation Buchstabensuffix"
1808
-
1809
- #: includes/class-wcj-sku.php:341
1810
- msgid "Categories Options"
1811
- msgstr "Kategorien-Optionen"
1812
-
1813
- #: includes/class-wcj-sku.php:379
1814
- msgid "More Options"
1815
- msgstr "Mehr Optionen"
1816
-
1817
- #: includes/class-wcj-sku.php:384
1818
- msgid "Automatically Generate SKU for New Products"
1819
- msgstr "Automatische Erzeugung von SKU für neue Produkte"
1820
-
1821
- #: includes/class-wcj-sku.php:392
1822
- msgid "Allow Duplicate SKUs"
1823
- msgstr "SK-Duplikate zulassen"
1824
-
1825
- #: includes/class-wcj-sku.php:399
1826
- msgid "Add SKU to Customer Emails"
1827
- msgstr "Füge den Kunden-E-Mails SKU hinzu"
1828
-
1829
- #: includes/class-wcj-sku.php:412
1830
- msgid "When enabled - all new products will be given (autogenerated) SKU."
1831
- msgstr ""
1832
- "Wenn aktiviert - bekommen alle neuen Produkte eine (autogenerierte) SKU."
1833
-
1834
- #: includes/class-wcj-wholesale-price.php:252
1835
- msgid "Price directly"
1836
- msgstr "Preis direkt"
1837
-
1838
- #: includes/class-wcj-wholesale-price.php:412
1839
- msgid "Replaced values: %old_price%, %price%, %discount_value%."
1840
- msgstr "Ersetzte Werte: %old_price%, %price%, %discount_value%."
1841
-
1842
- #: includes/currencies/wcj-currencies.php:14
1843
- msgid "United Arab Emirates Dirham"
1844
- msgstr "United Arab Emirates Dirham"
1845
-
1846
- #: includes/currencies/wcj-currencies.php:15
1847
- msgid "Afghan afghani"
1848
- msgstr "Afghan afghani"
1849
-
1850
- #: includes/currencies/wcj-currencies.php:16
1851
- msgid "Albanian lek"
1852
- msgstr "Albanian lek"
1853
-
1854
- #: includes/currencies/wcj-currencies.php:17
1855
- msgid "Armenian dram"
1856
- msgstr "Armenian dram"
1857
-
1858
- #: includes/currencies/wcj-currencies.php:18
1859
- msgid "Netherlands Antillean gulden"
1860
- msgstr "Netherlands Antillean gulden"
1861
-
1862
- #: includes/currencies/wcj-currencies.php:19
1863
- msgid "Angolan kwanza"
1864
- msgstr "Angolan kwanza"
1865
-
1866
- #: includes/currencies/wcj-currencies.php:20
1867
- msgid "Argentine Peso"
1868
- msgstr "Argentine Peso"
1869
-
1870
- #: includes/currencies/wcj-currencies.php:21
1871
- msgid "Australian Dollars"
1872
- msgstr "Australian Dollars"
1873
-
1874
- #: includes/currencies/wcj-currencies.php:22
1875
- msgid "Aruban florin"
1876
- msgstr "Aruban florin"
1877
-
1878
- #: includes/currencies/wcj-currencies.php:23
1879
- msgid "Azerbaijani manat"
1880
- msgstr "Azerbaijani manat"
1881
-
1882
- #: includes/currencies/wcj-currencies.php:24
1883
- msgid "Bosnia and Herzegovina konvertibilna marka"
1884
- msgstr "Bosnia and Herzegovina konvertibilna marka"
1885
-
1886
- #: includes/currencies/wcj-currencies.php:25
1887
- msgid "Barbadian dollar"
1888
- msgstr "Barbadian dollar"
1889
-
1890
- #: includes/currencies/wcj-currencies.php:26
1891
- msgid "Bangladeshi Taka"
1892
- msgstr "Bangladeshi Taka"
1893
-
1894
- #: includes/currencies/wcj-currencies.php:27
1895
- msgid "Bulgarian Lev"
1896
- msgstr "Bulgarian Lev"
1897
-
1898
- #: includes/currencies/wcj-currencies.php:28
1899
- msgid "Bahraini dinar"
1900
- msgstr "Bahraini dinar"
1901
-
1902
- #: includes/currencies/wcj-currencies.php:29
1903
- msgid "Burundi franc"
1904
- msgstr "Burundi franc"
1905
-
1906
- #: includes/currencies/wcj-currencies.php:30
1907
- msgid "Belarusian ruble"
1908
- msgstr "Belarusian ruble"
1909
-
1910
- #: includes/currencies/wcj-currencies.php:31
1911
- msgid "Brunei dollar"
1912
- msgstr "Brunei dollar"
1913
-
1914
- #: includes/currencies/wcj-currencies.php:32
1915
- msgid "Bolivian boliviano"
1916
- msgstr "Bolivian boliviano"
1917
-
1918
- #: includes/currencies/wcj-currencies.php:33
1919
- msgid "Brazilian Real"
1920
- msgstr "Brazilian Real"
1921
-
1922
- #: includes/currencies/wcj-currencies.php:34
1923
- msgid "Bahamian dollar"
1924
- msgstr "Bahamian dollar"
1925
-
1926
- #: includes/currencies/wcj-currencies.php:35
1927
- msgid "Bhutanese ngultrum"
1928
- msgstr "Bhutanese ngultrum"
1929
-
1930
- #: includes/currencies/wcj-currencies.php:36
1931
- msgid "Botswana pula"
1932
- msgstr "Botswana pula"
1933
-
1934
- #: includes/currencies/wcj-currencies.php:37
1935
- msgid "Belize dollar"
1936
- msgstr "Belize dollar"
1937
-
1938
- #: includes/currencies/wcj-currencies.php:38
1939
- msgid "Canadian Dollars"
1940
- msgstr "Canadian Dollars"
1941
-
1942
- #: includes/currencies/wcj-currencies.php:39
1943
- msgid "Congolese franc"
1944
- msgstr "Congolese franc"
1945
-
1946
- #: includes/currencies/wcj-currencies.php:40
1947
- msgid "Swiss Franc"
1948
- msgstr "Swiss Franc"
1949
-
1950
- #: includes/currencies/wcj-currencies.php:41
1951
- msgid "Chilean Peso"
1952
- msgstr "Chilean Peso"
1953
-
1954
- #: includes/currencies/wcj-currencies.php:42
1955
- msgid "Chinese Yuan"
1956
- msgstr "Chinese Yuan"
1957
-
1958
- #: includes/currencies/wcj-currencies.php:43
1959
- msgid "Colombian Peso"
1960
- msgstr "Colombian Peso"
1961
-
1962
- #: includes/currencies/wcj-currencies.php:44
1963
- msgid "Costa Rican colon"
1964
- msgstr "Costa Rican colon"
1965
-
1966
- #: includes/currencies/wcj-currencies.php:45
1967
- msgid "Cuban peso"
1968
- msgstr "Cuban peso"
1969
-
1970
- #: includes/currencies/wcj-currencies.php:46
1971
- msgid "Cape Verdean escudo"
1972
- msgstr "Cape Verdean escudo"
1973
-
1974
- #: includes/currencies/wcj-currencies.php:47
1975
- msgid "Czech Koruna"
1976
- msgstr "Czech Koruna"
1977
-
1978
- #: includes/currencies/wcj-currencies.php:48
1979
- msgid "Djiboutian franc"
1980
- msgstr "Djiboutian franc"
1981
-
1982
- #: includes/currencies/wcj-currencies.php:49
1983
- msgid "Danish Krone"
1984
- msgstr "Danish Krone"
1985
-
1986
- #: includes/currencies/wcj-currencies.php:50
1987
- msgid "Dominican Peso"
1988
- msgstr "Dominican Peso"
1989
-
1990
- #: includes/currencies/wcj-currencies.php:51
1991
- msgid "Algerian dinar"
1992
- msgstr "Algerian dinar"
1993
-
1994
- #: includes/currencies/wcj-currencies.php:52
1995
- msgid "Estonian kroon"
1996
- msgstr "Estonian kroon"
1997
-
1998
- #: includes/currencies/wcj-currencies.php:53
1999
- msgid "Egyptian Pound"
2000
- msgstr "Egyptian Pound"
2001
-
2002
- #: includes/currencies/wcj-currencies.php:54
2003
- msgid "Eritrean nakfa"
2004
- msgstr "Eritrean nakfa"
2005
-
2006
- #: includes/currencies/wcj-currencies.php:55
2007
- msgid "Ethiopian birr"
2008
- msgstr "Ethiopian birr"
2009
-
2010
- #: includes/currencies/wcj-currencies.php:56
2011
- msgid "Euros"
2012
- msgstr "Euros"
2013
-
2014
- #: includes/currencies/wcj-currencies.php:57
2015
- msgid "Fijian dollar"
2016
- msgstr "Fijian dollar"
2017
-
2018
- #: includes/currencies/wcj-currencies.php:58
2019
- msgid "Falkland Islands pound"
2020
- msgstr "Falkland Islands pound"
2021
-
2022
- #: includes/currencies/wcj-currencies.php:59
2023
- msgid "Pounds Sterling"
2024
- msgstr "Pounds Sterling"
2025
-
2026
- #: includes/currencies/wcj-currencies.php:60
2027
- msgid "Georgian lari"
2028
- msgstr "Georgian lari"
2029
-
2030
- #: includes/currencies/wcj-currencies.php:61
2031
- msgid "Ghanaian cedi"
2032
- msgstr "Ghanaian cedi"
2033
-
2034
- #: includes/currencies/wcj-currencies.php:62
2035
- msgid "Gibraltar pound"
2036
- msgstr "Gibraltar pound"
2037
-
2038
- #: includes/currencies/wcj-currencies.php:171
2039
- msgid "Special Drawing Rights"
2040
- msgstr "Sonderziehungsrechte"
2041
-
2042
- #: includes/emails/class-wc-email-wcj-custom.php:255
2043
- msgid "Order status %s to %s"
2044
- msgstr "Bestellstatus %s to %s"
2045
-
2046
- #: includes/emails/class-wc-email-wcj-custom.php:284
2047
- msgid "Low stock notification"
2048
- msgstr "Meldung Niedriger Bestand"
2049
-
2050
- #: includes/emails/class-wc-email-wcj-custom.php:285
2051
- msgid "No stock notification"
2052
- msgstr "Meldung Kein Bestand"
2053
-
2054
- #: includes/emails/class-wc-email-wcj-custom.php:286
2055
- msgid "Product on backorder notification"
2056
- msgstr "Meldung bei Lieferrückstand"
2057
-
2058
- #: includes/emails/class-wc-email-wcj-custom.php:287
2059
- msgid "Created customer notification"
2060
- msgstr "Kundenmeldung erstellt"
2061
-
2062
- #: includes/emails/class-wc-email-wcj-custom.php:304
2063
- msgid ""
2064
- "This controls the email subject line. Leave blank to use the default subject:"
2065
- " <code>%s</code>."
2066
- msgstr ""
2067
- "Dies steuert die E-Mail-Betreffzeile. Leer lassen, um den Standardbetreff zu "
2068
- "verwenden: <code>%s</code>."
2069
-
2070
- #: includes/emails/class-wc-email-wcj-custom.php:309
2071
- msgid "Email Heading"
2072
- msgstr "Email-Überschrift"
2073
-
2074
- #: includes/emails/class-wc-email-wcj-custom.php:311
2075
- msgid ""
2076
- "This controls the main heading contained within the email notification. "
2077
- "Leave blank to use the default heading: <code>%s</code>."
2078
- msgstr ""
2079
- "Dies steuert die Hauptüberschrift, die in der E-Mail-Benachrichtigung "
2080
- "enthalten ist. Leer lassen, um die Standardüberschrift zu verwenden: <code>"
2081
- "%s</code>."
2082
-
2083
- #: includes/emails/class-wc-email-wcj-custom.php:316
2084
- msgid "Email type"
2085
- msgstr "Email-Typ"
2086
-
2087
- #: includes/emails/class-wc-email-wcj-custom.php:318
2088
- msgid "Choose which format of email to send."
2089
- msgstr "Wähle aus, in welchem Format die E-Mail zu senden ist."
2090
-
2091
- #: includes/emails/class-wc-email-wcj-custom.php:324
2092
- msgid "HTML template"
2093
- msgstr "HTML-Template"
2094
-
2095
- #: includes/emails/class-wc-email-wcj-custom.php:326
2096
- #: includes/emails/class-wc-email-wcj-custom.php:335
2097
- msgid "You can use shortcodes here. E.g. Booster's order shortcodes."
2098
- msgstr ""
2099
- "Hier kannst du Shortcodes verwenden, z.B. Booster's Bestell-Shortcodes."
2100
-
2101
- #: includes/export/class-wcj-fields-helper.php:35
2102
- msgid "Customer Nr."
2103
- msgstr "Kundennummer"
2104
-
2105
- #: includes/functions/wcj-invoicing-functions.php:51
2106
- msgid "Custom Document"
2107
- msgstr "Benutzerdefiniertes Dokument"
2108
-
2109
- #: includes/functions/wcj-invoicing-functions.php:52
2110
- msgid "Custom Documents"
2111
- msgstr "Benutzerdefinierte Dokumente"
2112
-
2113
- #: includes/gateways/class-wc-gateway-wcj-custom.php:63
2114
- msgid "Enable Custom Payment"
2115
- msgstr "Benutzerdefinierte Zahlung aktivieren"
2116
-
2117
- #: includes/gateways/class-wc-gateway-wcj-custom.php:71
2118
- msgid "Custom Payment"
2119
- msgstr "Benutzerdefinierte Zahlung"
2120
-
2121
- #: includes/gateways/class-wc-gateway-wcj-custom.php:78
2122
- msgid "Payment method description that the customer will see on your checkout."
2123
- msgstr ""
2124
- "Zahlungsmethodenbeschreibung, die der Kunde bei Ihrer Kasse sehen wird."
2125
-
2126
- #: includes/gateways/class-wc-gateway-wcj-custom.php:80
2127
- msgid "Custom Payment Description."
2128
- msgstr "Benutzerdefinierte Zahlungsbeschreibung."
2129
-
2130
- #: includes/gateways/class-wc-gateway-wcj-custom.php:112
2131
- msgid ""
2132
- "If you want to set minimum order amount (excluding fees) to show this "
2133
- "gateway on frontend, enter a number here. Set to 0 to disable."
2134
- msgstr ""
2135
- "Wenn Du den Mindestbestellbetrag (ohne Gebühren) festlegen möchtest, um "
2136
- "dieses Gateway im Frontend anzuzeigen, gib hier eine Nummer ein. Auf 0 "
2137
- "setzen, um zu deaktivieren."
2138
-
2139
- #: includes/gateways/class-wc-gateway-wcj-custom.php:155
2140
- msgid "Send to Customer"
2141
- msgstr "An den Kunden senden"
2142
-
2143
- #: includes/gateways/class-wc-gateway-wcj-custom.php:156
2144
- msgid ""
2145
- "This may help if you are using pending or custom default status and not "
2146
- "getting new order emails."
2147
- msgstr ""
2148
- "Dies kann helfen, wenn Du mit ausstehenden oder benutzerdefinierten Standard-"
2149
- "Status nutzt und keine neuen Bestell-E-Mails erhälst."
2150
-
2151
- #: includes/gateways/class-wc-gateway-wcj-custom.php:162
2152
- msgid "Custom Return URL (Thank You Page)"
2153
- msgstr "Benutzerdefinierte Rückkehr-URL (Danke-Seite)"
2154
-
2155
- #: includes/gateways/class-wc-gateway-wcj-custom.php:354
2156
- msgid "Booster for WooCommerce: Custom Payment Gateway"
2157
- msgstr "Booster für WooCommerce: Benutzerdefiniertes Zahlungs-Gateway"
2158
-
2159
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:123
2160
- msgid "Customer - On-Hold Order"
2161
- msgstr "Kunde - On-Hold-Bestellung"
2162
-
2163
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:127
2164
- msgid "Customer - Note"
2165
- msgstr "Kunden - Hinweis"
2166
-
2167
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:128
2168
- msgid "Customer - New Account"
2169
- msgstr "Kunde - Neues Konto"
2170
-
2171
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:129
2172
- msgid "Customer - Reset Password"
2173
- msgstr "Kunde - Passwort zurücksetzen"
2174
-
2175
- #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:79
2176
- msgid "Booster: Custom Add to Cart"
2177
- msgstr "Booster: Benutzerdefiniert dem Warenkorb hinzufügen"
2178
-
2179
- #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:90
2180
- msgid "Single product view"
2181
- msgstr "Einzelproduktansicht"
2182
-
2183
- #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:91
2184
- msgid "Product category (archive) view"
2185
- msgstr "Produktkategorie (Archiv)-Ansicht"
2186
-
2187
- #: includes/admin/class-wc-settings-jetpack.php:26
2188
- #: includes/admin/class-wc-settings-jetpack.php:358
2189
- #: includes/class-wcj-checkout-files-upload.php:140
2190
- #: includes/class-wcj-payment-gateways.php:55
2191
- #: includes/classes/class-wcj-module.php:174
2192
- #: includes/classes/class-wcj-module.php:363
2193
- msgid "Booster"
2194
- msgstr "Booster"
2195
-
2196
- #: includes/admin/class-wc-settings-jetpack.php:150
2197
- msgid "Save changes"
2198
- msgstr "Änderungen speichern"
2199
-
2200
- #: includes/admin/class-wc-settings-jetpack.php:208
2201
- msgid "Alphabetically"
2202
- msgstr "Alphabetisch"
2203
-
2204
- #: includes/admin/class-wc-settings-jetpack.php:209
2205
- msgid "By Category"
2206
- msgstr "Nach Kategorie"
2207
-
2208
- #: includes/admin/class-wc-settings-jetpack.php:210
2209
- msgid "Active"
2210
- msgstr "Aktiv"
2211
-
2212
- #: includes/admin/class-wc-settings-jetpack.php:211
2213
- msgid "Manage Settings"
2214
- msgstr "Einstellungen verwalten"
2215
-
2216
- #: includes/admin/class-wc-settings-jetpack.php:253
2217
- #: includes/admin/wcj-modules-cats.php:15
2218
- msgid "Dashboard"
2219
- msgstr "Übersicht"
2220
-
2221
- #: includes/admin/class-wc-settings-jetpack.php:283
2222
- #: includes/class-wcj-product-custom-info.php:26
2223
- msgid "Product Info"
2224
- msgstr "Produktinfo"
2225
-
2226
- #: includes/admin/class-wc-settings-jetpack.php:289
2227
- msgid ""
2228
- "Please note that current <em>%s</em> module is deprecated and will be "
2229
- "removed in future updates. Please use <em>%s</em> module instead."
2230
- msgstr ""
2231
- "Bitte beachte, dass das aktuelle Modul <em>%s</em> veraltet ist und in "
2232
- "zukünftigen Updates entfernt wird. Verwende stattdessen das Modul <em>%s</em>"
2233
- "."
2234
-
2235
- #: includes/admin/class-wc-settings-jetpack.php:354
2236
- msgid "WooCommerce"
2237
- msgstr "WooCommerce"
2238
-
2239
- #: includes/admin/class-wc-settings-jetpack.php:356
2240
- #: includes/admin/class-wc-settings-jetpack.php:495 woocommerce-jetpack.php:398
2241
- msgid "Settings"
2242
- msgstr "Einstellungen"
2243
-
2244
- #: includes/admin/class-wc-settings-jetpack.php:402
2245
- msgid ""
2246
- "This section lets you export, import or reset all Booster's modules settings."
2247
- msgstr ""
2248
- "Dieser Abschnitt lässt Dich exportieren, importieren und rücksetzen aller "
2249
- "Booster-Moduleinstellungen."
2250
-
2251
- #: includes/admin/class-wc-settings-jetpack.php:420
2252
- #: includes/class-wcj-export-import.php:28
2253
- msgid "Export"
2254
- msgstr "Export"
2255
-
2256
- #: includes/admin/class-wc-settings-jetpack.php:421
2257
- msgid "Import"
2258
- msgstr "Import"
2259
-
2260
- #: includes/admin/class-wc-settings-jetpack.php:423
2261
- msgid ""
2262
- "This will reset settings to defaults for all Booster modules. Are you sure?"
2263
- msgstr ""
2264
- "Dies wird die Einstellungen für alle Booster-Module auf die "
2265
- "Grundeinstellungen rücksetzen. Bist Du sicher?"
2266
-
2267
- #: includes/admin/class-wc-settings-jetpack.php:423
2268
- msgid "Reset"
2269
- msgstr "Rücksetzung"
2270
-
2271
- #: includes/admin/class-wc-settings-jetpack.php:426
2272
- msgid "Version"
2273
- msgstr "Version"
2274
-
2275
- #: includes/admin/class-wc-settings-jetpack.php:450
2276
- #: includes/admin/class-wc-settings-jetpack.php:457
2277
- msgid "Select All"
2278
- msgstr "Alle auswählen"
2279
-
2280
- #: includes/admin/class-wc-settings-jetpack.php:451
2281
- #: includes/admin/class-wc-settings-jetpack.php:458
2282
- #: includes/admin/class-wcj-tools.php:74
2283
- msgid "Module"
2284
- msgstr "Modul"
2285
-
2286
- #: includes/admin/class-wc-settings-jetpack.php:452
2287
- #: includes/admin/class-wc-settings-jetpack.php:459
2288
- #: includes/admin/class-wcj-tools.php:75
2289
- #: includes/class-wcj-eu-vat-number.php:377
2290
- #: includes/class-wcj-product-by-user.php:202
2291
- #: includes/export/class-wcj-fields-helper.php:293
2292
- #: includes/gateways/class-wc-gateway-wcj-custom.php:76
2293
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:151
2294
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:266
2295
- msgid "Description"
2296
- msgstr "Beschreibung"
2297
-
2298
- #: includes/admin/class-wc-settings-jetpack.php:497
2299
- #: includes/classes/class-wcj-module.php:497
2300
- msgid "Documentation"
2301
- msgstr "Dokumentation"
2302
-
2303
- #: includes/admin/class-wc-settings-jetpack.php:512
2304
- msgid "No active modules found."
2305
- msgstr "Keine aktiven Module gefunden."
2306
-
2307
- #: includes/admin/class-wc-settings-jetpack.php:515
2308
- msgid "Total Modules:"
2309
- msgstr "Module insgesamt:"
2310
-
2311
- #: includes/admin/class-wc-settings-jetpack.php:544
2312
- msgid "Booster for WooCommerce - Dashboard"
2313
- msgstr "Booster for WooCommerce - Übersicht"
2314
-
2315
- #: includes/admin/class-wc-settings-jetpack.php:546
2316
- msgid ""
2317
- "This dashboard lets you enable/disable any Booster's module. Each checkbox "
2318
- "comes with short module's description. Please visit <a href=\"http://booster."
2319
- "io\" target=\"_blank\">http://booster.io</a> for detailed info on each "
2320
- "feature."
2321
- msgstr ""
2322
- "In dieser Übersicht kannst Du jedes Booster-Modul aktivieren/deaktivieren. "
2323
- "Jedes Kontrollkästchen enthält eine kurze Modul-Beschreibung. Besuche bitte "
2324
- "<a href=\"http://booster.io\" target=\"_blank\">http://booster.io</a> für "
2325
- "detaillierte Informationen zu jeder Funktion."
2326
-
2327
- #: includes/admin/class-wcj-tools.php:34
2328
- msgid "Booster for WooCommerce Tools"
2329
- msgstr "Booster for WooCommerce Werkzeuge"
2330
-
2331
- #: includes/admin/class-wcj-tools.php:35
2332
- msgid "Booster Tools"
2333
- msgstr "Booster Werkzeuge"
2334
-
2335
- #: includes/admin/class-wcj-tools.php:53
2336
- msgid "Tools Dashboard"
2337
- msgstr "Werkzeug-Übersicht"
2338
-
2339
- #: includes/admin/class-wcj-tools.php:67
2340
- msgid "Booster for WooCommerce Tools - Dashboard"
2341
- msgstr "Booster for WooCommerce Werkzeug - Übersicht"
2342
-
2343
- #: includes/admin/class-wcj-tools.php:68
2344
- msgid ""
2345
- "This dashboard lets you check statuses and short descriptions of all "
2346
- "available Booster for WooCommerce tools. Tools can be enabled through "
2347
- "WooCommerce > Settings > Booster. Enabled tools will appear in the tabs menu "
2348
- "above."
2349
- msgstr ""
2350
- "In dieser Übersicht kannst Du den Status und eine kurze Beschreibung aller "
2351
- "verfügbaren Booster for Woocommerce Werkzeuge. Werkzeuge können über "
2352
- "WooCommerce > Einstellungen > Booster aktiviert werden. Aktivierte Werkzeuge "
2353
- "erscheinen oben im Registerkarten-Menü."
2354
-
2355
- #: includes/admin/class-wcj-tools.php:73
2356
- msgid "Tool"
2357
- msgstr "Werkzeug"
2358
-
2359
- #: includes/admin/class-wcj-tools.php:76
2360
- #: includes/class-wcj-product-by-user.php:156
2361
- #: includes/export/class-wcj-fields-helper.php:294
2362
- msgid "Status"
2363
- msgstr "Status"
2364
-
2365
- #: includes/admin/wcj-modules-cats.php:26
2366
- msgid "Prices & Currencies"
2367
- msgstr "Preise & Währungen"
2368
-
2369
- #: includes/admin/wcj-modules-cats.php:47
2370
- msgid "Button & Price Labels"
2371
- msgstr "Button- & Preisetiketten"
2372
-
2373
- #: includes/admin/wcj-modules-cats.php:59
2374
- #: includes/class-wcj-product-by-user.php:57
2375
- #: includes/class-wcj-product-by-user.php:93
2376
- msgid "Products"
2377
- msgstr "Produkte"
2378
-
2379
- #: includes/admin/wcj-modules-cats.php:82
2380
- msgid "Cart & Checkout"
2381
- msgstr "Warenkorb & Kasse"
2382
-
2383
- #: includes/admin/wcj-modules-cats.php:96
2384
- #: includes/class-wcj-payment-gateways-by-country.php:88
2385
- #: includes/class-wcj-payment-gateways-by-user-role.php:81
2386
- #: includes/class-wcj-payment-gateways-min-max.php:90
2387
- msgid "Payment Gateways"
2388
- msgstr "Zahlungsanbieter"
2389
-
2390
- #: includes/admin/wcj-modules-cats.php:111
2391
- msgid "Shipping & Orders"
2392
- msgstr "Versand & Bestellungen"
2393
-
2394
- #: includes/admin/wcj-modules-cats.php:126
2395
- msgid "PDF Invoicing & Packing Slips"
2396
- msgstr "PDF Rechnungen & Packzettel"
2397
-
2398
- #: includes/admin/wcj-modules-cats.php:142
2399
- msgid "Emails & Misc."
2400
- msgstr "Emails & Sonstiges"
2401
-
2402
- #: includes/class-wcj-add-to-cart.php:25
2403
- msgid "Add to Cart Labels"
2404
- msgstr "Dem Warenkorb hinzufügen Beschriftungen"
2405
-
2406
- #: includes/class-wcj-add-to-cart.php:26
2407
- msgid ""
2408
- "Change text for Add to Cart button by WooCommerce product type, by product "
2409
- "category or for individual products."
2410
- msgstr ""
2411
- "Ändern des Textes für Dem Warenkorb hinzufügen nach WooCommerce Produktart, "
2412
- "nach Produktkategorie oder für individuelle Produkte."
2413
-
2414
- #: includes/class-wcj-add-to-cart.php:44
2415
- msgid "Per Product Type Options"
2416
- msgstr "Pro Produkt Optionsarten"
2417
-
2418
- #: includes/class-wcj-add-to-cart.php:47 includes/class-wcj-add-to-cart.php:186
2419
- msgid "Per Product Labels"
2420
- msgstr "Pro Produkt Beschriftungen"
2421
-
2422
- #: includes/class-wcj-add-to-cart.php:48 includes/class-wcj-add-to-cart.php:187
2423
- #: includes/class-wcj-add-to-cart.php:212 includes/class-wcj-general.php:482
2424
- #: includes/class-wcj-product-images.php:252
2425
- #: includes/class-wcj-product-images.php:326
2426
- #: includes/class-wcj-shipping-calculator.php:183
2427
- #: includes/class-wcj-shipping.php:266 includes/class-wcj-shipping.php:298
2428
- msgid "Enable Section"
2429
- msgstr "Abschnitt aktivieren"
2430
-
2431
- #: includes/class-wcj-add-to-cart.php:58
2432
- msgid "Simple product"
2433
- msgstr "Einfaches Produkt"
2434
-
2435
- #: includes/class-wcj-add-to-cart.php:63
2436
- msgid "Variable product"
2437
- msgstr "Variables Produkt"
2438
-
2439
- #: includes/class-wcj-add-to-cart.php:68
2440
- msgid "External product"
2441
- msgstr "Externes Produkt"
2442
-
2443
- #: includes/class-wcj-add-to-cart.php:73
2444
- msgid "Grouped product"
2445
- msgstr "Gruppenprodukt"
2446
-
2447
- #: includes/class-wcj-add-to-cart.php:78
2448
- msgid "Other product"
2449
- msgstr "Anderes Produkt"
2450
-
2451
- #: includes/class-wcj-add-to-cart.php:89
2452
- msgid "Single product view."
2453
- msgstr "Einzelproduktansicht"
2454
-
2455
- #: includes/class-wcj-add-to-cart.php:90 includes/class-wcj-add-to-cart.php:101
2456
- #: includes/class-wcj-add-to-cart.php:147
2457
- #: includes/class-wcj-add-to-cart.php:160
2458
- #: includes/class-wcj-payment-gateways-fees.php:151
2459
- msgid "Leave blank to disable."
2460
- msgstr "Leer lassen um zu deaktivieren."
2461
-
2462
- #: includes/class-wcj-add-to-cart.php:90 includes/class-wcj-add-to-cart.php:101
2463
- #: includes/class-wcj-add-to-cart.php:149
2464
- #: includes/class-wcj-add-to-cart.php:162 includes/class-wcj-sorting.php:196
2465
- #: includes/class-wcj-sorting.php:205 includes/class-wcj-sorting.php:214
2466
- #: includes/class-wcj-sorting.php:223 includes/class-wcj-sorting.php:241
2467
- #: includes/class-wcj-sorting.php:250
2468
- msgid "Default: "
2469
- msgstr "Voreinstellung:"
2470
-
2471
- #: includes/class-wcj-add-to-cart.php:100
2472
- msgid "Product category (archive) view."
2473
- msgstr "Produktkategorie (Archiv)-Ansicht"
2474
-
2475
- #: includes/class-wcj-add-to-cart.php:112
2476
- msgid "Products with price set to 0 (i.e. free). Single product view."
2477
- msgstr ""
2478
- "Produkte mit Preis eingestellt auf 0 (d.h. kostenlos). Einzelproduktansicht."
2479
-
2480
- #: includes/class-wcj-add-to-cart.php:113
2481
- #: includes/class-wcj-add-to-cart.php:122
2482
- msgid "Leave blank to disable. Default: Add to cart"
2483
- msgstr ""
2484
- "Leer lassen um zu deaktivieren. Voreinstellung: Dem Warenkorb hinzufügen"
2485
-
2486
- #: includes/class-wcj-add-to-cart.php:115
2487
- #: includes/class-wcj-add-to-cart.php:124
2488
- #: includes/class-wcj-add-to-cart.php:149
2489
- #: includes/class-wcj-add-to-cart.php:150
2490
- #: includes/class-wcj-add-to-cart.php:162
2491
- #: includes/class-wcj-add-to-cart.php:163
2492
- msgid "Add to cart"
2493
- msgstr "Dem Warenkorb hinzufügen"
2494
-
2495
- #: includes/class-wcj-add-to-cart.php:121
2496
- msgid ""
2497
- "Products with price set to 0 (i.e. free). Product category (archive) view."
2498
- msgstr ""
2499
- "Produkte mit Preis eingestellt auf 0 (d.h. kostenlos). Produktkategorie "
2500
- "(Archiv)-Ansicht."
2501
-
2502
- #: includes/class-wcj-add-to-cart.php:131
2503
- msgid "Products with empty price. Product category (archive) view."
2504
- msgstr "Produkte mit leerem Preis. Produktkategorie (Archiv)-Ansicht."
2505
-
2506
- #: includes/class-wcj-add-to-cart.php:132
2507
- msgid "Leave blank to disable. Default: Read More"
2508
- msgstr "Leer lassen um zu deaktivieren. Voreinstellung: Mehr lesen"
2509
-
2510
- #: includes/class-wcj-add-to-cart.php:134
2511
- msgid "Read More"
2512
- msgstr "Erfahre mehr"
2513
-
2514
- #: includes/class-wcj-add-to-cart.php:146
2515
- msgid "Already in cart. Single product view."
2516
- msgstr "Bereits im Warenkorb. Einzelproduktansicht"
2517
-
2518
- #: includes/class-wcj-add-to-cart.php:148
2519
- #: includes/class-wcj-add-to-cart.php:161
2520
- msgid "Try: "
2521
- msgstr "Versuch:"
2522
-
2523
- #: includes/class-wcj-add-to-cart.php:148
2524
- #: includes/class-wcj-add-to-cart.php:161
2525
- msgid "Already in cart - Add Again?"
2526
- msgstr "Bereits im Warenkorb. Nochmal hinzufügen?"
2527
-
2528
- #: includes/class-wcj-add-to-cart.php:159
2529
- msgid "Already in cart. Product category (archive) view."
2530
- msgstr "Bereits im Warenkorb. Produktkategorie (Archiv)-Ansicht."
2531
-
2532
- #: includes/class-wcj-add-to-cart.php:180
2533
- #: includes/class-wcj-product-addons.php:528
2534
- msgid "Per Product Options"
2535
- msgstr "Pro Produkt-Optionen"
2536
-
2537
- #: includes/class-wcj-add-to-cart.php:182
2538
- msgid ""
2539
- "This section lets you set Add to Cart button text on per product basis. When "
2540
- "enabled, label for each product can be changed in \"Edit Product\"."
2541
- msgstr ""
2542
- "Dieser Abschnitt lässt Dich Dem Warenkorb hinzufügen Button-Text auf einer "
2543
- "Pro-Produkt-Basis einstellen. Wenn aktiviert, kann die Beschriftung für "
2544
- "jedes Produkt in \"Produkt bearbeiten\" geändert werden."
2545
-
2546
- #: includes/class-wcj-add-to-cart.php:208
2547
- msgid "Per Category Options"
2548
- msgstr "Pro Kategorie-Optionen"
2549
-
2550
- #: includes/class-wcj-add-to-cart.php:208
2551
- msgid ""
2552
- "This sections lets you set Add to Cart button text on per category basis."
2553
- msgstr ""
2554
- "Dieser Abschnitt lässt DIch den Dem Warenkorb hinzufügen Button-Text auf "
2555
- "einer Pro-Kategorie-Basis einstellen."
2556
-
2557
- #: includes/class-wcj-add-to-cart.php:211
2558
- msgid "Per Category Labels"
2559
- msgstr "Pro-Kategorie-Beschriftungen"
2560
-
2561
- #: includes/class-wcj-add-to-cart.php:220
2562
- msgid "Category Groups Number"
2563
- msgstr "Kategorie-Gruppen-Nummer"
2564
-
2565
- #: includes/class-wcj-add-to-cart.php:221
2566
- #: includes/class-wcj-checkout-custom-fields.php:637
2567
- #: includes/class-wcj-product-input-fields.php:179
2568
- #: includes/class-wcj-product-tabs.php:504
2569
- msgid "Click \"Save changes\" after you change this number."
2570
- msgstr "Klicke auf \"Änderungen speichern\" wenn Du diese Nummer änderst."
2571
-
2572
- #: includes/class-wcj-add-to-cart.php:257
2573
- #: includes/class-wcj-price-by-country.php:303
2574
- #: includes/class-wcj-price-by-country.php:314
2575
- #: includes/class-wcj-price-by-country.php:325
2576
- #: includes/class-wcj-price-by-country.php:379
2577
- msgid "Group"
2578
- msgstr "Gruppe"
2579
-
2580
- #: includes/class-wcj-add-to-cart.php:258
2581
- #: includes/class-wcj-admin-tools.php:194
2582
- #: includes/class-wcj-admin-tools.php:201
2583
- #: includes/class-wcj-admin-tools.php:232
2584
- #: includes/class-wcj-admin-tools.php:239
2585
- #: includes/class-wcj-call-for-price.php:159 includes/class-wcj-general.php:343
2586
- #: includes/class-wcj-general.php:391 includes/class-wcj-general.php:407
2587
- #: includes/class-wcj-general.php:465
2588
- #: includes/class-wcj-global-discount.php:244
2589
- #: includes/class-wcj-left-to-free-shipping.php:139
2590
- #: includes/class-wcj-left-to-free-shipping.php:171
2591
- #: includes/class-wcj-left-to-free-shipping.php:209
2592
- #: includes/class-wcj-multicurrency.php:406
2593
- #: includes/class-wcj-multicurrency.php:414
2594
- #: includes/class-wcj-order-numbers.php:210
2595
- #: includes/class-wcj-order-numbers.php:273
2596
- #: includes/class-wcj-order-numbers.php:281 includes/class-wcj-orders.php:394
2597
- #: includes/class-wcj-orders.php:423 includes/class-wcj-orders.php:531
2598
- #: includes/class-wcj-price-by-country.php:185
2599
- #: includes/class-wcj-price-by-country.php:207
2600
- #: includes/class-wcj-price-by-country.php:216
2601
- #: includes/class-wcj-price-by-country.php:226
2602
- #: includes/class-wcj-price-by-user-role.php:376
2603
- #: includes/class-wcj-price-by-user-role.php:393
2604
- #: includes/class-wcj-price-labels.php:51
2605
- #: includes/class-wcj-price-labels.php:755
2606
- #: includes/class-wcj-product-add-to-cart.php:248
2607
- #: includes/class-wcj-product-add-to-cart.php:348
2608
- #: includes/class-wcj-product-add-to-cart.php:374
2609
- #: includes/class-wcj-product-add-to-cart.php:390
2610
- #: includes/class-wcj-product-add-to-cart.php:432
2611
- #: includes/class-wcj-product-add-to-cart.php:449
2612
- #: includes/class-wcj-product-add-to-cart.php:466
2613
- #: includes/class-wcj-product-addons.php:456
2614
- #: includes/class-wcj-product-addons.php:534
2615
- #: includes/class-wcj-product-addons.php:553
2616
- #: includes/class-wcj-product-addons.php:577
2617
- #: includes/class-wcj-product-addons.php:648
2618
- #: includes/class-wcj-product-by-user.php:275
2619
- #: includes/class-wcj-product-info.php:256
2620
- #: includes/class-wcj-product-info.php:351
2621
- #: includes/class-wcj-product-info.php:384
2622
- #: includes/class-wcj-product-input-fields.php:133
2623
- #: includes/class-wcj-product-input-fields.php:170
2624
- #: includes/class-wcj-product-input-fields.php:283
2625
- #: includes/class-wcj-product-listings.php:448
2626
- #: includes/class-wcj-product-tabs.php:678
2627
- #: includes/class-wcj-product-tabs.php:686
2628
- #: includes/class-wcj-products-xml.php:237
2629
- #: includes/class-wcj-purchase-data.php:279
2630
- #: includes/class-wcj-purchase-data.php:286
2631
- #: includes/class-wcj-purchase-data.php:293
2632
- #: includes/class-wcj-purchase-data.php:360
2633
- #: includes/class-wcj-purchase-data.php:367
2634
- #: includes/class-wcj-purchase-data.php:374
2635
- #: includes/class-wcj-shipping-calculator.php:134
2636
- #: includes/class-wcj-shipping-calculator.php:141
2637
- #: includes/class-wcj-shipping-calculator.php:148
2638
- #: includes/class-wcj-shipping-calculator.php:155
2639
- #: includes/class-wcj-shipping.php:179 includes/class-wcj-sku.php:385
2640
- #: includes/class-wcj-sku.php:393 includes/class-wcj-sorting.php:189
2641
- #: includes/class-wcj-wholesale-price.php:384
2642
- #: includes/class-wcj-wholesale-price.php:391
2643
- #: includes/class-wcj-wholesale-price.php:398
2644
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:379
2645
- msgid "Enable"
2646
- msgstr "Aktivieren"
2647
-
2648
- #: includes/class-wcj-add-to-cart.php:274
2649
- #: includes/class-wcj-checkout-custom-fields.php:866
2650
- msgid "categories"
2651
- msgstr "Kategorien"
2652
-
2653
- #: includes/class-wcj-add-to-cart.php:285
2654
- msgid "Button text - single product view"
2655
- msgstr "Button Text - Einzelprodukt-Ansicht"
2656
-
2657
- #: includes/class-wcj-add-to-cart.php:293
2658
- msgid "Button text - product archive (category) view"
2659
- msgstr "Button Text - Produkt-Archiv(Kategorie)-Ansicht"
2660
-
2661
- #: includes/class-wcj-address-formats.php:26
2662
- msgid "Address Formats"
2663
- msgstr "Adressformate"
2664
-
2665
- #: includes/class-wcj-address-formats.php:27
2666
- msgid ""
2667
- "Set address format in WooCommerce orders on per country basis. Force base "
2668
- "country display."
2669
- msgstr ""
2670
- "Stelle das Adressformat in WooCommerce-Bestellungen auf Länderbasis ein. "
2671
- "Erzwinge anzeige der Basis-Länderanzeige."
2672
-
2673
- #: includes/class-wcj-address-formats.php:130
2674
- #: includes/class-wcj-address-formats.php:136
2675
- msgid "Force Base Country Display"
2676
- msgstr "Erzwinge anzeige der Basis-Länderanzeige"
2677
-
2678
- #: includes/class-wcj-address-formats.php:132
2679
- msgid "Force Base Country Display Options."
2680
- msgstr "Erzwinge anzeige der Basis-Länderanzeige-Optionen."
2681
-
2682
- #: includes/class-wcj-address-formats.php:148
2683
- msgid "Address Formats by Country"
2684
- msgstr "Adressformate nach Land"
2685
-
2686
- #: includes/class-wcj-address-formats.php:150
2687
- msgid "Address Formats by Country Options."
2688
- msgstr "Optionen der Adressformate nach Land"
2689
-
2690
- #: includes/class-wcj-admin-tools.php:25 includes/class-wcj-admin-tools.php:32
2691
- msgid "Admin Tools"
2692
- msgstr "Administratorwerkzeuge"
2693
-
2694
- #: includes/class-wcj-admin-tools.php:26
2695
- msgid "Booster for WooCommerce debug and log tools."
2696
- msgstr "Booster for WooCommerce Debug und Protokollwerkzeuge."
2697
-
2698
- #: includes/class-wcj-admin-tools.php:33
2699
- msgid "Log."
2700
- msgstr "Protokoll."
2701
-
2702
- #: includes/class-wcj-admin-tools.php:34
2703
- msgid "Log"
2704
- msgstr "Protokoll"
2705
-
2706
- #: includes/class-wcj-admin-tools.php:45
2707
- msgid "Current PHP memory limit: %s."
2708
- msgstr "Aktuelle PHP-Speichergrenze: %s."
2709
-
2710
- #: includes/class-wcj-admin-tools.php:68
2711
- #: includes/class-wcj-export-import.php:444
2712
- #: includes/class-wcj-export-import.php:512
2713
- msgid "Product Meta"
2714
- msgstr "Produkt-Meta"
2715
-
2716
- #: includes/class-wcj-admin-tools.php:85
2717
- #: includes/class-wcj-export-import.php:374
2718
- #: includes/class-wcj-export-import.php:442
2719
- msgid "Order Meta"
2720
- msgstr "Bestell-Meta"
2721
-
2722
- #: includes/class-wcj-admin-tools.php:118
2723
- msgid "Order Items Meta"
2724
- msgstr "Bestellgegenstand-Meta"
2725
-
2726
- #: includes/class-wcj-admin-tools.php:135
2727
- msgid "Log deleted successfully."
2728
- msgstr "Protokoll erfolgreich gelöscht."
2729
-
2730
- #: includes/class-wcj-admin-tools.php:140
2731
- msgid "Delete Log"
2732
- msgstr "Protokoll löschen"
2733
-
2734
- #: includes/class-wcj-admin-tools.php:175
2735
- msgid "NOT DEFINED"
2736
- msgstr "NICHT DEFINIERT"
2737
-
2738
- #: includes/class-wcj-admin-tools.php:188
2739
- msgid "Admin Tools Options"
2740
- msgstr "Administrator Werkzeugoptionen"
2741
-
2742
- #: includes/class-wcj-admin-tools.php:193
2743
- msgid "Logging"
2744
- msgstr "Protokolliere"
2745
-
2746
- #: includes/class-wcj-admin-tools.php:200
2747
- msgid "Debug"
2748
- msgstr "Debug"
2749
-
2750
- #: includes/class-wcj-admin-tools.php:207
2751
- msgid "PHP Memory Limit"
2752
- msgstr "PHP Speicher-Limit"
2753
-
2754
- #: includes/class-wcj-admin-tools.php:208
2755
- msgid "megabytes."
2756
- msgstr "Megabytes."
2757
-
2758
- #: includes/class-wcj-admin-tools.php:209
2759
- msgid "Set zero to disable."
2760
- msgstr "Auf Null setzen, um zu deaktivieren."
2761
-
2762
- #: includes/class-wcj-admin-tools.php:224
2763
- msgid "System Info"
2764
- msgstr "System-Info"
2765
-
2766
- #: includes/class-wcj-admin-tools.php:231
2767
- msgid "Show Order Meta"
2768
- msgstr "Zeige Bestell-Meta"
2769
-
2770
- #: includes/class-wcj-admin-tools.php:238
2771
- msgid "Show Product Meta"
2772
- msgstr "Zeige Produkt-Meta"
2773
-
2774
- #: includes/class-wcj-call-for-price.php:25
2775
- msgid "Call for Price"
2776
- msgstr "Preisanfrage"
2777
-
2778
- #: includes/class-wcj-call-for-price.php:26
2779
- msgid ""
2780
- "Create any custom price label for all WooCommerce products with empty price."
2781
- msgstr ""
2782
- "Erstelle irgendeine benutzerdefinierte Beschriftung für alle WooCommerce-"
2783
- "Produkte mit leerem Preis."
2784
-
2785
- #: includes/class-wcj-call-for-price.php:101
2786
- msgid "Call for Price Options"
2787
- msgstr "Preisanfrage-Optionen"
2788
-
2789
- #: includes/class-wcj-call-for-price.php:103
2790
- msgid ""
2791
- "Leave price empty when adding or editing products. Then set the options here."
2792
- msgstr ""
2793
- "Preis leer lassen wenn Produkte hinzugefügt oder bearbeitet werden. Dann "
2794
- "stelle die Optionen hier ein."
2795
-
2796
- #: includes/class-wcj-call-for-price.php:107
2797
- msgid "Label to Show on Single"
2798
- msgstr "Anzuzeigende Beschriftung auf Einzelprodukt"
2799
-
2800
- #: includes/class-wcj-call-for-price.php:108
2801
- #: includes/class-wcj-call-for-price.php:119
2802
- #: includes/class-wcj-call-for-price.php:130
2803
- #: includes/class-wcj-call-for-price.php:141
2804
- msgid "This sets the html to output on empty price. Leave blank to disable."
2805
- msgstr ""
2806
- "Dies setzt die HTML-Ausgabe auf leeren Preis. Leer lassen, um zu "
2807
- "deaktivieren."
2808
-
2809
- #: includes/class-wcj-call-for-price.php:118
2810
- msgid "Label to Show on Archives"
2811
- msgstr "Anzuzeigende Beschriftung in Archiven"
2812
-
2813
- #: includes/class-wcj-call-for-price.php:129
2814
- msgid "Label to Show on Homepage"
2815
- msgstr "Anzuzeigende Beschriftung auf Startseite"
2816
-
2817
- #: includes/class-wcj-call-for-price.php:140
2818
- msgid "Label to Show on Related"
2819
- msgstr "Anzuzeigende Beschriftung auf Ähnlichen"
2820
-
2821
- #: includes/class-wcj-call-for-price.php:151
2822
- msgid "Hide Sale! Tag"
2823
- msgstr "Verstecke Sale! Tag"
2824
-
2825
- #: includes/class-wcj-call-for-price.php:152
2826
- msgid "Hide the tag"
2827
- msgstr "Das Etikett (tag) ausblenden"
2828
-
2829
- #: includes/class-wcj-call-for-price.php:158
2830
- msgid "Make All Products Call for Price"
2831
- msgstr "Setze alle Produkte auf Preisanfrage"
2832
-
2833
- #: includes/class-wcj-call-for-price.php:160
2834
- msgid ""
2835
- "Enable this to make all products (except variable) prices empty. When "
2836
- "checkbox disabled, all prices go back to normal."
2837
- msgstr ""
2838
- "Aktiviere dies, um alle Produktpreise (außer Variable) zu entfernen. Wenn "
2839
- "das Kontrollkästchen deaktiviert ist, gehen alle Preise auf Normal zurück."
2840
-
2841
- #: includes/class-wcj-cart.php:25
2842
- msgid "Cart"
2843
- msgstr "Warenkorb"
2844
-
2845
- #: includes/class-wcj-cart.php:26
2846
- msgid "Add custom info to WooCommerce cart page."
2847
- msgstr "Addiere benutzerdefinierte Info zur WooCommerce Warenkorbseite."
2848
-
2849
- #: includes/class-wcj-cart.php:31
2850
- msgid ""
2851
- "This feature allows you to add a final checkpoint for your customers before "
2852
- "they proceed to payment."
2853
- msgstr ""
2854
- "Mit dieser Funktion kannst Du einen Endkontrollpunkt für Deine Kunden "
2855
- "hinzufügen, bevor sie zur Zahlung übergehen."
2856
-
2857
- #: includes/class-wcj-cart.php:32
2858
- msgid ""
2859
- "Show custom information at on the cart page using Booster's various "
2860
- "shortcodes and give your customers a seamless cart experience."
2861
- msgstr ""
2862
- "Zeige benutzerdefinierte Informationen auf der Warenkorbseite mit Boosters "
2863
- "verschiedenen Shortcodes an und gib Deinen Kunden ein nahtloses "
2864
- "Kassenerlebnis."
2865
-
2866
- #: includes/class-wcj-cart.php:33
2867
- msgid ""
2868
- "For example, show them the total weight of their items, any additional fees "
2869
- "or taxes, or a confirmation of the address their products are being sent to."
2870
- msgstr ""
2871
- "Zum Beispiel, zeigst Du ihnen das Gesamtgewicht ihrer Artikel, jede "
2872
- "zusätzliche Gebühr oder Steuer, oder eine Bestätigung der Anschrift wohin "
2873
- "die Produkte geschickt werden sollen."
2874
-
2875
- #: includes/class-wcj-cart.php:125
2876
- msgid "Cart Custom Info Blocks"
2877
- msgstr "benutzerdefinierte Warenkorb-Infoblöcke"
2878
-
2879
- #: includes/class-wcj-cart.php:132
2880
- #: includes/class-wcj-checkout-custom-info.php:75
2881
- #: includes/class-wcj-mini-cart.php:80
2882
- #: includes/class-wcj-product-custom-info.php:115
2883
- msgid "Total Blocks"
2884
- msgstr "Gesamtblöcke"
2885
-
2886
- #: includes/class-wcj-cart.php:153
2887
- #: includes/class-wcj-checkout-custom-info.php:90
2888
- #: includes/class-wcj-mini-cart.php:100
2889
- #: includes/class-wcj-product-custom-info.php:130
2890
- msgid "Info Block"
2891
- msgstr "Infoblock"
2892
-
2893
- #: includes/class-wcj-cart.php:159
2894
- #: includes/class-wcj-checkout-custom-info.php:95
2895
- #: includes/class-wcj-left-to-free-shipping.php:146
2896
- #: includes/class-wcj-left-to-free-shipping.php:180
2897
- #: includes/class-wcj-left-to-free-shipping.php:218
2898
- #: includes/class-wcj-mini-cart.php:106
2899
- #: includes/class-wcj-product-custom-info.php:135
2900
- #: includes/class-wcj-product-tabs.php:431
2901
- #: includes/class-wcj-product-tabs.php:557
2902
- msgid "Content"
2903
- msgstr "Inhalt"
2904
-
2905
- #: includes/class-wcj-cart.php:167
2906
- #: includes/class-wcj-checkout-custom-info.php:102
2907
- #: includes/class-wcj-checkout-files-upload.php:641
2908
- #: includes/class-wcj-left-to-free-shipping.php:154
2909
- #: includes/class-wcj-left-to-free-shipping.php:188
2910
- #: includes/class-wcj-left-to-free-shipping.php:226
2911
- #: includes/class-wcj-mini-cart.php:114
2912
- #: includes/class-wcj-product-custom-info.php:142
2913
- #: includes/class-wcj-product-info.php:263
2914
- #: includes/class-wcj-product-info.php:366
2915
- #: includes/class-wcj-product-info.php:399
2916
- #: includes/class-wcj-product-listings.php:471
2917
- msgid "Position"
2918
- msgstr "Stelle"
2919
-
2920
- #: includes/class-wcj-cart.php:176
2921
- #: includes/class-wcj-checkout-custom-info.php:139
2922
- #: includes/class-wcj-mini-cart.php:127
2923
- #: includes/class-wcj-product-custom-info.php:168
2924
- msgid "Position Order (i.e. Priority)"
2925
- msgstr "Positionsreihenfolge (d.h. Priorität)"
2926
-
2927
- #: includes/class-wcj-cart.php:193
2928
- msgid "Cart Items Table Custom Info"
2929
- msgstr "benutzerdefinierte Warenkorb-Artikel Tabellen-Info"
2930
-
2931
- #: includes/class-wcj-cart.php:200
2932
- msgid "Add to Each Item Name"
2933
- msgstr "zu jedem Artikelnamen hinzufügen"
2934
-
2935
- #: includes/class-wcj-cart.php:201
2936
- msgid ""
2937
- "You can use shortcodes here. E.g.: [wcj_product_sku]. Leave blank to disable."
2938
- msgstr ""
2939
- "Du kannst hier Shortcodes verwenden. z.B.: [wcj_product_sku]. Leer lassen, "
2940
- "um zu deaktivieren."
2941
-
2942
- #: includes/class-wcj-checkout-core-fields.php:25
2943
- msgid "Checkout Core Fields"
2944
- msgstr "Kassen-Basisfelder"
2945
-
2946
- #: includes/class-wcj-checkout-core-fields.php:26
2947
- msgid ""
2948
- "Customize WooCommerce core checkout fields. Disable/enable fields, set "
2949
- "required, change labels and/or placeholders."
2950
- msgstr ""
2951
- "Anpassung WooCommerce Basis-Kassenfelder. Deaktivieren/aktivieren Felder, "
2952
- "setzen Benötigte, ändern Beschriftungen und/oder Platzhalter."
2953
-
2954
- #: includes/class-wcj-checkout-core-fields.php:213
2955
- msgid "Checkout Core Fields Options"
2956
- msgstr "Kassen-Basisfelder-Optionen"
2957
-
2958
- #: includes/class-wcj-checkout-core-fields.php:225
2959
- #: includes/classes/class-wcj-module.php:415
2960
- msgid "enabled"
2961
- msgstr "aktiviert"
2962
-
2963
- #: includes/class-wcj-checkout-core-fields.php:230
2964
- #: includes/class-wcj-checkout-core-fields.php:244
2965
- #: includes/class-wcj-checkout-core-fields.php:278
2966
- #: includes/class-wcj-product-listings.php:464
2967
- msgid "Default"
2968
- msgstr "Standard"
2969
-
2970
- #: includes/class-wcj-checkout-core-fields.php:231
2971
- #: includes/class-wcj-checkout-custom-fields.php:668
2972
- #: includes/class-wcj-checkout-files-upload.php:629
2973
- #: includes/class-wcj-export-import.php:358
2974
- #: includes/class-wcj-export-import.php:426
2975
- #: includes/class-wcj-export-import.php:496
2976
- #: includes/class-wcj-global-discount.php:243 includes/class-wcj-orders.php:463
2977
- #: includes/class-wcj-price-by-user-role.php:142
2978
- #: includes/class-wcj-product-addons.php:442
2979
- #: includes/class-wcj-product-bookings.php:417
2980
- #: includes/class-wcj-product-open-pricing.php:178
2981
- #: includes/class-wcj-product-price-by-formula.php:237
2982
- #: includes/class-wcj-products-xml.php:236
2983
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:37
2984
- msgid "Enabled"
2985
- msgstr "Aktiviert"
2986
-
2987
- #: includes/class-wcj-checkout-core-fields.php:232
2988
- #: includes/class-wcj-pdf-invoicing.php:368
2989
- #: includes/class-wcj-product-tabs.php:440
2990
- msgid "Disabled"
2991
- msgstr "Deaktiviert"
2992
-
2993
- #: includes/class-wcj-checkout-core-fields.php:239
2994
- #: includes/class-wcj-checkout-custom-fields.php:807
2995
- msgid "required"
2996
- msgstr "benötigt"
2997
-
2998
- #: includes/class-wcj-checkout-core-fields.php:245
2999
- #: includes/class-wcj-checkout-files-upload.php:635
3000
- #: includes/class-wcj-eu-vat-number.php:390
3001
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:207
3002
- msgid "Required"
3003
- msgstr "Erforderlich"
3004
-
3005
- #: includes/class-wcj-checkout-core-fields.php:246
3006
- msgid "Not Required"
3007
- msgstr "Nicht benötigt"
3008
-
3009
- #: includes/class-wcj-checkout-core-fields.php:253
3010
- #: includes/class-wcj-checkout-custom-fields.php:815
3011
- msgid "label"
3012
- msgstr "Beschriftung"
3013
-
3014
- #: includes/class-wcj-checkout-core-fields.php:254
3015
- #: includes/class-wcj-checkout-core-fields.php:264
3016
- msgid "Leave blank for WooCommerce defaults."
3017
- msgstr "Leer lassen für WooCommerce-Voreinstellung."
3018
-
3019
- #: includes/class-wcj-checkout-core-fields.php:263
3020
- #: includes/class-wcj-checkout-custom-fields.php:823
3021
- msgid "placeholder"
3022
- msgstr "Platzhalter"
3023
-
3024
- #: includes/class-wcj-checkout-core-fields.php:273
3025
- #: includes/class-wcj-checkout-custom-fields.php:845
3026
- msgid "class"
3027
- msgstr "class"
3028
-
3029
- #: includes/class-wcj-checkout-core-fields.php:279
3030
- msgid "Align Left"
3031
- msgstr "Ausrichtung Links"
3032
-
3033
- #: includes/class-wcj-checkout-core-fields.php:280
3034
- msgid "Align Right"
3035
- msgstr "Ausrichtung Rechts"
3036
-
3037
- #: includes/class-wcj-checkout-core-fields.php:281
3038
- msgid "Full Row"
3039
- msgstr "Gesamte Reihe"
3040
-
3041
- #: includes/class-wcj-checkout-custom-fields.php:25
3042
- msgid "Checkout Custom Fields"
3043
- msgstr "benutzerdefinierte Kassenfelder"
3044
-
3045
- #: includes/class-wcj-checkout-custom-fields.php:26
3046
- msgid "Add custom fields to WooCommerce checkout page."
3047
- msgstr "Benutzerdefinierte Felder der WooCommerce-Kassenseite hinzufügen"
3048
-
3049
- #: includes/class-wcj-checkout-custom-fields.php:599
3050
- msgid "Checkout Custom Fields Options"
3051
- msgstr "Benutzerdefinierte Felder-Optionen der Kasse"
3052
-
3053
- #: includes/class-wcj-checkout-custom-fields.php:605
3054
- msgid "Add All Fields to Admin Emails"
3055
- msgstr "Alle Felder den Administrator-Emails hinzufügen"
3056
-
3057
- #: includes/class-wcj-checkout-custom-fields.php:606
3058
- #: includes/class-wcj-checkout-custom-fields.php:613
3059
- #: includes/class-wcj-checkout-custom-fields.php:620
3060
- #: includes/class-wcj-export-import.php:315 includes/class-wcj-general.php:147
3061
- #: includes/class-wcj-order-custom-statuses.php:251
3062
- #: includes/class-wcj-order-custom-statuses.php:326
3063
- #: includes/class-wcj-order-custom-statuses.php:333
3064
- #: includes/class-wcj-order-min-amount.php:233
3065
- #: includes/class-wcj-orders.php:441 includes/class-wcj-orders.php:515
3066
- #: includes/class-wcj-product-by-user.php:282
3067
- #: includes/class-wcj-purchase-data.php:391 includes/class-wcj-sku.php:400
3068
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:359
3069
- msgid "Add"
3070
- msgstr "Hinzufügen"
3071
-
3072
- #: includes/class-wcj-checkout-custom-fields.php:612
3073
- msgid "Add All Fields to Customers Emails"
3074
- msgstr "Alle Felder den Benutzerdefinierte-Emails hinzufügen"
3075
-
3076
- #: includes/class-wcj-checkout-custom-fields.php:619
3077
- msgid "Add All Fields to \"Order Received\" Page"
3078
- msgstr "Alle Felder den \"Bestellung erhalten\"-Seite hinzufügen"
3079
-
3080
- #: includes/class-wcj-checkout-custom-fields.php:631
3081
- msgid "The Fields"
3082
- msgstr "Die Felder"
3083
-
3084
- #: includes/class-wcj-checkout-custom-fields.php:636
3085
- msgid "Custom Fields Number"
3086
- msgstr "Benutzerdefinierte Felder-Nummer"
3087
-
3088
- #: includes/class-wcj-checkout-custom-fields.php:667
3089
- msgid "Custom Field"
3090
- msgstr "Benutzerdefiniertes Feld"
3091
-
3092
- #: includes/class-wcj-checkout-custom-fields.php:678
3093
- msgid "type"
3094
- msgstr "Art"
3095
-
3096
- #: includes/class-wcj-checkout-custom-fields.php:683
3097
- #: includes/class-wcj-more-button-labels.php:58
3098
- #: includes/class-wcj-product-listings.php:489
3099
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:48
3100
- msgid "Text"
3101
- msgstr "Text"
3102
-
3103
- #: includes/class-wcj-checkout-custom-fields.php:684
3104
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:49
3105
- msgid "Textarea"
3106
- msgstr "Textbereich"
3107
-
3108
- #: includes/class-wcj-checkout-custom-fields.php:685
3109
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:50
3110
- msgid "Number"
3111
- msgstr "Nummer"
3112
-
3113
- #: includes/class-wcj-checkout-custom-fields.php:686
3114
- #: includes/class-wcj-product-addons.php:471
3115
- #: includes/class-wcj-product-addons.php:589
3116
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:51
3117
- msgid "Checkbox"
3118
- msgstr "Auswahl-Box"
3119
-
3120
- #: includes/class-wcj-checkout-custom-fields.php:688
3121
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:53
3122
- msgid "Datepicker"
3123
- msgstr "Datumswähler"
3124
-
3125
- #: includes/class-wcj-checkout-custom-fields.php:689
3126
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:54
3127
- msgid "Weekpicker"
3128
- msgstr "Wochenwähler"
3129
-
3130
- #: includes/class-wcj-checkout-custom-fields.php:690
3131
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:55
3132
- msgid "Timepicker"
3133
- msgstr "Zeitwähler"
3134
-
3135
- #: includes/class-wcj-checkout-custom-fields.php:691
3136
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:56
3137
- msgid "Select"
3138
- msgstr "Auswählen"
3139
-
3140
- #: includes/class-wcj-checkout-custom-fields.php:692
3141
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:57
3142
- msgid "Radio"
3143
- msgstr "Radio"
3144
-
3145
- #: includes/class-wcj-checkout-custom-fields.php:693
3146
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:58
3147
- msgid "Password"
3148
- msgstr "Passwort"
3149
-
3150
- #: includes/class-wcj-checkout-custom-fields.php:694
3151
- #: includes/class-wcj-orders.php:303 includes/class-wcj-orders.php:440
3152
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:59
3153
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:90
3154
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:104
3155
- msgid "Country"
3156
- msgstr "Land"
3157
-
3158
- #: includes/class-wcj-checkout-custom-fields.php:695
3159
- msgid "State"
3160
- msgstr "Bundesland"
3161
-
3162
- #: includes/class-wcj-checkout-custom-fields.php:696
3163
- #: includes/export/class-wcj-fields-helper.php:76
3164
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:61
3165
- #: includes/reports/wcj-class-reports-customers.php:92
3166
- msgid "Email"
3167
- msgstr "Email"
3168
-
3169
- #: includes/class-wcj-checkout-custom-fields.php:697
3170
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:62
3171
- msgid "Phone"
3172
- msgstr "Telefon"
3173
-
3174
- #: includes/class-wcj-checkout-custom-fields.php:703
3175
- msgid ""
3176
- "options (only if \"select\" or \"radio\" type is selected). One option per "
3177
- "line"
3178
- msgstr ""
3179
- "Optionen (nur wenn \"Auswählen\" oder \"Radio\" ausgewählt ist). Eine Option "
3180
- "pro Zeile"
3181
-
3182
- #: includes/class-wcj-checkout-custom-fields.php:712
3183
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:79
3184
- msgid "If checkbox is selected, set value for ON here"
3185
- msgstr "Wenn Auswahlbox ausgewählt ist, setze hier den Wert für AN"
3186
-
3187
- #: includes/class-wcj-checkout-custom-fields.php:714
3188
- #: includes/class-wcj-eu-vat-number.php:391
3189
- #: includes/class-wcj-eu-vat-number.php:398
3190
- #: includes/class-wcj-eu-vat-number.php:416
3191
- #: includes/class-wcj-eu-vat-number.php:431
3192
- #: includes/class-wcj-eu-vat-number.php:438
3193
- #: includes/class-wcj-eu-vat-number.php:456
3194
- #: includes/class-wcj-price-by-user-role.php:139
3195
- #: includes/class-wcj-price-by-user-role.php:182
3196
- #: includes/class-wcj-product-add-to-cart.php:212
3197
- #: includes/class-wcj-product-add-to-cart.php:222
3198
- #: includes/class-wcj-product-addons.php:439
3199
- #: includes/class-wcj-product-addons.php:461
3200
- #: includes/class-wcj-product-addons.php:509
3201
- #: includes/class-wcj-product-bookings.php:414
3202
- #: includes/class-wcj-product-images.php:210
3203
- #: includes/class-wcj-product-images.php:220
3204
- #: includes/class-wcj-product-images.php:230
3205
- #: includes/class-wcj-product-open-pricing.php:175
3206
- #: includes/class-wcj-product-price-by-formula.php:234
3207
- #: includes/class-wcj-wholesale-price.php:263
3208
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:82
3209
- #: includes/widgets/class-wcj-widget-country-switcher.php:91
3210
- msgid "Yes"
3211
- msgstr "Ja"
3212
-
3213
- #: includes/class-wcj-checkout-custom-fields.php:720
3214
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:87
3215
- msgid "If checkbox is selected, set value for OFF here"
3216
- msgstr "Wenn Auswahlbox ausgewählt ist, setze hier den Wert für AUS"
3217
-
3218
- #: includes/class-wcj-checkout-custom-fields.php:722
3219
- #: includes/class-wcj-price-by-user-role.php:140
3220
- #: includes/class-wcj-price-by-user-role.php:183
3221
- #: includes/class-wcj-product-add-to-cart.php:213
3222
- #: includes/class-wcj-product-add-to-cart.php:223
3223
- #: includes/class-wcj-product-addons.php:440
3224
- #: includes/class-wcj-product-addons.php:462
3225
- #: includes/class-wcj-product-addons.php:510
3226
- #: includes/class-wcj-product-bookings.php:415
3227
- #: includes/class-wcj-product-images.php:211
3228
- #: includes/class-wcj-product-images.php:221
3229
- #: includes/class-wcj-product-images.php:231
3230
- #: includes/class-wcj-product-open-pricing.php:176
3231
- #: includes/class-wcj-product-price-by-formula.php:235
3232
- #: includes/class-wcj-wholesale-price.php:264
3233
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:90
3234
- #: includes/widgets/class-wcj-widget-country-switcher.php:90
3235
- msgid "No"
3236
- msgstr "Nein"
3237
-
3238
- #: includes/class-wcj-checkout-custom-fields.php:728
3239
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:95
3240
- msgid "If checkbox is selected, set default value here"
3241
- msgstr "Wenn Auswahlbox ausgewählt ist, setze hier den Voreinstellungs-Wert"
3242
-
3243
- #: includes/class-wcj-checkout-custom-fields.php:732
3244
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:100
3245
- msgid "Not Checked"
3246
- msgstr "Nicht geprüft"
3247
-
3248
- #: includes/class-wcj-checkout-custom-fields.php:733
3249
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:101
3250
- msgid "Checked"
3251
- msgstr "Geprüft"
3252
-
3253
- #: includes/class-wcj-checkout-custom-fields.php:739
3254
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:124
3255
- msgid ""
3256
- "If datepicker/weekpicker is selected, set date format here. Visit <a "
3257
- "href=\"https://codex.wordpress.org/Formatting_Date_and_Time\" "
3258
- "target=\"_blank\">documentation on date and time formatting</a> for valid "
3259
- "date formats."
3260
- msgstr ""
3261
- "Wenn Datums-/Wochenwählers ausgewählt ist, stelle hier das Datumsformat ein. "
3262
- "Besuche <a href=\"https://codex.wordpress.org/Formatting_Date_and_Time\" "
3263
- "target=\"_blank\">Dokumentation zur Formatierung des Datums und der "
3264
- "Uhrzeit</a> für gültige Datumsformate."
3265
-
3266
- #: includes/class-wcj-checkout-custom-fields.php:740
3267
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:125
3268
- msgid "Leave blank to use your current WordPress format"
3269
- msgstr "Leer lassen, um Ihr aktuelles WordPress-Format zu verwenden"
3270
-
3271
- #: includes/class-wcj-checkout-custom-fields.php:747
3272
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:133
3273
- msgid "If datepicker/weekpicker is selected, set min date (in days) here"
3274
- msgstr ""
3275
- "Wenn Datums-/Wochenwählers ausgewählt ist, stelle hier Mindest-Datum (in "
3276
- "Tagen) ein"
3277
-
3278
- #: includes/class-wcj-checkout-custom-fields.php:754
3279
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:141
3280
- msgid "If datepicker/weekpicker is selected, set max date (in days) here"
3281
- msgstr ""
3282
- "Wenn Datums-/Wochenwählers ausgewählt ist, stelle hier Maximal-Datum (in "
3283
- "Tagen) ein"
3284
-
3285
- #: includes/class-wcj-checkout-custom-fields.php:761
3286
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:149
3287
- msgid ""
3288
- "If datepicker/weekpicker is selected, set if you want to add year selector"
3289
- msgstr ""
3290
- "Wenn Datums-/Wochenwähler ausgewählt ist, stelle ein, ob auch ein "
3291
- "Jahreswähler hinzugefügt werden soll"
3292
-
3293
- #: includes/class-wcj-checkout-custom-fields.php:768
3294
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:157
3295
- msgid ""
3296
- "If datepicker/weekpicker is selected, and year selector is enabled, set year "
3297
- "range here"
3298
- msgstr ""
3299
- "Wenn Datums-/Wochenwähler ausgewählt und Jahreswähler aktiviert ist, setze "
3300
- "hier den Jahresumfang ein"
3301
-
3302
- #: includes/class-wcj-checkout-custom-fields.php:769
3303
- msgid ""
3304
- "The range of years displayed in the year drop-down: either relative to "
3305
- "today's year (\"-nn:+nn\"), relative to the currently selected year (\"c-nn:"
3306
- "c+nn\"), absolute (\"nnnn:nnnn\"), or combinations of these formats (\"nnnn:-"
3307
- "nn\"). Note that this option only affects what appears in the drop-down, to "
3308
- "restrict which dates may be selected use the minDate and/or maxDate options."
3309
- msgstr ""
3310
- "Der Umfang der Jahre, die in der Dropdown-Liste angezeigt wird: Entweder im "
3311
- "Verhältnis zum aktuellen Jahr (\"-nn:+nn\"), bezogen auf das aktuell "
3312
- "ausgewählte Jahr (\"c-nn:c+nn\"), absolut (\"nnnn:nnnn\"), oder "
3313
- "Kombinationen dieser Formate (\"nnnn:-nn\"). Beachte, dass diese Option nur "
3314
- "beeinflusst, was in der Dropdown-Liste angezeigt wird, um festzulegen, "
3315
- "welche Daten ausgewählt werden können, verwende die Optionen minDate "
3316
- "und/oder maxDate."
3317
-
3318
- #: includes/class-wcj-checkout-custom-fields.php:776
3319
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:166
3320
- msgid "If datepicker/weekpicker is selected, set first week day here"
3321
- msgstr ""
3322
- "Wenn Datums-/Wochenwähler ausgewählt ist, lege den ersten Tag der Woche hier "
3323
- "fest"
3324
-
3325
- #: includes/class-wcj-checkout-custom-fields.php:781
3326
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:171
3327
- msgid "Sunday"
3328
- msgstr "Sonntag"
3329
-
3330
- #: includes/class-wcj-checkout-custom-fields.php:782
3331
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:172
3332
- msgid "Monday"
3333
- msgstr "Montag"
3334
-
3335
- #: includes/class-wcj-checkout-custom-fields.php:783
3336
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:173
3337
- msgid "Tuesday"
3338
- msgstr "Dienstag"
3339
-
3340
- #: includes/class-wcj-checkout-custom-fields.php:784
3341
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:174
3342
- msgid "Wednesday"
3343
- msgstr "Mittwoch"
3344
-
3345
- #: includes/class-wcj-checkout-custom-fields.php:785
3346
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:175
3347
- msgid "Thursday"
3348
- msgstr "Donnerstag"
3349
-
3350
- #: includes/class-wcj-checkout-custom-fields.php:786
3351
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:176
3352
- msgid "Friday"
3353
- msgstr "Freitag"
3354
-
3355
- #: includes/class-wcj-checkout-custom-fields.php:787
3356
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:177
3357
- msgid "Saturday"
3358
- msgstr "Samstag"
3359
-
3360
- #: includes/class-wcj-checkout-custom-fields.php:792
3361
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:183
3362
- msgid ""
3363
- "If timepicker is selected, set time format here. Visit <a href=\"http:"
3364
- "//timepicker.co/options/\" target=\"_blank\">timepicker options page</a> for "
3365
- "valid time formats."
3366
- msgstr ""
3367
- "Wenn der Zeitwähler ausgewählt ist, stelle hier das Zeitformat ein. Besuche "
3368
- "<a href=\"http://timepicker.co/options/\" target=\"_blank\">Zeitwähler-"
3369
- "Optionen-Seite</a> für gültige Zeitformate."
3370
-
3371
- #: includes/class-wcj-checkout-custom-fields.php:800
3372
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:191
3373
- msgid "If timepicker is selected, set interval (in minutes) here"
3374
- msgstr ""
3375
- "Wenn der Zeitwähler ausgewählt ist, stelle hier den Intervall (in Minuten) "
3376
- "ein"
3377
-
3378
- #: includes/class-wcj-checkout-custom-fields.php:831
3379
- msgid "section"
3380
- msgstr "Bereich"
3381
-
3382
- #: includes/class-wcj-checkout-custom-fields.php:836
3383
- #: includes/class-wcj-checkout-custom-info.php:110
3384
- #: includes/class-wcj-empty-cart-button.php:117
3385
- #: includes/class-wcj-left-to-free-shipping.php:233
3386
- msgid "Billing"
3387
- msgstr "Rechnungsadresse:"
3388
-
3389
- #: includes/class-wcj-checkout-custom-fields.php:837
3390
- #: includes/class-wcj-checkout-custom-info.php:111
3391
- #: includes/class-wcj-empty-cart-button.php:118
3392
- #: includes/class-wcj-left-to-free-shipping.php:234
3393
- #: includes/class-wcj-price-by-user-role.php:392
3394
- #: includes/class-wcj-shipping.php:25
3395
- msgid "Shipping"
3396
- msgstr "Versand"
3397
-
3398
- #: includes/class-wcj-checkout-custom-fields.php:838
3399
- #: includes/export/class-wcj-fields-helper.php:121
3400
- #: includes/export/class-wcj-fields-helper.php:206
3401
- msgid "Order Notes"
3402
- msgstr "Bestellnotizen"
3403
-
3404
- #: includes/class-wcj-checkout-custom-fields.php:839
3405
- msgid "Account"
3406
- msgstr "Konto"
3407
-
3408
- #: includes/class-wcj-checkout-custom-fields.php:850
3409
- #: includes/class-wcj-eu-vat-number.php:409
3410
- msgid "Wide"
3411
- msgstr "Breit"
3412
-
3413
- #: includes/class-wcj-checkout-custom-fields.php:851
3414
- #: includes/class-wcj-eu-vat-number.php:410
3415
- msgid "First"
3416
- msgstr "Erste"
3417
-
3418
- #: includes/class-wcj-checkout-custom-fields.php:852
3419
- #: includes/class-wcj-eu-vat-number.php:411
3420
- msgid "Last"
3421
- msgstr "Letzte"
3422
-
3423
- #: includes/class-wcj-checkout-custom-fields.php:858
3424
- msgid "clear"
3425
- msgstr "klar"
3426
-
3427
- #: includes/class-wcj-checkout-custom-fields.php:867
3428
- msgid ""
3429
- "Show this field only if there is a product of selected category in cart."
3430
- msgstr ""
3431
- "Zeige dieses Feld nur, wenn sich ein Produkt, mit ausgewählter Kategorie, im "
3432
- "Warenkorb befindet."
3433
-
3434
- #: includes/class-wcj-checkout-custom-fields.php:877
3435
- msgid "products"
3436
- msgstr "Produkte"
3437
-
3438
- #: includes/class-wcj-checkout-custom-fields.php:878
3439
- msgid "Show this field only if there is a selected product in cart."
3440
- msgstr ""
3441
- "Zeige dieses Feld nur, wenn sich ein ausgewähltes Produkt im Warenkorb "
3442
- "befindet."
3443
-
3444
- #: includes/class-wcj-checkout-custom-info.php:26
3445
- msgid "Checkout Custom Info"
3446
- msgstr "Benutzerdefinierte Kasse-Info"
3447
-
3448
- #: includes/class-wcj-checkout-custom-info.php:27
3449
- msgid "Add custom info to WooCommerce checkout page."
3450
- msgstr "Benutzerdefinierte Information der WooCommerce-Kassen-Seite hinzufügen"
3451
-
3452
- #: includes/class-wcj-checkout-custom-info.php:70
3453
- msgid "Checkout Custom Info Blocks"
3454
- msgstr "Benutzerdefinierte Kasse-Info-Blöcke"
3455
-
3456
- #: includes/class-wcj-checkout-custom-info.php:108
3457
- #: includes/class-wcj-checkout-files-upload.php:645
3458
- #: includes/class-wcj-empty-cart-button.php:115
3459
- #: includes/class-wcj-left-to-free-shipping.php:231
3460
- msgid "Before checkout form"
3461
- msgstr "Vor-der-Kasse-Formular"
3462
-
3463
- #: includes/class-wcj-checkout-custom-info.php:109
3464
- #: includes/class-wcj-empty-cart-button.php:116
3465
- #: includes/class-wcj-left-to-free-shipping.php:232
3466
- msgid "Before customer details"
3467
- msgstr "Vor Kundendetails"
3468
-
3469
- #: includes/class-wcj-checkout-custom-info.php:112
3470
- #: includes/class-wcj-empty-cart-button.php:119
3471
- #: includes/class-wcj-left-to-free-shipping.php:235
3472
- msgid "After customer details"
3473
- msgstr "Nach Kundendetails"
3474
-
3475
- #: includes/class-wcj-checkout-custom-info.php:113
3476
- #: includes/class-wcj-empty-cart-button.php:120
3477
- #: includes/class-wcj-left-to-free-shipping.php:236
3478
- msgid "Before order review"
3479
- msgstr "Vor Bestellübersicht"
3480
-
3481
- #: includes/class-wcj-checkout-custom-info.php:114
3482
- #: includes/class-wcj-empty-cart-button.php:121
3483
- #: includes/class-wcj-left-to-free-shipping.php:237
3484
- msgid "Order review"
3485
- msgstr "Bestellübersicht"
3486
-
3487
- #: includes/class-wcj-checkout-custom-info.php:115
3488
- #: includes/class-wcj-empty-cart-button.php:122
3489
- #: includes/class-wcj-left-to-free-shipping.php:238
3490
- msgid "After order review"
3491
- msgstr "Nach Bestellübersicht"
3492
-
3493
- #: includes/class-wcj-checkout-custom-info.php:116
3494
- #: includes/class-wcj-checkout-files-upload.php:646
3495
- #: includes/class-wcj-empty-cart-button.php:123
3496
- #: includes/class-wcj-left-to-free-shipping.php:239
3497
- msgid "After checkout form"
3498
- msgstr "Nach Kassen-Formular"
3499
-
3500
- #: includes/class-wcj-checkout-files-upload.php:28
3501
- msgid "Checkout Files Upload"
3502
- msgstr "Kasse Dateien-Upload"
3503
-
3504
- #: includes/class-wcj-checkout-files-upload.php:29
3505
- msgid "Let customers upload files on (or after) WooCommerce checkout."
3506
- msgstr ""
3507
- "Lasse Kunden Dateien hochladen während (oder nach) der WooCommerce-Kasse"
3508
-
3509
- #: includes/class-wcj-checkout-files-upload.php:88
3510
- #: includes/class-wcj-checkout-files-upload.php:627
3511
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:52
3512
- msgid "File"
3513
- msgstr "Datei"
3514
-
3515
- #: includes/class-wcj-checkout-files-upload.php:110
3516
- #: includes/class-wcj-checkout-files-upload.php:712
3517
- msgid "File is required!"
3518
- msgstr "Datei wird benötigt!"
3519
-
3520
- #: includes/class-wcj-checkout-files-upload.php:120
3521
- #: includes/class-wcj-checkout-files-upload.php:257
3522
- #: includes/class-wcj-checkout-files-upload.php:705
3523
- msgid "Wrong file type: \"%s\"!"
3524
- msgstr "Falsche Dateiart: \"%s\"!"
3525
-
3526
- #: includes/class-wcj-checkout-files-upload.php:140
3527
- msgid "Uploaded Files"
3528
- msgstr "Hochgeladene Dateien"
3529
-
3530
- #: includes/class-wcj-checkout-files-upload.php:172
3531
- msgid "No files uploaded."
3532
- msgstr "Keine Dateien hochgeladen."
3533
-
3534
- #: includes/class-wcj-checkout-files-upload.php:229
3535
- #: includes/class-wcj-checkout-files-upload.php:237
3536
- #: includes/class-wcj-checkout-files-upload.php:735
3537
- msgid "File \"%s\" was successfully removed."
3538
- msgstr "Datei \"%s\" wurde erfolgreich entfernt."
3539
-
3540
- #: includes/class-wcj-checkout-files-upload.php:269
3541
- #: includes/class-wcj-checkout-files-upload.php:720
3542
- msgid "File \"%s\" was successfully uploaded."
3543
- msgstr "Datei \"%s\" wurde erfolgreich hochgeladen."
3544
-
3545
- #: includes/class-wcj-checkout-files-upload.php:277
3546
- #: includes/class-wcj-checkout-files-upload.php:727
3547
- msgid "Please select file to upload!"
3548
- msgstr "Wähle bitte die hochzuladende Datei aus!"
3549
-
3550
- #: includes/class-wcj-checkout-files-upload.php:491
3551
- #: includes/class-wcj-checkout-files-upload.php:492
3552
- #: includes/class-wcj-checkout-files-upload.php:690
3553
- msgid "Upload"
3554
- msgstr "Hochladen"
3555
-
3556
- #: includes/class-wcj-checkout-files-upload.php:500
3557
- #: includes/class-wcj-checkout-files-upload.php:501
3558
- #: includes/class-wcj-checkout-files-upload.php:697
3559
- msgid "Remove"
3560
- msgstr "Entfernen"
3561
-
3562
- #: includes/class-wcj-checkout-files-upload.php:606
3563
- #: includes/class-wcj-currency-per-product.php:281
3564
- #: includes/class-wcj-eu-vat-number.php:358
3565
- #: includes/class-wcj-global-discount.php:215
3566
- #: includes/class-wcj-multicurrency-product-base-price.php:236
3567
- #: includes/class-wcj-multicurrency.php:385
3568
- #: includes/class-wcj-payment-gateways-icons.php:95
3569
- #: includes/class-wcj-payment-gateways-per-category.php:166
3570
- #: includes/class-wcj-price-by-user-role.php:370
3571
- #: includes/class-wcj-product-addons.php:642
3572
- #: includes/class-wcj-product-bookings.php:490
3573
- #: includes/class-wcj-product-by-user.php:247
3574
- #: includes/class-wcj-products-xml.php:197
3575
- #: includes/class-wcj-related-products.php:98
3576
- #: includes/class-wcj-wholesale-price.php:377
3577
- msgid "Options"
3578
- msgstr "Einstellungen"
3579
-
3580
- #: includes/class-wcj-checkout-files-upload.php:611
3581
- #: includes/class-wcj-products-xml.php:202
3582
- msgid "Total Files"
3583
- msgstr "Gesamtdateien"
3584
-
3585
- #: includes/class-wcj-checkout-files-upload.php:647
3586
- msgid "Do not add on checkout"
3587
- msgstr "Nicht während der Kasse hinzufügen"
3588
-
3589
- #: includes/class-wcj-checkout-files-upload.php:652
3590
- msgid "Position order"
3591
- msgstr "Positionsreihenfolge"
3592
-
3593
- #: includes/class-wcj-checkout-files-upload.php:661
3594
- msgid "Add to Thank You page"
3595
- msgstr "Der Dankes-Seite hinzufügen"
3596
-
3597
- #: includes/class-wcj-checkout-files-upload.php:667
3598
- msgid "Add to My Account page"
3599
- msgstr "Der Mein Konto-Seite hinzufügen"
3600
-
3601
- #: includes/class-wcj-checkout-files-upload.php:672
3602
- #: includes/class-wcj-checkout-files-upload.php:846
3603
- #: includes/class-wcj-order-custom-statuses.php:217
3604
- #: includes/class-wcj-order-custom-statuses.php:256
3605
- #: includes/class-wcj-orders.php:469
3606
- msgid "Label"
3607
- msgstr "Beschriftung"
3608
-
3609
- #: includes/class-wcj-checkout-files-upload.php:673
3610
- msgid "Leave blank to disable label"
3611
- msgstr "Leer lassen um Beschriftung zu deaktivieren"
3612
-
3613
- #: includes/class-wcj-checkout-files-upload.php:675
3614
- msgid "Please select file to upload"
3615
- msgstr "Wähle bitte eine hochzuladende Datei aus"
3616
-
3617
- #: includes/class-wcj-checkout-files-upload.php:680
3618
- msgid "Accepted file types"
3619
- msgstr "Akzeptierte Dateiarten"
3620
-
3621
- #: includes/class-wcj-checkout-files-upload.php:681
3622
- msgid ""
3623
- "Accepted file types. E.g.: \".jpg,.jpeg,.png\". Leave blank to accept all "
3624
- "files"
3625
- msgstr ""
3626
- "Akzeptierte Dateiarten. z.B.: \".jpg,.jpeg,.png\". Leer lassen um alle "
3627
- "Dateien zu akzeptieren"
3628
-
3629
- #: includes/class-wcj-checkout-files-upload.php:688
3630
- msgid "Label: Upload button"
3631
- msgstr "Beschriftung: Hochladen-Button"
3632
-
3633
- #: includes/class-wcj-checkout-files-upload.php:695
3634
- msgid "Label: Remove button"
3635
- msgstr "Label: Entfernen-Button"
3636
-
3637
- #: includes/class-wcj-checkout-files-upload.php:702
3638
- msgid "Notice: Wrong file type"
3639
- msgstr "Hinweis: Falsche Dateiart"
3640
-
3641
- #: includes/class-wcj-checkout-files-upload.php:703
3642
- #: includes/class-wcj-checkout-files-upload.php:718
3643
- #: includes/class-wcj-checkout-files-upload.php:733
3644
- msgid "%s will be replaced with file name"
3645
- msgstr "%s wird mit Dateinamen ersetzt"
3646
-
3647
- #: includes/class-wcj-checkout-files-upload.php:710
3648
- msgid "Notice: File is required"
3649
- msgstr "Hinweis: Datei wird benötigt"
3650
-
3651
- #: includes/class-wcj-checkout-files-upload.php:717
3652
- msgid "Notice: File was successfully uploaded"
3653
- msgstr "Hinweis: Datei wurde erfolgreich hochgeladen"
3654
-
3655
- #: includes/class-wcj-checkout-files-upload.php:725
3656
- msgid "Notice: No file selected"
3657
- msgstr "Hinweis: Keine Datei ausgewählt"
3658
-
3659
- #: includes/class-wcj-checkout-files-upload.php:732
3660
- msgid "Notice: File was successfully removed"
3661
- msgstr "Hinweis: Datei wurde erfolgreich entfernt"
3662
-
3663
- #: includes/class-wcj-checkout-files-upload.php:741
3664
- msgid "PRODUCTS to show this field"
3665
- msgstr "Diese PRODUKTE zeigen dieses Feld"
3666
-
3667
- #: includes/class-wcj-checkout-files-upload.php:742
3668
- msgid ""
3669
- "To show this field only if at least one selected product is in cart, enter "
3670
- "products here. Leave blank to show for all products."
3671
- msgstr ""
3672
- "Dieses Feld nur zeigen, wenn sich wenigstens ein ausgewähltes Produkt im "
3673
- "Warenkorb befindet, gib Produkte hier ein. Leer lassen, um es für alle "
3674
- "Produkte anzuzeigen."
3675
-
3676
- #: includes/class-wcj-checkout-files-upload.php:751
3677
- msgid "CATEGORIES to show this field"
3678
- msgstr "Diese KATEGORIEN zeigen dieses Feld"
3679
-
3680
- #: includes/class-wcj-checkout-files-upload.php:752
3681
- msgid ""
3682
- "To show this field only if at least one product of selected category is in "
3683
- "cart, enter categories here. Leave blank to show for all products."
3684
- msgstr ""
3685
- "Dieses Feld nur zeigen, wenn sich wenigstens ein Produkt ausgewählter "
3686
- "Kategorie im Warenkorb befindet, gib Kategorien hier ein. Leer lassen, um es "
3687
- "für alle Produkte anzuzeigen."
3688
-
3689
- #: includes/class-wcj-checkout-files-upload.php:761
3690
- msgid "TAGS to show this field"
3691
- msgstr "Diese STICHWÖRTER zeigen dieses Feld"
3692
-
3693
- #: includes/class-wcj-checkout-files-upload.php:762
3694
- msgid ""
3695
- "To show this field only if at least one product of selected tag is in cart, "
3696
- "enter tags here. Leave blank to show for all products."
3697
- msgstr ""
3698
- "Dieses Feld nur zeigen, wenn sich wenigstens ein Produkt mit ausgewähltem "
3699
- "Stichwort im Warenkorb befindet, gib die Stichwörter hier ein. Leer lassen, "
3700
- "um es für alle Produkte anzuzeigen."
3701
-
3702
- #: includes/class-wcj-checkout-files-upload.php:771
3703
- msgid "PRODUCTS to hide this field"
3704
- msgstr "PRODUKTE, um dieses Feld zu verbergen"
3705
-
3706
- #: includes/class-wcj-checkout-files-upload.php:772
3707
- msgid ""
3708
- "To hide this field if at least one selected product is in cart, enter "
3709
- "products here. Leave blank to show for all products."
3710
- msgstr ""
3711
- "Um dieses Feld auszublenden, wenn mindestens ein ausgewähltes Produkt im "
3712
- "Einkaufswagen ist, gib hier Produkte ein. Leer lassen, um für alle Produkte "
3713
- "zu zeigen."
3714
-
3715
- #: includes/class-wcj-checkout-files-upload.php:781
3716
- msgid "CATEGORIES to hide this field"
3717
- msgstr "KATEGORIEN, um dieses Feld zu verbergen"
3718
-
3719
- #: includes/class-wcj-checkout-files-upload.php:782
3720
- msgid ""
3721
- "To hide this field if at least one product of selected category is in cart, "
3722
- "enter categories here. Leave blank to show for all products."
3723
- msgstr ""
3724
- "Um dieses Feld auszublenden, wenn mindestens ein Produkt der ausgewählten "
3725
- "Kategorie im Einkaufswagen ist, gib hier Kategorien ein. Leer lassen, um für "
3726
- "alle Produkte zu zeigen."
3727
-
3728
- #: includes/class-wcj-checkout-files-upload.php:791
3729
- msgid "TAGS to hide this field"
3730
- msgstr "TAGS um dieses Feld zu verbergen"
3731
-
3732
- #: includes/class-wcj-checkout-files-upload.php:792
3733
- msgid ""
3734
- "To hide this field if at least one product of selected tag is in cart, enter "
3735
- "tags here. Leave blank to show for all products."
3736
- msgstr ""
3737
- "Um dieses Feld auszublenden, wenn mindestens ein Produkt des ausgewählten "
3738
- "Tags im Einkaufswagen ist, gib hier die Tags ein. Leer lassen, um für alle "
3739
- "Produkte zu zeigen."
3740
-
3741
- #: includes/class-wcj-checkout-files-upload.php:809
3742
- #: includes/class-wcj-product-input-fields.php:247
3743
- msgid "Emails Options"
3744
- msgstr "Email-Optionen"
3745
-
3746
- #: includes/class-wcj-checkout-files-upload.php:814
3747
- #: includes/class-wcj-product-input-fields.php:253
3748
- msgid "Attach Files to Admin's New Order Emails"
3749
- msgstr "Dateien der Administrator-Neue-Bestellung-Emails anhängen"
3750
-
3751
- #: includes/class-wcj-checkout-files-upload.php:815
3752
- #: includes/class-wcj-checkout-files-upload.php:822
3753
- #: includes/class-wcj-product-input-fields.php:254
3754
- #: includes/class-wcj-product-input-fields.php:262
3755
- msgid "Attach"
3756
- msgstr "Anhängen"
3757
-
3758
- #: includes/class-wcj-checkout-files-upload.php:821
3759
- #: includes/class-wcj-product-input-fields.php:261
3760
- msgid "Attach Files to Customer's Processing Order Emails"
3761
- msgstr "Dateien der Kunden-Bestellbearbeitung-Emails anhängen"
3762
-
3763
- #: includes/class-wcj-checkout-files-upload.php:834
3764
- msgid "Form Template Options"
3765
- msgstr "Formular-Template-Optionen"
3766
-
3767
- #: includes/class-wcj-checkout-files-upload.php:839
3768
- #: includes/class-wcj-product-addons.php:655
3769
- #: includes/class-wcj-product-addons.php:678
3770
- msgid "Before"
3771
- msgstr "Davor"
3772
-
3773
- #: includes/class-wcj-checkout-files-upload.php:847
3774
- msgid "Replaced values: %field_id%, %field_label%, %required_html%."
3775
- msgstr "Ersetzte Werte: %field_id%, %field_label%, %required_html%."
3776
-
3777
- #: includes/class-wcj-checkout-files-upload.php:854
3778
- #: includes/class-wcj-export-import.php:356
3779
- #: includes/class-wcj-export-import.php:424
3780
- #: includes/class-wcj-export-import.php:494
3781
- msgid "Field"
3782
- msgstr "Feld"
3783
-
3784
- #: includes/class-wcj-checkout-files-upload.php:855
3785
- msgid "Replaced values: %field_html%, %button_html%."
3786
- msgstr "Ersetzte Werte: %field_html%, %button_html%."
3787
-
3788
- #: includes/class-wcj-checkout-files-upload.php:862
3789
- #: includes/class-wcj-product-addons.php:670
3790
- #: includes/class-wcj-product-addons.php:693
3791
- msgid "After"
3792
- msgstr "Danach"
3793
-
3794
- #: includes/class-wcj-crowdfunding.php:26
3795
- msgid "Crowdfunding"
3796
- msgstr "Crowdfunding"
3797
-
3798
- #: includes/class-wcj-crowdfunding.php:27
3799
- msgid "Add crowdfunding products to WooCommerce."
3800
- msgstr "Crowdfunding-Produkte WooCommerce hinzufügen."
3801
-
3802
- #: includes/class-wcj-crowdfunding.php:67
3803
- msgid "Goal"
3804
- msgstr "Ziel"
3805
-
3806
- #: includes/class-wcj-crowdfunding.php:73
3807
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:71
3808
- msgid "Start Date"
3809
- msgstr "Startdatum"
3810
-
3811
- #: includes/class-wcj-crowdfunding.php:79
3812
- msgid "Deadline"
3813
- msgstr "Stichtag"
3814
-
3815
- #: includes/class-wcj-crowdfunding.php:90
3816
- msgid "When enabled, module will add Crowdfunding metabox to product edit."
3817
- msgstr ""
3818
- "Wenn aktiviert, wird dieses Modul die Crowdfunding-Metabox der "
3819
- "Produktbearbeitung hinzufügen."
3820
-
3821
- #: includes/class-wcj-crowdfunding.php:92
3822
- msgid "To add crowdfunding info to the product, use these shortcodes:"
3823
- msgstr ""
3824
- "Um die Crowdfunding-Info dem Produkt hinzuzufügen, nutze diese Shortcodes:"
3825
-
3826
- #: includes/class-wcj-crowdfunding.php:100
3827
- msgid "Shortcodes could be used in \"Product Info\" module."
3828
- msgstr "Shortcodes können im \"Produkt-Info\"-Modul verwendet werden."
3829
-
3830
- #: includes/class-wcj-crowdfunding.php:102
3831
- msgid "To change add to cart button labels use \"Add to Cart Labels\" module."
3832
- msgstr ""
3833
- "Um \"Dem Warenkorb hinzufügen\" zu ändern, verwende das \"Dem Warenkorb "
3834
- "hinzufügen-Beschriftungen\"-Modul."
3835
-
3836
- #: includes/class-wcj-currencies.php:25
3837
- msgid "Currencies"
3838
- msgstr "Währungen"
3839
-
3840
- #: includes/class-wcj-currencies.php:26
3841
- msgid ""
3842
- "Add all world currencies to your WooCommerce store; change currency symbol."
3843
- msgstr ""
3844
- "Alle Währungen der Welt Deinem WooCommerce-Shop hinzufügen; Ändere das "
3845
- "Währungssysmbol."
3846
-
3847
- #: includes/class-wcj-currencies.php:74
3848
- msgid "Booster: Currency Symbol"
3849
- msgstr "Booster: Währungssymbol"
3850
-
3851
- #: includes/class-wcj-currencies.php:75
3852
- msgid "This sets the currency symbol."
3853
- msgstr "Dies legt das Währungssymbol fest."
3854
-
3855
- #: includes/class-wcj-currencies.php:99
3856
- msgid "Currency Symbol Options"
3857
- msgstr "Währungssymbol-Optionen"
3858
-
3859
- #: includes/class-wcj-currencies.php:105
3860
- msgid "Hide Currency Symbol"
3861
- msgstr "Währungssymbol verbergen"
3862
-
3863
- #: includes/class-wcj-currencies.php:106 includes/class-wcj-orders.php:508
3864
- #: includes/class-wcj-pdf-invoicing.php:400
3865
- #: includes/class-wcj-product-bookings.php:496
3866
- #: includes/class-wcj-product-images.php:259
3867
- #: includes/class-wcj-product-images.php:266
3868
- #: includes/class-wcj-product-images.php:273
3869
- #: includes/class-wcj-product-images.php:280
3870
- #: includes/class-wcj-related-products.php:151
3871
- #: includes/class-wcj-shipping-calculator.php:168
3872
- msgid "Hide"
3873
- msgstr "Ausblenden"
3874
-
3875
- #: includes/class-wcj-currencies.php:107
3876
- msgid "Default: no."
3877
- msgstr "Voreinstellung: Nr."
3878
-
3879
- #: includes/class-wcj-currencies.php:133
3880
- msgid "Custom Currencies"
3881
- msgstr "Benutzerdefinierte Währungen"
3882
-
3883
- #: includes/class-wcj-currencies.php:139
3884
- msgid "Total Custom Currencies"
3885
- msgstr "Gesamte benutzerdefinierte Währungen"
3886
-
3887
- #: includes/class-wcj-currencies.php:151
3888
- msgid "Custom Currency"
3889
- msgstr "Benutzerdefinierte Währungen"
3890
-
3891
- #: includes/class-wcj-currencies.php:152
3892
- msgid "Currency Name (required)"
3893
- msgstr "Währungsname (benötigt)"
3894
-
3895
- #: includes/class-wcj-currencies.php:160
3896
- msgid "Currency Code (required)"
3897
- msgstr "Währungs-Code (benötigt)"
3898
-
3899
- #: includes/class-wcj-currencies.php:168
3900
- msgid "Currency Symbol"
3901
- msgstr "Währungssymbol"
3902
-
3903
- #: includes/class-wcj-currency-exchange-rates.php:26
3904
- msgid "Currency Exchange Rates"
3905
- msgstr "Wechselkurse"
3906
-
3907
- #: includes/class-wcj-currency-exchange-rates.php:27
3908
- msgid "Automatic currency exchange rates for WooCommerce."
3909
- msgstr "Automatische Wechselkurse für WooCommerce."
3910
-
3911
- #: includes/class-wcj-currency-exchange-rates.php:80
3912
- #: includes/class-wcj-currency-per-product.php:350
3913
- #: includes/class-wcj-multicurrency-product-base-price.php:305
3914
- #: includes/class-wcj-multicurrency.php:491
3915
- #: includes/class-wcj-payment-gateways-currency.php:275
3916
- #: includes/class-wcj-price-by-country.php:388
3917
- msgid "Grab %s rate from Yahoo.com"
3918
- msgstr "Hole %s Kurs von Yahoo.com"
3919
-
3920
- #: includes/class-wcj-currency-exchange-rates.php:100
3921
- #: includes/class-wcj-products-xml.php:223
3922
- msgid "%s seconds till next update."
3923
- msgstr "%s Sekunden bis zum nächsten Update."
3924
-
3925
- #: includes/class-wcj-currency-exchange-rates.php:106
3926
- #: includes/class-wcj-price-by-country.php:348
3927
- msgid "Exchange Rates"
3928
- msgstr "Wechselkurse"
3929
-
3930
- #: includes/class-wcj-currency-exchange-rates.php:108
3931
- msgid ""
3932
- "All currencies from all <strong>enabled</strong> modules will be "
3933
- "automatically added to the list."
3934
- msgstr ""
3935
- "Währungen aller aktivierten Module werden automatisch der Liste hinzugefügt."
3936
-
3937
- #: includes/class-wcj-currency-exchange-rates.php:113
3938
- #: includes/class-wcj-currency-per-product.php:286
3939
- #: includes/class-wcj-multicurrency-product-base-price.php:241
3940
- #: includes/class-wcj-multicurrency.php:390
3941
- #: includes/class-wcj-payment-gateways-currency.php:282
3942
- #: includes/class-wcj-price-by-country.php:351
3943
- msgid "Exchange Rates Updates"
3944
- msgstr "Wechselkurs-Aktualisierung"
3945
-
3946
- #: includes/class-wcj-currency-exchange-rates.php:119
3947
- #: includes/class-wcj-products-xml.php:291
3948
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:24
3949
- msgid "Update Every Minute"
3950
- msgstr "Jede Minute aktualisieren"
3951
-
3952
- #: includes/class-wcj-currency-exchange-rates.php:120
3953
- #: includes/class-wcj-products-xml.php:292
3954
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:25
3955
- msgid "Update Hourly"
3956
- msgstr "Stündlich aktualisieren"
3957
-
3958
- #: includes/class-wcj-currency-exchange-rates.php:121
3959
- #: includes/class-wcj-products-xml.php:293
3960
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:26
3961
- msgid "Update Twice Daily"
3962
- msgstr "Zweimal täglich aktivieren"
3963
-
3964
- #: includes/class-wcj-currency-exchange-rates.php:122
3965
- #: includes/class-wcj-products-xml.php:294
3966
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:27
3967
- msgid "Update Daily"
3968
- msgstr "Täglich aktivieren"
3969
-
3970
- #: includes/class-wcj-currency-exchange-rates.php:123
3971
- #: includes/class-wcj-products-xml.php:295
3972
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:28
3973
- msgid "Update Weekly"
3974
- msgstr "Wöchentlich aktivieren"
3975
-
3976
- #: includes/class-wcj-currency-external-products.php:25
3977
- msgid "Currency for External Products"
3978
- msgstr "Währung für externe Produkte"
3979
-
3980
- #: includes/class-wcj-currency-external-products.php:26
3981
- msgid "Set different currency for external WooCommerce products."
3982
- msgstr "Lege unterschiedliche Währungen für externe WooCommerce-Produkte fest."
3983
-
3984
- #: includes/class-wcj-currency-external-products.php:73
3985
- msgid "Currency for External Products Options"
3986
- msgstr "Währung für externe-Produkt-Optionen"
3987
-
3988
- #: includes/class-wcj-currency-external-products.php:79
3989
- #: includes/class-wcj-currency-per-product.php:334
3990
- #: includes/class-wcj-multicurrency-product-base-price.php:289
3991
- #: includes/class-wcj-multicurrency.php:475
3992
- #: includes/class-wcj-price-by-country.php:338
3993
- #: includes/class-wcj-price-formats.php:142
3994
- msgid "Currency"
3995
- msgstr "Währung"
3996
-
3997
- #: includes/class-wcj-currency-external-products.php:80
3998
- msgid "Set currency for all external products."
3999
- msgstr "Lege die Währung für alle externe Produkte fest."
4000
-
4001
- #: includes/class-wcj-currency-per-product.php:27
4002
- msgid "Currency per Product"
4003
- msgstr "Währung pro Produkt"
4004
-
4005
- #: includes/class-wcj-currency-per-product.php:28
4006
- msgid "Display prices for WooCommerce products in different currencies."
4007
- msgstr "Zeige Preise für WooCommerce-Produkte in verschiedenen Währungen."
4008
-
4009
- #: includes/class-wcj-currency-per-product.php:100
4010
- msgctxt "Price range: from-to"
4011
- msgid "%1$s&ndash;%2$s"
4012
- msgstr "%1$s&ndash;%2$s"
4013
-
4014
- #: includes/class-wcj-currency-per-product.php:236
4015
- #: includes/class-wcj-multicurrency-product-base-price.php:185
4016
- msgid "Product Currency"
4017
- msgstr "Produktkategorie"
4018
-
4019
- #: includes/class-wcj-currency-per-product.php:238
4020
- msgid "Update product after you change this field's value."
4021
- msgstr "Produkt aktualisieren, nachdem Du diesen Wert geändert hast."
4022
-
4023
- #: includes/class-wcj-currency-per-product.php:291
4024
- #: includes/class-wcj-multicurrency-product-base-price.php:246
4025
- #: includes/class-wcj-multicurrency.php:395
4026
- #: includes/class-wcj-payment-gateways-currency.php:287
4027
- #: includes/class-wcj-price-by-country.php:356
4028
- msgid "Enter Rates Manually"
4029
- msgstr "Kurse manuell eingeben"
4030
-
4031
- #: includes/class-wcj-currency-per-product.php:292
4032
- #: includes/class-wcj-multicurrency-product-base-price.php:247
4033
- #: includes/class-wcj-multicurrency.php:396
4034
- #: includes/class-wcj-payment-gateways-currency.php:288
4035
- #: includes/class-wcj-price-by-country.php:357
4036
- msgid "Automatically via Currency Exchange Rates module"
4037
- msgstr "Automatisch über Wechselkurs-Modul"
4038
-
4039
- #: includes/class-wcj-currency-per-product.php:295
4040
- #: includes/class-wcj-multicurrency-product-base-price.php:250
4041
- #: includes/class-wcj-multicurrency.php:399
4042
- #: includes/class-wcj-payment-gateways-currency.php:291
4043
- #: includes/class-wcj-price-by-country.php:360
4044
- msgid "Visit"
4045
- msgstr "Besuchen"
4046
-
4047
- #: includes/class-wcj-currency-per-product.php:295
4048
- #: includes/class-wcj-multicurrency-product-base-price.php:250
4049
- #: includes/class-wcj-multicurrency.php:399
4050
- #: includes/class-wcj-payment-gateways-currency.php:291
4051
- #: includes/class-wcj-price-by-country.php:360
4052
- msgid "Currency Exchange Rates module"
4053
- msgstr "Wechselkurs-Modul"
4054
-
4055
- #: includes/class-wcj-currency-per-product.php:305
4056
- #: includes/class-wcj-multicurrency-product-base-price.php:260
4057
- #: includes/class-wcj-multicurrency.php:445
4058
- msgid "Currencies Options"
4059
- msgstr "Währungs-Optionen"
4060
-
4061
- #: includes/class-wcj-currency-per-product.php:310
4062
- #: includes/class-wcj-multicurrency-product-base-price.php:265
4063
- #: includes/class-wcj-multicurrency.php:451
4064
- msgid "Total Currencies"
4065
- msgstr "Gesamt-Währungen"
4066
-
4067
- #: includes/class-wcj-emails.php:25
4068
- msgid "Emails"
4069
- msgstr "Emails"
4070
-
4071
- #: includes/class-wcj-emails.php:26
4072
- msgid ""
4073
- "Add custom emails. Add another email recipient(s) to all WooCommerce emails."
4074
- msgstr ""
4075
- "Benutzerdefinerte Emails hinzufügen. Weitere Emailempfänger allen "
4076
- "WooCommerce-Emails hinzufügen."
4077
-
4078
- #: includes/class-wcj-emails.php:137
4079
- msgid "Booster: Email Forwarding Options"
4080
- msgstr "Booster: Email-Weiterleitungs-Optionen"
4081
-
4082
- #: includes/class-wcj-emails.php:138
4083
- msgid "Email Forwarding Options"
4084
- msgstr "Email-Weiterleitungs-Optionen"
4085
-
4086
- #: includes/class-wcj-emails.php:140
4087
- msgid ""
4088
- "This section lets you add another email recipient(s) to all WooCommerce "
4089
- "emails. Leave blank to disable."
4090
- msgstr ""
4091
- "Dieser Abschnitt lässt Dich weitere Email-Empfänger aller WooCommerce-Emails "
4092
- "hinzufügen. Leer lassen um zu deaktivieren."
4093
-
4094
- #: includes/class-wcj-emails.php:144
4095
- msgid "Cc Email"
4096
- msgstr "Cc Email"
4097
-
4098
- #: includes/class-wcj-emails.php:145
4099
- msgid "Cc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
4100
- msgstr ""
4101
- "Cc zu Email, z.B. ihreemail@ihredomain.de. Leer lassen, um zu deaktivieren."
4102
-
4103
- #: includes/class-wcj-emails.php:151
4104
- msgid "Bcc Email"
4105
- msgstr "Bcc Email"
4106
-
4107
- #: includes/class-wcj-emails.php:152
4108
- msgid "Bcc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
4109
- msgstr ""
4110
- "Cc zu Email, z.B. ihreemail@ihredomain.de. Leer lassen, um zu deaktivieren."
4111
-
4112
- #: includes/class-wcj-emails.php:188
4113
- msgid "Custom Emails"
4114
- msgstr "Benutzerdefinierte Emails"
4115
-
4116
- #: includes/class-wcj-emails.php:191
4117
- msgid ""
4118
- "This section lets you set number of custom emails to add. After setting the "
4119
- "number, visit \"WooCommerce > Settings > Emails\" to set each email options."
4120
- msgstr ""
4121
- "Dieser Abschnitt lässt Dich die Anzahl der benutzerdefinierten Emails, die "
4122
- "hinzugefügt werden sollen, einstellen. Nachdem Du die Anzahl festgelegt hast,"
4123
- " besuche \"WooCommerce > Einstellungen > Emails\", um jede Emailoption "
4124
- "einzustellen."
4125
-
4126
- #: includes/class-wcj-emails.php:194
4127
- msgid "Custom Emails Number"
4128
- msgstr "Anzahl benutzerdefinierter Emails"
4129
-
4130
- #: includes/class-wcj-emails.php:205
4131
- msgid "Admin Title Custom Email"
4132
- msgstr "Titel für benutzerdefinierte Administrator-Email"
4133
-
4134
- #: includes/class-wcj-emails.php:207 includes/class-wcj-shipping.php:219
4135
- #: includes/emails/class-wc-email-wcj-custom.php:30
4136
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:133
4137
- #: includes/shipping/class-wc-shipping-wcj-custom.php:44
4138
- msgid "Custom"
4139
- msgstr "Benutzerdefiniert"
4140
-
4141
- #: includes/class-wcj-empty-cart-button.php:26
4142
- msgid "Empty Cart Button"
4143
- msgstr "Warenkorb leeren-Button"
4144
-
4145
- #: includes/class-wcj-empty-cart-button.php:27
4146
- msgid "Add and customize \"Empty Cart\" button to WooCommerce cart page."
4147
- msgstr ""
4148
- "Hinzufügen und anpassen des \"Leerer Warenkorb\"-Buttons auf WooCommerce "
4149
- "Warenkorb-Seite."
4150
-
4151
- #: includes/class-wcj-empty-cart-button.php:74
4152
- msgid "Empty Cart Options"
4153
- msgstr "Optionen für Leerer Warenkorb"
4154
-
4155
- #: includes/class-wcj-empty-cart-button.php:76
4156
- msgid ""
4157
- "This section lets you add and customize \"Empty Cart\" button to cart page."
4158
- msgstr ""
4159
- "Dieser Abschnitt lässt Dich den \"Warenkorb leeren\"-Button auf Warenkorb-"
4160
- "Seite hinzufügen und anpassen."
4161
-
4162
- #: includes/class-wcj-empty-cart-button.php:80
4163
- msgid "Empty Cart Button Text"
4164
- msgstr "Leerer Warenkorb Beschriftungstext"
4165
-
4166
- #: includes/class-wcj-empty-cart-button.php:88
4167
- msgid "Wrapping DIV style"
4168
- msgstr "Umhüllender DIV-Stil"
4169
-
4170
- #: includes/class-wcj-empty-cart-button.php:89
4171
- msgid "Style for the button's div. Default is \"float: right;\""
4172
- msgstr "Stil für die Schaltfläche div. Voreinstellung ist \"float: right;\""
4173
-
4174
- #: includes/class-wcj-empty-cart-button.php:95
4175
- msgid "Button position on the Cart page"
4176
- msgstr "Button-Position auf der Warenkorb-Seite"
4177
-
4178
- #: includes/class-wcj-empty-cart-button.php:100
4179
- msgid "After Cart"
4180
- msgstr "Nach dem Warenkorb"
4181
-
4182
- #: includes/class-wcj-empty-cart-button.php:101
4183
- msgid "Before Cart"
4184
- msgstr "Vor dem Warenkorb"
4185
-
4186
- #: includes/class-wcj-empty-cart-button.php:102
4187
- msgid "After Proceed to Checkout button"
4188
- msgstr "Nach dem Fortfahren zur Kasse-Button"
4189
-
4190
- #: includes/class-wcj-empty-cart-button.php:103
4191
- msgid "After Cart Totals"
4192
- msgstr "Nach Warenkorb Gesamtsumme"
4193
-
4194
- #: includes/class-wcj-empty-cart-button.php:109
4195
- msgid "Button position on the Checkout page"
4196
- msgstr "Button-Position auf der Kassenseite"
4197
-
4198
- #: includes/class-wcj-empty-cart-button.php:114
4199
- #: includes/class-wcj-orders.php:501
4200
- msgid "Do not add"
4201
- msgstr "Nicht hinzufügen"
4202
-
4203
- #: includes/class-wcj-empty-cart-button.php:129
4204
- msgid "Confirmation"
4205
- msgstr "Bestätigung"
4206
-
4207
- #: includes/class-wcj-empty-cart-button.php:134
4208
- msgid "No confirmation"
4209
- msgstr "Keine Bestätigung"
4210
-
4211
- #: includes/class-wcj-empty-cart-button.php:135
4212
- msgid "Confirm by pop up box"
4213
- msgstr "bestätige mit Pop-up-Box"
4214
-
4215
- #: includes/class-wcj-empty-cart-button.php:139
4216
- msgid "Confirmation Text (if enabled)"
4217
- msgstr "Bestätigungstext (wenn aktiviert)"
4218
-
4219
- #: includes/class-wcj-empty-cart-button.php:141
4220
- #: includes/class-wcj-product-by-user.php:165
4221
- #: includes/classes/class-wcj-module.php:472
4222
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:285
4223
- msgid "Are you sure?"
4224
- msgstr "Bist Du sicher?"
4225
-
4226
- #: includes/class-wcj-eu-vat-number.php:27
4227
- #: includes/class-wcj-eu-vat-number.php:137
4228
- #: includes/class-wcj-eu-vat-number.php:365
4229
- #: includes/class-wcj-eu-vat-number.php:372
4230
- msgid "EU VAT Number"
4231
- msgstr "Umsatzsteuer-Identifikationsnummer"
4232
-
4233
- #: includes/class-wcj-eu-vat-number.php:28
4234
- msgid ""
4235
- "Collect and validate EU VAT numbers on WooCommerce checkout. Automatically "
4236
- "disable VAT for valid numbers. Add all EU countries VAT standard rates to "
4237
- "WooCommerce."
4238
- msgstr ""
4239
- "Sammeln und Validieren von Umsatzsteuer-Identifikationsnummern auf "
4240
- "WooCommerce Kassenseite. Automatische Deaktivierung der Mehrwertsteuer für "
4241
- "gültige Nummern. Füge in WooCommerce für alle EU-Länder die Mehrwertsteuer-"
4242
- "Standard-Steuersätze hinzu."
4243
-
4244
- #: includes/class-wcj-eu-vat-number.php:34
4245
- msgid "EU Countries VAT Rates"
4246
- msgstr "EU-Länder Mehrwertsteuersätze"
4247
-
4248
- #: includes/class-wcj-eu-vat-number.php:35
4249
- msgid "Add all EU countries VAT standard rates to WooCommerce."
4250
- msgstr ""
4251
- "Füge in WooCommerce für alle EU-Länder die Mehrwertsteuer-Standard-"
4252
- "Steuersätze hinzu."
4253
-
4254
- #: includes/class-wcj-eu-vat-number.php:301
4255
- #: includes/class-wcj-eu-vat-number.php:425
4256
- msgid "<strong>EU VAT Number</strong> is not valid."
4257
- msgstr "<strong>Umsatzsteuer-Identifikationsnummer</strong> ist ungültig."
4258
-
4259
- #: includes/class-wcj-eu-vat-number.php:363
4260
- msgid "Field Label"
4261
- msgstr "Feldbeschriftung"
4262
-
4263
- #: includes/class-wcj-eu-vat-number.php:370
4264
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:221
4265
- msgid "Placeholder"
4266
- msgstr "Platzhalter"
4267
-
4268
- #: includes/class-wcj-eu-vat-number.php:397
4269
- msgid "Clear"
4270
- msgstr "Löschen"
4271
-
4272
- #: includes/class-wcj-eu-vat-number.php:404
4273
- msgid "Class"
4274
- msgstr "Klasse"
4275
-
4276
- #: includes/class-wcj-eu-vat-number.php:415
4277
- msgid "Validate"
4278
- msgstr "Bestätigen"
4279
-
4280
- #: includes/class-wcj-eu-vat-number.php:423
4281
- msgid "Message on not valid"
4282
- msgstr "Nachricht im Falle von ungültig"
4283
-
4284
- #: includes/class-wcj-eu-vat-number.php:430
4285
- msgid "Exempt VAT for Valid Numbers"
4286
- msgstr "Befreie berechtigte Identifikationsnummern von der Mehrwertsteuer"
4287
-
4288
- #: includes/class-wcj-eu-vat-number.php:437
4289
- msgid "Preserve VAT in Base Country"
4290
- msgstr "Mehrwertsteuer im Basisland beibehalten"
4291
-
4292
- #: includes/class-wcj-eu-vat-number.php:455
4293
- msgid "Check for IP Location Country"
4294
- msgstr "Überprüfen nach IP-Standort Land"
4295
-
4296
- #: includes/class-wcj-eu-vat-number.php:473
4297
- msgid "Display"
4298
- msgstr "Anzeigen"
4299
-
4300
- #: includes/class-wcj-eu-vat-number.php:478
4301
- msgid "After order table"
4302
- msgstr "Nach Bestellungen-Tabelle"
4303
-
4304
- #: includes/class-wcj-eu-vat-number.php:479
4305
- msgid "In billing address"
4306
- msgstr "In Rechnungsadresse"
4307
-
4308
- #: includes/class-wcj-export-import.php:29
4309
- msgid "WooCommerce export tools."
4310
- msgstr "WooCommerce Export Werkzeuge."
4311
-
4312
- #: includes/class-wcj-export-import.php:35
4313
- msgid "Export Customers"
4314
- msgstr "Kunden exportieren"
4315
-
4316
- #: includes/class-wcj-export-import.php:36
4317
- msgid "Export Customers."
4318
- msgstr "Kunden exportieren."
4319
-
4320
- #: includes/class-wcj-export-import.php:39
4321
- msgid "Export Customers from Orders"
4322
- msgstr "Kunden von Bestellungen exportieren "
4323
-
4324
- #: includes/class-wcj-export-import.php:40
4325
- msgid "Export Customers (extracted from orders)."
4326
- msgstr "Kunden exportieren (aus Bestellungen extrahiert)."
4327
-
4328
- #: includes/class-wcj-export-import.php:40
4329
- msgid "Customers are identified by billing email."
4330
- msgstr "Kunden werden nach Rechnungs-E-Mail-Adresse identifiziert."
4331
-
4332
- #: includes/class-wcj-export-import.php:43
4333
- msgid "Export Orders"
4334
- msgstr "Bestellungen exportieren"
4335
-
4336
- #: includes/class-wcj-export-import.php:44
4337
- msgid "Export Orders."
4338
- msgstr "Bestellungen exportieren."
4339
-
4340
- #: includes/class-wcj-export-import.php:47
4341
- msgid "Export Orders Items"
4342
- msgstr "Exportiere Bestellungsgegenstände"
4343
-
4344
- #: includes/class-wcj-export-import.php:48
4345
- msgid "Export Orders Items."
4346
- msgstr "Exportiere Bestellungsgegenstände."
4347
-
4348
- #: includes/class-wcj-export-import.php:51
4349
- msgid "Export Products"
4350
- msgstr "Produkte exportieren"
4351
-
4352
- #: includes/class-wcj-export-import.php:52
4353
- msgid "Export Products."
4354
- msgstr "Produkte exportieren."
4355
-
4356
- #: includes/class-wcj-export-import.php:194
4357
- #: includes/class-wcj-export-import.php:200
4358
- msgid "Filter by Billing Country"
4359
- msgstr "Nach den Rechnungsland filtern"
4360
-
4361
- #: includes/class-wcj-export-import.php:195
4362
- msgid "Filter by Product Title"
4363
- msgstr "Nach dem Produktitel filtern"
4364
-
4365
- #: includes/class-wcj-export-import.php:214 includes/class-wcj-orders.php:407
4366
- msgid "Filter"
4367
- msgstr "Filter"
4368
-
4369
- #: includes/class-wcj-export-import.php:233
4370
- msgid "Download CSV"
4371
- msgstr "CSV herunterladen"
4372
-
4373
- #: includes/class-wcj-export-import.php:235
4374
- msgid "Download XML"
4375
- msgstr "Download XML"
4376
-
4377
- #: includes/class-wcj-export-import.php:236
4378
- msgid "Filter by All Fields"
4379
- msgstr "Nach allen Feldern filtern"
4380
-
4381
- #: includes/class-wcj-export-import.php:303
4382
- msgid "Export Options"
4383
- msgstr "Export-Optionen"
4384
-
4385
- #: includes/class-wcj-export-import.php:308
4386
- msgid "CSV Separator"
4387
- msgstr "CSV Trennzeichen"
4388
-
4389
- #: includes/class-wcj-export-import.php:314
4390
- msgid "UTF-8 BOM"
4391
- msgstr "UTF-8 BOM"
4392
-
4393
- #: includes/class-wcj-export-import.php:316
4394
- msgid "Add UTF-8 BOM sequence"
4395
- msgstr "UTF-8 BOM Sequenz hinzufügen"
4396
-
4397
- #: includes/class-wcj-export-import.php:326
4398
- msgid "Export Orders Options"
4399
- msgstr "Exportiere Bestellungsoptionen"
4400
-
4401
- #: includes/class-wcj-export-import.php:331
4402
- msgid "Export Orders Fields"
4403
- msgstr "Exportiere Bestellungsfelder"
4404
-
4405
- #: includes/class-wcj-export-import.php:332
4406
- #: includes/class-wcj-export-import.php:400
4407
- #: includes/class-wcj-export-import.php:470
4408
- #: includes/class-wcj-export-import.php:538
4409
- #: includes/class-wcj-export-import.php:556
4410
- msgid "Hold \"Control\" key to select multiple fields."
4411
- msgstr "Halte die Taste \"Strg\" gedrückt, um mehrere Felder auszuwählen."
4412
-
4413
- #: includes/class-wcj-export-import.php:340
4414
- msgid "Additional Export Orders Fields"
4415
- msgstr ""
4416
- "Zusätzliche Bestellungs-Export-Felder\n"
4417
-
4418
- #: includes/class-wcj-export-import.php:363
4419
- #: includes/class-wcj-export-import.php:431
4420
- #: includes/class-wcj-export-import.php:501
4421
- #: includes/class-wcj-product-by-user.php:156
4422
- #: includes/class-wcj-product-tabs.php:421
4423
- #: includes/class-wcj-product-tabs.php:542
4424
- #: includes/class-wcj-purchase-data.php:323
4425
- #: includes/class-wcj-related-products.php:123
4426
- #: includes/gateways/class-wc-gateway-wcj-custom.php:68
4427
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:214
4428
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:113
4429
- #: includes/shipping/class-wc-shipping-wcj-custom.php:82
4430
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:259
4431
- msgid "Title"
4432
- msgstr "Titel"
4433
-
4434
- #: includes/class-wcj-export-import.php:369
4435
- #: includes/class-wcj-export-import.php:437
4436
- #: includes/class-wcj-export-import.php:507
4437
- #: includes/class-wcj-global-discount.php:250
4438
- #: includes/class-wcj-product-addons.php:466
4439
- #: includes/class-wcj-product-addons.php:583
4440
- #: includes/class-wcj-purchase-data.php:330
4441
- #: includes/export/class-wcj-fields-helper.php:289
4442
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:44
4443
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:120
4444
- #: includes/shipping/class-wc-shipping-wcj-custom.php:89
4445
- msgid "Type"
4446
- msgstr "Typ"
4447
-
4448
- #: includes/class-wcj-export-import.php:375
4449
- #: includes/class-wcj-export-import.php:443
4450
- msgid "Order Shortcode"
4451
- msgstr "Bestell-Shortcode"
4452
-
4453
- #: includes/class-wcj-export-import.php:379
4454
- #: includes/class-wcj-export-import.php:449
4455
- #: includes/class-wcj-export-import.php:517
4456
- #: includes/class-wcj-global-discount.php:260 includes/class-wcj-orders.php:476
4457
- msgid "Value"
4458
- msgstr "Betrag"
4459
-
4460
- #: includes/class-wcj-export-import.php:380
4461
- msgid ""
4462
- "If field's \"Type\" is set to \"Meta\", enter order meta key to retrieve "
4463
- "(can be custom field name)."
4464
- msgstr ""
4465
- "Wenn der Feld-\"Typ\" auf \"Meta\" gesetzt ist, gib den Bestell-Meta-"
4466
- "Schlüssel ein, um abzurufen (kann benutzerdefinierter Feldname sein)."
4467
-
4468
- #: includes/class-wcj-export-import.php:381
4469
- msgid "If it's set to \"Shortcode\", use Booster's Orders shortcodes here."
4470
- msgstr ""
4471
- "Wenn auf \"Shortcode\" gesetzt, verwende hier Booster's Bestell-Shortcodes."
4472
-
4473
- #: includes/class-wcj-export-import.php:394
4474
- msgid "Export Orders Items Options"
4475
- msgstr "Exportieren von Bestellungs-Gegenstände-Optionen"
4476
-
4477
- #: includes/class-wcj-export-import.php:399
4478
- msgid "Export Orders Items Fields"
4479
- msgstr "Exportieren von Bestellungs-Gegenstände-Felder"
4480
-
4481
- #: includes/class-wcj-export-import.php:408
4482
- msgid "Additional Export Orders Items Fields"
4483
- msgstr "Zusätzliche Bestellungs-Gegenstände-Export Felder"
4484
-
4485
- #: includes/class-wcj-export-import.php:445
4486
- #: includes/class-wcj-export-import.php:513
4487
- msgid "Product Shortcode"
4488
- msgstr "Produkt-Shortcode"
4489
-
4490
- #: includes/class-wcj-export-import.php:450
4491
- msgid ""
4492
- "If field's \"Type\" is set to \"Meta\", enter order/product meta key to "
4493
- "retrieve (can be custom field name)."
4494
- msgstr ""
4495
- "Wenn der Feld-\"Typ\" auf \"Meta\" gesetzt ist, gib den Bestell-/Produkt-"
4496
- "Meta-Schlüssel ein, um abzurufen (kann ein benutzerdefinierter Feldname sein)"
4497
- "."
4498
-
4499
- #: includes/class-wcj-export-import.php:451
4500
- msgid ""
4501
- "If it's set to \"Shortcode\", use Booster's Orders/Products shortcodes here."
4502
- msgstr ""
4503
- "Wenn auf \"Shortcode\" gesetzt, verwende hier Booster's Bestellungen/Produkt-"
4504
- "Shortcodes."
4505
-
4506
- #: includes/class-wcj-export-import.php:464
4507
- msgid "Export Products Options"
4508
- msgstr "Export Produkt-Optionen"
4509
-
4510
- #: includes/class-wcj-export-import.php:469
4511
- msgid "Export Products Fields"
4512
- msgstr "Export Produkt-Felder"
4513
-
4514
- #: includes/class-wcj-export-import.php:478
4515
- msgid "Additional Export Products Fields"
4516
- msgstr "Zusätzliche Export Produkt-Felder"
4517
-
4518
- #: includes/class-wcj-export-import.php:518
4519
- msgid ""
4520
- "If field's \"Type\" is set to \"Meta\", enter product meta key to retrieve "
4521
- "(can be custom field name)."
4522
- msgstr ""
4523
- "Wenn der Feld-\"Typ\" auf \"Meta\" gesetzt ist, gib den Produkt-Meta-"
4524
- "Schlüssel ein, um abzurufen (kann ein benutzerdefinierter Feldname sein)."
4525
-
4526
- #: includes/class-wcj-export-import.php:519
4527
- msgid "If it's set to \"Shortcode\", use Booster's Products shortcodes here."
4528
- msgstr ""
4529
- "Wenn auf \"Shortcode\" gesetzt, verwende hier Booster's Produkt-Shortcodes."
4530
-
4531
- #: includes/class-wcj-export-import.php:532
4532
- msgid "Export Customers Options"
4533
- msgstr "Export Kunden-Optionen"
4534
-
4535
- #: includes/class-wcj-export-import.php:537
4536
- msgid "Export Customers Fields"
4537
- msgstr "Export Kunden-Felder"
4538
-
4539
- #: includes/class-wcj-export-import.php:550
4540
- msgid "Export Customers from Orders Options"
4541
- msgstr "Export Kunden von Bestell-Optionen"
4542
-
4543
- #: includes/class-wcj-export-import.php:555
4544
- msgid "Export Customers from Orders Fields"
4545
- msgstr "Export Kunden von Bestell-Feldern"
4546
-
4547
- #: includes/class-wcj-free-price.php:28
4548
- msgid "Free Price Labels"
4549
- msgstr "Kostenlos Preisetiketten"
4550
-
4551
- #: includes/class-wcj-free-price.php:29
4552
- msgid "WooCommerce free price labels."
4553
- msgstr "Woocommerce Kostenlos Preisetiketten."
4554
-
4555
- #: includes/class-wcj-free-price.php:72 includes/class-wcj-free-price.php:85
4556
- #: includes/class-wcj-free-price.php:95 includes/class-wcj-free-price.php:105
4557
- #: includes/class-wcj-free-price.php:152
4558
- msgid "Free!"
4559
- msgstr "Kostenlos!"
4560
-
4561
- #: includes/class-wcj-free-price.php:127
4562
- msgid "Labels can contain shortcodes."
4563
- msgstr "Etiketten können Shortcodes enthalten."
4564
-
4565
- #: includes/class-wcj-free-price.php:138
4566
- msgid "Simple and Custom Products"
4567
- msgstr "Einfache und benutzerdefinierte Produkte"
4568
-
4569
- #: includes/class-wcj-free-price.php:139
4570
- msgid "Variable Products"
4571
- msgstr "Variable Produkte"
4572
-
4573
- #: includes/class-wcj-free-price.php:140
4574
- msgid "Grouped Products"
4575
- msgstr "Gruppierte Produkte"
4576
-
4577
- #: includes/class-wcj-free-price.php:141
4578
- #: includes/class-wcj-product-add-to-cart.php:477
4579
- msgid "External Products"
4580
- msgstr "Externe Produkte"
4581
-
4582
- #: includes/class-wcj-free-price.php:144
4583
- msgid "Single Product Page"
4584
- msgstr "Einfaches Produkt Seite"
4585
-
4586
- #: includes/class-wcj-free-price.php:145
4587
- #: includes/class-wcj-related-products.php:25
4588
- msgid "Related Products"
4589
- msgstr "Ähnliche Produkte"
4590
-
4591
- #: includes/class-wcj-free-price.php:146
4592
- msgid "Homepage"
4593
- msgstr "Startseite"
4594
-
4595
- #: includes/class-wcj-free-price.php:147
4596
- msgid "Pages (e.g. Shortcodes)"
4597
- msgstr "Seiten (z.B. Shortcodes)"
4598
-
4599
- #: includes/class-wcj-free-price.php:148
4600
- msgid "Archives (Product Categories)"
4601
- msgstr "Archive (Produktkategorien)"
4602
-
4603
- #: includes/class-wcj-free-price.php:162
4604
- msgid "Variations"
4605
- msgstr "Varianten"
4606
-
4607
- #: includes/class-wcj-general.php:25 includes/class-wcj-pdf-invoicing.php:26
4608
- msgid "General"
4609
- msgstr "Allgemein"
4610
-
4611
- #: includes/class-wcj-general.php:26
4612
- msgid ""
4613
- "Separate custom CSS for front and back end. Shortcodes in WordPress text "
4614
- "widgets. Custom roles tool."
4615
- msgstr ""
4616
- "Trenne benutzerdefinierte CSS für Front- und Back-End. Shortcodes in "
4617
- "WordPress Text Widgets. Benutzerdefiniertes Benutzer-Rollenwerkzeug."
4618
-
4619
- #: includes/class-wcj-general.php:32
4620
- msgid "Products Atts"
4621
- msgstr "Produkte Atts"
4622
-
4623
- #: includes/class-wcj-general.php:33
4624
- msgid "All Products and All Attributes."
4625
- msgstr "Alle Produkte und alle Attribute"
4626
-
4627
- #: includes/class-wcj-general.php:36
4628
- msgid "Add/Manage Custom Roles"
4629
- msgstr "Hinzufügen/Verwalten von angepassten Benutzerrollen"
4630
-
4631
- #: includes/class-wcj-general.php:37
4632
- msgid "Custom Roles"
4633
- msgstr "Angepasste Benutzerrollen"
4634
-
4635
- #: includes/class-wcj-general.php:38
4636
- msgid "Manage Custom Roles."
4637
- msgstr "Verwaltung von angepassten Benutzerrollen."
4638
-
4639
- #: includes/class-wcj-general.php:106
4640
- msgid "Both fields are required!"
4641
- msgstr "Beide Felder werden benötigt!"
4642
-
4643
- #: includes/class-wcj-general.php:109
4644
- msgid "Role ID must not be numbers only!"
4645
- msgstr "Rollen-ID darf nur Nummern enthalten!"
4646
-
4647
- #: includes/class-wcj-general.php:113
4648
- msgid "Role successfully added!"
4649
- msgstr "Rolle erfolgreich hinzugefügt!"
4650
-
4651
- #: includes/class-wcj-general.php:115
4652
- msgid "Role already exists!"
4653
- msgstr "Rolle existiert bereits!"
4654
-
4655
- #: includes/class-wcj-general.php:123
4656
- msgid "Role %s successfully deleted!"
4657
- msgstr "Rolle %s erfolgreich gelöscht!"
4658
-
4659
- #: includes/class-wcj-general.php:129 includes/class-wcj-general.php:142
4660
- #: includes/class-wcj-sku.php:166
4661
- #: includes/reports/wcj-class-reports-sales.php:170
4662
- msgid "ID"
4663
- msgstr "ID"
4664
-
4665
- #: includes/class-wcj-general.php:129 includes/class-wcj-general.php:143
4666
- #: includes/export/class-wcj-fields-helper.php:282
4667
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:72
4668
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:106
4669
- msgid "Name"
4670
- msgstr "Name"
4671
-
4672
- #: includes/class-wcj-general.php:129
4673
- #: includes/class-wcj-product-by-user.php:156
4674
- msgid "Actions"
4675
- msgstr "Aktionen"
4676
-
4677
- #: includes/class-wcj-general.php:135
4678
- #: includes/class-wcj-order-custom-statuses.php:220
4679
- #: includes/class-wcj-order-custom-statuses.php:242
4680
- #: includes/class-wcj-product-by-user.php:165
4681
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:151
4682
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:285
4683
- msgid "Delete"
4684
- msgstr "Löschen"
4685
-
4686
- #: includes/class-wcj-general.php:138
4687
- msgid "Existing Roles"
4688
- msgstr "Vorhandene Benutzerrollen"
4689
-
4690
- #: includes/class-wcj-general.php:144
4691
- msgid "Add New Role"
4692
- msgstr "Neue Benutzerrolle hinzufügen"
4693
-
4694
- #: includes/class-wcj-general.php:163
4695
- msgid "PayPal Email"
4696
- msgstr "PayPal Email"
4697
-
4698
- #: includes/class-wcj-general.php:228 includes/class-wcj-general.php:270
4699
- #: includes/class-wcj-product-bulk-price-converter.php:149
4700
- #: includes/class-wcj-sku.php:243
4701
- #: includes/reports/wcj-class-reports-sales.php:171
4702
- #: includes/reports/wcj-class-reports-stock.php:319
4703
- msgid "Product"
4704
- msgstr "Produkt"
4705
-
4706
- #: includes/class-wcj-general.php:229 includes/class-wcj-general.php:271
4707
- #: includes/reports/wcj-class-reports-stock.php:320
4708
- msgid "Category"
4709
- msgstr "Kategorie"
4710
-
4711
- #: includes/class-wcj-general.php:291
4712
- msgid "Total Products:"
4713
- msgstr "Produkte insgesamt:"
4714
-
4715
- #: includes/class-wcj-general.php:336
4716
- msgid "Shortcodes Options"
4717
- msgstr "Shortcode-Optionen"
4718
-
4719
- #: includes/class-wcj-general.php:341
4720
- msgid "Enable All Shortcodes in WordPress Text Widgets"
4721
- msgstr "Aktiviere alle Shortcodes in WordPress Text-Widgets"
4722
-
4723
- #: includes/class-wcj-general.php:342
4724
- msgid ""
4725
- "This will enable all (including non Booster's) shortcodes in WordPress text "
4726
- "widgets."
4727
- msgstr ""
4728
- "Dies aktiviert alle (auch nicht Booster-) Shortcodes in WordPress Text-"
4729
- "Widgets."
4730
-
4731
- #: includes/class-wcj-general.php:349
4732
- msgid "Disable Booster's Shortcodes"
4733
- msgstr "Deaktiviere Booster-Shortcodes"
4734
-
4735
- #: includes/class-wcj-general.php:350
4736
- msgid "Disable all Booster's shortcodes (for memory saving)."
4737
- msgstr "Deaktiviere alle Booster-Shortcodes (zur Speicherersparnis)."
4738
-
4739
- #: includes/class-wcj-general.php:351 includes/class-wcj-general.php:414
4740
- #: includes/class-wcj-general.php:428 includes/class-wcj-general.php:435
4741
- #: includes/class-wcj-general.php:442 includes/class-wcj-general.php:449
4742
- #: includes/class-wcj-product-add-to-cart.php:247
4743
- msgid "Disable"
4744
- msgstr "Deaktviere"
4745
-
4746
- #: includes/class-wcj-general.php:361
4747
- msgid "Custom CSS Options"
4748
- msgstr "Benutzerdefinierte CSS Optionen"
4749
-
4750
- #: includes/class-wcj-general.php:363
4751
- msgid "Another custom CSS, if you need one."
4752
- msgstr "Ein weiteres benutzerdefinierte CSS, wenn Du eins benötigst."
4753
-
4754
- #: includes/class-wcj-general.php:367
4755
- msgid "Custom CSS - Front end (Customers)"
4756
- msgstr "Benutzerdefinierte CSS - Frontend (Kunden)"
4757
-
4758
- #: includes/class-wcj-general.php:374
4759
- msgid "Custom CSS - Back end (Admin)"
4760
- msgstr "Benutzerdefinierte CSS - Backend (Admin)"
4761
-
4762
- #: includes/class-wcj-general.php:385 includes/class-wcj-general.php:390
4763
- msgid "Product Revisions"
4764
- msgstr "Produkt-Überarbeitungen"
4765
-
4766
- #: includes/class-wcj-general.php:401
4767
- msgid "Advanced Options"
4768
- msgstr "Erweiterte Optionen"
4769
-
4770
- #: includes/class-wcj-general.php:406
4771
- msgid "Recalculate Cart Totals on Every Page Load"
4772
- msgstr "Neuberechnung von Warenkorb-Gesamtsummen bei jedem Laden der Seite"
4773
-
4774
- #: includes/class-wcj-general.php:413
4775
- msgid "Disable Loading Datepicker/Weekpicker CSS"
4776
- msgstr "Deaktiviere das Laden von CSS des Datums-/Wochenwählers"
4777
-
4778
- #: includes/class-wcj-general.php:420
4779
- msgid "Datepicker/Weekpicker CSS"
4780
- msgstr "Datums-/Wochenwähler CSS"
4781
-
4782
- #: includes/class-wcj-general.php:427
4783
- msgid "Disable Loading Datepicker/Weekpicker JavaScript"
4784
- msgstr "Deaktiviere das Laden von JavaScript des Datums-/Wochenwählers"
4785
-
4786
- #: includes/class-wcj-general.php:434
4787
- msgid "Disable Loading Timepicker CSS"
4788
- msgstr "Deaktiviere das Laden von CSS des Zeitwählers"
4789
-
4790
- #: includes/class-wcj-general.php:441
4791
- msgid "Disable Loading Timepicker JavaScript"
4792
- msgstr "Deaktiviere das Laden von JavaScript des Zeitwählers"
4793
-
4794
- #: includes/class-wcj-general.php:448
4795
- msgid "Disable Saving PDFs in PHP directory for temporary files"
4796
- msgstr ""
4797
- "Deaktivieren von Speichern von PDFs im PHP-Verzeichnis temporärer Dateien"
4798
-
4799
- #: includes/class-wcj-general.php:459
4800
- msgid "PayPal Email per Product Options"
4801
- msgstr "PayPal-Email pro Produkt-Optionen"
4802
-
4803
- #: includes/class-wcj-general.php:464
4804
- msgid "PayPal Email per Product"
4805
- msgstr "PayPal-Email pro Produkt"
4806
-
4807
- #: includes/class-wcj-general.php:466
4808
- msgid "This will add new meta box to each product's edit page."
4809
- msgstr ""
4810
- "Dadurch wird der Bearbeitungsseite jedes Produkts ein neues Meta-Feld "
4811
- "hinzufügen."
4812
-
4813
- #: includes/class-wcj-general.php:476
4814
- msgid "Session Expiration Options"
4815
- msgstr "Sitzungsablauf-Optionen"
4816
-
4817
- #: includes/class-wcj-general.php:481 includes/class-wcj-general.php:496
4818
- msgid "Session Expiration"
4819
- msgstr "Sitzungsablauf"
4820
-
4821
- #: includes/class-wcj-general.php:488
4822
- msgid "Session Expiring"
4823
- msgstr "Sitzungs läuft ab"
4824
-
4825
- #: includes/class-wcj-general.php:489
4826
- msgid "In seconds. Default: 47 hours (60 * 60 * 47)"
4827
- msgstr "In Sekunden. Standard: 47 Stunden (60 * 60 * 47)"
4828
-
4829
- #: includes/class-wcj-general.php:497
4830
- msgid "In seconds. Default: 48 hours (60 * 60 * 48)"
4831
- msgstr "In Sekunden. Standard: 48 Stunden (60 * 60 * 48)"
4832
-
4833
- #: includes/class-wcj-global-discount.php:28
4834
- msgid "Global Discount"
4835
- msgstr "Globaler Rabatt"
4836
-
4837
- #: includes/class-wcj-global-discount.php:29
4838
- msgid "Add global discount to all WooCommerce products."
4839
- msgstr "Füge allen WooCommerce-Produkten einen Rabatt hinzu."
4840
-
4841
- #: includes/class-wcj-global-discount.php:220
4842
- msgid "Total Groups"
4843
- msgstr "Gruppen-Total"
4844
-
4845
- #: includes/class-wcj-global-discount.php:224
4846
- #: includes/class-wcj-products-xml.php:206
4847
- #: includes/shipping/class-wc-shipping-wcj-custom.php:112
4848
- msgid "Press Save changes after you change this number."
4849
- msgstr "Drücke \"Änderungen speichern\" nachdem Du die Nummer geändert hast."
4850
-
4851
- #: includes/class-wcj-global-discount.php:238
4852
- msgid "Discount Group"
4853
- msgstr "Rabatt-Gruppe"
4854
-
4855
- #: includes/class-wcj-global-discount.php:255
4856
- #: includes/class-wcj-payment-gateways-fees.php:165
4857
- #: includes/class-wcj-purchase-data.php:335
4858
- #: includes/class-wcj-wholesale-price.php:250
4859
- #: includes/class-wcj-wholesale-price.php:424
4860
- msgid "Percent"
4861
- msgstr "Prozent"
4862
-
4863
- #: includes/class-wcj-global-discount.php:256
4864
- #: includes/class-wcj-payment-gateways-fees.php:164
4865
- #: includes/class-wcj-purchase-data.php:334
4866
- #: includes/class-wcj-wholesale-price.php:251
4867
- #: includes/class-wcj-wholesale-price.php:425
4868
- msgid "Fixed"
4869
- msgstr "Festgelegt"
4870
-
4871
- #: includes/class-wcj-global-discount.php:261
4872
- msgid "Must be negative number."
4873
- msgstr "Muss negative Zahl sein."
4874
-
4875
- #: includes/class-wcj-global-discount.php:268
4876
- msgid "Product Scope"
4877
- msgstr "Produktumfang"
4878
-
4879
- #: includes/class-wcj-global-discount.php:273
4880
- msgid "All products"
4881
- msgstr "Alle Produkte"
4882
-
4883
- #: includes/class-wcj-global-discount.php:274
4884
- msgid "Only products that are already on sale"
4885
- msgstr "Nur Produkte, die bereits im Abverkauf sind"
4886
-
4887
- #: includes/class-wcj-global-discount.php:278
4888
- msgid "Include Product Categories"
4889
- msgstr "Produktkategorien einbeziehen"
4890
-
4891
- #: includes/class-wcj-global-discount.php:279
4892
- msgid ""
4893
- "Set this field to apply discount to selected categories only. Leave blank to "
4894
- "apply to all categories."
4895
- msgstr ""
4896
- "Setze dieses Feld, um den Rabatt nur auf ausgewählte Kategorien anzuwenden. "
4897
- "Leer lassen, um auf alle Kategorien anzuwenden."
4898
-
4899
- #: includes/class-wcj-left-to-free-shipping.php:27
4900
- #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:52
4901
- msgid "Left to Free Shipping"
4902
- msgstr "Übrig bis kostenloser Versand"
4903
-
4904
- #: includes/class-wcj-left-to-free-shipping.php:28
4905
- msgid "Display \"left to free shipping\" info in WooCommerce."
4906
- msgstr "Zeige \"übrig bis kostenloser Versand\"-Info in WooCommerce."
4907
-
4908
- #: includes/class-wcj-left-to-free-shipping.php:66
4909
- #: includes/class-wcj-left-to-free-shipping.php:76
4910
- #: includes/class-wcj-left-to-free-shipping.php:86
4911
- #: includes/class-wcj-left-to-free-shipping.php:148
4912
- #: includes/class-wcj-left-to-free-shipping.php:182
4913
- #: includes/class-wcj-left-to-free-shipping.php:220
4914
- #: includes/functions/wcj-functions.php:548
4915
- #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:53
4916
- msgid "%left_to_free% left to free shipping"
4917
- msgstr "%left_to_free% Übrig bis kostenloser Versand"
4918
-
4919
- #: includes/class-wcj-left-to-free-shipping.php:130
4920
- msgid "Left to Free Shipping Info Options"
4921
- msgstr "Übrig bis kostenloser Versand Informations-Optionen"
4922
-
4923
- #: includes/class-wcj-left-to-free-shipping.php:132
4924
- msgid ""
4925
- "This section lets you enable info on cart, mini cart and checkout pages."
4926
- msgstr ""
4927
- "Dieser Abschnitt lässt Dich Informationen zum Warenkorb, Mini-Warenkorb und "
4928
- "Kasse aktivieren."
4929
-
4930
- #: includes/class-wcj-left-to-free-shipping.php:133
4931
- msgid ""
4932
- "You can also use <em>Booster - Left to Free Shipping</em> widget, <em>"
4933
- "[wcj_get_left_to_free_shipping content=\"\"]</em> shortcode or <em>"
4934
- "wcj_get_left_to_free_shipping( $content );</em> function."
4935
- msgstr ""
4936
- "Du kannst auch das <em>Booster - Übrig bis kostenloser Versand</em>-Widget "
4937
- "nutzen, <em>[wcj_get_left_to_free_shipping content=\"\"]</em> Shortcode oder "
4938
- "<em>wcj_get_left_to_free_shipping( $content );</em>-Funktion."
4939
-
4940
- #: includes/class-wcj-left-to-free-shipping.php:134
4941
- msgid ""
4942
- "In content you can use: <em>%left_to_free%</em> and <em>"
4943
- "%free_shipping_min_amount%</em> shortcodes."
4944
- msgstr ""
4945
- "In Inhalt kannst Du nutzen: <em>%left_to_free%</em> und <em>"
4946
- "%free_shipping_min_amount%</em> Shortcodes."
4947
-
4948
- #: includes/class-wcj-left-to-free-shipping.php:138
4949
- msgid "Info on Cart"
4950
- msgstr "Informationen zum Warenkorb"
4951
-
4952
- #: includes/class-wcj-left-to-free-shipping.php:163
4953
- #: includes/class-wcj-left-to-free-shipping.php:201
4954
- #: includes/class-wcj-left-to-free-shipping.php:245
4955
- msgid "Position Order (Priority)"
4956
- msgstr "Position Bestellung (Priorität)"
4957
-
4958
- #: includes/class-wcj-left-to-free-shipping.php:170
4959
- msgid "Info on Mini Cart"
4960
- msgstr "Informationen zum Mini-Warenkorb"
4961
-
4962
- #: includes/class-wcj-left-to-free-shipping.php:193
4963
- #: includes/class-wcj-mini-cart.php:119
4964
- msgid "Before mini cart"
4965
- msgstr "Vor dem Mini-Warenkorb"
4966
-
4967
- #: includes/class-wcj-left-to-free-shipping.php:194
4968
- #: includes/class-wcj-mini-cart.php:120
4969
- msgid "Before buttons"
4970
- msgstr "Vor den Buttons"
4971
-
4972
- #: includes/class-wcj-left-to-free-shipping.php:195
4973
- #: includes/class-wcj-mini-cart.php:121
4974
- msgid "After mini cart"
4975
- msgstr "Nach dem Mini-Warenkorb"
4976
-
4977
- #: includes/class-wcj-left-to-free-shipping.php:208
4978
- msgid "Info on Checkout"
4979
- msgstr "Informationen zur Kasse"
4980
-
4981
- #: includes/class-wcj-left-to-free-shipping.php:252
4982
- msgid "Message on Free Shipping Reached"
4983
- msgstr "Nachricht für kostenlosen Versand erreicht"
4984
-
4985
- #: includes/class-wcj-left-to-free-shipping.php:253
4986
- msgid "You can set it empty"
4987
- msgstr "Du kannst es leer einstellen"
4988
-
4989
- #: includes/class-wcj-left-to-free-shipping.php:255
4990
- #: includes/functions/wcj-functions.php:588
4991
- msgid "You have Free delivery"
4992
- msgstr "Du hast kostenlose Lieferung"
4993
-
4994
- #: includes/class-wcj-mini-cart.php:26
4995
- msgid "Mini Cart"
4996
- msgstr "Mini-Warenkorb"
4997
-
4998
- #: includes/class-wcj-mini-cart.php:27
4999
- msgid "Customize WooCommerce mini cart widget."
5000
- msgstr "Anpassen des WooCommerce Mini-Warenkorb-Widgets."
5001
-
5002
- #: includes/class-wcj-mini-cart.php:74
5003
- msgid "Mini Cart Custom Info Blocks"
5004
- msgstr "Benutzerdefinierte Infoblöcke des Mini-Warenkorbs"
5005
-
5006
- #: includes/class-wcj-more-button-labels.php:26
5007
- msgid "More Button Labels"
5008
- msgstr "Weitere Button-Etiketten"
5009
-
5010
- #: includes/class-wcj-more-button-labels.php:27
5011
- msgid "Set WooCommerce \"Place order\" button label."
5012
- msgstr ""
5013
- "Definieren der WooCommerce \"Bestellung abschicken\"-Button-Beschriftung."
5014
-
5015
- #: includes/class-wcj-more-button-labels.php:52
5016
- msgid "Place order (Order now) Button"
5017
- msgstr "Bestellung abschicken (Jetzt kaufen) Button"
5018
-
5019
- #: includes/class-wcj-more-button-labels.php:59
5020
- msgid "leave blank for WooCommerce default"
5021
- msgstr "Leer lassen für WooCommerce-Voreinstellung"
5022
-
5023
- #: includes/class-wcj-more-button-labels.php:60
5024
- msgid "Button on the checkout page."
5025
- msgstr "Button auf der Kasse Seite."
5026
-
5027
- #: includes/class-wcj-multicurrency-product-base-price.php:27
5028
- msgid "Multicurrency Product Base Price"
5029
- msgstr "Multiwährungen Produktgrundpreis"
5030
-
5031
- #: includes/class-wcj-multicurrency-product-base-price.php:28
5032
- msgid "Enter prices for WooCommerce products in different currencies."
5033
- msgstr ""
5034
- "Gib die Preise für WooCommerce-Produkte in verschiedenen Währungen ein."
5035
-
5036
- #: includes/class-wcj-multicurrency.php:26
5037
- msgid "Multicurrency (Currency Switcher)"
5038
- msgstr "Multiwährungen (Währungsumschalter)"
5039
-
5040
- #: includes/class-wcj-multicurrency.php:27
5041
- msgid "Add multiple currencies (currency switcher) to WooCommerce."
5042
- msgstr "Füge mehrere Währungen (Währungsumschalter) WooCommerce hinzu."
5043
-
5044
- #: includes/class-wcj-multicurrency.php:76
5045
- #: includes/class-wcj-price-by-user-role.php:163
5046
- #: includes/class-wcj-product-by-user.php:205
5047
- #: includes/export/class-wcj-fields-helper.php:286
5048
- #: includes/price-by-country/class-wcj-price-by-country-local.php:129
5049
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:154
5050
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:298
5051
- msgid "Regular Price"
5052
- msgstr ""
5053
- "\n"
5054
- "Regulärer Preis"
5055
-
5056
- #: includes/class-wcj-multicurrency.php:85
5057
- #: includes/class-wcj-price-by-user-role.php:172
5058
- #: includes/class-wcj-product-by-user.php:206
5059
- #: includes/export/class-wcj-fields-helper.php:287
5060
- #: includes/price-by-country/class-wcj-price-by-country-local.php:136
5061
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:155
5062
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:306
5063
- msgid "Sale Price"
5064
- msgstr "Verkaufspreis"
5065
-
5066
- #: includes/class-wcj-multicurrency.php:371
5067
- msgid ""
5068
- "After setting currencies in the Currencies Options below, use <em>Booster - "
5069
- "Multicurrency Switcher</em> widget, or <em>"
5070
- "[wcj_currency_select_drop_down_list]</em> shortcode. If you want to insert "
5071
- "switcher in your PHP code, just use <em>echo do_shortcode( "
5072
- "'[wcj_currency_select_drop_down_list]' );</em>"
5073
- msgstr ""
5074
- "Nach dem Setzen von Währungen in den Währungsoptionen unten, nutze <em>"
5075
- "Booster - Multiwährungen-Umschalter</em> widget oder <em>"
5076
- "[wcj_currency_select_drop_down_list]</em> Shortcode. Wenn Du den Umschalter "
5077
- "in Deinem PHP-Code einfügen möchtest, nutze dafür einfach <em>echo "
5078
- "do_shortcode( '[wcj_currency_select_drop_down_list]' );</em>"
5079
-
5080
- #: includes/class-wcj-multicurrency.php:405
5081
- msgid "Multicurrency on per Product Basis"
5082
- msgstr "Multiwährungen auf einer pro Produktbasis"
5083
-
5084
- #: includes/class-wcj-multicurrency.php:407
5085
- msgid "This will add meta boxes in product edit."
5086
- msgstr "Dies wird Meta-Boxen der Produktbearbeitung hinzufügen."
5087
-
5088
- #: includes/class-wcj-multicurrency.php:413
5089
- #: includes/class-wcj-price-by-country.php:184
5090
- msgid "Revert Currency to Default on Checkout"
5091
- msgstr ""
5092
- "Zurücksetzen der Währung auf Voreinstellung, sobald Kassenseite geladen wird"
5093
-
5094
- #: includes/class-wcj-multicurrency.php:420
5095
- msgid "Rounding"
5096
- msgstr "Rundung"
5097
-
5098
- #: includes/class-wcj-multicurrency.php:421
5099
- msgid "If using exchange rates, choose rounding here."
5100
- msgstr "Wenn Du Wechselkurse verwendest, wähle hier die Rundung."
5101
-
5102
- #: includes/class-wcj-multicurrency.php:426
5103
- #: includes/class-wcj-price-by-country.php:198
5104
- msgid "No rounding"
5105
- msgstr "Keine Rundung"
5106
-
5107
- #: includes/class-wcj-multicurrency.php:427
5108
- #: includes/class-wcj-price-by-country.php:199
5109
- msgid "Round"
5110
- msgstr "Rund"
5111
-
5112
- #: includes/class-wcj-multicurrency.php:428
5113
- #: includes/class-wcj-price-by-country.php:201
5114
- msgid "Round up"
5115
- msgstr "Aufrunden"
5116
-
5117
- #: includes/class-wcj-multicurrency.php:429
5118
- #: includes/class-wcj-price-by-country.php:200
5119
- msgid "Round down"
5120
- msgstr "Abrunden"
5121
-
5122
- #: includes/class-wcj-multicurrency.php:433
5123
- msgid "Rounding Precision"
5124
- msgstr "Rundungsgenauigkeit"
5125
-
5126
- #: includes/class-wcj-multicurrency.php:434
5127
- msgid "If rounding enabled, set precision here."
5128
- msgstr "Wenn die Rundung aktiviert ist, stelle hier die Genauigkeit ein."
5129
-
5130
- #: includes/class-wcj-multicurrency.php:447
5131
- msgid ""
5132
- "One currency probably should be set to current (original) shop currency with "
5133
- "an exchange rate of 1."
5134
- msgstr ""
5135
- "Eine Währung sollte vielleicht auf die aktuelle (ursprüngliche) "
5136
- "Geschäftswährung mit einem Wechselkurs von 1 gesetzt werden."
5137
-
5138
- #: includes/class-wcj-multicurrency.php:503
5139
- msgid "Role Defaults"
5140
- msgstr "Standardrollen"
5141
-
5142
- #: includes/class-wcj-multicurrency.php:505
5143
- #: includes/class-wcj-order-min-amount.php:263
5144
- #: includes/class-wcj-price-by-user-role.php:414
5145
- msgid ""
5146
- "Custom roles can be added via \"Add/Manage Custom Roles\" tool in Booster's "
5147
- "<a href=\"%s\">General</a> module."
5148
- msgstr ""
5149
- "Benutzerdefinierte Rollen können über das Werkzeug \"Hinzufügen/Verwalten "
5150
- "von angepassten Benutzerrollen\" im Booster-Modul <a href=\"%s\">"
5151
- "Allgemein</a> hinzugefügt werden."
5152
-
5153
- #: includes/class-wcj-multicurrency.php:510
5154
- msgid "Roles"
5155
- msgstr "Rollen"
5156
-
5157
- #: includes/class-wcj-multicurrency.php:511
5158
- #: includes/class-wcj-wholesale-price.php:497
5159
- msgid "Save settings after you change this option. Leave blank to disable."
5160
- msgstr ""
5161
- "Speichere die Einstellungen nach der Änderung dieser Option. Leer lassen zum "
5162
- "Deaktivieren."
5163
-
5164
- #: includes/class-wcj-multicurrency.php:534
5165
- msgid "No default currency"
5166
- msgstr "Keine Standardwährung"
5167
-
5168
- #: includes/class-wcj-old-slugs.php:25
5169
- msgid "Old Slugs"
5170
- msgstr "Alte Slugs"
5171
-
5172
- #: includes/class-wcj-old-slugs.php:26
5173
- msgid "Remove old WooCommerce products slugs."
5174
- msgstr "Alte WooCommerce-Produkt-Slugs entfernen."
5175
-
5176
- #: includes/class-wcj-old-slugs.php:32
5177
- msgid "Remove Old Slugs"
5178
- msgstr "Entferne alte Slugs"
5179
-
5180
- #: includes/class-wcj-old-slugs.php:33 includes/class-wcj-old-slugs.php:90
5181
- msgid "Tool removes old slugs/permalinks from database."
5182
- msgstr "Wekrzeug entfernt alte Slugs/Permalinks aus der Datenbank."
5183
-
5184
- #: includes/class-wcj-old-slugs.php:89
5185
- msgid "Booster - Remove Old Product Slugs"
5186
- msgstr "Booster - Entferne alte Produkt-Slugs"
5187
-
5188
- #: includes/class-wcj-old-slugs.php:95
5189
- msgid "Old products slugs found:"
5190
- msgstr "Alte Produkt-Slugs gefunden:"
5191
-
5192
- #: includes/class-wcj-old-slugs.php:103
5193
- msgid "None-products slugs found:"
5194
- msgstr "Keine Produkt-Slugs gefunden:"
5195
-
5196
- #: includes/class-wcj-old-slugs.php:110
5197
- msgid "No old slugs found."
5198
- msgstr "Keine alten Slugs gefunden."
5199
-
5200
- #: includes/class-wcj-order-custom-statuses.php:26
5201
- msgid "Order Custom Statuses"
5202
- msgstr "Benutzerdefinierte Bestellzustände"
5203
-
5204
- #: includes/class-wcj-order-custom-statuses.php:27
5205
- msgid "Custom statuses for WooCommerce orders."
5206
- msgstr "Benutzerdefinierte Zustände für WooCommerce-Bestellungen"
5207
-
5208
- #: includes/class-wcj-order-custom-statuses.php:33
5209
- #: includes/class-wcj-order-custom-statuses.php:311
5210
- msgid "Custom Statuses"
5211
- msgstr "Benutzerdefinierte Zustände"
5212
-
5213
- #: includes/class-wcj-order-custom-statuses.php:34
5214
- msgid "Tool lets you add or delete any custom status for WooCommerce orders."
5215
- msgstr ""
5216
- "Mit diesem Werkzeug kannst Du jeden benutzerdefinierten Zustand für "
5217
- "WooCommerce-Bestellungen hinzufügen oder löschen."
5218
-
5219
- #: includes/class-wcj-order-custom-statuses.php:64
5220
- msgctxt "Order status"
5221
- msgid "Pending payment"
5222
- msgstr "Ausstehende Zahlung"
5223
-
5224
- #: includes/class-wcj-order-custom-statuses.php:65
5225
- #: includes/functions/wcj-functions.php:1160
5226
- msgctxt "Order status"
5227
- msgid "Processing"
5228
- msgstr "Verarbeitung"
5229
-
5230
- #: includes/class-wcj-order-custom-statuses.php:66
5231
- msgctxt "Order status"
5232
- msgid "On hold"
5233
- msgstr "In Wartestellung"
5234
-
5235
- #: includes/class-wcj-order-custom-statuses.php:67
5236
- #: includes/functions/wcj-functions.php:1162
5237
- msgctxt "Order status"
5238
- msgid "Completed"
5239
- msgstr "Abgeschlossen"
5240
-
5241
- #: includes/class-wcj-order-custom-statuses.php:68
5242
- #: includes/functions/wcj-functions.php:1163
5243
- msgctxt "Order status"
5244
- msgid "Cancelled"
5245
- msgstr "Abgebrochen"
5246
-
5247
- #: includes/class-wcj-order-custom-statuses.php:69
5248
- #: includes/functions/wcj-functions.php:1164
5249
- msgctxt "Order status"
5250
- msgid "Refunded"
5251
- msgstr "Rückerstattet"
5252
-
5253
- #: includes/class-wcj-order-custom-statuses.php:70
5254
- #: includes/functions/wcj-functions.php:1165
5255
- msgctxt "Order status"
5256
- msgid "Failed"
5257
- msgstr "Fehlgeschlagen"
5258
-
5259
- #: includes/class-wcj-order-custom-statuses.php:160
5260
- msgid "Status slug is empty. Status was not added!"
5261
- msgstr "Status-Slug ist leer. Status wurde nicht hinzugefügt!"
5262
-
5263
- #: includes/class-wcj-order-custom-statuses.php:163
5264
- msgid ""
5265
- "The length of status slug must be 17 or less characters. Status was not "
5266
- "added!"
5267
- msgstr ""
5268
- "Die Länge des Status-Slugs muss 17 oder weniger Zeichen sein. Status wurde "
5269
- "nicht hinzugefügt!"
5270
-
5271
- #: includes/class-wcj-order-custom-statuses.php:166
5272
- msgid "Status label is empty. Status was not added!"
5273
- msgstr "Status-Label ist leer. Status wurde nicht hinzugefügt!"
5274
-
5275
- #: includes/class-wcj-order-custom-statuses.php:173
5276
- msgid "Duplicate slug. Status was not added!"
5277
- msgstr "Doppelter Slug. Status wurde nicht hinzugefügt!"
5278
-
5279
- #: includes/class-wcj-order-custom-statuses.php:183
5280
- msgid "New status has been successfully added!"
5281
- msgstr "Neuer Status wurde erfolgreich hinzugefügt!"
5282
-
5283
- #: includes/class-wcj-order-custom-statuses.php:185
5284
- msgid "Status was not added."
5285
- msgstr "Zustand wurde nicht hinzugefügt."
5286
-
5287
- #: includes/class-wcj-order-custom-statuses.php:203
5288
- msgid "Status has been successfully deleted."
5289
- msgstr "Status wurde erfolgreich gelöscht."
5290
-
5291
- #: includes/class-wcj-order-custom-statuses.php:205
5292
- msgid "Delete failed."
5293
- msgstr "Löschung fehlgeschlagen."
5294
-
5295
- #: includes/class-wcj-order-custom-statuses.php:210
5296
- msgid "Booster - Custom Statuses"
5297
- msgstr "Booster - benutzerdefinierter Zustand"
5298
-
5299
- #: includes/class-wcj-order-custom-statuses.php:211
5300
- msgid ""
5301
- "The tool lets you add or delete any custom status for WooCommerce orders."
5302
- msgstr ""
5303
- "Mit dem Werkzeug kannst Du jeden benutzerdefinierten Status für WooCommerce-"
5304
- "Bestellungen hinzufügen oder löschen."
5305
-
5306
- #: includes/class-wcj-order-custom-statuses.php:213
5307
- msgid "Statuses"
5308
- msgstr "Zustände"
5309
-
5310
- #: includes/class-wcj-order-custom-statuses.php:216
5311
- msgid "Slug"
5312
- msgstr "Titelform"
5313
-
5314
- #: includes/class-wcj-order-custom-statuses.php:218
5315
- #: includes/class-wcj-order-custom-statuses.php:257
5316
- msgid "Icon Code"
5317
- msgstr "Symbolcode"
5318
-
5319
- #: includes/class-wcj-order-custom-statuses.php:219
5320
- #: includes/class-wcj-order-custom-statuses.php:259
5321
- msgid "Icon Color"
5322
- msgstr "Symbol Farbe"
5323
-
5324
- #: includes/class-wcj-order-custom-statuses.php:255
5325
- msgid "Slug (without wc- prefix)"
5326
- msgstr "Slug (ohne wc- Präfix)"
5327
-
5328
- #: includes/class-wcj-order-custom-statuses.php:258
5329
- msgid "You can check icon codes <a target=\"_blank\" href=\"%s\">here</a>."
5330
- msgstr ""
5331
- "Du kannst die Symbolcodes <a target=\"_blank\" href=\"%s\">hier</a> "
5332
- "überprüfen."
5333
-
5334
- #: includes/class-wcj-order-custom-statuses.php:261
5335
- msgid "Add new custom status"
5336
- msgstr "Neuen benutzerdefinierten Status hinzufügen"
5337
-
5338
- #: includes/class-wcj-order-custom-statuses.php:283
5339
- #: includes/class-wcj-order-custom-statuses.php:284
5340
- msgid "Mark"
5341
- msgstr "Kennzeichen"
5342
-
5343
- #: includes/class-wcj-order-custom-statuses.php:316
5344
- #: includes/gateways/class-wc-gateway-wcj-custom.php:138
5345
- msgid "Default Order Status"
5346
- msgstr "Standardbestellzustand"
5347
-
5348
- #: includes/class-wcj-order-custom-statuses.php:317
5349
- #: includes/gateways/class-wc-gateway-wcj-custom.php:139
5350
- msgid "Enable Custom Statuses feature to add custom statuses to the list."
5351
- msgstr ""
5352
- "Aktiviere die Funktion \"Benutzerdefinierter Zustand\", um sie der Liste "
5353
- "benutzerdefinierter Zustände hinzuzufügen."
5354
-
5355
- #: includes/class-wcj-order-custom-statuses.php:318
5356
- msgid ""
5357
- "You can change the default order status here. However payment gateways can "
5358
- "change this status immediatelly on order creation. E.g. BACS gateway will "
5359
- "change status to On-hold."
5360
- msgstr ""
5361
- "Hier kannst Du den voreingestellten Bestellzustand ändern. Allerdings können "
5362
- "Zahlungs-Gateways diesen Status sofort bei der Bestellerstellung ändern. z.B."
5363
- " das BACS-Gateway wechselt den Zustand auf \"In Wartestellung\"."
5364
-
5365
- #: includes/class-wcj-order-custom-statuses.php:325
5366
- msgid "Add All Statuses to Admin Order Bulk Actions"
5367
- msgstr "Alle Zustände den Administrator-Bestellung-Bulk-Aktionen hinzufügen"
5368
-
5369
- #: includes/class-wcj-order-custom-statuses.php:332
5370
- msgid "Add Custom Statuses to Admin Reports"
5371
- msgstr "Hinzufügen von benutzerdefinierten Zuständen zu Administratorberichten"
5372
-
5373
- #: includes/class-wcj-order-min-amount.php:27
5374
- #: includes/class-wcj-order-min-amount.php:198
5375
- msgid "Order Minimum Amount"
5376
- msgstr "Bestellmindestbetrag"
5377
-
5378
- #: includes/class-wcj-order-min-amount.php:28
5379
- msgid "Minimum WooCommerce order amount (optionally by user role)."
5380
- msgstr "Mindest-WooCommerce-Bestellmenge (optional nach Benutzerrolle)."
5381
-
5382
- #: includes/class-wcj-order-min-amount.php:200
5383
- msgid "This section lets you set minimum order amount."
5384
- msgstr "Dieser Abschnitt lässt Dich die minimale Bestellmenge festlegen."
5385
-
5386
- #: includes/class-wcj-order-min-amount.php:204
5387
- msgid "Amount"
5388
- msgstr "Betrag"
5389
-
5390
- #: includes/class-wcj-order-min-amount.php:205
5391
- msgid "Minimum order amount. Set to 0 to disable."
5392
- msgstr "Minimaler Bestellwert. Auf 0 stellen um zu deaktivieren."
5393
-
5394
- #: includes/class-wcj-order-min-amount.php:215
5395
- msgid "Exclude Shipping from Cart Total"
5396
- msgstr "Versandkosten aus der Gesamtsumme im Warenkorb ausschließen"
5397
-
5398
- #: includes/class-wcj-order-min-amount.php:216
5399
- msgid "Exclude"
5400
- msgstr "Ausschließen"
5401
-
5402
- #: includes/class-wcj-order-min-amount.php:222
5403
- msgid "Error message"
5404
- msgstr "Fehlermeldung"
5405
-
5406
- #: includes/class-wcj-order-min-amount.php:224
5407
- #: includes/class-wcj-order-min-amount.php:241
5408
- msgid ""
5409
- "Message to customer if order is below minimum amount. Default: You must have "
5410
- "an order with a minimum of %s to place your order, your current order total "
5411
- "is %s."
5412
- msgstr ""
5413
- "Nachricht an Kunden, wenn Auftrag unter der Mindestmenge ist. Voreinstellung:"
5414
- " Du musst einen Auftrag mit einem Minimum von %s haben, um Deine Bestellung "
5415
- "abschicken zu können, die aktuelle Gesamtsumme Ihrer Bestellung beträgt %s."
5416
-
5417
- #: includes/class-wcj-order-min-amount.php:232
5418
- msgid "Add notice to cart page also"
5419
- msgstr "Dem Warenkorb auch einen Hinweis hinzufügen"
5420
-
5421
- #: includes/class-wcj-order-min-amount.php:239
5422
- msgid "Message on cart page"
5423
- msgstr "Nachricht auf Warenkorbseite"
5424
-
5425
- #: includes/class-wcj-order-min-amount.php:249
5426
- msgid ""
5427
- "Stop customer from seeing the Checkout page if minimum amount not reached."
5428
- msgstr ""
5429
- "Der Kunde bekommt die Kassenseite nicht zu sehen, wenn der Mindestbetrag "
5430
- "nicht erreicht wurde."
5431
-
5432
- #: includes/class-wcj-order-min-amount.php:250
5433
- msgid "Redirect back to Cart page"
5434
- msgstr "Zurück zur Warenkorb-Seite"
5435
-
5436
- #: includes/class-wcj-order-min-amount.php:260
5437
- msgid "Order Minimum Amount by User Role"
5438
- msgstr "Bestellmindestbetrag nach Benutzerrolle"
5439
-
5440
- #: includes/class-wcj-order-numbers.php:25
5441
- #: includes/class-wcj-order-numbers.php:203
5442
- msgid "Order Numbers"
5443
- msgstr "Bestellnummern"
5444
-
5445
- #: includes/class-wcj-order-numbers.php:26
5446
- msgid ""
5447
- "WooCommerce sequential order numbering, custom order number prefix, suffix "
5448
- "and number width."
5449
- msgstr ""
5450
- "WooCommerce aufeinanderfolgende Bestellnummerierung, benutzerdefinierte "
5451
- "Bestellnummern Präfix und Nummernbreite."
5452
-
5453
- #: includes/class-wcj-order-numbers.php:32
5454
- msgid "Orders Renumerate"
5455
- msgstr "Bestellungen renumerieren"
5456
-
5457
- #: includes/class-wcj-order-numbers.php:33
5458
- msgid "Tool renumerates all orders."
5459
- msgstr "Werkzeug renumeriert alle Bestellungen"
5460
-
5461
- #: includes/class-wcj-order-numbers.php:114
5462
- msgid "Orders successfully renumerated!"
5463
- msgstr "Bestellungen erfolgreich renumeriert!"
5464
-
5465
- #: includes/class-wcj-order-numbers.php:118
5466
- msgid ""
5467
- "Press the button below to renumerate all existing orders starting from order "
5468
- "counter settings in WooCommerce > Settings > Booster > Order Numbers."
5469
- msgstr ""
5470
- "Drücke auf den Button unten, um alle vorhandenen Bestellungen zur "
5471
- "renumerieren, beginnend von der Bestellungen-Zählereinstellungen in "
5472
- "WooCmmerce > Einstellungen > Booster > Bestellnummern"
5473
-
5474
- #: includes/class-wcj-order-numbers.php:121
5475
- msgid "Renumerate orders"
5476
- msgstr "Renumeriere Bestellungen"
5477
-
5478
- #: includes/class-wcj-order-numbers.php:205
5479
- msgid ""
5480
- "This section lets you enable sequential order numbering, set custom number "
5481
- "prefix, suffix and width."
5482
- msgstr ""
5483
- "Dieser Abschnitt lässt Dich die fortlaufende Bestellnummerierung aktivieren, "
5484
- "benutzerspezifisches Nummern Präfix, Suffix und Breite festlegen."
5485
-
5486
- #: includes/class-wcj-order-numbers.php:209
5487
- msgid "Make Order Numbers Sequential"
5488
- msgstr "Erzeuge aufeinanderfolgende Bestellnummern"
5489
-
5490
- #: includes/class-wcj-order-numbers.php:216
5491
- msgid "Next Order Number"
5492
- msgstr "Nächste Bestellnummer"
5493
-
5494
- #: includes/class-wcj-order-numbers.php:217
5495
- msgid "Next new order will be given this number."
5496
- msgstr "Nächste Neubestellung erhält diese Nummer."
5497
-
5498
- #: includes/class-wcj-order-numbers.php:217
5499
- msgid "Use Renumerate Orders tool for existing orders."
5500
- msgstr ""
5501
- "Nutze das Werkzeug \"Bestellungen renumerieren\" für vorhandene Bestellungen"
5502
-
5503
- #: includes/class-wcj-order-numbers.php:218
5504
- msgid "This will be ignored if sequential order numbering is disabled."
5505
- msgstr ""
5506
- "Dies wird ignoriert wenn aufeinanderfolgende Bestellnummerierung deaktiviert "
5507
- "ist."
5508
-
5509
- #: includes/class-wcj-order-numbers.php:224
5510
- msgid "Order Number Custom Prefix"
5511
- msgstr "Benutzerdefinierter Bestellnummer-Präfix"
5512
-
5513
- #: includes/class-wcj-order-numbers.php:225
5514
- msgid ""
5515
- "Prefix before order number (optional). This will change the prefixes for all "
5516
- "existing orders."
5517
- msgstr ""
5518
- "Präfix vor Bestellnummer (optional). Dies ändert die Präfixe für alle "
5519
- "vorhandenen Bestellungen."
5520
-
5521
- #: includes/class-wcj-order-numbers.php:232
5522
- msgid "Order Number Date Prefix"
5523
- msgstr "Bestellnummer Datums-Präfix"
5524
-
5525
- #: includes/class-wcj-order-numbers.php:234
5526
- msgid ""
5527
- "Date prefix before order number (optional). This will change the prefixes "
5528
- "for all existing orders. Value is passed directly to PHP `date` function, so "
5529
- "most of PHP date formats can be used. The only exception is using `\\` "
5530
- "symbol in date format, as this symbol will be excluded from date. Try: Y-m-d-"
5531
- " or mdy."
5532
- msgstr ""
5533
- "Datums-Präfix vor Bestellnummer (optional). Dies ändert die Präfixe für alle "
5534
- "vorhandenen Bestellungen. Der wird direkt an die PHP `date` Funktion "
5535
- "weitergegeben, daher können die meisten PHP date Formate genutzt werden. Die "
5536
- "einzige Ausnahme is das `\\` Symbol im Datumsformat, denn dieses Symbol wird "
5537
- "von einem Datum ausgeschlossen. Versuche: Y-m-d- or mdy."
5538
-
5539
- #: includes/class-wcj-order-numbers.php:242
5540
- msgid "Order Number Width"
5541
- msgstr "Bestellnummernbreite"
5542
-
5543
- #: includes/class-wcj-order-numbers.php:244
5544
- msgid ""
5545
- "Minimum width of number without prefix (zeros will be added to the left side)"
5546
- ". This will change the minimum width of order number for all existing orders."
5547
- " E.g. set to 5 to have order number displayed as 00001 instead of 1. Leave "
5548
- "zero to disable."
5549
- msgstr ""
5550
- "Minimale Breite der Nummer ohne Präfix (Nullen werden auf der linken Seite "
5551
- "hinzugefügt). Dies ändert die Mindestbreite der Bestellnummer für alle "
5552
- "bestehenden Bestellungen. z.B. Auf 5 gesetzt, damit die Bestellnummer als "
5553
- "00001 anstelle von 1 angezeigt wird. Lasse Null um zu deaktivieren."
5554
-
5555
- #: includes/class-wcj-order-numbers.php:252
5556
- msgid "Order Number Custom Suffix"
5557
- msgstr "Bestellnummer benutzerdefinierter Suffix"
5558
-
5559
- #: includes/class-wcj-order-numbers.php:254
5560
- msgid ""
5561
- "Suffix after order number (optional). This will change the suffixes for all "
5562
- "existing orders."
5563
- msgstr ""
5564
- "Suffix nach der Bestellnummer (optional). Dies ändert die Suffixe für alle "
5565
- "vorhandenen Bestellungen."
5566
-
5567
- #: includes/class-wcj-order-numbers.php:262
5568
- msgid "Order Number Date Suffix"
5569
- msgstr "Bestellnummer Datum Suffix"
5570
-
5571
- #: includes/class-wcj-order-numbers.php:264
5572
- msgid ""
5573
- "Date suffix after order number (optional). This will change the suffixes for "
5574
- "all existing orders. Value is passed directly to PHP `date` function, so "
5575
- "most of PHP date formats can be used. The only exception is using `\\` "
5576
- "symbol in date format, as this symbol will be excluded from date. Try: Y-m-d-"
5577
- " or mdy."
5578
- msgstr ""
5579
- "Datumssuffix nach Bestellnummer (optional). Dies ändert die Suffixe für alle "
5580
- "vorhandenen Bestellungen. Wert wird direkt an PHP `date`-Funktion übergeben, "
5581
- "so dass die meisten PHP-Datumsformate verwendet werden können. Die einzige "
5582
- "Ausnahme ist die Verwendung von `\\` Symbol im Datumsformat, da dieses "
5583
- "Symbol vom Datum ausgeschlossen wird. Versuche: Y-m-d- oder mdy."
5584
-
5585
- #: includes/class-wcj-order-numbers.php:272
5586
- msgid "Use MySQL Transaction"
5587
- msgstr "Verwende MySQL-Transaktion"
5588
-
5589
- #: includes/class-wcj-order-numbers.php:274
5590
- msgid ""
5591
- "This should be enabled if you have a lot of simultaneous orders in your shop "
5592
- "- to prevent duplicate order numbers (sequential)."
5593
- msgstr ""
5594
- "Dies sollte aktiviert sein, wenn Du viele gleichzeitige Bestellungen in "
5595
- "Deinem Shop hast - um doppelte Bestellnummern (aufeinanderfolgend) zu "
5596
- "verhindern."
5597
-
5598
- #: includes/class-wcj-order-numbers.php:280
5599
- msgid "Enable Order Tracking by Custom Number"
5600
- msgstr "Auftragsnachverfolgung nach Kundennummer aktivieren"
5601
-
5602
- #: includes/class-wcj-orders.php:25
5603
- msgid "Orders"
5604
- msgstr "Bestellungen"
5605
-
5606
- #: includes/class-wcj-orders.php:26
5607
- msgid ""
5608
- "Orders auto-complete. Custom admin order list columns. Admin order currency. "
5609
- "Admin order list multiple status filtering."
5610
- msgstr ""
5611
- "Aufträge automatisch abschließen. Benutzerdefinierte Admin-"
5612
- "Bestelllistenspalten. Admin-Bestellwährung. Admin-Bestellliste "
5613
- "Mehrfachstatusfilterung."
5614
-
5615
- #: includes/class-wcj-orders.php:129
5616
- msgid "Not Completed"
5617
- msgstr "Nicht vollständig"
5618
-
5619
- #: includes/class-wcj-orders.php:235
5620
- #: includes/export/class-wcj-fields-helper.php:117
5621
- #: includes/export/class-wcj-fields-helper.php:202
5622
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:261
5623
- msgid "Order Currency"
5624
- msgstr "Bestellwährung"
5625
-
5626
- #: includes/class-wcj-orders.php:236
5627
- msgid "Save order after you change this field."
5628
- msgstr "Bestellung speichern nach dem Du das Feld geändert hast."
5629
-
5630
- #: includes/class-wcj-orders.php:264
5631
- msgid "All countries"
5632
- msgstr "Alle Länder"
5633
-
5634
- #: includes/class-wcj-orders.php:388 includes/class-wcj-orders.php:393
5635
- msgid "Admin Order Currency"
5636
- msgstr "Admin Bestellwährung"
5637
-
5638
- #: includes/class-wcj-orders.php:395
5639
- msgid ""
5640
- "When enabled this will add \"Booster: Orders\" metabox to each order's edit "
5641
- "page."
5642
- msgstr "Wenn aktiviert, fügt man \"Booster: Bestellungen\"-Metabox hinzu."
5643
-
5644
- #: includes/class-wcj-orders.php:401
5645
- msgid "Admin Order Currency Method"
5646
- msgstr "Admin Bestellwährung-Methode"
5647
-
5648
- #: includes/class-wcj-orders.php:402
5649
- msgid ""
5650
- "Choose if you want changed order currency to be saved directly to DB, or if "
5651
- "you want to use filter. When using <em>filter</em> method, changes will be "
5652
- "active only when \"Admin Order Currency\" section is enabled. When using <em>"
5653
- "directly to DB</em> method, changes will be permanent, that is even if "
5654
- "Booster plugin is removed."
5655
- msgstr ""
5656
- "Wähle aus, ob die geänderte Bestellwährung direkt in Datenbank gespeichert "
5657
- "werden soll oder ob Du Filter verwenden möchtest. Wenn Du die <em>filter</em>"
5658
- "-Methode verwendest, werden die Änderungen nur dann aktiviert, wenn der "
5659
- "Abschnitt \"Admin Bestellwährung\" aktiviert ist. Bei der Verwendung der <em>"
5660
- "Direkt in Datenbank</em>-Methode sind Änderungen dauerhaft, so auch wenn das "
5661
- "Booster-Plugin entfernt wird."
5662
-
5663
- #: includes/class-wcj-orders.php:408
5664
- msgid "Directly to DB"
5665
- msgstr "Direkt in Datenbank"
5666
-
5667
- #: includes/class-wcj-orders.php:416
5668
- msgid "Orders Auto-Complete"
5669
- msgstr "Automatische Bestellvervollständigung"
5670
-
5671
- #: includes/class-wcj-orders.php:418
5672
- msgid "This section lets you enable orders auto-complete function."
5673
- msgstr ""
5674
- "Dieser Abschnitt lässt Dich Bestellungs-Auto-Vervollständigungsfunktion "
5675
- "aktivieren."
5676
-
5677
- #: includes/class-wcj-orders.php:422
5678
- msgid "Auto-complete all WooCommerce orders"
5679
- msgstr "Automatische Vervollständigung aller WooCommerce-Bestellungen"
5680
-
5681
- #: includes/class-wcj-orders.php:424
5682
- msgid ""
5683
- "E.g. if you sell digital products then you are not shipping anything and you "
5684
- "may want auto-complete all your orders."
5685
- msgstr ""
5686
- "Z.B. Wenn Du digitale Produkte verkaufst, dann versende nichts und Du willst "
5687
- "vielleicht die Bestellungen automatisch abwickeln."
5688
-
5689
- #: includes/class-wcj-orders.php:434
5690
- msgid "Admin Orders List Custom Columns"
5691
- msgstr "Admin-Bestellliste benutzerdefinierte Spalten"
5692
-
5693
- #: includes/class-wcj-orders.php:436 includes/class-wcj-purchase-data.php:386
5694
- msgid "This section lets you add custom columns to WooCommerce orders list."
5695
- msgstr ""
5696
- "Dieser Abschnitt lässt Dich benutzerdefinierte Spalten der WooCommerce-"
5697
- "Bestellliste hinzufügen."
5698
-
5699
- #: includes/class-wcj-orders.php:447
5700
- msgid "Custom Columns Total Number"
5701
- msgstr "Gesamtanzahl benutzerdefinierter Spalten"
5702
-
5703
- #: includes/class-wcj-orders.php:462
5704
- msgid "Custom Column"
5705
- msgstr "benutzerdefinierte Spalte"
5706
-
5707
- #: includes/class-wcj-orders.php:477
5708
- msgid "You can use shortcodes here."
5709
- msgstr "Hier kannst Du Shortcodes verwenden."
5710
-
5711
- #: includes/class-wcj-orders.php:491
5712
- msgid "Admin Orders List Multiple Status"
5713
- msgstr "Admin-Bestellliste Mehrfache Status"
5714
-
5715
- #: includes/class-wcj-orders.php:496
5716
- msgid "Multiple Status Filtering"
5717
- msgstr "Mehrfache Statusfilterung"
5718
-
5719
- #: includes/class-wcj-orders.php:502
5720
- msgid "Add as multiple select"
5721
- msgstr "Als Mehrfachauswahl hinzufügen"
5722
-
5723
- #: includes/class-wcj-orders.php:503
5724
- msgid "Add as checkboxes"
5725
- msgstr "Als Kontrollkästchen hinzufügen"
5726
-
5727
- #: includes/class-wcj-orders.php:507
5728
- msgid "Hide Default Statuses Menu"
5729
- msgstr "Ausblenden des Standard-Status-Menüs"
5730
-
5731
- #: includes/class-wcj-orders.php:514
5732
- msgid "Add \"Not Completed\" Status Link to Default Statuses Menu"
5733
- msgstr "Hinzufügen \"Nicht vollständig\"-Status-Link zum Standard-Status-Menü"
5734
-
5735
- #: includes/class-wcj-orders.php:525
5736
- msgid "Admin Orders List Columns Order"
5737
- msgstr "Admin-Bestellliste Spaltenreihenfolge"
5738
-
5739
- #: includes/class-wcj-orders.php:530
5740
- msgid "Columns Order"
5741
- msgstr "Spalten-Reihenfolge"
5742
-
5743
- #: includes/class-wcj-orders.php:538
5744
- msgid "Default columns order"
5745
- msgstr "Standard Spalten-Reihenfolge"
5746
-
5747
- #: includes/class-wcj-payment-gateways-by-country.php:26
5748
- msgid "Gateways by Country or State"
5749
- msgstr "Gateways nach Land oder Staat"
5750
-
5751
- #: includes/class-wcj-payment-gateways-by-country.php:27
5752
- msgid ""
5753
- "Set countries or states to include/exclude for WooCommerce payment gateways "
5754
- "to show up."
5755
- msgstr ""
5756
- "Lege ein-/auszuschließende Länder oder Staaten fest, die von WooCommerce-"
5757
- "Zahlungs-Gateways angezeigt werden sollen."
5758
-
5759
- #: includes/class-wcj-payment-gateways-by-country.php:90
5760
- #: includes/class-wcj-payment-gateways-by-user-role.php:83
5761
- msgid "Leave empty to disable."
5762
- msgstr "Leer lassen, um zu deaktivieren."
5763
-
5764
- #: includes/class-wcj-payment-gateways-by-country.php:111
5765
- msgid "Include Countries"
5766
- msgstr "Länder einschließen"
5767
-
5768
- #: includes/class-wcj-payment-gateways-by-country.php:123
5769
- msgid "Exclude Countries"
5770
- msgstr "Länder ausschließen"
5771
-
5772
- #: includes/class-wcj-payment-gateways-by-country.php:135
5773
- msgid "Include States (Base Country)"
5774
- msgstr "Staaten einschließen (Basisland)"
5775
-
5776
- #: includes/class-wcj-payment-gateways-by-country.php:147
5777
- msgid "Exclude States (Base Country)"
5778
- msgstr "Staaten ausschließen (Basisland)"
5779
-
5780
- #: includes/class-wcj-payment-gateways-by-user-role.php:27
5781
- msgid "Gateways by User Role"
5782
- msgstr "Gateways nach Benutzerrolle"
5783
-
5784
- #: includes/class-wcj-payment-gateways-by-user-role.php:28
5785
- msgid ""
5786
- "Set user roles to include/exclude for WooCommerce payment gateways to show "
5787
- "up."
5788
- msgstr ""
5789
- "Einstellen von Benutzerrollen die ein-/ausschließen können WooCommerce "
5790
- "Gateways anzuzeigen"
5791
-
5792
- #: includes/class-wcj-payment-gateways-by-user-role.php:84
5793
- #: includes/class-wcj-product-by-user.php:258
5794
- msgid ""
5795
- "Custom roles can be added via \"Add/Manage Custom Roles\" tool in Booster's "
5796
- "<a href=\"%s\">General</a> module"
5797
- msgstr ""
5798
- "Benutzerdefinierte Rollen können über das Werkzeug \"Hinzufügen/Verwalten "
5799
- "von angepassten Benutzerrollen\" im Booster-Modul <a href=\"%s\">"
5800
- "Allgemein</a> hinzugefügt werden"
5801
-
5802
- #: includes/class-wcj-payment-gateways-by-user-role.php:105
5803
- msgid "Include User Roles"
5804
- msgstr "Benutzerrollen einschließen"
5805
-
5806
- #: includes/class-wcj-payment-gateways-by-user-role.php:117
5807
- msgid "Exclude User Roles"
5808
- msgstr "Benutzerrollen ausschließen"
5809
-
5810
- #: includes/class-wcj-payment-gateways-currency.php:26
5811
- msgid "Gateways Currency"
5812
- msgstr "Währung von Gateways"
5813
-
5814
- #: includes/class-wcj-payment-gateways-currency.php:27
5815
- msgid "Currency per WooCommerce payment gateway."
5816
- msgstr "Währung pro WooCommerce Zahlungs-Gateway."
5817
-
5818
- #: includes/class-wcj-payment-gateways-currency.php:228
5819
- msgid "Payment Gateways Currency Options"
5820
- msgstr "Zahlungs-Gateways Währungs-Optionen"
5821
-
5822
- #: includes/class-wcj-payment-gateways-currency.php:230
5823
- msgid "This section lets you set different currency for each payment gateway."
5824
- msgstr ""
5825
- "Dieser Abschnitt lässt Dich unterschiedliche Währungen für jeden "
5826
- "Zahlungsanbieter festlegen."
5827
-
5828
- #: includes/class-wcj-payment-gateways-currency.php:262
5829
- msgid "No changes"
5830
- msgstr "Keine Änderungen"
5831
-
5832
- #: includes/class-wcj-payment-gateways-fees.php:26
5833
- msgid "Gateways Fees and Discounts"
5834
- msgstr "Gateways Gebühren und Rabatte"
5835
-
5836
- #: includes/class-wcj-payment-gateways-fees.php:27
5837
- msgid "Enable extra fees or discounts for WooCommerce payment gateways."
5838
- msgstr ""
5839
- "Ermögliche zusätzliche Gebühren oder Rabatte für WooCommerce Zahlungs-"
5840
- "Gateways."
5841
-
5842
- #: includes/class-wcj-payment-gateways-fees.php:138
5843
- msgid "Payment Gateways Fees and Discounts Options"
5844
- msgstr "Zahlung Gateways Gebühren und Rabatt Optionen"
5845
-
5846
- #: includes/class-wcj-payment-gateways-fees.php:140
5847
- msgid "This section lets you set extra fees for payment gateways."
5848
- msgstr ""
5849
- "Dieser Abschnitt lässt Dich Zusatzgebühren für Zahlungsanbieter festlegen."
5850
-
5851
- #: includes/class-wcj-payment-gateways-fees.php:150
5852
- msgid "Fee (or discount) title to show to customer."
5853
- msgstr "Gebühren (oder Rabatt)-Titel, der dem Kunden angezeigt wird."
5854
-
5855
- #: includes/class-wcj-payment-gateways-fees.php:158
5856
- msgid "Fee (or discount) type."
5857
- msgstr "Gebühren (oder Rabatt)-Art"
5858
-
5859
- #: includes/class-wcj-payment-gateways-fees.php:159
5860
- msgid "Percent or fixed value."
5861
- msgstr "Prozent oder festgelegter Betrag."
5862
-
5863
- #: includes/class-wcj-payment-gateways-fees.php:170
5864
- msgid "Fee (or discount) value."
5865
- msgstr "Gebühren (oder Rabatt)-Betrag"
5866
-
5867
- #: includes/class-wcj-payment-gateways-fees.php:171
5868
- msgid "The value. For discount enter a negative number."
5869
- msgstr "Der Betrag. Für Rabatt gib eine negative Zahl ein."
5870
-
5871
- #: includes/class-wcj-payment-gateways-fees.php:181
5872
- msgid "Minimum cart amount for adding the fee (or discount)."
5873
- msgstr ""
5874
- "Mindest-Warenkorb-Betrag für das Hinzufügen der Gebühr (oder des Rabattes)."
5875
-
5876
- #: includes/class-wcj-payment-gateways-fees.php:182
5877
- #: includes/class-wcj-payment-gateways-fees.php:194
5878
- msgid "Set 0 to disable."
5879
- msgstr "Zum Deaktivieren 0 setzen."
5880
-
5881
- #: includes/class-wcj-payment-gateways-fees.php:193
5882
- msgid "Maximum cart amount for adding the fee (or discount)."
5883
- msgstr ""
5884
- "Maximaler Warenkorb-Wert für das Hinzufügen der Gebühr (oder des Rabattes)."
5885
-
5886
- #: includes/class-wcj-payment-gateways-fees.php:205
5887
- msgid "Round the fee (or discount) value before adding to the cart."
5888
- msgstr ""
5889
- "Runden der Gebühr (oder des Rabatt)-Wertes, bevor es dem Warenkorb "
5890
- "hinzugefügt wird."
5891
-
5892
- #: includes/class-wcj-payment-gateways-fees.php:213
5893
- msgid "If rounding is enabled, set precision here."
5894
- msgstr "Wenn Rundung aktiviert ist, hier die Genauigkeit einstellen."
5895
-
5896
- #: includes/class-wcj-payment-gateways-fees.php:225
5897
- msgid "Is taxable?"
5898
- msgstr "Ist es steuerpflichtig?"
5899
-
5900
- #: includes/class-wcj-payment-gateways-fees.php:232
5901
- msgid "Tax Class (only if Taxable selected)."
5902
- msgstr "Steuerklasse (nur wenn steuerpflichtig ausgewählt)."
5903
-
5904
- #: includes/class-wcj-payment-gateways-fees.php:236
5905
- msgid "Standard Rate"
5906
- msgstr "Normalsatz"
5907
-
5908
- #: includes/class-wcj-payment-gateways-icons.php:26
5909
- msgid "Gateways Icons"
5910
- msgstr "Gateways-Symbole"
5911
-
5912
- #: includes/class-wcj-payment-gateways-icons.php:27
5913
- msgid ""
5914
- "Change or completely remove icons (images) for any (default or custom) "
5915
- "WooCommerce payment gateway."
5916
- msgstr ""
5917
- "Ändern oder vollständiges Entfernen von Symbolen (Bilder) für beliebige "
5918
- "(Voreingestellt- oder benutzerdefinierte) WooCommerce-Zahlungs-Gateways."
5919
-
5920
- #: includes/class-wcj-payment-gateways-icons.php:97
5921
- #: includes/gateways/class-wc-gateway-wcj-custom.php:103
5922
- msgid ""
5923
- "If you want to show an image next to the gateway's name on the frontend, "
5924
- "enter a URL to an image."
5925
- msgstr ""
5926
- "Wenn Du ein Bild neben dem Namen des Gateways im Frontend anzeigen möchtest, "
5927
- "gib eine URL zu einem Bild ein."
5928
-
5929
- #: includes/class-wcj-payment-gateways-icons.php:114
5930
- msgid "Leave blank to set WooCommerce default value"
5931
- msgstr "Leer lassen, um den voreingestellten WooCommerce-Wert festzulegen"
5932
-
5933
- #: includes/class-wcj-payment-gateways-icons.php:125
5934
- msgid "Remove Icon"
5935
- msgstr "Symbol entfernen"
5936
-
5937
- #: includes/class-wcj-payment-gateways-min-max.php:26
5938
- msgid "Gateways Min/Max"
5939
- msgstr "Gateways Min/Max"
5940
-
5941
- #: includes/class-wcj-payment-gateways-min-max.php:27
5942
- msgid "Add min/max amounts for WooCommerce payment gateways to show up."
5943
- msgstr ""
5944
- "Füge min/max Beträge hinzu um WooCommerce Zahlungs-Gateways anzuzeigen."
5945
-
5946
- #: includes/class-wcj-payment-gateways-min-max.php:73
5947
- msgid "General Options"
5948
- msgstr "Allgemeine Optionen"
5949
-
5950
- #: includes/class-wcj-payment-gateways-min-max.php:78
5951
- msgid "Exclude Shipping"
5952
- msgstr "Versand ausschließen"
5953
-
5954
- #: includes/class-wcj-payment-gateways-min-max.php:79
5955
- msgid ""
5956
- "Exclude shipping from total cart sum, when comparing with min/max amounts."
5957
- msgstr ""
5958
- "Versand ausschließen von Gesamt-Warenkorb-Summe, wenn mit min/max Beträgen "
5959
- "verglichen wird."
5960
-
5961
- #: includes/class-wcj-payment-gateways-min-max.php:92
5962
- msgid "Leave zero to disable."
5963
- msgstr "Lasse Null um zu deaktivieren."
5964
-
5965
- #: includes/class-wcj-payment-gateways-min-max.php:111
5966
- msgid "Min"
5967
- msgstr "Min"
5968
-
5969
- #: includes/class-wcj-payment-gateways-min-max.php:120
5970
- msgid "Max"
5971
- msgstr "Max"
5972
-
5973
- #: includes/class-wcj-payment-gateways-per-category.php:26
5974
- msgid "Gateways per Product or Category"
5975
- msgstr "Gateways pro Produkt oder Kategorie"
5976
-
5977
- #: includes/class-wcj-payment-gateways-per-category.php:27
5978
- msgid ""
5979
- "Show WooCommerce gateway only if there is selected product or product "
5980
- "category in cart."
5981
- msgstr ""
5982
- "WooCommerce Gateway nur anzeigen, wenn im Warenkorb ein ausgewähltes Produkt "
5983
- "oder Produktkategorie ist."
5984
-
5985
- #: includes/class-wcj-payment-gateways-per-category.php:184
5986
- #: includes/class-wcj-price-labels.php:716
5987
- msgid "Product Categories - Include"
5988
- msgstr "Produkt-Kategorien - Einschließen"
5989
-
5990
- #: includes/class-wcj-payment-gateways-per-category.php:185
5991
- msgid ""
5992
- "Show gateway only if there is product of selected category in cart. Leave "
5993
- "blank to disable the option."
5994
- msgstr ""
5995
- "Zeige Gateway nur, wenn sich ein Produkt der ausgewählten Kategorie im "
5996
- "Warenkorb befindet. Leer lassen, um die Option zu deaktivieren."
5997
-
5998
- #: includes/class-wcj-payment-gateways-per-category.php:195
5999
- #: includes/class-wcj-price-labels.php:726
6000
- msgid "Product Categories - Exclude"
6001
- msgstr "Produkt-Kategorien - Ausschließen"
6002
-
6003
- #: includes/class-wcj-payment-gateways-per-category.php:196
6004
- msgid ""
6005
- "Hide gateway if there is product of selected category in cart. Leave blank "
6006
- "to disable the option."
6007
- msgstr ""
6008
- "Gateway ausblenden, wenn sich ein Produkt der ausgewählten Kategorie im "
6009
- "Einkaufswagen befindet. Leer lassen, um die Option zu deaktivieren."
6010
-
6011
- #: includes/class-wcj-payment-gateways-per-category.php:206
6012
- #: includes/class-wcj-price-labels.php:696
6013
- msgid "Products - Include"
6014
- msgstr "Produkt - Einschließen"
6015
-
6016
- #: includes/class-wcj-payment-gateways-per-category.php:207
6017
- msgid ""
6018
- "Show gateway only if there is selected products in cart. Leave blank to "
6019
- "disable the option."
6020
- msgstr ""
6021
- "Gateway nur anzeigen, wenn im Warenkorb ausgewählte Produkte vorhanden sind. "
6022
- "Leer lassen, um die Option zu deaktivieren."
6023
-
6024
- #: includes/class-wcj-payment-gateways-per-category.php:218
6025
- #: includes/class-wcj-price-labels.php:706
6026
- msgid "Products - Exclude"
6027
- msgstr "Produkt - Ausschließen"
6028
-
6029
- #: includes/class-wcj-payment-gateways-per-category.php:219
6030
- msgid ""
6031
- "Hide gateway if there is selected products in cart. Leave blank to disable "
6032
- "the option."
6033
- msgstr ""
6034
- "Gateway ausblenden, wenn im Warenkorb ausgewählte Produkte vorhanden sind. "
6035
- "Leer lassen, um die Option zu deaktivieren."
6036
-
6037
- #: includes/class-wcj-payment-gateways.php:25
6038
- msgid "Custom Gateways"
6039
- msgstr "Benutzerdefinierte Gateways"
6040
-
6041
- #: includes/class-wcj-payment-gateways.php:26
6042
- msgid "Add multiple custom payment gateways to WooCommerce."
6043
- msgstr "Füge mehrere benutzerdefinierte Zahlungs-Gateways WooCommerce hinzu."
6044
-
6045
- #: includes/class-wcj-payment-gateways.php:55
6046
- msgid "%s Fields"
6047
- msgstr "%s Felder"
6048
-
6049
- #: includes/class-wcj-payment-gateways.php:116
6050
- msgid "WooCommerce > Settings > Checkout"
6051
- msgstr "WooCommerce > Einstellungen > Kasse"
6052
-
6053
- #: includes/class-wcj-payment-gateways.php:119
6054
- msgid "Custom Payment Gateways Options"
6055
- msgstr "Benutzerdefinierte Zahlungs-Gateway-Optionen"
6056
-
6057
- #: includes/class-wcj-payment-gateways.php:122
6058
- msgid "This section lets you set number of custom payment gateways to add."
6059
- msgstr ""
6060
- "Dieser Abschnitt lässt Dich die Anzahl von benutzerdefinierten "
6061
- "Zahlungsanbietern, die hinzugefügt werden sollen, festlegen."
6062
-
6063
- #: includes/class-wcj-payment-gateways.php:123
6064
- msgid "After setting the number, visit %s to set each gateway options."
6065
- msgstr ""
6066
- "Nachdem Du die Anzahl festgelegt hast, besuche %s, um die einzelnen Gateway-"
6067
- "Optionen festzulegen."
6068
-
6069
- #: includes/class-wcj-payment-gateways.php:126
6070
- msgid "Number of Gateways"
6071
- msgstr "Anzahl der Gateways"
6072
-
6073
- #: includes/class-wcj-payment-gateways.php:128
6074
- msgid ""
6075
- "Number of custom payments gateways to be added. All settings for each new "
6076
- "gateway are in WooCommerce > Settings > Checkout."
6077
- msgstr ""
6078
- "Anzahl der hinzuzufügenden benutzerdefinierten Zahlungs-Gateways. Für jedes "
6079
- "neue Gateway befinde sich alle Einstellungen in WooCommerce > Einstellungen >"
6080
- " Kasse."
6081
-
6082
- #: includes/class-wcj-payment-gateways.php:139
6083
- msgid "Admin Title Custom Gateway"
6084
- msgstr "Admin-Titel Benutzerdefiniertes Gateway"
6085
-
6086
- #: includes/class-wcj-payment-gateways.php:141
6087
- #: includes/gateways/class-wc-gateway-wcj-custom.php:353
6088
- msgid "Custom Gateway"
6089
- msgstr "Benutzerdefiniertes Gateway"
6090
-
6091
- #: includes/class-wcj-pdf-invoicing.php:25
6092
- msgid "PDF Invoicing"
6093
- msgstr "PDF-Rechnung"
6094
-
6095
- #: includes/class-wcj-pdf-invoicing.php:27
6096
- msgid ""
6097
- "WooCommerce Invoices, Proforma Invoices, Credit Notes and Packing Slips."
6098
- msgstr ""
6099
- "WooCommerce Rechnungen, Proforma-Rechnungen, Gutschriften und Packzettel."
6100
-
6101
- #: includes/class-wcj-pdf-invoicing.php:33
6102
- msgid "Invoices Renumerate"
6103
- msgstr "Rechnungen renumerieren"
6104
-
6105
- #: includes/class-wcj-pdf-invoicing.php:34
6106
- msgid ""
6107
- "Tool renumerates all invoices, proforma invoices, credit notes and packing "
6108
- "slips."
6109
- msgstr ""
6110
- "Werkzeug berechnet alle Rechnungen, Proforma-Rechnungen, Gutschriften und "
6111
- "Packzettel."
6112
-
6113
- #: includes/class-wcj-pdf-invoicing.php:37
6114
- msgid "Invoices Report"
6115
- msgstr "Rechnungs-Berichte"
6116
-
6117
- #: includes/class-wcj-pdf-invoicing.php:38
6118
- msgid "Invoices Monthly Reports."
6119
- msgstr "monatliche Rechnungsberichte."
6120
-
6121
- #: includes/class-wcj-pdf-invoicing.php:89
6122
- #: includes/class-wcj-pdf-invoicing.php:90
6123
- #: includes/class-wcj-price-by-country.php:270
6124
- #: includes/class-wcj-price-by-country.php:275
6125
- #: includes/class-wcj-price-by-country.php:280
6126
- msgid "Generate"
6127
- msgstr "Generieren"
6128
-
6129
- #: includes/class-wcj-pdf-invoicing.php:97
6130
- #: includes/class-wcj-pdf-invoicing.php:98
6131
- msgid "Download"
6132
- msgstr "Download"
6133
-
6134
- #: includes/class-wcj-pdf-invoicing.php:114
6135
- msgid "Document generated."
6136
- msgid_plural "%s documents generated."
6137
- msgstr[0] "Dokument generiert."
6138
- msgstr[1] "%s Dokumente generiert."
6139
-
6140
- #: includes/class-wcj-pdf-invoicing.php:220
6141
- #: includes/classes/class-wcj-pdf-invoice.php:266
6142
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:195
6143
- msgid "Unexpected error"
6144
- msgstr "Unerwarteter Fehler"
6145
-
6146
- #: includes/class-wcj-pdf-invoicing.php:360
6147
- msgid "PDF Invoicing General Options"
6148
- msgstr "Allgemeine Optionen der PDF-Rechnung"
6149
-
6150
- #: includes/class-wcj-pdf-invoicing.php:369
6151
- msgid "Create on New Order"
6152
- msgstr "Erstelle bei neuer Bestellung"
6153
-
6154
- #: includes/class-wcj-pdf-invoicing.php:372
6155
- msgid "Create on Order Status"
6156
- msgstr "Erstelle nach Bestellzustand"
6157
-
6158
- #: includes/class-wcj-pdf-invoicing.php:374
6159
- msgid "Manual Only"
6160
- msgstr "Ausschließlich manuell"
6161
-
6162
- #: includes/class-wcj-pdf-invoicing.php:393
6163
- msgid "Do not create if order total equals zero"
6164
- msgstr "Nicht erstellen, wenn die Auftragsgesamtmenge gleich Null ist"
6165
-
6166
- #: includes/class-wcj-pdf-invoicing.php:399
6167
- msgid "Hide Disabled Docs Settings"
6168
- msgstr "Deaktivierte Dokumenteinstellungen ausblenden"
6169
-
6170
- #: includes/class-wcj-price-by-country.php:25
6171
- msgid "Prices and Currencies by Country"
6172
- msgstr "Preise und Währungen nach Ländern"
6173
-
6174
- #: includes/class-wcj-price-by-country.php:26
6175
- msgid ""
6176
- "Change WooCommerce product price and currency automatically by customer's "
6177
- "country."
6178
- msgstr ""
6179
- "Ändere den WooCommerce-Produktpreis und -währung automatisch nach dem Land "
6180
- "des Kunden."
6181
-
6182
- #: includes/class-wcj-price-by-country.php:92
6183
- msgid "Price filter widget product prices recalculated."
6184
- msgstr "Preisfilter-Widget Produktpreise neu berechnet."
6185
-
6186
- #: includes/class-wcj-price-by-country.php:140
6187
- msgid "Price by Country Options"
6188
- msgstr "Preis nach Land Optionen"
6189
-
6190
- #: includes/class-wcj-price-by-country.php:142
6191
- msgid ""
6192
- "Change product's price and currency by customer's country. Customer's "
6193
- "country is detected automatically by IP, or selected by customer manually."
6194
- msgstr ""
6195
- "Ändere den Produktpreis und -währung nach dem Land des Kunden. Das Land des "
6196
- "Kunden wird automatisch über die IP erkannt oder vom Kunden manuell "
6197
- "ausgewählt."
6198
-
6199
- #: includes/class-wcj-price-by-country.php:147
6200
- msgid "Customer Country Detection Method"
6201
- msgstr "Kundenland-Erkennungsmethode"
6202
-
6203
- #: includes/class-wcj-price-by-country.php:149
6204
- msgid ""
6205
- "If you choose \"by user selection\", use [wcj_country_select_drop_down_list] "
6206
- "shortcode to display country selection list on frontend."
6207
- msgstr ""
6208
- "Wenn Du \"durch Benutzerauswahl\" wählst, nutze "
6209
- "[wcj_country_select_drop_down_list] Shortcode, um Länderauswahl-Liste im "
6210
- "Frontend anzuzeigen."
6211
-
6212
- #: includes/class-wcj-price-by-country.php:153
6213
- msgid "by IP"
6214
- msgstr "nach IP"
6215
-
6216
- #: includes/class-wcj-price-by-country.php:154
6217
- msgid "by IP, then by user selection"
6218
- msgstr "nach IP, dann durch Benutzerauswahl"
6219
-
6220
- #: includes/class-wcj-price-by-country.php:155
6221
- msgid "by user selection"
6222
- msgstr "durch Benutzerauswahl"
6223
-
6224
- #: includes/class-wcj-price-by-country.php:172
6225
- msgid "Override Country Options"
6226
- msgstr "Länderoptionen überschreiben"
6227
-
6228
- #: includes/class-wcj-price-by-country.php:177
6229
- msgid "No Override"
6230
- msgstr "Nicht überschreiben"
6231
-
6232
- #: includes/class-wcj-price-by-country.php:178
6233
- msgid "Override Country with Customer's Checkout Billing Country"
6234
- msgstr "Überschreibe Land mit Kunden-Abrechnungsland in Kasse"
6235
-
6236
- #: includes/class-wcj-price-by-country.php:179
6237
- msgid "Override Country with Customer's Checkout Shipping Country"
6238
- msgstr "Überschreibe Land mit dem in der Kasse gewählten Land"
6239
-
6240
- #: includes/class-wcj-price-by-country.php:192
6241
- msgid "Price Rounding"
6242
- msgstr "Preisrundung"
6243
-
6244
- #: includes/class-wcj-price-by-country.php:193
6245
- msgid "If you choose to multiply price, set rounding options here."
6246
- msgstr ""
6247
- "Wenn SDu dich dafür entscheidest, den Preis zu multiplizieren, lege hier "
6248
- "Rundungsoptionen fest."
6249
-
6250
- #: includes/class-wcj-price-by-country.php:206
6251
- msgid "Price by Country on per Product Basis"
6252
- msgstr "Preis nach Land auf pro Produktbasis"
6253
-
6254
- #: includes/class-wcj-price-by-country.php:208
6255
- msgid "This will add product data fields in product edit."
6256
- msgstr "Hiermit werden Produktdatenfelder in Produktbearbeitung hinzugefügt."
6257
-
6258
- #: includes/class-wcj-price-by-country.php:215
6259
- msgid "Price Filter Widget and Sorting by Price Support"
6260
- msgstr "Preis-Filter-Widget und Sortierung nach Preis Unterstützung"
6261
-
6262
- #: includes/class-wcj-price-by-country.php:218
6263
- msgid "Recalculate price filter widget and sorting by price product prices"
6264
- msgstr ""
6265
- "Neuberechnungs-Preisfilter-Widget und sortieren nach Preis-Produktpreisen"
6266
-
6267
- #: includes/class-wcj-price-by-country.php:225
6268
- msgid "Add Countries Flags Images to Select Drop-Down Box"
6269
- msgstr "Länderflaggen-Bilder hinzufügen, um die Dropdown-Box auszuwählen"
6270
-
6271
- #: includes/class-wcj-price-by-country.php:227
6272
- msgid ""
6273
- "If you are using [wcj_country_select_drop_down_list] shortcode or \"Booster: "
6274
- "Country Switcher\" widget, this will add country flags to these select boxes."
6275
- msgstr ""
6276
- "Wenn Du [wcj_country_select_drop_down_list] Shortcode oder \"Booster: "
6277
- "Länderumschalter\"-Widget nutzt, wird dies Länderflaggen diesen Auswahlboxen "
6278
- "hinzufügen."
6279
-
6280
- #: includes/class-wcj-price-by-country.php:234
6281
- #: includes/class-wcj-price-by-user-role.php:400
6282
- msgid "Search Engine Bots"
6283
- msgstr "Suchmaschinen-Bots"
6284
-
6285
- #: includes/class-wcj-price-by-country.php:235
6286
- msgid "Disable Price by Country for Bots"
6287
- msgstr "Deaktiviere Preis nach Land für Bots"
6288
-
6289
- #: includes/class-wcj-price-by-country.php:244
6290
- msgid "Country Groups"
6291
- msgstr "Ländergruppen"
6292
-
6293
- #: includes/class-wcj-price-by-country.php:250
6294
- msgid "Countries Selection"
6295
- msgstr "Länderauswahl"
6296
-
6297
- #: includes/class-wcj-price-by-country.php:251
6298
- msgid "Choose how do you want to enter countries groups in admin."
6299
- msgstr "Wähle, wie Du Ländergruppen in Administration eingeben möchtest."
6300
-
6301
- #: includes/class-wcj-price-by-country.php:256
6302
- msgid "Comma separated list"
6303
- msgstr "Komma getrennte Liste"
6304
-
6305
- #: includes/class-wcj-price-by-country.php:257
6306
- msgid "Multiselect"
6307
- msgstr "Mehrfachauswahl"
6308
-
6309
- #: includes/class-wcj-price-by-country.php:258
6310
- msgid "Chosen select"
6311
- msgstr "Ausgewählt auswählen"
6312
-
6313
- #: includes/class-wcj-price-by-country.php:263
6314
- msgid "Autogenerate Groups"
6315
- msgstr "Gruppen automatisch generieren"
6316
-
6317
- #: includes/class-wcj-price-by-country.php:268
6318
- msgid "Currencies supported in both PayPal and Yahoo Exchange Rates:"
6319
- msgstr ""
6320
- "Währungen, die sowohl in PayPal als auch in Yahoo-Wechselkursen unterstützt "
6321
- "werden:"
6322
-
6323
- #: includes/class-wcj-price-by-country.php:273
6324
- msgid "Currencies supported in Yahoo Exchange Rates:"
6325
- msgstr "Währungen unterstützt in Yahoo-Wechselkursen:"
6326
-
6327
- #: includes/class-wcj-price-by-country.php:278
6328
- msgid "All Countries and Currencies:"
6329
- msgstr "Alle Länder und Währungen:"
6330
-
6331
- #: includes/class-wcj-price-by-country.php:285
6332
- msgid "Groups Number"
6333
- msgstr "Anzahl der Gruppen"
6334
-
6335
- #: includes/class-wcj-price-by-country.php:304
6336
- msgid ""
6337
- "Countries. List of comma separated country codes.<br>For country codes and "
6338
- "predifined sets visit <a href=\"http://booster.io/features/prices-and-"
6339
- "currencies-by-customers-country\" target=\"_blank\">http://booster.io</a>"
6340
- msgstr ""
6341
- "Länder. Liste der durch Kommas getrennten Ländercodes.<br>Für Ländercodes "
6342
- "und vordefinierte Sätze besuche <a href=\"http://booster.io/features/prices-"
6343
- "and-currencies-by-customers-country\" target=\"_blank\">http://booster.io</a>"
6344
-
6345
- #: includes/class-wcj-price-by-country.php:380
6346
- msgid "Multiply Price by"
6347
- msgstr "Multipliziere Preis mit"
6348
-
6349
- #: includes/class-wcj-price-by-country.php:403
6350
- #: includes/price-by-country/class-wcj-price-by-country-local.php:143
6351
- msgid "Make empty price"
6352
- msgstr "Leeren Preis erzeugen"
6353
-
6354
- #: includes/class-wcj-price-by-user-role.php:28
6355
- msgid "Price by User Role"
6356
- msgstr "Preis nach Benutzer-Rolle"
6357
-
6358
- #: includes/class-wcj-price-by-user-role.php:29
6359
- msgid "Display WooCommerce products prices by user roles."
6360
- msgstr "WooCommerce Produkt-Preise nach Benutzerrollen anzeigen."
6361
-
6362
- #: includes/class-wcj-price-by-user-role.php:105
6363
- msgid ""
6364
- "Booster: Free plugin's version is limited to only one price by user role per "
6365
- "products settings product enabled at a time. You will need to get <a "
6366
- "href=\"http://booster.io/plus/\" target=\"_blank\">Booster Plus</a> to add "
6367
- "unlimited number of price by user role per product settings products."
6368
- msgstr ""
6369
- "Booster: Kostenlose Plugin-Version ist begrenzt auf nur einen Preis pro "
6370
- "Benutzer-Rolle pro Produkteinstellung auf einmal aktiviert. DU musst <a "
6371
- "href=\"http://booster.io/plus/\" target=\"_blank\">Booster Plus</a> erwerben,"
6372
- " um unbegrenzte Anzahl von Preisen nach Benutzer-Rollen pro "
6373
- "Produkteinstellung hinzuzufügen."
6374
-
6375
- #: includes/class-wcj-price-by-user-role.php:132
6376
- msgid "Per Product Settings (press Update after changing)"
6377
- msgstr "Pro Produkteinstellungen (klicke Aktualisieren nach dem Ändern)"
6378
-
6379
- #: includes/class-wcj-price-by-user-role.php:185
6380
- #: includes/class-wcj-price-by-user-role.php:428
6381
- msgid "Make Empty Price"
6382
- msgstr "Leeren Preis erzeugen"
6383
-
6384
- #: includes/class-wcj-price-by-user-role.php:375
6385
- msgid "Enable per Product Settings"
6386
- msgstr "Pro Produkteinstellungen aktivieren"
6387
-
6388
- #: includes/class-wcj-price-by-user-role.php:377
6389
- msgid ""
6390
- "When enabled, this will add new \"Booster: Price by User Role\" meta box to "
6391
- "each product's edit page."
6392
- msgstr ""
6393
- "Wenn diese Option aktiviert ist, wird das Meta-Feld \"Booster: Preis pro "
6394
- "Benutzerprolle\" zu jeder Produktbearbeitungsseite hinzugefügt."
6395
-
6396
- #: includes/class-wcj-price-by-user-role.php:383
6397
- msgid "Show Roles on per Product Settings"
6398
- msgstr "Zeige die Rollen in den Einstellungen pro Produkt"
6399
-
6400
- #: includes/class-wcj-price-by-user-role.php:384
6401
- msgid ""
6402
- "If per product settings is enabled, you can choose which roles to show on "
6403
- "product's edit page. Leave blank to show all roles."
6404
- msgstr ""
6405
- "Wenn die Einstellungen pro Produkt aktiviert sind, kannst du wählen, welche "
6406
- "Rollen auf der \"Produkt bearbeiten\" Seite zu sehen sind. Leer lassen um "
6407
- "alle Rollen anzuzeigen."
6408
-
6409
- #: includes/class-wcj-price-by-user-role.php:394
6410
- msgid ""
6411
- "When enabled, this will apply user role multipliers to shipping calculations."
6412
- msgstr ""
6413
- "Wenn diese Option aktiviert ist, werden Benutzerrollen-Multiplikatoren auf "
6414
- "Versandberechnungen angewendet."
6415
-
6416
- #: includes/class-wcj-price-by-user-role.php:401
6417
- msgid "Disable Price by User Role for Bots"
6418
- msgstr "Deaktivieren Preis nach Benutzerrolle für Bots"
6419
-
6420
- #: includes/class-wcj-price-by-user-role.php:412
6421
- msgid "Roles & Multipliers"
6422
- msgstr "Rollen & Multiplikatoren"
6423
-
6424
- #: includes/class-wcj-price-formats.php:27
6425
- msgid "Price Formats"
6426
- msgstr "Preisformate"
6427
-
6428
- #: includes/class-wcj-price-formats.php:28
6429
- msgid "Set different WooCommerce price formats for different currencies."
6430
- msgstr ""
6431
- "Lege verschiedene WooCommerce-Preisformate für verschiedene Währungen fest."
6432
-
6433
- #: includes/class-wcj-price-formats.php:121
6434
- msgid "Formats"
6435
- msgstr "Formate"
6436
-
6437
- #: includes/class-wcj-price-formats.php:126
6438
- msgid "Total Number"
6439
- msgstr "Gesamtanzahl"
6440
-
6441
- #: includes/class-wcj-price-formats.php:141
6442
- msgid "Format"
6443
- msgstr "Format"
6444
-
6445
- #: includes/class-wcj-price-formats.php:150
6446
- msgid "Currency Position"
6447
- msgstr "Währungsposition"
6448
-
6449
- #: includes/class-wcj-price-formats.php:155
6450
- msgid "Left"
6451
- msgstr "Links"
6452
-
6453
- #: includes/class-wcj-price-formats.php:156
6454
- msgid "Right"
6455
- msgstr "Rechts"
6456
-
6457
- #: includes/class-wcj-price-formats.php:157
6458
- msgid "Left with space"
6459
- msgstr "Links mit Platz"
6460
-
6461
- #: includes/class-wcj-price-formats.php:158
6462
- msgid "Right with space"
6463
- msgstr "Rechts mit Platz"
6464
-
6465
- #: includes/class-wcj-price-formats.php:163
6466
- msgid "Thousand Separator"
6467
- msgstr "Tausender Trennzeichen"
6468
-
6469
- #: includes/class-wcj-price-formats.php:170
6470
- msgid "Decimal Separator"
6471
- msgstr "Dezimal Trennzeichen"
6472
-
6473
- #: includes/class-wcj-price-formats.php:177
6474
- msgid "Number of Decimals"
6475
- msgstr "Anzahl der Dezimalstellen"
6476
-
6477
- #: includes/class-wcj-price-formats.php:188
6478
- msgid "WPML Language Code"
6479
- msgstr "WPML Sprach-Code"
6480
-
6481
- #: includes/class-wcj-price-formats.php:189
6482
- msgid ""
6483
- "Option to set different price formats for different WPML languages. Can be "
6484
- "comma separated list. Leave empty to disable."
6485
- msgstr ""
6486
- "Möglichkeit, unterschiedliche Preisformate für verschiedene WPML-Sprachen "
6487
- "festzulegen. Kann kommagetrennte Liste sein. Leer lassen, um zu deaktivieren."
6488
-
6489
- #: includes/class-wcj-price-labels.php:25
6490
- msgid "Custom Price Labels"
6491
- msgstr "Benutzerdefinierte Preisetiketten"
6492
-
6493
- #: includes/class-wcj-price-labels.php:26
6494
- msgid "Create any custom price label for any WooCommerce product."
6495
- msgstr ""
6496
- "Erstelle irgendein benutzerdefiniertes Preisetikett für irgendein "
6497
- "WooCommerce Produkt."
6498
-
6499
- #: includes/class-wcj-price-labels.php:32
6500
- msgid "Migrate from Custom Price Labels (Pro)"
6501
- msgstr "Migrieren von Custom Price Labels (Pro)"
6502
-
6503
- #: includes/class-wcj-price-labels.php:33
6504
- msgid ""
6505
- "Tool lets you copy all the data (that is labels) from Custom Price labels "
6506
- "(Pro) plugin to Booster."
6507
- msgstr ""
6508
- "Mit diesem Werkzeug kannst Du alle Daten (das sind Beschriftungen) von "
6509
- "Custom Price Labels (Pro)-Plugin nach Booster kopieren."
6510
-
6511
- #: includes/class-wcj-price-labels.php:43
6512
- msgid "Instead of the price"
6513
- msgstr "Statt des Preises"
6514
-
6515
- #: includes/class-wcj-price-labels.php:44
6516
- msgid "Before the price"
6517
- msgstr "Vor dem Preis"
6518
-
6519
- #: includes/class-wcj-price-labels.php:45
6520
- msgid "Between regular and sale prices"
6521
- msgstr "Zwischen regulären und Sale-Preisen"
6522
-
6523
- #: includes/class-wcj-price-labels.php:46
6524
- msgid "After the price"
6525
- msgstr "Nach dem Preis"
6526
-
6527
- #: includes/class-wcj-price-labels.php:52
6528
- msgid "Hide on home page"
6529
- msgstr "Auf der Startseite verbergen"
6530
-
6531
- #: includes/class-wcj-price-labels.php:53
6532
- msgid "Hide on products page"
6533
- msgstr "Ausblenden auf Produkte-Seite"
6534
-
6535
- #: includes/class-wcj-price-labels.php:54
6536
- msgid "Hide on single"
6537
- msgstr "Auf Einzel verbergen"
6538
-
6539
- #: includes/class-wcj-price-labels.php:55
6540
- msgid "Hide on all pages"
6541
- msgstr "Auf allen Seiten verbergen"
6542
-
6543
- #: includes/class-wcj-price-labels.php:56
6544
- msgid "Hide on cart page only"
6545
- msgstr "Nur auf Warenkorbseite ausblenden"
6546
-
6547
- #: includes/class-wcj-price-labels.php:58
6548
- msgid "Hide for main price"
6549
- msgstr "Für Hauptpreis ausblenden"
6550
-
6551
- #: includes/class-wcj-price-labels.php:59
6552
- msgid "Hide for all variations"
6553
- msgstr "Für alle Variationen ausblenden"
6554
-
6555
- #: includes/class-wcj-price-labels.php:128
6556
- msgid "Booster - Migrate from Custom Price Labels (Pro)"
6557
- msgstr "Booster - Migrieren von Custom Price Labels (Pro)"
6558
-
6559
- #: includes/class-wcj-price-labels.php:179
6560
- msgid "Migrating (product ID "
6561
- msgstr "Migriere (Produkt-ID"
6562
-
6563
- #: includes/class-wcj-price-labels.php:180
6564
- msgid "Result: "
6565
- msgstr "Ergebnis: "
6566
-
6567
- #: includes/class-wcj-price-labels.php:202
6568
- msgid "Found data to migrate (product ID "
6569
- msgstr "Daten zum Migrieren gefunden (Produkt-ID"
6570
-
6571
- #: includes/class-wcj-price-labels.php:218
6572
- msgid "No data to migrate found"
6573
- msgstr "Keine zu migrierenden Daten gefunden"
6574
-
6575
- #: includes/class-wcj-price-labels.php:224
6576
- msgid ""
6577
- "Press button below to copy all labels from Custom Price Labels (Pro) plugin. "
6578
- "Old labels will NOT be deleted. New labels will be overwritten."
6579
- msgstr ""
6580
- "Drücke die Taste unten, um alle Labels aus dem Custom Price Labels (Pro) "
6581
- "Plugin zu kopieren. Alte Beschriftungen werden NICHT gelöscht. Neue Labels "
6582
- "werden überschrieben."
6583
-
6584
- #: includes/class-wcj-price-labels.php:225
6585
- msgid "Migrate data"
6586
- msgstr "Daten migrieren"
6587
-
6588
- #: includes/class-wcj-price-labels.php:271
6589
- msgid "Booster: Custom Price Labels"
6590
- msgstr "Booster: Custom Price Labels"
6591
-
6592
- #: includes/class-wcj-price-labels.php:630
6593
- msgid "Custom Price Labels - Globally"
6594
- msgstr "Benutzerdefinierte Preisetiketten - Global"
6595
-
6596
- #: includes/class-wcj-price-labels.php:632
6597
- msgid "This section lets you set price labels for all products globally."
6598
- msgstr ""
6599
- "Dieser Abschnitt lässt Dich Preisetiketten für alle Produkte global "
6600
- "festlegen."
6601
-
6602
- #: includes/class-wcj-price-labels.php:636
6603
- msgid "Add before the price"
6604
- msgstr "Vor dem Preis hinzufügen"
6605
-
6606
- #: includes/class-wcj-price-labels.php:637
6607
- msgid "Enter text to add before all products prices. Leave blank to disable."
6608
- msgstr ""
6609
- "Gib den Text ein, der vor allen Produktpreisen hinzugefügt werden soll. Leer "
6610
- "lassen, um zu deaktivieren."
6611
-
6612
- #: includes/class-wcj-price-labels.php:646
6613
- msgid "Add after the price"
6614
- msgstr "Nach dem Preis hinzufügen"
6615
-
6616
- #: includes/class-wcj-price-labels.php:647
6617
- msgid "Enter text to add after all products prices. Leave blank to disable."
6618
- msgstr ""
6619
- "Gib Text ein, der nach allen Produktpreisen hinzugefügt werden soll. Leer "
6620
- "lassen, um zu deaktivieren."
6621
-
6622
- #: includes/class-wcj-price-labels.php:654
6623
- msgid "Add between regular and sale prices"
6624
- msgstr "Zwischen regulären und Sale-Preisen hinzufügen"
6625
-
6626
- #: includes/class-wcj-price-labels.php:655
6627
- msgid ""
6628
- "Enter text to add between regular and sale prices. Leave blank to disable."
6629
- msgstr ""
6630
- "Gib Text ein, der zwischen regulären und Verkaufspreisen hinzugefügt wird. "
6631
- "Leer lassen, um zu deaktivieren."
6632
-
6633
- #: includes/class-wcj-price-labels.php:664
6634
- msgid "Remove from price"
6635
- msgstr "Aus dem Preis entfernen"
6636
-
6637
- #: includes/class-wcj-price-labels.php:666
6638
- msgid "Enter text to remove from all products prices. Leave blank to disable."
6639
- msgstr ""
6640
- "Gib den Text ein, der von allen Produktpreisen entfernt werden soll. Leer "
6641
- "lassen, um zu deaktivieren."
6642
-
6643
- #: includes/class-wcj-price-labels.php:675
6644
- msgid "Replace in price"
6645
- msgstr "Im Preis ersetzen"
6646
-
6647
- #: includes/class-wcj-price-labels.php:676
6648
- msgid "Enter text to replace in all products prices. Leave blank to disable."
6649
- msgstr ""
6650
- "Gib Text ein, der in allen Produkt-Preisen ersetzt wird. Leer lassen, um zu "
6651
- "deaktivieren."
6652
-
6653
- #: includes/class-wcj-price-labels.php:687
6654
- msgid "Enter text to replace with. Leave blank to disable."
6655
- msgstr "Gib den zu ersetzenden Text ein. Leer lassen, um zu deaktivieren."
6656
-
6657
- #: includes/class-wcj-price-labels.php:697
6658
- msgid ""
6659
- "Apply global price labels only for selected products. Leave blank to disable "
6660
- "the option."
6661
- msgstr ""
6662
- "Wende globale Preisetiketten nur für ausgewählte Produkte an. Leer lassen, "
6663
- "um die Option zu deaktivieren."
6664
-
6665
- #: includes/class-wcj-price-labels.php:707
6666
- msgid ""
6667
- "Do not apply global price labels only for selected products. Leave blank to "
6668
- "disable the option."
6669
- msgstr ""
6670
- "Wende keine globalen Preisetiketten nur für ausgewählte Produkte an. Leer "
6671
- "lassen, um die Option zu deaktivieren."
6672
-
6673
- #: includes/class-wcj-price-labels.php:717
6674
- msgid ""
6675
- "Apply global price labels only for selected product categories. Leave blank "
6676
- "to disable the option."
6677
- msgstr ""
6678
- "Wende globale Preisetiketten nur für ausgewählte Produktkategorien an. Leer "
6679
- "lassen, um die Option zu deaktivieren."
6680
-
6681
- #: includes/class-wcj-price-labels.php:727
6682
- msgid ""
6683
- "Do not apply global price labels only for selected product categories. Leave "
6684
- "blank to disable the option."
6685
- msgstr ""
6686
- "Wende keine globalen Preisetiketten nur für ausgewählte Produktkategorien an."
6687
- " Leer lassen, um die Option zu deaktivieren."
6688
-
6689
- #: includes/class-wcj-price-labels.php:736
6690
- msgid "Product Types - Include"
6691
- msgstr "Produkttypen - Einschließen"
6692
-
6693
- #: includes/class-wcj-price-labels.php:737
6694
- msgid ""
6695
- "Apply global price labels only for selected product types. Leave blank to "
6696
- "disable the option."
6697
- msgstr ""
6698
- "Wende globale Preisschilder nur für ausgewählte Produktarten an. Leer lassen,"
6699
- " um die Option zu deaktivieren."
6700
-
6701
- #: includes/class-wcj-price-labels.php:743
6702
- msgid "Variable product's variation"
6703
- msgstr "Variable Produktvariation"
6704
-
6705
- #: includes/class-wcj-price-labels.php:750
6706
- msgid "Custom Price Labels - Per Product"
6707
- msgstr "Benutzerdefinierte Preisetiketten - Pro Produkt"
6708
-
6709
- #: includes/class-wcj-price-labels.php:756
6710
- msgid "This will add metaboxes to each product's admin edit page."
6711
- msgstr "Dies fügt Meta-Boxen zu jeder Produkt-Admin-Bearbeitungsseite hinzu."
6712
-
6713
- #: includes/class-wcj-product-add-to-cart.php:26
6714
- msgid "Product Add to Cart"
6715
- msgstr "Produkt dem Warenkorb hinzufügen"
6716
-
6717
- #: includes/class-wcj-product-add-to-cart.php:27
6718
- msgid "Set any local url to redirect to on WooCommerce Add to Cart."
6719
- msgstr ""
6720
- "Lege eine beliebige lokale URL fest, auf die umgeleitet wird bei WooCommerce "
6721
- "dem Warenkorb hinzufügen"
6722
-
6723
- #: includes/class-wcj-product-add-to-cart.php:28
6724
- msgid "Automatically add to cart on product visit."
6725
- msgstr "Automatisch bei Produktbesuch in den Warenkorb legen."
6726
-
6727
- #: includes/class-wcj-product-add-to-cart.php:29
6728
- msgid "Display radio buttons instead of drop box for variable products."
6729
- msgstr ""
6730
- "Anzeigen von radio buttons anstelle von drop box für variable Produkte."
6731
-
6732
- #: includes/class-wcj-product-add-to-cart.php:30
6733
- msgid "Disable quantity input."
6734
- msgstr "Deaktiviere die Mengeneingabe."
6735
-
6736
- #: includes/class-wcj-product-add-to-cart.php:31
6737
- msgid "Disable add to cart button on per product basis."
6738
- msgstr ""
6739
- "Deaktiviere dem \"zum Warenkorb hinzufügen\" Button auf pro Produktbasis."
6740
-
6741
- #: includes/class-wcj-product-add-to-cart.php:32
6742
- msgid "Open external products on add to cart in new window."
6743
- msgstr ""
6744
- "Externe Produkte in einem neuen Fesnter öffnen bei dem Warenkorb hinzufügen."
6745
-
6746
- #: includes/class-wcj-product-add-to-cart.php:215
6747
- msgid "Disable Add to Cart Button (Single Product Page)"
6748
- msgstr ""
6749
- "Deaktivieren des \"dem Warenkorb hinzufügen\"-Button (Einzelproduktseite)"
6750
-
6751
- #: includes/class-wcj-product-add-to-cart.php:225
6752
- msgid "Disable Add to Cart Button (Category/Archives)"
6753
- msgstr ""
6754
- "Deaktivieren des \"dem Warenkorb hinzufügen\"-Button (Kategorie/Archive)"
6755
-
6756
- #: includes/class-wcj-product-add-to-cart.php:235
6757
- msgid "Custom Add to Cart Button URL (Category/Archives)"
6758
- msgstr "Benutzerdefinierte In den Warenkorb Button URL (Kategorie/Archive)"
6759
-
6760
- #: includes/class-wcj-product-add-to-cart.php:246
6761
- msgid "As shop default (no changes)"
6762
- msgstr "Wie Shop-Voreinstellung (keine Änderungen)"
6763
-
6764
- #: includes/class-wcj-product-add-to-cart.php:250
6765
- msgid "Disable Add to Cart Button AJAX"
6766
- msgstr "Deaktivieren von AJAX für den \"In den Warenkorb\"-Button"
6767
-
6768
- #: includes/class-wcj-product-add-to-cart.php:341
6769
- msgid "Add to Cart Local Redirect Options"
6770
- msgstr "\"dem Warenkorb hinzufügen\" lokale Umleitungs-Optionen"
6771
-
6772
- #: includes/class-wcj-product-add-to-cart.php:343
6773
- msgid ""
6774
- "This section lets you set any local URL to redirect to after successfully "
6775
- "adding product to cart. Leave empty to redirect to checkout page (skipping "
6776
- "the cart page)."
6777
- msgstr ""
6778
- "Dieser Abschnitt lässt Dich eine lokale URL festlegen, auf die umgeleitet "
6779
- "wird, nachdem ein Produkt erfolgreich dem Warenkorb hinzugefügt wurde."
6780
-
6781
- #: includes/class-wcj-product-add-to-cart.php:347
6782
- msgid "Local Redirect"
6783
- msgstr "Lokale Umleitung"
6784
-
6785
- #: includes/class-wcj-product-add-to-cart.php:354
6786
- msgid "Local Redirect URL"
6787
- msgstr "Lokale Umleitungs URL"
6788
-
6789
- #: includes/class-wcj-product-add-to-cart.php:355
6790
- msgid "Performs a safe (local) redirect, using wp_redirect()."
6791
- msgstr "Führt eine sichere (lokale) Weiterleitung mit wp_redirect() durch."
6792
-
6793
- #: includes/class-wcj-product-add-to-cart.php:356
6794
- msgid "Local redirect URL. Leave empty to redirect to checkout."
6795
- msgstr "Lokale Umleitungs-URL. Leer lassen, um zur Kasse umzuleiten."
6796
-
6797
- #: includes/class-wcj-product-add-to-cart.php:367
6798
- #: includes/class-wcj-product-add-to-cart.php:373
6799
- msgid "Add to Cart on Visit"
6800
- msgstr "Bei Besuch dem Warenkorb hinzufügen"
6801
-
6802
- #: includes/class-wcj-product-add-to-cart.php:369
6803
- msgid ""
6804
- "This section lets you enable automatically adding product to cart on "
6805
- "visiting the product page. Product is only added once, so if it is already "
6806
- "in cart - duplicate product is not added. "
6807
- msgstr ""
6808
- "Dieser Abschnitt lässt Dich das automatische dem Warenkorb hinzufügen sobald "
6809
- "die Produktseite aufgerufen wurde, aktivieren. Produkt wird nur einmalig "
6810
- "hinzugefügt, wenn es sich schon im Warenkorb befindet - ein Duplikat wird "
6811
- "nicht hinzugefügt."
6812
-
6813
- #: includes/class-wcj-product-add-to-cart.php:384
6814
- msgid "Add to Cart Variable Product"
6815
- msgstr "Variables Produkt dem Warenkorb hinzufügen"
6816
-
6817
- #: includes/class-wcj-product-add-to-cart.php:389
6818
- msgid "Display Radio Buttons Instead of Drop Box"
6819
- msgstr "Radio Buttons statt Drop Box anzeigen"
6820
-
6821
- #: includes/class-wcj-product-add-to-cart.php:402
6822
- msgid "Add to Cart Quantity"
6823
- msgstr "dem Warenkorb hinzufügen Menge"
6824
-
6825
- #: includes/class-wcj-product-add-to-cart.php:407
6826
- msgid "Disable Quantity Field for All Products"
6827
- msgstr "Mengenfeld für alle Produkte deaktivieren"
6828
-
6829
- #: includes/class-wcj-product-add-to-cart.php:408
6830
- msgid "Disable on Single Product Page"
6831
- msgstr "Deaktivieren auf Einzelproduktseite"
6832
-
6833
- #: includes/class-wcj-product-add-to-cart.php:415
6834
- msgid "Disable on Cart Page"
6835
- msgstr "Auf Warenkorbseite deaktivieren"
6836
-
6837
- #: includes/class-wcj-product-add-to-cart.php:426
6838
- msgid "Add to Cart Button Disabling"
6839
- msgstr "In den Warenkorb Button Deaktivieren"
6840
-
6841
- #: includes/class-wcj-product-add-to-cart.php:431
6842
- msgid "Disable Add to Cart Buttons on per Product Basis"
6843
- msgstr "Deaktivieren des \"In den Warenkorb\"-Buttons auf pro Produktbasis"
6844
-
6845
- #: includes/class-wcj-product-add-to-cart.php:433
6846
- #: includes/class-wcj-product-add-to-cart.php:450
6847
- #: includes/class-wcj-product-add-to-cart.php:467
6848
- msgid "This will add meta box to each product's edit page"
6849
- msgstr "Dies fügt eine meta box jeder Produktbearbeitungsseite hinzu"
6850
-
6851
- #: includes/class-wcj-product-add-to-cart.php:443
6852
- msgid "Add to Cart Button Custom URL"
6853
- msgstr "Benutzerdefinierte URL für \"In den Warenkorb\"-Button"
6854
-
6855
- #: includes/class-wcj-product-add-to-cart.php:448
6856
- msgid "Custom Add to Cart Buttons URL on Archives on per Product Basis"
6857
- msgstr ""
6858
- "Benutzerdefinierte In den Warenkorb Button URL in Archiven auf pro "
6859
- "Produktbasis"
6860
-
6861
- #: includes/class-wcj-product-add-to-cart.php:460
6862
- msgid "Add to Cart Button AJAX"
6863
- msgstr "AJAX für \"In den Warenkorb\"-Button"
6864
-
6865
- #: includes/class-wcj-product-add-to-cart.php:465
6866
- msgid "Disable/Enable Add to Cart Button AJAX on per Product Basis"
6867
- msgstr ""
6868
- "Deaktivieren/Aktivieren von AJAX für \"In den Warenkorb\"-Button auf pro "
6869
- "Produktbasis"
6870
-
6871
- #: includes/class-wcj-product-add-to-cart.php:482
6872
- msgid "Open External Products on Add to Cart in New Window"
6873
- msgstr "Öffne externe Produkte bei Hinzufügen zum Warenkorb in neuen Fenster"
6874
-
6875
- #: includes/class-wcj-product-add-to-cart.php:483
6876
- msgid "Enable on Single Product Pages"
6877
- msgstr "Aktiviere auf Einzelproduktseiten"
6878
-
6879
- #: includes/class-wcj-product-add-to-cart.php:490
6880
- msgid "Enable on Category/Archive Pages"
6881
- msgstr "Aktivieren auf Kategorie-/Archivseiten"
6882
-
6883
- #: includes/class-wcj-product-addons.php:28
6884
- msgid "Product Addons"
6885
- msgstr "Produkterweiterungen"
6886
-
6887
- #: includes/class-wcj-product-addons.php:29
6888
- msgid "Add (paid/free/discount) addons to WooCommerce products."
6889
- msgstr ""
6890
- "Erweiterungen (Bezahlte/kostenlose/Rabattierte) den Woocommerce-Produkten "
6891
- "hinzufügen"
6892
-
6893
- #: includes/class-wcj-product-addons.php:99
6894
- msgid "Some of the required addons are not selected!"
6895
- msgstr "Einige der benötigten Erweiterungen sind nicht ausgewählt!"
6896
-
6897
- #: includes/class-wcj-product-addons.php:114
6898
- msgid ""
6899
- "Booster: Free plugin's version is limited to only three products with per "
6900
- "product addons enabled at a time. You will need to get <a href=\"http:"
6901
- "//booster.io/plus/\" target=\"_blank\">Booster Plus</a> to add unlimited "
6902
- "number of products with per product addons."
6903
- msgstr ""
6904
- "Booster: Kostenlose Pluginversion ist beschränkt auf nur drei Produkte mit "
6905
- "aktivierten Produkterweiterungen. DU musst dir <a href=\"http://booster."
6906
- "io/plus/\" target=\"_blank\">Booster Plus</a> kaufen, um eine unbeschränkte "
6907
- "Anzahl von Produkten pro Produkterweiterung hinzufügen zu können."
6908
-
6909
- #: includes/class-wcj-product-addons.php:446
6910
- #: includes/class-wcj-wholesale-price.php:281
6911
- #: includes/class-wcj-wholesale-price.php:316
6912
- msgid "Save product after you change this number."
6913
- msgstr "Speichere das Produkt, nachdem du diese Nummer geändert hast."
6914
-
6915
- #: includes/class-wcj-product-addons.php:449
6916
- #: includes/class-wcj-product-addons.php:560
6917
- msgid "Product Addons Total Number"
6918
- msgstr "Gesamtanzahl von Produkterweiterungen"
6919
-
6920
- #: includes/class-wcj-product-addons.php:456
6921
- #: includes/class-wcj-product-addons.php:576
6922
- msgid "Product Addon"
6923
- msgstr "Produkt-Addon"
6924
-
6925
- #: includes/class-wcj-product-addons.php:472
6926
- #: includes/class-wcj-product-addons.php:590
6927
- msgid "Radio Buttons"
6928
- msgstr "Radio Buttons"
6929
-
6930
- #: includes/class-wcj-product-addons.php:476
6931
- #: includes/class-wcj-product-addons.php:594
6932
- msgid "Label(s)"
6933
- msgstr "Label(s)"
6934
-
6935
- #: includes/class-wcj-product-addons.php:477
6936
- #: includes/class-wcj-product-addons.php:484
6937
- #: includes/class-wcj-product-addons.php:491
6938
- #: includes/class-wcj-product-addons.php:595
6939
- #: includes/class-wcj-product-addons.php:603
6940
- #: includes/class-wcj-product-addons.php:612
6941
- msgid "For radio enter one value per line."
6942
- msgstr "Gib einen Wert pro Zeile für Radio-Buttons ein."
6943
-
6944
- #: includes/class-wcj-product-addons.php:483
6945
- #: includes/class-wcj-product-addons.php:602
6946
- msgid "Price(s)"
6947
- msgstr "Preis(e)"
6948
-
6949
- #: includes/class-wcj-product-addons.php:490
6950
- #: includes/class-wcj-product-addons.php:611
6951
- msgid "Tooltip(s)"
6952
- msgstr "Tooltip(s)"
6953
-
6954
- #: includes/class-wcj-product-addons.php:497
6955
- #: includes/class-wcj-product-addons.php:619
6956
- #: includes/class-wcj-purchase-data.php:340
6957
- msgid "Default Value"
6958
- msgstr "Voreingestellter Wert"
6959
-
6960
- #: includes/class-wcj-product-addons.php:498
6961
- #: includes/class-wcj-product-addons.php:620
6962
- msgid ""
6963
- "For checkbox use 'checked'; for radio enter default label. Leave blank for "
6964
- "no default value."
6965
- msgstr ""
6966
- "Nutze 'checked' für Checkboxen; gib eine Standardlabel für Radio-Buttons ein."
6967
- " Leer lassen, um keinen Standardwert festzulegen."
6968
-
6969
- #: includes/class-wcj-product-addons.php:504
6970
- msgid "Is required"
6971
- msgstr "wird benötigt"
6972
-
6973
- #: includes/class-wcj-product-addons.php:533
6974
- msgid "Enable per Product Addons"
6975
- msgstr "Aktiviere pro Produkterweiterung"
6976
-
6977
- #: includes/class-wcj-product-addons.php:535
6978
- msgid ""
6979
- "When enabled, this will add new \"Booster: Product Addons\" meta box to each "
6980
- "product's edit page."
6981
- msgstr ""
6982
- "Wenn aktiviert, wird dies eine neue \"Booster: Produkterweiterung\" Meta box "
6983
- "jeder Produktbearbeitungsseite hinzufügen."
6984
-
6985
- #: includes/class-wcj-product-addons.php:547
6986
- msgid "All Product Options"
6987
- msgstr "Alle Produktoptionen"
6988
-
6989
- #: includes/class-wcj-product-addons.php:552
6990
- msgid "Enable All Products Addons"
6991
- msgstr "Aktivere alle Produkterweiterung"
6992
-
6993
- #: includes/class-wcj-product-addons.php:554
6994
- msgid "When enabled, this will add addons below to all products."
6995
- msgstr ""
6996
- "Wenn aktiviert, wird dies Erweiterungen unterhalb allen Produkten hinzufügen"
6997
-
6998
- #: includes/class-wcj-product-addons.php:561
6999
- msgid "Save changes after you change this number."
7000
- msgstr "Speichere die Änderungen, nachdem Du diese Nummer geändert hast."
7001
-
7002
- #: includes/class-wcj-product-addons.php:627
7003
- #: includes/class-wcj-product-by-user.php:233
7004
- msgid "Is Required"
7005
- msgstr "Wird benötigt"
7006
-
7007
- #: includes/class-wcj-product-addons.php:647
7008
- msgid "Enable AJAX on Single Product Page"
7009
- msgstr "Aktiviere AJAX auf Einzelproduktseite"
7010
-
7011
- #: includes/class-wcj-product-addons.php:654
7012
- msgid "Addon in Cart Format"
7013
- msgstr "Addon im Warenkorb-Format"
7014
-
7015
- #: includes/class-wcj-product-addons.php:662
7016
- #: includes/class-wcj-product-addons.php:685
7017
- msgid "Each Addon"
7018
- msgstr "Jedes Addon"
7019
-
7020
- #: includes/class-wcj-product-addons.php:663
7021
- #: includes/class-wcj-product-addons.php:686
7022
- msgid "You can use %addon_label% and %addon_price%."
7023
- msgstr "Du kannst %addon_label% und %addon_price% nutzen."
7024
-
7025
- #: includes/class-wcj-product-addons.php:677
7026
- msgid "Addon in Order Details Table Format"
7027
- msgstr "Addon in Bestelldetails Tabellenformat"
7028
-
7029
- #: includes/class-wcj-product-addons.php:700
7030
- msgid "Admin Order Page"
7031
- msgstr "Admin-Bestellseite"
7032
-
7033
- #: includes/class-wcj-product-addons.php:701
7034
- msgid "Hide all addons"
7035
- msgstr "Verstecke alle Addons"
7036
-
7037
- #: includes/class-wcj-product-bookings.php:27
7038
- msgid "Bookings"
7039
- msgstr "Buchungen"
7040
-
7041
- #: includes/class-wcj-product-bookings.php:28
7042
- msgid "Add bookings products to WooCommerce."
7043
- msgstr "Hinzufügen von Buchungsprodukten zu WooCommerce."
7044
-
7045
- #: includes/class-wcj-product-bookings.php:131
7046
- #: includes/class-wcj-product-bookings.php:226
7047
- #: includes/class-wcj-product-bookings.php:481
7048
- msgid "\"Date to\" must be after \"Date from\""
7049
- msgstr "\"Datum bis\" muss nach \"Datum von\" eingestellt sein"
7050
-
7051
- #: includes/class-wcj-product-bookings.php:145
7052
- #: includes/class-wcj-product-open-pricing.php:209
7053
- msgid "Read more"
7054
- msgstr "Mehr lesen"
7055
-
7056
- #: includes/class-wcj-product-bookings.php:184
7057
- #: includes/class-wcj-product-bookings.php:453
7058
- msgid "Period"
7059
- msgstr "Zeitraum"
7060
-
7061
- #: includes/class-wcj-product-bookings.php:216
7062
- #: includes/class-wcj-product-bookings.php:467
7063
- msgid "\"Date from\" must be set"
7064
- msgstr "\"Datum von\" muss eingestellt sein"
7065
-
7066
- #: includes/class-wcj-product-bookings.php:220
7067
- #: includes/class-wcj-product-bookings.php:474
7068
- msgid "\"Date to\" must be set"
7069
- msgstr "\"Datum bis\" muss eingestellt sein"
7070
-
7071
- #: includes/class-wcj-product-bookings.php:299
7072
- #: includes/class-wcj-product-bookings.php:439
7073
- msgid "Date from"
7074
- msgstr "Datum von"
7075
-
7076
- #: includes/class-wcj-product-bookings.php:303
7077
- #: includes/class-wcj-product-bookings.php:446
7078
- msgid "Date to"
7079
- msgstr "Datum bis"
7080
-
7081
- #: includes/class-wcj-product-bookings.php:318
7082
- #: includes/class-wcj-product-bookings.php:460
7083
- msgid "/ day"
7084
- msgstr "/ Tag"
7085
-
7086
- #: includes/class-wcj-product-bookings.php:386
7087
- msgid ""
7088
- "Booster: Free plugin's version is limited to only one bookings product "
7089
- "enabled at a time. You will need to get <a href=\"http://booster.io/plus/\" "
7090
- "target=\"_blank\">Booster Plus</a> to add unlimited number of bookings "
7091
- "products."
7092
- msgstr ""
7093
- "Booster: Die kostenlose Version des Plugins ist auf ein einziges "
7094
- "Buchungsprodukt beschränkt. Du musst <a href=\"http://booster.io/plus/\" "
7095
- "target=\"_blank\">Booster Plus</a> erwerben, um unbegrenzte Anzahl von "
7096
- "Buchungsprodukten hinzufügen zu können."
7097
-
7098
- #: includes/class-wcj-product-bookings.php:432
7099
- #: includes/class-wcj-product-open-pricing.php:369
7100
- msgid "Labels and Messages"
7101
- msgstr "Etiketten und Meldungen"
7102
-
7103
- #: includes/class-wcj-product-bookings.php:437
7104
- msgid "Frontend Label: \"Date from\""
7105
- msgstr "Frontend Label: \"Datum von\""
7106
-
7107
- #: includes/class-wcj-product-bookings.php:444
7108
- msgid "Frontend Label: \"Date to\""
7109
- msgstr "Frontend Label: \"Datum bis\""
7110
-
7111
- #: includes/class-wcj-product-bookings.php:451
7112
- msgid "Frontend Label: Period"
7113
- msgstr "Frontend Label: Zeitraum"
7114
-
7115
- #: includes/class-wcj-product-bookings.php:458
7116
- msgid "Frontend Label: Price per Day"
7117
- msgstr "Frontend Label: Preis pro Tag"
7118
-
7119
- #: includes/class-wcj-product-bookings.php:465
7120
- msgid "Message: \"Date from\" is missing"
7121
- msgstr "Hinweis: \"Datum von\" fehlt"
7122
-
7123
- #: includes/class-wcj-product-bookings.php:472
7124
- #: includes/class-wcj-product-bookings.php:479
7125
- msgid "Message: \"Date to\" is missing"
7126
- msgstr "Hinweis: \"Datum bis\" fehlt"
7127
-
7128
- #: includes/class-wcj-product-bookings.php:495
7129
- msgid "Hide Quantity Selector for Booking Products"
7130
- msgstr "Verstecke die Mengenauswahl für die Buchung von Produkten"
7131
-
7132
- #: includes/class-wcj-product-bookings.php:506
7133
- msgid ""
7134
- "When enabled, module will add new \"Booster: Bookings\" meta box to each "
7135
- "product's edit page."
7136
- msgstr ""
7137
- "Wenn diese Option aktiviert ist, wird das Modul für jede Bearbeitungsseite "
7138
- "jedes Produkts eine neue \"Booster: Buchungen\"-Meta-Box hinzufügen."
7139
-
7140
- #: includes/class-wcj-product-bulk-price-converter.php:25
7141
- #: includes/class-wcj-product-bulk-price-converter.php:32
7142
- msgid "Bulk Price Converter"
7143
- msgstr "Bulk-Preis-Konverter"
7144
-
7145
- #: includes/class-wcj-product-bulk-price-converter.php:26
7146
- msgid "Multiply all WooCommerce products prices by set value."
7147
- msgstr "Multipliziere alle WooCommerce-Produkte-Preise nach gesetztem Wert."
7148
-
7149
- #: includes/class-wcj-product-bulk-price-converter.php:33
7150
- msgid "Bulk Price Converter Tool."
7151
- msgstr "Bulk-Preis-Konverter-Werkzeug."
7152
-
7153
- #: includes/class-wcj-product-bulk-price-converter.php:150
7154
- #: includes/class-wcj-product-by-user.php:207 includes/class-wcj-sku.php:244
7155
- #: includes/export/class-wcj-fields-helper.php:318
7156
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:156
7157
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:329
7158
- msgid "Categories"
7159
- msgstr "Kategorien"
7160
-
7161
- #: includes/class-wcj-product-bulk-price-converter.php:151
7162
- msgid "Price Type"
7163
- msgstr "Preisart"
7164
-
7165
- #: includes/class-wcj-product-bulk-price-converter.php:246
7166
- msgid "Price type to modify"
7167
- msgstr "Zu ändernde Preisart"
7168
-
7169
- #: includes/class-wcj-product-bulk-price-converter.php:248
7170
- msgid "Both"
7171
- msgstr "Beide"
7172
-
7173
- #: includes/class-wcj-product-bulk-price-converter.php:250
7174
- msgid "Sale prices only"
7175
- msgstr "Nur Abverkaufpreise"
7176
-
7177
- #: includes/class-wcj-product-bulk-price-converter.php:252
7178
- msgid "Regular prices only"
7179
- msgstr "Nur reguläre Preise"
7180
-
7181
- #: includes/class-wcj-product-bulk-price-converter.php:259
7182
- msgid "Products category"
7183
- msgstr "Produktkategorie"
7184
-
7185
- #: includes/class-wcj-product-bulk-price-converter.php:261
7186
- #: includes/shortcodes/class-wcj-products-shortcodes.php:232
7187
- msgid "Any"
7188
- msgstr "Irgendeins"
7189
-
7190
- #: includes/class-wcj-product-bulk-price-converter.php:263
7191
- msgid "None"
7192
- msgstr "Keine"
7193
-
7194
- #: includes/class-wcj-product-bulk-price-converter.php:270
7195
- msgid "\"Pretty prices\" threshold"
7196
- msgstr "\"Pretty prices\" Übergangswert"
7197
-
7198
- #: includes/class-wcj-product-bulk-price-converter.php:274
7199
- msgid "Leave zero to disable"
7200
- msgstr "Null belassen um zu deaktivieren"
7201
-
7202
- #: includes/class-wcj-product-bulk-price-converter.php:279
7203
- msgid "Preview Prices"
7204
- msgstr "Preisvorschau"
7205
-
7206
- #: includes/class-wcj-product-bulk-price-converter.php:286
7207
- msgid "Change Prices"
7208
- msgstr "Preisänderungen"
7209
-
7210
- #: includes/class-wcj-product-by-country.php:27
7211
- msgid "Product Visibility by Country"
7212
- msgstr "Produktsichtbarkeit nach Land"
7213
-
7214
- #: includes/class-wcj-product-by-country.php:28
7215
- msgid "Display WooCommerce products by customer's country."
7216
- msgstr "Zeige WooCommerce-Produkte nach Kundenland an."
7217
-
7218
- #: includes/class-wcj-product-by-country.php:76
7219
- msgid "Visible in Countries"
7220
- msgstr "Sichtbar in den Ländern"
7221
-
7222
- #: includes/class-wcj-product-by-country.php:90
7223
- msgid ""
7224
- "When enabled, module will add new \"Booster: Product Visibility by Country\" "
7225
- "meta box to each product's edit page."
7226
- msgstr ""
7227
- "Wenn aktiviert, fügt das Modul eine neue \"Booster: Produktsichtbarkeit nach "
7228
- "Land\"-Meta-Box auf der Seite jedes Produkts hinzu."
7229
-
7230
- #: includes/class-wcj-product-by-user-role.php:27
7231
- msgid "Product Visibility by User Role"
7232
- msgstr "Produktsichtbarkeit nach Benutzerrolle"
7233
-
7234
- #: includes/class-wcj-product-by-user-role.php:28
7235
- msgid "Display WooCommerce products by customer's user role."
7236
- msgstr "Anzeige von WooCommerce-Produkte nach Kunden-Benutzerrolle."
7237
-
7238
- #: includes/class-wcj-product-by-user-role.php:73
7239
- msgid "Visible for User Roles"
7240
- msgstr "Sichtbar für Benutzerrollen"
7241
-
7242
- #: includes/class-wcj-product-by-user-role.php:74
7243
- msgid "Hold Control (Ctrl) key to select multiple roles."
7244
- msgstr "Halte Kontrol (Strg)-Taste, um mehrere Rollen auszuwählen."
7245
-
7246
- #: includes/class-wcj-product-by-user.php:27
7247
- msgid "User Products"
7248
- msgstr "Benutzer-Produkte"
7249
-
7250
- #: includes/class-wcj-product-by-user.php:28
7251
- msgid "Let users add new WooCommerce products from frontend."
7252
- msgstr "Lasse Benutzer neue WooCommerce Produkte vom Frontend hinzufügen."
7253
-
7254
- #: includes/class-wcj-product-by-user.php:115
7255
- #: includes/class-wcj-product-by-user.php:124
7256
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:238
7257
- msgid "Wrong user ID!"
7258
- msgstr "Falsche Nutzer-ID!"
7259
-
7260
- #: includes/class-wcj-product-by-user.php:164
7261
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:359
7262
- msgid "Edit"
7263
- msgstr "Bearbeiten"
7264
-
7265
- #: includes/class-wcj-product-by-user.php:190
7266
- msgid "Use [wcj_product_add_new] shortcode."
7267
- msgstr "Nutze [wcj_product_add_new] Shortcode."
7268
-
7269
- #: includes/class-wcj-product-by-user.php:203
7270
- #: includes/export/class-wcj-fields-helper.php:292
7271
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:152
7272
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:274
7273
- msgid "Short Description"
7274
- msgstr "Kurzbeschreibung"
7275
-
7276
- #: includes/class-wcj-product-by-user.php:204
7277
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:153
7278
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:290
7279
- msgid "Image"
7280
- msgstr "Bild"
7281
-
7282
- #: includes/class-wcj-product-by-user.php:208
7283
- #: includes/export/class-wcj-fields-helper.php:319
7284
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:157
7285
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:352
7286
- msgid "Tags"
7287
- msgstr "Stichwörter"
7288
-
7289
- #: includes/class-wcj-product-by-user.php:223
7290
- msgid "Additional Fields"
7291
- msgstr "Zusätzliche Felder"
7292
-
7293
- #: includes/class-wcj-product-by-user.php:249
7294
- msgid "<em>Title</em> field is always enabled and required."
7295
- msgstr "<em>Title</em> ist immer aktiviert und erforderlich."
7296
-
7297
- #: includes/class-wcj-product-by-user.php:257
7298
- msgid "User Visibility"
7299
- msgstr "Sichtbarkeit des Benutzers"
7300
-
7301
- #: includes/class-wcj-product-by-user.php:267
7302
- msgid "Product Status"
7303
- msgstr "Produktstatus"
7304
-
7305
- #: includes/class-wcj-product-by-user.php:274
7306
- msgid "Require Unique Title"
7307
- msgstr "Einzigartiger Titel erforderlich"
7308
-
7309
- #: includes/class-wcj-product-by-user.php:281
7310
- msgid "Add \"My Products\" Tab to User's My Account Page"
7311
- msgstr ""
7312
- "Füge den \"Meine Produkte\"-Tab der \"Mein Konto\"-Seite des Nutzers hinzu"
7313
-
7314
- #: includes/class-wcj-product-by-user.php:288
7315
- msgid "Message: Product Successfully Added"
7316
- msgstr "Nachricht: Produkt erfolgreich hinzugefügt!"
7317
-
7318
- #: includes/class-wcj-product-by-user.php:290
7319
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:216
7320
- msgid "\"%product_title%\" successfully added!"
7321
- msgstr "\"%product_title%\" erfolgreich hinzugefügt!"
7322
-
7323
- #: includes/class-wcj-product-by-user.php:295
7324
- msgid "Message: Product Successfully Edited"
7325
- msgstr "Nachricht: Produkt erfolgreich bearbeitet!"
7326
-
7327
- #: includes/class-wcj-product-by-user.php:297
7328
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:223
7329
- msgid "\"%product_title%\" successfully edited!"
7330
- msgstr "\"%product_title%\" erfolgreich bearbeitet!"
7331
-
7332
- #: includes/class-wcj-product-custom-info.php:27
7333
- #: includes/class-wcj-product-info.php:104
7334
- msgid "Add additional info to WooCommerce category and single product pages."
7335
- msgstr ""
7336
- "Füge zusätzliche Informationen der WooCommerce-Kategorie und einzelnen "
7337
- "Produktseiten hinzu."
7338
-
7339
- #: includes/class-wcj-product-custom-info.php:107
7340
- msgid "Single"
7341
- msgstr "Einzel"
7342
-
7343
- #: includes/class-wcj-product-custom-info.php:107
7344
- msgid "Archive"
7345
- msgstr "Archiv"
7346
-
7347
- #: includes/class-wcj-product-custom-info.php:110
7348
- msgid "Product Custom Info Blocks"
7349
- msgstr "Benutzerdefinierte Produkt-Infoblöcke"
7350
-
7351
- #: includes/class-wcj-product-custom-info.php:148
7352
- msgid "Before single product"
7353
- msgstr "Vor Einzelprodukt"
7354
-
7355
- #: includes/class-wcj-product-custom-info.php:149
7356
- #: includes/class-wcj-product-info.php:141
7357
- msgid "Before single product summary"
7358
- msgstr "Vor Einzelprodukt Zusammenfassung"
7359
-
7360
- #: includes/class-wcj-product-custom-info.php:150
7361
- #: includes/class-wcj-product-info.php:140
7362
- msgid "Inside single product summary"
7363
- msgstr "In Einzelprodukt Zusammenfassung"
7364
-
7365
- #: includes/class-wcj-product-custom-info.php:151
7366
- #: includes/class-wcj-product-info.php:142
7367
- msgid "After single product summary"
7368
- msgstr "Nach Einzelprodukt Zusammenfassung"
7369
-
7370
- #: includes/class-wcj-product-custom-info.php:152
7371
- msgid "After single product"
7372
- msgstr "Nach Einzelprodukt"
7373
-
7374
- #: includes/class-wcj-product-custom-info.php:153
7375
- msgid "Before add to cart form"
7376
- msgstr "Vor dem \"dem Warenkorb hinzufügen\"-Formular"
7377
-
7378
- #: includes/class-wcj-product-custom-info.php:154
7379
- msgid "Before add to cart button"
7380
- msgstr "Vor dem \"dem Warenkorb hinzufügen\"-Button"
7381
-
7382
- #: includes/class-wcj-product-custom-info.php:155
7383
- msgid "After add to cart button"
7384
- msgstr "Nach dem \"dem Warenkorb hinzufügen\"-Button"
7385
-
7386
- #: includes/class-wcj-product-custom-info.php:156
7387
- msgid "After add to cart form"
7388
- msgstr "Nach dem \"dem Warenkorb hinzufügen\"-Formular"
7389
-
7390
- #: includes/class-wcj-product-custom-info.php:159
7391
- #: includes/class-wcj-product-info.php:125
7392
- msgid "Before product"
7393
- msgstr "Vor dem Produkt"
7394
-
7395
- #: includes/class-wcj-product-custom-info.php:160
7396
- #: includes/class-wcj-product-info.php:126
7397
- msgid "Before product title"
7398
- msgstr "Vor dem Produkttitel"
7399
-
7400
- #: includes/class-wcj-product-custom-info.php:161
7401
- msgid "Inside product title"
7402
- msgstr "Im Produkttitel"
7403
-
7404
- #: includes/class-wcj-product-custom-info.php:162
7405
- #: includes/class-wcj-product-info.php:128
7406
- msgid "After product title"
7407
- msgstr "Nach dem Produkttitel"
7408
-
7409
- #: includes/class-wcj-product-custom-info.php:163
7410
- #: includes/class-wcj-product-info.php:127
7411
- msgid "After product"
7412
- msgstr "Nach dem Produkt"
7413
-
7414
- #: includes/class-wcj-product-custom-info.php:175
7415
- msgid "Products to Include"
7416
- msgstr "Einzuschließende Produkte"
7417
-
7418
- #: includes/class-wcj-product-custom-info.php:176
7419
- #: includes/class-wcj-product-custom-info.php:186
7420
- msgid "Leave blank to disable the option."
7421
- msgstr "Leer lassen, um die Option zu deaktivieren."
7422
-
7423
- #: includes/class-wcj-product-custom-info.php:185
7424
- msgid "Products to Exclude"
7425
- msgstr "Auszuschließende Produkte"
7426
-
7427
- #: includes/class-wcj-product-images.php:26
7428
- msgid "Product Images"
7429
- msgstr "Produktbilder"
7430
-
7431
- #: includes/class-wcj-product-images.php:27
7432
- msgid "Customize WooCommerce products images, thumbnails and sale flashes."
7433
- msgstr "Passen WooCommerce Produktbilder, Thumbnails und Sale Flashes an."
7434
-
7435
- #: includes/class-wcj-product-images.php:182
7436
- #: includes/class-wcj-product-images.php:334
7437
- msgid "Sale!"
7438
- msgstr "Sale!"
7439
-
7440
- #: includes/class-wcj-product-images.php:197
7441
- msgid "Replace image with custom HTML on single product page"
7442
- msgstr "Ersetze das Bild mit benutzerdefiniertem HTML auf Einzel-Produktseite"
7443
-
7444
- #: includes/class-wcj-product-images.php:203
7445
- msgid "Replace image with custom HTML on archives"
7446
- msgstr "Ersetze das Bild mit benutzerdefiniertem HTML in Archiven"
7447
-
7448
- #: includes/class-wcj-product-images.php:213
7449
- msgid "Hide Image on Single"
7450
- msgstr "Bild auf Single ausblenden"
7451
-
7452
- #: includes/class-wcj-product-images.php:223
7453
- msgid "Hide Thumbnails on Single"
7454
- msgstr "Thumbnails auf Single ausblenden"
7455
-
7456
- #: includes/class-wcj-product-images.php:233
7457
- msgid "Hide Image on Archives"
7458
- msgstr "Bild in Archiven ausblenden"
7459
-
7460
- #: includes/class-wcj-product-images.php:247
7461
- msgid "Product Image and Thumbnails"
7462
- msgstr "Produktbild und Thumbnails"
7463
-
7464
- #: includes/class-wcj-product-images.php:258
7465
- msgid "Image and Thumbnails on Single"
7466
- msgstr "Bild und Thumbnails auf Single"
7467
-
7468
- #: includes/class-wcj-product-images.php:265
7469
- msgid "Image on Single"
7470
- msgstr "Bild auf Single"
7471
-
7472
- #: includes/class-wcj-product-images.php:272
7473
- msgid "Thumbnails on Single"
7474
- msgstr "Thumbnails auf Single"
7475
-
7476
- #: includes/class-wcj-product-images.php:279
7477
- msgid "Image on Archives"
7478
- msgstr "Bild in Archiven"
7479
-
7480
- #: includes/class-wcj-product-images.php:286
7481
- msgid "Replace Image on Single"
7482
- msgstr "Ersetze das Bild auf Einzelproduktseite"
7483
-
7484
- #: includes/class-wcj-product-images.php:287
7485
- msgid ""
7486
- "Replace image on single product page with custom HTML. Leave blank to "
7487
- "disable."
7488
- msgstr ""
7489
- "Ersetze Bild auf einzelner Produktseite mit benutzerdefinierten HTML. Leer "
7490
- "lassen, um zu deaktivieren."
7491
-
7492
- #: includes/class-wcj-product-images.php:294
7493
- msgid "Replace Thumbnails on Single"
7494
- msgstr "Ersetzen von Thumbnails auf Einzel"
7495
-
7496
- #: includes/class-wcj-product-images.php:295
7497
- msgid ""
7498
- "Replace thumbnails on single product page with custom HTML. Leave blank to "
7499
- "disable."
7500
- msgstr ""
7501
- "Ersetzen von Thumbnails auf einzelner Produktseite mit benutzerdefiniertem "
7502
- "HTML. Leer lassen, um zu deaktivieren."
7503
-
7504
- #: includes/class-wcj-product-images.php:302
7505
- msgid "Replace Image on Archive"
7506
- msgstr "Ersetze Bild im Archiv"
7507
-
7508
- #: includes/class-wcj-product-images.php:303
7509
- msgid ""
7510
- "Replace image on archive pages with custom HTML. Leave blank to disable."
7511
- msgstr ""
7512
- "Ersetze das Bild auf den Archivseiten mit benutzerdefiniertem HTML. Leer "
7513
- "lassen, um zu deaktivieren."
7514
-
7515
- #: includes/class-wcj-product-images.php:310
7516
- msgid "Single Product Thumbnails Columns"
7517
- msgstr "Einzelprodukt-Thumbnails Spalten"
7518
-
7519
- #: includes/class-wcj-product-images.php:321
7520
- msgid "Product Images Sale Flash"
7521
- msgstr "Produktbilder Sale Flash"
7522
-
7523
- #: includes/class-wcj-product-images.php:332
7524
- msgid "HTML"
7525
- msgstr "HTML"
7526
-
7527
- #: includes/class-wcj-product-images.php:339
7528
- msgid "Hide on Archives (Categories)"
7529
- msgstr "Verstecken auf Archiven (Kategorien)"
7530
-
7531
- #: includes/class-wcj-product-images.php:345
7532
- msgid "Hide on Single"
7533
- msgstr "Verstecken auf Einzelprodukt"
7534
-
7535
- #: includes/class-wcj-product-info.php:103
7536
- msgid "Product Info V1"
7537
- msgstr "Produktinformation V1"
7538
-
7539
- #: includes/class-wcj-product-info.php:274
7540
- #: includes/class-wcj-product-info.php:377
7541
- #: includes/class-wcj-product-info.php:410
7542
- #: includes/class-wcj-product-tabs.php:550
7543
- msgid "Priority (i.e. Order)"
7544
- msgstr "Priorität (d.h. Bestellung)"
7545
-
7546
- #: includes/class-wcj-product-info.php:281
7547
- msgid ""
7548
- "Number of product info fields. Click \"Save changes\" after you change this "
7549
- "number."
7550
- msgstr ""
7551
- "Anzahl der Produktinformationsfelder. Klicke auf \"Änderungen speichern\" "
7552
- "nachdem Du die Nummer geändert hast."
7553
-
7554
- #: includes/class-wcj-product-info.php:303
7555
- msgid ""
7556
- "[wcj_product_you_save before=\"You save: <strong>\" hide_if_zero=\"yes\" "
7557
- "after=\"</strong>\"][wcj_product_you_save_percent hide_if_zero=\"yes\" "
7558
- "before=\" (\" after=\"%)\"]"
7559
- msgstr ""
7560
- "[wcj_product_you_save before=\"You save: <strong>\" hide_if_zero=\"yes\" "
7561
- "after=\"</strong>\"][wcj_product_you_save_percent hide_if_zero=\"yes\" "
7562
- "before=\" (\" after=\"%)\"]"
7563
-
7564
- #: includes/class-wcj-product-info.php:304
7565
- msgid "[wcj_product_total_sales before=\"Total sales: \"]"
7566
- msgstr "[wcj_product_total_sales before=\"Total sales: \"]"
7567
-
7568
- #: includes/class-wcj-product-info.php:331
7569
- msgid "Products Info"
7570
- msgstr "Produktinformation"
7571
-
7572
- #: includes/class-wcj-product-info.php:332
7573
- msgid ""
7574
- "For full list of short codes, please visit <a target=\"_blank\" href=\"http:"
7575
- "//booster.io/shortcodes/\">http://booster.io/shortcodes/</a>."
7576
- msgstr ""
7577
- "Für eine vollständige Liste der Shortcodes, besuche bitte <a "
7578
- "target=\"_blank\" href=\"http://booster.io/shortcodes/\">http://booster."
7579
- "io/shortcodes/</a>."
7580
-
7581
- #: includes/class-wcj-product-info.php:336
7582
- #: includes/class-wcj-product-info.php:350
7583
- msgid "Product Info on Archive Pages"
7584
- msgstr "Produkt-Info auf einzelnen WordPress-Archiv-Seiten"
7585
-
7586
- #: includes/class-wcj-product-info.php:337
7587
- msgid "Product Info on Single Pages"
7588
- msgstr "Produkt-Info auf einzelnen WordPress-Seiten"
7589
-
7590
- #: includes/class-wcj-product-info.php:345
7591
- msgid "Even More Products Info"
7592
- msgstr "Noch mehr Produkte-Info"
7593
-
7594
- #: includes/class-wcj-product-info.php:358
7595
- #: includes/class-wcj-product-info.php:391
7596
- msgid "HTML info."
7597
- msgstr "HTML Information."
7598
-
7599
- #: includes/class-wcj-product-info.php:360
7600
- msgid "[wcj_product_sku before=\"SKU: \"]"
7601
- msgstr "[wcj_product_sku before=\"SKU: \"]"
7602
-
7603
- #: includes/class-wcj-product-info.php:383
7604
- msgid "Product Info on Single Product Pages"
7605
- msgstr "Produktinformationen auf einzelnen Produktseiten"
7606
-
7607
- #: includes/class-wcj-product-info.php:393
7608
- msgid "Total sales: [wcj_product_total_sales]"
7609
- msgstr "Gesamtumsatz: [wcj_product_total_sales]"
7610
-
7611
- #: includes/class-wcj-product-info.php:416
7612
- msgid "Product IDs to exclude"
7613
- msgstr "Auszuschließende Produkt-IDs"
7614
-
7615
- #: includes/class-wcj-product-info.php:417
7616
- msgid "Comma separated list of product IDs to exclude from product info."
7617
- msgstr ""
7618
- "Kommagetrennte Liste der Produkt-IDs, die von der Produktinformation "
7619
- "ausgeschlossen werden sollen."
7620
-
7621
- #: includes/class-wcj-product-input-fields.php:24
7622
- #: includes/input-fields/class-wcj-product-input-fields-per-product.php:127
7623
- msgid "Product Input Fields"
7624
- msgstr "Produkt-Eingabefelder"
7625
-
7626
- #: includes/class-wcj-product-input-fields.php:25
7627
- msgid "WooCommerce product input fields."
7628
- msgstr "WooCommerce Produkt-Eingabefelder."
7629
-
7630
- #: includes/class-wcj-product-input-fields.php:124
7631
- msgid "Product Input Fields per Product Options"
7632
- msgstr "Produkt-Eingabefelder pro Produkt Optionen"
7633
-
7634
- #: includes/class-wcj-product-input-fields.php:126
7635
- #: includes/class-wcj-product-input-fields.php:164
7636
- msgid ""
7637
- "Add custom input fields to product's single page for customer to fill before "
7638
- "adding product to cart."
7639
- msgstr ""
7640
- "Füge benutzerdefinierte Eingabefelder der Produkt-Einzelseite hinzu, die ein "
7641
- "Kunde ausfüllen muss, bevor das Produkt in den Warenkorb gelegt wird."
7642
-
7643
- #: includes/class-wcj-product-input-fields.php:127
7644
- msgid ""
7645
- "When enabled this module will add \"Product Input Fields\" tab to each "
7646
- "product's \"Edit\" page."
7647
- msgstr ""
7648
- "Wenn aktiviert, wird dieses Modul jedem Produkt \"Produkt-Eingabefelder\"-"
7649
- "Tab der Bearbeitungsseite hinzufügen."
7650
-
7651
- #: includes/class-wcj-product-input-fields.php:132
7652
- msgid "Product Input Fields - per Product"
7653
- msgstr "Produkt-Eingabefelder - pro Produkt"
7654
-
7655
- #: includes/class-wcj-product-input-fields.php:134
7656
- msgid "Add custom input field on per product basis."
7657
- msgstr ""
7658
- "Benutzerdefinierte Eingabefelder auf einer pro Produktbasis hinzufügen."
7659
-
7660
- #: includes/class-wcj-product-input-fields.php:141
7661
- msgid "Default Number of Product Input Fields per Product"
7662
- msgstr "Voreingestellte Anzahl von Produkt-Eingabefeldern pro Produkt"
7663
-
7664
- #: includes/class-wcj-product-input-fields.php:162
7665
- msgid "Product Input Fields Global Options"
7666
- msgstr "Produkt-Eingabefelder - Globale Optionen"
7667
-
7668
- #: includes/class-wcj-product-input-fields.php:169
7669
- msgid "Product Input Fields - All Products"
7670
- msgstr "Produkt-Eingabefelder - Alle Produkte"
7671
-
7672
- #: includes/class-wcj-product-input-fields.php:171
7673
- msgid "Add custom input fields to all products."
7674
- msgstr "Benutzerdefinierte Eingabefelder allen Produkten hinzufügen."
7675
-
7676
- #: includes/class-wcj-product-input-fields.php:178
7677
- msgid "Product Input Fields Number"
7678
- msgstr "Produkt-Eingabefelder Anzahl"
7679
-
7680
- #: includes/class-wcj-product-input-fields.php:198
7681
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:300
7682
- #: includes/input-fields/class-wcj-product-input-fields-per-product.php:164
7683
- msgid "Product Input Field"
7684
- msgstr "Produkt-Eingabefeld"
7685
-
7686
- #: includes/class-wcj-product-input-fields.php:232
7687
- msgid "Affects Checkout, Emails and Admin Orders View"
7688
- msgstr "Betrifft Checkout, E-Mails und Admin-Bestellungen-Ansicht"
7689
-
7690
- #: includes/class-wcj-product-input-fields.php:276
7691
- msgid "Admin Order View Options"
7692
- msgstr "Admin Bestellansichts-Optionen"
7693
-
7694
- #: includes/class-wcj-product-input-fields.php:282
7695
- msgid "Replace Field ID with Field Label"
7696
- msgstr "Ersetze die Feld-ID mit Feld-Label"
7697
-
7698
- #: includes/class-wcj-product-listings.php:25
7699
- msgid "Product Listings"
7700
- msgstr "Produktauflistungen"
7701
-
7702
- #: includes/class-wcj-product-listings.php:26
7703
- msgid ""
7704
- "Change WooCommerce display options for shop and category pages: show/hide "
7705
- "categories count, exclude categories, show/hide empty categories. Add "
7706
- "\"products per page\" selector."
7707
- msgstr ""
7708
- "Ändere WooCommerce-Anzeigeoptionen für Shop- und Kategorieseiten: "
7709
- "Anzeigen/Ausblenden von Kategorienzählung, Kategorien ausschließen, leere "
7710
- "Kategorien ein-/ausblenden. \"Produkte pro Seite\"-Wähler hinzufügen."
7711
-
7712
- #: includes/class-wcj-product-listings.php:141
7713
- #: includes/class-wcj-product-listings.php:491
7714
- msgid ""
7715
- "Products <strong>%from% - %to%</strong> from <strong>%total%</strong>. "
7716
- "Products on page %select_form%"
7717
- msgstr ""
7718
- "Produkte <strong>%from% - %to%</strong> ab <strong>% gesamt% </ strong>. "
7719
- "Produkte auf Seite %select_form%"
7720
-
7721
- #: includes/class-wcj-product-listings.php:362
7722
- msgid "Shop Page Display Options"
7723
- msgstr "Shop-Seite Anzeige-Optionen"
7724
-
7725
- #: includes/class-wcj-product-listings.php:364
7726
- msgid ""
7727
- "This will work only when \"Shop Page Display\" in \"WooCommerce > Settings > "
7728
- "Products > Product Listings\" is set to \"Show subcategories\" or \"Show "
7729
- "both\"."
7730
- msgstr ""
7731
- "Dies funktioniert nur, wenn \"Shop Page Display\" in \"WooCommerce > "
7732
- "Einstellungen > Produkte > Produktlisten\" auf \"Unterkategorien anzeigen\" "
7733
- "oder \"Zeige beide\" gesetzt ist."
7734
-
7735
- #: includes/class-wcj-product-listings.php:368
7736
- msgid "Categories Count"
7737
- msgstr "Kategorienzähler"
7738
-
7739
- #: includes/class-wcj-product-listings.php:369
7740
- msgid "Hide categories count on shop page"
7741
- msgstr "Kategorienzähler auf Shop-Seite ausblenden"
7742
-
7743
- #: includes/class-wcj-product-listings.php:375
7744
- msgid "Exclude Categories"
7745
- msgstr "Kategorien ausschließen"
7746
-
7747
- #: includes/class-wcj-product-listings.php:376
7748
- msgid ""
7749
- " Excludes one or more categories from the shop page. This parameter takes a "
7750
- "comma-separated list of categories by unique ID, in ascending order. Leave "
7751
- "blank to disable."
7752
- msgstr ""
7753
- " Schließt eine oder mehr Kategorien von der Shopseite aus. Dieser Parameter "
7754
- "nimmt eine durch Kommas getrennte Liste von Kategorien durch eindeutige ID "
7755
- "in aufsteigender Reihenfolge auf. Leer lassen, um zu deaktivieren."
7756
-
7757
- #: includes/class-wcj-product-listings.php:383
7758
- #: includes/class-wcj-product-listings.php:424
7759
- msgid "Hide Empty"
7760
- msgstr "Leer ausblenden"
7761
-
7762
- #: includes/class-wcj-product-listings.php:384
7763
- msgid "Hide empty categories on shop page"
7764
- msgstr "Leere Kategorien auf Shopseite ausblenden"
7765
-
7766
- #: includes/class-wcj-product-listings.php:390
7767
- #: includes/class-wcj-product-listings.php:431
7768
- msgid "Show Products"
7769
- msgstr "Zeige Produkte"
7770
-
7771
- #: includes/class-wcj-product-listings.php:391
7772
- msgid "Show products if no categories are displayed on shop page"
7773
- msgstr "Zeige Produkte auf Shopseite, wenn keine Kategorien angezeigt werden"
7774
-
7775
- #: includes/class-wcj-product-listings.php:401
7776
- msgid "Category Display Options"
7777
- msgstr "Kategorie Anzeigeoptionen"
7778
-
7779
- #: includes/class-wcj-product-listings.php:403
7780
- msgid ""
7781
- "This will work only when \"Default Category Display\" in \"WooCommerce > "
7782
- "Settings > Products > Product Listings\" is set to \"Show subcategories\" or "
7783
- "\"Show both\"."
7784
- msgstr ""
7785
- "Dies funktioniert nur, wenn \"Standard-Kategorie Anzeige\" in \"WooCommerce >"
7786
- " Einstellungen > Produkte > Produktlisten\" auf \"Unterkategorien anzeigen\" "
7787
- "oder \"Zeige beides\" gesetzt ist."
7788
-
7789
- #: includes/class-wcj-product-listings.php:407
7790
- msgid "Subcategories Count"
7791
- msgstr "Unterkategorien-Zähler"
7792
-
7793
- #: includes/class-wcj-product-listings.php:408
7794
- msgid "Hide subcategories count on category pages"
7795
- msgstr "Unterkategorien ausblenden auf Kategorieseiten"
7796
-
7797
- #: includes/class-wcj-product-listings.php:416
7798
- msgid "Exclude Subcategories"
7799
- msgstr "Unterkategorien ausblenden"
7800
-
7801
- #: includes/class-wcj-product-listings.php:417
7802
- msgid ""
7803
- " Excludes one or more categories from the category (archive) pages. This "
7804
- "parameter takes a comma-separated list of categories by unique ID, in "
7805
- "ascending order. Leave blank to disable."
7806
- msgstr ""
7807
- " Schließt eine oder mehrere Kategorien von den Kategorie(Archiv)-Seiten aus. "
7808
- "Dieser Parameter nimmt eine durch Kommas getrennte Liste von Kategorien "
7809
- "durch eindeutige ID in aufsteigender Reihenfolge auf. Leer lassen, um zu "
7810
- "deaktivieren."
7811
-
7812
- #: includes/class-wcj-product-listings.php:425
7813
- msgid "Hide empty subcategories on category pages"
7814
- msgstr "Leere Unterkategorien auf Shopseite ausblenden"
7815
-
7816
- #: includes/class-wcj-product-listings.php:432
7817
- msgid "Show products if no categories are displayed on category page"
7818
- msgstr ""
7819
- "Produkte anzeigen, wenn keine Kategorien auf der Kategorienseite angezeigt "
7820
- "werden"
7821
-
7822
- #: includes/class-wcj-product-listings.php:442
7823
- msgid "Products per Page Options"
7824
- msgstr "Produkte pro Seite Optionen"
7825
-
7826
- #: includes/class-wcj-product-listings.php:447
7827
- msgid "Enable Products per Page"
7828
- msgstr "Produkte pro Seite aktivieren"
7829
-
7830
- #: includes/class-wcj-product-listings.php:454
7831
- msgid "Select Options"
7832
- msgstr "Optionen wählen"
7833
-
7834
- #: includes/class-wcj-product-listings.php:455
7835
- msgid "Name|Number; one per line; -1 for all products"
7836
- msgstr "Name|Nummer; eine pro Linie; -1 für alle Produkte"
7837
-
7838
- #: includes/class-wcj-product-listings.php:477
7839
- msgid "Before shop loop"
7840
- msgstr "Vor dem Shop-Loop"
7841
-
7842
- #: includes/class-wcj-product-listings.php:478
7843
- msgid "After shop loop"
7844
- msgstr "Nach dem Shop-Loop"
7845
-
7846
- #: includes/class-wcj-product-listings.php:500
7847
- msgid "TAX Display Prices in the Shop"
7848
- msgstr "Steuern-Preisanzeige im Shop"
7849
-
7850
- #: includes/class-wcj-product-listings.php:502
7851
- msgid ""
7852
- "If you want to display part of your products including TAX and another part "
7853
- "excluding TAX, you can set it here."
7854
- msgstr ""
7855
- "Wenn Du einen Teil Ihrer Produkte inkl. Steuern und einen anderen Teil exkl. "
7856
- "Steuern anzeigen möchtest, kannst Du das hier einstellen."
7857
-
7858
- #: includes/class-wcj-product-listings.php:506
7859
- msgid "Products - Including TAX"
7860
- msgstr "Produkte - inkl. Steuern"
7861
-
7862
- #: includes/class-wcj-product-listings.php:508
7863
- msgid "Select products to display including TAX."
7864
- msgstr "Wähle Produkte aus, die angezeigt werden sollen, inkl. Steuern."
7865
-
7866
- #: includes/class-wcj-product-listings.php:516
7867
- msgid "Products - Excluding TAX"
7868
- msgstr "Produkte - exkl. Steuern"
7869
-
7870
- #: includes/class-wcj-product-listings.php:518
7871
- msgid "Select products to display excluding TAX."
7872
- msgstr "Wähle Produkte aus, die ohne Steuern angezeigt werden sollen."
7873
-
7874
- #: includes/class-wcj-product-listings.php:526
7875
- msgid "Product Categories - Including TAX"
7876
- msgstr "Produktkategorien - inkl. Steuern"
7877
-
7878
- #: includes/class-wcj-product-listings.php:528
7879
- msgid "Select product categories to display including TAX."
7880
- msgstr "Wähle Produktkategorien aus, die mit Steuern angezeigt werden sollen."
7881
-
7882
- #: includes/class-wcj-product-listings.php:536
7883
- msgid "Product Categories - Excluding TAX"
7884
- msgstr "Produktkategorien - exkl. Steuern"
7885
-
7886
- #: includes/class-wcj-product-listings.php:538
7887
- msgid "Select product categories to display excluding TAX."
7888
- msgstr "Wähle Produktkategorien aus, die ohne Steuern angezeigt werden sollen."
7889
-
7890
- #: includes/class-wcj-product-open-pricing.php:27
7891
- msgid "Product Open Pricing (Name Your Price)"
7892
- msgstr "Produkt mit offenem Preis (Nenne Deinen Preis)"
7893
-
7894
- #: includes/class-wcj-product-price-by-formula.php:27
7895
- msgid "Product Price by Formula"
7896
- msgstr "Produktpreis nach Formel"
7897
-
7898
- #: includes/class-wcj-product-price-by-formula.php:206
7899
- msgid ""
7900
- "Booster: Free plugin's version is limited to only one price by formula "
7901
- "product enabled at a time. You will need to get <a href=\"http://booster."
7902
- "io/plus/\" target=\"_blank\">Booster Plus</a> to add unlimited number of "
7903
- "price by formula products."
7904
- msgstr ""
7905
- "Booster: Die kostenlose Plugin-Version ist auf nur einen Produktpreis nach "
7906
- "Formel begrenzt. Du musst <a href=\"http://booster.io/plus/\" "
7907
- "target=\"_blank\">Booster Plus</a> erwerben, um eine unbegrenzte Anzahl von "
7908
- "\"Produktpreis nach Formel\"-Produkten hinzufügen zu können."
7909
-
7910
- #: includes/class-wcj-product-price-by-formula.php:247
7911
- msgid "Calculation"
7912
- msgstr "Berechnung"
7913
-
7914
- #: includes/class-wcj-product-price-by-formula.php:253
7915
- #: includes/class-wcj-product-price-by-formula.php:313
7916
- msgid "Formula"
7917
- msgstr "Formel"
7918
-
7919
- #: includes/class-wcj-product-price-by-formula.php:259
7920
- msgid "Number of Parameters"
7921
- msgstr "Anzahl der Parameter"
7922
-
7923
- #: includes/class-wcj-product-price-by-formula.php:293
7924
- msgid "Final Price Preview"
7925
- msgstr "Endgültiger Preis-Vorschau"
7926
-
7927
- #: includes/class-wcj-product-price-by-formula.php:307
7928
- msgid "Default Settings"
7929
- msgstr "Voreinstellungen"
7930
-
7931
- #: includes/class-wcj-product-price-by-formula.php:309
7932
- msgid ""
7933
- "You can set default settings here. All settings can later be changed in "
7934
- "individual product's edit page."
7935
- msgstr ""
7936
- "Hier kannst Du Voreinstellungen festlegen. Alle Einstellungen können später, "
7937
- "auf der jeweiligen Produktbearbeitungsseite, geändert werden."
7938
-
7939
- #: includes/class-wcj-product-price-by-formula.php:314
7940
- msgid "Use \"x\" variable for product's base price. For example: x+p1*p2"
7941
- msgstr "Nutze \"x\"-Variable für den Produktbasispreis, z.B.: x+p1*p2"
7942
-
7943
- #: includes/class-wcj-product-price-by-formula.php:320
7944
- msgid "Total Params"
7945
- msgstr "Paramter-Gesamtanzahl"
7946
-
7947
- #: includes/class-wcj-product-tabs.php:25
7948
- msgid "Product Tabs"
7949
- msgstr "Produkt-Registerkarten"
7950
-
7951
- #: includes/class-wcj-product-tabs.php:26
7952
- msgid ""
7953
- "Add custom product tabs - globally or per product. Customize or completely "
7954
- "remove WooCommerce default product tabs."
7955
- msgstr ""
7956
- "Benutzerdefiniertes Produkt-Registerkarte hinzufügen - weltweit oder pro "
7957
- "Produkt. Passe an oder entferne die voreingestellten WooCommerce Produkt-"
7958
- "Registerkarten vollständig"
7959
-
7960
- #: includes/class-wcj-product-tabs.php:288
7961
- msgid "Booster: Custom Tabs"
7962
- msgstr "Booster: Benutzerdefinierte Registerkarte"
7963
-
7964
- #: includes/class-wcj-product-tabs.php:405
7965
- msgid "Total number of custom tabs"
7966
- msgstr "Gesamtanzahl an benutzerdefinierten Registerkarten"
7967
-
7968
- #: includes/class-wcj-product-tabs.php:426
7969
- #: includes/class-wcj-related-products.php:127
7970
- msgid "Order"
7971
- msgstr "Sortierung"
7972
-
7973
- #: includes/class-wcj-product-tabs.php:499
7974
- msgid "This section lets you add custom single product tabs."
7975
- msgstr ""
7976
- "Dieser Abschnitt lässt Dich benutzerdefinierte Einzelprodukt-Registerkarten "
7977
- "hinzufügen."
7978
-
7979
- #: includes/class-wcj-product-tabs.php:673
7980
- msgid "This section lets you set defaults for per product custom tabs."
7981
- msgstr ""
7982
- "Dieser Abschnitt lässt Dich die Vorgaben für benutzerdefinierte Pro-Produkt-"
7983
- "Registerkarten festlegen."
7984
-
7985
- #: includes/class-wcj-product-tabs.php:805
7986
- msgid "This section lets you customize single product tabs."
7987
- msgstr "Dieser Abschnitt lässt Dich Einzelprodukt-Registerkarten anpassen."
7988
-
7989
- #: includes/class-wcj-products-xml.php:96
7990
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:203
7991
- msgid "Once Weekly"
7992
- msgstr "Einmal wöchentlich"
7993
-
7994
- #: includes/class-wcj-products-xml.php:285
7995
- msgid "Update Period"
7996
- msgstr "Zeitraum aktualisieren"
7997
-
7998
- #: includes/class-wcj-products-xml.php:297
7999
- msgid ""
8000
- "Possible update periods are: every minute, hourly, twice daily, daily and "
8001
- "weekly."
8002
- msgstr ""
8003
- "Mögliche Aktualisierungszeiträume sind: jede Minute, stündlich, zweimal "
8004
- "täglich, täglich und wöchentlich."
8005
-
8006
- #: includes/class-wcj-purchase-data.php:26
8007
- msgid "Product Cost Price"
8008
- msgstr "Produktkosten-Preis"
8009
-
8010
- #: includes/class-wcj-purchase-data.php:27
8011
- msgid "Save WooCommerce product purchase costs data for admin reports."
8012
- msgstr "Speichere WooCommerce Produktverkaufskosten-Daten für Admin-Berichte."
8013
-
8014
- #: includes/class-wcj-purchase-data.php:116
8015
- #: includes/class-wcj-purchase-data.php:278
8016
- msgid "Product cost (purchase) price"
8017
- msgstr "Produktkosten-(Kauf)-Preis"
8018
-
8019
- #: includes/class-wcj-purchase-data.php:168
8020
- #: includes/class-wcj-purchase-data.php:359
8021
- msgid "(Last) Purchase date"
8022
- msgstr "(Letztes) Kaufdatum"
8023
-
8024
- #: includes/class-wcj-purchase-data.php:384
8025
- msgid "Orders List Custom Columns"
8026
- msgstr "Bestellliste benutzerdefinierte Spalten"
8027
-
8028
- #: includes/class-wcj-related-products.php:26
8029
- msgid ""
8030
- "Change displayed WooCommerce related products number, columns, order, relate "
8031
- "by tag and/or category, or hide related products completely."
8032
- msgstr ""
8033
- "Ändern der angezeigten WooCommerce-bezogenen Produktnummern, Spalten, "
8034
- "Reihenfolge, beziehen sich auf Stichwort und/oder Kategorie oder verbergen "
8035
- "ähnliche Produkte vollständig."
8036
-
8037
- #: includes/class-wcj-related-products.php:104
8038
- msgid "Related Products Number"
8039
- msgstr "Ähnliche Produkte Nummer"
8040
-
8041
- #: includes/class-wcj-related-products.php:110
8042
- msgid "Related Products Columns"
8043
- msgstr "Ähnliche Produkte Spalten"
8044
-
8045
- #: includes/class-wcj-related-products.php:116
8046
- msgid "Order by"
8047
- msgstr "Ordnen nach"
8048
-
8049
- #: includes/class-wcj-related-products.php:121
8050
- msgid "Random"
8051
- msgstr "Zufällig"
8052
-
8053
- #: includes/class-wcj-related-products.php:122
8054
- msgid "Date"
8055
- msgstr "Datum"
8056
-
8057
- #: includes/class-wcj-related-products.php:133
8058
- msgid "Ascending"
8059
- msgstr "Aufsteigend"
8060
-
8061
- #: includes/class-wcj-related-products.php:134
8062
- msgid "Descending"
8063
- msgstr "Absteigend"
8064
-
8065
- #: includes/class-wcj-related-products.php:150
8066
- msgid "Hide Related Products"
8067
- msgstr "Verstecke Ähnliche Produkte"
8068
-
8069
- #: includes/class-wcj-reports.php:34
8070
- msgid "Reports"
8071
- msgstr "Berichte"
8072
-
8073
- #: includes/class-wcj-reports.php:73
8074
- msgid "Booster: More Ranges - Months"
8075
- msgstr "Booster: Mehr Umfang - Monate"
8076
-
8077
- #: includes/class-wcj-reports.php:75 includes/class-wcj-reports.php:111
8078
- msgid "Select Range"
8079
- msgstr "Umfang wählen"
8080
-
8081
- #: includes/class-wcj-reports.php:109
8082
- msgid "Booster: More Ranges"
8083
- msgstr "Booster: Mehr Umfang"
8084
-
8085
- #: includes/class-wcj-reports.php:119 includes/class-wcj-reports.php:121
8086
- msgid "Last 14 Days"
8087
- msgstr "Letzte 14 Tage"
8088
-
8089
- #: includes/class-wcj-reports.php:126 includes/class-wcj-reports.php:128
8090
- msgid "Last 30 Days"
8091
- msgstr "Letzte 30 Tage"
8092
-
8093
- #: includes/class-wcj-reports.php:133 includes/class-wcj-reports.php:135
8094
- msgid "Last 3 Months"
8095
- msgstr "Letzte 3 Monate"
8096
-
8097
- #: includes/class-wcj-reports.php:140 includes/class-wcj-reports.php:142
8098
- msgid "Last 6 Months"
8099
- msgstr "Letzte 6 Monate"
8100
-
8101
- #: includes/class-wcj-reports.php:147 includes/class-wcj-reports.php:149
8102
- msgid "Last 12 Months"
8103
- msgstr "Letzte 12 Monate"
8104
-
8105
- #: includes/class-wcj-reports.php:154 includes/class-wcj-reports.php:156
8106
- msgid "Last 24 Months"
8107
- msgstr "Letzte 24 Monate"
8108
-
8109
- #: includes/class-wcj-reports.php:161 includes/class-wcj-reports.php:163
8110
- msgid "Same Days Last Month"
8111
- msgstr "Gleiche Tage Letzter Monat"
8112
-
8113
- #: includes/class-wcj-reports.php:175 includes/class-wcj-reports.php:177
8114
- msgid "Last Year"
8115
- msgstr "Letztes Jahr"
8116
-
8117
- #: includes/class-wcj-reports.php:241
8118
- msgid "Booster: Product Sales"
8119
- msgstr "Booster: Verkaufte Produkte"
8120
-
8121
- #: includes/class-wcj-reports.php:248
8122
- msgid "Booster: Monthly Sales"
8123
- msgstr "Booster: Monatliche Verkäufe"
8124
-
8125
- #: includes/class-wcj-reports.php:263
8126
- msgid "Booster: All in stock"
8127
- msgstr "Booster: Alles auf Lager"
8128
-
8129
- #: includes/class-wcj-reports.php:270
8130
- msgid "Booster: Understocked"
8131
- msgstr "Booester: Untervorratet"
8132
-
8133
- #: includes/class-wcj-reports.php:277
8134
- msgid "Booster: Overstocked"
8135
- msgstr "Booster: Übervorratet"
8136
-
8137
- #: includes/class-wcj-reports.php:323
8138
- msgid "Count variations in product sales report"
8139
- msgstr "Zähle Varianten in Produktverkaufsbericht"
8140
-
8141
- #: includes/class-wcj-reports.php:328
8142
- msgid "Monthly Sales (with currency conversions)"
8143
- msgstr "Monatliche Verkäufe (mit Währungsumrechnungen)"
8144
-
8145
- #: includes/class-wcj-reports.php:352
8146
- msgid "Understocked products (calculated by sales data)"
8147
- msgstr "Untervorratete Produkte (berechnet nach Verkaufsdaten)"
8148
-
8149
- #: includes/class-wcj-reports.php:358
8150
- msgid "Overstocked products (calculated by sales data)"
8151
- msgstr "Übervorratete Produkte (berechnet nach Verkaufsdaten)"
8152
-
8153
- #: includes/class-wcj-reports.php:366
8154
- msgid "Available Reports"
8155
- msgstr "Verfügbare Berichte"
8156
-
8157
- #: includes/class-wcj-reports.php:383
8158
- msgid "View report"
8159
- msgstr "Bericht ansehen"
8160
-
8161
- #: includes/class-wcj-shipping-calculator.php:25
8162
- msgid "Shipping Calculator"
8163
- msgstr "Versandrechner"
8164
-
8165
- #: includes/class-wcj-shipping-calculator.php:26
8166
- msgid "Customize WooCommerce shipping calculator on cart page."
8167
- msgstr "Anpassung des WooCommerce Versandrechners auf Warenkorbseite."
8168
-
8169
- #: includes/class-wcj-shipping-calculator.php:128
8170
- msgid "Shipping Calculator Options"
8171
- msgstr "Versandrechner-Optionen"
8172
-
8173
- #: includes/class-wcj-shipping-calculator.php:133
8174
- msgid "Enable City"
8175
- msgstr "Stadt aktivieren"
8176
-
8177
- #: includes/class-wcj-shipping-calculator.php:140
8178
- msgid "Enable Postcode"
8179
- msgstr "Postleitzahl aktivieren"
8180
-
8181
- #: includes/class-wcj-shipping-calculator.php:147
8182
- msgid "Enable State"
8183
- msgstr "Zustand aktivieren"
8184
-
8185
- #: includes/class-wcj-shipping-calculator.php:154
8186
- msgid "Force Block Open"
8187
- msgstr "Erzwinge Block öffnen"
8188
-
8189
- #: includes/class-wcj-shipping-calculator.php:162
8190
- msgid "Calculate Shipping button"
8191
- msgstr "Versandkosten berechnen-Button"
8192
-
8193
- #: includes/class-wcj-shipping-calculator.php:163
8194
- msgid ""
8195
- "When \"Force Block Open\" options is enabled, set Calculate Shipping button "
8196
- "options."
8197
- msgstr ""
8198
- "Wenn die Option \"Erzwinge Block öffnen\" aktiviert ist, stelle die Optionen "
8199
- "für den \"Versand berechnen\"-Button ein."
8200
-
8201
- #: includes/class-wcj-shipping-calculator.php:169
8202
- msgid "Make non clickable"
8203
- msgstr "Nicht anklickbar machen"
8204
-
8205
- #: includes/class-wcj-shipping.php:27
8206
- msgid "Add multiple custom shipping methods to WooCommerce."
8207
- msgstr "Füge WooCommerce mehrfache benutzerdefinierte Versandmethoden hinzu."
8208
-
8209
- #: includes/class-wcj-shipping.php:29
8210
- msgid "Hide WooCommerce shipping when free is available."
8211
- msgstr "Verstecken von WooCommerce-Versand, wenn kostenlos verfügbar ist."
8212
-
8213
- #: includes/class-wcj-shipping.php:201
8214
- msgid "This section lets you set number of custom shipping methods to add."
8215
- msgstr ""
8216
- "Dieser Abschnitt lässt Dich die Anzahl von hinzufügbaren benutzerdefinierten "
8217
- "Versandmethoden festlegen."
8218
-
8219
- #: includes/class-wcj-shipping.php:205
8220
- msgid "Custom Shipping Methods Number"
8221
- msgstr "Benutzerdefinierte Versandmethoden-Nummer"
8222
-
8223
- #: includes/class-wcj-shipping.php:217
8224
- msgid "Admin Title Custom Shipping"
8225
- msgstr "Admin Titel benutzerdefinierter Versand"
8226
-
8227
- #: includes/class-wcj-shipping.php:231
8228
- msgid "Hide if Free is Available"
8229
- msgstr "Wenn \"kostenlos\" verfügbar ist, ausblenden"
8230
-
8231
- #: includes/class-wcj-shipping.php:233
8232
- msgid ""
8233
- "This section lets you hide other shipping options when free shipping is "
8234
- "available on shop frontend."
8235
- msgstr ""
8236
- "Dieser Abschnitt lässt Dich andere Versandoptionen ausblenden, wenn "
8237
- "kostenloser Versand im Shop-Frontend verfügbar ist."
8238
-
8239
- #: includes/class-wcj-shipping.php:245
8240
- msgid "Hide shipping"
8241
- msgstr "Versand ausblenden"
8242
-
8243
- #: includes/class-wcj-shipping.php:259 includes/class-wcj-shipping.php:265
8244
- msgid "Shipping Descriptions"
8245
- msgstr "Versandbeschreibungen"
8246
-
8247
- #: includes/class-wcj-shipping.php:261
8248
- msgid ""
8249
- "This section will allow you to add any text (e.g. description) for shipping "
8250
- "method. Text will be visible on cart and checkout pages. You can add HTML "
8251
- "tags here, e.g. try \"%s\""
8252
- msgstr ""
8253
- "In diesem Abschnitt kannst Du einen beliebigen Text (z. B. Beschreibung) für "
8254
- "die Versandart hinzufügen. Text wird auf Warenkorb- und Kassenseiten "
8255
- "sichtbar. Du kannst hier HTML-Tags hinzufügen, versuche z.B. \"%s\""
8256
-
8257
- #: includes/class-wcj-shipping.php:291 includes/class-wcj-shipping.php:297
8258
- msgid "Shipping Icons"
8259
- msgstr "Versandicons"
8260
-
8261
- #: includes/class-wcj-shipping.php:293
8262
- msgid ""
8263
- "This section will allow you to add icons for shipping method. Icons will be "
8264
- "visible on cart and checkout pages."
8265
- msgstr ""
8266
- "In diesem Abschnitt kannst Du Icons für die Versandmethode hinzufügen. Icons "
8267
- "werden auf Warenkorb- und Kassenseiten sichtbar."
8268
-
8269
- #: includes/class-wcj-sku.php:26 includes/class-wcj-sku.php:245
8270
- #: includes/export/class-wcj-fields-helper.php:283
8271
- msgid "SKU"
8272
- msgstr "SKU"
8273
-
8274
- #: includes/class-wcj-sku.php:27
8275
- msgid "Generate WooCommerce SKUs automatically."
8276
- msgstr "Generiere WooCommerce SKUs automatisch."
8277
-
8278
- #: includes/class-wcj-sku.php:33
8279
- msgid "Autogenerate SKUs"
8280
- msgstr "Autogenerieren von SKUs"
8281
-
8282
- #: includes/class-wcj-sku.php:321
8283
- msgid "Variable Products Variations"
8284
- msgstr "Varianten für Variable Produkte"
8285
-
8286
- #: includes/class-wcj-sku.php:322
8287
- msgid ""
8288
- "Please note, that on new variable product creation, variations will get same "
8289
- "SKUs as parent product, and if you want variations to have different SKUs, "
8290
- "you will need to run \"Autogenerate SKUs\" tool manually."
8291
- msgstr ""
8292
- "Bitte beachte, dass Variationen bei der Erzeugung neuer Variablen dieselben "
8293
- "SKUs wie das übergeordnete Produkt erhalten. Wenn Variationen "
8294
- "unterschiedliche SKUs haben sollen, musst Du das Werkzeug \"Autogenerieren "
8295
- "von SKUs\" manuell ausführen."
8296
-
8297
- #: includes/class-wcj-sku.php:386
8298
- msgid "If disabled you can use Autogenerate SKUs tool."
8299
- msgstr ""
8300
- "Wenn deaktiviert, kannst Du \"Autogenerieren von SKUs\"-Werkzeug verwenden."
8301
-
8302
- #: includes/class-wcj-sku.php:413
8303
- msgid ""
8304
- "If you wish to set SKUs for existing products, use \"Autogenerate SKUs\" "
8305
- "Tool."
8306
- msgstr ""
8307
- "Wenn Du SKUs für bestehende Produkte festlegen möchtest, verwende das "
8308
- "Werkzeug \"Autogenerieren von SKUs\"."
8309
-
8310
- #: includes/class-wcj-sorting.php:26
8311
- msgid "Sorting"
8312
- msgstr "Sortierung"
8313
-
8314
- #: includes/class-wcj-sorting.php:27
8315
- msgid ""
8316
- "Add more WooCommerce sorting options or remove all sorting including default."
8317
- msgstr ""
8318
- "Füge weitere WooCommerce Sortierungsoptionen hinzu oder entferne alle "
8319
- "Sortierungen einschließlich der Voreingestellten."
8320
-
8321
- #: includes/class-wcj-sorting.php:67
8322
- msgid "WooJetpack: Remove All Sorting"
8323
- msgstr "WooJetpack: Alle Sortierungen entfernen"
8324
-
8325
- #: includes/class-wcj-sorting.php:71
8326
- msgid "Completely remove sorting from the shop front end"
8327
- msgstr "Sortierung komplett aus dem Shop entfernen"
8328
-
8329
- #: includes/class-wcj-sorting.php:165 includes/class-wcj-sorting.php:170
8330
- msgid "Remove All Sorting"
8331
- msgstr "Entfernen aller Sortierungen"
8332
-
8333
- #: includes/class-wcj-sorting.php:171
8334
- msgid "Remove all sorting (including WooCommerce default)"
8335
- msgstr "Entferne alle Sortierungen (einschließlich WooCommerce-Voreinstellung)"
8336
-
8337
- #: includes/class-wcj-sorting.php:183 includes/class-wcj-sorting.php:188
8338
- msgid "Add More Sorting"
8339
- msgstr "Weitere Sortierung hinzufügen"
8340
-
8341
- #: includes/class-wcj-sorting.php:195
8342
- msgid "Sort by Name"
8343
- msgstr "Sortieren nach Name"
8344
-
8345
- #: includes/class-wcj-sorting.php:196 includes/class-wcj-sorting.php:199
8346
- msgid "Sort by title: A to Z"
8347
- msgstr "Sortieren nach Titel: A bis Z"
8348
-
8349
- #: includes/class-wcj-sorting.php:197 includes/class-wcj-sorting.php:206
8350
- #: includes/class-wcj-sorting.php:215 includes/class-wcj-sorting.php:224
8351
- #: includes/class-wcj-sorting.php:242 includes/class-wcj-sorting.php:251
8352
- msgid "Text to show on frontend. Leave blank to disable."
8353
- msgstr "Anzuzeigender Text im Frontend. Leer lassen, um zu deaktivieren."
8354
-
8355
- #: includes/class-wcj-sorting.php:205 includes/class-wcj-sorting.php:208
8356
- msgid "Sort by title: Z to A"
8357
- msgstr "Sortieren nach Titel: Z bis A"
8358
-
8359
- #: includes/class-wcj-sorting.php:213
8360
- msgid "Sort by SKU"
8361
- msgstr "Sortieren nach SKU"
8362
-
8363
- #: includes/class-wcj-sorting.php:214 includes/class-wcj-sorting.php:217
8364
- msgid "Sort by SKU: low to high"
8365
- msgstr "Sortieren nach SKU: von niedrig nach hoch"
8366
-
8367
- #: includes/class-wcj-sorting.php:223 includes/class-wcj-sorting.php:226
8368
- msgid "Sort by SKU: high to low"
8369
- msgstr "Sortieren nach SKU: von hoch nach niedrig"
8370
-
8371
- #: includes/class-wcj-sorting.php:232
8372
- msgid "Sort SKUs as numbers instead of as texts"
8373
- msgstr "Sortiere SKUs als Zahlen anstelle von Texten"
8374
-
8375
- #: includes/class-wcj-sorting.php:240
8376
- msgid "Sort by stock quantity"
8377
- msgstr "Nach Bestandsmenge sortieren"
8378
-
8379
- #: includes/class-wcj-sorting.php:241 includes/class-wcj-sorting.php:244
8380
- msgid "Sort by stock quantity: low to high"
8381
- msgstr "Nach Bestandsmenge sortieren: von niedrig nach hoch"
8382
-
8383
- #: includes/class-wcj-sorting.php:250 includes/class-wcj-sorting.php:253
8384
- msgid "Sort by stock quantity: high to low"
8385
- msgstr "Nach Bestandsmenge sortieren: von hoch nach niedrig"
8386
-
8387
- #: includes/class-wcj-wholesale-price.php:27
8388
- msgid "Wholesale Price"
8389
- msgstr "Großhandelspreis"
8390
-
8391
- #: includes/class-wcj-wholesale-price.php:28
8392
- msgid ""
8393
- "Set WooCommerce wholesale pricing depending on product quantity in cart (buy "
8394
- "more pay less)."
8395
- msgstr ""
8396
- "WooCommerce Großhandelspreisgestaltung, abhängig von der Produktmenge im "
8397
- "Einkaufswagen (mehr kaufen weniger zahlen) einstellen."
8398
-
8399
- #: includes/class-wcj-wholesale-price.php:266
8400
- msgid "Enable per Product Levels"
8401
- msgstr "Aktivieren von pro Produktstufen"
8402
-
8403
- #: includes/class-wcj-wholesale-price.php:273
8404
- #: includes/class-wcj-wholesale-price.php:419
8405
- msgid "Discount Type"
8406
- msgstr "Rabattart"
8407
-
8408
- #: includes/class-wcj-wholesale-price.php:280
8409
- #: includes/class-wcj-wholesale-price.php:315
8410
- #: includes/class-wcj-wholesale-price.php:455
8411
- #: includes/class-wcj-wholesale-price.php:510
8412
- msgid "Number of levels"
8413
- msgstr "Anzahl der Stufen"
8414
-
8415
- #: includes/class-wcj-wholesale-price.php:281
8416
- #: includes/class-wcj-wholesale-price.php:316
8417
- msgid ""
8418
- "Free Booster's version is limited to one level maximum. Please visit http:"
8419
- "//booster.io to get full version."
8420
- msgstr ""
8421
- "Free Booster-Version ist auf maximal eine Stufe begrenzt. Bitte besuche http:"
8422
- "//booster.io, um die Vollversion zu erwerben."
8423
-
8424
- #: includes/class-wcj-wholesale-price.php:295
8425
- #: includes/class-wcj-wholesale-price.php:302
8426
- #: includes/class-wcj-wholesale-price.php:330
8427
- #: includes/class-wcj-wholesale-price.php:337
8428
- msgid "Level"
8429
- msgstr "Stufe"
8430
-
8431
- #: includes/class-wcj-wholesale-price.php:295
8432
- #: includes/class-wcj-wholesale-price.php:330
8433
- #: includes/class-wcj-wholesale-price.php:468
8434
- #: includes/class-wcj-wholesale-price.php:524
8435
- msgid "Min quantity"
8436
- msgstr "Mindestmenge"
8437
-
8438
- #: includes/class-wcj-wholesale-price.php:302
8439
- #: includes/export/class-wcj-fields-helper.php:288
8440
- #: includes/reports/wcj-class-reports-stock.php:321
8441
- msgid "Price"
8442
- msgstr "Preis"
8443
-
8444
- #: includes/class-wcj-wholesale-price.php:302
8445
- #: includes/class-wcj-wholesale-price.php:337
8446
- #: includes/class-wcj-wholesale-price.php:476
8447
- #: includes/class-wcj-wholesale-price.php:477
8448
- #: includes/class-wcj-wholesale-price.php:532
8449
- #: includes/class-wcj-wholesale-price.php:533
8450
- msgid "Discount"
8451
- msgstr "Rabatt"
8452
-
8453
- #: includes/class-wcj-wholesale-price.php:379
8454
- msgid ""
8455
- "Wholesale Price Levels Options. If you want to display prices table on "
8456
- "frontend, use [wcj_product_wholesale_price_table] shortcode."
8457
- msgstr ""
8458
- "Großhandels-Preisstufen-Optionen. Wenn Du die Preistabelle auf dem Frontend "
8459
- "anzeigen möchtest, verwende den Shortcode [wcj_product_wholesale_price_table]"
8460
- "."
8461
-
8462
- #: includes/class-wcj-wholesale-price.php:383
8463
- msgid "Enable per Product"
8464
- msgstr "Aktivieren pro Produkt"
8465
-
8466
- #: includes/class-wcj-wholesale-price.php:390
8467
- msgid "Use total cart quantity instead of product quantity"
8468
- msgstr "Verwende die gesamte Warenkorbmenge statt der Produktmenge"
8469
-
8470
- #: includes/class-wcj-wholesale-price.php:397
8471
- msgid "Apply wholesale discount only if no other cart discounts were applied"
8472
- msgstr ""
8473
- "Wende den Großhandelsrabatt nur an, wenn keine anderen Warenkorbrabatte "
8474
- "angewandt wurden"
8475
-
8476
- #: includes/class-wcj-wholesale-price.php:404
8477
- msgid "Show discount info on cart page"
8478
- msgstr "Zeige Rabatt-Info auf der Warenkorbseite"
8479
-
8480
- #: includes/class-wcj-wholesale-price.php:405
8481
- msgid "Show"
8482
- msgstr "Zeige"
8483
-
8484
- #: includes/class-wcj-wholesale-price.php:411
8485
- msgid "If show discount info on cart page is enabled, set format here"
8486
- msgstr ""
8487
- "Wenn die Rabattinfo auf der Warenkorbseite aktiviert ist, lege hier das "
8488
- "Format fest"
8489
-
8490
- #: includes/class-wcj-wholesale-price.php:429
8491
- msgid "Products to include"
8492
- msgstr "Einzuschließende Produkte"
8493
-
8494
- #: includes/class-wcj-wholesale-price.php:430
8495
- msgid "Leave blank to include all products."
8496
- msgstr "Lasse das Feld leer, um alle Produkte einzuschließen."
8497
-
8498
- #: includes/class-wcj-wholesale-price.php:438
8499
- msgid "Products to exclude"
8500
- msgstr "Auszuschließende Produkte"
8501
-
8502
- #: includes/class-wcj-wholesale-price.php:450
8503
- msgid "Wholesale Levels Options"
8504
- msgstr "Großhandel-Abstufungs-Optionen"
8505
-
8506
- #: includes/class-wcj-wholesale-price.php:469
8507
- #: includes/class-wcj-wholesale-price.php:525
8508
- msgid "Minimum quantity to apply discount"
8509
- msgstr "Mindestabnahmemenge um Rabatt anzuwenden"
8510
-
8511
- #: includes/class-wcj-wholesale-price.php:490
8512
- msgid "Additional User Roles Options"
8513
- msgstr "Optionen für zusätzliche Benutzer-Rollen"
8514
-
8515
- #: includes/class-wcj-wholesale-price.php:492
8516
- msgid ""
8517
- "If you want to set different wholesale pricing options for different user "
8518
- "roles, fill this section. Please note that you can also use Booster's "
8519
- "\"Price by User Role\" module without filling this section."
8520
- msgstr ""
8521
- "Wenn Du verschiedene Großhandelspreisoptionen für verschiedene "
8522
- "Benutzerrollen festlegen möchtest, fülle diesen Abschnitt aus. Bitte beachte,"
8523
- " dass Du auch das Modul \"Preis nach Benutzer-Rolle\" von Booster verwenden "
8524
- "kannst, ohne diesen Abschnitt auszufüllen."
8525
-
8526
- #: includes/class-wcj-wholesale-price.php:496
8527
- msgid "User Roles Settings"
8528
- msgstr "Benutzer Rollen-Einstellungen"
8529
-
8530
- #: includes/class-wcj-wpml.php:26
8531
- msgid "Booster WPML"
8532
- msgstr "Booster WPML"
8533
-
8534
- #: includes/class-wcj-wpml.php:27
8535
- msgid "Booster for WooCommerce basic WPML support."
8536
- msgstr "Booster for WooCommerce Grundlegende Unterstützung für WPML."
8537
-
8538
- #: includes/class-wcj-wpml.php:66 includes/classes/class-wcj-module.php:336
8539
- msgid "Tools"
8540
- msgstr "Werkzeuge"
8541
-
8542
- #: includes/class-wcj-wpml.php:71 includes/classes/class-wcj-module.php:342
8543
- msgid "Module Tools"
8544
- msgstr "Modul-Werkzeuge"
8545
-
8546
- #: includes/class-wcj-wpml.php:76 includes/class-wcj-wpml.php:79
8547
- msgid "Regenerate wpml-config.xml file"
8548
- msgstr "Regeneriere die Datei wpml-config.xml"
8549
-
8550
- #: includes/class-wcj-wpml.php:104
8551
- msgid "File wpml-config.xml successfully regenerated!"
8552
- msgstr "Datei wpml-config.xml erfolgreich regeneriert!"
8553
-
8554
- #: includes/classes/class-wcj-module.php:324
8555
- msgid "Back to Module Settings"
8556
- msgstr "Zurück zu Moduleinstellungen"
8557
-
8558
- #: includes/classes/class-wcj-module.php:416
8559
- msgid "disabled"
8560
- msgstr "deaktiviert"
8561
-
8562
- #: includes/classes/class-wcj-module.php:462
8563
- msgid "Reset Settings"
8564
- msgstr "Einstellungen rücksetzen"
8565
-
8566
- #: includes/classes/class-wcj-module.php:468
8567
- msgid "Reset Module to Default Settings"
8568
- msgstr "Modul auf Voreinstellungen rücksetzen"
8569
-
8570
- #: includes/classes/class-wcj-module.php:469
8571
- msgid "Reset Submodule to Default Settings"
8572
- msgstr "Untermodul auf Voreinstellungen rücksetzen"
8573
-
8574
- #: includes/classes/class-wcj-module.php:473
8575
- msgid "Reset settings"
8576
- msgstr "Einstellungen rücksetzen"
8577
-
8578
- #: includes/classes/class-wcj-module.php:501
8579
- msgid "Module Options"
8580
- msgstr "Moduloptionen"
8581
-
8582
- #: includes/classes/class-wcj-module.php:508
8583
- msgid "Enable Module"
8584
- msgstr "Modul aktivieren"
8585
-
8586
- #: includes/currencies/wcj-currencies.php:83
8587
- msgid "Kenyan shilling"
8588
- msgstr "Kenia-Schilling"
8589
-
8590
- #: includes/emails/class-wc-email-wcj-custom.php:31
8591
- msgid ""
8592
- "Custom emails are sent to the recipient list when selected triggers are "
8593
- "called."
8594
- msgstr ""
8595
- "Wenn ausgewählte Auslöser aufgerufen werden, werden benutzerdefinierte E-"
8596
- "Mails an die Empfängerliste gesendet."
8597
-
8598
- #: includes/emails/class-wc-email-wcj-custom.php:33
8599
- msgid "Custom Heading"
8600
- msgstr "Benutzerdefinierte Überschrift"
8601
-
8602
- #: includes/emails/class-wc-email-wcj-custom.php:34
8603
- msgid "[{site_title}] Custom Subject - Order ({order_number}) - {order_date}"
8604
- msgstr ""
8605
- "[{site_title}] Benutzerdefinierter Betreff - Bestellung ({order_number}) - "
8606
- "{order_date}"
8607
-
8608
- #: includes/emails/class-wc-email-wcj-custom.php:251
8609
- msgid "New order (%s)"
8610
- msgstr "neue bestellung (%s)"
8611
-
8612
- #: includes/emails/class-wc-email-wcj-custom.php:252
8613
- msgid "Order status updated to %s"
8614
- msgstr "Bestellzustand aktualisiert zu %s"
8615
-
8616
- #: includes/emails/class-wc-email-wcj-custom.php:262
8617
- #: includes/gateways/class-wc-gateway-wcj-custom.php:61
8618
- #: includes/shipping/class-wc-shipping-wcj-custom.php:76
8619
- msgid "Enable/Disable"
8620
- msgstr "Aktivieren/Deaktivieren"
8621
-
8622
- #: includes/emails/class-wc-email-wcj-custom.php:264
8623
- msgid "Enable this email notification"
8624
- msgstr "Aktiviere diese Emailbenachrichtigung"
8625
-
8626
- #: includes/emails/class-wc-email-wcj-custom.php:268
8627
- msgid "Trigger(s)"
8628
- msgstr "Auslöser"
8629
-
8630
- #: includes/emails/class-wc-email-wcj-custom.php:272
8631
- msgid ""
8632
- "Please note, that all new orders in WooCommerce by default are created with "
8633
- "Pending Payment status. If you want to change the default order status - you "
8634
- "can use Booster's \"Order Custom Statuses\" module (in WooCommerce > "
8635
- "Settings > Booster > Shipping & Orders > Order Custom Statuses)."
8636
- msgstr ""
8637
- "Bitte beachte, dass alle neuen Bestellungen in WooCommerce voreingestellt "
8638
- "mit \"Ausstehendem Zahlungstatus\" erstellt werden. Wenn Du den "
8639
- "Standardbestellstatus ändern möchtest - kannst Du Booster's "
8640
- "\"Benutzerdefinierte Bestellzustände\"-Modul (in WooCommerce > Einstellungen "
8641
- "> Booster > Versand & Bestellungen > Benutzerdefinierte Bestellzustände) "
8642
- "nutzen."
8643
-
8644
- #: includes/emails/class-wc-email-wcj-custom.php:275
8645
- msgid "New order (Any status)"
8646
- msgstr "Neue Bestellung (jeder Zustand)"
8647
-
8648
- #: includes/emails/class-wc-email-wcj-custom.php:280
8649
- msgid "Reset password notification"
8650
- msgstr "Kennwortbenachrichtigung zurücksetzen"
8651
-
8652
- #: includes/emails/class-wc-email-wcj-custom.php:281
8653
- msgid "Order fully refunded notification"
8654
- msgstr "Benachrichtigung für Auftrag vollständig zurückerstattet"
8655
-
8656
- #: includes/emails/class-wc-email-wcj-custom.php:282
8657
- msgid "Order partially refunded notification"
8658
- msgstr "Benachrichtigung für Bestellung teilweise zurückerstattet"
8659
-
8660
- #: includes/emails/class-wc-email-wcj-custom.php:283
8661
- msgid "New customer note notification"
8662
- msgstr "Benachrichtigung über neuen Kunden"
8663
-
8664
- #: includes/emails/class-wc-email-wcj-custom.php:295
8665
- msgid "Recipient(s)"
8666
- msgstr "Empfänger"
8667
-
8668
- #: includes/emails/class-wc-email-wcj-custom.php:297
8669
- msgid ""
8670
- "Enter recipients (comma separated) for this email. Defaults to <code>"
8671
- "%s</code>."
8672
- msgstr ""
8673
- "Empfänger eingeben (Komma-getrennt) für diese Email. Voreinstellung ist "
8674
- "<code>%s</code>."
8675
-
8676
- #: includes/emails/class-wc-email-wcj-custom.php:297
8677
- msgid "Or enter <code>%customer%</code> to send to customer billing email."
8678
- msgstr ""
8679
- "Oder gib <code>%customer%</code> ein, um an die Rechnungs-E-Mail des Kunden "
8680
- "zu senden."
8681
-
8682
- #: includes/emails/class-wc-email-wcj-custom.php:302
8683
- msgid "Subject"
8684
- msgstr "Betreff"
8685
-
8686
- #: includes/export/class-wcj-fields-helper.php:36
8687
- #: includes/export/class-wcj-fields-helper.php:132
8688
- #: includes/export/class-wcj-fields-helper.php:217
8689
- msgid "Billing Email"
8690
- msgstr "Rechnung Email"
8691
-
8692
- #: includes/export/class-wcj-fields-helper.php:37
8693
- #: includes/export/class-wcj-fields-helper.php:122
8694
- #: includes/export/class-wcj-fields-helper.php:207
8695
- msgid "Billing First Name"
8696
- msgstr "Rechnung Vorname"
8697
-
8698
- #: includes/export/class-wcj-fields-helper.php:38
8699
- #: includes/export/class-wcj-fields-helper.php:123
8700
- #: includes/export/class-wcj-fields-helper.php:208
8701
- msgid "Billing Last Name"
8702
- msgstr "Rechnung Nachname"
8703
-
8704
- #: includes/export/class-wcj-fields-helper.php:39
8705
- #: includes/export/class-wcj-fields-helper.php:124
8706
- #: includes/export/class-wcj-fields-helper.php:209
8707
- msgid "Billing Company"
8708
- msgstr "Rechnung Unternehmen"
8709
-
8710
- #: includes/export/class-wcj-fields-helper.php:40
8711
- #: includes/export/class-wcj-fields-helper.php:125
8712
- #: includes/export/class-wcj-fields-helper.php:210
8713
- msgid "Billing Address 1"
8714
- msgstr "Rechnungsadresse 1"
8715
-
8716
- #: includes/export/class-wcj-fields-helper.php:41
8717
- #: includes/export/class-wcj-fields-helper.php:126
8718
- #: includes/export/class-wcj-fields-helper.php:211
8719
- msgid "Billing Address 2"
8720
- msgstr "Rechnungsadresse 2"
8721
-
8722
- #: includes/export/class-wcj-fields-helper.php:42
8723
- #: includes/export/class-wcj-fields-helper.php:127
8724
- #: includes/export/class-wcj-fields-helper.php:212
8725
- msgid "Billing City"
8726
- msgstr "Rechnung Ort"
8727
-
8728
- #: includes/export/class-wcj-fields-helper.php:43
8729
- #: includes/export/class-wcj-fields-helper.php:128
8730
- #: includes/export/class-wcj-fields-helper.php:213
8731
- msgid "Billing State"
8732
- msgstr "Rechnung Bundesland/Staat/Region"
8733
-
8734
- #: includes/export/class-wcj-fields-helper.php:44
8735
- #: includes/export/class-wcj-fields-helper.php:129
8736
- #: includes/export/class-wcj-fields-helper.php:214
8737
- msgid "Billing Postcode"
8738
- msgstr "Rechnung Postleitzahl"
8739
-
8740
- #: includes/export/class-wcj-fields-helper.php:45
8741
- #: includes/export/class-wcj-fields-helper.php:130
8742
- #: includes/export/class-wcj-fields-helper.php:215
8743
- msgid "Billing Country"
8744
- msgstr "Rechnung Land"
8745
-
8746
- #: includes/export/class-wcj-fields-helper.php:46
8747
- #: includes/export/class-wcj-fields-helper.php:131
8748
- #: includes/export/class-wcj-fields-helper.php:216
8749
- msgid "Billing Phone"
8750
- msgstr "Rechnung Telefonnummer"
8751
-
8752
- #: includes/export/class-wcj-fields-helper.php:47
8753
- msgid "Last Order Date"
8754
- msgstr "Letztes Bestelldatum"
8755
-
8756
- #: includes/export/class-wcj-fields-helper.php:75
8757
- msgid "Customer ID"
8758
- msgstr "Kunden-ID"
8759
-
8760
- #: includes/export/class-wcj-fields-helper.php:77
8761
- msgid "First Name"
8762
- msgstr "Vorname"
8763
-
8764
- #: includes/export/class-wcj-fields-helper.php:78
8765
- msgid "Last Name"
8766
- msgstr "Nachname"
8767
-
8768
- #: includes/export/class-wcj-fields-helper.php:82
8769
- #: includes/reports/wcj-class-reports-customers.php:94
8770
- msgid "Registered"
8771
- msgstr "Angemeldet am"
8772
-
8773
- #: includes/export/class-wcj-fields-helper.php:111
8774
- #: includes/export/class-wcj-fields-helper.php:194
8775
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:254
8776
- msgid "Order ID"
8777
- msgstr "Bestell-ID"
8778
-
8779
- #: includes/export/class-wcj-fields-helper.php:112
8780
- #: includes/export/class-wcj-fields-helper.php:195
8781
- msgid "Order Number"
8782
- msgstr "Bestellnummer"
8783
-
8784
- #: includes/export/class-wcj-fields-helper.php:113
8785
- #: includes/export/class-wcj-fields-helper.php:196
8786
- msgid "Order Status"
8787
- msgstr "Bestell-Status"
8788
-
8789
- #: includes/export/class-wcj-fields-helper.php:114
8790
- #: includes/export/class-wcj-fields-helper.php:197
8791
- msgid "Order Date"
8792
- msgstr "Bestelldatum"
8793
-
8794
- #: includes/export/class-wcj-fields-helper.php:116
8795
- #: includes/export/class-wcj-fields-helper.php:199
8796
- msgid "Order Item Count"
8797
- msgstr "Bestellpositionszahl"
8798
-
8799
- #: includes/export/class-wcj-fields-helper.php:118
8800
- #: includes/export/class-wcj-fields-helper.php:203
8801
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:260
8802
- msgid "Order Total"
8803
- msgstr "Gesamtsumme der Bestellung"
8804
-
8805
- #: includes/export/class-wcj-fields-helper.php:119
8806
- #: includes/export/class-wcj-fields-helper.php:204
8807
- msgid "Order Total Tax"
8808
- msgstr "Steuern Gesamtsumme der Bestellung"
8809
-
8810
- #: includes/export/class-wcj-fields-helper.php:120
8811
- #: includes/export/class-wcj-fields-helper.php:205
8812
- msgid "Order Payment Method"
8813
- msgstr "Bestellungszahlungsart"
8814
-
8815
- #: includes/export/class-wcj-fields-helper.php:133
8816
- #: includes/export/class-wcj-fields-helper.php:218
8817
- msgid "Shipping First Name"
8818
- msgstr "Empängeradresse Vorname"
8819
-
8820
- #: includes/export/class-wcj-fields-helper.php:134
8821
- #: includes/export/class-wcj-fields-helper.php:219
8822
- msgid "Shipping Last Name"
8823
- msgstr "Empfängeradresse Nachname"
8824
-
8825
- #: includes/export/class-wcj-fields-helper.php:135
8826
- #: includes/export/class-wcj-fields-helper.php:220
8827
- msgid "Shipping Company"
8828
- msgstr "Empfängeradresse Unternehmen"
8829
-
8830
- #: includes/export/class-wcj-fields-helper.php:136
8831
- #: includes/export/class-wcj-fields-helper.php:221
8832
- msgid "Shipping Address 1"
8833
- msgstr "Versandadresse 1"
8834
-
8835
- #: includes/export/class-wcj-fields-helper.php:137
8836
- #: includes/export/class-wcj-fields-helper.php:222
8837
- msgid "Shipping Address 2"
8838
- msgstr "Versandadresse 2"
8839
-
8840
- #: includes/export/class-wcj-fields-helper.php:138
8841
- #: includes/export/class-wcj-fields-helper.php:223
8842
- msgid "Shipping City"
8843
- msgstr "Versandort"
8844
-
8845
- #: includes/export/class-wcj-fields-helper.php:139
8846
- #: includes/export/class-wcj-fields-helper.php:224
8847
- msgid "Shipping State"
8848
- msgstr "Versand Staat"
8849
-
8850
- #: includes/export/class-wcj-fields-helper.php:140
8851
- #: includes/export/class-wcj-fields-helper.php:225
8852
- msgid "Shipping Postcode"
8853
- msgstr "Versand PLZ"
8854
-
8855
- #: includes/export/class-wcj-fields-helper.php:141
8856
- #: includes/export/class-wcj-fields-helper.php:226
8857
- msgid "Shipping Country"
8858
- msgstr "Versand Land"
8859
-
8860
- #: includes/export/class-wcj-fields-helper.php:147
8861
- msgid "Item Tax Class"
8862
- msgstr "Artikelsteuer-Klasse"
8863
-
8864
- #: includes/export/class-wcj-fields-helper.php:152
8865
- msgid "Item Line Subtotal Tax"
8866
- msgstr "Artikel-Linie Zwischensumme Steuer"
8867
-
8868
- #: includes/export/class-wcj-fields-helper.php:153
8869
- msgid "Item Line Tax"
8870
- msgstr "Artikellinie Steuer"
8871
-
8872
- #: includes/export/class-wcj-fields-helper.php:154
8873
- msgid "Item Line Subtotal Plus Tax"
8874
- msgstr "Artikel-Linie Zwischensumme zzgl. MwSt"
8875
-
8876
- #: includes/export/class-wcj-fields-helper.php:155
8877
- msgid "Item Line Total Plus Tax"
8878
- msgstr "Artikel-Linie Gesamtsumme zzgl. MwSt"
8879
-
8880
- #: includes/export/class-wcj-fields-helper.php:200
8881
- msgid "Order Items"
8882
- msgstr "Auftragspositionen"
8883
-
8884
- #: includes/export/class-wcj-fields-helper.php:281
8885
- msgid "Product ID"
8886
- msgstr "Produkt ID"
8887
-
8888
- #: includes/export/class-wcj-fields-helper.php:305
8889
- msgid "Tax Status"
8890
- msgstr "Steuerstatus"
8891
-
8892
- #: includes/export/class-wcj-fields-helper.php:306
8893
- msgid "Tax Class"
8894
- msgstr "Steuerklasse"
8895
-
8896
- #: includes/export/class-wcj-fields-helper.php:312
8897
- msgid "Price Including Tax"
8898
- msgstr "Preis inkl. MwSt."
8899
-
8900
- #: includes/export/class-wcj-fields-helper.php:313
8901
- msgid "Price Excluding Tax"
8902
- msgstr "Preis exkl. MwSt."
8903
-
8904
- #: includes/functions/wcj-country-functions.php:113
8905
- msgid "Afghanistan"
8906
- msgstr "Afghanistan"
8907
-
8908
- #: includes/functions/wcj-country-functions.php:115
8909
- msgid "Albania"
8910
- msgstr "Albanien"
8911
-
8912
- #: includes/functions/wcj-country-functions.php:116
8913
- msgid "Algeria"
8914
- msgstr "Algerien"
8915
-
8916
- #: includes/functions/wcj-country-functions.php:117
8917
- msgid "Andorra"
8918
- msgstr "Andorra"
8919
-
8920
- #: includes/functions/wcj-country-functions.php:118
8921
- msgid "Angola"
8922
- msgstr "Angola"
8923
-
8924
- #: includes/functions/wcj-country-functions.php:119
8925
- msgid "Anguilla"
8926
- msgstr "Anguilla"
8927
-
8928
- #: includes/functions/wcj-country-functions.php:121
8929
- msgid "Antigua and Barbuda"
8930
- msgstr "Antigua und Barbuda"
8931
-
8932
- #: includes/functions/wcj-country-functions.php:122
8933
- msgid "Argentina"
8934
- msgstr "Argentinien"
8935
-
8936
- #: includes/functions/wcj-country-functions.php:123
8937
- msgid "Armenia"
8938
- msgstr "Armenien"
8939
-
8940
- #: includes/functions/wcj-country-functions.php:124
8941
- msgid "Aruba"
8942
- msgstr "Aruba"
8943
-
8944
- #: includes/functions/wcj-country-functions.php:125
8945
- msgid "Australia"
8946
- msgstr "Australien"
8947
-
8948
- #: includes/functions/wcj-country-functions.php:126
8949
- msgid "Austria"
8950
- msgstr "Österreich"
8951
-
8952
- #: includes/functions/wcj-country-functions.php:127
8953
- msgid "Azerbaijan"
8954
- msgstr "Aserbaidschan"
8955
-
8956
- #: includes/functions/wcj-country-functions.php:128
8957
- msgid "Bahamas"
8958
- msgstr "Bahamas"
8959
-
8960
- #: includes/functions/wcj-country-functions.php:129
8961
- msgid "Bahrain"
8962
- msgstr "Bahrain"
8963
-
8964
- #: includes/functions/wcj-country-functions.php:130
8965
- msgid "Bangladesh"
8966
- msgstr "Bangladesch"
8967
-
8968
- #: includes/functions/wcj-country-functions.php:131
8969
- msgid "Barbados"
8970
- msgstr "Barbados"
8971
-
8972
- #: includes/functions/wcj-country-functions.php:132
8973
- msgid "Belarus"
8974
- msgstr "Weißrussland"
8975
-
8976
- #: includes/functions/wcj-country-functions.php:133
8977
- msgid "Belgium"
8978
- msgstr "Belgien"
8979
-
8980
- #: includes/functions/wcj-country-functions.php:135
8981
- msgid "Belize"
8982
- msgstr "Belize"
8983
-
8984
- #: includes/functions/wcj-country-functions.php:136
8985
- msgid "Benin"
8986
- msgstr "Benin"
8987
-
8988
- #: includes/functions/wcj-country-functions.php:137
8989
- msgid "Bermuda"
8990
- msgstr "Bermuda"
8991
-
8992
- #: includes/functions/wcj-country-functions.php:138
8993
- msgid "Bhutan"
8994
- msgstr "Bhutan"
8995
-
8996
- #: includes/functions/wcj-country-functions.php:139
8997
- msgid "Bolivia"
8998
- msgstr "Bolivien"
8999
-
9000
- #: includes/functions/wcj-country-functions.php:141
9001
- msgid "Bosnia and Herzegovina"
9002
- msgstr "Bosnien und Herzegovina"
9003
-
9004
- #: includes/functions/wcj-country-functions.php:142
9005
- msgid "Botswana"
9006
- msgstr "Botswana"
9007
-
9008
- #: includes/functions/wcj-country-functions.php:144
9009
- msgid "Brazil"
9010
- msgstr "Brasilien"
9011
-
9012
- #: includes/functions/wcj-country-functions.php:145
9013
- msgid "British Indian Ocean Territory"
9014
- msgstr "Britisches Territorium des Indischen Ozeans"
9015
-
9016
- #: includes/functions/wcj-country-functions.php:146
9017
- msgid "British Virgin Islands"
9018
- msgstr "Britischen Jungferninseln"
9019
-
9020
- #: includes/functions/wcj-country-functions.php:147
9021
- msgid "Brunei"
9022
- msgstr "Brunei"
9023
-
9024
- #: includes/functions/wcj-country-functions.php:148
9025
- msgid "Bulgaria"
9026
- msgstr "Bulgarien"
9027
-
9028
- #: includes/functions/wcj-country-functions.php:149
9029
- msgid "Burkina Faso"
9030
- msgstr "Burkina Faso"
9031
-
9032
- #: includes/functions/wcj-country-functions.php:150
9033
- msgid "Burundi"
9034
- msgstr "Burundi"
9035
-
9036
- #: includes/functions/wcj-country-functions.php:151
9037
- msgid "Cambodia"
9038
- msgstr "Kambodscha"
9039
-
9040
- #: includes/functions/wcj-country-functions.php:152
9041
- msgid "Cameroon"
9042
- msgstr "Kamerun"
9043
-
9044
- #: includes/functions/wcj-country-functions.php:153
9045
- msgid "Canada"
9046
- msgstr "Kanada"
9047
-
9048
- #: includes/functions/wcj-country-functions.php:154
9049
- msgid "Cape Verde"
9050
- msgstr "Kap Verde"
9051
-
9052
- #: includes/functions/wcj-country-functions.php:155
9053
- msgid "Cayman Islands"
9054
- msgstr "Kaimaninseln"
9055
-
9056
- #: includes/functions/wcj-country-functions.php:156
9057
- msgid "Central African Republic"
9058
- msgstr "Zentralafrikanische Republik"
9059
-
9060
- #: includes/functions/wcj-country-functions.php:157
9061
- msgid "Chad"
9062
- msgstr "Tschad"
9063
-
9064
- #: includes/functions/wcj-country-functions.php:158
9065
- msgid "Chile"
9066
- msgstr "Chile"
9067
-
9068
- #: includes/functions/wcj-country-functions.php:159
9069
- msgid "China"
9070
- msgstr "China"
9071
-
9072
- #: includes/functions/wcj-country-functions.php:160
9073
- msgid "Christmas Island"
9074
- msgstr "Weihnachtsinsel"
9075
-
9076
- #: includes/functions/wcj-country-functions.php:162
9077
- msgid "Colombia"
9078
- msgstr "Kolumbien"
9079
-
9080
- #: includes/functions/wcj-country-functions.php:163
9081
- msgid "Comoros"
9082
- msgstr "Komoren"
9083
-
9084
- #: includes/functions/wcj-country-functions.php:167
9085
- msgid "Costa Rica"
9086
- msgstr "Costa Rica"
9087
-
9088
- #: includes/functions/wcj-country-functions.php:168
9089
- msgid "Croatia"
9090
- msgstr "Kroatien"
9091
-
9092
- #: includes/functions/wcj-country-functions.php:169
9093
- msgid "Cuba"
9094
- msgstr "Kuba"
9095
-
9096
- #: includes/functions/wcj-country-functions.php:171
9097
- msgid "Cyprus"
9098
- msgstr "Zypern"
9099
-
9100
- #: includes/functions/wcj-country-functions.php:172
9101
- msgid "Czech Republic"
9102
- msgstr "Tschechien"
9103
-
9104
- #: includes/functions/wcj-country-functions.php:173
9105
- msgid "Denmark"
9106
- msgstr "Dänemark"
9107
-
9108
- #: includes/functions/wcj-country-functions.php:174
9109
- msgid "Djibouti"
9110
- msgstr "Dschibuti"
9111
-
9112
- #: includes/functions/wcj-country-functions.php:175
9113
- msgid "Dominica"
9114
- msgstr "Dominica"
9115
-
9116
- #: includes/functions/wcj-country-functions.php:176
9117
- msgid "Dominican Republic"
9118
- msgstr "Dominikanische Republik"
9119
-
9120
- #: includes/functions/wcj-country-functions.php:177
9121
- msgid "Ecuador"
9122
- msgstr "Ecuador"
9123
-
9124
- #: includes/functions/wcj-country-functions.php:178
9125
- msgid "Egypt"
9126
- msgstr "Ägypten"
9127
-
9128
- #: includes/functions/wcj-country-functions.php:179
9129
- msgid "El Salvador"
9130
- msgstr "El Salvador"
9131
-
9132
- #: includes/functions/wcj-country-functions.php:180
9133
- msgid "Equatorial Guinea"
9134
- msgstr "Equatorial Guinea"
9135
-
9136
- #: includes/functions/wcj-country-functions.php:181
9137
- msgid "Eritrea"
9138
- msgstr "Eritrea"
9139
-
9140
- #: includes/functions/wcj-country-functions.php:182
9141
- msgid "Estonia"
9142
- msgstr "Estland"
9143
-
9144
- #: includes/functions/wcj-country-functions.php:183
9145
- msgid "Ethiopia"
9146
- msgstr "Äthiopien"
9147
-
9148
- #: includes/functions/wcj-country-functions.php:185
9149
- msgid "Faroe Islands"
9150
- msgstr "Färöer"
9151
-
9152
- #: includes/functions/wcj-country-functions.php:186
9153
- msgid "Fiji"
9154
- msgstr "Fidschi"
9155
-
9156
- #: includes/functions/wcj-country-functions.php:187
9157
- msgid "Finland"
9158
- msgstr "Finnland"
9159
-
9160
- #: includes/functions/wcj-country-functions.php:188
9161
- msgid "France"
9162
- msgstr "Frankreich"
9163
-
9164
- #: includes/functions/wcj-country-functions.php:189
9165
- msgid "French Guiana"
9166
- msgstr "Französisch-Guayana"
9167
-
9168
- #: includes/functions/wcj-country-functions.php:190
9169
- msgid "French Polynesia"
9170
- msgstr "Französisch-Polynesien"
9171
-
9172
- #: includes/functions/wcj-country-functions.php:191
9173
- msgid "French Southern Territories"
9174
- msgstr "Französische Süd- und Antarktisgebiete"
9175
-
9176
- #: includes/functions/wcj-country-functions.php:192
9177
- msgid "Gabon"
9178
- msgstr "Gabun"
9179
-
9180
- #: includes/functions/wcj-country-functions.php:193
9181
- msgid "Gambia"
9182
- msgstr "Gambia"
9183
-
9184
- #: includes/functions/wcj-country-functions.php:195
9185
- msgid "Germany"
9186
- msgstr "Deutschland"
9187
-
9188
- #: includes/functions/wcj-country-functions.php:196
9189
- msgid "Ghana"
9190
- msgstr "Ghana"
9191
-
9192
- #: includes/functions/wcj-country-functions.php:198
9193
- msgid "Greece"
9194
- msgstr "Griechenland"
9195
-
9196
- #: includes/functions/wcj-country-functions.php:199
9197
- msgid "Greenland"
9198
- msgstr "Grönland"
9199
-
9200
- #: includes/functions/wcj-country-functions.php:200
9201
- msgid "Grenada"
9202
- msgstr "Grenada"
9203
-
9204
- #: includes/functions/wcj-country-functions.php:201
9205
- msgid "Guadeloupe"
9206
- msgstr "Guadeloupe"
9207
-
9208
- #: includes/functions/wcj-country-functions.php:202
9209
- msgid "Guatemala"
9210
- msgstr "Guatemala"
9211
-
9212
- #: includes/functions/wcj-country-functions.php:204
9213
- msgid "Guinea"
9214
- msgstr "Guinea"
9215
-
9216
- #: includes/functions/wcj-country-functions.php:205
9217
- msgid "Guinea-Bissau"
9218
- msgstr "Guinea-Bissau"
9219
-
9220
- #: includes/functions/wcj-country-functions.php:206
9221
- msgid "Guyana"
9222
- msgstr "Guyana"
9223
-
9224
- #: includes/functions/wcj-country-functions.php:207
9225
- msgid "Haiti"
9226
- msgstr "Haiti"
9227
-
9228
- #: includes/functions/wcj-country-functions.php:209
9229
- msgid "Honduras"
9230
- msgstr "Honduras"
9231
-
9232
- #: includes/functions/wcj-country-functions.php:210
9233
- msgid "Hong Kong"
9234
- msgstr "Hong Kong"
9235
-
9236
- #: includes/functions/wcj-country-functions.php:211
9237
- msgid "Hungary"
9238
- msgstr "Ungarn"
9239
-
9240
- #: includes/functions/wcj-country-functions.php:212
9241
- msgid "Iceland"
9242
- msgstr "Island"
9243
-
9244
- #: includes/functions/wcj-country-functions.php:213
9245
- msgid "India"
9246
- msgstr "Indien"
9247
-
9248
- #: includes/functions/wcj-country-functions.php:214
9249
- msgid "Indonesia"
9250
- msgstr "Indonesien"
9251
-
9252
- #: includes/functions/wcj-country-functions.php:215
9253
- msgid "Iran"
9254
- msgstr "Iran"
9255
-
9256
- #: includes/functions/wcj-country-functions.php:216
9257
- msgid "Iraq"
9258
- msgstr "Irak"
9259
-
9260
- #: includes/functions/wcj-country-functions.php:219
9261
- msgid "Israel"
9262
- msgstr "Israel"
9263
-
9264
- #: includes/functions/wcj-country-functions.php:220
9265
- msgid "Italy"
9266
- msgstr "Italien"
9267
-
9268
- #: includes/functions/wcj-country-functions.php:221
9269
- msgid "Ivory Coast"
9270
- msgstr "Elfenbeinküste"
9271
-
9272
- #: includes/functions/wcj-country-functions.php:223
9273
- msgid "Japan"
9274
- msgstr "Japan"
9275
-
9276
- #: includes/functions/wcj-country-functions.php:225
9277
- msgid "Jordan"
9278
- msgstr "Jordanien"
9279
-
9280
- #: includes/functions/wcj-country-functions.php:226
9281
- msgid "Kazakhstan"
9282
- msgstr "Kasachstan"
9283
-
9284
- #: includes/functions/wcj-country-functions.php:229
9285
- msgid "Kuwait"
9286
- msgstr "Kuwait"
9287
-
9288
- #: includes/functions/wcj-country-functions.php:230
9289
- msgid "Kyrgyzstan"
9290
- msgstr "Kirgisistan"
9291
-
9292
- #: includes/functions/wcj-country-functions.php:232
9293
- msgid "Latvia"
9294
- msgstr "Lettland"
9295
-
9296
- #: includes/functions/wcj-country-functions.php:233
9297
- msgid "Lebanon"
9298
- msgstr "Libanon"
9299
-
9300
- #: includes/functions/wcj-country-functions.php:235
9301
- msgid "Liberia"
9302
- msgstr "Liberia"
9303
-
9304
- #: includes/functions/wcj-country-functions.php:236
9305
- msgid "Libya"
9306
- msgstr "Libyen"
9307
-
9308
- #: includes/functions/wcj-country-functions.php:237
9309
- msgid "Liechtenstein"
9310
- msgstr "Liechtenstein"
9311
-
9312
- #: includes/functions/wcj-country-functions.php:238
9313
- msgid "Lithuania"
9314
- msgstr "Litauen"
9315
-
9316
- #: includes/functions/wcj-country-functions.php:239
9317
- msgid "Luxembourg"
9318
- msgstr "Luxemburg"
9319
-
9320
- #: includes/functions/wcj-country-functions.php:241
9321
- msgid "Macedonia"
9322
- msgstr "Mazedonien"
9323
-
9324
- #: includes/functions/wcj-country-functions.php:242
9325
- msgid "Madagascar"
9326
- msgstr "Madagaskar"
9327
-
9328
- #: includes/functions/wcj-country-functions.php:243
9329
- msgid "Malawi"
9330
- msgstr "Malawi"
9331
-
9332
- #: includes/functions/wcj-country-functions.php:244
9333
- msgid "Malaysia"
9334
- msgstr "Malaysia"
9335
-
9336
- #: includes/functions/wcj-country-functions.php:245
9337
- msgid "Maldives"
9338
- msgstr "Malediven"
9339
-
9340
- #: includes/functions/wcj-country-functions.php:246
9341
- msgid "Mali"
9342
- msgstr "Mali"
9343
-
9344
- #: includes/functions/wcj-country-functions.php:248
9345
- msgid "Marshall Islands"
9346
- msgstr "Marshall-Inseln"
9347
-
9348
- #: includes/functions/wcj-country-functions.php:249
9349
- msgid "Martinique"
9350
- msgstr "Martinique"
9351
-
9352
- #: includes/functions/wcj-country-functions.php:250
9353
- msgid "Mauritania"
9354
- msgstr "Mauretanien"
9355
-
9356
- #: includes/functions/wcj-country-functions.php:251
9357
- msgid "Mauritius"
9358
- msgstr "Mauritius"
9359
-
9360
- #: includes/functions/wcj-country-functions.php:253
9361
- msgid "Mexico"
9362
- msgstr "Mexiko"
9363
-
9364
- #: includes/functions/wcj-country-functions.php:254
9365
- msgid "Micronesia"
9366
- msgstr "Mikronesien"
9367
-
9368
- #: includes/functions/wcj-country-functions.php:255
9369
- msgid "Moldova"
9370
- msgstr "Moldau"
9371
-
9372
- #: includes/functions/wcj-country-functions.php:256
9373
- msgid "Monaco"
9374
- msgstr "Monaco"
9375
-
9376
- #: includes/functions/wcj-country-functions.php:257
9377
- msgid "Mongolia"
9378
- msgstr "Mongolei"
9379
-
9380
- #: includes/functions/wcj-country-functions.php:258
9381
- msgid "Montenegro"
9382
- msgstr "Montenegro"
9383
-
9384
- #: includes/functions/wcj-country-functions.php:259
9385
- msgid "Montserrat"
9386
- msgstr "Montserrat"
9387
-
9388
- #: includes/functions/wcj-country-functions.php:260
9389
- msgid "Morocco"
9390
- msgstr "Marokko"
9391
-
9392
- #: includes/functions/wcj-country-functions.php:261
9393
- msgid "Mozambique"
9394
- msgstr "Mosambik"
9395
-
9396
- #: includes/functions/wcj-country-functions.php:262
9397
- msgid "Myanmar"
9398
- msgstr "Myanmar"
9399
-
9400
- #: includes/functions/wcj-country-functions.php:263
9401
- msgid "Namibia"
9402
- msgstr "Namibia"
9403
-
9404
- #: includes/functions/wcj-country-functions.php:264
9405
- msgid "Nauru"
9406
- msgstr "Nauru"
9407
-
9408
- #: includes/functions/wcj-country-functions.php:265
9409
- msgid "Nepal"
9410
- msgstr "Nepal"
9411
-
9412
- #: includes/functions/wcj-country-functions.php:266
9413
- msgid "Netherlands"
9414
- msgstr "Niederlande"
9415
-
9416
- #: includes/functions/wcj-country-functions.php:267
9417
- msgid "Netherlands Antilles"
9418
- msgstr "Niederländische Antillen"
9419
-
9420
- #: includes/functions/wcj-country-functions.php:268
9421
- msgid "New Caledonia"
9422
- msgstr "Neukaledonien"
9423
-
9424
- #: includes/functions/wcj-country-functions.php:269
9425
- msgid "New Zealand"
9426
- msgstr "Neuseeland"
9427
-
9428
- #: includes/functions/wcj-country-functions.php:270
9429
- msgid "Nicaragua"
9430
- msgstr "Nicaragua"
9431
-
9432
- #: includes/functions/wcj-country-functions.php:275
9433
- msgid "North Korea"
9434
- msgstr "Nord Korea"
9435
-
9436
- #: includes/functions/wcj-country-functions.php:276
9437
- msgid "Norway"
9438
- msgstr "Norwegen"
9439
-
9440
- #: includes/functions/wcj-country-functions.php:277
9441
- msgid "Oman"
9442
- msgstr "Oman"
9443
-
9444
- #: includes/functions/wcj-country-functions.php:281
9445
- msgid "Papua New Guinea"
9446
- msgstr "Papua-Neuguinea"
9447
-
9448
- #: includes/functions/wcj-country-functions.php:283
9449
- msgid "Peru"
9450
- msgstr "Peru"
9451
-
9452
- #: includes/functions/wcj-country-functions.php:284
9453
- msgid "Philippines"
9454
- msgstr "Philippinen"
9455
-
9456
- #: includes/functions/wcj-country-functions.php:286
9457
- msgid "Poland"
9458
- msgstr "Polen"
9459
-
9460
- #: includes/functions/wcj-country-functions.php:287
9461
- msgid "Portugal"
9462
- msgstr "Portugal"
9463
-
9464
- #: includes/functions/wcj-country-functions.php:288
9465
- msgid "Qatar"
9466
- msgstr "Katar"
9467
-
9468
- #: includes/functions/wcj-country-functions.php:290
9469
- msgid "Romania"
9470
- msgstr "Rumänien"
9471
-
9472
- #: includes/functions/wcj-country-functions.php:291
9473
- msgid "Russia"
9474
- msgstr "Russland"
9475
-
9476
- #: includes/functions/wcj-country-functions.php:292
9477
- msgid "Rwanda"
9478
- msgstr "Ruanda"
9479
-
9480
- #: includes/functions/wcj-country-functions.php:294
9481
- msgid "Saint Helena"
9482
- msgstr "St. Helena"
9483
-
9484
- #: includes/functions/wcj-country-functions.php:300
9485
- msgid "Saint Vincent and the Grenadines"
9486
- msgstr "Saint Vincent und die Grenadinen"
9487
-
9488
- #: includes/functions/wcj-country-functions.php:303
9489
- msgid "Saudi Arabia"
9490
- msgstr "Saudi-Arabien"
9491
-
9492
- #: includes/functions/wcj-country-functions.php:305
9493
- msgid "Serbia"
9494
- msgstr "Serbien"
9495
-
9496
- #: includes/functions/wcj-country-functions.php:306
9497
- msgid "Seychelles"
9498
- msgstr "Seychellen"
9499
-
9500
- #: includes/functions/wcj-country-functions.php:308
9501
- msgid "Singapore"
9502
- msgstr "Singapur"
9503
-
9504
- #: includes/functions/wcj-country-functions.php:309
9505
- msgid "Slovakia"
9506
- msgstr "Slowakei"
9507
-
9508
- #: includes/functions/wcj-country-functions.php:310
9509
- msgid "Slovenia"
9510
- msgstr "Slowenien"
9511
-
9512
- #: includes/functions/wcj-country-functions.php:311
9513
- msgid "Solomon Islands"
9514
- msgstr "Salomonen"
9515
-
9516
- #: includes/functions/wcj-country-functions.php:313
9517
- msgid "South Africa"
9518
- msgstr "Südafrika"
9519
-
9520
- #: includes/functions/wcj-country-functions.php:315
9521
- msgid "South Korea"
9522
- msgstr "Süd Korea"
9523
-
9524
- #: includes/functions/wcj-country-functions.php:317
9525
- msgid "Spain"
9526
- msgstr "Spanien"
9527
-
9528
- #: includes/functions/wcj-country-functions.php:323
9529
- msgid "Sweden"
9530
- msgstr "Schweden"
9531
-
9532
- #: includes/functions/wcj-country-functions.php:324
9533
- msgid "Switzerland"
9534
- msgstr "Schweiz"
9535
-
9536
- #: includes/functions/wcj-country-functions.php:325
9537
- msgid "Syria"
9538
- msgstr "Syrien"
9539
-
9540
- #: includes/functions/wcj-country-functions.php:326
9541
- msgid "Taiwan"
9542
- msgstr "Taiwan"
9543
-
9544
- #: includes/functions/wcj-country-functions.php:328
9545
- msgid "Tanzania"
9546
- msgstr "Tansania"
9547
-
9548
- #: includes/functions/wcj-country-functions.php:329
9549
- msgid "Thailand"
9550
- msgstr "Thailand"
9551
-
9552
- #: includes/functions/wcj-country-functions.php:334
9553
- msgid "Trinidad and Tobago"
9554
- msgstr "Trinidad und Tobago"
9555
-
9556
- #: includes/functions/wcj-country-functions.php:335
9557
- msgid "Tunisia"
9558
- msgstr "Tunesien"
9559
-
9560
- #: includes/functions/wcj-country-functions.php:336
9561
- msgid "Turkey"
9562
- msgstr "Türkei"
9563
-
9564
- #: includes/functions/wcj-country-functions.php:338
9565
- msgid "Turks and Caicos Islands"
9566
- msgstr "Turks- und Caicosinseln"
9567
-
9568
- #: includes/functions/wcj-country-functions.php:341
9569
- msgid "Ukraine"
9570
- msgstr "Ukraine"
9571
-
9572
- #: includes/functions/wcj-country-functions.php:342
9573
- msgid "United Arab Emirates"
9574
- msgstr "Vereinigte Arabische Emirate"
9575
-
9576
- #: includes/functions/wcj-country-functions.php:345
9577
- msgid "Uruguay"
9578
- msgstr "Uruguay"
9579
-
9580
- #: includes/functions/wcj-country-functions.php:346
9581
- msgid "Uzbekistan"
9582
- msgstr "Usbekistan"
9583
-
9584
- #: includes/functions/wcj-country-functions.php:348
9585
- msgid "Vatican"
9586
- msgstr "Vatikan"
9587
-
9588
- #: includes/functions/wcj-country-functions.php:349
9589
- msgid "Venezuela"
9590
- msgstr "Venezuela"
9591
-
9592
- #: includes/functions/wcj-country-functions.php:351
9593
- msgid "Wallis and Futuna"
9594
- msgstr "Wallis und Futuna"
9595
-
9596
- #: includes/functions/wcj-country-functions.php:353
9597
- msgid "Western Samoa"
9598
- msgstr "Westliches Samoa"
9599
-
9600
- #: includes/functions/wcj-country-functions.php:354
9601
- msgid "Yemen"
9602
- msgstr "Jemen"
9603
-
9604
- #: includes/functions/wcj-country-functions.php:355
9605
- msgid "Zambia"
9606
- msgstr "Sambia"
9607
-
9608
- #: includes/functions/wcj-country-functions.php:356
9609
- msgid "Zimbabwe"
9610
- msgstr "Simbabwe"
9611
-
9612
- #: includes/functions/wcj-functions.php:609
9613
- msgid "Before cart"
9614
- msgstr "Vor Warenkorb"
9615
-
9616
- #: includes/functions/wcj-functions.php:610
9617
- msgid "Before cart table"
9618
- msgstr "Vor Warenkorbtabelle"
9619
-
9620
- #: includes/functions/wcj-functions.php:611
9621
- msgid "Before cart contents"
9622
- msgstr "Vor Warenkorbinhalten"
9623
-
9624
- #: includes/functions/wcj-functions.php:612
9625
- msgid "Cart contents"
9626
- msgstr "Warenkorbinhalte"
9627
-
9628
- #: includes/functions/wcj-functions.php:613
9629
- msgid "Cart coupon"
9630
- msgstr "Warenkorb-Gutschein"
9631
-
9632
- #: includes/functions/wcj-functions.php:614
9633
- msgid "Cart actions"
9634
- msgstr "Warenkorb-Aktionen"
9635
-
9636
- #: includes/functions/wcj-functions.php:615
9637
- msgid "After cart contents"
9638
- msgstr "Nach Warenkorbinhalten"
9639
-
9640
- #: includes/functions/wcj-functions.php:616
9641
- msgid "After cart table"
9642
- msgstr "Nach Warenkorbtabelle"
9643
-
9644
- #: includes/functions/wcj-functions.php:617
9645
- msgid "Cart collaterals"
9646
- msgstr "Warenkorb-Sicherheiten"
9647
-
9648
- #: includes/functions/wcj-functions.php:618
9649
- msgid "After cart"
9650
- msgstr "Nach Warenkorb"
9651
-
9652
- #: includes/functions/wcj-functions.php:620
9653
- msgid "Before cart totals"
9654
- msgstr "Vor Warenkorb-Total"
9655
-
9656
- #: includes/functions/wcj-functions.php:621
9657
- msgid "Cart totals: Before shipping"
9658
- msgstr "Warenkorb-Total: Vor Versand"
9659
-
9660
- #: includes/functions/wcj-functions.php:622
9661
- msgid "Cart totals: After shipping"
9662
- msgstr "Warenkorb-Total: Nach Versand"
9663
-
9664
- #: includes/functions/wcj-functions.php:623
9665
- msgid "Cart totals: Before order total"
9666
- msgstr "Warenkorb-Total: Vor Bestell-Total"
9667
-
9668
- #: includes/functions/wcj-functions.php:624
9669
- msgid "Cart totals: After order total"
9670
- msgstr "Warenkorb-Total: Nach Bestell-Total"
9671
-
9672
- #: includes/functions/wcj-functions.php:625
9673
- msgid "Proceed to checkout"
9674
- msgstr "Fortfahren zur Kasse"
9675
-
9676
- #: includes/functions/wcj-functions.php:626
9677
- msgid "After cart totals"
9678
- msgstr "Nach Warenkorb-Total"
9679
-
9680
- #: includes/functions/wcj-functions.php:631
9681
- msgid "If cart is empty"
9682
- msgstr "Wenn Warenkorb leer ist"
9683
-
9684
- #: includes/functions/wcj-functions.php:1159
9685
- msgctxt "Order status"
9686
- msgid "Pending Payment"
9687
- msgstr "Ausstehende Zahlung"
9688
-
9689
- #: includes/functions/wcj-functions.php:1161
9690
- msgctxt "Order status"
9691
- msgid "On Hold"
9692
- msgstr "In Wartestellung"
9693
-
9694
- #: includes/functions/wcj-invoicing-functions.php:36
9695
- msgid "Packing Slips"
9696
- msgstr "Packzettel"
9697
-
9698
- #: includes/gateways/class-wc-gateway-wcj-custom.php:85
9699
- msgid "Instructions"
9700
- msgstr "Anleitungen"
9701
-
9702
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:126
9703
- msgid "Datepicker/Weekpicker: Date format"
9704
- msgstr "Datums-/Wochenwählers: Datumsformat"
9705
-
9706
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:134
9707
- msgid "Datepicker/Weekpicker: Min date"
9708
- msgstr "Datums-/Wochenwählers: Min Datum"
9709
-
9710
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:142
9711
- msgid "Datepicker/Weekpicker: Max date"
9712
- msgstr "Datums-/Wochenwählers: Max Datum"
9713
-
9714
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:150
9715
- msgid "Datepicker/Weekpicker: Change year"
9716
- msgstr "Datums-/Wochenwählers: Jahr ändern"
9717
-
9718
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:158
9719
- msgid "Datepicker/Weekpicker: Year range"
9720
- msgstr "Datums-/Wochenwählers: Jahresumfang"
9721
-
9722
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:167
9723
- msgid "Datepicker/Weekpicker: First week day"
9724
- msgstr "Datums-/Wochenwählers: Erster Tag der Woche"
9725
-
9726
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:184
9727
- msgid "Timepicker: Time format"
9728
- msgstr "Zeitwähler: Zeitformat"
9729
-
9730
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:192
9731
- msgid "Timepicker: Interval"
9732
- msgstr "Zeitwähler: Intervall"
9733
-
9734
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:199
9735
- msgid "If select/radio is selected, set options here. One option per line"
9736
- msgstr ""
9737
- "Wenn Auswählen/Radio ausgewählt ist, stelle hier Optionen ein. Eine Option "
9738
- "pro Zeile"
9739
-
9740
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:200
9741
- msgid "Select/Radio: Options"
9742
- msgstr "Auswählen/Radio: Optionen"
9743
-
9744
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:228
9745
- msgid "Message on required"
9746
- msgstr "Nachricht bei erforderlich"
9747
-
9748
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:468
9749
- msgid "Wrong file type!"
9750
- msgstr "Falscher Dateityp!"
9751
-
9752
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:477
9753
- msgid "File is too big!"
9754
- msgstr "Datei ist zu groß!"
9755
-
9756
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:619
9757
- msgid "Select a country&hellip;"
9758
- msgstr "Wähle ein Land&hellip;"
9759
-
9760
- #: includes/input-fields/class-wcj-product-input-fields-per-product.php:111
9761
- msgid "Booster: Product Input Fields"
9762
- msgstr "Booster: Produkt-Eingabefelder"
9763
-
9764
- #: includes/input-fields/class-wcj-product-input-fields-per-product.php:147
9765
- msgid "Total number of "
9766
- msgstr "Gesamtzahl an "
9767
-
9768
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:56
9769
- msgid "Invoices successfully renumerated!"
9770
- msgstr "Rechnungen erfolgreich renumeriert!"
9771
-
9772
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:58
9773
- msgid "Please select at least one order status."
9774
- msgstr "Bitte wähle mindestens einen Bestellzustand aus."
9775
-
9776
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:63
9777
- msgid "Booster - Renumerate Invoices"
9778
- msgstr "Booster - Rechnungen renumerieren"
9779
-
9780
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:64
9781
- msgid ""
9782
- "The tool renumerates invoices from choosen date. Invoice number format is "
9783
- "set in WooCommerce > Settings > Booster > PDF Invoicing & Packing Slips > "
9784
- "Numbering."
9785
- msgstr ""
9786
- "Das Werkzeug nummeriert alle Rechnungen neu von gewähltem Datum an. Das "
9787
- "Rechnungsnummernformat wird eingestellt in WooCommerce > Einstellungen > "
9788
- "Booster > PDF Rechnungen & Packzettel > \n"
9789
- "Nummerierung."
9790
-
9791
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:73
9792
- msgid "Date to start renumerating. Leave blank to renumerate all invoices."
9793
- msgstr ""
9794
- "Datum, ab dem die Renumerieren beginnen soll. Leer lassen, um alle "
9795
- "Rechnungen neu zu berechnen."
9796
-
9797
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:78
9798
- msgid "End Date"
9799
- msgstr "Enddatum"
9800
-
9801
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:80
9802
- msgid "Date to end renumerating. Leave blank to renumerate all invoices."
9803
- msgstr ""
9804
- "Datum an dem Renumerierung enden soll. Leer lassen, um alle Rechnungen neu "
9805
- "zu berechnen."
9806
-
9807
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:85
9808
- msgid "Start Number"
9809
- msgstr "Startnummer"
9810
-
9811
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:87
9812
- msgid ""
9813
- "Counter to start renumerating. Leave 0 to continue from current counter."
9814
- msgstr ""
9815
- "Zähler für Start der Renumerierung. Lasse 0, um vom aktuellen Zähler "
9816
- "fortzufahren."
9817
-
9818
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:92
9819
- msgid "Delete All"
9820
- msgstr "Alles löschen"
9821
-
9822
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:94
9823
- msgid "Clear all invoices before renumerating."
9824
- msgstr "Lösche alle Rechnungen vor der Renumerierung."
9825
-
9826
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:105
9827
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:97
9828
- msgid "Document Type"
9829
- msgstr "Dokumentart"
9830
-
9831
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:115
9832
- msgid "Order Statuses"
9833
- msgstr "Bestellzustände"
9834
-
9835
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:118
9836
- msgid "Renumerate invoices"
9837
- msgstr "Rechnungen renumerieren"
9838
-
9839
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:127
9840
- msgid "Results"
9841
- msgstr "Ergebnisse"
9842
-
9843
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:206
9844
- msgid "Total documents created: %d"
9845
- msgstr "Gesamtzahl der erstellten Dokumente: %d"
9846
-
9847
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:207
9848
- msgid "Total documents deleted: %d"
9849
- msgstr "Gesamtzahl der gelöschten Dokumente: %d"
9850
-
9851
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:38
9852
- msgid ""
9853
- "This option is disabled in WooCommerce > Settings > Booster > Emails & Misc. "
9854
- "> General > Advanced Options > Disable Saving PDFs in PHP directory for "
9855
- "temporary files"
9856
- msgstr ""
9857
- "Diese Option ist deaktiviert in WooCommerce > Einstellungen > Booster > "
9858
- "Emails & Sonstiges > Allgemein > Erweiterte Optionen > Deaktivieren von "
9859
- "Speichern von PDFs im PHP-Verzeichnis temporärer Dateien"
9860
-
9861
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:43
9862
- msgid "Sorry, but something went wrong..."
9863
- msgstr "Entschuldigung, aber etwas schief gelaufen..."
9864
-
9865
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:47
9866
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:68
9867
- msgid "Please fill year and month values."
9868
- msgstr "Bitte fülle die Jahres- und Monatswerte aus."
9869
-
9870
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:87
9871
- msgid "Year"
9872
- msgstr ""
9873
- "Erlaubt tags: <code> [blog_name] </ code>, <code> [Monat] </ code>, <code> "
9874
- "[Tag] </ code>, <code> [Jahr] </ code>, <code> [Stunde] </ code>, <code> "
9875
- "[Minute] </ code>, <code> [zweite] </ code> und <code> [timestamp] </ code>"
9876
-
9877
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:92
9878
- msgid "Month"
9879
- msgstr "Monat"
9880
-
9881
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:103
9882
- msgid "Display monthly documents table"
9883
- msgstr "Anzeigen Tabelle der monatlichen Dokumente"
9884
-
9885
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:108
9886
- msgid "Download all monthly documents PDFs in single ZIP file"
9887
- msgstr "Download aller monatlichen Dokumente PDFs in einer einzigen ZIP-Datei"
9888
-
9889
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:252
9890
- msgid "Document Nr."
9891
- msgstr "Dokumentnr."
9892
-
9893
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:253
9894
- msgid "Document Date"
9895
- msgstr "Dokumentdatum"
9896
-
9897
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:255
9898
- msgid "Customer Country"
9899
- msgstr "Kunden Land"
9900
-
9901
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:256
9902
- msgid "Customer VAT ID"
9903
- msgstr "Kunde Umsatzsteuer-ID"
9904
-
9905
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:257
9906
- msgid "Tax %"
9907
- msgstr "Steuern %"
9908
-
9909
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:258
9910
- msgid "Order Total Tax Excl."
9911
- msgstr "Gesamtsumme der Bestellungen exkl. Steuern"
9912
-
9913
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:259
9914
- msgid "Order Taxes"
9915
- msgstr "Steuern der Bestellungen"
9916
-
9917
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:262
9918
- msgid "Refunds"
9919
- msgstr "Rückerstattungen"
9920
-
9921
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:26
9922
- msgid "Display & Misc."
9923
- msgstr "Anzeigen & Sonstiges"
9924
-
9925
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:142
9926
- msgid "View"
9927
- msgstr "Ansehen"
9928
-
9929
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:161
9930
- msgid "Create"
9931
- msgstr "Erstellen"
9932
-
9933
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:293
9934
- msgid "Admin's \"Orders\" Page"
9935
- msgstr "\"Bestellungen\"-Seite für Administrator "
9936
-
9937
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:294
9938
- msgid "Add Column"
9939
- msgstr "Spalte hinzufügen"
9940
-
9941
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:302
9942
- msgid "Column Title"
9943
- msgstr "Spalten-Titel"
9944
-
9945
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:327
9946
- msgid "Add View Button"
9947
- msgstr "Ansehen-Button hinzufügen"
9948
-
9949
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:334
9950
- msgid "Add Create Button"
9951
- msgstr "Erstellen-Button hinzufügen"
9952
-
9953
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:341
9954
- msgid "Add Delete Button"
9955
- msgstr "Lösch-Button hinzufügen"
9956
-
9957
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:348
9958
- msgid "Create Button Requires Confirmation"
9959
- msgstr "Erstellen-Button erfordert Bestätigung"
9960
-
9961
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:355
9962
- msgid "Delete Button Requires Confirmation"
9963
- msgstr "Lösch-Button erfordert Bestätigung"
9964
-
9965
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:362
9966
- msgid "Customer's \"My Account\" Page"
9967
- msgstr "\"Mein Konto\" des Kunden-Seite"
9968
-
9969
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:363
9970
- msgid "Add link"
9971
- msgstr "Link hinzufügen"
9972
-
9973
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:371
9974
- msgid "Link Text"
9975
- msgstr "Link Text"
9976
-
9977
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:378
9978
- msgid "Enable \"Save as\""
9979
- msgstr "Aktivieren von \"Speichern unter\" "
9980
-
9981
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:380
9982
- msgid "Enable \"save as\" pdf instead of view pdf in browser"
9983
- msgstr ""
9984
- "Aktivieren von PDF-\"Speichern unter\" anstelle von Ansehen des PDF im "
9985
- "Browser"
9986
-
9987
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:387
9988
- msgid "PDF File Name"
9989
- msgstr "PDF-Dateiname"
9990
-
9991
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:26
9992
- msgid "Email Options"
9993
- msgstr "Emailoptionen"
9994
-
9995
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:87
9996
- msgid "Payment gateways to include"
9997
- msgstr "Einzuschließende Zahlungs-Gateways"
9998
-
9999
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:94
10000
- msgid "Select some gateways. Leave blank to include all."
10001
- msgstr "Wähle einige Gateways aus. Leer lassen, um alle einzuschließen."
10002
-
10003
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:119
10004
- msgid "Admin - New Order"
10005
- msgstr "Administrator - Neue Bestellung"
10006
-
10007
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:120
10008
- msgid "Admin - Cancelled Order"
10009
- msgstr "Administrator - Abgebrochener Bestellung"
10010
-
10011
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:122
10012
- msgid "Customer - Processing Order"
10013
- msgstr "Kunde - zu verarbeitende Bestellungen"
10014
-
10015
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:124
10016
- msgid "Customer - Completed Order"
10017
- msgstr "Kunde - Abgeschlossene Bestellungen"
10018
-
10019
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:125
10020
- msgid "Customer - Invoice"
10021
- msgstr "Kunde - Rechnung"
10022
-
10023
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:126
10024
- msgid "Customer - Refunded Order"
10025
- msgstr "Kunde - zurückerstattete Bestellung"
10026
-
10027
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:137
10028
- msgid "Attach PDF to emails"
10029
- msgstr "Anhängen von PDF an Emails"
10030
-
10031
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:144
10032
- msgid "Select some emails"
10033
- msgstr "Wähle einige Emails aus"
10034
-
10035
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:23
10036
- msgid "Footer"
10037
- msgstr "Fußzeile"
10038
-
10039
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:44
10040
- msgid "Enable Footer"
10041
- msgstr "Fußzeile aktivieren"
10042
-
10043
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:50
10044
- msgid "Footer Text"
10045
- msgstr "Text im Footer-Bereich"
10046
-
10047
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:57
10048
- msgid ""
10049
- "You can use HTML here, as well as any WordPress shortcodes. There is two "
10050
- "more predefined values you can use: %page_number% and %total_pages%."
10051
- msgstr ""
10052
- "Du kannst hier HTML und auch alle WordPress-Shortcodes verwenden. Es gibt "
10053
- "zwei weitere vordefinierte Werte, die Du verwenden kannst: %page_number% und "
10054
- "%total_pages%."
10055
-
10056
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:61
10057
- msgid "Footer Text Color"
10058
- msgstr "Fußzeilen-Textfarbe"
10059
-
10060
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:68
10061
- msgid "Footer Line Color"
10062
- msgstr "Fußzeilenfarbe"
10063
-
10064
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:75
10065
- msgid "Footer Margin"
10066
- msgstr "Fußzeilenrand"
10067
-
10068
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:25
10069
- msgid "Header"
10070
- msgstr "Kopfzeile"
10071
-
10072
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:46
10073
- msgid "Enable Header"
10074
- msgstr "Kopfzeilen aktivieren"
10075
-
10076
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:52
10077
- msgid "Header Image"
10078
- msgstr "Kopfzeilenbild"
10079
-
10080
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:57
10081
- msgid ""
10082
- "Enter a URL to an image you want to show in the invoice's header. Upload "
10083
- "your image using the <a href=\"/wp-admin/media-new.php\">media uploader</a>."
10084
- msgstr ""
10085
- "Gib eine URL zu einem Bild ein, das Du im Kopf der Rechnung anzeigen "
10086
- "möchtest. Lade Dein Bild mit dem <a href=\"/wp-admin/media-new.php\">"
10087
- "Medienuploader</a> hoch."
10088
-
10089
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:61
10090
- msgid "Header Image Width in mm"
10091
- msgstr "Kopfzeilen-Bildbreite in mm"
10092
-
10093
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:67
10094
- msgid "Header Title"
10095
- msgstr "Kopfzeilen-Titel"
10096
-
10097
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:73
10098
- msgid "Header Text"
10099
- msgstr "Kopfzeilen-Text"
10100
-
10101
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:75
10102
- msgid "Company Name"
10103
- msgstr "Firmenname:"
10104
-
10105
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:79
10106
- msgid "Header Text Color"
10107
- msgstr "Kopfzeilen-Textfarbe"
10108
-
10109
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:86
10110
- msgid "Header Line Color"
10111
- msgstr "Kopfzeilenfarbe"
10112
-
10113
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:93
10114
- msgid "Header Margin"
10115
- msgstr "Kopfzeilenrand"
10116
-
10117
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:107
10118
- msgid "PDF Invoicing Header General Options"
10119
- msgstr "Allgemeine Kopf-Optionen der PDF-Rechnung"
10120
-
10121
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:112
10122
- msgid "Default Images Directory"
10123
- msgstr "Voreingestelltes Verzeichnis für Bilder"
10124
-
10125
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:113
10126
- msgid "Default images directory in TCPDF library (K_PATH_IMAGES)."
10127
- msgstr ""
10128
- "Voreingestelltes Verzeichnis für Bilder in TCPDF-Bibliothek (K_PATH_IMAGES)."
10129
-
10130
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:114
10131
- msgid "Try changing this if you have issues displaying image in header."
10132
- msgstr ""
10133
- "Versuche dies zu ändern, wenn Probleme mit der Darstellung eines Bildes in "
10134
- "der Kopfzeile bestehen."
10135
-
10136
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:119
10137
- msgid "Empty"
10138
- msgstr "Leer"
10139
-
10140
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:120
10141
- msgid "TCPDF Default"
10142
- msgstr "TCPDF-Voreinstellung"
10143
-
10144
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:121
10145
- msgid "ABSPATH"
10146
- msgstr "ABSPATH"
10147
-
10148
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:122
10149
- msgid "DOCUMENT_ROOT"
10150
- msgstr "DOCUMENT_ROOT"
10151
-
10152
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-numbering.php:25
10153
- msgid "Numbering"
10154
- msgstr "Nummerierung"
10155
-
10156
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-numbering.php:51
10157
- msgid "Counter"
10158
- msgstr "Zähler"
10159
-
10160
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-numbering.php:57
10161
- msgid "Counter Width"
10162
- msgstr "Zählerbreite"
10163
-
10164
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:25
10165
- msgid "Page Settings"
10166
- msgstr "Seiteneinstellungen"
10167
-
10168
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:407
10169
- msgid "Page Orientation"
10170
- msgstr "Seitenorientierung"
10171
-
10172
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:412
10173
- msgid "Portrait"
10174
- msgstr "Portrait"
10175
-
10176
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:413
10177
- msgid "Landscape"
10178
- msgstr "Querformat"
10179
-
10180
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:417
10181
- msgid "Page Format"
10182
- msgstr "Seitenformat"
10183
-
10184
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:424
10185
- msgid "Margin Left"
10186
- msgstr "Rand links"
10187
-
10188
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:430
10189
- msgid "Margin Right"
10190
- msgstr "Rand rechts"
10191
-
10192
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:436
10193
- msgid "Margin Top"
10194
- msgstr "Rand oben"
10195
-
10196
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:442
10197
- msgid "Margin Bottom"
10198
- msgstr "Rand unten"
10199
-
10200
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-styling.php:25
10201
- msgid "Styling"
10202
- msgstr "Gestaltung"
10203
-
10204
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-styling.php:53
10205
- msgid "CSS"
10206
- msgstr "CSS"
10207
-
10208
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-styling.php:61
10209
- msgid "Font Family"
10210
- msgstr "Schriftenfamilie"
10211
-
10212
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-styling.php:80
10213
- msgid "Font Size"
10214
- msgstr "Schriftgröße"
10215
-
10216
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-styling.php:87
10217
- msgid "Make Font Shadowed"
10218
- msgstr "Schrift soll Schatten werfen"
10219
-
10220
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-templates.php:25
10221
- msgid "Templates"
10222
- msgstr "Vorlagen"
10223
-
10224
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-templates.php:53
10225
- msgid "HTML Template"
10226
- msgstr "HTML-Vorlage"
10227
-
10228
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-templates.php:68
10229
- msgid "Available Shortcodes"
10230
- msgstr "Verfügbare Shortcodes"
10231
-
10232
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-templates.php:71
10233
- msgid "For the list of available shortcodes, please visit %s."
10234
- msgstr "Eine Liste der verfügbaren Shortcodes findest Du unter %s."
10235
-
10236
- #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:77
10237
- msgid "Create All Country Groups Failed."
10238
- msgstr "Erstellen aller Ländergruppen fehlgeschlagen."
10239
-
10240
- #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:89
10241
- msgid "Create All Country Groups Failed. Wrong parameter."
10242
- msgstr "Erstellen aller Ländergruppen fehlgeschlagen. Falscher Parameter"
10243
-
10244
- #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:95
10245
- msgid ""
10246
- "All existing country groups will be deleted and %s new groups will be "
10247
- "created. Are you sure?"
10248
- msgstr ""
10249
- "Alle bestehenden Ländergruppen werden gelöscht und %s neue Gruppen werden "
10250
- "erstellt. Bist Du sicher?"
10251
-
10252
- #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:96
10253
- msgid "Confirm"
10254
- msgstr "Bestätigen"
10255
-
10256
- #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:124
10257
- msgid "Country Groups Generated."
10258
- msgstr "Ländergruppen generiert."
10259
-
10260
- #: includes/price-by-country/class-wcj-price-by-country-local.php:250
10261
- msgid "Country Group Nr."
10262
- msgstr "Ländergruppen Nr."
10263
-
10264
- #: includes/reports/class-wcj-currency-reports.php:40
10265
- msgid "Reports currency:"
10266
- msgstr "Währung für Berichte:"
10267
-
10268
- #: includes/reports/class-wcj-currency-reports.php:42
10269
- #: includes/reports/class-wcj-currency-reports.php:86
10270
- msgid "Show reports only in"
10271
- msgstr "Zeige Berichte nur in"
10272
-
10273
- #: includes/reports/wcj-class-reports-customers.php:41
10274
- msgid "No customers found."
10275
- msgstr "Keine Kunden gefunden."
10276
-
10277
- #: includes/reports/wcj-class-reports-customers.php:91
10278
- msgid "Customer Name"
10279
- msgstr "Kundenname"
10280
-
10281
- #: includes/reports/wcj-class-reports-customers.php:93
10282
- msgid "Total Spent"
10283
- msgstr "Insgesamt ausgegeben"
10284
-
10285
- #: includes/reports/wcj-class-reports-customers.php:133
10286
- msgid "Total customers"
10287
- msgstr "Kunden insgesamt"
10288
-
10289
- #: includes/reports/wcj-class-reports-customers.php:137
10290
- msgid "Country Code"
10291
- msgstr "Landesvorwahl"
10292
-
10293
- #: includes/reports/wcj-class-reports-customers.php:138
10294
- msgid "Customers Count"
10295
- msgstr "Kundenzählung"
10296
-
10297
- #: includes/reports/wcj-class-reports-customers.php:139
10298
- msgid "Percent of total"
10299
- msgstr "Prozent der Gesamtzahl"
10300
-
10301
- #: includes/reports/wcj-class-reports-customers.php:161
10302
- msgid "Report for:"
10303
- msgstr "Bericht für:"
10304
-
10305
- #: includes/reports/wcj-class-reports-monthly-sales.php:39
10306
- msgid "Currency rates deleted."
10307
- msgstr "Wechselkurse gelöscht."
10308
-
10309
- #: includes/reports/wcj-class-reports-monthly-sales.php:137
10310
- msgid "Days"
10311
- msgstr "Tage"
10312
-
10313
- #: includes/reports/wcj-class-reports-monthly-sales.php:138
10314
- msgid "Total Orders"
10315
- msgstr "Gesamtbestellungen"
10316
-
10317
- #: includes/reports/wcj-class-reports-monthly-sales.php:139
10318
- msgid "Orders Average / Day"
10319
- msgstr "Durschnittsbestellungen / Tag"
10320
-
10321
- #: includes/reports/wcj-class-reports-monthly-sales.php:140
10322
- #: includes/reports/wcj-class-reports-sales.php:174
10323
- msgid "Total Sum"
10324
- msgstr "Gesamtsumme"
10325
-
10326
- #: includes/reports/wcj-class-reports-monthly-sales.php:141
10327
- msgid "Total Sum (excl. TAX)"
10328
- msgstr "Gesamtsumme (exkl. Steuern)"
10329
-
10330
- #: includes/reports/wcj-class-reports-monthly-sales.php:142
10331
- msgid "Average / Order (excl. TAX)"
10332
- msgstr "Durchschnitt/Bestellung (exkl. Steuern)"
10333
-
10334
- #: includes/reports/wcj-class-reports-monthly-sales.php:143
10335
- msgid "Average / Day (excl. TAX)"
10336
- msgstr "Durchschnitt/Tag (exkl. Steuern)"
10337
-
10338
- #: includes/reports/wcj-class-reports-monthly-sales.php:144
10339
- msgid "Currency Rates"
10340
- msgstr "Wechselkurse"
10341
-
10342
- #: includes/reports/wcj-class-reports-monthly-sales.php:219
10343
- msgid "Error getting currency rate for %s"
10344
- msgstr "Fehler beim Abrufen der Wechselkurses für %s"
10345
-
10346
- #: includes/reports/wcj-class-reports-monthly-sales.php:277
10347
- msgid "Totals"
10348
- msgstr "Summen"
10349
-
10350
- #: includes/reports/wcj-class-reports-monthly-sales.php:312
10351
- msgid "Report currency"
10352
- msgstr "Währung des Berichts"
10353
-
10354
- #: includes/reports/wcj-class-reports-monthly-sales.php:326
10355
- msgid "Report generated in: %s s"
10356
- msgstr "Bericht generiert in: %s s"
10357
-
10358
- #: includes/reports/wcj-class-reports-monthly-sales.php:328
10359
- msgid "Reset Currency Rates"
10360
- msgstr "Rücksetzen der Wechselkurse"
10361
-
10362
- #: includes/reports/wcj-class-reports-sales.php:232
10363
- msgid "No sales data for current period."
10364
- msgstr "Keine Verkaufsdaten für den aktuellen Zeitraum."
10365
-
10366
- #: includes/reports/wcj-class-reports-stock.php:30
10367
- msgid "All Products on Stock"
10368
- msgstr "Alle Produkte vorrätig"
10369
-
10370
- #: includes/reports/wcj-class-reports-stock.php:31
10371
- msgid "Report shows all products that are on stock and some sales info."
10372
- msgstr ""
10373
- "Bericht zeigt alle Produkte, die auf Lager sind und einige "
10374
- "Verkäufsinformationen."
10375
-
10376
- #: includes/reports/wcj-class-reports-stock.php:35
10377
- msgid "Understocked"
10378
- msgstr "Untervorrat"
10379
-
10380
- #: includes/reports/wcj-class-reports-stock.php:36
10381
- msgid ""
10382
- "Report shows all products that are low in stock calculated on product's "
10383
- "sales data."
10384
- msgstr ""
10385
- "Der Bericht zeigt alle Produkte, die einen niedrigen Lagerbestand aufweisen, "
10386
- "basierend auf den Verkaufsdaten."
10387
-
10388
- #: includes/reports/wcj-class-reports-stock.php:38
10389
- msgid ""
10390
- "Threshold for minimum stock is equal to half of the sales in selected days "
10391
- "range."
10392
- msgstr ""
10393
- "Schwelle für Mindestbestand ist gleich der Hälfte der Verkäufe im "
10394
- "ausgewählten Tagesumfang."
10395
-
10396
- #: includes/reports/wcj-class-reports-stock.php:42
10397
- msgid "Overstocked"
10398
- msgstr "Übervorrat"
10399
-
10400
- #: includes/reports/wcj-class-reports-stock.php:43
10401
- msgid ""
10402
- "Report shows all products that are on stock, but have no sales in selected "
10403
- "period. Only products added before the start date of selected period are "
10404
- "accounted."
10405
- msgstr ""
10406
- "Bericht zeigt alle Produkte, die auf Lager sind, haben aber keine Verkäufe "
10407
- "im ausgewählten Zeitraum. Nur Produkte, die vor dem Startdatum des "
10408
- "ausgewählten Zeitraums hinzugefügt wurden, werden berücksichtigt."
10409
-
10410
- #: includes/reports/wcj-class-reports-stock.php:213
10411
- msgid "deleted"
10412
- msgstr "gelöscht"
10413
-
10414
- #: includes/reports/wcj-class-reports-stock.php:322
10415
- msgid "Stock"
10416
- msgstr "Vorrat"
10417
-
10418
- #: includes/reports/wcj-class-reports-stock.php:323
10419
- msgid "Stock price"
10420
- msgstr "Lagerpreis"
10421
-
10422
- #: includes/reports/wcj-class-reports-stock.php:324
10423
- msgid "Total stock price"
10424
- msgstr "Lagerpreis isngesamt"
10425
-
10426
- #: includes/reports/wcj-class-reports-stock.php:326
10427
- msgid "Last sale"
10428
- msgstr "Letzter Verkauf"
10429
-
10430
- #: includes/reports/wcj-class-reports-stock.php:327
10431
- msgid "Sales in last %s days"
10432
- msgstr "Verkäufe in den letzten %s Tagen"
10433
-
10434
- #: includes/reports/wcj-class-reports-stock.php:328
10435
- msgid "Total sales"
10436
- msgstr "Gesamtverkäufe"
10437
-
10438
- #: includes/reports/wcj-class-reports-stock.php:331
10439
- msgid "Stock to minimum"
10440
- msgstr "Bestand auf Minimum"
10441
-
10442
- #: includes/reports/wcj-class-reports-stock.php:364
10443
- msgid "purchase price:"
10444
- msgstr "Kaufpreis:"
10445
-
10446
- #: includes/reports/wcj-class-reports-stock.php:369
10447
- msgid "stock purchase price:"
10448
- msgstr "Lagerkaufpreis:"
10449
-
10450
- #: includes/reports/wcj-class-reports-stock.php:375
10451
- msgid "No sales yet"
10452
- msgstr "Noch keine Verkäufe"
10453
-
10454
- #: includes/reports/wcj-class-reports-stock.php:380
10455
- msgid "profit:"
10456
- msgstr "Gewinn:"
10457
-
10458
- #: includes/reports/wcj-class-reports-stock.php:404
10459
- msgid "Total current stock value"
10460
- msgstr "Aktueller Gesamtbestandswert"
10461
-
10462
- #: includes/reports/wcj-class-reports-stock.php:405
10463
- msgid "Total stock value"
10464
- msgstr "Gesamtbestandswert"
10465
-
10466
- #: includes/reports/wcj-class-reports-stock.php:406
10467
- msgid "Product stock value average"
10468
- msgstr "Durchschnittlicher Produktbestandswert"
10469
-
10470
- #: includes/reports/wcj-class-reports-stock.php:407
10471
- msgid "Product stock average"
10472
- msgstr "Durchschnittlicher Produktbestand"
10473
-
10474
- #: includes/reports/wcj-class-reports-stock.php:411
10475
- msgid "Report was generated in: "
10476
- msgstr "Bericht wurde generiert in:"
10477
-
10478
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:52
10479
- #: includes/shipping/class-wc-shipping-wcj-custom.php:45
10480
- msgid "Booster: Custom Shipping Method"
10481
- msgstr "Booster: Benutzerdefinierte Versandmethode"
10482
-
10483
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:122
10484
- #: includes/shipping/class-wc-shipping-wcj-custom.php:91
10485
- msgid "Cost calculation type."
10486
- msgstr "Art der Kostenberechnung."
10487
-
10488
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:126
10489
- #: includes/shipping/class-wc-shipping-wcj-custom.php:95
10490
- msgid "Flat Rate"
10491
- msgstr "Pauschale"
10492
-
10493
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:127
10494
- #: includes/shipping/class-wc-shipping-wcj-custom.php:96
10495
- msgid "By Total Cart Weight"
10496
- msgstr "Nach gesamten Warenkorbgewicht"
10497
-
10498
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:128
10499
- #: includes/shipping/class-wc-shipping-wcj-custom.php:97
10500
- msgid "By Total Cart Weight Table"
10501
- msgstr "Nach gesamter Warenkorbgewichttabelle"
10502
-
10503
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:129
10504
- #: includes/shipping/class-wc-shipping-wcj-custom.php:98
10505
- msgid "By Total Cart Quantity"
10506
- msgstr "Nach gesamter Warenkorbmenge"
10507
-
10508
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:133
10509
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:175
10510
- #: includes/shipping/class-wc-shipping-wcj-custom.php:102
10511
- #: includes/shipping/class-wc-shipping-wcj-custom.php:128
10512
- msgid "Cost"
10513
- msgstr "Kosten"
10514
-
10515
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:135
10516
- #: includes/shipping/class-wc-shipping-wcj-custom.php:104
10517
- msgid ""
10518
- "Cost. If calculating by weight - then cost per one weight unit. If "
10519
- "calculating by quantity - then cost per one piece."
10520
- msgstr ""
10521
- "Kosten. Wenn Berechnung nach Gewicht - dann Kosten pro Gewichtseinheit. Wenn "
10522
- "Berechnung nach menge - dann Kosten pro Stück."
10523
-
10524
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:143
10525
- msgid "Minimum total cart weight. Set zero to disable."
10526
- msgstr "Minimum Warenkorb-Gesamtgewicht. Null einstellen um zu deaktivieren."
10527
-
10528
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:149
10529
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:168
10530
- #: includes/shipping/class-wc-shipping-wcj-custom.php:121
10531
- msgid "Max Weight"
10532
- msgstr "Max Gewicht"
10533
-
10534
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:151
10535
- msgid "Maximum total cart weight. Set zero to disable."
10536
- msgstr "Maximum Warenkorb-Gesamtgewicht. Null einstellen um zu deaktivieren."
10537
-
10538
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:157
10539
- #: includes/shipping/class-wc-shipping-wcj-custom.php:110
10540
- msgid "Weight Table Total Rows"
10541
- msgstr "Gewichtstabelle Gesamtzeilen"
10542
-
10543
- #: includes/shipping/class-wc-shipping-wcj-custom.php:78
10544
- msgid "Enable Custom Shipping"
10545
- msgstr "Aktiviere benutzerdefinierten Versand"
10546
-
10547
- #: includes/shortcodes/class-wcj-input-field-shortcodes.php:52
10548
- msgid "Attribute \"name\" is required!"
10549
- msgstr "Attribut \"Name\" wird benötigt!"
10550
-
10551
- #: includes/shortcodes/class-wcj-orders-shortcodes.php:96
10552
- msgid "Dollars"
10553
- msgstr "Dollar"
10554
-
10555
- #: includes/shortcodes/class-wcj-orders-shortcodes.php:97
10556
- msgid "Cents"
10557
- msgstr "Cent"
10558
-
10559
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:53
10560
- msgid "Product by User"
10561
- msgstr "Produkt nach Nutzer"
10562
-
10563
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:138
10564
- msgid "Title is required!"
10565
- msgstr "Titel wird benötigt!"
10566
-
10567
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:146
10568
- msgid "Product exists!"
10569
- msgstr "Produkt vorhanden!"
10570
-
10571
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:168
10572
- msgid "%s is required!"
10573
- msgstr "%s wird benötigt!"
10574
-
10575
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:174
10576
- msgid "Sale price must be less than the regular price!"
10577
- msgstr "Der Kaufpreis muss niedriger sein als der reguläre Preis!"
10578
-
10579
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:208
10580
- msgid "Error!"
10581
- msgstr "Fehler!"
10582
-
10583
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:250
10584
- msgid "Add New Product"
10585
- msgstr "Neues Produkt hinzufügen"
10586
-
10587
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:250
10588
- msgid "Edit Product"
10589
- msgstr "Produkt bearbeiten"
10590
-
10591
- #: includes/shortcodes/class-wcj-products-shortcodes.php:200
10592
- msgid "%s ago"
10593
- msgstr "%s her"
10594
-
10595
- #: includes/shortcodes/class-wcj-products-shortcodes.php:216
10596
- msgid "No sales yet."
10597
- msgstr "Noch keine Verkäufe."
10598
-
10599
- #: includes/shortcodes/class-wcj-shortcodes.php:96
10600
- msgid "%s module not enabled!"
10601
- msgstr "%s Modul nicht aktiviert!"
10602
-
10603
- #: includes/shortcodes/class-wcj-shortcodes.php:120
10604
- msgid "Wrong user role!"
10605
- msgstr "Falsche Benutzerrolle"
10606
-
10607
- #: includes/templates/wcj-add-to-cart-variable.php:24
10608
- msgid "This product is currently out of stock and unavailable."
10609
- msgstr "Dieses Produkt ist derzeit nicht auf Lager und nicht verfügbar."
10610
-
10611
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:43
10612
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:70
10613
- msgid "VAT"
10614
- msgstr "Mehrwertsteuer"
10615
-
10616
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:77
10617
- msgid "Add EU Countries VAT Rates"
10618
- msgstr "Mehrwertsteuersätze der EU-Länder hinzufügen"
10619
-
10620
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:77
10621
- msgid "Note: will add duplicates."
10622
- msgstr "Hinweis: Wird Duplikate hinzufügen."
10623
-
10624
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:85
10625
- msgid "List of EU VAT rates to be added"
10626
- msgstr "Liste der EU-Mehrwertsteuersätze die hinzugefügt werden"
10627
-
10628
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:91
10629
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:105
10630
- msgid "Rate"
10631
- msgstr "Satz"
10632
-
10633
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:99
10634
- msgid "Current standard tax rates"
10635
- msgstr "Aktuelle Standardsteuersätze"
10636
-
10637
- #: includes/widgets/class-wcj-widget-country-switcher.php:24
10638
- msgid "Booster: Country Switcher Widget"
10639
- msgstr "Booster: Länderumschalter-Widget"
10640
-
10641
- #: includes/widgets/class-wcj-widget-country-switcher.php:26
10642
- msgid "Booster - Country Switcher"
10643
- msgstr "Booster - Länderumschalter"
10644
-
10645
- #: includes/widgets/class-wcj-widget-country-switcher.php:43
10646
- msgid "Prices and Currencies by Country module not enabled!"
10647
- msgstr "Preise und Währungen nach Ländermodul nicht aktiviert!"
10648
-
10649
- #: includes/widgets/class-wcj-widget-country-switcher.php:45
10650
- msgid "Customer Country Detection Method must include \"by user selection\"!"
10651
- msgstr ""
10652
- "Kundenland-Erkennungsmethode muss \"durch Benutzerauswahl\" enthalten sein!"
10653
-
10654
- #: includes/widgets/class-wcj-widget-country-switcher.php:80
10655
- #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:56
10656
- #: includes/widgets/class-wcj-widget-multicurrency.php:72
10657
- msgid "Title:"
10658
- msgstr "Titel:"
10659
-
10660
- #: includes/widgets/class-wcj-widget-country-switcher.php:84
10661
- msgid "Countries:"
10662
- msgstr "Länder:"
10663
-
10664
- #: includes/widgets/class-wcj-widget-country-switcher.php:88
10665
- msgid "Replace with currency:"
10666
- msgstr "Ersetzen mit Währung:"
10667
-
10668
- #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:24
10669
- msgid "Booster: Left to Free Shipping Widget"
10670
- msgstr "Booster: Übrig bis kostenloser Versand Widget"
10671
-
10672
- #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:26
10673
- msgid "Booster - Left to Free Shipping"
10674
- msgstr "Booster - Übrig bis kostenloser Versand"
10675
-
10676
- #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:58
10677
- msgid "Content:"
10678
- msgstr "Inhalt:"
10679
-
10680
- #: includes/widgets/class-wcj-widget-multicurrency.php:24
10681
- msgid "Booster: Multicurrency Switcher Widget"
10682
- msgstr "Booster: Multiwährungenumschalter-Widget"
10683
-
10684
- #: includes/widgets/class-wcj-widget-multicurrency.php:26
10685
- msgid "Booster - Multicurrency Switcher"
10686
- msgstr "Booster - Multiwährungenumschalter"
10687
-
10688
- #: includes/widgets/class-wcj-widget-multicurrency.php:43
10689
- msgid "Multicurrency module not enabled!"
10690
- msgstr "Multiwährungen-Modul nicht aktiviert!"
10691
-
10692
- #: includes/widgets/class-wcj-widget-multicurrency.php:76
10693
- msgid "Type:"
10694
- msgstr "Art:"
10695
-
10696
- #: includes/widgets/class-wcj-widget-multicurrency.php:78
10697
- msgid "Drop down"
10698
- msgstr "Dropdown-Liste"
10699
-
10700
- #: includes/widgets/class-wcj-widget-multicurrency.php:79
10701
- msgid "Radio list"
10702
- msgstr "Radio-Liste"
10703
-
10704
- #: includes/widgets/class-wcj-widget-multicurrency.php:80
10705
- msgid "Link list"
10706
- msgstr "Link-Liste"
10707
-
10708
- #: woocommerce-jetpack.php:366
10709
- msgid ""
10710
- "If you like <strong>Booster for WooCommerce</strong> please leave us a %s "
10711
- "rating. Thank you, we couldn't have done it without you!"
10712
- msgstr ""
10713
- "Wenn Du <strong>Booster for WooCommerce</ strong> magst, hinterlasse uns "
10714
- "bitte eine %s Bewertung. Danke, wir hätten es nicht ohne Dich geschafft!"
10715
-
10716
- #. #-#-#-#-# tmp-woocommerce-jetpack.pot (Booster for WooCommerce 2.5.6)
10717
- #. #-#-#-#-#
10718
- #. Plugin Name of the plugin/theme
10719
- #: woocommerce-jetpack.php:382
10720
- msgid "Booster for WooCommerce"
10721
- msgstr "Booster for WooCommerce"
10722
-
10723
- #: woocommerce-jetpack.php:383
10724
- msgid "Booster Settings"
10725
- msgstr "Booster-Einstellungen"
10726
-
10727
- #: woocommerce-jetpack.php:399
10728
- msgid "Docs"
10729
- msgstr "Dokumentation"
10730
-
10731
- #: woocommerce-jetpack.php:402
10732
- msgid "Unlock all"
10733
- msgstr "Alles freischalten"
10734
-
10735
- #: woocommerce-jetpack.php:418
10736
- msgid "Install Booster Plus to unlock all features"
10737
- msgstr "Installiere Booster Plus, um alle Funktionen freizuschalten"
10738
-
10739
- #: woocommerce-jetpack.php:419
10740
- msgid ""
10741
- "Some settings fields are locked and you will need %s to modify all locked "
10742
- "fields."
10743
- msgstr ""
10744
- "Einige Einstellungsfelder sind gesperrt und Du benötigst %s, um alle "
10745
- "gesperrten Felder zu ändern."
10746
-
10747
- #: woocommerce-jetpack.php:420
10748
- msgid "Buy now"
10749
- msgstr "Jetzt kaufen"
10750
-
10751
- #: woocommerce-jetpack.php:420
10752
- msgid "Visit Booster Site"
10753
- msgstr "Besuche die Booster-Site"
10754
-
10755
- #: woocommerce-jetpack.php:424
10756
- msgid ""
10757
- "Get <a href=\"http://booster.io/plus/\" target=\"_blank\">Booster Plus</a> "
10758
- "to change value."
10759
- msgstr ""
10760
- "Hole Dir <a href=\"http://booster.io/plus/\" target=\"_blank\">Booster "
10761
- "Plus</a>, um den Wert zu ändern."
10762
-
10763
- #: woocommerce-jetpack.php:427
10764
- msgid ""
10765
- "Get <a href=\"http://booster.io/plus/\" target=\"_blank\">Booster Plus</a> "
10766
- "to change values below."
10767
- msgstr ""
10768
- "Hole Dir <a href=\"http://booster.io/plus/\" target=\"_blank\">Booster "
10769
- "Plus</a>, um die Werte unten zu ändern."
10770
-
10771
- #: woocommerce-jetpack.php:430
10772
- msgid ""
10773
- "Get <a href=\"http://booster.io/plus/\" target=\"_blank\">Booster Plus</a> "
10774
- "to change values above."
10775
- msgstr ""
10776
- "Hole Dir <a href=\"http://booster.io/plus/\" target=\"_blank\">Booster "
10777
- "Plus</a>, um die Werte oben zu ändern."
10778
-
10779
- #: woocommerce-jetpack.php:433
10780
- msgid "Get Booster Plus to change value."
10781
- msgstr "Hole Dir Booster Plus, um den Wert zu ändern."
10782
-
10783
- #: woocommerce-jetpack.php:686
10784
- msgid "Please upload a file to import!"
10785
- msgstr "Bitte lade Dir eine Datei zum Importieren hoch!"
10786
-
10787
- #: woocommerce-jetpack.php:694 woocommerce-jetpack.php:699
10788
- msgid "Wrong file format!"
10789
- msgstr "Falsches Dateiformat!"
10790
-
10791
- #: woocommerce-jetpack.php:706
10792
- msgid "%d options successfully imported."
10793
- msgstr "%d Optionen erfolgreich importiert."
10794
-
10795
- #: woocommerce-jetpack.php:771
10796
- msgid "%d options successfully deleted."
10797
- msgstr "%d Optionen erfolgreich gelöscht."
10798
-
10799
- #. Plugin URI of the plugin/theme
10800
- msgid "http://booster.io"
10801
- msgstr "http://booster.io"
10802
-
10803
- #. Description of the plugin/theme
10804
- msgid "Supercharge your WooCommerce site with these awesome powerful features."
10805
- msgstr ""
10806
- "Erweitere Deine WooCommerce-Website mit diesen großartigen mächtigen "
10807
- "Funktionen."
10808
-
10809
- #. Author of the plugin/theme
10810
- msgid "Algoritmika Ltd"
10811
- msgstr "Algoritmika Ltd"
10812
-
10813
- #. Author URI of the plugin/theme
10814
- msgid "http://www.algoritmika.com"
10815
- msgstr "http://www.algoritmika.com"
1
+ msgid ""
2
+ msgstr ""
3
+ "PO-Revision-Date: 2017-03-01 12:48+0000\n"
4
+ "MIME-Version: 1.0\n"
5
+ "Content-Type: text/plain; charset=UTF-8\n"
6
+ "Content-Transfer-Encoding: 8bit\n"
7
+ "Plural-Forms: nplurals=2; plural=n != 1\n"
8
+ "X-Generator: Loco - https://localise.biz/\n"
9
+ "Language: de-DE\n"
10
+ "Project-Id-Version: Plugins - Booster for WooCommerce - Stable (latest "
11
+ "release)\n"
12
+ "Report-Msgid-Bugs-To: \n"
13
+ "POT-Creation-Date: 2017-02-28 23:21+0000\n"
14
+ "Last-Translator: Michael Pekić <michael@pekic.de>\n"
15
+ "Language-Team: German"
16
+
17
+ #: includes/class-wcj-product-tabs.php:567
18
+ #: includes/class-wcj-product-tabs.php:736
19
+ msgid "To hide this tab from some products, enter products here."
20
+ msgstr ""
21
+ "Um diese Registerkarte von einigen Produkten zu verstecken, gib hier "
22
+ "Produkte ein."
23
+
24
+ #: includes/class-wcj-product-tabs.php:576
25
+ #: includes/class-wcj-product-tabs.php:745
26
+ msgid "PRODUCTS to SHOW this tab"
27
+ msgstr "PRODUKTE, um diese Registerkarte ANZUZEIGEN"
28
+
29
+ #: includes/class-wcj-product-tabs.php:577
30
+ #: includes/class-wcj-product-tabs.php:746
31
+ msgid "To show this tab only for some products, enter products here."
32
+ msgstr ""
33
+ "Um diese Registerkarte nur für einige Produkte anzuzeigen, gib hier Produkte "
34
+ "ein."
35
+
36
+ #: includes/class-wcj-product-tabs.php:587
37
+ #: includes/class-wcj-product-tabs.php:756
38
+ msgid "To hide this tab from some categories, enter categories here."
39
+ msgstr ""
40
+ "Um diese Registerkarte aus einigen Kategorien zu verbergen, gib hier "
41
+ "Kategorien ein."
42
+
43
+ #: includes/class-wcj-product-tabs.php:596
44
+ #: includes/class-wcj-product-tabs.php:765
45
+ msgid "CATEGORIES to SHOW this tab"
46
+ msgstr "KATEGORIEN, um diese Registerkarte zu sehen"
47
+
48
+ #: includes/class-wcj-product-tabs.php:597
49
+ #: includes/class-wcj-product-tabs.php:766
50
+ msgid "To show this tab only for some categories, enter categories here."
51
+ msgstr ""
52
+ "Um diese Registerkarte nur für einige Kategorien anzuzeigen, gib hier "
53
+ "Kategorien ein."
54
+
55
+ #: includes/class-wcj-product-tabs.php:607
56
+ #: includes/class-wcj-product-tabs.php:776
57
+ msgid "To hide this tab from some tags, enter tags here."
58
+ msgstr ""
59
+ "Um diese Registerkarte aus einigen Stichwörtern zu verbergen, gib hier "
60
+ "Stichwörter ein."
61
+
62
+ #: includes/class-wcj-product-tabs.php:616
63
+ #: includes/class-wcj-product-tabs.php:785
64
+ msgid "TAGS to SHOW this tab"
65
+ msgstr "STICHWÖRTER, um diese Registerkarte zu sehen"
66
+
67
+ #: includes/class-wcj-product-tabs.php:617
68
+ #: includes/class-wcj-product-tabs.php:786
69
+ msgid "To show this tab only for some tags, enter tags here."
70
+ msgstr ""
71
+ "Um diese Registerkarte nur für einige Stichwörter anzuzeigen, gib hier "
72
+ "Stichwörter ein."
73
+
74
+ #: includes/class-wcj-product-tabs.php:626
75
+ msgid "Comma separated PRODUCT IDs to HIDE this tab"
76
+ msgstr "Komma getrennte PRODUKT-IDs, um diese Registerkarte zu verbergen"
77
+
78
+ #: includes/class-wcj-product-tabs.php:626
79
+ #: includes/class-wcj-product-tabs.php:635
80
+ #: includes/class-wcj-product-tabs.php:644
81
+ #: includes/class-wcj-product-tabs.php:653
82
+ #: includes/classes/class-wcj-module.php:424
83
+ msgid "Deprecated"
84
+ msgstr "Veraltet"
85
+
86
+ #: includes/class-wcj-product-tabs.php:627
87
+ msgid "To hide this tab from some products, enter product IDs here."
88
+ msgstr ""
89
+ "Um diese Registerkarte aus einigen Produkten zu verbergen, gib hier Produkt-"
90
+ "IDs ein."
91
+
92
+ #: includes/class-wcj-product-tabs.php:635
93
+ msgid "Comma separated PRODUCT IDs to SHOW this tab"
94
+ msgstr "Komma getrennte PRODUKT-IDs, um diese Registerkarte zu aktivieren"
95
+
96
+ #: includes/class-wcj-product-tabs.php:636
97
+ msgid "To show this tab only for some products, enter product IDs here."
98
+ msgstr ""
99
+ "Um diese Registerkarte nur für einige Produkte anzuzeigen, gib hier Produkt-"
100
+ "IDs ein."
101
+
102
+ #: includes/class-wcj-product-tabs.php:644
103
+ msgid "Comma separated CATEGORY IDs to HIDE this tab"
104
+ msgstr "Komma getrennt KATEGORIE-IDs, um diese Registerkarte zu verbergen"
105
+
106
+ #: includes/class-wcj-product-tabs.php:645
107
+ msgid "To hide this tab from some categories, enter category IDs here."
108
+ msgstr ""
109
+ "Um diese Registerkarte aus einigen Kategorien zu verbergen, gib hier "
110
+ "Kategorie-IDs ein."
111
+
112
+ #: includes/class-wcj-product-tabs.php:653
113
+ msgid "Comma separated CATEGORY IDs to SHOW this tab"
114
+ msgstr "Komma getrennt KATEGORIE-IDs, um diese Registerkarte zu aktivieren"
115
+
116
+ #: includes/class-wcj-product-tabs.php:654
117
+ msgid "To show this tab only for some categories, enter category IDs here."
118
+ msgstr ""
119
+ "Um diese Registerkarte nur für einige Kategorien anzuzeigen, gib hier "
120
+ "Kategorie-IDs ein."
121
+
122
+ #: includes/currencies/wcj-currencies.php:63
123
+ msgid "Guyanese dollar"
124
+ msgstr "Guyanese dollar"
125
+
126
+ #: includes/currencies/wcj-currencies.php:64
127
+ msgid "Gambian dalasi"
128
+ msgstr "Gambian dalasi"
129
+
130
+ #: includes/currencies/wcj-currencies.php:65
131
+ msgid "Guinean franc"
132
+ msgstr "Guinean franc"
133
+
134
+ #: includes/currencies/wcj-currencies.php:66
135
+ #: includes/currencies/wcj-currencies.php:169
136
+ msgid "Central African CFA franc"
137
+ msgstr "Central African CFA franc"
138
+
139
+ #: includes/currencies/wcj-currencies.php:67
140
+ msgid "Guatemalan quetzal"
141
+ msgstr "Guatemalan quetzal"
142
+
143
+ #: includes/currencies/wcj-currencies.php:68
144
+ msgid "Hong Kong Dollar"
145
+ msgstr "Hong Kong Dollar"
146
+
147
+ #: includes/currencies/wcj-currencies.php:69
148
+ msgid "Honduran lempira"
149
+ msgstr "Honduran lempira"
150
+
151
+ #: includes/currencies/wcj-currencies.php:70
152
+ msgid "Croatia kuna"
153
+ msgstr "Croatia kuna"
154
+
155
+ #: includes/currencies/wcj-currencies.php:71
156
+ msgid "Haitian gourde"
157
+ msgstr "Haitian gourde"
158
+
159
+ #: includes/currencies/wcj-currencies.php:72
160
+ msgid "Hungarian Forint"
161
+ msgstr "Hungarian Forint"
162
+
163
+ #: includes/currencies/wcj-currencies.php:73
164
+ msgid "Indonesia Rupiah"
165
+ msgstr "Indonesia Rupiah"
166
+
167
+ #: includes/currencies/wcj-currencies.php:74
168
+ msgid "Israeli Shekel"
169
+ msgstr "Israeli Shekel"
170
+
171
+ #: includes/currencies/wcj-currencies.php:75
172
+ msgid "Indian Rupee"
173
+ msgstr "Indian Rupee"
174
+
175
+ #: includes/currencies/wcj-currencies.php:76
176
+ msgid "Iraqi dinar"
177
+ msgstr "Iraqi dinar"
178
+
179
+ #: includes/currencies/wcj-currencies.php:77
180
+ msgid "Iranian rial"
181
+ msgstr "Iranian rial"
182
+
183
+ #: includes/currencies/wcj-currencies.php:78
184
+ msgid "Icelandic krona"
185
+ msgstr "Icelandic krona"
186
+
187
+ #: includes/currencies/wcj-currencies.php:79
188
+ msgid "Yemeni rial"
189
+ msgstr "Yemeni rial"
190
+
191
+ #: includes/currencies/wcj-currencies.php:80
192
+ msgid "Jamaican dollar"
193
+ msgstr "Jamaican dollar"
194
+
195
+ #: includes/currencies/wcj-currencies.php:81
196
+ msgid "Jordanian dinar"
197
+ msgstr "Jordanian dinar"
198
+
199
+ #: includes/currencies/wcj-currencies.php:82
200
+ msgid "Japanese Yen"
201
+ msgstr "Japanese Yen"
202
+
203
+ #: includes/currencies/wcj-currencies.php:84
204
+ msgid "Kyrgyzstani som"
205
+ msgstr "Kyrgyzstani som"
206
+
207
+ #: includes/currencies/wcj-currencies.php:85
208
+ msgid "Cambodian riel"
209
+ msgstr "Cambodian riel"
210
+
211
+ #: includes/currencies/wcj-currencies.php:86
212
+ msgid "Lao kip"
213
+ msgstr "Lao kip"
214
+
215
+ #: includes/currencies/wcj-currencies.php:87
216
+ msgid "Cayman Islands dollar"
217
+ msgstr "Cayman Islands dollar"
218
+
219
+ #: includes/currencies/wcj-currencies.php:88
220
+ msgid "Comorian franc"
221
+ msgstr "Comorian franc"
222
+
223
+ #: includes/currencies/wcj-currencies.php:89
224
+ msgid "North Korean won"
225
+ msgstr "Nordkoreanischer Won"
226
+
227
+ #: includes/currencies/wcj-currencies.php:90
228
+ msgid "South Korean Won"
229
+ msgstr "Südkoreanischer Won"
230
+
231
+ #: includes/currencies/wcj-currencies.php:91
232
+ msgid "Kuwaiti dinar"
233
+ msgstr "Kuwaitischer Dinar"
234
+
235
+ #: includes/currencies/wcj-currencies.php:92
236
+ msgid "Kazakhstani tenge"
237
+ msgstr "Kasachstanischer Tenge"
238
+
239
+ #: includes/currencies/wcj-currencies.php:93
240
+ msgid "Lao Kip"
241
+ msgstr "Lao Kip"
242
+
243
+ #: includes/currencies/wcj-currencies.php:94
244
+ msgid "Lebanese lira"
245
+ msgstr "Libanesische Lira"
246
+
247
+ #: includes/currencies/wcj-currencies.php:95
248
+ msgid "Libyan dinar"
249
+ msgstr "Lybischer DInar"
250
+
251
+ #: includes/currencies/wcj-currencies.php:96
252
+ msgid "Sri Lankan rupee"
253
+ msgstr "Sri Lanka Rupie"
254
+
255
+ #: includes/currencies/wcj-currencies.php:97
256
+ msgid "Liberian dollar"
257
+ msgstr "Liberianischer Dollar"
258
+
259
+ #: includes/currencies/wcj-currencies.php:98
260
+ msgid "Lesotho loti"
261
+ msgstr "Lesotho loti"
262
+
263
+ #: includes/currencies/wcj-currencies.php:99
264
+ msgid "Lithuanian litas"
265
+ msgstr "Litauische Litas"
266
+
267
+ #: includes/currencies/wcj-currencies.php:100
268
+ msgid "Latvian lats"
269
+ msgstr "Lettische Lats"
270
+
271
+ #: includes/currencies/wcj-currencies.php:101
272
+ msgid "Moroccan dirham"
273
+ msgstr "Marokkanischer Dirham"
274
+
275
+ #: includes/currencies/wcj-currencies.php:102
276
+ msgid "Moldovan leu"
277
+ msgstr "Moldawischer Leu"
278
+
279
+ #: includes/currencies/wcj-currencies.php:103
280
+ msgid "Malagasy ariary"
281
+ msgstr "Madagassische Arien"
282
+
283
+ #: includes/currencies/wcj-currencies.php:104
284
+ msgid "Malaysian ringgit"
285
+ msgstr "Malaysischer Ringgit"
286
+
287
+ #: includes/currencies/wcj-currencies.php:105
288
+ msgid "Macedonian denar"
289
+ msgstr "Mazedonischer Dinar"
290
+
291
+ #: includes/currencies/wcj-currencies.php:106
292
+ msgid "Myanma kyat"
293
+ msgstr "Myanma Kyat"
294
+
295
+ #: includes/currencies/wcj-currencies.php:107
296
+ msgid "Mongolian tugrik"
297
+ msgstr "Mongolischer Tugrik"
298
+
299
+ #: includes/currencies/wcj-currencies.php:108
300
+ msgid "Macanese pataca"
301
+ msgstr "Macanese pataca"
302
+
303
+ #: includes/currencies/wcj-currencies.php:109
304
+ msgid "Mauritanian ouguiya"
305
+ msgstr "Mauritanian ouguiya"
306
+
307
+ #: includes/currencies/wcj-currencies.php:110
308
+ msgid "Mauritian rupee"
309
+ msgstr "Mauritian rupee"
310
+
311
+ #: includes/currencies/wcj-currencies.php:111
312
+ msgid "Maldivian rufiyaa"
313
+ msgstr "Maldivian rufiyaa"
314
+
315
+ #: includes/currencies/wcj-currencies.php:112
316
+ msgid "Malawian kwacha"
317
+ msgstr "Malawian kwacha"
318
+
319
+ #: includes/currencies/wcj-currencies.php:113
320
+ msgid "Mexican Peso"
321
+ msgstr "Mexican Peso"
322
+
323
+ #: includes/currencies/wcj-currencies.php:114
324
+ msgid "Malaysian Ringgits"
325
+ msgstr "Malaysian Ringgits"
326
+
327
+ #: includes/currencies/wcj-currencies.php:115
328
+ msgid "Mozambican metical"
329
+ msgstr "Mozambican metical"
330
+
331
+ #: includes/currencies/wcj-currencies.php:116
332
+ msgid "Namibian dollar"
333
+ msgstr "Namibian dollar"
334
+
335
+ #: includes/currencies/wcj-currencies.php:117
336
+ msgid "Nigerian Naira"
337
+ msgstr "Nigerian Naira"
338
+
339
+ #: includes/currencies/wcj-currencies.php:118
340
+ msgid "Nicaraguan cordoba"
341
+ msgstr "Nicaraguan cordoba"
342
+
343
+ #: includes/currencies/wcj-currencies.php:119
344
+ msgid "Norwegian Krone"
345
+ msgstr "Norwegian Krone"
346
+
347
+ #: includes/currencies/wcj-currencies.php:120
348
+ msgid "Nepali Rupee"
349
+ msgstr "Nepali Rupee"
350
+
351
+ #: includes/currencies/wcj-currencies.php:121
352
+ msgid "New Zealand Dollar"
353
+ msgstr "New Zealand Dollar"
354
+
355
+ #: includes/currencies/wcj-currencies.php:122
356
+ msgid "Omani rial"
357
+ msgstr "Omani rial"
358
+
359
+ #: includes/currencies/wcj-currencies.php:123
360
+ msgid "Panamanian balboa"
361
+ msgstr "Panamanian balboa"
362
+
363
+ #: includes/currencies/wcj-currencies.php:124
364
+ msgid "Peruvian nuevo sol"
365
+ msgstr "Peruvian nuevo sol"
366
+
367
+ #: includes/currencies/wcj-currencies.php:125
368
+ msgid "Papua New Guinean kina"
369
+ msgstr "Papua New Guinean kina"
370
+
371
+ #: includes/currencies/wcj-currencies.php:126
372
+ msgid "Philippine Pesos"
373
+ msgstr "Philippine Pesos"
374
+
375
+ #: includes/currencies/wcj-currencies.php:127
376
+ msgid "Paraguayan guarani"
377
+ msgstr "Paraguayan guarani"
378
+
379
+ #: includes/currencies/wcj-currencies.php:128
380
+ msgid "Pakistani Rupee"
381
+ msgstr "Pakistani Rupee"
382
+
383
+ #: includes/currencies/wcj-currencies.php:129
384
+ msgid "Polish Zloty"
385
+ msgstr "Polish Zloty"
386
+
387
+ #: includes/currencies/wcj-currencies.php:130
388
+ msgid "Paraguayan Guaraní"
389
+ msgstr "Paraguayan Guaraní"
390
+
391
+ #: includes/currencies/wcj-currencies.php:131
392
+ msgid "Qatari riyal"
393
+ msgstr "Qatari riyal"
394
+
395
+ #: includes/currencies/wcj-currencies.php:132
396
+ msgid "Chinese renminbi"
397
+ msgstr "Chinese renminbi"
398
+
399
+ #: includes/currencies/wcj-currencies.php:133
400
+ msgid "Romanian Leu"
401
+ msgstr "Romanian Leu"
402
+
403
+ #: includes/currencies/wcj-currencies.php:134
404
+ msgid "Serbian dinar"
405
+ msgstr "Serbian dinar"
406
+
407
+ #: includes/currencies/wcj-currencies.php:135
408
+ msgid "Russian Ruble"
409
+ msgstr "Russian Ruble"
410
+
411
+ #: includes/currencies/wcj-currencies.php:136
412
+ msgid "Rwandan franc"
413
+ msgstr "Rwandan franc"
414
+
415
+ #: includes/currencies/wcj-currencies.php:137
416
+ msgid "Saudi Riyal"
417
+ msgstr "Saudi Riyal"
418
+
419
+ #: includes/currencies/wcj-currencies.php:138
420
+ msgid "Solomon Islands dollar"
421
+ msgstr "Solomon Islands dollar"
422
+
423
+ #: includes/currencies/wcj-currencies.php:139
424
+ msgid "Seychellois rupee"
425
+ msgstr "Seychellois rupee"
426
+
427
+ #: includes/currencies/wcj-currencies.php:140
428
+ msgid "Sudanese pound"
429
+ msgstr "Sudanese pound"
430
+
431
+ #: includes/currencies/wcj-currencies.php:141
432
+ msgid "Swedish Krona"
433
+ msgstr "Swedish Krona"
434
+
435
+ #: includes/currencies/wcj-currencies.php:142
436
+ msgid "Singapore Dollar"
437
+ msgstr "Singapore Dollar"
438
+
439
+ #: includes/currencies/wcj-currencies.php:143
440
+ msgid "Saint Helena pound"
441
+ msgstr "Saint Helena pound"
442
+
443
+ #: includes/currencies/wcj-currencies.php:144
444
+ msgid "Syrian pound"
445
+ msgstr "Syrian pound"
446
+
447
+ #: includes/currencies/wcj-currencies.php:145
448
+ msgid "Slovak koruna"
449
+ msgstr "Slovak koruna"
450
+
451
+ #: includes/currencies/wcj-currencies.php:146
452
+ msgid "Sierra Leonean leone"
453
+ msgstr "Sierra Leonean leone"
454
+
455
+ #: includes/currencies/wcj-currencies.php:147
456
+ msgid "Somali shilling"
457
+ msgstr "Somali shilling"
458
+
459
+ #: includes/currencies/wcj-currencies.php:148
460
+ msgid "Surinamese dollar"
461
+ msgstr "Surinamese dollar"
462
+
463
+ #: includes/currencies/wcj-currencies.php:149
464
+ msgid "Sao Tome and Principe dobra"
465
+ msgstr "Sao Tome and Principe dobra"
466
+
467
+ #: includes/currencies/wcj-currencies.php:150
468
+ msgid "Swazi lilangeni"
469
+ msgstr "Swazi lilangeni"
470
+
471
+ #: includes/currencies/wcj-currencies.php:151
472
+ msgid "Thai Baht"
473
+ msgstr "Thai Baht"
474
+
475
+ #: includes/currencies/wcj-currencies.php:152
476
+ msgid "Tajikistani somoni"
477
+ msgstr "Tajikistani somoni"
478
+
479
+ #: includes/currencies/wcj-currencies.php:153
480
+ msgid "Turkmen manat"
481
+ msgstr "Turkmen manat"
482
+
483
+ #: includes/currencies/wcj-currencies.php:154
484
+ msgid "Tunisian dinar"
485
+ msgstr "Tunisian dinar"
486
+
487
+ #: includes/currencies/wcj-currencies.php:155
488
+ msgid "Paanga"
489
+ msgstr "Paanga"
490
+
491
+ #: includes/currencies/wcj-currencies.php:156
492
+ msgid "Turkish Lira"
493
+ msgstr "Turkish Lira"
494
+
495
+ #: includes/currencies/wcj-currencies.php:157
496
+ msgid "Trinidad and Tobago dollar"
497
+ msgstr "Trinidad and Tobago dollar"
498
+
499
+ #: includes/currencies/wcj-currencies.php:158
500
+ msgid "Taiwan New Dollars"
501
+ msgstr "Taiwan New Dollars"
502
+
503
+ #: includes/currencies/wcj-currencies.php:159
504
+ msgid "Tanzanian shilling"
505
+ msgstr "Tanzanian shilling"
506
+
507
+ #: includes/currencies/wcj-currencies.php:160
508
+ msgid "Ukrainian Hryvnia"
509
+ msgstr "Ukrainian Hryvnia"
510
+
511
+ #: includes/currencies/wcj-currencies.php:161
512
+ msgid "Ugandan shilling"
513
+ msgstr "Ugandan shilling"
514
+
515
+ #: includes/currencies/wcj-currencies.php:162
516
+ msgid "Uruguayan peso"
517
+ msgstr "Uruguayan peso"
518
+
519
+ #: includes/currencies/wcj-currencies.php:163
520
+ msgid "US Dollars"
521
+ msgstr "US Dollars"
522
+
523
+ #: includes/currencies/wcj-currencies.php:164
524
+ msgid "Uzbekistani som"
525
+ msgstr "Uzbekistani som"
526
+
527
+ #: includes/currencies/wcj-currencies.php:165
528
+ msgid "Venezuelan bolivar"
529
+ msgstr "Venezuelan bolivar"
530
+
531
+ #: includes/currencies/wcj-currencies.php:166
532
+ msgid "Vietnamese Dong"
533
+ msgstr "Vietnamese Dong"
534
+
535
+ #: includes/currencies/wcj-currencies.php:167
536
+ msgid "Vanuatu vatu"
537
+ msgstr "Vanuatu vatu"
538
+
539
+ #: includes/currencies/wcj-currencies.php:168
540
+ msgid "Samoan tala"
541
+ msgstr "Samoan tala"
542
+
543
+ #: includes/currencies/wcj-currencies.php:170
544
+ msgid "East Caribbean dollar"
545
+ msgstr "East Caribbean dollar"
546
+
547
+ #: includes/currencies/wcj-currencies.php:172
548
+ msgid "West African CFA franc"
549
+ msgstr "West African CFA franc"
550
+
551
+ #: includes/currencies/wcj-currencies.php:173
552
+ msgid "CFP franc"
553
+ msgstr "CFP franc"
554
+
555
+ #: includes/currencies/wcj-currencies.php:174
556
+ msgid "South African rand"
557
+ msgstr "South African rand"
558
+
559
+ #: includes/currencies/wcj-currencies.php:175
560
+ msgid "Zambian kwacha"
561
+ msgstr "Zambian kwacha"
562
+
563
+ #: includes/currencies/wcj-currencies.php:176
564
+ msgid "Zimbabwean dollar"
565
+ msgstr "Zimbabwean dollar"
566
+
567
+ #: includes/emails/class-wc-email-wcj-custom.php:333
568
+ msgid "Plain text template"
569
+ msgstr "Reiner Text-Vorlage"
570
+
571
+ #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:178
572
+ msgid "Cron job: exchange rates successfully updated"
573
+ msgstr "Cron Job: Wechselkurse erfolgreich aktualisiert"
574
+
575
+ #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:180
576
+ msgid "Cron job: exchange rates not updated, as currency_from == currency_to"
577
+ msgstr ""
578
+ "Cron Job: Wechselkurse nicht aktualisiert, als currency_from == currency_to"
579
+
580
+ #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:183
581
+ msgid "Cron job: exchange rates update failed"
582
+ msgstr "Cron Job: Wechselkursaktualisierung fehlgeschlagen"
583
+
584
+ #: includes/export/class-wcj-fields-helper.php:79
585
+ msgid "Login"
586
+ msgstr "Login"
587
+
588
+ #: includes/export/class-wcj-fields-helper.php:80
589
+ msgid "Nicename"
590
+ msgstr "Nicename"
591
+
592
+ #: includes/export/class-wcj-fields-helper.php:81
593
+ #: includes/export/class-wcj-fields-helper.php:295
594
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:163
595
+ msgid "URL"
596
+ msgstr "URL"
597
+
598
+ #: includes/export/class-wcj-fields-helper.php:83
599
+ msgid "Display Name"
600
+ msgstr "Anzeigename"
601
+
602
+ #: includes/export/class-wcj-fields-helper.php:115
603
+ #: includes/export/class-wcj-fields-helper.php:198
604
+ msgid "Order Time"
605
+ msgstr "Bestellzeit"
606
+
607
+ #: includes/export/class-wcj-fields-helper.php:143
608
+ msgid "Item Name"
609
+ msgstr "Posten Name"
610
+
611
+ #: includes/export/class-wcj-fields-helper.php:144
612
+ msgid "Item Meta"
613
+ msgstr "Posten Meta"
614
+
615
+ #: includes/export/class-wcj-fields-helper.php:145
616
+ msgid "Item Variation Meta"
617
+ msgstr "Posten Variation-Meta"
618
+
619
+ #: includes/export/class-wcj-fields-helper.php:146
620
+ msgid "Item Quantity"
621
+ msgstr "Posten Menge"
622
+
623
+ #: includes/export/class-wcj-fields-helper.php:148
624
+ msgid "Item Product ID"
625
+ msgstr "Posten Produkt-ID"
626
+
627
+ #: includes/export/class-wcj-fields-helper.php:149
628
+ msgid "Item Variation ID"
629
+ msgstr "Posten Variations-ID"
630
+
631
+ #: includes/export/class-wcj-fields-helper.php:150
632
+ msgid "Item Line Subtotal"
633
+ msgstr "Posten Zwischensumme"
634
+
635
+ #: includes/export/class-wcj-fields-helper.php:151
636
+ msgid "Item Line Total"
637
+ msgstr "Posten Gesamtsumme"
638
+
639
+ #: includes/export/class-wcj-fields-helper.php:156
640
+ msgid "Item Product Input Fields"
641
+ msgstr "Posten Produkt-Eingabefelder"
642
+
643
+ #: includes/export/class-wcj-fields-helper.php:201
644
+ msgid "Order Items Product Input Fields"
645
+ msgstr "Bestell-Posten Produkt-Eingabefelder"
646
+
647
+ #: includes/export/class-wcj-fields-helper.php:284
648
+ msgid "Total Stock"
649
+ msgstr "Gesamtbestand"
650
+
651
+ #: includes/export/class-wcj-fields-helper.php:285
652
+ msgid "Stock Quantity"
653
+ msgstr "Bestandsmenge"
654
+
655
+ #: includes/export/class-wcj-fields-helper.php:296
656
+ msgid "Shipping Class"
657
+ msgstr "Versandklasse"
658
+
659
+ #: includes/export/class-wcj-fields-helper.php:297
660
+ msgid "Shipping Class ID"
661
+ msgstr "Versandklassen-ID"
662
+
663
+ #: includes/export/class-wcj-fields-helper.php:298
664
+ msgid "Width"
665
+ msgstr "Breite"
666
+
667
+ #: includes/export/class-wcj-fields-helper.php:299
668
+ msgid "Length"
669
+ msgstr "Länge"
670
+
671
+ #: includes/export/class-wcj-fields-helper.php:300
672
+ msgid "Height"
673
+ msgstr "Höhe"
674
+
675
+ #: includes/export/class-wcj-fields-helper.php:301
676
+ msgid "Weight"
677
+ msgstr "Gewicht"
678
+
679
+ #: includes/export/class-wcj-fields-helper.php:302
680
+ msgid "Downloadable"
681
+ msgstr "Downloadbar"
682
+
683
+ #: includes/export/class-wcj-fields-helper.php:303
684
+ msgid "Virtual"
685
+ msgstr "Virtuell"
686
+
687
+ #: includes/export/class-wcj-fields-helper.php:304
688
+ msgid "Sold Individually"
689
+ msgstr "Einzeln verkauft"
690
+
691
+ #: includes/export/class-wcj-fields-helper.php:307
692
+ msgid "Manage Stock"
693
+ msgstr "Bestandsverwaltung"
694
+
695
+ #: includes/export/class-wcj-fields-helper.php:308
696
+ msgid "Stock Status"
697
+ msgstr "Bestandstatus"
698
+
699
+ #: includes/export/class-wcj-fields-helper.php:309
700
+ msgid "Backorders"
701
+ msgstr "Lieferrückstand"
702
+
703
+ #: includes/export/class-wcj-fields-helper.php:310
704
+ msgid "Featured"
705
+ msgstr "Hervorgehoben"
706
+
707
+ #: includes/export/class-wcj-fields-helper.php:311
708
+ msgid "Visibility"
709
+ msgstr "Sichtbarkeit"
710
+
711
+ #: includes/export/class-wcj-fields-helper.php:314
712
+ msgid "Display Price"
713
+ msgstr "Preis anzeigen"
714
+
715
+ #: includes/export/class-wcj-fields-helper.php:315
716
+ msgid "Average Rating"
717
+ msgstr "Durchschnittliche Bewertung"
718
+
719
+ #: includes/export/class-wcj-fields-helper.php:316
720
+ msgid "Rating Count"
721
+ msgstr "Bewertungs-Zähler"
722
+
723
+ #: includes/export/class-wcj-fields-helper.php:317
724
+ msgid "Review Count"
725
+ msgstr "Rezension-Zähler"
726
+
727
+ #: includes/export/class-wcj-fields-helper.php:320
728
+ msgid "Dimensions"
729
+ msgstr "Dimensionen"
730
+
731
+ #: includes/export/class-wcj-fields-helper.php:321
732
+ msgid "Formatted Name"
733
+ msgstr "Formatierter Name"
734
+
735
+ #: includes/export/class-wcj-fields-helper.php:322
736
+ msgid "Availability"
737
+ msgstr "Verfügbarkeit"
738
+
739
+ #: includes/export/class-wcj-fields-helper.php:323
740
+ msgid "Availability Class"
741
+ msgstr "Verfügbarkeitsklasse"
742
+
743
+ #: includes/functions/wcj-country-functions.php:114
744
+ msgid "&#197;land Islands"
745
+ msgstr "&#197;land Islands"
746
+
747
+ #: includes/functions/wcj-country-functions.php:120
748
+ msgid "Antarctica"
749
+ msgstr "Antarctica"
750
+
751
+ #: includes/functions/wcj-country-functions.php:134
752
+ msgid "Belau"
753
+ msgstr "Belau"
754
+
755
+ #: includes/functions/wcj-country-functions.php:140
756
+ msgid "Bonaire, Saint Eustatius and Saba"
757
+ msgstr "Bonaire, Saint Eustatius and Saba"
758
+
759
+ #: includes/functions/wcj-country-functions.php:143
760
+ msgid "Bouvet Island"
761
+ msgstr "Bouvet Island"
762
+
763
+ #: includes/functions/wcj-country-functions.php:161
764
+ msgid "Cocos (Keeling) Islands"
765
+ msgstr "Cocos (Keeling) Islands"
766
+
767
+ #: includes/functions/wcj-country-functions.php:164
768
+ msgid "Congo (Brazzaville)"
769
+ msgstr "Congo (Brazzaville)"
770
+
771
+ #: includes/functions/wcj-country-functions.php:165
772
+ msgid "Congo (Kinshasa)"
773
+ msgstr "Congo (Kinshasa)"
774
+
775
+ #: includes/functions/wcj-country-functions.php:166
776
+ msgid "Cook Islands"
777
+ msgstr "Cook Islands"
778
+
779
+ #: includes/functions/wcj-country-functions.php:170
780
+ msgid "Cura&Ccedil;ao"
781
+ msgstr "Cura&Ccedil;ao"
782
+
783
+ #: includes/functions/wcj-country-functions.php:184
784
+ msgid "Falkland Islands"
785
+ msgstr "Falkland Islands"
786
+
787
+ #: includes/functions/wcj-country-functions.php:194
788
+ msgid "Georgia"
789
+ msgstr "Georgia"
790
+
791
+ #: includes/functions/wcj-country-functions.php:197
792
+ msgid "Gibraltar"
793
+ msgstr "Gibraltar"
794
+
795
+ #: includes/functions/wcj-country-functions.php:203
796
+ msgid "Guernsey"
797
+ msgstr "Guernsey"
798
+
799
+ #: includes/functions/wcj-country-functions.php:208
800
+ msgid "Heard Island and McDonald Islands"
801
+ msgstr "Heard Island and McDonald Islands"
802
+
803
+ #: includes/functions/wcj-country-functions.php:217
804
+ msgid "Republic of Ireland"
805
+ msgstr "Republic of Ireland"
806
+
807
+ #: includes/functions/wcj-country-functions.php:218
808
+ msgid "Isle of Man"
809
+ msgstr "Isle of Man"
810
+
811
+ #: includes/functions/wcj-country-functions.php:222
812
+ msgid "Jamaica"
813
+ msgstr "Jamaica"
814
+
815
+ #: includes/functions/wcj-country-functions.php:224
816
+ msgid "Jersey"
817
+ msgstr "Jersey"
818
+
819
+ #: includes/functions/wcj-country-functions.php:227
820
+ msgid "Kenya"
821
+ msgstr "Kenya"
822
+
823
+ #: includes/functions/wcj-country-functions.php:228
824
+ msgid "Kiribati"
825
+ msgstr "Kiribati"
826
+
827
+ #: includes/functions/wcj-country-functions.php:231
828
+ msgid "Laos"
829
+ msgstr "Laos"
830
+
831
+ #: includes/functions/wcj-country-functions.php:234
832
+ msgid "Lesotho"
833
+ msgstr "Lesotho"
834
+
835
+ #: includes/functions/wcj-country-functions.php:240
836
+ msgid "Macao S.A.R., China"
837
+ msgstr "Macao S.A.R., China"
838
+
839
+ #: includes/functions/wcj-country-functions.php:247
840
+ msgid "Malta"
841
+ msgstr "Malta"
842
+
843
+ #: includes/functions/wcj-country-functions.php:252
844
+ msgid "Mayotte"
845
+ msgstr "Mayotte"
846
+
847
+ #: includes/functions/wcj-country-functions.php:271
848
+ msgid "Niger"
849
+ msgstr "Niger"
850
+
851
+ #: includes/functions/wcj-country-functions.php:272
852
+ msgid "Nigeria"
853
+ msgstr "Nigeria"
854
+
855
+ #: includes/functions/wcj-country-functions.php:273
856
+ msgid "Niue"
857
+ msgstr "Niue"
858
+
859
+ #: includes/functions/wcj-country-functions.php:274
860
+ msgid "Norfolk Island"
861
+ msgstr "Norfolk Island"
862
+
863
+ #: includes/functions/wcj-country-functions.php:278
864
+ msgid "Pakistan"
865
+ msgstr "Pakistan"
866
+
867
+ #: includes/functions/wcj-country-functions.php:279
868
+ msgid "Palestinian Territory"
869
+ msgstr "Palestinian Territory"
870
+
871
+ #: includes/functions/wcj-country-functions.php:280
872
+ msgid "Panama"
873
+ msgstr "Panama"
874
+
875
+ #: includes/functions/wcj-country-functions.php:282
876
+ msgid "Paraguay"
877
+ msgstr "Paraguay"
878
+
879
+ #: includes/functions/wcj-country-functions.php:285
880
+ msgid "Pitcairn"
881
+ msgstr "Pitcairn"
882
+
883
+ #: includes/functions/wcj-country-functions.php:289
884
+ msgid "Reunion"
885
+ msgstr "Reunion"
886
+
887
+ #: includes/functions/wcj-country-functions.php:293
888
+ msgid "Saint Barth&eacute;lemy"
889
+ msgstr "Saint Barth&eacute;lemy"
890
+
891
+ #: includes/functions/wcj-country-functions.php:295
892
+ msgid "Saint Kitts and Nevis"
893
+ msgstr "Saint Kitts and Nevis"
894
+
895
+ #: includes/functions/wcj-country-functions.php:296
896
+ msgid "Saint Lucia"
897
+ msgstr "Saint Lucia"
898
+
899
+ #: includes/functions/wcj-country-functions.php:297
900
+ msgid "Saint Martin (French part)"
901
+ msgstr "Saint Martin (French part)"
902
+
903
+ #: includes/functions/wcj-country-functions.php:298
904
+ msgid "Saint Martin (Dutch part)"
905
+ msgstr "Saint Martin (Dutch part)"
906
+
907
+ #: includes/functions/wcj-country-functions.php:299
908
+ msgid "Saint Pierre and Miquelon"
909
+ msgstr "Saint Pierre and Miquelon"
910
+
911
+ #: includes/functions/wcj-country-functions.php:301
912
+ msgid "San Marino"
913
+ msgstr "San Marino"
914
+
915
+ #: includes/functions/wcj-country-functions.php:302
916
+ msgid "S&atilde;o Tom&eacute; and Pr&iacute;ncipe"
917
+ msgstr "S&atilde;o Tom&eacute; and Pr&iacute;ncipe"
918
+
919
+ #: includes/functions/wcj-country-functions.php:304
920
+ msgid "Senegal"
921
+ msgstr "Senegal"
922
+
923
+ #: includes/functions/wcj-country-functions.php:307
924
+ msgid "Sierra Leone"
925
+ msgstr "Sierra Leone"
926
+
927
+ #: includes/functions/wcj-country-functions.php:312
928
+ msgid "Somalia"
929
+ msgstr "Somalia"
930
+
931
+ #: includes/functions/wcj-country-functions.php:314
932
+ msgid "South Georgia/Sandwich Islands"
933
+ msgstr "South Georgia/Sandwich Islands"
934
+
935
+ #: includes/functions/wcj-country-functions.php:316
936
+ msgid "South Sudan"
937
+ msgstr "South Sudan"
938
+
939
+ #: includes/functions/wcj-country-functions.php:318
940
+ msgid "Sri Lanka"
941
+ msgstr "Sri Lanka"
942
+
943
+ #: includes/functions/wcj-country-functions.php:319
944
+ msgid "Sudan"
945
+ msgstr "Sudan"
946
+
947
+ #: includes/functions/wcj-country-functions.php:320
948
+ msgid "Suriname"
949
+ msgstr "Suriname"
950
+
951
+ #: includes/functions/wcj-country-functions.php:321
952
+ msgid "Svalbard and Jan Mayen"
953
+ msgstr "Svalbard and Jan Mayen"
954
+
955
+ #: includes/functions/wcj-country-functions.php:322
956
+ msgid "Swaziland"
957
+ msgstr "Swaziland"
958
+
959
+ #: includes/functions/wcj-country-functions.php:327
960
+ msgid "Tajikistan"
961
+ msgstr "Tajikistan"
962
+
963
+ #: includes/functions/wcj-country-functions.php:330
964
+ msgid "Timor-Leste"
965
+ msgstr "Timor-Leste"
966
+
967
+ #: includes/functions/wcj-country-functions.php:331
968
+ msgid "Togo"
969
+ msgstr "Togo"
970
+
971
+ #: includes/functions/wcj-country-functions.php:332
972
+ msgid "Tokelau"
973
+ msgstr "Tokelau"
974
+
975
+ #: includes/functions/wcj-country-functions.php:333
976
+ msgid "Tonga"
977
+ msgstr "Tonga"
978
+
979
+ #: includes/functions/wcj-country-functions.php:337
980
+ msgid "Turkmenistan"
981
+ msgstr "Turkmenistan"
982
+
983
+ #: includes/functions/wcj-country-functions.php:339
984
+ msgid "Tuvalu"
985
+ msgstr "Tuvalu"
986
+
987
+ #: includes/functions/wcj-country-functions.php:340
988
+ msgid "Uganda"
989
+ msgstr "Uganda"
990
+
991
+ #: includes/functions/wcj-country-functions.php:343
992
+ msgid "United Kingdom (UK)"
993
+ msgstr "United Kingdom (UK)"
994
+
995
+ #: includes/functions/wcj-country-functions.php:344
996
+ msgid "United States (US)"
997
+ msgstr "United States (US)"
998
+
999
+ #: includes/functions/wcj-country-functions.php:347
1000
+ msgid "Vanuatu"
1001
+ msgstr "Vanuatu"
1002
+
1003
+ #: includes/functions/wcj-country-functions.php:350
1004
+ msgid "Vietnam"
1005
+ msgstr "Vietnam"
1006
+
1007
+ #: includes/functions/wcj-country-functions.php:352
1008
+ msgid "Western Sahara"
1009
+ msgstr "Western Sahara"
1010
+
1011
+ #: includes/functions/wcj-functions.php:628
1012
+ msgid "Before shipping calculator"
1013
+ msgstr "Vor Versandrechner"
1014
+
1015
+ #: includes/functions/wcj-functions.php:629
1016
+ msgid "After shipping calculator"
1017
+ msgstr "Nach Versandrechner"
1018
+
1019
+ #: includes/functions/wcj-functions.php:898
1020
+ #: includes/functions/wcj-functions.php:917
1021
+ msgid "Guest"
1022
+ msgstr "Gast"
1023
+
1024
+ #: includes/functions/wcj-invoicing-functions.php:19
1025
+ msgid "Invoice"
1026
+ msgstr "Rechnung"
1027
+
1028
+ #: includes/functions/wcj-invoicing-functions.php:20
1029
+ msgid "Invoices"
1030
+ msgstr "Rechnungen"
1031
+
1032
+ #: includes/functions/wcj-invoicing-functions.php:27
1033
+ msgid "Proforma Invoice"
1034
+ msgstr "Proforma-Rechnung"
1035
+
1036
+ #: includes/functions/wcj-invoicing-functions.php:28
1037
+ msgid "Proforma Invoices"
1038
+ msgstr "Proforma-Rechnungen"
1039
+
1040
+ #: includes/functions/wcj-invoicing-functions.php:35
1041
+ msgid "Packing Slip"
1042
+ msgstr "Verpackungsschein"
1043
+
1044
+ #: includes/functions/wcj-invoicing-functions.php:43
1045
+ msgid "Credit Note"
1046
+ msgstr "Gutschrift"
1047
+
1048
+ #: includes/functions/wcj-invoicing-functions.php:44
1049
+ msgid "Credit Notes"
1050
+ msgstr "Gutschriften"
1051
+
1052
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:70
1053
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:115
1054
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:84
1055
+ msgid "This controls the title which the user sees during checkout."
1056
+ msgstr "Dies steuert den Titel, den der Benutzer während der Kasse sieht."
1057
+
1058
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:79
1059
+ msgid "You can add input fields with [wcj_input_field] shortcode."
1060
+ msgstr "Du kannst Eingabefelder mit [wcj_input_field] Shortcode hinzufügen."
1061
+
1062
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:87
1063
+ msgid "Instructions that will be added to the thank you page."
1064
+ msgstr "Instruktionen, die dem Dankeschön hinzugefügt werden."
1065
+
1066
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:93
1067
+ msgid "Email Instructions"
1068
+ msgstr "Email-Instruktionen"
1069
+
1070
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:95
1071
+ msgid "Instructions that will be added to the emails."
1072
+ msgstr "Instruktionen, die den E-Mails hinzugefügt werden."
1073
+
1074
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:101
1075
+ msgid "Icon"
1076
+ msgstr "Icon"
1077
+
1078
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:110
1079
+ msgid "Minimum order amount"
1080
+ msgstr "Mindestbestellmenge"
1081
+
1082
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:119
1083
+ msgid "Enable for shipping methods"
1084
+ msgstr "Für Versandmethoden aktivieren"
1085
+
1086
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:124
1087
+ msgid ""
1088
+ "If gateway is only available for certain shipping methods, set it up here. "
1089
+ "Leave blank to enable for all methods."
1090
+ msgstr ""
1091
+ "Wenn das Gateway nur für bestimmte Versandmethoden verfügbar ist, richte es "
1092
+ "hier ein. Leer lassen, um alle Methoden zu aktivieren."
1093
+
1094
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:127
1095
+ msgid "Select shipping methods"
1096
+ msgstr "Wähle Versandmethoden"
1097
+
1098
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:131
1099
+ msgid "Enable for virtual orders"
1100
+ msgstr "Aktivieren für virtuelle Aufträge"
1101
+
1102
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:132
1103
+ msgid "Enable gateway if the order is virtual"
1104
+ msgstr "Aktiviere das Gateway, wenn der Auftrag virtuell ist"
1105
+
1106
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:146
1107
+ msgid "Send Additional Emails"
1108
+ msgstr "Sende zusätzliche E-Mails"
1109
+
1110
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:147
1111
+ msgid "Send to Admin"
1112
+ msgstr "An Admin senden"
1113
+
1114
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:164
1115
+ msgid "Enter full URL with http(s)."
1116
+ msgstr "Gib die vollständige URL mit http(s) ein"
1117
+
1118
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:165
1119
+ msgid "Optional. Leave blank to use default URL."
1120
+ msgstr "Optional. Leer lassen, um die Standard-URL zu verwenden."
1121
+
1122
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:80
1123
+ msgid "Checkbox: ON"
1124
+ msgstr "Checkbox: AN"
1125
+
1126
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:88
1127
+ msgid "Checkbox: OFF"
1128
+ msgstr "Checkbox: AUS"
1129
+
1130
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:96
1131
+ msgid "Checkbox: Default"
1132
+ msgstr "Checkbox: Voreinstellung"
1133
+
1134
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:108
1135
+ msgid ""
1136
+ "If file is selected, set accepted file types here. E.g.: \".jpg,.jpeg,.png\"."
1137
+ " Leave blank to accept all files"
1138
+ msgstr ""
1139
+ "Wenn die Datei ausgewählt ist, lege hier die akzeptierten Dateitypen fest. z."
1140
+ "B.: \".jpg,.jpeg,.png\". Leer lassen, um alle Dateien zu akzeptieren"
1141
+
1142
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:109
1143
+ msgid "File: Accepted types"
1144
+ msgstr "Datei: Akzeptierte Typen"
1145
+
1146
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:111
1147
+ msgid ".jpg,.jpeg,.png"
1148
+ msgstr ".jpg,.jpeg,.png"
1149
+
1150
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:116
1151
+ msgid ""
1152
+ "If file is selected, set max file size here. Set to zero to accept all files"
1153
+ msgstr ""
1154
+ "Wenn die Datei ausgewählt ist, stelle hier die maximale Dateigröße ein. Auf "
1155
+ "Null setzen, um alle Dateien zu akzeptieren"
1156
+
1157
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:117
1158
+ msgid "File: Max size"
1159
+ msgstr "Datei: Maximale Größe"
1160
+
1161
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:113
1162
+ msgid "Download monthly documents CSV"
1163
+ msgstr "Monatliche Dokumente herunterladen CSV"
1164
+
1165
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:121
1166
+ msgid "Admin - Failed Order"
1167
+ msgstr "Admin - Fehlgeschlagene Bestellung"
1168
+
1169
+ #: includes/reports/wcj-class-reports-sales.php:141
1170
+ msgid "Variation"
1171
+ msgstr "Variation"
1172
+
1173
+ #: includes/reports/wcj-class-reports-sales.php:172
1174
+ msgid "Last Sale"
1175
+ msgstr "Letzter Verkauf"
1176
+
1177
+ #: includes/reports/wcj-class-reports-sales.php:173
1178
+ msgid "Total Sales"
1179
+ msgstr "Gesamtumsatz"
1180
+
1181
+ #: includes/reports/wcj-class-reports-sales.php:227
1182
+ msgid "Filter products"
1183
+ msgstr "Produkte filtern"
1184
+
1185
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:141
1186
+ msgid "Min Weight"
1187
+ msgstr "Mindestgewicht"
1188
+
1189
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:159
1190
+ msgid ""
1191
+ "Press \"Save changes\" and reload the page after you change this number."
1192
+ msgstr ""
1193
+ "Drücke \"Änderungen speichern\" und lade die Seite nach dem Ändern dieser "
1194
+ "Nummer neu."
1195
+
1196
+ #: includes/shortcodes/class-wcj-order-items-shortcodes.php:151
1197
+ msgid "Standard"
1198
+ msgstr "Standard"
1199
+
1200
+ #: woocommerce-jetpack.php:346
1201
+ msgid ""
1202
+ "Please upgrade <strong>Booster Plus for WooCommerce</strong> plugin to "
1203
+ "version %s. Please visit <a href=\"%s\">your account</a> on booster.io to "
1204
+ "download the latest Booster Plus version."
1205
+ msgstr ""
1206
+ "Bitte aktualisiere <strong>Booster Plus for WooCommerce</strong> -Plugin auf "
1207
+ "Version %s. Bitte besuche <a href=\"%s\">Dein Konto</a> auf booster.io um "
1208
+ "die aktuellste Booster Plus Version herunterzuladen."
1209
+
1210
+ #: includes/class-wcj-product-bulk-price-converter.php:152
1211
+ msgid "Original Price"
1212
+ msgstr "Original-Preis"
1213
+
1214
+ #: includes/class-wcj-product-bulk-price-converter.php:153
1215
+ msgid "Modified Price"
1216
+ msgstr "Geänderter Preis"
1217
+
1218
+ #: includes/class-wcj-product-bulk-price-converter.php:206
1219
+ msgid "Multiply value must be above zero."
1220
+ msgstr "Multiplizier-Wert muss über Null liegen."
1221
+
1222
+ #: includes/class-wcj-product-bulk-price-converter.php:213
1223
+ msgid "Prices changed successfully!"
1224
+ msgstr "Preise erfolgreich geändert!"
1225
+
1226
+ #: includes/class-wcj-product-bulk-price-converter.php:238
1227
+ msgid "Multiply all product prices by"
1228
+ msgstr "Multipliziere alle Produktpreise mit"
1229
+
1230
+ #: includes/class-wcj-product-by-user-role.php:88
1231
+ msgid ""
1232
+ "When enabled, module will add new \"Booster: Product Visibility by User "
1233
+ "Role\" meta box to each product's edit page."
1234
+ msgstr ""
1235
+ "Wenn diese Option aktiviert ist, wird das Modul \"Booster: "
1236
+ "Produktsichtbarkeit nach Benutzerrolle\" in die Meta-Box des jeweiligen "
1237
+ "Produkts hinzugefügt."
1238
+
1239
+ #: includes/class-wcj-product-input-fields.php:143
1240
+ msgid ""
1241
+ "You will be able to change this number later as well as define the fields, "
1242
+ "for each product individually, in product's \"Edit\"."
1243
+ msgstr ""
1244
+ "Du kannst diese Nummer später ändern und die Felder für jedes Produkt "
1245
+ "einzeln im Produkt \"Bearbeiten\" definieren."
1246
+
1247
+ #: includes/class-wcj-product-input-fields.php:217
1248
+ msgid "Frontend View Options"
1249
+ msgstr "Frontend-Ansichtsoptionen"
1250
+
1251
+ #: includes/class-wcj-product-input-fields.php:223
1252
+ msgid "HTML to add after required field title"
1253
+ msgstr "HTML nach dem gewünschten Feldtitel hinzufügen"
1254
+
1255
+ #: includes/class-wcj-product-input-fields.php:231
1256
+ msgid "Item Name Order Table Format"
1257
+ msgstr "Produktname Bestell-Tabellenformat"
1258
+
1259
+ #: includes/class-wcj-product-listings.php:482
1260
+ msgid "Position Priority"
1261
+ msgstr "Positions-Priorität"
1262
+
1263
+ #: includes/class-wcj-product-open-pricing.php:28
1264
+ msgid ""
1265
+ "Let your WooCommerce store customers enter price for the product manually."
1266
+ msgstr ""
1267
+ "Lasse Deine WooCommerce-Shop Kunden den Preis für das Produkt eingeben."
1268
+
1269
+ #: includes/class-wcj-product-open-pricing.php:131
1270
+ msgid ""
1271
+ "Booster: Free plugin's version is limited to only one open pricing product "
1272
+ "enabled at a time. You will need to get <a href=\"http://booster.io/plus/\" "
1273
+ "target=\"_blank\">Booster Plus</a> to add unlimited number of open pricing "
1274
+ "products."
1275
+ msgstr ""
1276
+ "Booster: Die kostenlose Version des Plugins ist auf nur ein offenes "
1277
+ "Preisprodukt beschränkt. Du musst <a href=\"http://booster.io/plus/\" "
1278
+ "target=\"_blank\">Booster Plus</a> erwerben, um eine unbegrenzte Anzahl "
1279
+ "offener Preisprodukte hinzuzufügen."
1280
+
1281
+ #: includes/class-wcj-product-open-pricing.php:184
1282
+ msgid "Default Price"
1283
+ msgstr "Preisvoreinstellung"
1284
+
1285
+ #: includes/class-wcj-product-open-pricing.php:190
1286
+ msgid "Min Price"
1287
+ msgstr "Min Preis"
1288
+
1289
+ #: includes/class-wcj-product-open-pricing.php:196
1290
+ msgid "Max Price"
1291
+ msgstr "Max Preis"
1292
+
1293
+ #: includes/class-wcj-product-open-pricing.php:265
1294
+ #: includes/class-wcj-product-open-pricing.php:391
1295
+ msgid "Price is required!"
1296
+ msgstr "Preis wird benötigt!"
1297
+
1298
+ #: includes/class-wcj-product-open-pricing.php:269
1299
+ #: includes/class-wcj-product-open-pricing.php:398
1300
+ msgid "Entered price is to small!"
1301
+ msgstr "Eingegebener Preis ist zu niedrig!"
1302
+
1303
+ #: includes/class-wcj-product-open-pricing.php:275
1304
+ #: includes/class-wcj-product-open-pricing.php:405
1305
+ msgid "Entered price is to big!"
1306
+ msgstr "Eingegebener Preis ist zu hoch!"
1307
+
1308
+ #: includes/class-wcj-product-open-pricing.php:332
1309
+ #: includes/class-wcj-product-open-pricing.php:376
1310
+ msgid "Name Your Price"
1311
+ msgstr "Nenne Deinen Preis"
1312
+
1313
+ #: includes/class-wcj-product-open-pricing.php:374
1314
+ msgid "Frontend Label"
1315
+ msgstr "Frontend Label"
1316
+
1317
+ #: includes/class-wcj-product-open-pricing.php:381
1318
+ msgid "Frontend Template"
1319
+ msgstr "Frontend Template"
1320
+
1321
+ #: includes/class-wcj-product-open-pricing.php:382
1322
+ msgid "Here you can use"
1323
+ msgstr "Hier kannst Du verwenden"
1324
+
1325
+ #: includes/class-wcj-product-open-pricing.php:389
1326
+ msgid "Message on Empty Price"
1327
+ msgstr "Nachricht auf leeren Preis"
1328
+
1329
+ #: includes/class-wcj-product-open-pricing.php:396
1330
+ msgid "Message on Price to Small"
1331
+ msgstr "Nachricht auf Preis zu niedrig"
1332
+
1333
+ #: includes/class-wcj-product-open-pricing.php:403
1334
+ msgid "Message on Price to Big"
1335
+ msgstr "Nachricht auf Preis zu hoch"
1336
+
1337
+ #: includes/class-wcj-product-price-by-formula.php:28
1338
+ msgid "Set formula for automatic WooCommerce product price calculation."
1339
+ msgstr ""
1340
+ "Setze die Formel für die automatische WooCommerce-Produktpreisberechnung."
1341
+
1342
+ #: includes/class-wcj-product-price-by-formula.php:119
1343
+ msgid "Error in formula"
1344
+ msgstr "Fehler in Formel"
1345
+
1346
+ #: includes/class-wcj-product-price-by-formula.php:244
1347
+ msgid "Use values below"
1348
+ msgstr "Werte unten nutzen"
1349
+
1350
+ #: includes/class-wcj-product-price-by-formula.php:245
1351
+ msgid "Use default values"
1352
+ msgstr "Voreingestellte Werte nutzen"
1353
+
1354
+ #: includes/class-wcj-product-tabs.php:411
1355
+ #: includes/input-fields/class-wcj-product-input-fields-per-product.php:153
1356
+ msgid "Click \"Update\" product after you change this number."
1357
+ msgstr "Klicke auf \"Produkt Aktualisieren\", nachdem Du diese Nummer änderst."
1358
+
1359
+ #: includes/class-wcj-product-tabs.php:443
1360
+ #: includes/class-wcj-product-tabs.php:541
1361
+ #: includes/class-wcj-product-tabs.php:710
1362
+ msgid "Custom Product Tab"
1363
+ msgstr "Benutzerdefiniertes Produkt Tab"
1364
+
1365
+ #: includes/class-wcj-product-tabs.php:497
1366
+ msgid "Custom Product Tabs Options"
1367
+ msgstr "Benutzerdefinierte Produkt-Registerkarten-Optionen"
1368
+
1369
+ #: includes/class-wcj-product-tabs.php:503
1370
+ msgid "Custom Product Tabs Number"
1371
+ msgstr "Benutzerdefinierte Produkt-Registerkarten-Nummer"
1372
+
1373
+ #: includes/class-wcj-product-tabs.php:558
1374
+ #: includes/class-wcj-product-tabs.php:727
1375
+ msgid "You can use shortcodes here..."
1376
+ msgstr "Hier kannst du Shortcodes verwenden..."
1377
+
1378
+ #: includes/class-wcj-product-tabs.php:566
1379
+ #: includes/class-wcj-product-tabs.php:735
1380
+ msgid "PRODUCTS to HIDE this tab"
1381
+ msgstr "PRODUKTE, die in dieser Registerkarte auszublenden sind"
1382
+
1383
+ #: includes/class-wcj-product-tabs.php:586
1384
+ #: includes/class-wcj-product-tabs.php:755
1385
+ msgid "CATEGORIES to HIDE this tab"
1386
+ msgstr "KATEGORIEN, die in dieser Registerkarte auszublenden sind"
1387
+
1388
+ #: includes/class-wcj-product-tabs.php:606
1389
+ #: includes/class-wcj-product-tabs.php:775
1390
+ msgid "TAGS to HIDE this tab"
1391
+ msgstr "STICHWÖRTER, die in dieser Registerkarte auszublenden sind"
1392
+
1393
+ #: includes/class-wcj-product-tabs.php:671
1394
+ msgid "Custom Product Tabs - Per Product"
1395
+ msgstr "Benutzerdefinierte Produkt-Registerkarten - Pro Produkt"
1396
+
1397
+ #: includes/class-wcj-product-tabs.php:677
1398
+ msgid "Enable Per Product Custom Product Tabs"
1399
+ msgstr "Aktiviere pro Produkt benutzerdefinierte Produkt-Registerkarten"
1400
+
1401
+ #: includes/class-wcj-product-tabs.php:679
1402
+ msgid "This will add meta boxes to each product's edit page."
1403
+ msgstr "Dies fügt jeder Produktbearbeitungsseite Meta-Boxen hinzu."
1404
+
1405
+ #: includes/class-wcj-product-tabs.php:685
1406
+ msgid "Use Visual Editor"
1407
+ msgstr "Verwendung des Visual Editor"
1408
+
1409
+ #: includes/class-wcj-product-tabs.php:692
1410
+ msgid "Default Per Product Custom Product Tabs Number"
1411
+ msgstr ""
1412
+ "Voreingestellte pro Produkt benutzerdefinierte Produkt-Registerkarten-Nummer"
1413
+
1414
+ #: includes/class-wcj-product-tabs.php:711
1415
+ msgid "Default Title"
1416
+ msgstr "Voreingestellter Titel"
1417
+
1418
+ #: includes/class-wcj-product-tabs.php:719
1419
+ msgid "Default Priority (i.e. Order)"
1420
+ msgstr "Voreingestellte Priorität (d.h. Reihenfolge)"
1421
+
1422
+ #: includes/class-wcj-product-tabs.php:726
1423
+ msgid "Default Content"
1424
+ msgstr "Voreingestellter Inhalt"
1425
+
1426
+ #: includes/class-wcj-product-tabs.php:803
1427
+ msgid "WooCommerce Standard Product Tabs Options"
1428
+ msgstr "WooCommerce Standard-Produkt-Registerkarten-Optionen"
1429
+
1430
+ #: includes/class-wcj-product-tabs.php:809
1431
+ msgid "Description Tab"
1432
+ msgstr "Beschreibungs-Registerkarte"
1433
+
1434
+ #: includes/class-wcj-product-tabs.php:810
1435
+ #: includes/class-wcj-product-tabs.php:833
1436
+ #: includes/class-wcj-product-tabs.php:856
1437
+ msgid "Remove tab from product page"
1438
+ msgstr "Registerkarte von der Produktseite entfernen"
1439
+
1440
+ #: includes/class-wcj-product-tabs.php:817
1441
+ #: includes/class-wcj-product-tabs.php:840
1442
+ #: includes/class-wcj-product-tabs.php:863
1443
+ msgid "Title."
1444
+ msgstr "Titel."
1445
+
1446
+ #: includes/class-wcj-product-tabs.php:818
1447
+ #: includes/class-wcj-product-tabs.php:841
1448
+ #: includes/class-wcj-product-tabs.php:864
1449
+ msgid "Leave blank for WooCommerce defaults"
1450
+ msgstr "Leer lassen für WooCommerce-Standardwerte"
1451
+
1452
+ #: includes/class-wcj-product-tabs.php:828
1453
+ #: includes/class-wcj-product-tabs.php:851
1454
+ #: includes/class-wcj-product-tabs.php:874
1455
+ msgid "Priority (i.e. Order)."
1456
+ msgstr "Priorität (d.h. Reihenfolge)."
1457
+
1458
+ #: includes/class-wcj-product-tabs.php:832
1459
+ msgid "Additional Information Tab"
1460
+ msgstr "Zusätzliche Informations-Registerkarte"
1461
+
1462
+ #: includes/class-wcj-product-tabs.php:855
1463
+ msgid "Reviews Tab"
1464
+ msgstr "Bewertungs-Registerkarte "
1465
+
1466
+ #: includes/class-wcj-products-xml.php:28
1467
+ msgid "Products XML"
1468
+ msgstr "Produkte XML"
1469
+
1470
+ #: includes/class-wcj-products-xml.php:29
1471
+ msgid "WooCommerce products XML feed."
1472
+ msgstr "WooCommerce-Produkte XML-Feed."
1473
+
1474
+ #: includes/class-wcj-products-xml.php:100
1475
+ #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:207
1476
+ msgid "Once a Minute"
1477
+ msgstr "Einmal pro Minute"
1478
+
1479
+ #: includes/class-wcj-products-xml.php:112
1480
+ msgid "Products XML file created successfully."
1481
+ msgstr "Produkte XML-Datei erfolgreich erstellt."
1482
+
1483
+ #: includes/class-wcj-products-xml.php:122
1484
+ msgid "An error has occurred while creating products XML file."
1485
+ msgstr "Beim Erstellen der Produkt-XML-Datei ist ein Fehler aufgetreten."
1486
+
1487
+ #: includes/class-wcj-products-xml.php:226
1488
+ msgid "Create Now"
1489
+ msgstr "Jetzt erstellen"
1490
+
1491
+ #: includes/class-wcj-products-xml.php:231
1492
+ msgid "XML File"
1493
+ msgstr "XML-Datei"
1494
+
1495
+ #: includes/class-wcj-products-xml.php:243
1496
+ msgid "XML Header"
1497
+ msgstr "XML Header"
1498
+
1499
+ #: includes/class-wcj-products-xml.php:250
1500
+ msgid "XML Item"
1501
+ msgstr "XML-Produkt"
1502
+
1503
+ #: includes/class-wcj-products-xml.php:252
1504
+ msgid ""
1505
+ "You can use shortcodes here. Please take a look at <a target=\"_blank\" "
1506
+ "href=\"%s\">Booster's products shortcodes</a>."
1507
+ msgstr ""
1508
+ "Hier kannst Du Shortcodes verwenden. Bitte werfe einen Blick auf <a "
1509
+ "target=\"_blank\" href=\"%s\">Booster's Produkt-Shortcodes</a>."
1510
+
1511
+ #: includes/class-wcj-products-xml.php:269
1512
+ msgid "XML Footer"
1513
+ msgstr "XML Footer"
1514
+
1515
+ #: includes/class-wcj-products-xml.php:276
1516
+ msgid "XML File Path and Name"
1517
+ msgstr "XML-Datei Pfad und Name"
1518
+
1519
+ #: includes/class-wcj-products-xml.php:277
1520
+ msgid "Path on server:"
1521
+ msgstr "Pfad auf Server"
1522
+
1523
+ #: includes/class-wcj-products-xml.php:278
1524
+ msgid "URL:"
1525
+ msgstr "URL:"
1526
+
1527
+ #: includes/class-wcj-purchase-data.php:49
1528
+ #: includes/class-wcj-purchase-data.php:235
1529
+ #: includes/class-wcj-purchase-data.php:390
1530
+ msgid "Profit"
1531
+ msgstr "Gewinnt"
1532
+
1533
+ #: includes/class-wcj-purchase-data.php:126
1534
+ #: includes/class-wcj-purchase-data.php:285
1535
+ msgid "Extra expenses (shipping etc.)"
1536
+ msgstr "Nebenkosten (Versand etc.)"
1537
+
1538
+ #: includes/class-wcj-purchase-data.php:136
1539
+ #: includes/class-wcj-purchase-data.php:292
1540
+ msgid "Affiliate commission"
1541
+ msgstr "Affiliate Provision"
1542
+
1543
+ #: includes/class-wcj-purchase-data.php:178
1544
+ #: includes/class-wcj-purchase-data.php:366
1545
+ msgid "Seller"
1546
+ msgstr "Verkäufer"
1547
+
1548
+ #: includes/class-wcj-purchase-data.php:188
1549
+ #: includes/class-wcj-purchase-data.php:373
1550
+ msgid "Purchase info"
1551
+ msgstr "Kaufinformationen"
1552
+
1553
+ #: includes/class-wcj-purchase-data.php:233
1554
+ msgid "Selling"
1555
+ msgstr "Verkaufen"
1556
+
1557
+ #: includes/class-wcj-purchase-data.php:234
1558
+ msgid "Buying"
1559
+ msgstr "Kaufen"
1560
+
1561
+ #: includes/class-wcj-purchase-data.php:243
1562
+ msgid "Report"
1563
+ msgstr "Bericht"
1564
+
1565
+ #: includes/class-wcj-purchase-data.php:272
1566
+ msgid "Price Fields"
1567
+ msgstr "Preisfelder"
1568
+
1569
+ #: includes/class-wcj-purchase-data.php:274
1570
+ #: includes/class-wcj-purchase-data.php:305
1571
+ msgid ""
1572
+ "This fields will be added to product's edit page and will be included in "
1573
+ "product's purchase cost calculation."
1574
+ msgstr ""
1575
+ "Diese Felder werden der Produkt-Bearbeitungsseite hinzugefügt und in die "
1576
+ "Kaufpreisberechnung des Produkts aufgenommen."
1577
+
1578
+ #: includes/class-wcj-purchase-data.php:303
1579
+ msgid "Custom Price Fields"
1580
+ msgstr "Benutzerdefinierte Preisfelder"
1581
+
1582
+ #: includes/class-wcj-purchase-data.php:309
1583
+ msgid "Total Custom Price Fields"
1584
+ msgstr "Gesamte benutzerdefinierte Preisfelder"
1585
+
1586
+ #: includes/class-wcj-purchase-data.php:321
1587
+ msgid "Custom Price Field"
1588
+ msgstr "Benutzerdefiniertes Preisfeld"
1589
+
1590
+ #: includes/class-wcj-purchase-data.php:324
1591
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:58
1592
+ msgid "Leave blank to disable"
1593
+ msgstr "Leer lassen, um zu deaktivieren"
1594
+
1595
+ #: includes/class-wcj-purchase-data.php:353
1596
+ msgid "Info Fields"
1597
+ msgstr "Info-Felder"
1598
+
1599
+ #: includes/class-wcj-purchase-data.php:355
1600
+ msgid "This fields will be added to product's edit page."
1601
+ msgstr "Diese Felder werden der Produkt-Bearbeitungsseite hinzugefügt."
1602
+
1603
+ #: includes/class-wcj-related-products.php:128
1604
+ msgid "Ignored if order by \"Random\" is selected above."
1605
+ msgstr "Ignoriert, wenn die Bestellung von \"Zufällig\" oben gewählt wird."
1606
+
1607
+ #: includes/class-wcj-related-products.php:138
1608
+ msgid "Relate by Category"
1609
+ msgstr "Verwandt nach Kategorie"
1610
+
1611
+ #: includes/class-wcj-related-products.php:144
1612
+ msgid "Relate by Tag"
1613
+ msgstr "Verwandt nach Stichwort"
1614
+
1615
+ #: includes/class-wcj-reports.php:35
1616
+ msgid "WooCommerce stock, sales, customers etc. reports."
1617
+ msgstr "WooCommerce-Berichte für Lager, Abverkauf, Kunden etc."
1618
+
1619
+ #: includes/class-wcj-reports.php:292
1620
+ msgid "Booster: Customers by Country"
1621
+ msgstr "Booster: Kunden nach Land"
1622
+
1623
+ #: includes/class-wcj-reports.php:299
1624
+ msgid "Booster: Customers by Country Sets"
1625
+ msgstr "Booster: Kunden nach Land Sets"
1626
+
1627
+ #: includes/class-wcj-reports.php:316
1628
+ msgid "Product Sales"
1629
+ msgstr "Produktabverkäufe"
1630
+
1631
+ #: includes/class-wcj-reports.php:334
1632
+ msgid "Customers by Country"
1633
+ msgstr "Kunden nach Land"
1634
+
1635
+ #: includes/class-wcj-reports.php:340
1636
+ msgid "Customers by Country Sets"
1637
+ msgstr "Kunden nach Land Sets"
1638
+
1639
+ #: includes/class-wcj-reports.php:346
1640
+ msgid "All in Stock with sales data"
1641
+ msgstr "Alles auf Lager mit Verkaufsdaten"
1642
+
1643
+ #: includes/class-wcj-shipping-calculator.php:177
1644
+ msgid "Labels Options"
1645
+ msgstr "Label-ptionen"
1646
+
1647
+ #: includes/class-wcj-shipping-calculator.php:182
1648
+ msgid "Labels"
1649
+ msgstr "Label"
1650
+
1651
+ #: includes/class-wcj-shipping-calculator.php:191
1652
+ msgid "Label for Calculate Shipping"
1653
+ msgstr "Label für Versandkostenberechnung"
1654
+
1655
+ #: includes/class-wcj-shipping-calculator.php:193
1656
+ msgid "Calculate Shipping"
1657
+ msgstr "Versandkostenberechnung"
1658
+
1659
+ #: includes/class-wcj-shipping-calculator.php:199
1660
+ msgid "Label for Update Totals"
1661
+ msgstr "Label für Aktualisiere Gesamtsumme"
1662
+
1663
+ #: includes/class-wcj-shipping-calculator.php:201
1664
+ msgid "Update Totals"
1665
+ msgstr "Aktualisiere Gesamtsumme"
1666
+
1667
+ #: includes/class-wcj-shipping.php:28
1668
+ msgid "Add descriptions and icons to shipping methods on frontend."
1669
+ msgstr "Füge Beschreibungen und Icons den Versandmethoden im Frontend hinzu."
1670
+
1671
+ #: includes/class-wcj-shipping.php:127
1672
+ msgid "Booster: Hide shipping"
1673
+ msgstr "Booster: Versandkosten ausblenden"
1674
+
1675
+ #: includes/class-wcj-shipping.php:128 includes/class-wcj-shipping.php:246
1676
+ msgid "Hide all when free is available"
1677
+ msgstr "ALles ausblenden wenn kostenlos verfügbar ist"
1678
+
1679
+ #: includes/class-wcj-shipping.php:168
1680
+ msgid "WooCommerce > Settings > Shipping"
1681
+ msgstr "WooCommerce > Einstellungen > Versand"
1682
+
1683
+ #: includes/class-wcj-shipping.php:171 includes/class-wcj-shipping.php:178
1684
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:116
1685
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:85
1686
+ msgid "Custom Shipping"
1687
+ msgstr "Benutzerdefinierte Versandkosten"
1688
+
1689
+ #: includes/class-wcj-shipping.php:174
1690
+ msgid "This section lets you add custom shipping method."
1691
+ msgstr ""
1692
+ "Dieser Abschnitt lässt Dich benutzerdefinierte Versandmethoden hinzufügen."
1693
+
1694
+ #: includes/class-wcj-shipping.php:175
1695
+ msgid "Visit %s to set method's options."
1696
+ msgstr "Besuche %s, um die Optionen der Methode festzulegen."
1697
+
1698
+ #: includes/class-wcj-shipping.php:185
1699
+ msgid "Admin Title"
1700
+ msgstr "Admin-Titel"
1701
+
1702
+ #: includes/class-wcj-shipping.php:187
1703
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:51
1704
+ msgid "Booster: Custom Shipping"
1705
+ msgstr "Booster: Benutzerdefinierter Versand"
1706
+
1707
+ #: includes/class-wcj-shipping.php:198
1708
+ msgid "Custom Shipping (Legacy - without Shipping Zones)"
1709
+ msgstr "Benutzerdefinierter Versand (Legacy - ohne Versandzonen)"
1710
+
1711
+ #: includes/class-wcj-shipping.php:202
1712
+ msgid "After setting the number, visit %s to set each method options."
1713
+ msgstr ""
1714
+ "Nachdem Du die Nummer eingestellt hast, besuche %s, um die einzelnen "
1715
+ "Methodenoptionen festzulegen."
1716
+
1717
+ #: includes/class-wcj-shipping.php:304
1718
+ msgid "Icon Position"
1719
+ msgstr "Icon-Position"
1720
+
1721
+ #: includes/class-wcj-shipping.php:309
1722
+ msgid "Before label"
1723
+ msgstr "Vor Label"
1724
+
1725
+ #: includes/class-wcj-shipping.php:310
1726
+ msgid "After label"
1727
+ msgstr "Nach Label"
1728
+
1729
+ #: includes/class-wcj-shipping.php:314
1730
+ msgid "Icon Style"
1731
+ msgstr "Icon-Stil"
1732
+
1733
+ #: includes/class-wcj-shipping.php:315
1734
+ msgid ""
1735
+ "You can also style icons with CSS class \"wcj_shipping_icon\", or id "
1736
+ "\"wcj_shipping_icon_method_id\""
1737
+ msgstr ""
1738
+ "Du kannst auch Symbole mit CSS-Klasse \"wcj_shipping_icon\", oder ID "
1739
+ "\"wcj_shipping_icon_method_id\" stylen"
1740
+
1741
+ #: includes/class-wcj-shipping.php:326
1742
+ #: includes/export/class-wcj-fields-helper.php:291
1743
+ msgid "Image URL"
1744
+ msgstr "Bild-URL"
1745
+
1746
+ #: includes/class-wcj-sku.php:34
1747
+ msgid "The tool generates and sets product SKUs for existing products."
1748
+ msgstr "Das Werkzeug erzeugt und setzt Produkt-SKUs für bestehende Produkte."
1749
+
1750
+ #: includes/class-wcj-sku.php:251
1751
+ msgid "SKUs generated and set successfully!"
1752
+ msgstr "SKUs generiert und erfolgreich eingestellt!"
1753
+
1754
+ #: includes/class-wcj-sku.php:257
1755
+ msgid "Preview SKUs"
1756
+ msgstr "Vorschau SKUs"
1757
+
1758
+ #: includes/class-wcj-sku.php:258
1759
+ msgid "Set SKUs"
1760
+ msgstr "SKUs einstellen"
1761
+
1762
+ #: includes/class-wcj-sku.php:272
1763
+ msgid "SKU Format Options"
1764
+ msgstr "SKU Format-Optionen"
1765
+
1766
+ #: includes/class-wcj-sku.php:277
1767
+ msgid "Number Generation"
1768
+ msgstr "Nummer-Generierung"
1769
+
1770
+ #: includes/class-wcj-sku.php:282
1771
+ msgid "From product ID"
1772
+ msgstr "Aus Produkt-ID"
1773
+
1774
+ #: includes/class-wcj-sku.php:283
1775
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-numbering.php:45
1776
+ msgid "Sequential"
1777
+ msgstr "Sequentiell"
1778
+
1779
+ #: includes/class-wcj-sku.php:290
1780
+ msgid "Sequential Number Generation Counter"
1781
+ msgstr "Sequentieller Nummer-Generierungszähler"
1782
+
1783
+ #: includes/class-wcj-sku.php:301 includes/class-wcj-sku.php:352
1784
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-numbering.php:63
1785
+ msgid "Prefix"
1786
+ msgstr "Präfix"
1787
+
1788
+ #: includes/class-wcj-sku.php:307
1789
+ msgid "Minimum Number Length"
1790
+ msgstr "Minimale Nummernlänge"
1791
+
1792
+ #: includes/class-wcj-sku.php:313 includes/class-wcj-sku.php:361
1793
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-numbering.php:70
1794
+ msgid "Suffix"
1795
+ msgstr "Suffix"
1796
+
1797
+ #: includes/class-wcj-sku.php:327
1798
+ msgid "SKU same as parent's product"
1799
+ msgstr "SKU gleich wie das Produkt der Eltern"
1800
+
1801
+ #: includes/class-wcj-sku.php:328
1802
+ msgid "Generate different SKU for each variation"
1803
+ msgstr "Generiere verschiedene SKU für jede Variation"
1804
+
1805
+ #: includes/class-wcj-sku.php:329
1806
+ msgid "SKU same as parent's product + variation letter suffix"
1807
+ msgstr "SKU gleich wie das Eltern-Produkt + Variation Buchstabensuffix"
1808
+
1809
+ #: includes/class-wcj-sku.php:341
1810
+ msgid "Categories Options"
1811
+ msgstr "Kategorien-Optionen"
1812
+
1813
+ #: includes/class-wcj-sku.php:379
1814
+ msgid "More Options"
1815
+ msgstr "Mehr Optionen"
1816
+
1817
+ #: includes/class-wcj-sku.php:384
1818
+ msgid "Automatically Generate SKU for New Products"
1819
+ msgstr "Automatische Erzeugung von SKU für neue Produkte"
1820
+
1821
+ #: includes/class-wcj-sku.php:392
1822
+ msgid "Allow Duplicate SKUs"
1823
+ msgstr "SK-Duplikate zulassen"
1824
+
1825
+ #: includes/class-wcj-sku.php:399
1826
+ msgid "Add SKU to Customer Emails"
1827
+ msgstr "Füge den Kunden-E-Mails SKU hinzu"
1828
+
1829
+ #: includes/class-wcj-sku.php:412
1830
+ msgid "When enabled - all new products will be given (autogenerated) SKU."
1831
+ msgstr ""
1832
+ "Wenn aktiviert - bekommen alle neuen Produkte eine (autogenerierte) SKU."
1833
+
1834
+ #: includes/class-wcj-wholesale-price.php:252
1835
+ msgid "Price directly"
1836
+ msgstr "Preis direkt"
1837
+
1838
+ #: includes/class-wcj-wholesale-price.php:412
1839
+ msgid "Replaced values: %old_price%, %price%, %discount_value%."
1840
+ msgstr "Ersetzte Werte: %old_price%, %price%, %discount_value%."
1841
+
1842
+ #: includes/currencies/wcj-currencies.php:14
1843
+ msgid "United Arab Emirates Dirham"
1844
+ msgstr "United Arab Emirates Dirham"
1845
+
1846
+ #: includes/currencies/wcj-currencies.php:15
1847
+ msgid "Afghan afghani"
1848
+ msgstr "Afghan afghani"
1849
+
1850
+ #: includes/currencies/wcj-currencies.php:16
1851
+ msgid "Albanian lek"
1852
+ msgstr "Albanian lek"
1853
+
1854
+ #: includes/currencies/wcj-currencies.php:17
1855
+ msgid "Armenian dram"
1856
+ msgstr "Armenian dram"
1857
+
1858
+ #: includes/currencies/wcj-currencies.php:18
1859
+ msgid "Netherlands Antillean gulden"
1860
+ msgstr "Netherlands Antillean gulden"
1861
+
1862
+ #: includes/currencies/wcj-currencies.php:19
1863
+ msgid "Angolan kwanza"
1864
+ msgstr "Angolan kwanza"
1865
+
1866
+ #: includes/currencies/wcj-currencies.php:20
1867
+ msgid "Argentine Peso"
1868
+ msgstr "Argentine Peso"
1869
+
1870
+ #: includes/currencies/wcj-currencies.php:21
1871
+ msgid "Australian Dollars"
1872
+ msgstr "Australian Dollars"
1873
+
1874
+ #: includes/currencies/wcj-currencies.php:22
1875
+ msgid "Aruban florin"
1876
+ msgstr "Aruban florin"
1877
+
1878
+ #: includes/currencies/wcj-currencies.php:23
1879
+ msgid "Azerbaijani manat"
1880
+ msgstr "Azerbaijani manat"
1881
+
1882
+ #: includes/currencies/wcj-currencies.php:24
1883
+ msgid "Bosnia and Herzegovina konvertibilna marka"
1884
+ msgstr "Bosnia and Herzegovina konvertibilna marka"
1885
+
1886
+ #: includes/currencies/wcj-currencies.php:25
1887
+ msgid "Barbadian dollar"
1888
+ msgstr "Barbadian dollar"
1889
+
1890
+ #: includes/currencies/wcj-currencies.php:26
1891
+ msgid "Bangladeshi Taka"
1892
+ msgstr "Bangladeshi Taka"
1893
+
1894
+ #: includes/currencies/wcj-currencies.php:27
1895
+ msgid "Bulgarian Lev"
1896
+ msgstr "Bulgarian Lev"
1897
+
1898
+ #: includes/currencies/wcj-currencies.php:28
1899
+ msgid "Bahraini dinar"
1900
+ msgstr "Bahraini dinar"
1901
+
1902
+ #: includes/currencies/wcj-currencies.php:29
1903
+ msgid "Burundi franc"
1904
+ msgstr "Burundi franc"
1905
+
1906
+ #: includes/currencies/wcj-currencies.php:30
1907
+ msgid "Belarusian ruble"
1908
+ msgstr "Belarusian ruble"
1909
+
1910
+ #: includes/currencies/wcj-currencies.php:31
1911
+ msgid "Brunei dollar"
1912
+ msgstr "Brunei dollar"
1913
+
1914
+ #: includes/currencies/wcj-currencies.php:32
1915
+ msgid "Bolivian boliviano"
1916
+ msgstr "Bolivian boliviano"
1917
+
1918
+ #: includes/currencies/wcj-currencies.php:33
1919
+ msgid "Brazilian Real"
1920
+ msgstr "Brazilian Real"
1921
+
1922
+ #: includes/currencies/wcj-currencies.php:34
1923
+ msgid "Bahamian dollar"
1924
+ msgstr "Bahamian dollar"
1925
+
1926
+ #: includes/currencies/wcj-currencies.php:35
1927
+ msgid "Bhutanese ngultrum"
1928
+ msgstr "Bhutanese ngultrum"
1929
+
1930
+ #: includes/currencies/wcj-currencies.php:36
1931
+ msgid "Botswana pula"
1932
+ msgstr "Botswana pula"
1933
+
1934
+ #: includes/currencies/wcj-currencies.php:37
1935
+ msgid "Belize dollar"
1936
+ msgstr "Belize dollar"
1937
+
1938
+ #: includes/currencies/wcj-currencies.php:38
1939
+ msgid "Canadian Dollars"
1940
+ msgstr "Canadian Dollars"
1941
+
1942
+ #: includes/currencies/wcj-currencies.php:39
1943
+ msgid "Congolese franc"
1944
+ msgstr "Congolese franc"
1945
+
1946
+ #: includes/currencies/wcj-currencies.php:40
1947
+ msgid "Swiss Franc"
1948
+ msgstr "Swiss Franc"
1949
+
1950
+ #: includes/currencies/wcj-currencies.php:41
1951
+ msgid "Chilean Peso"
1952
+ msgstr "Chilean Peso"
1953
+
1954
+ #: includes/currencies/wcj-currencies.php:42
1955
+ msgid "Chinese Yuan"
1956
+ msgstr "Chinese Yuan"
1957
+
1958
+ #: includes/currencies/wcj-currencies.php:43
1959
+ msgid "Colombian Peso"
1960
+ msgstr "Colombian Peso"
1961
+
1962
+ #: includes/currencies/wcj-currencies.php:44
1963
+ msgid "Costa Rican colon"
1964
+ msgstr "Costa Rican colon"
1965
+
1966
+ #: includes/currencies/wcj-currencies.php:45
1967
+ msgid "Cuban peso"
1968
+ msgstr "Cuban peso"
1969
+
1970
+ #: includes/currencies/wcj-currencies.php:46
1971
+ msgid "Cape Verdean escudo"
1972
+ msgstr "Cape Verdean escudo"
1973
+
1974
+ #: includes/currencies/wcj-currencies.php:47
1975
+ msgid "Czech Koruna"
1976
+ msgstr "Czech Koruna"
1977
+
1978
+ #: includes/currencies/wcj-currencies.php:48
1979
+ msgid "Djiboutian franc"
1980
+ msgstr "Djiboutian franc"
1981
+
1982
+ #: includes/currencies/wcj-currencies.php:49
1983
+ msgid "Danish Krone"
1984
+ msgstr "Danish Krone"
1985
+
1986
+ #: includes/currencies/wcj-currencies.php:50
1987
+ msgid "Dominican Peso"
1988
+ msgstr "Dominican Peso"
1989
+
1990
+ #: includes/currencies/wcj-currencies.php:51
1991
+ msgid "Algerian dinar"
1992
+ msgstr "Algerian dinar"
1993
+
1994
+ #: includes/currencies/wcj-currencies.php:52
1995
+ msgid "Estonian kroon"
1996
+ msgstr "Estonian kroon"
1997
+
1998
+ #: includes/currencies/wcj-currencies.php:53
1999
+ msgid "Egyptian Pound"
2000
+ msgstr "Egyptian Pound"
2001
+
2002
+ #: includes/currencies/wcj-currencies.php:54
2003
+ msgid "Eritrean nakfa"
2004
+ msgstr "Eritrean nakfa"
2005
+
2006
+ #: includes/currencies/wcj-currencies.php:55
2007
+ msgid "Ethiopian birr"
2008
+ msgstr "Ethiopian birr"
2009
+
2010
+ #: includes/currencies/wcj-currencies.php:56
2011
+ msgid "Euros"
2012
+ msgstr "Euros"
2013
+
2014
+ #: includes/currencies/wcj-currencies.php:57
2015
+ msgid "Fijian dollar"
2016
+ msgstr "Fijian dollar"
2017
+
2018
+ #: includes/currencies/wcj-currencies.php:58
2019
+ msgid "Falkland Islands pound"
2020
+ msgstr "Falkland Islands pound"
2021
+
2022
+ #: includes/currencies/wcj-currencies.php:59
2023
+ msgid "Pounds Sterling"
2024
+ msgstr "Pounds Sterling"
2025
+
2026
+ #: includes/currencies/wcj-currencies.php:60
2027
+ msgid "Georgian lari"
2028
+ msgstr "Georgian lari"
2029
+
2030
+ #: includes/currencies/wcj-currencies.php:61
2031
+ msgid "Ghanaian cedi"
2032
+ msgstr "Ghanaian cedi"
2033
+
2034
+ #: includes/currencies/wcj-currencies.php:62
2035
+ msgid "Gibraltar pound"
2036
+ msgstr "Gibraltar pound"
2037
+
2038
+ #: includes/currencies/wcj-currencies.php:171
2039
+ msgid "Special Drawing Rights"
2040
+ msgstr "Sonderziehungsrechte"
2041
+
2042
+ #: includes/emails/class-wc-email-wcj-custom.php:255
2043
+ msgid "Order status %s to %s"
2044
+ msgstr "Bestellstatus %s to %s"
2045
+
2046
+ #: includes/emails/class-wc-email-wcj-custom.php:284
2047
+ msgid "Low stock notification"
2048
+ msgstr "Meldung Niedriger Bestand"
2049
+
2050
+ #: includes/emails/class-wc-email-wcj-custom.php:285
2051
+ msgid "No stock notification"
2052
+ msgstr "Meldung Kein Bestand"
2053
+
2054
+ #: includes/emails/class-wc-email-wcj-custom.php:286
2055
+ msgid "Product on backorder notification"
2056
+ msgstr "Meldung bei Lieferrückstand"
2057
+
2058
+ #: includes/emails/class-wc-email-wcj-custom.php:287
2059
+ msgid "Created customer notification"
2060
+ msgstr "Kundenmeldung erstellt"
2061
+
2062
+ #: includes/emails/class-wc-email-wcj-custom.php:304
2063
+ msgid ""
2064
+ "This controls the email subject line. Leave blank to use the default subject:"
2065
+ " <code>%s</code>."
2066
+ msgstr ""
2067
+ "Dies steuert die E-Mail-Betreffzeile. Leer lassen, um den Standardbetreff zu "
2068
+ "verwenden: <code>%s</code>."
2069
+
2070
+ #: includes/emails/class-wc-email-wcj-custom.php:309
2071
+ msgid "Email Heading"
2072
+ msgstr "Email-Überschrift"
2073
+
2074
+ #: includes/emails/class-wc-email-wcj-custom.php:311
2075
+ msgid ""
2076
+ "This controls the main heading contained within the email notification. "
2077
+ "Leave blank to use the default heading: <code>%s</code>."
2078
+ msgstr ""
2079
+ "Dies steuert die Hauptüberschrift, die in der E-Mail-Benachrichtigung "
2080
+ "enthalten ist. Leer lassen, um die Standardüberschrift zu verwenden: <code>"
2081
+ "%s</code>."
2082
+
2083
+ #: includes/emails/class-wc-email-wcj-custom.php:316
2084
+ msgid "Email type"
2085
+ msgstr "Email-Typ"
2086
+
2087
+ #: includes/emails/class-wc-email-wcj-custom.php:318
2088
+ msgid "Choose which format of email to send."
2089
+ msgstr "Wähle aus, in welchem Format die E-Mail zu senden ist."
2090
+
2091
+ #: includes/emails/class-wc-email-wcj-custom.php:324
2092
+ msgid "HTML template"
2093
+ msgstr "HTML-Template"
2094
+
2095
+ #: includes/emails/class-wc-email-wcj-custom.php:326
2096
+ #: includes/emails/class-wc-email-wcj-custom.php:335
2097
+ msgid "You can use shortcodes here. E.g. Booster's order shortcodes."
2098
+ msgstr ""
2099
+ "Hier kannst du Shortcodes verwenden, z.B. Booster's Bestell-Shortcodes."
2100
+
2101
+ #: includes/export/class-wcj-fields-helper.php:35
2102
+ msgid "Customer Nr."
2103
+ msgstr "Kundennummer"
2104
+
2105
+ #: includes/functions/wcj-invoicing-functions.php:51
2106
+ msgid "Custom Document"
2107
+ msgstr "Benutzerdefiniertes Dokument"
2108
+
2109
+ #: includes/functions/wcj-invoicing-functions.php:52
2110
+ msgid "Custom Documents"
2111
+ msgstr "Benutzerdefinierte Dokumente"
2112
+
2113
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:63
2114
+ msgid "Enable Custom Payment"
2115
+ msgstr "Benutzerdefinierte Zahlung aktivieren"
2116
+
2117
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:71
2118
+ msgid "Custom Payment"
2119
+ msgstr "Benutzerdefinierte Zahlung"
2120
+
2121
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:78
2122
+ msgid "Payment method description that the customer will see on your checkout."
2123
+ msgstr ""
2124
+ "Zahlungsmethodenbeschreibung, die der Kunde bei Ihrer Kasse sehen wird."
2125
+
2126
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:80
2127
+ msgid "Custom Payment Description."
2128
+ msgstr "Benutzerdefinierte Zahlungsbeschreibung."
2129
+
2130
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:112
2131
+ msgid ""
2132
+ "If you want to set minimum order amount (excluding fees) to show this "
2133
+ "gateway on frontend, enter a number here. Set to 0 to disable."
2134
+ msgstr ""
2135
+ "Wenn Du den Mindestbestellbetrag (ohne Gebühren) festlegen möchtest, um "
2136
+ "dieses Gateway im Frontend anzuzeigen, gib hier eine Nummer ein. Auf 0 "
2137
+ "setzen, um zu deaktivieren."
2138
+
2139
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:155
2140
+ msgid "Send to Customer"
2141
+ msgstr "An den Kunden senden"
2142
+
2143
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:156
2144
+ msgid ""
2145
+ "This may help if you are using pending or custom default status and not "
2146
+ "getting new order emails."
2147
+ msgstr ""
2148
+ "Dies kann helfen, wenn Du mit ausstehenden oder benutzerdefinierten Standard-"
2149
+ "Status nutzt und keine neuen Bestell-E-Mails erhälst."
2150
+
2151
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:162
2152
+ msgid "Custom Return URL (Thank You Page)"
2153
+ msgstr "Benutzerdefinierte Rückkehr-URL (Danke-Seite)"
2154
+
2155
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:354
2156
+ msgid "Booster for WooCommerce: Custom Payment Gateway"
2157
+ msgstr "Booster für WooCommerce: Benutzerdefiniertes Zahlungs-Gateway"
2158
+
2159
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:123
2160
+ msgid "Customer - On-Hold Order"
2161
+ msgstr "Kunde - On-Hold-Bestellung"
2162
+
2163
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:127
2164
+ msgid "Customer - Note"
2165
+ msgstr "Kunden - Hinweis"
2166
+
2167
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:128
2168
+ msgid "Customer - New Account"
2169
+ msgstr "Kunde - Neues Konto"
2170
+
2171
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:129
2172
+ msgid "Customer - Reset Password"
2173
+ msgstr "Kunde - Passwort zurücksetzen"
2174
+
2175
+ #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:79
2176
+ msgid "Booster: Custom Add to Cart"
2177
+ msgstr "Booster: Benutzerdefiniert dem Warenkorb hinzufügen"
2178
+
2179
+ #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:90
2180
+ msgid "Single product view"
2181
+ msgstr "Einzelproduktansicht"
2182
+
2183
+ #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:91
2184
+ msgid "Product category (archive) view"
2185
+ msgstr "Produktkategorie (Archiv)-Ansicht"
2186
+
2187
+ #: includes/admin/class-wc-settings-jetpack.php:26
2188
+ #: includes/admin/class-wc-settings-jetpack.php:358
2189
+ #: includes/class-wcj-checkout-files-upload.php:140
2190
+ #: includes/class-wcj-payment-gateways.php:55
2191
+ #: includes/classes/class-wcj-module.php:174
2192
+ #: includes/classes/class-wcj-module.php:363
2193
+ msgid "Booster"
2194
+ msgstr "Booster"
2195
+
2196
+ #: includes/admin/class-wc-settings-jetpack.php:150
2197
+ msgid "Save changes"
2198
+ msgstr "Änderungen speichern"
2199
+
2200
+ #: includes/admin/class-wc-settings-jetpack.php:208
2201
+ msgid "Alphabetically"
2202
+ msgstr "Alphabetisch"
2203
+
2204
+ #: includes/admin/class-wc-settings-jetpack.php:209
2205
+ msgid "By Category"
2206
+ msgstr "Nach Kategorie"
2207
+
2208
+ #: includes/admin/class-wc-settings-jetpack.php:210
2209
+ msgid "Active"
2210
+ msgstr "Aktiv"
2211
+
2212
+ #: includes/admin/class-wc-settings-jetpack.php:211
2213
+ msgid "Manage Settings"
2214
+ msgstr "Einstellungen verwalten"
2215
+
2216
+ #: includes/admin/class-wc-settings-jetpack.php:253
2217
+ #: includes/admin/wcj-modules-cats.php:15
2218
+ msgid "Dashboard"
2219
+ msgstr "Übersicht"
2220
+
2221
+ #: includes/admin/class-wc-settings-jetpack.php:283
2222
+ #: includes/class-wcj-product-custom-info.php:26
2223
+ msgid "Product Info"
2224
+ msgstr "Produktinfo"
2225
+
2226
+ #: includes/admin/class-wc-settings-jetpack.php:289
2227
+ msgid ""
2228
+ "Please note that current <em>%s</em> module is deprecated and will be "
2229
+ "removed in future updates. Please use <em>%s</em> module instead."
2230
+ msgstr ""
2231
+ "Bitte beachte, dass das aktuelle Modul <em>%s</em> veraltet ist und in "
2232
+ "zukünftigen Updates entfernt wird. Verwende stattdessen das Modul <em>%s</em>"
2233
+ "."
2234
+
2235
+ #: includes/admin/class-wc-settings-jetpack.php:354
2236
+ msgid "WooCommerce"
2237
+ msgstr "WooCommerce"
2238
+
2239
+ #: includes/admin/class-wc-settings-jetpack.php:356
2240
+ #: includes/admin/class-wc-settings-jetpack.php:495 woocommerce-jetpack.php:398
2241
+ msgid "Settings"
2242
+ msgstr "Einstellungen"
2243
+
2244
+ #: includes/admin/class-wc-settings-jetpack.php:402
2245
+ msgid ""
2246
+ "This section lets you export, import or reset all Booster's modules settings."
2247
+ msgstr ""
2248
+ "Dieser Abschnitt lässt Dich exportieren, importieren und rücksetzen aller "
2249
+ "Booster-Moduleinstellungen."
2250
+
2251
+ #: includes/admin/class-wc-settings-jetpack.php:420
2252
+ #: includes/class-wcj-export-import.php:28
2253
+ msgid "Export"
2254
+ msgstr "Export"
2255
+
2256
+ #: includes/admin/class-wc-settings-jetpack.php:421
2257
+ msgid "Import"
2258
+ msgstr "Import"
2259
+
2260
+ #: includes/admin/class-wc-settings-jetpack.php:423
2261
+ msgid ""
2262
+ "This will reset settings to defaults for all Booster modules. Are you sure?"
2263
+ msgstr ""
2264
+ "Dies wird die Einstellungen für alle Booster-Module auf die "
2265
+ "Grundeinstellungen rücksetzen. Bist Du sicher?"
2266
+
2267
+ #: includes/admin/class-wc-settings-jetpack.php:423
2268
+ msgid "Reset"
2269
+ msgstr "Rücksetzung"
2270
+
2271
+ #: includes/admin/class-wc-settings-jetpack.php:426
2272
+ msgid "Version"
2273
+ msgstr "Version"
2274
+
2275
+ #: includes/admin/class-wc-settings-jetpack.php:450
2276
+ #: includes/admin/class-wc-settings-jetpack.php:457
2277
+ msgid "Select All"
2278
+ msgstr "Alle auswählen"
2279
+
2280
+ #: includes/admin/class-wc-settings-jetpack.php:451
2281
+ #: includes/admin/class-wc-settings-jetpack.php:458
2282
+ #: includes/admin/class-wcj-tools.php:74
2283
+ msgid "Module"
2284
+ msgstr "Modul"
2285
+
2286
+ #: includes/admin/class-wc-settings-jetpack.php:452
2287
+ #: includes/admin/class-wc-settings-jetpack.php:459
2288
+ #: includes/admin/class-wcj-tools.php:75
2289
+ #: includes/class-wcj-eu-vat-number.php:377
2290
+ #: includes/class-wcj-product-by-user.php:202
2291
+ #: includes/export/class-wcj-fields-helper.php:293
2292
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:76
2293
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:151
2294
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:266
2295
+ msgid "Description"
2296
+ msgstr "Beschreibung"
2297
+
2298
+ #: includes/admin/class-wc-settings-jetpack.php:497
2299
+ #: includes/classes/class-wcj-module.php:497
2300
+ msgid "Documentation"
2301
+ msgstr "Dokumentation"
2302
+
2303
+ #: includes/admin/class-wc-settings-jetpack.php:512
2304
+ msgid "No active modules found."
2305
+ msgstr "Keine aktiven Module gefunden."
2306
+
2307
+ #: includes/admin/class-wc-settings-jetpack.php:515
2308
+ msgid "Total Modules:"
2309
+ msgstr "Module insgesamt:"
2310
+
2311
+ #: includes/admin/class-wc-settings-jetpack.php:544
2312
+ msgid "Booster for WooCommerce - Dashboard"
2313
+ msgstr "Booster for WooCommerce - Übersicht"
2314
+
2315
+ #: includes/admin/class-wc-settings-jetpack.php:546
2316
+ msgid ""
2317
+ "This dashboard lets you enable/disable any Booster's module. Each checkbox "
2318
+ "comes with short module's description. Please visit <a href=\"http://booster."
2319
+ "io\" target=\"_blank\">http://booster.io</a> for detailed info on each "
2320
+ "feature."
2321
+ msgstr ""
2322
+ "In dieser Übersicht kannst Du jedes Booster-Modul aktivieren/deaktivieren. "
2323
+ "Jedes Kontrollkästchen enthält eine kurze Modul-Beschreibung. Besuche bitte "
2324
+ "<a href=\"http://booster.io\" target=\"_blank\">http://booster.io</a> für "
2325
+ "detaillierte Informationen zu jeder Funktion."
2326
+
2327
+ #: includes/admin/class-wcj-tools.php:34
2328
+ msgid "Booster for WooCommerce Tools"
2329
+ msgstr "Booster for WooCommerce Werkzeuge"
2330
+
2331
+ #: includes/admin/class-wcj-tools.php:35
2332
+ msgid "Booster Tools"
2333
+ msgstr "Booster Werkzeuge"
2334
+
2335
+ #: includes/admin/class-wcj-tools.php:53
2336
+ msgid "Tools Dashboard"
2337
+ msgstr "Werkzeug-Übersicht"
2338
+
2339
+ #: includes/admin/class-wcj-tools.php:67
2340
+ msgid "Booster for WooCommerce Tools - Dashboard"
2341
+ msgstr "Booster for WooCommerce Werkzeug - Übersicht"
2342
+
2343
+ #: includes/admin/class-wcj-tools.php:68
2344
+ msgid ""
2345
+ "This dashboard lets you check statuses and short descriptions of all "
2346
+ "available Booster for WooCommerce tools. Tools can be enabled through "
2347
+ "WooCommerce > Settings > Booster. Enabled tools will appear in the tabs menu "
2348
+ "above."
2349
+ msgstr ""
2350
+ "In dieser Übersicht kannst Du den Status und eine kurze Beschreibung aller "
2351
+ "verfügbaren Booster for Woocommerce Werkzeuge. Werkzeuge können über "
2352
+ "WooCommerce > Einstellungen > Booster aktiviert werden. Aktivierte Werkzeuge "
2353
+ "erscheinen oben im Registerkarten-Menü."
2354
+
2355
+ #: includes/admin/class-wcj-tools.php:73
2356
+ msgid "Tool"
2357
+ msgstr "Werkzeug"
2358
+
2359
+ #: includes/admin/class-wcj-tools.php:76
2360
+ #: includes/class-wcj-product-by-user.php:156
2361
+ #: includes/export/class-wcj-fields-helper.php:294
2362
+ msgid "Status"
2363
+ msgstr "Status"
2364
+
2365
+ #: includes/admin/wcj-modules-cats.php:26
2366
+ msgid "Prices & Currencies"
2367
+ msgstr "Preise & Währungen"
2368
+
2369
+ #: includes/admin/wcj-modules-cats.php:47
2370
+ msgid "Button & Price Labels"
2371
+ msgstr "Button- & Preisetiketten"
2372
+
2373
+ #: includes/admin/wcj-modules-cats.php:59
2374
+ #: includes/class-wcj-product-by-user.php:57
2375
+ #: includes/class-wcj-product-by-user.php:93
2376
+ msgid "Products"
2377
+ msgstr "Produkte"
2378
+
2379
+ #: includes/admin/wcj-modules-cats.php:82
2380
+ msgid "Cart & Checkout"
2381
+ msgstr "Warenkorb & Kasse"
2382
+
2383
+ #: includes/admin/wcj-modules-cats.php:96
2384
+ #: includes/class-wcj-payment-gateways-by-country.php:88
2385
+ #: includes/class-wcj-payment-gateways-by-user-role.php:81
2386
+ #: includes/class-wcj-payment-gateways-min-max.php:90
2387
+ msgid "Payment Gateways"
2388
+ msgstr "Zahlungsanbieter"
2389
+
2390
+ #: includes/admin/wcj-modules-cats.php:111
2391
+ msgid "Shipping & Orders"
2392
+ msgstr "Versand & Bestellungen"
2393
+
2394
+ #: includes/admin/wcj-modules-cats.php:126
2395
+ msgid "PDF Invoicing & Packing Slips"
2396
+ msgstr "PDF Rechnungen & Packzettel"
2397
+
2398
+ #: includes/admin/wcj-modules-cats.php:142
2399
+ msgid "Emails & Misc."
2400
+ msgstr "Emails & Sonstiges"
2401
+
2402
+ #: includes/class-wcj-add-to-cart.php:25
2403
+ msgid "Add to Cart Labels"
2404
+ msgstr "Dem Warenkorb hinzufügen Beschriftungen"
2405
+
2406
+ #: includes/class-wcj-add-to-cart.php:26
2407
+ msgid ""
2408
+ "Change text for Add to Cart button by WooCommerce product type, by product "
2409
+ "category or for individual products."
2410
+ msgstr ""
2411
+ "Ändern des Textes für Dem Warenkorb hinzufügen nach WooCommerce Produktart, "
2412
+ "nach Produktkategorie oder für individuelle Produkte."
2413
+
2414
+ #: includes/class-wcj-add-to-cart.php:44
2415
+ msgid "Per Product Type Options"
2416
+ msgstr "Pro Produkt Optionsarten"
2417
+
2418
+ #: includes/class-wcj-add-to-cart.php:47 includes/class-wcj-add-to-cart.php:186
2419
+ msgid "Per Product Labels"
2420
+ msgstr "Pro Produkt Beschriftungen"
2421
+
2422
+ #: includes/class-wcj-add-to-cart.php:48 includes/class-wcj-add-to-cart.php:187
2423
+ #: includes/class-wcj-add-to-cart.php:212 includes/class-wcj-general.php:482
2424
+ #: includes/class-wcj-product-images.php:252
2425
+ #: includes/class-wcj-product-images.php:326
2426
+ #: includes/class-wcj-shipping-calculator.php:183
2427
+ #: includes/class-wcj-shipping.php:266 includes/class-wcj-shipping.php:298
2428
+ msgid "Enable Section"
2429
+ msgstr "Abschnitt aktivieren"
2430
+
2431
+ #: includes/class-wcj-add-to-cart.php:58
2432
+ msgid "Simple product"
2433
+ msgstr "Einfaches Produkt"
2434
+
2435
+ #: includes/class-wcj-add-to-cart.php:63
2436
+ msgid "Variable product"
2437
+ msgstr "Variables Produkt"
2438
+
2439
+ #: includes/class-wcj-add-to-cart.php:68
2440
+ msgid "External product"
2441
+ msgstr "Externes Produkt"
2442
+
2443
+ #: includes/class-wcj-add-to-cart.php:73
2444
+ msgid "Grouped product"
2445
+ msgstr "Gruppenprodukt"
2446
+
2447
+ #: includes/class-wcj-add-to-cart.php:78
2448
+ msgid "Other product"
2449
+ msgstr "Anderes Produkt"
2450
+
2451
+ #: includes/class-wcj-add-to-cart.php:89
2452
+ msgid "Single product view."
2453
+ msgstr "Einzelproduktansicht"
2454
+
2455
+ #: includes/class-wcj-add-to-cart.php:90 includes/class-wcj-add-to-cart.php:101
2456
+ #: includes/class-wcj-add-to-cart.php:147
2457
+ #: includes/class-wcj-add-to-cart.php:160
2458
+ #: includes/class-wcj-payment-gateways-fees.php:151
2459
+ msgid "Leave blank to disable."
2460
+ msgstr "Leer lassen um zu deaktivieren."
2461
+
2462
+ #: includes/class-wcj-add-to-cart.php:90 includes/class-wcj-add-to-cart.php:101
2463
+ #: includes/class-wcj-add-to-cart.php:149
2464
+ #: includes/class-wcj-add-to-cart.php:162 includes/class-wcj-sorting.php:196
2465
+ #: includes/class-wcj-sorting.php:205 includes/class-wcj-sorting.php:214
2466
+ #: includes/class-wcj-sorting.php:223 includes/class-wcj-sorting.php:241
2467
+ #: includes/class-wcj-sorting.php:250
2468
+ msgid "Default: "
2469
+ msgstr "Voreinstellung:"
2470
+
2471
+ #: includes/class-wcj-add-to-cart.php:100
2472
+ msgid "Product category (archive) view."
2473
+ msgstr "Produktkategorie (Archiv)-Ansicht"
2474
+
2475
+ #: includes/class-wcj-add-to-cart.php:112
2476
+ msgid "Products with price set to 0 (i.e. free). Single product view."
2477
+ msgstr ""
2478
+ "Produkte mit Preis eingestellt auf 0 (d.h. kostenlos). Einzelproduktansicht."
2479
+
2480
+ #: includes/class-wcj-add-to-cart.php:113
2481
+ #: includes/class-wcj-add-to-cart.php:122
2482
+ msgid "Leave blank to disable. Default: Add to cart"
2483
+ msgstr ""
2484
+ "Leer lassen um zu deaktivieren. Voreinstellung: Dem Warenkorb hinzufügen"
2485
+
2486
+ #: includes/class-wcj-add-to-cart.php:115
2487
+ #: includes/class-wcj-add-to-cart.php:124
2488
+ #: includes/class-wcj-add-to-cart.php:149
2489
+ #: includes/class-wcj-add-to-cart.php:150
2490
+ #: includes/class-wcj-add-to-cart.php:162
2491
+ #: includes/class-wcj-add-to-cart.php:163
2492
+ msgid "Add to cart"
2493
+ msgstr "Dem Warenkorb hinzufügen"
2494
+
2495
+ #: includes/class-wcj-add-to-cart.php:121
2496
+ msgid ""
2497
+ "Products with price set to 0 (i.e. free). Product category (archive) view."
2498
+ msgstr ""
2499
+ "Produkte mit Preis eingestellt auf 0 (d.h. kostenlos). Produktkategorie "
2500
+ "(Archiv)-Ansicht."
2501
+
2502
+ #: includes/class-wcj-add-to-cart.php:131
2503
+ msgid "Products with empty price. Product category (archive) view."
2504
+ msgstr "Produkte mit leerem Preis. Produktkategorie (Archiv)-Ansicht."
2505
+
2506
+ #: includes/class-wcj-add-to-cart.php:132
2507
+ msgid "Leave blank to disable. Default: Read More"
2508
+ msgstr "Leer lassen um zu deaktivieren. Voreinstellung: Mehr lesen"
2509
+
2510
+ #: includes/class-wcj-add-to-cart.php:134
2511
+ msgid "Read More"
2512
+ msgstr "Erfahre mehr"
2513
+
2514
+ #: includes/class-wcj-add-to-cart.php:146
2515
+ msgid "Already in cart. Single product view."
2516
+ msgstr "Bereits im Warenkorb. Einzelproduktansicht"
2517
+
2518
+ #: includes/class-wcj-add-to-cart.php:148
2519
+ #: includes/class-wcj-add-to-cart.php:161
2520
+ msgid "Try: "
2521
+ msgstr "Versuch:"
2522
+
2523
+ #: includes/class-wcj-add-to-cart.php:148
2524
+ #: includes/class-wcj-add-to-cart.php:161
2525
+ msgid "Already in cart - Add Again?"
2526
+ msgstr "Bereits im Warenkorb. Nochmal hinzufügen?"
2527
+
2528
+ #: includes/class-wcj-add-to-cart.php:159
2529
+ msgid "Already in cart. Product category (archive) view."
2530
+ msgstr "Bereits im Warenkorb. Produktkategorie (Archiv)-Ansicht."
2531
+
2532
+ #: includes/class-wcj-add-to-cart.php:180
2533
+ #: includes/class-wcj-product-addons.php:528
2534
+ msgid "Per Product Options"
2535
+ msgstr "Pro Produkt-Optionen"
2536
+
2537
+ #: includes/class-wcj-add-to-cart.php:182
2538
+ msgid ""
2539
+ "This section lets you set Add to Cart button text on per product basis. When "
2540
+ "enabled, label for each product can be changed in \"Edit Product\"."
2541
+ msgstr ""
2542
+ "Dieser Abschnitt lässt Dich Dem Warenkorb hinzufügen Button-Text auf einer "
2543
+ "Pro-Produkt-Basis einstellen. Wenn aktiviert, kann die Beschriftung für "
2544
+ "jedes Produkt in \"Produkt bearbeiten\" geändert werden."
2545
+
2546
+ #: includes/class-wcj-add-to-cart.php:208
2547
+ msgid "Per Category Options"
2548
+ msgstr "Pro Kategorie-Optionen"
2549
+
2550
+ #: includes/class-wcj-add-to-cart.php:208
2551
+ msgid ""
2552
+ "This sections lets you set Add to Cart button text on per category basis."
2553
+ msgstr ""
2554
+ "Dieser Abschnitt lässt DIch den Dem Warenkorb hinzufügen Button-Text auf "
2555
+ "einer Pro-Kategorie-Basis einstellen."
2556
+
2557
+ #: includes/class-wcj-add-to-cart.php:211
2558
+ msgid "Per Category Labels"
2559
+ msgstr "Pro-Kategorie-Beschriftungen"
2560
+
2561
+ #: includes/class-wcj-add-to-cart.php:220
2562
+ msgid "Category Groups Number"
2563
+ msgstr "Kategorie-Gruppen-Nummer"
2564
+
2565
+ #: includes/class-wcj-add-to-cart.php:221
2566
+ #: includes/class-wcj-checkout-custom-fields.php:637
2567
+ #: includes/class-wcj-product-input-fields.php:179
2568
+ #: includes/class-wcj-product-tabs.php:504
2569
+ msgid "Click \"Save changes\" after you change this number."
2570
+ msgstr "Klicke auf \"Änderungen speichern\" wenn Du diese Nummer änderst."
2571
+
2572
+ #: includes/class-wcj-add-to-cart.php:257
2573
+ #: includes/class-wcj-price-by-country.php:303
2574
+ #: includes/class-wcj-price-by-country.php:314
2575
+ #: includes/class-wcj-price-by-country.php:325
2576
+ #: includes/class-wcj-price-by-country.php:379
2577
+ msgid "Group"
2578
+ msgstr "Gruppe"
2579
+
2580
+ #: includes/class-wcj-add-to-cart.php:258
2581
+ #: includes/class-wcj-admin-tools.php:194
2582
+ #: includes/class-wcj-admin-tools.php:201
2583
+ #: includes/class-wcj-admin-tools.php:232
2584
+ #: includes/class-wcj-admin-tools.php:239
2585
+ #: includes/class-wcj-call-for-price.php:159 includes/class-wcj-general.php:343
2586
+ #: includes/class-wcj-general.php:391 includes/class-wcj-general.php:407
2587
+ #: includes/class-wcj-general.php:465
2588
+ #: includes/class-wcj-global-discount.php:244
2589
+ #: includes/class-wcj-left-to-free-shipping.php:139
2590
+ #: includes/class-wcj-left-to-free-shipping.php:171
2591
+ #: includes/class-wcj-left-to-free-shipping.php:209
2592
+ #: includes/class-wcj-multicurrency.php:406
2593
+ #: includes/class-wcj-multicurrency.php:414
2594
+ #: includes/class-wcj-order-numbers.php:210
2595
+ #: includes/class-wcj-order-numbers.php:273
2596
+ #: includes/class-wcj-order-numbers.php:281 includes/class-wcj-orders.php:394
2597
+ #: includes/class-wcj-orders.php:423 includes/class-wcj-orders.php:531
2598
+ #: includes/class-wcj-price-by-country.php:185
2599
+ #: includes/class-wcj-price-by-country.php:207
2600
+ #: includes/class-wcj-price-by-country.php:216
2601
+ #: includes/class-wcj-price-by-country.php:226
2602
+ #: includes/class-wcj-price-by-user-role.php:376
2603
+ #: includes/class-wcj-price-by-user-role.php:393
2604
+ #: includes/class-wcj-price-labels.php:51
2605
+ #: includes/class-wcj-price-labels.php:755
2606
+ #: includes/class-wcj-product-add-to-cart.php:248
2607
+ #: includes/class-wcj-product-add-to-cart.php:348
2608
+ #: includes/class-wcj-product-add-to-cart.php:374
2609
+ #: includes/class-wcj-product-add-to-cart.php:390
2610
+ #: includes/class-wcj-product-add-to-cart.php:432
2611
+ #: includes/class-wcj-product-add-to-cart.php:449
2612
+ #: includes/class-wcj-product-add-to-cart.php:466
2613
+ #: includes/class-wcj-product-addons.php:456
2614
+ #: includes/class-wcj-product-addons.php:534
2615
+ #: includes/class-wcj-product-addons.php:553
2616
+ #: includes/class-wcj-product-addons.php:577
2617
+ #: includes/class-wcj-product-addons.php:648
2618
+ #: includes/class-wcj-product-by-user.php:275
2619
+ #: includes/class-wcj-product-info.php:256
2620
+ #: includes/class-wcj-product-info.php:351
2621
+ #: includes/class-wcj-product-info.php:384
2622
+ #: includes/class-wcj-product-input-fields.php:133
2623
+ #: includes/class-wcj-product-input-fields.php:170
2624
+ #: includes/class-wcj-product-input-fields.php:283
2625
+ #: includes/class-wcj-product-listings.php:448
2626
+ #: includes/class-wcj-product-tabs.php:678
2627
+ #: includes/class-wcj-product-tabs.php:686
2628
+ #: includes/class-wcj-products-xml.php:237
2629
+ #: includes/class-wcj-purchase-data.php:279
2630
+ #: includes/class-wcj-purchase-data.php:286
2631
+ #: includes/class-wcj-purchase-data.php:293
2632
+ #: includes/class-wcj-purchase-data.php:360
2633
+ #: includes/class-wcj-purchase-data.php:367
2634
+ #: includes/class-wcj-purchase-data.php:374
2635
+ #: includes/class-wcj-shipping-calculator.php:134
2636
+ #: includes/class-wcj-shipping-calculator.php:141
2637
+ #: includes/class-wcj-shipping-calculator.php:148
2638
+ #: includes/class-wcj-shipping-calculator.php:155
2639
+ #: includes/class-wcj-shipping.php:179 includes/class-wcj-sku.php:385
2640
+ #: includes/class-wcj-sku.php:393 includes/class-wcj-sorting.php:189
2641
+ #: includes/class-wcj-wholesale-price.php:384
2642
+ #: includes/class-wcj-wholesale-price.php:391
2643
+ #: includes/class-wcj-wholesale-price.php:398
2644
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:379
2645
+ msgid "Enable"
2646
+ msgstr "Aktivieren"
2647
+
2648
+ #: includes/class-wcj-add-to-cart.php:274
2649
+ #: includes/class-wcj-checkout-custom-fields.php:866
2650
+ msgid "categories"
2651
+ msgstr "Kategorien"
2652
+
2653
+ #: includes/class-wcj-add-to-cart.php:285
2654
+ msgid "Button text - single product view"
2655
+ msgstr "Button Text - Einzelprodukt-Ansicht"
2656
+
2657
+ #: includes/class-wcj-add-to-cart.php:293
2658
+ msgid "Button text - product archive (category) view"
2659
+ msgstr "Button Text - Produkt-Archiv(Kategorie)-Ansicht"
2660
+
2661
+ #: includes/class-wcj-address-formats.php:26
2662
+ msgid "Address Formats"
2663
+ msgstr "Adressformate"
2664
+
2665
+ #: includes/class-wcj-address-formats.php:27
2666
+ msgid ""
2667
+ "Set address format in WooCommerce orders on per country basis. Force base "
2668
+ "country display."
2669
+ msgstr ""
2670
+ "Stelle das Adressformat in WooCommerce-Bestellungen auf Länderbasis ein. "
2671
+ "Erzwinge anzeige der Basis-Länderanzeige."
2672
+
2673
+ #: includes/class-wcj-address-formats.php:130
2674
+ #: includes/class-wcj-address-formats.php:136
2675
+ msgid "Force Base Country Display"
2676
+ msgstr "Erzwinge anzeige der Basis-Länderanzeige"
2677
+
2678
+ #: includes/class-wcj-address-formats.php:132
2679
+ msgid "Force Base Country Display Options."
2680
+ msgstr "Erzwinge anzeige der Basis-Länderanzeige-Optionen."
2681
+
2682
+ #: includes/class-wcj-address-formats.php:148
2683
+ msgid "Address Formats by Country"
2684
+ msgstr "Adressformate nach Land"
2685
+
2686
+ #: includes/class-wcj-address-formats.php:150
2687
+ msgid "Address Formats by Country Options."
2688
+ msgstr "Optionen der Adressformate nach Land"
2689
+
2690
+ #: includes/class-wcj-admin-tools.php:25 includes/class-wcj-admin-tools.php:32
2691
+ msgid "Admin Tools"
2692
+ msgstr "Administratorwerkzeuge"
2693
+
2694
+ #: includes/class-wcj-admin-tools.php:26
2695
+ msgid "Booster for WooCommerce debug and log tools."
2696
+ msgstr "Booster for WooCommerce Debug und Protokollwerkzeuge."
2697
+
2698
+ #: includes/class-wcj-admin-tools.php:33
2699
+ msgid "Log."
2700
+ msgstr "Protokoll."
2701
+
2702
+ #: includes/class-wcj-admin-tools.php:34
2703
+ msgid "Log"
2704
+ msgstr "Protokoll"
2705
+
2706
+ #: includes/class-wcj-admin-tools.php:45
2707
+ msgid "Current PHP memory limit: %s."
2708
+ msgstr "Aktuelle PHP-Speichergrenze: %s."
2709
+
2710
+ #: includes/class-wcj-admin-tools.php:68
2711
+ #: includes/class-wcj-export-import.php:444
2712
+ #: includes/class-wcj-export-import.php:512
2713
+ msgid "Product Meta"
2714
+ msgstr "Produkt-Meta"
2715
+
2716
+ #: includes/class-wcj-admin-tools.php:85
2717
+ #: includes/class-wcj-export-import.php:374
2718
+ #: includes/class-wcj-export-import.php:442
2719
+ msgid "Order Meta"
2720
+ msgstr "Bestell-Meta"
2721
+
2722
+ #: includes/class-wcj-admin-tools.php:118
2723
+ msgid "Order Items Meta"
2724
+ msgstr "Bestellgegenstand-Meta"
2725
+
2726
+ #: includes/class-wcj-admin-tools.php:135
2727
+ msgid "Log deleted successfully."
2728
+ msgstr "Protokoll erfolgreich gelöscht."
2729
+
2730
+ #: includes/class-wcj-admin-tools.php:140
2731
+ msgid "Delete Log"
2732
+ msgstr "Protokoll löschen"
2733
+
2734
+ #: includes/class-wcj-admin-tools.php:175
2735
+ msgid "NOT DEFINED"
2736
+ msgstr "NICHT DEFINIERT"
2737
+
2738
+ #: includes/class-wcj-admin-tools.php:188
2739
+ msgid "Admin Tools Options"
2740
+ msgstr "Administrator Werkzeugoptionen"
2741
+
2742
+ #: includes/class-wcj-admin-tools.php:193
2743
+ msgid "Logging"
2744
+ msgstr "Protokolliere"
2745
+
2746
+ #: includes/class-wcj-admin-tools.php:200
2747
+ msgid "Debug"
2748
+ msgstr "Debug"
2749
+
2750
+ #: includes/class-wcj-admin-tools.php:207
2751
+ msgid "PHP Memory Limit"
2752
+ msgstr "PHP Speicher-Limit"
2753
+
2754
+ #: includes/class-wcj-admin-tools.php:208
2755
+ msgid "megabytes."
2756
+ msgstr "Megabytes."
2757
+
2758
+ #: includes/class-wcj-admin-tools.php:209
2759
+ msgid "Set zero to disable."
2760
+ msgstr "Auf Null setzen, um zu deaktivieren."
2761
+
2762
+ #: includes/class-wcj-admin-tools.php:224
2763
+ msgid "System Info"
2764
+ msgstr "System-Info"
2765
+
2766
+ #: includes/class-wcj-admin-tools.php:231
2767
+ msgid "Show Order Meta"
2768
+ msgstr "Zeige Bestell-Meta"
2769
+
2770
+ #: includes/class-wcj-admin-tools.php:238
2771
+ msgid "Show Product Meta"
2772
+ msgstr "Zeige Produkt-Meta"
2773
+
2774
+ #: includes/class-wcj-call-for-price.php:25
2775
+ msgid "Call for Price"
2776
+ msgstr "Preisanfrage"
2777
+
2778
+ #: includes/class-wcj-call-for-price.php:26
2779
+ msgid ""
2780
+ "Create any custom price label for all WooCommerce products with empty price."
2781
+ msgstr ""
2782
+ "Erstelle irgendeine benutzerdefinierte Beschriftung für alle WooCommerce-"
2783
+ "Produkte mit leerem Preis."
2784
+
2785
+ #: includes/class-wcj-call-for-price.php:101
2786
+ msgid "Call for Price Options"
2787
+ msgstr "Preisanfrage-Optionen"
2788
+
2789
+ #: includes/class-wcj-call-for-price.php:103
2790
+ msgid ""
2791
+ "Leave price empty when adding or editing products. Then set the options here."
2792
+ msgstr ""
2793
+ "Preis leer lassen wenn Produkte hinzugefügt oder bearbeitet werden. Dann "
2794
+ "stelle die Optionen hier ein."
2795
+
2796
+ #: includes/class-wcj-call-for-price.php:107
2797
+ msgid "Label to Show on Single"
2798
+ msgstr "Anzuzeigende Beschriftung auf Einzelprodukt"
2799
+
2800
+ #: includes/class-wcj-call-for-price.php:108
2801
+ #: includes/class-wcj-call-for-price.php:119
2802
+ #: includes/class-wcj-call-for-price.php:130
2803
+ #: includes/class-wcj-call-for-price.php:141
2804
+ msgid "This sets the html to output on empty price. Leave blank to disable."
2805
+ msgstr ""
2806
+ "Dies setzt die HTML-Ausgabe auf leeren Preis. Leer lassen, um zu "
2807
+ "deaktivieren."
2808
+
2809
+ #: includes/class-wcj-call-for-price.php:118
2810
+ msgid "Label to Show on Archives"
2811
+ msgstr "Anzuzeigende Beschriftung in Archiven"
2812
+
2813
+ #: includes/class-wcj-call-for-price.php:129
2814
+ msgid "Label to Show on Homepage"
2815
+ msgstr "Anzuzeigende Beschriftung auf Startseite"
2816
+
2817
+ #: includes/class-wcj-call-for-price.php:140
2818
+ msgid "Label to Show on Related"
2819
+ msgstr "Anzuzeigende Beschriftung auf Ähnlichen"
2820
+
2821
+ #: includes/class-wcj-call-for-price.php:151
2822
+ msgid "Hide Sale! Tag"
2823
+ msgstr "Verstecke Sale! Tag"
2824
+
2825
+ #: includes/class-wcj-call-for-price.php:152
2826
+ msgid "Hide the tag"
2827
+ msgstr "Das Etikett (tag) ausblenden"
2828
+
2829
+ #: includes/class-wcj-call-for-price.php:158
2830
+ msgid "Make All Products Call for Price"
2831
+ msgstr "Setze alle Produkte auf Preisanfrage"
2832
+
2833
+ #: includes/class-wcj-call-for-price.php:160
2834
+ msgid ""
2835
+ "Enable this to make all products (except variable) prices empty. When "
2836
+ "checkbox disabled, all prices go back to normal."
2837
+ msgstr ""
2838
+ "Aktiviere dies, um alle Produktpreise (außer Variable) zu entfernen. Wenn "
2839
+ "das Kontrollkästchen deaktiviert ist, gehen alle Preise auf Normal zurück."
2840
+
2841
+ #: includes/class-wcj-cart.php:25
2842
+ msgid "Cart"
2843
+ msgstr "Warenkorb"
2844
+
2845
+ #: includes/class-wcj-cart.php:26
2846
+ msgid "Add custom info to WooCommerce cart page."
2847
+ msgstr "Addiere benutzerdefinierte Info zur WooCommerce Warenkorbseite."
2848
+
2849
+ #: includes/class-wcj-cart.php:31
2850
+ msgid ""
2851
+ "This feature allows you to add a final checkpoint for your customers before "
2852
+ "they proceed to payment."
2853
+ msgstr ""
2854
+ "Mit dieser Funktion kannst Du einen Endkontrollpunkt für Deine Kunden "
2855
+ "hinzufügen, bevor sie zur Zahlung übergehen."
2856
+
2857
+ #: includes/class-wcj-cart.php:32
2858
+ msgid ""
2859
+ "Show custom information at on the cart page using Booster's various "
2860
+ "shortcodes and give your customers a seamless cart experience."
2861
+ msgstr ""
2862
+ "Zeige benutzerdefinierte Informationen auf der Warenkorbseite mit Boosters "
2863
+ "verschiedenen Shortcodes an und gib Deinen Kunden ein nahtloses "
2864
+ "Kassenerlebnis."
2865
+
2866
+ #: includes/class-wcj-cart.php:33
2867
+ msgid ""
2868
+ "For example, show them the total weight of their items, any additional fees "
2869
+ "or taxes, or a confirmation of the address their products are being sent to."
2870
+ msgstr ""
2871
+ "Zum Beispiel, zeigst Du ihnen das Gesamtgewicht ihrer Artikel, jede "
2872
+ "zusätzliche Gebühr oder Steuer, oder eine Bestätigung der Anschrift wohin "
2873
+ "die Produkte geschickt werden sollen."
2874
+
2875
+ #: includes/class-wcj-cart.php:125
2876
+ msgid "Cart Custom Info Blocks"
2877
+ msgstr "benutzerdefinierte Warenkorb-Infoblöcke"
2878
+
2879
+ #: includes/class-wcj-cart.php:132
2880
+ #: includes/class-wcj-checkout-custom-info.php:75
2881
+ #: includes/class-wcj-mini-cart.php:80
2882
+ #: includes/class-wcj-product-custom-info.php:115
2883
+ msgid "Total Blocks"
2884
+ msgstr "Gesamtblöcke"
2885
+
2886
+ #: includes/class-wcj-cart.php:153
2887
+ #: includes/class-wcj-checkout-custom-info.php:90
2888
+ #: includes/class-wcj-mini-cart.php:100
2889
+ #: includes/class-wcj-product-custom-info.php:130
2890
+ msgid "Info Block"
2891
+ msgstr "Infoblock"
2892
+
2893
+ #: includes/class-wcj-cart.php:159
2894
+ #: includes/class-wcj-checkout-custom-info.php:95
2895
+ #: includes/class-wcj-left-to-free-shipping.php:146
2896
+ #: includes/class-wcj-left-to-free-shipping.php:180
2897
+ #: includes/class-wcj-left-to-free-shipping.php:218
2898
+ #: includes/class-wcj-mini-cart.php:106
2899
+ #: includes/class-wcj-product-custom-info.php:135
2900
+ #: includes/class-wcj-product-tabs.php:431
2901
+ #: includes/class-wcj-product-tabs.php:557
2902
+ msgid "Content"
2903
+ msgstr "Inhalt"
2904
+
2905
+ #: includes/class-wcj-cart.php:167
2906
+ #: includes/class-wcj-checkout-custom-info.php:102
2907
+ #: includes/class-wcj-checkout-files-upload.php:641
2908
+ #: includes/class-wcj-left-to-free-shipping.php:154
2909
+ #: includes/class-wcj-left-to-free-shipping.php:188
2910
+ #: includes/class-wcj-left-to-free-shipping.php:226
2911
+ #: includes/class-wcj-mini-cart.php:114
2912
+ #: includes/class-wcj-product-custom-info.php:142
2913
+ #: includes/class-wcj-product-info.php:263
2914
+ #: includes/class-wcj-product-info.php:366
2915
+ #: includes/class-wcj-product-info.php:399
2916
+ #: includes/class-wcj-product-listings.php:471
2917
+ msgid "Position"
2918
+ msgstr "Stelle"
2919
+
2920
+ #: includes/class-wcj-cart.php:176
2921
+ #: includes/class-wcj-checkout-custom-info.php:139
2922
+ #: includes/class-wcj-mini-cart.php:127
2923
+ #: includes/class-wcj-product-custom-info.php:168
2924
+ msgid "Position Order (i.e. Priority)"
2925
+ msgstr "Positionsreihenfolge (d.h. Priorität)"
2926
+
2927
+ #: includes/class-wcj-cart.php:193
2928
+ msgid "Cart Items Table Custom Info"
2929
+ msgstr "benutzerdefinierte Warenkorb-Artikel Tabellen-Info"
2930
+
2931
+ #: includes/class-wcj-cart.php:200
2932
+ msgid "Add to Each Item Name"
2933
+ msgstr "zu jedem Artikelnamen hinzufügen"
2934
+
2935
+ #: includes/class-wcj-cart.php:201
2936
+ msgid ""
2937
+ "You can use shortcodes here. E.g.: [wcj_product_sku]. Leave blank to disable."
2938
+ msgstr ""
2939
+ "Du kannst hier Shortcodes verwenden. z.B.: [wcj_product_sku]. Leer lassen, "
2940
+ "um zu deaktivieren."
2941
+
2942
+ #: includes/class-wcj-checkout-core-fields.php:25
2943
+ msgid "Checkout Core Fields"
2944
+ msgstr "Kassen-Basisfelder"
2945
+
2946
+ #: includes/class-wcj-checkout-core-fields.php:26
2947
+ msgid ""
2948
+ "Customize WooCommerce core checkout fields. Disable/enable fields, set "
2949
+ "required, change labels and/or placeholders."
2950
+ msgstr ""
2951
+ "Anpassung WooCommerce Basis-Kassenfelder. Deaktivieren/aktivieren Felder, "
2952
+ "setzen Benötigte, ändern Beschriftungen und/oder Platzhalter."
2953
+
2954
+ #: includes/class-wcj-checkout-core-fields.php:213
2955
+ msgid "Checkout Core Fields Options"
2956
+ msgstr "Kassen-Basisfelder-Optionen"
2957
+
2958
+ #: includes/class-wcj-checkout-core-fields.php:225
2959
+ #: includes/classes/class-wcj-module.php:415
2960
+ msgid "enabled"
2961
+ msgstr "aktiviert"
2962
+
2963
+ #: includes/class-wcj-checkout-core-fields.php:230
2964
+ #: includes/class-wcj-checkout-core-fields.php:244
2965
+ #: includes/class-wcj-checkout-core-fields.php:278
2966
+ #: includes/class-wcj-product-listings.php:464
2967
+ msgid "Default"
2968
+ msgstr "Standard"
2969
+
2970
+ #: includes/class-wcj-checkout-core-fields.php:231
2971
+ #: includes/class-wcj-checkout-custom-fields.php:668
2972
+ #: includes/class-wcj-checkout-files-upload.php:629
2973
+ #: includes/class-wcj-export-import.php:358
2974
+ #: includes/class-wcj-export-import.php:426
2975
+ #: includes/class-wcj-export-import.php:496
2976
+ #: includes/class-wcj-global-discount.php:243 includes/class-wcj-orders.php:463
2977
+ #: includes/class-wcj-price-by-user-role.php:142
2978
+ #: includes/class-wcj-product-addons.php:442
2979
+ #: includes/class-wcj-product-bookings.php:417
2980
+ #: includes/class-wcj-product-open-pricing.php:178
2981
+ #: includes/class-wcj-product-price-by-formula.php:237
2982
+ #: includes/class-wcj-products-xml.php:236
2983
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:37
2984
+ msgid "Enabled"
2985
+ msgstr "Aktiviert"
2986
+
2987
+ #: includes/class-wcj-checkout-core-fields.php:232
2988
+ #: includes/class-wcj-pdf-invoicing.php:368
2989
+ #: includes/class-wcj-product-tabs.php:440
2990
+ msgid "Disabled"
2991
+ msgstr "Deaktiviert"
2992
+
2993
+ #: includes/class-wcj-checkout-core-fields.php:239
2994
+ #: includes/class-wcj-checkout-custom-fields.php:807
2995
+ msgid "required"
2996
+ msgstr "benötigt"
2997
+
2998
+ #: includes/class-wcj-checkout-core-fields.php:245
2999
+ #: includes/class-wcj-checkout-files-upload.php:635
3000
+ #: includes/class-wcj-eu-vat-number.php:390
3001
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:207
3002
+ msgid "Required"
3003
+ msgstr "Erforderlich"
3004
+
3005
+ #: includes/class-wcj-checkout-core-fields.php:246
3006
+ msgid "Not Required"
3007
+ msgstr "Nicht benötigt"
3008
+
3009
+ #: includes/class-wcj-checkout-core-fields.php:253
3010
+ #: includes/class-wcj-checkout-custom-fields.php:815
3011
+ msgid "label"
3012
+ msgstr "Beschriftung"
3013
+
3014
+ #: includes/class-wcj-checkout-core-fields.php:254
3015
+ #: includes/class-wcj-checkout-core-fields.php:264
3016
+ msgid "Leave blank for WooCommerce defaults."
3017
+ msgstr "Leer lassen für WooCommerce-Voreinstellung."
3018
+
3019
+ #: includes/class-wcj-checkout-core-fields.php:263
3020
+ #: includes/class-wcj-checkout-custom-fields.php:823
3021
+ msgid "placeholder"
3022
+ msgstr "Platzhalter"
3023
+
3024
+ #: includes/class-wcj-checkout-core-fields.php:273
3025
+ #: includes/class-wcj-checkout-custom-fields.php:845
3026
+ msgid "class"
3027
+ msgstr "class"
3028
+
3029
+ #: includes/class-wcj-checkout-core-fields.php:279
3030
+ msgid "Align Left"
3031
+ msgstr "Ausrichtung Links"
3032
+
3033
+ #: includes/class-wcj-checkout-core-fields.php:280
3034
+ msgid "Align Right"
3035
+ msgstr "Ausrichtung Rechts"
3036
+
3037
+ #: includes/class-wcj-checkout-core-fields.php:281
3038
+ msgid "Full Row"
3039
+ msgstr "Gesamte Reihe"
3040
+
3041
+ #: includes/class-wcj-checkout-custom-fields.php:25
3042
+ msgid "Checkout Custom Fields"
3043
+ msgstr "benutzerdefinierte Kassenfelder"
3044
+
3045
+ #: includes/class-wcj-checkout-custom-fields.php:26
3046
+ msgid "Add custom fields to WooCommerce checkout page."
3047
+ msgstr "Benutzerdefinierte Felder der WooCommerce-Kassenseite hinzufügen"
3048
+
3049
+ #: includes/class-wcj-checkout-custom-fields.php:599
3050
+ msgid "Checkout Custom Fields Options"
3051
+ msgstr "Benutzerdefinierte Felder-Optionen der Kasse"
3052
+
3053
+ #: includes/class-wcj-checkout-custom-fields.php:605
3054
+ msgid "Add All Fields to Admin Emails"
3055
+ msgstr "Alle Felder den Administrator-Emails hinzufügen"
3056
+
3057
+ #: includes/class-wcj-checkout-custom-fields.php:606
3058
+ #: includes/class-wcj-checkout-custom-fields.php:613
3059
+ #: includes/class-wcj-checkout-custom-fields.php:620
3060
+ #: includes/class-wcj-export-import.php:315 includes/class-wcj-general.php:147
3061
+ #: includes/class-wcj-order-custom-statuses.php:251
3062
+ #: includes/class-wcj-order-custom-statuses.php:326
3063
+ #: includes/class-wcj-order-custom-statuses.php:333
3064
+ #: includes/class-wcj-order-min-amount.php:233
3065
+ #: includes/class-wcj-orders.php:441 includes/class-wcj-orders.php:515
3066
+ #: includes/class-wcj-product-by-user.php:282
3067
+ #: includes/class-wcj-purchase-data.php:391 includes/class-wcj-sku.php:400
3068
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:359
3069
+ msgid "Add"
3070
+ msgstr "Hinzufügen"
3071
+
3072
+ #: includes/class-wcj-checkout-custom-fields.php:612
3073
+ msgid "Add All Fields to Customers Emails"
3074
+ msgstr "Alle Felder den Benutzerdefinierte-Emails hinzufügen"
3075
+
3076
+ #: includes/class-wcj-checkout-custom-fields.php:619
3077
+ msgid "Add All Fields to \"Order Received\" Page"
3078
+ msgstr "Alle Felder den \"Bestellung erhalten\"-Seite hinzufügen"
3079
+
3080
+ #: includes/class-wcj-checkout-custom-fields.php:631
3081
+ msgid "The Fields"
3082
+ msgstr "Die Felder"
3083
+
3084
+ #: includes/class-wcj-checkout-custom-fields.php:636
3085
+ msgid "Custom Fields Number"
3086
+ msgstr "Benutzerdefinierte Felder-Nummer"
3087
+
3088
+ #: includes/class-wcj-checkout-custom-fields.php:667
3089
+ msgid "Custom Field"
3090
+ msgstr "Benutzerdefiniertes Feld"
3091
+
3092
+ #: includes/class-wcj-checkout-custom-fields.php:678
3093
+ msgid "type"
3094
+ msgstr "Art"
3095
+
3096
+ #: includes/class-wcj-checkout-custom-fields.php:683
3097
+ #: includes/class-wcj-more-button-labels.php:58
3098
+ #: includes/class-wcj-product-listings.php:489
3099
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:48
3100
+ msgid "Text"
3101
+ msgstr "Text"
3102
+
3103
+ #: includes/class-wcj-checkout-custom-fields.php:684
3104
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:49
3105
+ msgid "Textarea"
3106
+ msgstr "Textbereich"
3107
+
3108
+ #: includes/class-wcj-checkout-custom-fields.php:685
3109
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:50
3110
+ msgid "Number"
3111
+ msgstr "Nummer"
3112
+
3113
+ #: includes/class-wcj-checkout-custom-fields.php:686
3114
+ #: includes/class-wcj-product-addons.php:471
3115
+ #: includes/class-wcj-product-addons.php:589
3116
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:51
3117
+ msgid "Checkbox"
3118
+ msgstr "Auswahl-Box"
3119
+
3120
+ #: includes/class-wcj-checkout-custom-fields.php:688
3121
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:53
3122
+ msgid "Datepicker"
3123
+ msgstr "Datumswähler"
3124
+
3125
+ #: includes/class-wcj-checkout-custom-fields.php:689
3126
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:54
3127
+ msgid "Weekpicker"
3128
+ msgstr "Wochenwähler"
3129
+
3130
+ #: includes/class-wcj-checkout-custom-fields.php:690
3131
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:55
3132
+ msgid "Timepicker"
3133
+ msgstr "Zeitwähler"
3134
+
3135
+ #: includes/class-wcj-checkout-custom-fields.php:691
3136
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:56
3137
+ msgid "Select"
3138
+ msgstr "Auswählen"
3139
+
3140
+ #: includes/class-wcj-checkout-custom-fields.php:692
3141
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:57
3142
+ msgid "Radio"
3143
+ msgstr "Radio"
3144
+
3145
+ #: includes/class-wcj-checkout-custom-fields.php:693
3146
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:58
3147
+ msgid "Password"
3148
+ msgstr "Passwort"
3149
+
3150
+ #: includes/class-wcj-checkout-custom-fields.php:694
3151
+ #: includes/class-wcj-orders.php:303 includes/class-wcj-orders.php:440
3152
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:59
3153
+ #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:90
3154
+ #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:104
3155
+ msgid "Country"
3156
+ msgstr "Land"
3157
+
3158
+ #: includes/class-wcj-checkout-custom-fields.php:695
3159
+ msgid "State"
3160
+ msgstr "Bundesland"
3161
+
3162
+ #: includes/class-wcj-checkout-custom-fields.php:696
3163
+ #: includes/export/class-wcj-fields-helper.php:76
3164
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:61
3165
+ #: includes/reports/wcj-class-reports-customers.php:92
3166
+ msgid "Email"
3167
+ msgstr "Email"
3168
+
3169
+ #: includes/class-wcj-checkout-custom-fields.php:697
3170
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:62
3171
+ msgid "Phone"
3172
+ msgstr "Telefon"
3173
+
3174
+ #: includes/class-wcj-checkout-custom-fields.php:703
3175
+ msgid ""
3176
+ "options (only if \"select\" or \"radio\" type is selected). One option per "
3177
+ "line"
3178
+ msgstr ""
3179
+ "Optionen (nur wenn \"Auswählen\" oder \"Radio\" ausgewählt ist). Eine Option "
3180
+ "pro Zeile"
3181
+
3182
+ #: includes/class-wcj-checkout-custom-fields.php:712
3183
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:79
3184
+ msgid "If checkbox is selected, set value for ON here"
3185
+ msgstr "Wenn Auswahlbox ausgewählt ist, setze hier den Wert für AN"
3186
+
3187
+ #: includes/class-wcj-checkout-custom-fields.php:714
3188
+ #: includes/class-wcj-eu-vat-number.php:391
3189
+ #: includes/class-wcj-eu-vat-number.php:398
3190
+ #: includes/class-wcj-eu-vat-number.php:416
3191
+ #: includes/class-wcj-eu-vat-number.php:431
3192
+ #: includes/class-wcj-eu-vat-number.php:438
3193
+ #: includes/class-wcj-eu-vat-number.php:456
3194
+ #: includes/class-wcj-price-by-user-role.php:139
3195
+ #: includes/class-wcj-price-by-user-role.php:182
3196
+ #: includes/class-wcj-product-add-to-cart.php:212
3197
+ #: includes/class-wcj-product-add-to-cart.php:222
3198
+ #: includes/class-wcj-product-addons.php:439
3199
+ #: includes/class-wcj-product-addons.php:461
3200
+ #: includes/class-wcj-product-addons.php:509
3201
+ #: includes/class-wcj-product-bookings.php:414
3202
+ #: includes/class-wcj-product-images.php:210
3203
+ #: includes/class-wcj-product-images.php:220
3204
+ #: includes/class-wcj-product-images.php:230
3205
+ #: includes/class-wcj-product-open-pricing.php:175
3206
+ #: includes/class-wcj-product-price-by-formula.php:234
3207
+ #: includes/class-wcj-wholesale-price.php:263
3208
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:82
3209
+ #: includes/widgets/class-wcj-widget-country-switcher.php:91
3210
+ msgid "Yes"
3211
+ msgstr "Ja"
3212
+
3213
+ #: includes/class-wcj-checkout-custom-fields.php:720
3214
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:87
3215
+ msgid "If checkbox is selected, set value for OFF here"
3216
+ msgstr "Wenn Auswahlbox ausgewählt ist, setze hier den Wert für AUS"
3217
+
3218
+ #: includes/class-wcj-checkout-custom-fields.php:722
3219
+ #: includes/class-wcj-price-by-user-role.php:140
3220
+ #: includes/class-wcj-price-by-user-role.php:183
3221
+ #: includes/class-wcj-product-add-to-cart.php:213
3222
+ #: includes/class-wcj-product-add-to-cart.php:223
3223
+ #: includes/class-wcj-product-addons.php:440
3224
+ #: includes/class-wcj-product-addons.php:462
3225
+ #: includes/class-wcj-product-addons.php:510
3226
+ #: includes/class-wcj-product-bookings.php:415
3227
+ #: includes/class-wcj-product-images.php:211
3228
+ #: includes/class-wcj-product-images.php:221
3229
+ #: includes/class-wcj-product-images.php:231
3230
+ #: includes/class-wcj-product-open-pricing.php:176
3231
+ #: includes/class-wcj-product-price-by-formula.php:235
3232
+ #: includes/class-wcj-wholesale-price.php:264
3233
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:90
3234
+ #: includes/widgets/class-wcj-widget-country-switcher.php:90
3235
+ msgid "No"
3236
+ msgstr "Nein"
3237
+
3238
+ #: includes/class-wcj-checkout-custom-fields.php:728
3239
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:95
3240
+ msgid "If checkbox is selected, set default value here"
3241
+ msgstr "Wenn Auswahlbox ausgewählt ist, setze hier den Voreinstellungs-Wert"
3242
+
3243
+ #: includes/class-wcj-checkout-custom-fields.php:732
3244
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:100
3245
+ msgid "Not Checked"
3246
+ msgstr "Nicht geprüft"
3247
+
3248
+ #: includes/class-wcj-checkout-custom-fields.php:733
3249
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:101
3250
+ msgid "Checked"
3251
+ msgstr "Geprüft"
3252
+
3253
+ #: includes/class-wcj-checkout-custom-fields.php:739
3254
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:124
3255
+ msgid ""
3256
+ "If datepicker/weekpicker is selected, set date format here. Visit <a "
3257
+ "href=\"https://codex.wordpress.org/Formatting_Date_and_Time\" "
3258
+ "target=\"_blank\">documentation on date and time formatting</a> for valid "
3259
+ "date formats."
3260
+ msgstr ""
3261
+ "Wenn Datums-/Wochenwählers ausgewählt ist, stelle hier das Datumsformat ein. "
3262
+ "Besuche <a href=\"https://codex.wordpress.org/Formatting_Date_and_Time\" "
3263
+ "target=\"_blank\">Dokumentation zur Formatierung des Datums und der "
3264
+ "Uhrzeit</a> für gültige Datumsformate."
3265
+
3266
+ #: includes/class-wcj-checkout-custom-fields.php:740
3267
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:125
3268
+ msgid "Leave blank to use your current WordPress format"
3269
+ msgstr "Leer lassen, um Ihr aktuelles WordPress-Format zu verwenden"
3270
+
3271
+ #: includes/class-wcj-checkout-custom-fields.php:747
3272
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:133
3273
+ msgid "If datepicker/weekpicker is selected, set min date (in days) here"
3274
+ msgstr ""
3275
+ "Wenn Datums-/Wochenwählers ausgewählt ist, stelle hier Mindest-Datum (in "
3276
+ "Tagen) ein"
3277
+
3278
+ #: includes/class-wcj-checkout-custom-fields.php:754
3279
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:141
3280
+ msgid "If datepicker/weekpicker is selected, set max date (in days) here"
3281
+ msgstr ""
3282
+ "Wenn Datums-/Wochenwählers ausgewählt ist, stelle hier Maximal-Datum (in "
3283
+ "Tagen) ein"
3284
+
3285
+ #: includes/class-wcj-checkout-custom-fields.php:761
3286
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:149
3287
+ msgid ""
3288
+ "If datepicker/weekpicker is selected, set if you want to add year selector"
3289
+ msgstr ""
3290
+ "Wenn Datums-/Wochenwähler ausgewählt ist, stelle ein, ob auch ein "
3291
+ "Jahreswähler hinzugefügt werden soll"
3292
+
3293
+ #: includes/class-wcj-checkout-custom-fields.php:768
3294
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:157
3295
+ msgid ""
3296
+ "If datepicker/weekpicker is selected, and year selector is enabled, set year "
3297
+ "range here"
3298
+ msgstr ""
3299
+ "Wenn Datums-/Wochenwähler ausgewählt und Jahreswähler aktiviert ist, setze "
3300
+ "hier den Jahresumfang ein"
3301
+
3302
+ #: includes/class-wcj-checkout-custom-fields.php:769
3303
+ msgid ""
3304
+ "The range of years displayed in the year drop-down: either relative to "
3305
+ "today's year (\"-nn:+nn\"), relative to the currently selected year (\"c-nn:"
3306
+ "c+nn\"), absolute (\"nnnn:nnnn\"), or combinations of these formats (\"nnnn:-"
3307
+ "nn\"). Note that this option only affects what appears in the drop-down, to "
3308
+ "restrict which dates may be selected use the minDate and/or maxDate options."
3309
+ msgstr ""
3310
+ "Der Umfang der Jahre, die in der Dropdown-Liste angezeigt wird: Entweder im "
3311
+ "Verhältnis zum aktuellen Jahr (\"-nn:+nn\"), bezogen auf das aktuell "
3312
+ "ausgewählte Jahr (\"c-nn:c+nn\"), absolut (\"nnnn:nnnn\"), oder "
3313
+ "Kombinationen dieser Formate (\"nnnn:-nn\"). Beachte, dass diese Option nur "
3314
+ "beeinflusst, was in der Dropdown-Liste angezeigt wird, um festzulegen, "
3315
+ "welche Daten ausgewählt werden können, verwende die Optionen minDate "
3316
+ "und/oder maxDate."
3317
+
3318
+ #: includes/class-wcj-checkout-custom-fields.php:776
3319
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:166
3320
+ msgid "If datepicker/weekpicker is selected, set first week day here"
3321
+ msgstr ""
3322
+ "Wenn Datums-/Wochenwähler ausgewählt ist, lege den ersten Tag der Woche hier "
3323
+ "fest"
3324
+
3325
+ #: includes/class-wcj-checkout-custom-fields.php:781
3326
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:171
3327
+ msgid "Sunday"
3328
+ msgstr "Sonntag"
3329
+
3330
+ #: includes/class-wcj-checkout-custom-fields.php:782
3331
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:172
3332
+ msgid "Monday"
3333
+ msgstr "Montag"
3334
+
3335
+ #: includes/class-wcj-checkout-custom-fields.php:783
3336
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:173
3337
+ msgid "Tuesday"
3338
+ msgstr "Dienstag"
3339
+
3340
+ #: includes/class-wcj-checkout-custom-fields.php:784
3341
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:174
3342
+ msgid "Wednesday"
3343
+ msgstr "Mittwoch"
3344
+
3345
+ #: includes/class-wcj-checkout-custom-fields.php:785
3346
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:175
3347
+ msgid "Thursday"
3348
+ msgstr "Donnerstag"
3349
+
3350
+ #: includes/class-wcj-checkout-custom-fields.php:786
3351
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:176
3352
+ msgid "Friday"
3353
+ msgstr "Freitag"
3354
+
3355
+ #: includes/class-wcj-checkout-custom-fields.php:787
3356
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:177
3357
+ msgid "Saturday"
3358
+ msgstr "Samstag"
3359
+
3360
+ #: includes/class-wcj-checkout-custom-fields.php:792
3361
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:183
3362
+ msgid ""
3363
+ "If timepicker is selected, set time format here. Visit <a href=\"http:"
3364
+ "//timepicker.co/options/\" target=\"_blank\">timepicker options page</a> for "
3365
+ "valid time formats."
3366
+ msgstr ""
3367
+ "Wenn der Zeitwähler ausgewählt ist, stelle hier das Zeitformat ein. Besuche "
3368
+ "<a href=\"http://timepicker.co/options/\" target=\"_blank\">Zeitwähler-"
3369
+ "Optionen-Seite</a> für gültige Zeitformate."
3370
+
3371
+ #: includes/class-wcj-checkout-custom-fields.php:800
3372
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:191
3373
+ msgid "If timepicker is selected, set interval (in minutes) here"
3374
+ msgstr ""
3375
+ "Wenn der Zeitwähler ausgewählt ist, stelle hier den Intervall (in Minuten) "
3376
+ "ein"
3377
+
3378
+ #: includes/class-wcj-checkout-custom-fields.php:831
3379
+ msgid "section"
3380
+ msgstr "Bereich"
3381
+
3382
+ #: includes/class-wcj-checkout-custom-fields.php:836
3383
+ #: includes/class-wcj-checkout-custom-info.php:110
3384
+ #: includes/class-wcj-empty-cart-button.php:117
3385
+ #: includes/class-wcj-left-to-free-shipping.php:233
3386
+ msgid "Billing"
3387
+ msgstr "Rechnungsadresse:"
3388
+
3389
+ #: includes/class-wcj-checkout-custom-fields.php:837
3390
+ #: includes/class-wcj-checkout-custom-info.php:111
3391
+ #: includes/class-wcj-empty-cart-button.php:118
3392
+ #: includes/class-wcj-left-to-free-shipping.php:234
3393
+ #: includes/class-wcj-price-by-user-role.php:392
3394
+ #: includes/class-wcj-shipping.php:25
3395
+ msgid "Shipping"
3396
+ msgstr "Versand"
3397
+
3398
+ #: includes/class-wcj-checkout-custom-fields.php:838
3399
+ #: includes/export/class-wcj-fields-helper.php:121
3400
+ #: includes/export/class-wcj-fields-helper.php:206
3401
+ msgid "Order Notes"
3402
+ msgstr "Bestellnotizen"
3403
+
3404
+ #: includes/class-wcj-checkout-custom-fields.php:839
3405
+ msgid "Account"
3406
+ msgstr "Konto"
3407
+
3408
+ #: includes/class-wcj-checkout-custom-fields.php:850
3409
+ #: includes/class-wcj-eu-vat-number.php:409
3410
+ msgid "Wide"
3411
+ msgstr "Breit"
3412
+
3413
+ #: includes/class-wcj-checkout-custom-fields.php:851
3414
+ #: includes/class-wcj-eu-vat-number.php:410
3415
+ msgid "First"
3416
+ msgstr "Erste"
3417
+
3418
+ #: includes/class-wcj-checkout-custom-fields.php:852
3419
+ #: includes/class-wcj-eu-vat-number.php:411
3420
+ msgid "Last"
3421
+ msgstr "Letzte"
3422
+
3423
+ #: includes/class-wcj-checkout-custom-fields.php:858
3424
+ msgid "clear"
3425
+ msgstr "klar"
3426
+
3427
+ #: includes/class-wcj-checkout-custom-fields.php:867
3428
+ msgid ""
3429
+ "Show this field only if there is a product of selected category in cart."
3430
+ msgstr ""
3431
+ "Zeige dieses Feld nur, wenn sich ein Produkt, mit ausgewählter Kategorie, im "
3432
+ "Warenkorb befindet."
3433
+
3434
+ #: includes/class-wcj-checkout-custom-fields.php:877
3435
+ msgid "products"
3436
+ msgstr "Produkte"
3437
+
3438
+ #: includes/class-wcj-checkout-custom-fields.php:878
3439
+ msgid "Show this field only if there is a selected product in cart."
3440
+ msgstr ""
3441
+ "Zeige dieses Feld nur, wenn sich ein ausgewähltes Produkt im Warenkorb "
3442
+ "befindet."
3443
+
3444
+ #: includes/class-wcj-checkout-custom-info.php:26
3445
+ msgid "Checkout Custom Info"
3446
+ msgstr "Benutzerdefinierte Kasse-Info"
3447
+
3448
+ #: includes/class-wcj-checkout-custom-info.php:27
3449
+ msgid "Add custom info to WooCommerce checkout page."
3450
+ msgstr "Benutzerdefinierte Information der WooCommerce-Kassen-Seite hinzufügen"
3451
+
3452
+ #: includes/class-wcj-checkout-custom-info.php:70
3453
+ msgid "Checkout Custom Info Blocks"
3454
+ msgstr "Benutzerdefinierte Kasse-Info-Blöcke"
3455
+
3456
+ #: includes/class-wcj-checkout-custom-info.php:108
3457
+ #: includes/class-wcj-checkout-files-upload.php:645
3458
+ #: includes/class-wcj-empty-cart-button.php:115
3459
+ #: includes/class-wcj-left-to-free-shipping.php:231
3460
+ msgid "Before checkout form"
3461
+ msgstr "Vor-der-Kasse-Formular"
3462
+
3463
+ #: includes/class-wcj-checkout-custom-info.php:109
3464
+ #: includes/class-wcj-empty-cart-button.php:116
3465
+ #: includes/class-wcj-left-to-free-shipping.php:232
3466
+ msgid "Before customer details"
3467
+ msgstr "Vor Kundendetails"
3468
+
3469
+ #: includes/class-wcj-checkout-custom-info.php:112
3470
+ #: includes/class-wcj-empty-cart-button.php:119
3471
+ #: includes/class-wcj-left-to-free-shipping.php:235
3472
+ msgid "After customer details"
3473
+ msgstr "Nach Kundendetails"
3474
+
3475
+ #: includes/class-wcj-checkout-custom-info.php:113
3476
+ #: includes/class-wcj-empty-cart-button.php:120
3477
+ #: includes/class-wcj-left-to-free-shipping.php:236
3478
+ msgid "Before order review"
3479
+ msgstr "Vor Bestellübersicht"
3480
+
3481
+ #: includes/class-wcj-checkout-custom-info.php:114
3482
+ #: includes/class-wcj-empty-cart-button.php:121
3483
+ #: includes/class-wcj-left-to-free-shipping.php:237
3484
+ msgid "Order review"
3485
+ msgstr "Bestellübersicht"
3486
+
3487
+ #: includes/class-wcj-checkout-custom-info.php:115
3488
+ #: includes/class-wcj-empty-cart-button.php:122
3489
+ #: includes/class-wcj-left-to-free-shipping.php:238
3490
+ msgid "After order review"
3491
+ msgstr "Nach Bestellübersicht"
3492
+
3493
+ #: includes/class-wcj-checkout-custom-info.php:116
3494
+ #: includes/class-wcj-checkout-files-upload.php:646
3495
+ #: includes/class-wcj-empty-cart-button.php:123
3496
+ #: includes/class-wcj-left-to-free-shipping.php:239
3497
+ msgid "After checkout form"
3498
+ msgstr "Nach Kassen-Formular"
3499
+
3500
+ #: includes/class-wcj-checkout-files-upload.php:28
3501
+ msgid "Checkout Files Upload"
3502
+ msgstr "Kasse Dateien-Upload"
3503
+
3504
+ #: includes/class-wcj-checkout-files-upload.php:29
3505
+ msgid "Let customers upload files on (or after) WooCommerce checkout."
3506
+ msgstr ""
3507
+ "Lasse Kunden Dateien hochladen während (oder nach) der WooCommerce-Kasse"
3508
+
3509
+ #: includes/class-wcj-checkout-files-upload.php:88
3510
+ #: includes/class-wcj-checkout-files-upload.php:627
3511
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:52
3512
+ msgid "File"
3513
+ msgstr "Datei"
3514
+
3515
+ #: includes/class-wcj-checkout-files-upload.php:110
3516
+ #: includes/class-wcj-checkout-files-upload.php:712
3517
+ msgid "File is required!"
3518
+ msgstr "Datei wird benötigt!"
3519
+
3520
+ #: includes/class-wcj-checkout-files-upload.php:120
3521
+ #: includes/class-wcj-checkout-files-upload.php:257
3522
+ #: includes/class-wcj-checkout-files-upload.php:705
3523
+ msgid "Wrong file type: \"%s\"!"
3524
+ msgstr "Falsche Dateiart: \"%s\"!"
3525
+
3526
+ #: includes/class-wcj-checkout-files-upload.php:140
3527
+ msgid "Uploaded Files"
3528
+ msgstr "Hochgeladene Dateien"
3529
+
3530
+ #: includes/class-wcj-checkout-files-upload.php:172
3531
+ msgid "No files uploaded."
3532
+ msgstr "Keine Dateien hochgeladen."
3533
+
3534
+ #: includes/class-wcj-checkout-files-upload.php:229
3535
+ #: includes/class-wcj-checkout-files-upload.php:237
3536
+ #: includes/class-wcj-checkout-files-upload.php:735
3537
+ msgid "File \"%s\" was successfully removed."
3538
+ msgstr "Datei \"%s\" wurde erfolgreich entfernt."
3539
+
3540
+ #: includes/class-wcj-checkout-files-upload.php:269
3541
+ #: includes/class-wcj-checkout-files-upload.php:720
3542
+ msgid "File \"%s\" was successfully uploaded."
3543
+ msgstr "Datei \"%s\" wurde erfolgreich hochgeladen."
3544
+
3545
+ #: includes/class-wcj-checkout-files-upload.php:277
3546
+ #: includes/class-wcj-checkout-files-upload.php:727
3547
+ msgid "Please select file to upload!"
3548
+ msgstr "Wähle bitte die hochzuladende Datei aus!"
3549
+
3550
+ #: includes/class-wcj-checkout-files-upload.php:491
3551
+ #: includes/class-wcj-checkout-files-upload.php:492
3552
+ #: includes/class-wcj-checkout-files-upload.php:690
3553
+ msgid "Upload"
3554
+ msgstr "Hochladen"
3555
+
3556
+ #: includes/class-wcj-checkout-files-upload.php:500
3557
+ #: includes/class-wcj-checkout-files-upload.php:501
3558
+ #: includes/class-wcj-checkout-files-upload.php:697
3559
+ msgid "Remove"
3560
+ msgstr "Entfernen"
3561
+
3562
+ #: includes/class-wcj-checkout-files-upload.php:606
3563
+ #: includes/class-wcj-currency-per-product.php:281
3564
+ #: includes/class-wcj-eu-vat-number.php:358
3565
+ #: includes/class-wcj-global-discount.php:215
3566
+ #: includes/class-wcj-multicurrency-product-base-price.php:236
3567
+ #: includes/class-wcj-multicurrency.php:385
3568
+ #: includes/class-wcj-payment-gateways-icons.php:95
3569
+ #: includes/class-wcj-payment-gateways-per-category.php:166
3570
+ #: includes/class-wcj-price-by-user-role.php:370
3571
+ #: includes/class-wcj-product-addons.php:642
3572
+ #: includes/class-wcj-product-bookings.php:490
3573
+ #: includes/class-wcj-product-by-user.php:247
3574
+ #: includes/class-wcj-products-xml.php:197
3575
+ #: includes/class-wcj-related-products.php:98
3576
+ #: includes/class-wcj-wholesale-price.php:377
3577
+ msgid "Options"
3578
+ msgstr "Einstellungen"
3579
+
3580
+ #: includes/class-wcj-checkout-files-upload.php:611
3581
+ #: includes/class-wcj-products-xml.php:202
3582
+ msgid "Total Files"
3583
+ msgstr "Gesamtdateien"
3584
+
3585
+ #: includes/class-wcj-checkout-files-upload.php:647
3586
+ msgid "Do not add on checkout"
3587
+ msgstr "Nicht während der Kasse hinzufügen"
3588
+
3589
+ #: includes/class-wcj-checkout-files-upload.php:652
3590
+ msgid "Position order"
3591
+ msgstr "Positionsreihenfolge"
3592
+
3593
+ #: includes/class-wcj-checkout-files-upload.php:661
3594
+ msgid "Add to Thank You page"
3595
+ msgstr "Der Dankes-Seite hinzufügen"
3596
+
3597
+ #: includes/class-wcj-checkout-files-upload.php:667
3598
+ msgid "Add to My Account page"
3599
+ msgstr "Der Mein Konto-Seite hinzufügen"
3600
+
3601
+ #: includes/class-wcj-checkout-files-upload.php:672
3602
+ #: includes/class-wcj-checkout-files-upload.php:846
3603
+ #: includes/class-wcj-order-custom-statuses.php:217
3604
+ #: includes/class-wcj-order-custom-statuses.php:256
3605
+ #: includes/class-wcj-orders.php:469
3606
+ msgid "Label"
3607
+ msgstr "Beschriftung"
3608
+
3609
+ #: includes/class-wcj-checkout-files-upload.php:673
3610
+ msgid "Leave blank to disable label"
3611
+ msgstr "Leer lassen um Beschriftung zu deaktivieren"
3612
+
3613
+ #: includes/class-wcj-checkout-files-upload.php:675
3614
+ msgid "Please select file to upload"
3615
+ msgstr "Wähle bitte eine hochzuladende Datei aus"
3616
+
3617
+ #: includes/class-wcj-checkout-files-upload.php:680
3618
+ msgid "Accepted file types"
3619
+ msgstr "Akzeptierte Dateiarten"
3620
+
3621
+ #: includes/class-wcj-checkout-files-upload.php:681
3622
+ msgid ""
3623
+ "Accepted file types. E.g.: \".jpg,.jpeg,.png\". Leave blank to accept all "
3624
+ "files"
3625
+ msgstr ""
3626
+ "Akzeptierte Dateiarten. z.B.: \".jpg,.jpeg,.png\". Leer lassen um alle "
3627
+ "Dateien zu akzeptieren"
3628
+
3629
+ #: includes/class-wcj-checkout-files-upload.php:688
3630
+ msgid "Label: Upload button"
3631
+ msgstr "Beschriftung: Hochladen-Button"
3632
+
3633
+ #: includes/class-wcj-checkout-files-upload.php:695
3634
+ msgid "Label: Remove button"
3635
+ msgstr "Label: Entfernen-Button"
3636
+
3637
+ #: includes/class-wcj-checkout-files-upload.php:702
3638
+ msgid "Notice: Wrong file type"
3639
+ msgstr "Hinweis: Falsche Dateiart"
3640
+
3641
+ #: includes/class-wcj-checkout-files-upload.php:703
3642
+ #: includes/class-wcj-checkout-files-upload.php:718
3643
+ #: includes/class-wcj-checkout-files-upload.php:733
3644
+ msgid "%s will be replaced with file name"
3645
+ msgstr "%s wird mit Dateinamen ersetzt"
3646
+
3647
+ #: includes/class-wcj-checkout-files-upload.php:710
3648
+ msgid "Notice: File is required"
3649
+ msgstr "Hinweis: Datei wird benötigt"
3650
+
3651
+ #: includes/class-wcj-checkout-files-upload.php:717
3652
+ msgid "Notice: File was successfully uploaded"
3653
+ msgstr "Hinweis: Datei wurde erfolgreich hochgeladen"
3654
+
3655
+ #: includes/class-wcj-checkout-files-upload.php:725
3656
+ msgid "Notice: No file selected"
3657
+ msgstr "Hinweis: Keine Datei ausgewählt"
3658
+
3659
+ #: includes/class-wcj-checkout-files-upload.php:732
3660
+ msgid "Notice: File was successfully removed"
3661
+ msgstr "Hinweis: Datei wurde erfolgreich entfernt"
3662
+
3663
+ #: includes/class-wcj-checkout-files-upload.php:741
3664
+ msgid "PRODUCTS to show this field"
3665
+ msgstr "Diese PRODUKTE zeigen dieses Feld"
3666
+
3667
+ #: includes/class-wcj-checkout-files-upload.php:742
3668
+ msgid ""
3669
+ "To show this field only if at least one selected product is in cart, enter "
3670
+ "products here. Leave blank to show for all products."
3671
+ msgstr ""
3672
+ "Dieses Feld nur zeigen, wenn sich wenigstens ein ausgewähltes Produkt im "
3673
+ "Warenkorb befindet, gib Produkte hier ein. Leer lassen, um es für alle "
3674
+ "Produkte anzuzeigen."
3675
+
3676
+ #: includes/class-wcj-checkout-files-upload.php:751
3677
+ msgid "CATEGORIES to show this field"
3678
+ msgstr "Diese KATEGORIEN zeigen dieses Feld"
3679
+
3680
+ #: includes/class-wcj-checkout-files-upload.php:752
3681
+ msgid ""
3682
+ "To show this field only if at least one product of selected category is in "
3683
+ "cart, enter categories here. Leave blank to show for all products."
3684
+ msgstr ""
3685
+ "Dieses Feld nur zeigen, wenn sich wenigstens ein Produkt ausgewählter "
3686
+ "Kategorie im Warenkorb befindet, gib Kategorien hier ein. Leer lassen, um es "
3687
+ "für alle Produkte anzuzeigen."
3688
+
3689
+ #: includes/class-wcj-checkout-files-upload.php:761
3690
+ msgid "TAGS to show this field"
3691
+ msgstr "Diese STICHWÖRTER zeigen dieses Feld"
3692
+
3693
+ #: includes/class-wcj-checkout-files-upload.php:762
3694
+ msgid ""
3695
+ "To show this field only if at least one product of selected tag is in cart, "
3696
+ "enter tags here. Leave blank to show for all products."
3697
+ msgstr ""
3698
+ "Dieses Feld nur zeigen, wenn sich wenigstens ein Produkt mit ausgewähltem "
3699
+ "Stichwort im Warenkorb befindet, gib die Stichwörter hier ein. Leer lassen, "
3700
+ "um es für alle Produkte anzuzeigen."
3701
+
3702
+ #: includes/class-wcj-checkout-files-upload.php:771
3703
+ msgid "PRODUCTS to hide this field"
3704
+ msgstr "PRODUKTE, um dieses Feld zu verbergen"
3705
+
3706
+ #: includes/class-wcj-checkout-files-upload.php:772
3707
+ msgid ""
3708
+ "To hide this field if at least one selected product is in cart, enter "
3709
+ "products here. Leave blank to show for all products."
3710
+ msgstr ""
3711
+ "Um dieses Feld auszublenden, wenn mindestens ein ausgewähltes Produkt im "
3712
+ "Einkaufswagen ist, gib hier Produkte ein. Leer lassen, um für alle Produkte "
3713
+ "zu zeigen."
3714
+
3715
+ #: includes/class-wcj-checkout-files-upload.php:781
3716
+ msgid "CATEGORIES to hide this field"
3717
+ msgstr "KATEGORIEN, um dieses Feld zu verbergen"
3718
+
3719
+ #: includes/class-wcj-checkout-files-upload.php:782
3720
+ msgid ""
3721
+ "To hide this field if at least one product of selected category is in cart, "
3722
+ "enter categories here. Leave blank to show for all products."
3723
+ msgstr ""
3724
+ "Um dieses Feld auszublenden, wenn mindestens ein Produkt der ausgewählten "
3725
+ "Kategorie im Einkaufswagen ist, gib hier Kategorien ein. Leer lassen, um für "
3726
+ "alle Produkte zu zeigen."
3727
+
3728
+ #: includes/class-wcj-checkout-files-upload.php:791
3729
+ msgid "TAGS to hide this field"
3730
+ msgstr "TAGS um dieses Feld zu verbergen"
3731
+
3732
+ #: includes/class-wcj-checkout-files-upload.php:792
3733
+ msgid ""
3734
+ "To hide this field if at least one product of selected tag is in cart, enter "
3735
+ "tags here. Leave blank to show for all products."
3736
+ msgstr ""
3737
+ "Um dieses Feld auszublenden, wenn mindestens ein Produkt des ausgewählten "
3738
+ "Tags im Einkaufswagen ist, gib hier die Tags ein. Leer lassen, um für alle "
3739
+ "Produkte zu zeigen."
3740
+
3741
+ #: includes/class-wcj-checkout-files-upload.php:809
3742
+ #: includes/class-wcj-product-input-fields.php:247
3743
+ msgid "Emails Options"
3744
+ msgstr "Email-Optionen"
3745
+
3746
+ #: includes/class-wcj-checkout-files-upload.php:814
3747
+ #: includes/class-wcj-product-input-fields.php:253
3748
+ msgid "Attach Files to Admin's New Order Emails"
3749
+ msgstr "Dateien der Administrator-Neue-Bestellung-Emails anhängen"
3750
+
3751
+ #: includes/class-wcj-checkout-files-upload.php:815
3752
+ #: includes/class-wcj-checkout-files-upload.php:822
3753
+ #: includes/class-wcj-product-input-fields.php:254
3754
+ #: includes/class-wcj-product-input-fields.php:262
3755
+ msgid "Attach"
3756
+ msgstr "Anhängen"
3757
+
3758
+ #: includes/class-wcj-checkout-files-upload.php:821
3759
+ #: includes/class-wcj-product-input-fields.php:261
3760
+ msgid "Attach Files to Customer's Processing Order Emails"
3761
+ msgstr "Dateien der Kunden-Bestellbearbeitung-Emails anhängen"
3762
+
3763
+ #: includes/class-wcj-checkout-files-upload.php:834
3764
+ msgid "Form Template Options"
3765
+ msgstr "Formular-Template-Optionen"
3766
+
3767
+ #: includes/class-wcj-checkout-files-upload.php:839
3768
+ #: includes/class-wcj-product-addons.php:655
3769
+ #: includes/class-wcj-product-addons.php:678
3770
+ msgid "Before"
3771
+ msgstr "Davor"
3772
+
3773
+ #: includes/class-wcj-checkout-files-upload.php:847
3774
+ msgid "Replaced values: %field_id%, %field_label%, %required_html%."
3775
+ msgstr "Ersetzte Werte: %field_id%, %field_label%, %required_html%."
3776
+
3777
+ #: includes/class-wcj-checkout-files-upload.php:854
3778
+ #: includes/class-wcj-export-import.php:356
3779
+ #: includes/class-wcj-export-import.php:424
3780
+ #: includes/class-wcj-export-import.php:494
3781
+ msgid "Field"
3782
+ msgstr "Feld"
3783
+
3784
+ #: includes/class-wcj-checkout-files-upload.php:855
3785
+ msgid "Replaced values: %field_html%, %button_html%."
3786
+ msgstr "Ersetzte Werte: %field_html%, %button_html%."
3787
+
3788
+ #: includes/class-wcj-checkout-files-upload.php:862
3789
+ #: includes/class-wcj-product-addons.php:670
3790
+ #: includes/class-wcj-product-addons.php:693
3791
+ msgid "After"
3792
+ msgstr "Danach"
3793
+
3794
+ #: includes/class-wcj-crowdfunding.php:26
3795
+ msgid "Crowdfunding"
3796
+ msgstr "Crowdfunding"
3797
+
3798
+ #: includes/class-wcj-crowdfunding.php:27
3799
+ msgid "Add crowdfunding products to WooCommerce."
3800
+ msgstr "Crowdfunding-Produkte WooCommerce hinzufügen."
3801
+
3802
+ #: includes/class-wcj-crowdfunding.php:67
3803
+ msgid "Goal"
3804
+ msgstr "Ziel"
3805
+
3806
+ #: includes/class-wcj-crowdfunding.php:73
3807
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:71
3808
+ msgid "Start Date"
3809
+ msgstr "Startdatum"
3810
+
3811
+ #: includes/class-wcj-crowdfunding.php:79
3812
+ msgid "Deadline"
3813
+ msgstr "Stichtag"
3814
+
3815
+ #: includes/class-wcj-crowdfunding.php:90
3816
+ msgid "When enabled, module will add Crowdfunding metabox to product edit."
3817
+ msgstr ""
3818
+ "Wenn aktiviert, wird dieses Modul die Crowdfunding-Metabox der "
3819
+ "Produktbearbeitung hinzufügen."
3820
+
3821
+ #: includes/class-wcj-crowdfunding.php:92
3822
+ msgid "To add crowdfunding info to the product, use these shortcodes:"
3823
+ msgstr ""
3824
+ "Um die Crowdfunding-Info dem Produkt hinzuzufügen, nutze diese Shortcodes:"
3825
+
3826
+ #: includes/class-wcj-crowdfunding.php:100
3827
+ msgid "Shortcodes could be used in \"Product Info\" module."
3828
+ msgstr "Shortcodes können im \"Produkt-Info\"-Modul verwendet werden."
3829
+
3830
+ #: includes/class-wcj-crowdfunding.php:102
3831
+ msgid "To change add to cart button labels use \"Add to Cart Labels\" module."
3832
+ msgstr ""
3833
+ "Um \"Dem Warenkorb hinzufügen\" zu ändern, verwende das \"Dem Warenkorb "
3834
+ "hinzufügen-Beschriftungen\"-Modul."
3835
+
3836
+ #: includes/class-wcj-currencies.php:25
3837
+ msgid "Currencies"
3838
+ msgstr "Währungen"
3839
+
3840
+ #: includes/class-wcj-currencies.php:26
3841
+ msgid ""
3842
+ "Add all world currencies to your WooCommerce store; change currency symbol."
3843
+ msgstr ""
3844
+ "Alle Währungen der Welt Deinem WooCommerce-Shop hinzufügen; Ändere das "
3845
+ "Währungssysmbol."
3846
+
3847
+ #: includes/class-wcj-currencies.php:74
3848
+ msgid "Booster: Currency Symbol"
3849
+ msgstr "Booster: Währungssymbol"
3850
+
3851
+ #: includes/class-wcj-currencies.php:75
3852
+ msgid "This sets the currency symbol."
3853
+ msgstr "Dies legt das Währungssymbol fest."
3854
+
3855
+ #: includes/class-wcj-currencies.php:99
3856
+ msgid "Currency Symbol Options"
3857
+ msgstr "Währungssymbol-Optionen"
3858
+
3859
+ #: includes/class-wcj-currencies.php:105
3860
+ msgid "Hide Currency Symbol"
3861
+ msgstr "Währungssymbol verbergen"
3862
+
3863
+ #: includes/class-wcj-currencies.php:106 includes/class-wcj-orders.php:508
3864
+ #: includes/class-wcj-pdf-invoicing.php:400
3865
+ #: includes/class-wcj-product-bookings.php:496
3866
+ #: includes/class-wcj-product-images.php:259
3867
+ #: includes/class-wcj-product-images.php:266
3868
+ #: includes/class-wcj-product-images.php:273
3869
+ #: includes/class-wcj-product-images.php:280
3870
+ #: includes/class-wcj-related-products.php:151
3871
+ #: includes/class-wcj-shipping-calculator.php:168
3872
+ msgid "Hide"
3873
+ msgstr "Ausblenden"
3874
+
3875
+ #: includes/class-wcj-currencies.php:107
3876
+ msgid "Default: no."
3877
+ msgstr "Voreinstellung: Nr."
3878
+
3879
+ #: includes/class-wcj-currencies.php:133
3880
+ msgid "Custom Currencies"
3881
+ msgstr "Benutzerdefinierte Währungen"
3882
+
3883
+ #: includes/class-wcj-currencies.php:139
3884
+ msgid "Total Custom Currencies"
3885
+ msgstr "Gesamte benutzerdefinierte Währungen"
3886
+
3887
+ #: includes/class-wcj-currencies.php:151
3888
+ msgid "Custom Currency"
3889
+ msgstr "Benutzerdefinierte Währungen"
3890
+
3891
+ #: includes/class-wcj-currencies.php:152
3892
+ msgid "Currency Name (required)"
3893
+ msgstr "Währungsname (benötigt)"
3894
+
3895
+ #: includes/class-wcj-currencies.php:160
3896
+ msgid "Currency Code (required)"
3897
+ msgstr "Währungs-Code (benötigt)"
3898
+
3899
+ #: includes/class-wcj-currencies.php:168
3900
+ msgid "Currency Symbol"
3901
+ msgstr "Währungssymbol"
3902
+
3903
+ #: includes/class-wcj-currency-exchange-rates.php:26
3904
+ msgid "Currency Exchange Rates"
3905
+ msgstr "Wechselkurse"
3906
+
3907
+ #: includes/class-wcj-currency-exchange-rates.php:27
3908
+ msgid "Automatic currency exchange rates for WooCommerce."
3909
+ msgstr "Automatische Wechselkurse für WooCommerce."
3910
+
3911
+ #: includes/class-wcj-currency-exchange-rates.php:80
3912
+ #: includes/class-wcj-currency-per-product.php:350
3913
+ #: includes/class-wcj-multicurrency-product-base-price.php:305
3914
+ #: includes/class-wcj-multicurrency.php:491
3915
+ #: includes/class-wcj-payment-gateways-currency.php:275
3916
+ #: includes/class-wcj-price-by-country.php:388
3917
+ msgid "Grab %s rate from Yahoo.com"
3918
+ msgstr "Hole %s Kurs von Yahoo.com"
3919
+
3920
+ #: includes/class-wcj-currency-exchange-rates.php:100
3921
+ #: includes/class-wcj-products-xml.php:223
3922
+ msgid "%s seconds till next update."
3923
+ msgstr "%s Sekunden bis zum nächsten Update."
3924
+
3925
+ #: includes/class-wcj-currency-exchange-rates.php:106
3926
+ #: includes/class-wcj-price-by-country.php:348
3927
+ msgid "Exchange Rates"
3928
+ msgstr "Wechselkurse"
3929
+
3930
+ #: includes/class-wcj-currency-exchange-rates.php:108
3931
+ msgid ""
3932
+ "All currencies from all <strong>enabled</strong> modules will be "
3933
+ "automatically added to the list."
3934
+ msgstr ""
3935
+ "Währungen aller aktivierten Module werden automatisch der Liste hinzugefügt."
3936
+
3937
+ #: includes/class-wcj-currency-exchange-rates.php:113
3938
+ #: includes/class-wcj-currency-per-product.php:286
3939
+ #: includes/class-wcj-multicurrency-product-base-price.php:241
3940
+ #: includes/class-wcj-multicurrency.php:390
3941
+ #: includes/class-wcj-payment-gateways-currency.php:282
3942
+ #: includes/class-wcj-price-by-country.php:351
3943
+ msgid "Exchange Rates Updates"
3944
+ msgstr "Wechselkurs-Aktualisierung"
3945
+
3946
+ #: includes/class-wcj-currency-exchange-rates.php:119
3947
+ #: includes/class-wcj-products-xml.php:291
3948
+ #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:24
3949
+ msgid "Update Every Minute"
3950
+ msgstr "Jede Minute aktualisieren"
3951
+
3952
+ #: includes/class-wcj-currency-exchange-rates.php:120
3953
+ #: includes/class-wcj-products-xml.php:292
3954
+ #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:25
3955
+ msgid "Update Hourly"
3956
+ msgstr "Stündlich aktualisieren"
3957
+
3958
+ #: includes/class-wcj-currency-exchange-rates.php:121
3959
+ #: includes/class-wcj-products-xml.php:293
3960
+ #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:26
3961
+ msgid "Update Twice Daily"
3962
+ msgstr "Zweimal täglich aktivieren"
3963
+
3964
+ #: includes/class-wcj-currency-exchange-rates.php:122
3965
+ #: includes/class-wcj-products-xml.php:294
3966
+ #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:27
3967
+ msgid "Update Daily"
3968
+ msgstr "Täglich aktivieren"
3969
+
3970
+ #: includes/class-wcj-currency-exchange-rates.php:123
3971
+ #: includes/class-wcj-products-xml.php:295
3972
+ #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:28
3973
+ msgid "Update Weekly"
3974
+ msgstr "Wöchentlich aktivieren"
3975
+
3976
+ #: includes/class-wcj-currency-external-products.php:25
3977
+ msgid "Currency for External Products"
3978
+ msgstr "Währung für externe Produkte"
3979
+
3980
+ #: includes/class-wcj-currency-external-products.php:26
3981
+ msgid "Set different currency for external WooCommerce products."
3982
+ msgstr "Lege unterschiedliche Währungen für externe WooCommerce-Produkte fest."
3983
+
3984
+ #: includes/class-wcj-currency-external-products.php:73
3985
+ msgid "Currency for External Products Options"
3986
+ msgstr "Währung für externe-Produkt-Optionen"
3987
+
3988
+ #: includes/class-wcj-currency-external-products.php:79
3989
+ #: includes/class-wcj-currency-per-product.php:334
3990
+ #: includes/class-wcj-multicurrency-product-base-price.php:289
3991
+ #: includes/class-wcj-multicurrency.php:475
3992
+ #: includes/class-wcj-price-by-country.php:338
3993
+ #: includes/class-wcj-price-formats.php:142
3994
+ msgid "Currency"
3995
+ msgstr "Währung"
3996
+
3997
+ #: includes/class-wcj-currency-external-products.php:80
3998
+ msgid "Set currency for all external products."
3999
+ msgstr "Lege die Währung für alle externe Produkte fest."
4000
+
4001
+ #: includes/class-wcj-currency-per-product.php:27
4002
+ msgid "Currency per Product"
4003
+ msgstr "Währung pro Produkt"
4004
+
4005
+ #: includes/class-wcj-currency-per-product.php:28
4006
+ msgid "Display prices for WooCommerce products in different currencies."
4007
+ msgstr "Zeige Preise für WooCommerce-Produkte in verschiedenen Währungen."
4008
+
4009
+ #: includes/class-wcj-currency-per-product.php:100
4010
+ msgctxt "Price range: from-to"
4011
+ msgid "%1$s&ndash;%2$s"
4012
+ msgstr "%1$s&ndash;%2$s"
4013
+
4014
+ #: includes/class-wcj-currency-per-product.php:236
4015
+ #: includes/class-wcj-multicurrency-product-base-price.php:185
4016
+ msgid "Product Currency"
4017
+ msgstr "Produktkategorie"
4018
+
4019
+ #: includes/class-wcj-currency-per-product.php:238
4020
+ msgid "Update product after you change this field's value."
4021
+ msgstr "Produkt aktualisieren, nachdem Du diesen Wert geändert hast."
4022
+
4023
+ #: includes/class-wcj-currency-per-product.php:291
4024
+ #: includes/class-wcj-multicurrency-product-base-price.php:246
4025
+ #: includes/class-wcj-multicurrency.php:395
4026
+ #: includes/class-wcj-payment-gateways-currency.php:287
4027
+ #: includes/class-wcj-price-by-country.php:356
4028
+ msgid "Enter Rates Manually"
4029
+ msgstr "Kurse manuell eingeben"
4030
+
4031
+ #: includes/class-wcj-currency-per-product.php:292
4032
+ #: includes/class-wcj-multicurrency-product-base-price.php:247
4033
+ #: includes/class-wcj-multicurrency.php:396
4034
+ #: includes/class-wcj-payment-gateways-currency.php:288
4035
+ #: includes/class-wcj-price-by-country.php:357
4036
+ msgid "Automatically via Currency Exchange Rates module"
4037
+ msgstr "Automatisch über Wechselkurs-Modul"
4038
+
4039
+ #: includes/class-wcj-currency-per-product.php:295
4040
+ #: includes/class-wcj-multicurrency-product-base-price.php:250
4041
+ #: includes/class-wcj-multicurrency.php:399
4042
+ #: includes/class-wcj-payment-gateways-currency.php:291
4043
+ #: includes/class-wcj-price-by-country.php:360
4044
+ msgid "Visit"
4045
+ msgstr "Besuchen"
4046
+
4047
+ #: includes/class-wcj-currency-per-product.php:295
4048
+ #: includes/class-wcj-multicurrency-product-base-price.php:250
4049
+ #: includes/class-wcj-multicurrency.php:399
4050
+ #: includes/class-wcj-payment-gateways-currency.php:291
4051
+ #: includes/class-wcj-price-by-country.php:360
4052
+ msgid "Currency Exchange Rates module"
4053
+ msgstr "Wechselkurs-Modul"
4054
+
4055
+ #: includes/class-wcj-currency-per-product.php:305
4056
+ #: includes/class-wcj-multicurrency-product-base-price.php:260
4057
+ #: includes/class-wcj-multicurrency.php:445
4058
+ msgid "Currencies Options"
4059
+ msgstr "Währungs-Optionen"
4060
+
4061
+ #: includes/class-wcj-currency-per-product.php:310
4062
+ #: includes/class-wcj-multicurrency-product-base-price.php:265
4063
+ #: includes/class-wcj-multicurrency.php:451
4064
+ msgid "Total Currencies"
4065
+ msgstr "Gesamt-Währungen"
4066
+
4067
+ #: includes/class-wcj-emails.php:25
4068
+ msgid "Emails"
4069
+ msgstr "Emails"
4070
+
4071
+ #: includes/class-wcj-emails.php:26
4072
+ msgid ""
4073
+ "Add custom emails. Add another email recipient(s) to all WooCommerce emails."
4074
+ msgstr ""
4075
+ "Benutzerdefinerte Emails hinzufügen. Weitere Emailempfänger allen "
4076
+ "WooCommerce-Emails hinzufügen."
4077
+
4078
+ #: includes/class-wcj-emails.php:137
4079
+ msgid "Booster: Email Forwarding Options"
4080
+ msgstr "Booster: Email-Weiterleitungs-Optionen"
4081
+
4082
+ #: includes/class-wcj-emails.php:138
4083
+ msgid "Email Forwarding Options"
4084
+ msgstr "Email-Weiterleitungs-Optionen"
4085
+
4086
+ #: includes/class-wcj-emails.php:140
4087
+ msgid ""
4088
+ "This section lets you add another email recipient(s) to all WooCommerce "
4089
+ "emails. Leave blank to disable."
4090
+ msgstr ""
4091
+ "Dieser Abschnitt lässt Dich weitere Email-Empfänger aller WooCommerce-Emails "
4092
+ "hinzufügen. Leer lassen um zu deaktivieren."
4093
+
4094
+ #: includes/class-wcj-emails.php:144
4095
+ msgid "Cc Email"
4096
+ msgstr "Cc Email"
4097
+
4098
+ #: includes/class-wcj-emails.php:145
4099
+ msgid "Cc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
4100
+ msgstr ""
4101
+ "Cc zu Email, z.B. ihreemail@ihredomain.de. Leer lassen, um zu deaktivieren."
4102
+
4103
+ #: includes/class-wcj-emails.php:151
4104
+ msgid "Bcc Email"
4105
+ msgstr "Bcc Email"
4106
+
4107
+ #: includes/class-wcj-emails.php:152
4108
+ msgid "Bcc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
4109
+ msgstr ""
4110
+ "Cc zu Email, z.B. ihreemail@ihredomain.de. Leer lassen, um zu deaktivieren."
4111
+
4112
+ #: includes/class-wcj-emails.php:188
4113
+ msgid "Custom Emails"
4114
+ msgstr "Benutzerdefinierte Emails"
4115
+
4116
+ #: includes/class-wcj-emails.php:191
4117
+ msgid ""
4118
+ "This section lets you set number of custom emails to add. After setting the "
4119
+ "number, visit \"WooCommerce > Settings > Emails\" to set each email options."
4120
+ msgstr ""
4121
+ "Dieser Abschnitt lässt Dich die Anzahl der benutzerdefinierten Emails, die "
4122
+ "hinzugefügt werden sollen, einstellen. Nachdem Du die Anzahl festgelegt hast,"
4123
+ " besuche \"WooCommerce > Einstellungen > Emails\", um jede Emailoption "
4124
+ "einzustellen."
4125
+
4126
+ #: includes/class-wcj-emails.php:194
4127
+ msgid "Custom Emails Number"
4128
+ msgstr "Anzahl benutzerdefinierter Emails"
4129
+
4130
+ #: includes/class-wcj-emails.php:205
4131
+ msgid "Admin Title Custom Email"
4132
+ msgstr "Titel für benutzerdefinierte Administrator-Email"
4133
+
4134
+ #: includes/class-wcj-emails.php:207 includes/class-wcj-shipping.php:219
4135
+ #: includes/emails/class-wc-email-wcj-custom.php:30
4136
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:133
4137
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:44
4138
+ msgid "Custom"
4139
+ msgstr "Benutzerdefiniert"
4140
+
4141
+ #: includes/class-wcj-empty-cart-button.php:26
4142
+ msgid "Empty Cart Button"
4143
+ msgstr "Warenkorb leeren-Button"
4144
+
4145
+ #: includes/class-wcj-empty-cart-button.php:27
4146
+ msgid "Add and customize \"Empty Cart\" button to WooCommerce cart page."
4147
+ msgstr ""
4148
+ "Hinzufügen und anpassen des \"Leerer Warenkorb\"-Buttons auf WooCommerce "
4149
+ "Warenkorb-Seite."
4150
+
4151
+ #: includes/class-wcj-empty-cart-button.php:74
4152
+ msgid "Empty Cart Options"
4153
+ msgstr "Optionen für Leerer Warenkorb"
4154
+
4155
+ #: includes/class-wcj-empty-cart-button.php:76
4156
+ msgid ""
4157
+ "This section lets you add and customize \"Empty Cart\" button to cart page."
4158
+ msgstr ""
4159
+ "Dieser Abschnitt lässt Dich den \"Warenkorb leeren\"-Button auf Warenkorb-"
4160
+ "Seite hinzufügen und anpassen."
4161
+
4162
+ #: includes/class-wcj-empty-cart-button.php:80
4163
+ msgid "Empty Cart Button Text"
4164
+ msgstr "Leerer Warenkorb Beschriftungstext"
4165
+
4166
+ #: includes/class-wcj-empty-cart-button.php:88
4167
+ msgid "Wrapping DIV style"
4168
+ msgstr "Umhüllender DIV-Stil"
4169
+
4170
+ #: includes/class-wcj-empty-cart-button.php:89
4171
+ msgid "Style for the button's div. Default is \"float: right;\""
4172
+ msgstr "Stil für die Schaltfläche div. Voreinstellung ist \"float: right;\""
4173
+
4174
+ #: includes/class-wcj-empty-cart-button.php:95
4175
+ msgid "Button position on the Cart page"
4176
+ msgstr "Button-Position auf der Warenkorb-Seite"
4177
+
4178
+ #: includes/class-wcj-empty-cart-button.php:100
4179
+ msgid "After Cart"
4180
+ msgstr "Nach dem Warenkorb"
4181
+
4182
+ #: includes/class-wcj-empty-cart-button.php:101
4183
+ msgid "Before Cart"
4184
+ msgstr "Vor dem Warenkorb"
4185
+
4186
+ #: includes/class-wcj-empty-cart-button.php:102
4187
+ msgid "After Proceed to Checkout button"
4188
+ msgstr "Nach dem Fortfahren zur Kasse-Button"
4189
+
4190
+ #: includes/class-wcj-empty-cart-button.php:103
4191
+ msgid "After Cart Totals"
4192
+ msgstr "Nach Warenkorb Gesamtsumme"
4193
+
4194
+ #: includes/class-wcj-empty-cart-button.php:109
4195
+ msgid "Button position on the Checkout page"
4196
+ msgstr "Button-Position auf der Kassenseite"
4197
+
4198
+ #: includes/class-wcj-empty-cart-button.php:114
4199
+ #: includes/class-wcj-orders.php:501
4200
+ msgid "Do not add"
4201
+ msgstr "Nicht hinzufügen"
4202
+
4203
+ #: includes/class-wcj-empty-cart-button.php:129
4204
+ msgid "Confirmation"
4205
+ msgstr "Bestätigung"
4206
+
4207
+ #: includes/class-wcj-empty-cart-button.php:134
4208
+ msgid "No confirmation"
4209
+ msgstr "Keine Bestätigung"
4210
+
4211
+ #: includes/class-wcj-empty-cart-button.php:135
4212
+ msgid "Confirm by pop up box"
4213
+ msgstr "bestätige mit Pop-up-Box"
4214
+
4215
+ #: includes/class-wcj-empty-cart-button.php:139
4216
+ msgid "Confirmation Text (if enabled)"
4217
+ msgstr "Bestätigungstext (wenn aktiviert)"
4218
+
4219
+ #: includes/class-wcj-empty-cart-button.php:141
4220
+ #: includes/class-wcj-product-by-user.php:165
4221
+ #: includes/classes/class-wcj-module.php:472
4222
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:285
4223
+ msgid "Are you sure?"
4224
+ msgstr "Bist Du sicher?"
4225
+
4226
+ #: includes/class-wcj-eu-vat-number.php:27
4227
+ #: includes/class-wcj-eu-vat-number.php:137
4228
+ #: includes/class-wcj-eu-vat-number.php:365
4229
+ #: includes/class-wcj-eu-vat-number.php:372
4230
+ msgid "EU VAT Number"
4231
+ msgstr "Umsatzsteuer-Identifikationsnummer"
4232
+
4233
+ #: includes/class-wcj-eu-vat-number.php:28
4234
+ msgid ""
4235
+ "Collect and validate EU VAT numbers on WooCommerce checkout. Automatically "
4236
+ "disable VAT for valid numbers. Add all EU countries VAT standard rates to "
4237
+ "WooCommerce."
4238
+ msgstr ""
4239
+ "Sammeln und Validieren von Umsatzsteuer-Identifikationsnummern auf "
4240
+ "WooCommerce Kassenseite. Automatische Deaktivierung der Mehrwertsteuer für "
4241
+ "gültige Nummern. Füge in WooCommerce für alle EU-Länder die Mehrwertsteuer-"
4242
+ "Standard-Steuersätze hinzu."
4243
+
4244
+ #: includes/class-wcj-eu-vat-number.php:34
4245
+ msgid "EU Countries VAT Rates"
4246
+ msgstr "EU-Länder Mehrwertsteuersätze"
4247
+
4248
+ #: includes/class-wcj-eu-vat-number.php:35
4249
+ msgid "Add all EU countries VAT standard rates to WooCommerce."
4250
+ msgstr ""
4251
+ "Füge in WooCommerce für alle EU-Länder die Mehrwertsteuer-Standard-"
4252
+ "Steuersätze hinzu."
4253
+
4254
+ #: includes/class-wcj-eu-vat-number.php:301
4255
+ #: includes/class-wcj-eu-vat-number.php:425
4256
+ msgid "<strong>EU VAT Number</strong> is not valid."
4257
+ msgstr "<strong>Umsatzsteuer-Identifikationsnummer</strong> ist ungültig."
4258
+
4259
+ #: includes/class-wcj-eu-vat-number.php:363
4260
+ msgid "Field Label"
4261
+ msgstr "Feldbeschriftung"
4262
+
4263
+ #: includes/class-wcj-eu-vat-number.php:370
4264
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:221
4265
+ msgid "Placeholder"
4266
+ msgstr "Platzhalter"
4267
+
4268
+ #: includes/class-wcj-eu-vat-number.php:397
4269
+ msgid "Clear"
4270
+ msgstr "Löschen"
4271
+
4272
+ #: includes/class-wcj-eu-vat-number.php:404
4273
+ msgid "Class"
4274
+ msgstr "Klasse"
4275
+
4276
+ #: includes/class-wcj-eu-vat-number.php:415
4277
+ msgid "Validate"
4278
+ msgstr "Bestätigen"
4279
+
4280
+ #: includes/class-wcj-eu-vat-number.php:423
4281
+ msgid "Message on not valid"
4282
+ msgstr "Nachricht im Falle von ungültig"
4283
+
4284
+ #: includes/class-wcj-eu-vat-number.php:430
4285
+ msgid "Exempt VAT for Valid Numbers"
4286
+ msgstr "Befreie berechtigte Identifikationsnummern von der Mehrwertsteuer"
4287
+
4288
+ #: includes/class-wcj-eu-vat-number.php:437
4289
+ msgid "Preserve VAT in Base Country"
4290
+ msgstr "Mehrwertsteuer im Basisland beibehalten"
4291
+
4292
+ #: includes/class-wcj-eu-vat-number.php:455
4293
+ msgid "Check for IP Location Country"
4294
+ msgstr "Überprüfen nach IP-Standort Land"
4295
+
4296
+ #: includes/class-wcj-eu-vat-number.php:473
4297
+ msgid "Display"
4298
+ msgstr "Anzeigen"
4299
+
4300
+ #: includes/class-wcj-eu-vat-number.php:478
4301
+ msgid "After order table"
4302
+ msgstr "Nach Bestellungen-Tabelle"
4303
+
4304
+ #: includes/class-wcj-eu-vat-number.php:479
4305
+ msgid "In billing address"
4306
+ msgstr "In Rechnungsadresse"
4307
+
4308
+ #: includes/class-wcj-export-import.php:29
4309
+ msgid "WooCommerce export tools."
4310
+ msgstr "WooCommerce Export Werkzeuge."
4311
+
4312
+ #: includes/class-wcj-export-import.php:35
4313
+ msgid "Export Customers"
4314
+ msgstr "Kunden exportieren"
4315
+
4316
+ #: includes/class-wcj-export-import.php:36
4317
+ msgid "Export Customers."
4318
+ msgstr "Kunden exportieren."
4319
+
4320
+ #: includes/class-wcj-export-import.php:39
4321
+ msgid "Export Customers from Orders"
4322
+ msgstr "Kunden von Bestellungen exportieren "
4323
+
4324
+ #: includes/class-wcj-export-import.php:40
4325
+ msgid "Export Customers (extracted from orders)."
4326
+ msgstr "Kunden exportieren (aus Bestellungen extrahiert)."
4327
+
4328
+ #: includes/class-wcj-export-import.php:40
4329
+ msgid "Customers are identified by billing email."
4330
+ msgstr "Kunden werden nach Rechnungs-E-Mail-Adresse identifiziert."
4331
+
4332
+ #: includes/class-wcj-export-import.php:43
4333
+ msgid "Export Orders"
4334
+ msgstr "Bestellungen exportieren"
4335
+
4336
+ #: includes/class-wcj-export-import.php:44
4337
+ msgid "Export Orders."
4338
+ msgstr "Bestellungen exportieren."
4339
+
4340
+ #: includes/class-wcj-export-import.php:47
4341
+ msgid "Export Orders Items"
4342
+ msgstr "Exportiere Bestellungsgegenstände"
4343
+
4344
+ #: includes/class-wcj-export-import.php:48
4345
+ msgid "Export Orders Items."
4346
+ msgstr "Exportiere Bestellungsgegenstände."
4347
+
4348
+ #: includes/class-wcj-export-import.php:51
4349
+ msgid "Export Products"
4350
+ msgstr "Produkte exportieren"
4351
+
4352
+ #: includes/class-wcj-export-import.php:52
4353
+ msgid "Export Products."
4354
+ msgstr "Produkte exportieren."
4355
+
4356
+ #: includes/class-wcj-export-import.php:194
4357
+ #: includes/class-wcj-export-import.php:200
4358
+ msgid "Filter by Billing Country"
4359
+ msgstr "Nach den Rechnungsland filtern"
4360
+
4361
+ #: includes/class-wcj-export-import.php:195
4362
+ msgid "Filter by Product Title"
4363
+ msgstr "Nach dem Produktitel filtern"
4364
+
4365
+ #: includes/class-wcj-export-import.php:214 includes/class-wcj-orders.php:407
4366
+ msgid "Filter"
4367
+ msgstr "Filter"
4368
+
4369
+ #: includes/class-wcj-export-import.php:233
4370
+ msgid "Download CSV"
4371
+ msgstr "CSV herunterladen"
4372
+
4373
+ #: includes/class-wcj-export-import.php:235
4374
+ msgid "Download XML"
4375
+ msgstr "Download XML"
4376
+
4377
+ #: includes/class-wcj-export-import.php:236
4378
+ msgid "Filter by All Fields"
4379
+ msgstr "Nach allen Feldern filtern"
4380
+
4381
+ #: includes/class-wcj-export-import.php:303
4382
+ msgid "Export Options"
4383
+ msgstr "Export-Optionen"
4384
+
4385
+ #: includes/class-wcj-export-import.php:308
4386
+ msgid "CSV Separator"
4387
+ msgstr "CSV Trennzeichen"
4388
+
4389
+ #: includes/class-wcj-export-import.php:314
4390
+ msgid "UTF-8 BOM"
4391
+ msgstr "UTF-8 BOM"
4392
+
4393
+ #: includes/class-wcj-export-import.php:316
4394
+ msgid "Add UTF-8 BOM sequence"
4395
+ msgstr "UTF-8 BOM Sequenz hinzufügen"
4396
+
4397
+ #: includes/class-wcj-export-import.php:326
4398
+ msgid "Export Orders Options"
4399
+ msgstr "Exportiere Bestellungsoptionen"
4400
+
4401
+ #: includes/class-wcj-export-import.php:331
4402
+ msgid "Export Orders Fields"
4403
+ msgstr "Exportiere Bestellungsfelder"
4404
+
4405
+ #: includes/class-wcj-export-import.php:332
4406
+ #: includes/class-wcj-export-import.php:400
4407
+ #: includes/class-wcj-export-import.php:470
4408
+ #: includes/class-wcj-export-import.php:538
4409
+ #: includes/class-wcj-export-import.php:556
4410
+ msgid "Hold \"Control\" key to select multiple fields."
4411
+ msgstr "Halte die Taste \"Strg\" gedrückt, um mehrere Felder auszuwählen."
4412
+
4413
+ #: includes/class-wcj-export-import.php:340
4414
+ msgid "Additional Export Orders Fields"
4415
+ msgstr ""
4416
+ "Zusätzliche Bestellungs-Export-Felder\n"
4417
+
4418
+ #: includes/class-wcj-export-import.php:363
4419
+ #: includes/class-wcj-export-import.php:431
4420
+ #: includes/class-wcj-export-import.php:501
4421
+ #: includes/class-wcj-product-by-user.php:156
4422
+ #: includes/class-wcj-product-tabs.php:421
4423
+ #: includes/class-wcj-product-tabs.php:542
4424
+ #: includes/class-wcj-purchase-data.php:323
4425
+ #: includes/class-wcj-related-products.php:123
4426
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:68
4427
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:214
4428
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:113
4429
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:82
4430
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:259
4431
+ msgid "Title"
4432
+ msgstr "Titel"
4433
+
4434
+ #: includes/class-wcj-export-import.php:369
4435
+ #: includes/class-wcj-export-import.php:437
4436
+ #: includes/class-wcj-export-import.php:507
4437
+ #: includes/class-wcj-global-discount.php:250
4438
+ #: includes/class-wcj-product-addons.php:466
4439
+ #: includes/class-wcj-product-addons.php:583
4440
+ #: includes/class-wcj-purchase-data.php:330
4441
+ #: includes/export/class-wcj-fields-helper.php:289
4442
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:44
4443
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:120
4444
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:89
4445
+ msgid "Type"
4446
+ msgstr "Typ"
4447
+
4448
+ #: includes/class-wcj-export-import.php:375
4449
+ #: includes/class-wcj-export-import.php:443
4450
+ msgid "Order Shortcode"
4451
+ msgstr "Bestell-Shortcode"
4452
+
4453
+ #: includes/class-wcj-export-import.php:379
4454
+ #: includes/class-wcj-export-import.php:449
4455
+ #: includes/class-wcj-export-import.php:517
4456
+ #: includes/class-wcj-global-discount.php:260 includes/class-wcj-orders.php:476
4457
+ msgid "Value"
4458
+ msgstr "Betrag"
4459
+
4460
+ #: includes/class-wcj-export-import.php:380
4461
+ msgid ""
4462
+ "If field's \"Type\" is set to \"Meta\", enter order meta key to retrieve "
4463
+ "(can be custom field name)."
4464
+ msgstr ""
4465
+ "Wenn der Feld-\"Typ\" auf \"Meta\" gesetzt ist, gib den Bestell-Meta-"
4466
+ "Schlüssel ein, um abzurufen (kann benutzerdefinierter Feldname sein)."
4467
+
4468
+ #: includes/class-wcj-export-import.php:381
4469
+ msgid "If it's set to \"Shortcode\", use Booster's Orders shortcodes here."
4470
+ msgstr ""
4471
+ "Wenn auf \"Shortcode\" gesetzt, verwende hier Booster's Bestell-Shortcodes."
4472
+
4473
+ #: includes/class-wcj-export-import.php:394
4474
+ msgid "Export Orders Items Options"
4475
+ msgstr "Exportieren von Bestellungs-Gegenstände-Optionen"
4476
+
4477
+ #: includes/class-wcj-export-import.php:399
4478
+ msgid "Export Orders Items Fields"
4479
+ msgstr "Exportieren von Bestellungs-Gegenstände-Felder"
4480
+
4481
+ #: includes/class-wcj-export-import.php:408
4482
+ msgid "Additional Export Orders Items Fields"
4483
+ msgstr "Zusätzliche Bestellungs-Gegenstände-Export Felder"
4484
+
4485
+ #: includes/class-wcj-export-import.php:445
4486
+ #: includes/class-wcj-export-import.php:513
4487
+ msgid "Product Shortcode"
4488
+ msgstr "Produkt-Shortcode"
4489
+
4490
+ #: includes/class-wcj-export-import.php:450
4491
+ msgid ""
4492
+ "If field's \"Type\" is set to \"Meta\", enter order/product meta key to "
4493
+ "retrieve (can be custom field name)."
4494
+ msgstr ""
4495
+ "Wenn der Feld-\"Typ\" auf \"Meta\" gesetzt ist, gib den Bestell-/Produkt-"
4496
+ "Meta-Schlüssel ein, um abzurufen (kann ein benutzerdefinierter Feldname sein)"
4497
+ "."
4498
+
4499
+ #: includes/class-wcj-export-import.php:451
4500
+ msgid ""
4501
+ "If it's set to \"Shortcode\", use Booster's Orders/Products shortcodes here."
4502
+ msgstr ""
4503
+ "Wenn auf \"Shortcode\" gesetzt, verwende hier Booster's Bestellungen/Produkt-"
4504
+ "Shortcodes."
4505
+
4506
+ #: includes/class-wcj-export-import.php:464
4507
+ msgid "Export Products Options"
4508
+ msgstr "Export Produkt-Optionen"
4509
+
4510
+ #: includes/class-wcj-export-import.php:469
4511
+ msgid "Export Products Fields"
4512
+ msgstr "Export Produkt-Felder"
4513
+
4514
+ #: includes/class-wcj-export-import.php:478
4515
+ msgid "Additional Export Products Fields"
4516
+ msgstr "Zusätzliche Export Produkt-Felder"
4517
+
4518
+ #: includes/class-wcj-export-import.php:518
4519
+ msgid ""
4520
+ "If field's \"Type\" is set to \"Meta\", enter product meta key to retrieve "
4521
+ "(can be custom field name)."
4522
+ msgstr ""
4523
+ "Wenn der Feld-\"Typ\" auf \"Meta\" gesetzt ist, gib den Produkt-Meta-"
4524
+ "Schlüssel ein, um abzurufen (kann ein benutzerdefinierter Feldname sein)."
4525
+
4526
+ #: includes/class-wcj-export-import.php:519
4527
+ msgid "If it's set to \"Shortcode\", use Booster's Products shortcodes here."
4528
+ msgstr ""
4529
+ "Wenn auf \"Shortcode\" gesetzt, verwende hier Booster's Produkt-Shortcodes."
4530
+
4531
+ #: includes/class-wcj-export-import.php:532
4532
+ msgid "Export Customers Options"
4533
+ msgstr "Export Kunden-Optionen"
4534
+
4535
+ #: includes/class-wcj-export-import.php:537
4536
+ msgid "Export Customers Fields"
4537
+ msgstr "Export Kunden-Felder"
4538
+
4539
+ #: includes/class-wcj-export-import.php:550
4540
+ msgid "Export Customers from Orders Options"
4541
+ msgstr "Export Kunden von Bestell-Optionen"
4542
+
4543
+ #: includes/class-wcj-export-import.php:555
4544
+ msgid "Export Customers from Orders Fields"
4545
+ msgstr "Export Kunden von Bestell-Feldern"
4546
+
4547
+ #: includes/class-wcj-free-price.php:28
4548
+ msgid "Free Price Labels"
4549
+ msgstr "Kostenlos Preisetiketten"
4550
+
4551
+ #: includes/class-wcj-free-price.php:29
4552
+ msgid "WooCommerce free price labels."
4553
+ msgstr "Woocommerce Kostenlos Preisetiketten."
4554
+
4555
+ #: includes/class-wcj-free-price.php:72 includes/class-wcj-free-price.php:85
4556
+ #: includes/class-wcj-free-price.php:95 includes/class-wcj-free-price.php:105
4557
+ #: includes/class-wcj-free-price.php:152
4558
+ msgid "Free!"
4559
+ msgstr "Kostenlos!"
4560
+
4561
+ #: includes/class-wcj-free-price.php:127
4562
+ msgid "Labels can contain shortcodes."
4563
+ msgstr "Etiketten können Shortcodes enthalten."
4564
+
4565
+ #: includes/class-wcj-free-price.php:138
4566
+ msgid "Simple and Custom Products"
4567
+ msgstr "Einfache und benutzerdefinierte Produkte"
4568
+
4569
+ #: includes/class-wcj-free-price.php:139
4570
+ msgid "Variable Products"
4571
+ msgstr "Variable Produkte"
4572
+
4573
+ #: includes/class-wcj-free-price.php:140
4574
+ msgid "Grouped Products"
4575
+ msgstr "Gruppierte Produkte"
4576
+
4577
+ #: includes/class-wcj-free-price.php:141
4578
+ #: includes/class-wcj-product-add-to-cart.php:477
4579
+ msgid "External Products"
4580
+ msgstr "Externe Produkte"
4581
+
4582
+ #: includes/class-wcj-free-price.php:144
4583
+ msgid "Single Product Page"
4584
+ msgstr "Einfaches Produkt Seite"
4585
+
4586
+ #: includes/class-wcj-free-price.php:145
4587
+ #: includes/class-wcj-related-products.php:25
4588
+ msgid "Related Products"
4589
+ msgstr "Ähnliche Produkte"
4590
+
4591
+ #: includes/class-wcj-free-price.php:146
4592
+ msgid "Homepage"
4593
+ msgstr "Startseite"
4594
+
4595
+ #: includes/class-wcj-free-price.php:147
4596
+ msgid "Pages (e.g. Shortcodes)"
4597
+ msgstr "Seiten (z.B. Shortcodes)"
4598
+
4599
+ #: includes/class-wcj-free-price.php:148
4600
+ msgid "Archives (Product Categories)"
4601
+ msgstr "Archive (Produktkategorien)"
4602
+
4603
+ #: includes/class-wcj-free-price.php:162
4604
+ msgid "Variations"
4605
+ msgstr "Varianten"
4606
+
4607
+ #: includes/class-wcj-general.php:25 includes/class-wcj-pdf-invoicing.php:26
4608
+ msgid "General"
4609
+ msgstr "Allgemein"
4610
+
4611
+ #: includes/class-wcj-general.php:26
4612
+ msgid ""
4613
+ "Separate custom CSS for front and back end. Shortcodes in WordPress text "
4614
+ "widgets. Custom roles tool."
4615
+ msgstr ""
4616
+ "Trenne benutzerdefinierte CSS für Front- und Back-End. Shortcodes in "
4617
+ "WordPress Text Widgets. Benutzerdefiniertes Benutzer-Rollenwerkzeug."
4618
+
4619
+ #: includes/class-wcj-general.php:32
4620
+ msgid "Products Atts"
4621
+ msgstr "Produkte Atts"
4622
+
4623
+ #: includes/class-wcj-general.php:33
4624
+ msgid "All Products and All Attributes."
4625
+ msgstr "Alle Produkte und alle Attribute"
4626
+
4627
+ #: includes/class-wcj-general.php:36
4628
+ msgid "Add/Manage Custom Roles"
4629
+ msgstr "Hinzufügen/Verwalten von angepassten Benutzerrollen"
4630
+
4631
+ #: includes/class-wcj-general.php:37
4632
+ msgid "Custom Roles"
4633
+ msgstr "Angepasste Benutzerrollen"
4634
+
4635
+ #: includes/class-wcj-general.php:38
4636
+ msgid "Manage Custom Roles."
4637
+ msgstr "Verwaltung von angepassten Benutzerrollen."
4638
+
4639
+ #: includes/class-wcj-general.php:106
4640
+ msgid "Both fields are required!"
4641
+ msgstr "Beide Felder werden benötigt!"
4642
+
4643
+ #: includes/class-wcj-general.php:109
4644
+ msgid "Role ID must not be numbers only!"
4645
+ msgstr "Rollen-ID darf nur Nummern enthalten!"
4646
+
4647
+ #: includes/class-wcj-general.php:113
4648
+ msgid "Role successfully added!"
4649
+ msgstr "Rolle erfolgreich hinzugefügt!"
4650
+
4651
+ #: includes/class-wcj-general.php:115
4652
+ msgid "Role already exists!"
4653
+ msgstr "Rolle existiert bereits!"
4654
+
4655
+ #: includes/class-wcj-general.php:123
4656
+ msgid "Role %s successfully deleted!"
4657
+ msgstr "Rolle %s erfolgreich gelöscht!"
4658
+
4659
+ #: includes/class-wcj-general.php:129 includes/class-wcj-general.php:142
4660
+ #: includes/class-wcj-sku.php:166
4661
+ #: includes/reports/wcj-class-reports-sales.php:170
4662
+ msgid "ID"
4663
+ msgstr "ID"
4664
+
4665
+ #: includes/class-wcj-general.php:129 includes/class-wcj-general.php:143
4666
+ #: includes/export/class-wcj-fields-helper.php:282
4667
+ #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:72
4668
+ #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:106
4669
+ msgid "Name"
4670
+ msgstr "Name"
4671
+
4672
+ #: includes/class-wcj-general.php:129
4673
+ #: includes/class-wcj-product-by-user.php:156
4674
+ msgid "Actions"
4675
+ msgstr "Aktionen"
4676
+
4677
+ #: includes/class-wcj-general.php:135
4678
+ #: includes/class-wcj-order-custom-statuses.php:220
4679
+ #: includes/class-wcj-order-custom-statuses.php:242
4680
+ #: includes/class-wcj-product-by-user.php:165
4681
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:151
4682
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:285
4683
+ msgid "Delete"
4684
+ msgstr "Löschen"
4685
+
4686
+ #: includes/class-wcj-general.php:138
4687
+ msgid "Existing Roles"
4688
+ msgstr "Vorhandene Benutzerrollen"
4689
+
4690
+ #: includes/class-wcj-general.php:144
4691
+ msgid "Add New Role"
4692
+ msgstr "Neue Benutzerrolle hinzufügen"
4693
+
4694
+ #: includes/class-wcj-general.php:163
4695
+ msgid "PayPal Email"
4696
+ msgstr "PayPal Email"
4697
+
4698
+ #: includes/class-wcj-general.php:228 includes/class-wcj-general.php:270
4699
+ #: includes/class-wcj-product-bulk-price-converter.php:149
4700
+ #: includes/class-wcj-sku.php:243
4701
+ #: includes/reports/wcj-class-reports-sales.php:171
4702
+ #: includes/reports/wcj-class-reports-stock.php:319
4703
+ msgid "Product"
4704
+ msgstr "Produkt"
4705
+
4706
+ #: includes/class-wcj-general.php:229 includes/class-wcj-general.php:271
4707
+ #: includes/reports/wcj-class-reports-stock.php:320
4708
+ msgid "Category"
4709
+ msgstr "Kategorie"
4710
+
4711
+ #: includes/class-wcj-general.php:291
4712
+ msgid "Total Products:"
4713
+ msgstr "Produkte insgesamt:"
4714
+
4715
+ #: includes/class-wcj-general.php:336
4716
+ msgid "Shortcodes Options"
4717
+ msgstr "Shortcode-Optionen"
4718
+
4719
+ #: includes/class-wcj-general.php:341
4720
+ msgid "Enable All Shortcodes in WordPress Text Widgets"
4721
+ msgstr "Aktiviere alle Shortcodes in WordPress Text-Widgets"
4722
+
4723
+ #: includes/class-wcj-general.php:342
4724
+ msgid ""
4725
+ "This will enable all (including non Booster's) shortcodes in WordPress text "
4726
+ "widgets."
4727
+ msgstr ""
4728
+ "Dies aktiviert alle (auch nicht Booster-) Shortcodes in WordPress Text-"
4729
+ "Widgets."
4730
+
4731
+ #: includes/class-wcj-general.php:349
4732
+ msgid "Disable Booster's Shortcodes"
4733
+ msgstr "Deaktiviere Booster-Shortcodes"
4734
+
4735
+ #: includes/class-wcj-general.php:350
4736
+ msgid "Disable all Booster's shortcodes (for memory saving)."
4737
+ msgstr "Deaktiviere alle Booster-Shortcodes (zur Speicherersparnis)."
4738
+
4739
+ #: includes/class-wcj-general.php:351 includes/class-wcj-general.php:414
4740
+ #: includes/class-wcj-general.php:428 includes/class-wcj-general.php:435
4741
+ #: includes/class-wcj-general.php:442 includes/class-wcj-general.php:449
4742
+ #: includes/class-wcj-product-add-to-cart.php:247
4743
+ msgid "Disable"
4744
+ msgstr "Deaktviere"
4745
+
4746
+ #: includes/class-wcj-general.php:361
4747
+ msgid "Custom CSS Options"
4748
+ msgstr "Benutzerdefinierte CSS Optionen"
4749
+
4750
+ #: includes/class-wcj-general.php:363
4751
+ msgid "Another custom CSS, if you need one."
4752
+ msgstr "Ein weiteres benutzerdefinierte CSS, wenn Du eins benötigst."
4753
+
4754
+ #: includes/class-wcj-general.php:367
4755
+ msgid "Custom CSS - Front end (Customers)"
4756
+ msgstr "Benutzerdefinierte CSS - Frontend (Kunden)"
4757
+
4758
+ #: includes/class-wcj-general.php:374
4759
+ msgid "Custom CSS - Back end (Admin)"
4760
+ msgstr "Benutzerdefinierte CSS - Backend (Admin)"
4761
+
4762
+ #: includes/class-wcj-general.php:385 includes/class-wcj-general.php:390
4763
+ msgid "Product Revisions"
4764
+ msgstr "Produkt-Überarbeitungen"
4765
+
4766
+ #: includes/class-wcj-general.php:401
4767
+ msgid "Advanced Options"
4768
+ msgstr "Erweiterte Optionen"
4769
+
4770
+ #: includes/class-wcj-general.php:406
4771
+ msgid "Recalculate Cart Totals on Every Page Load"
4772
+ msgstr "Neuberechnung von Warenkorb-Gesamtsummen bei jedem Laden der Seite"
4773
+
4774
+ #: includes/class-wcj-general.php:413
4775
+ msgid "Disable Loading Datepicker/Weekpicker CSS"
4776
+ msgstr "Deaktiviere das Laden von CSS des Datums-/Wochenwählers"
4777
+
4778
+ #: includes/class-wcj-general.php:420
4779
+ msgid "Datepicker/Weekpicker CSS"
4780
+ msgstr "Datums-/Wochenwähler CSS"
4781
+
4782
+ #: includes/class-wcj-general.php:427
4783
+ msgid "Disable Loading Datepicker/Weekpicker JavaScript"
4784
+ msgstr "Deaktiviere das Laden von JavaScript des Datums-/Wochenwählers"
4785
+
4786
+ #: includes/class-wcj-general.php:434
4787
+ msgid "Disable Loading Timepicker CSS"
4788
+ msgstr "Deaktiviere das Laden von CSS des Zeitwählers"
4789
+
4790
+ #: includes/class-wcj-general.php:441
4791
+ msgid "Disable Loading Timepicker JavaScript"
4792
+ msgstr "Deaktiviere das Laden von JavaScript des Zeitwählers"
4793
+
4794
+ #: includes/class-wcj-general.php:448
4795
+ msgid "Disable Saving PDFs in PHP directory for temporary files"
4796
+ msgstr ""
4797
+ "Deaktivieren von Speichern von PDFs im PHP-Verzeichnis temporärer Dateien"
4798
+
4799
+ #: includes/class-wcj-general.php:459
4800
+ msgid "PayPal Email per Product Options"
4801
+ msgstr "PayPal-Email pro Produkt-Optionen"
4802
+
4803
+ #: includes/class-wcj-general.php:464
4804
+ msgid "PayPal Email per Product"
4805
+ msgstr "PayPal-Email pro Produkt"
4806
+
4807
+ #: includes/class-wcj-general.php:466
4808
+ msgid "This will add new meta box to each product's edit page."
4809
+ msgstr ""
4810
+ "Dadurch wird der Bearbeitungsseite jedes Produkts ein neues Meta-Feld "
4811
+ "hinzufügen."
4812
+
4813
+ #: includes/class-wcj-general.php:476
4814
+ msgid "Session Expiration Options"
4815
+ msgstr "Sitzungsablauf-Optionen"
4816
+
4817
+ #: includes/class-wcj-general.php:481 includes/class-wcj-general.php:496
4818
+ msgid "Session Expiration"
4819
+ msgstr "Sitzungsablauf"
4820
+
4821
+ #: includes/class-wcj-general.php:488
4822
+ msgid "Session Expiring"
4823
+ msgstr "Sitzungs läuft ab"
4824
+
4825
+ #: includes/class-wcj-general.php:489
4826
+ msgid "In seconds. Default: 47 hours (60 * 60 * 47)"
4827
+ msgstr "In Sekunden. Standard: 47 Stunden (60 * 60 * 47)"
4828
+
4829
+ #: includes/class-wcj-general.php:497
4830
+ msgid "In seconds. Default: 48 hours (60 * 60 * 48)"
4831
+ msgstr "In Sekunden. Standard: 48 Stunden (60 * 60 * 48)"
4832
+
4833
+ #: includes/class-wcj-global-discount.php:28
4834
+ msgid "Global Discount"
4835
+ msgstr "Globaler Rabatt"
4836
+
4837
+ #: includes/class-wcj-global-discount.php:29
4838
+ msgid "Add global discount to all WooCommerce products."
4839
+ msgstr "Füge allen WooCommerce-Produkten einen Rabatt hinzu."
4840
+
4841
+ #: includes/class-wcj-global-discount.php:220
4842
+ msgid "Total Groups"
4843
+ msgstr "Gruppen-Total"
4844
+
4845
+ #: includes/class-wcj-global-discount.php:224
4846
+ #: includes/class-wcj-products-xml.php:206
4847
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:112
4848
+ msgid "Press Save changes after you change this number."
4849
+ msgstr "Drücke \"Änderungen speichern\" nachdem Du die Nummer geändert hast."
4850
+
4851
+ #: includes/class-wcj-global-discount.php:238
4852
+ msgid "Discount Group"
4853
+ msgstr "Rabatt-Gruppe"
4854
+
4855
+ #: includes/class-wcj-global-discount.php:255
4856
+ #: includes/class-wcj-payment-gateways-fees.php:165
4857
+ #: includes/class-wcj-purchase-data.php:335
4858
+ #: includes/class-wcj-wholesale-price.php:250
4859
+ #: includes/class-wcj-wholesale-price.php:424
4860
+ msgid "Percent"
4861
+ msgstr "Prozent"
4862
+
4863
+ #: includes/class-wcj-global-discount.php:256
4864
+ #: includes/class-wcj-payment-gateways-fees.php:164
4865
+ #: includes/class-wcj-purchase-data.php:334
4866
+ #: includes/class-wcj-wholesale-price.php:251
4867
+ #: includes/class-wcj-wholesale-price.php:425
4868
+ msgid "Fixed"
4869
+ msgstr "Festgelegt"
4870
+
4871
+ #: includes/class-wcj-global-discount.php:261
4872
+ msgid "Must be negative number."
4873
+ msgstr "Muss negative Zahl sein."
4874
+
4875
+ #: includes/class-wcj-global-discount.php:268
4876
+ msgid "Product Scope"
4877
+ msgstr "Produktumfang"
4878
+
4879
+ #: includes/class-wcj-global-discount.php:273
4880
+ msgid "All products"
4881
+ msgstr "Alle Produkte"
4882
+
4883
+ #: includes/class-wcj-global-discount.php:274
4884
+ msgid "Only products that are already on sale"
4885
+ msgstr "Nur Produkte, die bereits im Abverkauf sind"
4886
+
4887
+ #: includes/class-wcj-global-discount.php:278
4888
+ msgid "Include Product Categories"
4889
+ msgstr "Produktkategorien einbeziehen"
4890
+
4891
+ #: includes/class-wcj-global-discount.php:279
4892
+ msgid ""
4893
+ "Set this field to apply discount to selected categories only. Leave blank to "
4894
+ "apply to all categories."
4895
+ msgstr ""
4896
+ "Setze dieses Feld, um den Rabatt nur auf ausgewählte Kategorien anzuwenden. "
4897
+ "Leer lassen, um auf alle Kategorien anzuwenden."
4898
+
4899
+ #: includes/class-wcj-left-to-free-shipping.php:27
4900
+ #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:52
4901
+ msgid "Left to Free Shipping"
4902
+ msgstr "Übrig bis kostenloser Versand"
4903
+
4904
+ #: includes/class-wcj-left-to-free-shipping.php:28
4905
+ msgid "Display \"left to free shipping\" info in WooCommerce."
4906
+ msgstr "Zeige \"übrig bis kostenloser Versand\"-Info in WooCommerce."
4907
+
4908
+ #: includes/class-wcj-left-to-free-shipping.php:66
4909
+ #: includes/class-wcj-left-to-free-shipping.php:76
4910
+ #: includes/class-wcj-left-to-free-shipping.php:86
4911
+ #: includes/class-wcj-left-to-free-shipping.php:148
4912
+ #: includes/class-wcj-left-to-free-shipping.php:182
4913
+ #: includes/class-wcj-left-to-free-shipping.php:220
4914
+ #: includes/functions/wcj-functions.php:548
4915
+ #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:53
4916
+ msgid "%left_to_free% left to free shipping"
4917
+ msgstr "%left_to_free% Übrig bis kostenloser Versand"
4918
+
4919
+ #: includes/class-wcj-left-to-free-shipping.php:130
4920
+ msgid "Left to Free Shipping Info Options"
4921
+ msgstr "Übrig bis kostenloser Versand Informations-Optionen"
4922
+
4923
+ #: includes/class-wcj-left-to-free-shipping.php:132
4924
+ msgid ""
4925
+ "This section lets you enable info on cart, mini cart and checkout pages."
4926
+ msgstr ""
4927
+ "Dieser Abschnitt lässt Dich Informationen zum Warenkorb, Mini-Warenkorb und "
4928
+ "Kasse aktivieren."
4929
+
4930
+ #: includes/class-wcj-left-to-free-shipping.php:133
4931
+ msgid ""
4932
+ "You can also use <em>Booster - Left to Free Shipping</em> widget, <em>"
4933
+ "[wcj_get_left_to_free_shipping content=\"\"]</em> shortcode or <em>"
4934
+ "wcj_get_left_to_free_shipping( $content );</em> function."
4935
+ msgstr ""
4936
+ "Du kannst auch das <em>Booster - Übrig bis kostenloser Versand</em>-Widget "
4937
+ "nutzen, <em>[wcj_get_left_to_free_shipping content=\"\"]</em> Shortcode oder "
4938
+ "<em>wcj_get_left_to_free_shipping( $content );</em>-Funktion."
4939
+
4940
+ #: includes/class-wcj-left-to-free-shipping.php:134
4941
+ msgid ""
4942
+ "In content you can use: <em>%left_to_free%</em> and <em>"
4943
+ "%free_shipping_min_amount%</em> shortcodes."
4944
+ msgstr ""
4945
+ "In Inhalt kannst Du nutzen: <em>%left_to_free%</em> und <em>"
4946
+ "%free_shipping_min_amount%</em> Shortcodes."
4947
+
4948
+ #: includes/class-wcj-left-to-free-shipping.php:138
4949
+ msgid "Info on Cart"
4950
+ msgstr "Informationen zum Warenkorb"
4951
+
4952
+ #: includes/class-wcj-left-to-free-shipping.php:163
4953
+ #: includes/class-wcj-left-to-free-shipping.php:201
4954
+ #: includes/class-wcj-left-to-free-shipping.php:245
4955
+ msgid "Position Order (Priority)"
4956
+ msgstr "Position Bestellung (Priorität)"
4957
+
4958
+ #: includes/class-wcj-left-to-free-shipping.php:170
4959
+ msgid "Info on Mini Cart"
4960
+ msgstr "Informationen zum Mini-Warenkorb"
4961
+
4962
+ #: includes/class-wcj-left-to-free-shipping.php:193
4963
+ #: includes/class-wcj-mini-cart.php:119
4964
+ msgid "Before mini cart"
4965
+ msgstr "Vor dem Mini-Warenkorb"
4966
+
4967
+ #: includes/class-wcj-left-to-free-shipping.php:194
4968
+ #: includes/class-wcj-mini-cart.php:120
4969
+ msgid "Before buttons"
4970
+ msgstr "Vor den Buttons"
4971
+
4972
+ #: includes/class-wcj-left-to-free-shipping.php:195
4973
+ #: includes/class-wcj-mini-cart.php:121
4974
+ msgid "After mini cart"
4975
+ msgstr "Nach dem Mini-Warenkorb"
4976
+
4977
+ #: includes/class-wcj-left-to-free-shipping.php:208
4978
+ msgid "Info on Checkout"
4979
+ msgstr "Informationen zur Kasse"
4980
+
4981
+ #: includes/class-wcj-left-to-free-shipping.php:252
4982
+ msgid "Message on Free Shipping Reached"
4983
+ msgstr "Nachricht für kostenlosen Versand erreicht"
4984
+
4985
+ #: includes/class-wcj-left-to-free-shipping.php:253
4986
+ msgid "You can set it empty"
4987
+ msgstr "Du kannst es leer einstellen"
4988
+
4989
+ #: includes/class-wcj-left-to-free-shipping.php:255
4990
+ #: includes/functions/wcj-functions.php:588
4991
+ msgid "You have Free delivery"
4992
+ msgstr "Du hast kostenlose Lieferung"
4993
+
4994
+ #: includes/class-wcj-mini-cart.php:26
4995
+ msgid "Mini Cart"
4996
+ msgstr "Mini-Warenkorb"
4997
+
4998
+ #: includes/class-wcj-mini-cart.php:27
4999
+ msgid "Customize WooCommerce mini cart widget."
5000
+ msgstr "Anpassen des WooCommerce Mini-Warenkorb-Widgets."
5001
+
5002
+ #: includes/class-wcj-mini-cart.php:74
5003
+ msgid "Mini Cart Custom Info Blocks"
5004
+ msgstr "Benutzerdefinierte Infoblöcke des Mini-Warenkorbs"
5005
+
5006
+ #: includes/class-wcj-more-button-labels.php:26
5007
+ msgid "More Button Labels"
5008
+ msgstr "Weitere Button-Etiketten"
5009
+
5010
+ #: includes/class-wcj-more-button-labels.php:27
5011
+ msgid "Set WooCommerce \"Place order\" button label."
5012
+ msgstr ""
5013
+ "Definieren der WooCommerce \"Bestellung abschicken\"-Button-Beschriftung."
5014
+
5015
+ #: includes/class-wcj-more-button-labels.php:52
5016
+ msgid "Place order (Order now) Button"
5017
+ msgstr "Bestellung abschicken (Jetzt kaufen) Button"
5018
+
5019
+ #: includes/class-wcj-more-button-labels.php:59
5020
+ msgid "leave blank for WooCommerce default"
5021
+ msgstr "Leer lassen für WooCommerce-Voreinstellung"
5022
+
5023
+ #: includes/class-wcj-more-button-labels.php:60
5024
+ msgid "Button on the checkout page."
5025
+ msgstr "Button auf der Kasse Seite."
5026
+
5027
+ #: includes/class-wcj-multicurrency-product-base-price.php:27
5028
+ msgid "Multicurrency Product Base Price"
5029
+ msgstr "Multiwährungen Produktgrundpreis"
5030
+
5031
+ #: includes/class-wcj-multicurrency-product-base-price.php:28
5032
+ msgid "Enter prices for WooCommerce products in different currencies."
5033
+ msgstr ""
5034
+ "Gib die Preise für WooCommerce-Produkte in verschiedenen Währungen ein."
5035
+
5036
+ #: includes/class-wcj-multicurrency.php:26
5037
+ msgid "Multicurrency (Currency Switcher)"
5038
+ msgstr "Multiwährungen (Währungsumschalter)"
5039
+
5040
+ #: includes/class-wcj-multicurrency.php:27
5041
+ msgid "Add multiple currencies (currency switcher) to WooCommerce."
5042
+ msgstr "Füge mehrere Währungen (Währungsumschalter) WooCommerce hinzu."
5043
+
5044
+ #: includes/class-wcj-multicurrency.php:76
5045
+ #: includes/class-wcj-price-by-user-role.php:163
5046
+ #: includes/class-wcj-product-by-user.php:205
5047
+ #: includes/export/class-wcj-fields-helper.php:286
5048
+ #: includes/price-by-country/class-wcj-price-by-country-local.php:129
5049
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:154
5050
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:298
5051
+ msgid "Regular Price"
5052
+ msgstr ""
5053
+ "\n"
5054
+ "Regulärer Preis"
5055
+
5056
+ #: includes/class-wcj-multicurrency.php:85
5057
+ #: includes/class-wcj-price-by-user-role.php:172
5058
+ #: includes/class-wcj-product-by-user.php:206
5059
+ #: includes/export/class-wcj-fields-helper.php:287
5060
+ #: includes/price-by-country/class-wcj-price-by-country-local.php:136
5061
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:155
5062
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:306
5063
+ msgid "Sale Price"
5064
+ msgstr "Verkaufspreis"
5065
+
5066
+ #: includes/class-wcj-multicurrency.php:371
5067
+ msgid ""
5068
+ "After setting currencies in the Currencies Options below, use <em>Booster - "
5069
+ "Multicurrency Switcher</em> widget, or <em>"
5070
+ "[wcj_currency_select_drop_down_list]</em> shortcode. If you want to insert "
5071
+ "switcher in your PHP code, just use <em>echo do_shortcode( "
5072
+ "'[wcj_currency_select_drop_down_list]' );</em>"
5073
+ msgstr ""
5074
+ "Nach dem Setzen von Währungen in den Währungsoptionen unten, nutze <em>"
5075
+ "Booster - Multiwährungen-Umschalter</em> widget oder <em>"
5076
+ "[wcj_currency_select_drop_down_list]</em> Shortcode. Wenn Du den Umschalter "
5077
+ "in Deinem PHP-Code einfügen möchtest, nutze dafür einfach <em>echo "
5078
+ "do_shortcode( '[wcj_currency_select_drop_down_list]' );</em>"
5079
+
5080
+ #: includes/class-wcj-multicurrency.php:405
5081
+ msgid "Multicurrency on per Product Basis"
5082
+ msgstr "Multiwährungen auf einer pro Produktbasis"
5083
+
5084
+ #: includes/class-wcj-multicurrency.php:407
5085
+ msgid "This will add meta boxes in product edit."
5086
+ msgstr "Dies wird Meta-Boxen der Produktbearbeitung hinzufügen."
5087
+
5088
+ #: includes/class-wcj-multicurrency.php:413
5089
+ #: includes/class-wcj-price-by-country.php:184
5090
+ msgid "Revert Currency to Default on Checkout"
5091
+ msgstr ""
5092
+ "Zurücksetzen der Währung auf Voreinstellung, sobald Kassenseite geladen wird"
5093
+
5094
+ #: includes/class-wcj-multicurrency.php:420
5095
+ msgid "Rounding"
5096
+ msgstr "Rundung"
5097
+
5098
+ #: includes/class-wcj-multicurrency.php:421
5099
+ msgid "If using exchange rates, choose rounding here."
5100
+ msgstr "Wenn Du Wechselkurse verwendest, wähle hier die Rundung."
5101
+
5102
+ #: includes/class-wcj-multicurrency.php:426
5103
+ #: includes/class-wcj-price-by-country.php:198
5104
+ msgid "No rounding"
5105
+ msgstr "Keine Rundung"
5106
+
5107
+ #: includes/class-wcj-multicurrency.php:427
5108
+ #: includes/class-wcj-price-by-country.php:199
5109
+ msgid "Round"
5110
+ msgstr "Rund"
5111
+
5112
+ #: includes/class-wcj-multicurrency.php:428
5113
+ #: includes/class-wcj-price-by-country.php:201
5114
+ msgid "Round up"
5115
+ msgstr "Aufrunden"
5116
+
5117
+ #: includes/class-wcj-multicurrency.php:429
5118
+ #: includes/class-wcj-price-by-country.php:200
5119
+ msgid "Round down"
5120
+ msgstr "Abrunden"
5121
+
5122
+ #: includes/class-wcj-multicurrency.php:433
5123
+ msgid "Rounding Precision"
5124
+ msgstr "Rundungsgenauigkeit"
5125
+
5126
+ #: includes/class-wcj-multicurrency.php:434
5127
+ msgid "If rounding enabled, set precision here."
5128
+ msgstr "Wenn die Rundung aktiviert ist, stelle hier die Genauigkeit ein."
5129
+
5130
+ #: includes/class-wcj-multicurrency.php:447
5131
+ msgid ""
5132
+ "One currency probably should be set to current (original) shop currency with "
5133
+ "an exchange rate of 1."
5134
+ msgstr ""
5135
+ "Eine Währung sollte vielleicht auf die aktuelle (ursprüngliche) "
5136
+ "Geschäftswährung mit einem Wechselkurs von 1 gesetzt werden."
5137
+
5138
+ #: includes/class-wcj-multicurrency.php:503
5139
+ msgid "Role Defaults"
5140
+ msgstr "Standardrollen"
5141
+
5142
+ #: includes/class-wcj-multicurrency.php:505
5143
+ #: includes/class-wcj-order-min-amount.php:263
5144
+ #: includes/class-wcj-price-by-user-role.php:414
5145
+ msgid ""
5146
+ "Custom roles can be added via \"Add/Manage Custom Roles\" tool in Booster's "
5147
+ "<a href=\"%s\">General</a> module."
5148
+ msgstr ""
5149
+ "Benutzerdefinierte Rollen können über das Werkzeug \"Hinzufügen/Verwalten "
5150
+ "von angepassten Benutzerrollen\" im Booster-Modul <a href=\"%s\">"
5151
+ "Allgemein</a> hinzugefügt werden."
5152
+
5153
+ #: includes/class-wcj-multicurrency.php:510
5154
+ msgid "Roles"
5155
+ msgstr "Rollen"
5156
+
5157
+ #: includes/class-wcj-multicurrency.php:511
5158
+ #: includes/class-wcj-wholesale-price.php:497
5159
+ msgid "Save settings after you change this option. Leave blank to disable."
5160
+ msgstr ""
5161
+ "Speichere die Einstellungen nach der Änderung dieser Option. Leer lassen zum "
5162
+ "Deaktivieren."
5163
+
5164
+ #: includes/class-wcj-multicurrency.php:534
5165
+ msgid "No default currency"
5166
+ msgstr "Keine Standardwährung"
5167
+
5168
+ #: includes/class-wcj-old-slugs.php:25
5169
+ msgid "Old Slugs"
5170
+ msgstr "Alte Slugs"
5171
+
5172
+ #: includes/class-wcj-old-slugs.php:26
5173
+ msgid "Remove old WooCommerce products slugs."
5174
+ msgstr "Alte WooCommerce-Produkt-Slugs entfernen."
5175
+
5176
+ #: includes/class-wcj-old-slugs.php:32
5177
+ msgid "Remove Old Slugs"
5178
+ msgstr "Entferne alte Slugs"
5179
+
5180
+ #: includes/class-wcj-old-slugs.php:33 includes/class-wcj-old-slugs.php:90
5181
+ msgid "Tool removes old slugs/permalinks from database."
5182
+ msgstr "Wekrzeug entfernt alte Slugs/Permalinks aus der Datenbank."
5183
+
5184
+ #: includes/class-wcj-old-slugs.php:89
5185
+ msgid "Booster - Remove Old Product Slugs"
5186
+ msgstr "Booster - Entferne alte Produkt-Slugs"
5187
+
5188
+ #: includes/class-wcj-old-slugs.php:95
5189
+ msgid "Old products slugs found:"
5190
+ msgstr "Alte Produkt-Slugs gefunden:"
5191
+
5192
+ #: includes/class-wcj-old-slugs.php:103
5193
+ msgid "None-products slugs found:"
5194
+ msgstr "Keine Produkt-Slugs gefunden:"
5195
+
5196
+ #: includes/class-wcj-old-slugs.php:110
5197
+ msgid "No old slugs found."
5198
+ msgstr "Keine alten Slugs gefunden."
5199
+
5200
+ #: includes/class-wcj-order-custom-statuses.php:26
5201
+ msgid "Order Custom Statuses"
5202
+ msgstr "Benutzerdefinierte Bestellzustände"
5203
+
5204
+ #: includes/class-wcj-order-custom-statuses.php:27
5205
+ msgid "Custom statuses for WooCommerce orders."
5206
+ msgstr "Benutzerdefinierte Zustände für WooCommerce-Bestellungen"
5207
+
5208
+ #: includes/class-wcj-order-custom-statuses.php:33
5209
+ #: includes/class-wcj-order-custom-statuses.php:311
5210
+ msgid "Custom Statuses"
5211
+ msgstr "Benutzerdefinierte Zustände"
5212
+
5213
+ #: includes/class-wcj-order-custom-statuses.php:34
5214
+ msgid "Tool lets you add or delete any custom status for WooCommerce orders."
5215
+ msgstr ""
5216
+ "Mit diesem Werkzeug kannst Du jeden benutzerdefinierten Zustand für "
5217
+ "WooCommerce-Bestellungen hinzufügen oder löschen."
5218
+
5219
+ #: includes/class-wcj-order-custom-statuses.php:64
5220
+ msgctxt "Order status"
5221
+ msgid "Pending payment"
5222
+ msgstr "Ausstehende Zahlung"
5223
+
5224
+ #: includes/class-wcj-order-custom-statuses.php:65
5225
+ #: includes/functions/wcj-functions.php:1160
5226
+ msgctxt "Order status"
5227
+ msgid "Processing"
5228
+ msgstr "Verarbeitung"
5229
+
5230
+ #: includes/class-wcj-order-custom-statuses.php:66
5231
+ msgctxt "Order status"
5232
+ msgid "On hold"
5233
+ msgstr "In Wartestellung"
5234
+
5235
+ #: includes/class-wcj-order-custom-statuses.php:67
5236
+ #: includes/functions/wcj-functions.php:1162
5237
+ msgctxt "Order status"
5238
+ msgid "Completed"
5239
+ msgstr "Abgeschlossen"
5240
+
5241
+ #: includes/class-wcj-order-custom-statuses.php:68
5242
+ #: includes/functions/wcj-functions.php:1163
5243
+ msgctxt "Order status"
5244
+ msgid "Cancelled"
5245
+ msgstr "Abgebrochen"
5246
+
5247
+ #: includes/class-wcj-order-custom-statuses.php:69
5248
+ #: includes/functions/wcj-functions.php:1164
5249
+ msgctxt "Order status"
5250
+ msgid "Refunded"
5251
+ msgstr "Rückerstattet"
5252
+
5253
+ #: includes/class-wcj-order-custom-statuses.php:70
5254
+ #: includes/functions/wcj-functions.php:1165
5255
+ msgctxt "Order status"
5256
+ msgid "Failed"
5257
+ msgstr "Fehlgeschlagen"
5258
+
5259
+ #: includes/class-wcj-order-custom-statuses.php:160
5260
+ msgid "Status slug is empty. Status was not added!"
5261
+ msgstr "Status-Slug ist leer. Status wurde nicht hinzugefügt!"
5262
+
5263
+ #: includes/class-wcj-order-custom-statuses.php:163
5264
+ msgid ""
5265
+ "The length of status slug must be 17 or less characters. Status was not "
5266
+ "added!"
5267
+ msgstr ""
5268
+ "Die Länge des Status-Slugs muss 17 oder weniger Zeichen sein. Status wurde "
5269
+ "nicht hinzugefügt!"
5270
+
5271
+ #: includes/class-wcj-order-custom-statuses.php:166
5272
+ msgid "Status label is empty. Status was not added!"
5273
+ msgstr "Status-Label ist leer. Status wurde nicht hinzugefügt!"
5274
+
5275
+ #: includes/class-wcj-order-custom-statuses.php:173
5276
+ msgid "Duplicate slug. Status was not added!"
5277
+ msgstr "Doppelter Slug. Status wurde nicht hinzugefügt!"
5278
+
5279
+ #: includes/class-wcj-order-custom-statuses.php:183
5280
+ msgid "New status has been successfully added!"
5281
+ msgstr "Neuer Status wurde erfolgreich hinzugefügt!"
5282
+
5283
+ #: includes/class-wcj-order-custom-statuses.php:185
5284
+ msgid "Status was not added."
5285
+ msgstr "Zustand wurde nicht hinzugefügt."
5286
+
5287
+ #: includes/class-wcj-order-custom-statuses.php:203
5288
+ msgid "Status has been successfully deleted."
5289
+ msgstr "Status wurde erfolgreich gelöscht."
5290
+
5291
+ #: includes/class-wcj-order-custom-statuses.php:205
5292
+ msgid "Delete failed."
5293
+ msgstr "Löschung fehlgeschlagen."
5294
+
5295
+ #: includes/class-wcj-order-custom-statuses.php:210
5296
+ msgid "Booster - Custom Statuses"
5297
+ msgstr "Booster - benutzerdefinierter Zustand"
5298
+
5299
+ #: includes/class-wcj-order-custom-statuses.php:211
5300
+ msgid ""
5301
+ "The tool lets you add or delete any custom status for WooCommerce orders."
5302
+ msgstr ""
5303
+ "Mit dem Werkzeug kannst Du jeden benutzerdefinierten Status für WooCommerce-"
5304
+ "Bestellungen hinzufügen oder löschen."
5305
+
5306
+ #: includes/class-wcj-order-custom-statuses.php:213
5307
+ msgid "Statuses"
5308
+ msgstr "Zustände"
5309
+
5310
+ #: includes/class-wcj-order-custom-statuses.php:216
5311
+ msgid "Slug"
5312
+ msgstr "Titelform"
5313
+
5314
+ #: includes/class-wcj-order-custom-statuses.php:218
5315
+ #: includes/class-wcj-order-custom-statuses.php:257
5316
+ msgid "Icon Code"
5317
+ msgstr "Symbolcode"
5318
+
5319
+ #: includes/class-wcj-order-custom-statuses.php:219
5320
+ #: includes/class-wcj-order-custom-statuses.php:259
5321
+ msgid "Icon Color"
5322
+ msgstr "Symbol Farbe"
5323
+
5324
+ #: includes/class-wcj-order-custom-statuses.php:255
5325
+ msgid "Slug (without wc- prefix)"
5326
+ msgstr "Slug (ohne wc- Präfix)"
5327
+
5328
+ #: includes/class-wcj-order-custom-statuses.php:258
5329
+ msgid "You can check icon codes <a target=\"_blank\" href=\"%s\">here</a>."
5330
+ msgstr ""
5331
+ "Du kannst die Symbolcodes <a target=\"_blank\" href=\"%s\">hier</a> "
5332
+ "überprüfen."
5333
+
5334
+ #: includes/class-wcj-order-custom-statuses.php:261
5335
+ msgid "Add new custom status"
5336
+ msgstr "Neuen benutzerdefinierten Status hinzufügen"
5337
+
5338
+ #: includes/class-wcj-order-custom-statuses.php:283
5339
+ #: includes/class-wcj-order-custom-statuses.php:284
5340
+ msgid "Mark"
5341
+ msgstr "Kennzeichen"
5342
+
5343
+ #: includes/class-wcj-order-custom-statuses.php:316
5344
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:138
5345
+ msgid "Default Order Status"
5346
+ msgstr "Standardbestellzustand"
5347
+
5348
+ #: includes/class-wcj-order-custom-statuses.php:317
5349
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:139
5350
+ msgid "Enable Custom Statuses feature to add custom statuses to the list."
5351
+ msgstr ""
5352
+ "Aktiviere die Funktion \"Benutzerdefinierter Zustand\", um sie der Liste "
5353
+ "benutzerdefinierter Zustände hinzuzufügen."
5354
+
5355
+ #: includes/class-wcj-order-custom-statuses.php:318
5356
+ msgid ""
5357
+ "You can change the default order status here. However payment gateways can "
5358
+ "change this status immediatelly on order creation. E.g. BACS gateway will "
5359
+ "change status to On-hold."
5360
+ msgstr ""
5361
+ "Hier kannst Du den voreingestellten Bestellzustand ändern. Allerdings können "
5362
+ "Zahlungs-Gateways diesen Status sofort bei der Bestellerstellung ändern. z.B."
5363
+ " das BACS-Gateway wechselt den Zustand auf \"In Wartestellung\"."
5364
+
5365
+ #: includes/class-wcj-order-custom-statuses.php:325
5366
+ msgid "Add All Statuses to Admin Order Bulk Actions"
5367
+ msgstr "Alle Zustände den Administrator-Bestellung-Bulk-Aktionen hinzufügen"
5368
+
5369
+ #: includes/class-wcj-order-custom-statuses.php:332
5370
+ msgid "Add Custom Statuses to Admin Reports"
5371
+ msgstr "Hinzufügen von benutzerdefinierten Zuständen zu Administratorberichten"
5372
+
5373
+ #: includes/class-wcj-order-min-amount.php:27
5374
+ #: includes/class-wcj-order-min-amount.php:198
5375
+ msgid "Order Minimum Amount"
5376
+ msgstr "Bestellmindestbetrag"
5377
+
5378
+ #: includes/class-wcj-order-min-amount.php:28
5379
+ msgid "Minimum WooCommerce order amount (optionally by user role)."
5380
+ msgstr "Mindest-WooCommerce-Bestellmenge (optional nach Benutzerrolle)."
5381
+
5382
+ #: includes/class-wcj-order-min-amount.php:200
5383
+ msgid "This section lets you set minimum order amount."
5384
+ msgstr "Dieser Abschnitt lässt Dich die minimale Bestellmenge festlegen."
5385
+
5386
+ #: includes/class-wcj-order-min-amount.php:204
5387
+ msgid "Amount"
5388
+ msgstr "Betrag"
5389
+
5390
+ #: includes/class-wcj-order-min-amount.php:205
5391
+ msgid "Minimum order amount. Set to 0 to disable."
5392
+ msgstr "Minimaler Bestellwert. Auf 0 stellen um zu deaktivieren."
5393
+
5394
+ #: includes/class-wcj-order-min-amount.php:215
5395
+ msgid "Exclude Shipping from Cart Total"
5396
+ msgstr "Versandkosten aus der Gesamtsumme im Warenkorb ausschließen"
5397
+
5398
+ #: includes/class-wcj-order-min-amount.php:216
5399
+ msgid "Exclude"
5400
+ msgstr "Ausschließen"
5401
+
5402
+ #: includes/class-wcj-order-min-amount.php:222
5403
+ msgid "Error message"
5404
+ msgstr "Fehlermeldung"
5405
+
5406
+ #: includes/class-wcj-order-min-amount.php:224
5407
+ #: includes/class-wcj-order-min-amount.php:241
5408
+ msgid ""
5409
+ "Message to customer if order is below minimum amount. Default: You must have "
5410
+ "an order with a minimum of %s to place your order, your current order total "
5411
+ "is %s."
5412
+ msgstr ""
5413
+ "Nachricht an Kunden, wenn Auftrag unter der Mindestmenge ist. Voreinstellung:"
5414
+ " Du musst einen Auftrag mit einem Minimum von %s haben, um Deine Bestellung "
5415
+ "abschicken zu können, die aktuelle Gesamtsumme Ihrer Bestellung beträgt %s."
5416
+
5417
+ #: includes/class-wcj-order-min-amount.php:232
5418
+ msgid "Add notice to cart page also"
5419
+ msgstr "Dem Warenkorb auch einen Hinweis hinzufügen"
5420
+
5421
+ #: includes/class-wcj-order-min-amount.php:239
5422
+ msgid "Message on cart page"
5423
+ msgstr "Nachricht auf Warenkorbseite"
5424
+
5425
+ #: includes/class-wcj-order-min-amount.php:249
5426
+ msgid ""
5427
+ "Stop customer from seeing the Checkout page if minimum amount not reached."
5428
+ msgstr ""
5429
+ "Der Kunde bekommt die Kassenseite nicht zu sehen, wenn der Mindestbetrag "
5430
+ "nicht erreicht wurde."
5431
+
5432
+ #: includes/class-wcj-order-min-amount.php:250
5433
+ msgid "Redirect back to Cart page"
5434
+ msgstr "Zurück zur Warenkorb-Seite"
5435
+
5436
+ #: includes/class-wcj-order-min-amount.php:260
5437
+ msgid "Order Minimum Amount by User Role"
5438
+ msgstr "Bestellmindestbetrag nach Benutzerrolle"
5439
+
5440
+ #: includes/class-wcj-order-numbers.php:25
5441
+ #: includes/class-wcj-order-numbers.php:203
5442
+ msgid "Order Numbers"
5443
+ msgstr "Bestellnummern"
5444
+
5445
+ #: includes/class-wcj-order-numbers.php:26
5446
+ msgid ""
5447
+ "WooCommerce sequential order numbering, custom order number prefix, suffix "
5448
+ "and number width."
5449
+ msgstr ""
5450
+ "WooCommerce aufeinanderfolgende Bestellnummerierung, benutzerdefinierte "
5451
+ "Bestellnummern Präfix und Nummernbreite."
5452
+
5453
+ #: includes/class-wcj-order-numbers.php:32
5454
+ msgid "Orders Renumerate"
5455
+ msgstr "Bestellungen renumerieren"
5456
+
5457
+ #: includes/class-wcj-order-numbers.php:33
5458
+ msgid "Tool renumerates all orders."
5459
+ msgstr "Werkzeug renumeriert alle Bestellungen"
5460
+
5461
+ #: includes/class-wcj-order-numbers.php:114
5462
+ msgid "Orders successfully renumerated!"
5463
+ msgstr "Bestellungen erfolgreich renumeriert!"
5464
+
5465
+ #: includes/class-wcj-order-numbers.php:118
5466
+ msgid ""
5467
+ "Press the button below to renumerate all existing orders starting from order "
5468
+ "counter settings in WooCommerce > Settings > Booster > Order Numbers."
5469
+ msgstr ""
5470
+ "Drücke auf den Button unten, um alle vorhandenen Bestellungen zur "
5471
+ "renumerieren, beginnend von der Bestellungen-Zählereinstellungen in "
5472
+ "WooCmmerce > Einstellungen > Booster > Bestellnummern"
5473
+
5474
+ #: includes/class-wcj-order-numbers.php:121
5475
+ msgid "Renumerate orders"
5476
+ msgstr "Renumeriere Bestellungen"
5477
+
5478
+ #: includes/class-wcj-order-numbers.php:205
5479
+ msgid ""
5480
+ "This section lets you enable sequential order numbering, set custom number "
5481
+ "prefix, suffix and width."
5482
+ msgstr ""
5483
+ "Dieser Abschnitt lässt Dich die fortlaufende Bestellnummerierung aktivieren, "
5484
+ "benutzerspezifisches Nummern Präfix, Suffix und Breite festlegen."
5485
+
5486
+ #: includes/class-wcj-order-numbers.php:209
5487
+ msgid "Make Order Numbers Sequential"
5488
+ msgstr "Erzeuge aufeinanderfolgende Bestellnummern"
5489
+
5490
+ #: includes/class-wcj-order-numbers.php:216
5491
+ msgid "Next Order Number"
5492
+ msgstr "Nächste Bestellnummer"
5493
+
5494
+ #: includes/class-wcj-order-numbers.php:217
5495
+ msgid "Next new order will be given this number."
5496
+ msgstr "Nächste Neubestellung erhält diese Nummer."
5497
+
5498
+ #: includes/class-wcj-order-numbers.php:217
5499
+ msgid "Use Renumerate Orders tool for existing orders."
5500
+ msgstr ""
5501
+ "Nutze das Werkzeug \"Bestellungen renumerieren\" für vorhandene Bestellungen"
5502
+
5503
+ #: includes/class-wcj-order-numbers.php:218
5504
+ msgid "This will be ignored if sequential order numbering is disabled."
5505
+ msgstr ""
5506
+ "Dies wird ignoriert wenn aufeinanderfolgende Bestellnummerierung deaktiviert "
5507
+ "ist."
5508
+
5509
+ #: includes/class-wcj-order-numbers.php:224
5510
+ msgid "Order Number Custom Prefix"
5511
+ msgstr "Benutzerdefinierter Bestellnummer-Präfix"
5512
+
5513
+ #: includes/class-wcj-order-numbers.php:225
5514
+ msgid ""
5515
+ "Prefix before order number (optional). This will change the prefixes for all "
5516
+ "existing orders."
5517
+ msgstr ""
5518
+ "Präfix vor Bestellnummer (optional). Dies ändert die Präfixe für alle "
5519
+ "vorhandenen Bestellungen."
5520
+
5521
+ #: includes/class-wcj-order-numbers.php:232
5522
+ msgid "Order Number Date Prefix"
5523
+ msgstr "Bestellnummer Datums-Präfix"
5524
+
5525
+ #: includes/class-wcj-order-numbers.php:234
5526
+ msgid ""
5527
+ "Date prefix before order number (optional). This will change the prefixes "
5528
+ "for all existing orders. Value is passed directly to PHP `date` function, so "
5529
+ "most of PHP date formats can be used. The only exception is using `\\` "
5530
+ "symbol in date format, as this symbol will be excluded from date. Try: Y-m-d-"
5531
+ " or mdy."
5532
+ msgstr ""
5533
+ "Datums-Präfix vor Bestellnummer (optional). Dies ändert die Präfixe für alle "
5534
+ "vorhandenen Bestellungen. Der wird direkt an die PHP `date` Funktion "
5535
+ "weitergegeben, daher können die meisten PHP date Formate genutzt werden. Die "
5536
+ "einzige Ausnahme is das `\\` Symbol im Datumsformat, denn dieses Symbol wird "
5537
+ "von einem Datum ausgeschlossen. Versuche: Y-m-d- or mdy."
5538
+
5539
+ #: includes/class-wcj-order-numbers.php:242
5540
+ msgid "Order Number Width"
5541
+ msgstr "Bestellnummernbreite"
5542
+
5543
+ #: includes/class-wcj-order-numbers.php:244
5544
+ msgid ""
5545
+ "Minimum width of number without prefix (zeros will be added to the left side)"
5546
+ ". This will change the minimum width of order number for all existing orders."
5547
+ " E.g. set to 5 to have order number displayed as 00001 instead of 1. Leave "
5548
+ "zero to disable."
5549
+ msgstr ""
5550
+ "Minimale Breite der Nummer ohne Präfix (Nullen werden auf der linken Seite "
5551
+ "hinzugefügt). Dies ändert die Mindestbreite der Bestellnummer für alle "
5552
+ "bestehenden Bestellungen. z.B. Auf 5 gesetzt, damit die Bestellnummer als "
5553
+ "00001 anstelle von 1 angezeigt wird. Lasse Null um zu deaktivieren."
5554
+
5555
+ #: includes/class-wcj-order-numbers.php:252
5556
+ msgid "Order Number Custom Suffix"
5557
+ msgstr "Bestellnummer benutzerdefinierter Suffix"
5558
+
5559
+ #: includes/class-wcj-order-numbers.php:254
5560
+ msgid ""
5561
+ "Suffix after order number (optional). This will change the suffixes for all "
5562
+ "existing orders."
5563
+ msgstr ""
5564
+ "Suffix nach der Bestellnummer (optional). Dies ändert die Suffixe für alle "
5565
+ "vorhandenen Bestellungen."
5566
+
5567
+ #: includes/class-wcj-order-numbers.php:262
5568
+ msgid "Order Number Date Suffix"
5569
+ msgstr "Bestellnummer Datum Suffix"
5570
+
5571
+ #: includes/class-wcj-order-numbers.php:264
5572
+ msgid ""
5573
+ "Date suffix after order number (optional). This will change the suffixes for "
5574
+ "all existing orders. Value is passed directly to PHP `date` function, so "
5575
+ "most of PHP date formats can be used. The only exception is using `\\` "
5576
+ "symbol in date format, as this symbol will be excluded from date. Try: Y-m-d-"
5577
+ " or mdy."
5578
+ msgstr ""
5579
+ "Datumssuffix nach Bestellnummer (optional). Dies ändert die Suffixe für alle "
5580
+ "vorhandenen Bestellungen. Wert wird direkt an PHP `date`-Funktion übergeben, "
5581
+ "so dass die meisten PHP-Datumsformate verwendet werden können. Die einzige "
5582
+ "Ausnahme ist die Verwendung von `\\` Symbol im Datumsformat, da dieses "
5583
+ "Symbol vom Datum ausgeschlossen wird. Versuche: Y-m-d- oder mdy."
5584
+
5585
+ #: includes/class-wcj-order-numbers.php:272
5586
+ msgid "Use MySQL Transaction"
5587
+ msgstr "Verwende MySQL-Transaktion"
5588
+
5589
+ #: includes/class-wcj-order-numbers.php:274
5590
+ msgid ""
5591
+ "This should be enabled if you have a lot of simultaneous orders in your shop "
5592
+ "- to prevent duplicate order numbers (sequential)."
5593
+ msgstr ""
5594
+ "Dies sollte aktiviert sein, wenn Du viele gleichzeitige Bestellungen in "
5595
+ "Deinem Shop hast - um doppelte Bestellnummern (aufeinanderfolgend) zu "
5596
+ "verhindern."
5597
+
5598
+ #: includes/class-wcj-order-numbers.php:280
5599
+ msgid "Enable Order Tracking by Custom Number"
5600
+ msgstr "Auftragsnachverfolgung nach Kundennummer aktivieren"
5601
+
5602
+ #: includes/class-wcj-orders.php:25
5603
+ msgid "Orders"
5604
+ msgstr "Bestellungen"
5605
+
5606
+ #: includes/class-wcj-orders.php:26
5607
+ msgid ""
5608
+ "Orders auto-complete. Custom admin order list columns. Admin order currency. "
5609
+ "Admin order list multiple status filtering."
5610
+ msgstr ""
5611
+ "Aufträge automatisch abschließen. Benutzerdefinierte Admin-"
5612
+ "Bestelllistenspalten. Admin-Bestellwährung. Admin-Bestellliste "
5613
+ "Mehrfachstatusfilterung."
5614
+
5615
+ #: includes/class-wcj-orders.php:129
5616
+ msgid "Not Completed"
5617
+ msgstr "Nicht vollständig"
5618
+
5619
+ #: includes/class-wcj-orders.php:235
5620
+ #: includes/export/class-wcj-fields-helper.php:117
5621
+ #: includes/export/class-wcj-fields-helper.php:202
5622
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:261
5623
+ msgid "Order Currency"
5624
+ msgstr "Bestellwährung"
5625
+
5626
+ #: includes/class-wcj-orders.php:236
5627
+ msgid "Save order after you change this field."
5628
+ msgstr "Bestellung speichern nach dem Du das Feld geändert hast."
5629
+
5630
+ #: includes/class-wcj-orders.php:264
5631
+ msgid "All countries"
5632
+ msgstr "Alle Länder"
5633
+
5634
+ #: includes/class-wcj-orders.php:388 includes/class-wcj-orders.php:393
5635
+ msgid "Admin Order Currency"
5636
+ msgstr "Admin Bestellwährung"
5637
+
5638
+ #: includes/class-wcj-orders.php:395
5639
+ msgid ""
5640
+ "When enabled this will add \"Booster: Orders\" metabox to each order's edit "
5641
+ "page."
5642
+ msgstr "Wenn aktiviert, fügt man \"Booster: Bestellungen\"-Metabox hinzu."
5643
+
5644
+ #: includes/class-wcj-orders.php:401
5645
+ msgid "Admin Order Currency Method"
5646
+ msgstr "Admin Bestellwährung-Methode"
5647
+
5648
+ #: includes/class-wcj-orders.php:402
5649
+ msgid ""
5650
+ "Choose if you want changed order currency to be saved directly to DB, or if "
5651
+ "you want to use filter. When using <em>filter</em> method, changes will be "
5652
+ "active only when \"Admin Order Currency\" section is enabled. When using <em>"
5653
+ "directly to DB</em> method, changes will be permanent, that is even if "
5654
+ "Booster plugin is removed."
5655
+ msgstr ""
5656
+ "Wähle aus, ob die geänderte Bestellwährung direkt in Datenbank gespeichert "
5657
+ "werden soll oder ob Du Filter verwenden möchtest. Wenn Du die <em>filter</em>"
5658
+ "-Methode verwendest, werden die Änderungen nur dann aktiviert, wenn der "
5659
+ "Abschnitt \"Admin Bestellwährung\" aktiviert ist. Bei der Verwendung der <em>"
5660
+ "Direkt in Datenbank</em>-Methode sind Änderungen dauerhaft, so auch wenn das "
5661
+ "Booster-Plugin entfernt wird."
5662
+
5663
+ #: includes/class-wcj-orders.php:408
5664
+ msgid "Directly to DB"
5665
+ msgstr "Direkt in Datenbank"
5666
+
5667
+ #: includes/class-wcj-orders.php:416
5668
+ msgid "Orders Auto-Complete"
5669
+ msgstr "Automatische Bestellvervollständigung"
5670
+
5671
+ #: includes/class-wcj-orders.php:418
5672
+ msgid "This section lets you enable orders auto-complete function."
5673
+ msgstr ""
5674
+ "Dieser Abschnitt lässt Dich Bestellungs-Auto-Vervollständigungsfunktion "
5675
+ "aktivieren."
5676
+
5677
+ #: includes/class-wcj-orders.php:422
5678
+ msgid "Auto-complete all WooCommerce orders"
5679
+ msgstr "Automatische Vervollständigung aller WooCommerce-Bestellungen"
5680
+
5681
+ #: includes/class-wcj-orders.php:424
5682
+ msgid ""
5683
+ "E.g. if you sell digital products then you are not shipping anything and you "
5684
+ "may want auto-complete all your orders."
5685
+ msgstr ""
5686
+ "Z.B. Wenn Du digitale Produkte verkaufst, dann versende nichts und Du willst "
5687
+ "vielleicht die Bestellungen automatisch abwickeln."
5688
+
5689
+ #: includes/class-wcj-orders.php:434
5690
+ msgid "Admin Orders List Custom Columns"
5691
+ msgstr "Admin-Bestellliste benutzerdefinierte Spalten"
5692
+
5693
+ #: includes/class-wcj-orders.php:436 includes/class-wcj-purchase-data.php:386
5694
+ msgid "This section lets you add custom columns to WooCommerce orders list."
5695
+ msgstr ""
5696
+ "Dieser Abschnitt lässt Dich benutzerdefinierte Spalten der WooCommerce-"
5697
+ "Bestellliste hinzufügen."
5698
+
5699
+ #: includes/class-wcj-orders.php:447
5700
+ msgid "Custom Columns Total Number"
5701
+ msgstr "Gesamtanzahl benutzerdefinierter Spalten"
5702
+
5703
+ #: includes/class-wcj-orders.php:462
5704
+ msgid "Custom Column"
5705
+ msgstr "benutzerdefinierte Spalte"
5706
+
5707
+ #: includes/class-wcj-orders.php:477
5708
+ msgid "You can use shortcodes here."
5709
+ msgstr "Hier kannst Du Shortcodes verwenden."
5710
+
5711
+ #: includes/class-wcj-orders.php:491
5712
+ msgid "Admin Orders List Multiple Status"
5713
+ msgstr "Admin-Bestellliste Mehrfache Status"
5714
+
5715
+ #: includes/class-wcj-orders.php:496
5716
+ msgid "Multiple Status Filtering"
5717
+ msgstr "Mehrfache Statusfilterung"
5718
+
5719
+ #: includes/class-wcj-orders.php:502
5720
+ msgid "Add as multiple select"
5721
+ msgstr "Als Mehrfachauswahl hinzufügen"
5722
+
5723
+ #: includes/class-wcj-orders.php:503
5724
+ msgid "Add as checkboxes"
5725
+ msgstr "Als Kontrollkästchen hinzufügen"
5726
+
5727
+ #: includes/class-wcj-orders.php:507
5728
+ msgid "Hide Default Statuses Menu"
5729
+ msgstr "Ausblenden des Standard-Status-Menüs"
5730
+
5731
+ #: includes/class-wcj-orders.php:514
5732
+ msgid "Add \"Not Completed\" Status Link to Default Statuses Menu"
5733
+ msgstr "Hinzufügen \"Nicht vollständig\"-Status-Link zum Standard-Status-Menü"
5734
+
5735
+ #: includes/class-wcj-orders.php:525
5736
+ msgid "Admin Orders List Columns Order"
5737
+ msgstr "Admin-Bestellliste Spaltenreihenfolge"
5738
+
5739
+ #: includes/class-wcj-orders.php:530
5740
+ msgid "Columns Order"
5741
+ msgstr "Spalten-Reihenfolge"
5742
+
5743
+ #: includes/class-wcj-orders.php:538
5744
+ msgid "Default columns order"
5745
+ msgstr "Standard Spalten-Reihenfolge"
5746
+
5747
+ #: includes/class-wcj-payment-gateways-by-country.php:26
5748
+ msgid "Gateways by Country or State"
5749
+ msgstr "Gateways nach Land oder Staat"
5750
+
5751
+ #: includes/class-wcj-payment-gateways-by-country.php:27
5752
+ msgid ""
5753
+ "Set countries or states to include/exclude for WooCommerce payment gateways "
5754
+ "to show up."
5755
+ msgstr ""
5756
+ "Lege ein-/auszuschließende Länder oder Staaten fest, die von WooCommerce-"
5757
+ "Zahlungs-Gateways angezeigt werden sollen."
5758
+
5759
+ #: includes/class-wcj-payment-gateways-by-country.php:90
5760
+ #: includes/class-wcj-payment-gateways-by-user-role.php:83
5761
+ msgid "Leave empty to disable."
5762
+ msgstr "Leer lassen, um zu deaktivieren."
5763
+
5764
+ #: includes/class-wcj-payment-gateways-by-country.php:111
5765
+ msgid "Include Countries"
5766
+ msgstr "Länder einschließen"
5767
+
5768
+ #: includes/class-wcj-payment-gateways-by-country.php:123
5769
+ msgid "Exclude Countries"
5770
+ msgstr "Länder ausschließen"
5771
+
5772
+ #: includes/class-wcj-payment-gateways-by-country.php:135
5773
+ msgid "Include States (Base Country)"
5774
+ msgstr "Staaten einschließen (Basisland)"
5775
+
5776
+ #: includes/class-wcj-payment-gateways-by-country.php:147
5777
+ msgid "Exclude States (Base Country)"
5778
+ msgstr "Staaten ausschließen (Basisland)"
5779
+
5780
+ #: includes/class-wcj-payment-gateways-by-user-role.php:27
5781
+ msgid "Gateways by User Role"
5782
+ msgstr "Gateways nach Benutzerrolle"
5783
+
5784
+ #: includes/class-wcj-payment-gateways-by-user-role.php:28
5785
+ msgid ""
5786
+ "Set user roles to include/exclude for WooCommerce payment gateways to show "
5787
+ "up."
5788
+ msgstr ""
5789
+ "Einstellen von Benutzerrollen die ein-/ausschließen können WooCommerce "
5790
+ "Gateways anzuzeigen"
5791
+
5792
+ #: includes/class-wcj-payment-gateways-by-user-role.php:84
5793
+ #: includes/class-wcj-product-by-user.php:258
5794
+ msgid ""
5795
+ "Custom roles can be added via \"Add/Manage Custom Roles\" tool in Booster's "
5796
+ "<a href=\"%s\">General</a> module"
5797
+ msgstr ""
5798
+ "Benutzerdefinierte Rollen können über das Werkzeug \"Hinzufügen/Verwalten "
5799
+ "von angepassten Benutzerrollen\" im Booster-Modul <a href=\"%s\">"
5800
+ "Allgemein</a> hinzugefügt werden"
5801
+
5802
+ #: includes/class-wcj-payment-gateways-by-user-role.php:105
5803
+ msgid "Include User Roles"
5804
+ msgstr "Benutzerrollen einschließen"
5805
+
5806
+ #: includes/class-wcj-payment-gateways-by-user-role.php:117
5807
+ msgid "Exclude User Roles"
5808
+ msgstr "Benutzerrollen ausschließen"
5809
+
5810
+ #: includes/class-wcj-payment-gateways-currency.php:26
5811
+ msgid "Gateways Currency"
5812
+ msgstr "Währung von Gateways"
5813
+
5814
+ #: includes/class-wcj-payment-gateways-currency.php:27
5815
+ msgid "Currency per WooCommerce payment gateway."
5816
+ msgstr "Währung pro WooCommerce Zahlungs-Gateway."
5817
+
5818
+ #: includes/class-wcj-payment-gateways-currency.php:228
5819
+ msgid "Payment Gateways Currency Options"
5820
+ msgstr "Zahlungs-Gateways Währungs-Optionen"
5821
+
5822
+ #: includes/class-wcj-payment-gateways-currency.php:230
5823
+ msgid "This section lets you set different currency for each payment gateway."
5824
+ msgstr ""
5825
+ "Dieser Abschnitt lässt Dich unterschiedliche Währungen für jeden "
5826
+ "Zahlungsanbieter festlegen."
5827
+
5828
+ #: includes/class-wcj-payment-gateways-currency.php:262
5829
+ msgid "No changes"
5830
+ msgstr "Keine Änderungen"
5831
+
5832
+ #: includes/class-wcj-payment-gateways-fees.php:26
5833
+ msgid "Gateways Fees and Discounts"
5834
+ msgstr "Gateways Gebühren und Rabatte"
5835
+
5836
+ #: includes/class-wcj-payment-gateways-fees.php:27
5837
+ msgid "Enable extra fees or discounts for WooCommerce payment gateways."
5838
+ msgstr ""
5839
+ "Ermögliche zusätzliche Gebühren oder Rabatte für WooCommerce Zahlungs-"
5840
+ "Gateways."
5841
+
5842
+ #: includes/class-wcj-payment-gateways-fees.php:138
5843
+ msgid "Payment Gateways Fees and Discounts Options"
5844
+ msgstr "Zahlung Gateways Gebühren und Rabatt Optionen"
5845
+
5846
+ #: includes/class-wcj-payment-gateways-fees.php:140
5847
+ msgid "This section lets you set extra fees for payment gateways."
5848
+ msgstr ""
5849
+ "Dieser Abschnitt lässt Dich Zusatzgebühren für Zahlungsanbieter festlegen."
5850
+
5851
+ #: includes/class-wcj-payment-gateways-fees.php:150
5852
+ msgid "Fee (or discount) title to show to customer."
5853
+ msgstr "Gebühren (oder Rabatt)-Titel, der dem Kunden angezeigt wird."
5854
+
5855
+ #: includes/class-wcj-payment-gateways-fees.php:158
5856
+ msgid "Fee (or discount) type."
5857
+ msgstr "Gebühren (oder Rabatt)-Art"
5858
+
5859
+ #: includes/class-wcj-payment-gateways-fees.php:159
5860
+ msgid "Percent or fixed value."
5861
+ msgstr "Prozent oder festgelegter Betrag."
5862
+
5863
+ #: includes/class-wcj-payment-gateways-fees.php:170
5864
+ msgid "Fee (or discount) value."
5865
+ msgstr "Gebühren (oder Rabatt)-Betrag"
5866
+
5867
+ #: includes/class-wcj-payment-gateways-fees.php:171
5868
+ msgid "The value. For discount enter a negative number."
5869
+ msgstr "Der Betrag. Für Rabatt gib eine negative Zahl ein."
5870
+
5871
+ #: includes/class-wcj-payment-gateways-fees.php:181
5872
+ msgid "Minimum cart amount for adding the fee (or discount)."
5873
+ msgstr ""
5874
+ "Mindest-Warenkorb-Betrag für das Hinzufügen der Gebühr (oder des Rabattes)."
5875
+
5876
+ #: includes/class-wcj-payment-gateways-fees.php:182
5877
+ #: includes/class-wcj-payment-gateways-fees.php:194
5878
+ msgid "Set 0 to disable."
5879
+ msgstr "Zum Deaktivieren 0 setzen."
5880
+
5881
+ #: includes/class-wcj-payment-gateways-fees.php:193
5882
+ msgid "Maximum cart amount for adding the fee (or discount)."
5883
+ msgstr ""
5884
+ "Maximaler Warenkorb-Wert für das Hinzufügen der Gebühr (oder des Rabattes)."
5885
+
5886
+ #: includes/class-wcj-payment-gateways-fees.php:205
5887
+ msgid "Round the fee (or discount) value before adding to the cart."
5888
+ msgstr ""
5889
+ "Runden der Gebühr (oder des Rabatt)-Wertes, bevor es dem Warenkorb "
5890
+ "hinzugefügt wird."
5891
+
5892
+ #: includes/class-wcj-payment-gateways-fees.php:213
5893
+ msgid "If rounding is enabled, set precision here."
5894
+ msgstr "Wenn Rundung aktiviert ist, hier die Genauigkeit einstellen."
5895
+
5896
+ #: includes/class-wcj-payment-gateways-fees.php:225
5897
+ msgid "Is taxable?"
5898
+ msgstr "Ist es steuerpflichtig?"
5899
+
5900
+ #: includes/class-wcj-payment-gateways-fees.php:232
5901
+ msgid "Tax Class (only if Taxable selected)."
5902
+ msgstr "Steuerklasse (nur wenn steuerpflichtig ausgewählt)."
5903
+
5904
+ #: includes/class-wcj-payment-gateways-fees.php:236
5905
+ msgid "Standard Rate"
5906
+ msgstr "Normalsatz"
5907
+
5908
+ #: includes/class-wcj-payment-gateways-icons.php:26
5909
+ msgid "Gateways Icons"
5910
+ msgstr "Gateways-Symbole"
5911
+
5912
+ #: includes/class-wcj-payment-gateways-icons.php:27
5913
+ msgid ""
5914
+ "Change or completely remove icons (images) for any (default or custom) "
5915
+ "WooCommerce payment gateway."
5916
+ msgstr ""
5917
+ "Ändern oder vollständiges Entfernen von Symbolen (Bilder) für beliebige "
5918
+ "(Voreingestellt- oder benutzerdefinierte) WooCommerce-Zahlungs-Gateways."
5919
+
5920
+ #: includes/class-wcj-payment-gateways-icons.php:97
5921
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:103
5922
+ msgid ""
5923
+ "If you want to show an image next to the gateway's name on the frontend, "
5924
+ "enter a URL to an image."
5925
+ msgstr ""
5926
+ "Wenn Du ein Bild neben dem Namen des Gateways im Frontend anzeigen möchtest, "
5927
+ "gib eine URL zu einem Bild ein."
5928
+
5929
+ #: includes/class-wcj-payment-gateways-icons.php:114
5930
+ msgid "Leave blank to set WooCommerce default value"
5931
+ msgstr "Leer lassen, um den voreingestellten WooCommerce-Wert festzulegen"
5932
+
5933
+ #: includes/class-wcj-payment-gateways-icons.php:125
5934
+ msgid "Remove Icon"
5935
+ msgstr "Symbol entfernen"
5936
+
5937
+ #: includes/class-wcj-payment-gateways-min-max.php:26
5938
+ msgid "Gateways Min/Max"
5939
+ msgstr "Gateways Min/Max"
5940
+
5941
+ #: includes/class-wcj-payment-gateways-min-max.php:27
5942
+ msgid "Add min/max amounts for WooCommerce payment gateways to show up."
5943
+ msgstr ""
5944
+ "Füge min/max Beträge hinzu um WooCommerce Zahlungs-Gateways anzuzeigen."
5945
+
5946
+ #: includes/class-wcj-payment-gateways-min-max.php:73
5947
+ msgid "General Options"
5948
+ msgstr "Allgemeine Optionen"
5949
+
5950
+ #: includes/class-wcj-payment-gateways-min-max.php:78
5951
+ msgid "Exclude Shipping"
5952
+ msgstr "Versand ausschließen"
5953
+
5954
+ #: includes/class-wcj-payment-gateways-min-max.php:79
5955
+ msgid ""
5956
+ "Exclude shipping from total cart sum, when comparing with min/max amounts."
5957
+ msgstr ""
5958
+ "Versand ausschließen von Gesamt-Warenkorb-Summe, wenn mit min/max Beträgen "
5959
+ "verglichen wird."
5960
+
5961
+ #: includes/class-wcj-payment-gateways-min-max.php:92
5962
+ msgid "Leave zero to disable."
5963
+ msgstr "Lasse Null um zu deaktivieren."
5964
+
5965
+ #: includes/class-wcj-payment-gateways-min-max.php:111
5966
+ msgid "Min"
5967
+ msgstr "Min"
5968
+
5969
+ #: includes/class-wcj-payment-gateways-min-max.php:120
5970
+ msgid "Max"
5971
+ msgstr "Max"
5972
+
5973
+ #: includes/class-wcj-payment-gateways-per-category.php:26
5974
+ msgid "Gateways per Product or Category"
5975
+ msgstr "Gateways pro Produkt oder Kategorie"
5976
+
5977
+ #: includes/class-wcj-payment-gateways-per-category.php:27
5978
+ msgid ""
5979
+ "Show WooCommerce gateway only if there is selected product or product "
5980
+ "category in cart."
5981
+ msgstr ""
5982
+ "WooCommerce Gateway nur anzeigen, wenn im Warenkorb ein ausgewähltes Produkt "
5983
+ "oder Produktkategorie ist."
5984
+
5985
+ #: includes/class-wcj-payment-gateways-per-category.php:184
5986
+ #: includes/class-wcj-price-labels.php:716
5987
+ msgid "Product Categories - Include"
5988
+ msgstr "Produkt-Kategorien - Einschließen"
5989
+
5990
+ #: includes/class-wcj-payment-gateways-per-category.php:185
5991
+ msgid ""
5992
+ "Show gateway only if there is product of selected category in cart. Leave "
5993
+ "blank to disable the option."
5994
+ msgstr ""
5995
+ "Zeige Gateway nur, wenn sich ein Produkt der ausgewählten Kategorie im "
5996
+ "Warenkorb befindet. Leer lassen, um die Option zu deaktivieren."
5997
+
5998
+ #: includes/class-wcj-payment-gateways-per-category.php:195
5999
+ #: includes/class-wcj-price-labels.php:726
6000
+ msgid "Product Categories - Exclude"
6001
+ msgstr "Produkt-Kategorien - Ausschließen"
6002
+
6003
+ #: includes/class-wcj-payment-gateways-per-category.php:196
6004
+ msgid ""
6005
+ "Hide gateway if there is product of selected category in cart. Leave blank "
6006
+ "to disable the option."
6007
+ msgstr ""
6008
+ "Gateway ausblenden, wenn sich ein Produkt der ausgewählten Kategorie im "
6009
+ "Einkaufswagen befindet. Leer lassen, um die Option zu deaktivieren."
6010
+
6011
+ #: includes/class-wcj-payment-gateways-per-category.php:206
6012
+ #: includes/class-wcj-price-labels.php:696
6013
+ msgid "Products - Include"
6014
+ msgstr "Produkt - Einschließen"
6015
+
6016
+ #: includes/class-wcj-payment-gateways-per-category.php:207
6017
+ msgid ""
6018
+ "Show gateway only if there is selected products in cart. Leave blank to "
6019
+ "disable the option."
6020
+ msgstr ""
6021
+ "Gateway nur anzeigen, wenn im Warenkorb ausgewählte Produkte vorhanden sind. "
6022
+ "Leer lassen, um die Option zu deaktivieren."
6023
+
6024
+ #: includes/class-wcj-payment-gateways-per-category.php:218
6025
+ #: includes/class-wcj-price-labels.php:706
6026
+ msgid "Products - Exclude"
6027
+ msgstr "Produkt - Ausschließen"
6028
+
6029
+ #: includes/class-wcj-payment-gateways-per-category.php:219
6030
+ msgid ""
6031
+ "Hide gateway if there is selected products in cart. Leave blank to disable "
6032
+ "the option."
6033
+ msgstr ""
6034
+ "Gateway ausblenden, wenn im Warenkorb ausgewählte Produkte vorhanden sind. "
6035
+ "Leer lassen, um die Option zu deaktivieren."
6036
+
6037
+ #: includes/class-wcj-payment-gateways.php:25
6038
+ msgid "Custom Gateways"
6039
+ msgstr "Benutzerdefinierte Gateways"
6040
+
6041
+ #: includes/class-wcj-payment-gateways.php:26
6042
+ msgid "Add multiple custom payment gateways to WooCommerce."
6043
+ msgstr "Füge mehrere benutzerdefinierte Zahlungs-Gateways WooCommerce hinzu."
6044
+
6045
+ #: includes/class-wcj-payment-gateways.php:55
6046
+ msgid "%s Fields"
6047
+ msgstr "%s Felder"
6048
+
6049
+ #: includes/class-wcj-payment-gateways.php:116
6050
+ msgid "WooCommerce > Settings > Checkout"
6051
+ msgstr "WooCommerce > Einstellungen > Kasse"
6052
+
6053
+ #: includes/class-wcj-payment-gateways.php:119
6054
+ msgid "Custom Payment Gateways Options"
6055
+ msgstr "Benutzerdefinierte Zahlungs-Gateway-Optionen"
6056
+
6057
+ #: includes/class-wcj-payment-gateways.php:122
6058
+ msgid "This section lets you set number of custom payment gateways to add."
6059
+ msgstr ""
6060
+ "Dieser Abschnitt lässt Dich die Anzahl von benutzerdefinierten "
6061
+ "Zahlungsanbietern, die hinzugefügt werden sollen, festlegen."
6062
+
6063
+ #: includes/class-wcj-payment-gateways.php:123
6064
+ msgid "After setting the number, visit %s to set each gateway options."
6065
+ msgstr ""
6066
+ "Nachdem Du die Anzahl festgelegt hast, besuche %s, um die einzelnen Gateway-"
6067
+ "Optionen festzulegen."
6068
+
6069
+ #: includes/class-wcj-payment-gateways.php:126
6070
+ msgid "Number of Gateways"
6071
+ msgstr "Anzahl der Gateways"
6072
+
6073
+ #: includes/class-wcj-payment-gateways.php:128
6074
+ msgid ""
6075
+ "Number of custom payments gateways to be added. All settings for each new "
6076
+ "gateway are in WooCommerce > Settings > Checkout."
6077
+ msgstr ""
6078
+ "Anzahl der hinzuzufügenden benutzerdefinierten Zahlungs-Gateways. Für jedes "
6079
+ "neue Gateway befinde sich alle Einstellungen in WooCommerce > Einstellungen >"
6080
+ " Kasse."
6081
+
6082
+ #: includes/class-wcj-payment-gateways.php:139
6083
+ msgid "Admin Title Custom Gateway"
6084
+ msgstr "Admin-Titel Benutzerdefiniertes Gateway"
6085
+
6086
+ #: includes/class-wcj-payment-gateways.php:141
6087
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:353
6088
+ msgid "Custom Gateway"
6089
+ msgstr "Benutzerdefiniertes Gateway"
6090
+
6091
+ #: includes/class-wcj-pdf-invoicing.php:25
6092
+ msgid "PDF Invoicing"
6093
+ msgstr "PDF-Rechnung"
6094
+
6095
+ #: includes/class-wcj-pdf-invoicing.php:27
6096
+ msgid ""
6097
+ "WooCommerce Invoices, Proforma Invoices, Credit Notes and Packing Slips."
6098
+ msgstr ""
6099
+ "WooCommerce Rechnungen, Proforma-Rechnungen, Gutschriften und Packzettel."
6100
+
6101
+ #: includes/class-wcj-pdf-invoicing.php:33
6102
+ msgid "Invoices Renumerate"
6103
+ msgstr "Rechnungen renumerieren"
6104
+
6105
+ #: includes/class-wcj-pdf-invoicing.php:34
6106
+ msgid ""
6107
+ "Tool renumerates all invoices, proforma invoices, credit notes and packing "
6108
+ "slips."
6109
+ msgstr ""
6110
+ "Werkzeug berechnet alle Rechnungen, Proforma-Rechnungen, Gutschriften und "
6111
+ "Packzettel."
6112
+
6113
+ #: includes/class-wcj-pdf-invoicing.php:37
6114
+ msgid "Invoices Report"
6115
+ msgstr "Rechnungs-Berichte"
6116
+
6117
+ #: includes/class-wcj-pdf-invoicing.php:38
6118
+ msgid "Invoices Monthly Reports."
6119
+ msgstr "monatliche Rechnungsberichte."
6120
+
6121
+ #: includes/class-wcj-pdf-invoicing.php:89
6122
+ #: includes/class-wcj-pdf-invoicing.php:90
6123
+ #: includes/class-wcj-price-by-country.php:270
6124
+ #: includes/class-wcj-price-by-country.php:275
6125
+ #: includes/class-wcj-price-by-country.php:280
6126
+ msgid "Generate"
6127
+ msgstr "Generieren"
6128
+
6129
+ #: includes/class-wcj-pdf-invoicing.php:97
6130
+ #: includes/class-wcj-pdf-invoicing.php:98
6131
+ msgid "Download"
6132
+ msgstr "Download"
6133
+
6134
+ #: includes/class-wcj-pdf-invoicing.php:114
6135
+ msgid "Document generated."
6136
+ msgid_plural "%s documents generated."
6137
+ msgstr[0] "Dokument generiert."
6138
+ msgstr[1] "%s Dokumente generiert."
6139
+
6140
+ #: includes/class-wcj-pdf-invoicing.php:220
6141
+ #: includes/classes/class-wcj-pdf-invoice.php:266
6142
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:195
6143
+ msgid "Unexpected error"
6144
+ msgstr "Unerwarteter Fehler"
6145
+
6146
+ #: includes/class-wcj-pdf-invoicing.php:360
6147
+ msgid "PDF Invoicing General Options"
6148
+ msgstr "Allgemeine Optionen der PDF-Rechnung"
6149
+
6150
+ #: includes/class-wcj-pdf-invoicing.php:369
6151
+ msgid "Create on New Order"
6152
+ msgstr "Erstelle bei neuer Bestellung"
6153
+
6154
+ #: includes/class-wcj-pdf-invoicing.php:372
6155
+ msgid "Create on Order Status"
6156
+ msgstr "Erstelle nach Bestellzustand"
6157
+
6158
+ #: includes/class-wcj-pdf-invoicing.php:374
6159
+ msgid "Manual Only"
6160
+ msgstr "Ausschließlich manuell"
6161
+
6162
+ #: includes/class-wcj-pdf-invoicing.php:393
6163
+ msgid "Do not create if order total equals zero"
6164
+ msgstr "Nicht erstellen, wenn die Auftragsgesamtmenge gleich Null ist"
6165
+
6166
+ #: includes/class-wcj-pdf-invoicing.php:399
6167
+ msgid "Hide Disabled Docs Settings"
6168
+ msgstr "Deaktivierte Dokumenteinstellungen ausblenden"
6169
+
6170
+ #: includes/class-wcj-price-by-country.php:25
6171
+ msgid "Prices and Currencies by Country"
6172
+ msgstr "Preise und Währungen nach Ländern"
6173
+
6174
+ #: includes/class-wcj-price-by-country.php:26
6175
+ msgid ""
6176
+ "Change WooCommerce product price and currency automatically by customer's "
6177
+ "country."
6178
+ msgstr ""
6179
+ "Ändere den WooCommerce-Produktpreis und -währung automatisch nach dem Land "
6180
+ "des Kunden."
6181
+
6182
+ #: includes/class-wcj-price-by-country.php:92
6183
+ msgid "Price filter widget product prices recalculated."
6184
+ msgstr "Preisfilter-Widget Produktpreise neu berechnet."
6185
+
6186
+ #: includes/class-wcj-price-by-country.php:140
6187
+ msgid "Price by Country Options"
6188
+ msgstr "Preis nach Land Optionen"
6189
+
6190
+ #: includes/class-wcj-price-by-country.php:142
6191
+ msgid ""
6192
+ "Change product's price and currency by customer's country. Customer's "
6193
+ "country is detected automatically by IP, or selected by customer manually."
6194
+ msgstr ""
6195
+ "Ändere den Produktpreis und -währung nach dem Land des Kunden. Das Land des "
6196
+ "Kunden wird automatisch über die IP erkannt oder vom Kunden manuell "
6197
+ "ausgewählt."
6198
+
6199
+ #: includes/class-wcj-price-by-country.php:147
6200
+ msgid "Customer Country Detection Method"
6201
+ msgstr "Kundenland-Erkennungsmethode"
6202
+
6203
+ #: includes/class-wcj-price-by-country.php:149
6204
+ msgid ""
6205
+ "If you choose \"by user selection\", use [wcj_country_select_drop_down_list] "
6206
+ "shortcode to display country selection list on frontend."
6207
+ msgstr ""
6208
+ "Wenn Du \"durch Benutzerauswahl\" wählst, nutze "
6209
+ "[wcj_country_select_drop_down_list] Shortcode, um Länderauswahl-Liste im "
6210
+ "Frontend anzuzeigen."
6211
+
6212
+ #: includes/class-wcj-price-by-country.php:153
6213
+ msgid "by IP"
6214
+ msgstr "nach IP"
6215
+
6216
+ #: includes/class-wcj-price-by-country.php:154
6217
+ msgid "by IP, then by user selection"
6218
+ msgstr "nach IP, dann durch Benutzerauswahl"
6219
+
6220
+ #: includes/class-wcj-price-by-country.php:155
6221
+ msgid "by user selection"
6222
+ msgstr "durch Benutzerauswahl"
6223
+
6224
+ #: includes/class-wcj-price-by-country.php:172
6225
+ msgid "Override Country Options"
6226
+ msgstr "Länderoptionen überschreiben"
6227
+
6228
+ #: includes/class-wcj-price-by-country.php:177
6229
+ msgid "No Override"
6230
+ msgstr "Nicht überschreiben"
6231
+
6232
+ #: includes/class-wcj-price-by-country.php:178
6233
+ msgid "Override Country with Customer's Checkout Billing Country"
6234
+ msgstr "Überschreibe Land mit Kunden-Abrechnungsland in Kasse"
6235
+
6236
+ #: includes/class-wcj-price-by-country.php:179
6237
+ msgid "Override Country with Customer's Checkout Shipping Country"
6238
+ msgstr "Überschreibe Land mit dem in der Kasse gewählten Land"
6239
+
6240
+ #: includes/class-wcj-price-by-country.php:192
6241
+ msgid "Price Rounding"
6242
+ msgstr "Preisrundung"
6243
+
6244
+ #: includes/class-wcj-price-by-country.php:193
6245
+ msgid "If you choose to multiply price, set rounding options here."
6246
+ msgstr ""
6247
+ "Wenn SDu dich dafür entscheidest, den Preis zu multiplizieren, lege hier "
6248
+ "Rundungsoptionen fest."
6249
+
6250
+ #: includes/class-wcj-price-by-country.php:206
6251
+ msgid "Price by Country on per Product Basis"
6252
+ msgstr "Preis nach Land auf pro Produktbasis"
6253
+
6254
+ #: includes/class-wcj-price-by-country.php:208
6255
+ msgid "This will add product data fields in product edit."
6256
+ msgstr "Hiermit werden Produktdatenfelder in Produktbearbeitung hinzugefügt."
6257
+
6258
+ #: includes/class-wcj-price-by-country.php:215
6259
+ msgid "Price Filter Widget and Sorting by Price Support"
6260
+ msgstr "Preis-Filter-Widget und Sortierung nach Preis Unterstützung"
6261
+
6262
+ #: includes/class-wcj-price-by-country.php:218
6263
+ msgid "Recalculate price filter widget and sorting by price product prices"
6264
+ msgstr ""
6265
+ "Neuberechnungs-Preisfilter-Widget und sortieren nach Preis-Produktpreisen"
6266
+
6267
+ #: includes/class-wcj-price-by-country.php:225
6268
+ msgid "Add Countries Flags Images to Select Drop-Down Box"
6269
+ msgstr "Länderflaggen-Bilder hinzufügen, um die Dropdown-Box auszuwählen"
6270
+
6271
+ #: includes/class-wcj-price-by-country.php:227
6272
+ msgid ""
6273
+ "If you are using [wcj_country_select_drop_down_list] shortcode or \"Booster: "
6274
+ "Country Switcher\" widget, this will add country flags to these select boxes."
6275
+ msgstr ""
6276
+ "Wenn Du [wcj_country_select_drop_down_list] Shortcode oder \"Booster: "
6277
+ "Länderumschalter\"-Widget nutzt, wird dies Länderflaggen diesen Auswahlboxen "
6278
+ "hinzufügen."
6279
+
6280
+ #: includes/class-wcj-price-by-country.php:234
6281
+ #: includes/class-wcj-price-by-user-role.php:400
6282
+ msgid "Search Engine Bots"
6283
+ msgstr "Suchmaschinen-Bots"
6284
+
6285
+ #: includes/class-wcj-price-by-country.php:235
6286
+ msgid "Disable Price by Country for Bots"
6287
+ msgstr "Deaktiviere Preis nach Land für Bots"
6288
+
6289
+ #: includes/class-wcj-price-by-country.php:244
6290
+ msgid "Country Groups"
6291
+ msgstr "Ländergruppen"
6292
+
6293
+ #: includes/class-wcj-price-by-country.php:250
6294
+ msgid "Countries Selection"
6295
+ msgstr "Länderauswahl"
6296
+
6297
+ #: includes/class-wcj-price-by-country.php:251
6298
+ msgid "Choose how do you want to enter countries groups in admin."
6299
+ msgstr "Wähle, wie Du Ländergruppen in Administration eingeben möchtest."
6300
+
6301
+ #: includes/class-wcj-price-by-country.php:256
6302
+ msgid "Comma separated list"
6303
+ msgstr "Komma getrennte Liste"
6304
+
6305
+ #: includes/class-wcj-price-by-country.php:257
6306
+ msgid "Multiselect"
6307
+ msgstr "Mehrfachauswahl"
6308
+
6309
+ #: includes/class-wcj-price-by-country.php:258
6310
+ msgid "Chosen select"
6311
+ msgstr "Ausgewählt auswählen"
6312
+
6313
+ #: includes/class-wcj-price-by-country.php:263
6314
+ msgid "Autogenerate Groups"
6315
+ msgstr "Gruppen automatisch generieren"
6316
+
6317
+ #: includes/class-wcj-price-by-country.php:268
6318
+ msgid "Currencies supported in both PayPal and Yahoo Exchange Rates:"
6319
+ msgstr ""
6320
+ "Währungen, die sowohl in PayPal als auch in Yahoo-Wechselkursen unterstützt "
6321
+ "werden:"
6322
+
6323
+ #: includes/class-wcj-price-by-country.php:273
6324
+ msgid "Currencies supported in Yahoo Exchange Rates:"
6325
+ msgstr "Währungen unterstützt in Yahoo-Wechselkursen:"
6326
+
6327
+ #: includes/class-wcj-price-by-country.php:278
6328
+ msgid "All Countries and Currencies:"
6329
+ msgstr "Alle Länder und Währungen:"
6330
+
6331
+ #: includes/class-wcj-price-by-country.php:285
6332
+ msgid "Groups Number"
6333
+ msgstr "Anzahl der Gruppen"
6334
+
6335
+ #: includes/class-wcj-price-by-country.php:304
6336
+ msgid ""
6337
+ "Countries. List of comma separated country codes.<br>For country codes and "
6338
+ "predifined sets visit <a href=\"http://booster.io/features/prices-and-"
6339
+ "currencies-by-customers-country\" target=\"_blank\">http://booster.io</a>"
6340
+ msgstr ""
6341
+ "Länder. Liste der durch Kommas getrennten Ländercodes.<br>Für Ländercodes "
6342
+ "und vordefinierte Sätze besuche <a href=\"http://booster.io/features/prices-"
6343
+ "and-currencies-by-customers-country\" target=\"_blank\">http://booster.io</a>"
6344
+
6345
+ #: includes/class-wcj-price-by-country.php:380
6346
+ msgid "Multiply Price by"
6347
+ msgstr "Multipliziere Preis mit"
6348
+
6349
+ #: includes/class-wcj-price-by-country.php:403
6350
+ #: includes/price-by-country/class-wcj-price-by-country-local.php:143
6351
+ msgid "Make empty price"
6352
+ msgstr "Leeren Preis erzeugen"
6353
+
6354
+ #: includes/class-wcj-price-by-user-role.php:28
6355
+ msgid "Price by User Role"
6356
+ msgstr "Preis nach Benutzer-Rolle"
6357
+
6358
+ #: includes/class-wcj-price-by-user-role.php:29
6359
+ msgid "Display WooCommerce products prices by user roles."
6360
+ msgstr "WooCommerce Produkt-Preise nach Benutzerrollen anzeigen."
6361
+
6362
+ #: includes/class-wcj-price-by-user-role.php:105
6363
+ msgid ""
6364
+ "Booster: Free plugin's version is limited to only one price by user role per "
6365
+ "products settings product enabled at a time. You will need to get <a "
6366
+ "href=\"http://booster.io/plus/\" target=\"_blank\">Booster Plus</a> to add "
6367
+ "unlimited number of price by user role per product settings products."
6368
+ msgstr ""
6369
+ "Booster: Kostenlose Plugin-Version ist begrenzt auf nur einen Preis pro "
6370
+ "Benutzer-Rolle pro Produkteinstellung auf einmal aktiviert. DU musst <a "
6371
+ "href=\"http://booster.io/plus/\" target=\"_blank\">Booster Plus</a> erwerben,"
6372
+ " um unbegrenzte Anzahl von Preisen nach Benutzer-Rollen pro "
6373
+ "Produkteinstellung hinzuzufügen."
6374
+
6375
+ #: includes/class-wcj-price-by-user-role.php:132
6376
+ msgid "Per Product Settings (press Update after changing)"
6377
+ msgstr "Pro Produkteinstellungen (klicke Aktualisieren nach dem Ändern)"
6378
+
6379
+ #: includes/class-wcj-price-by-user-role.php:185
6380
+ #: includes/class-wcj-price-by-user-role.php:428
6381
+ msgid "Make Empty Price"
6382
+ msgstr "Leeren Preis erzeugen"
6383
+
6384
+ #: includes/class-wcj-price-by-user-role.php:375
6385
+ msgid "Enable per Product Settings"
6386
+ msgstr "Pro Produkteinstellungen aktivieren"
6387
+
6388
+ #: includes/class-wcj-price-by-user-role.php:377
6389
+ msgid ""
6390
+ "When enabled, this will add new \"Booster: Price by User Role\" meta box to "
6391
+ "each product's edit page."
6392
+ msgstr ""
6393
+ "Wenn diese Option aktiviert ist, wird das Meta-Feld \"Booster: Preis pro "
6394
+ "Benutzerprolle\" zu jeder Produktbearbeitungsseite hinzugefügt."
6395
+
6396
+ #: includes/class-wcj-price-by-user-role.php:383
6397
+ msgid "Show Roles on per Product Settings"
6398
+ msgstr "Zeige die Rollen in den Einstellungen pro Produkt"
6399
+
6400
+ #: includes/class-wcj-price-by-user-role.php:384
6401
+ msgid ""
6402
+ "If per product settings is enabled, you can choose which roles to show on "
6403
+ "product's edit page. Leave blank to show all roles."
6404
+ msgstr ""
6405
+ "Wenn die Einstellungen pro Produkt aktiviert sind, kannst du wählen, welche "
6406
+ "Rollen auf der \"Produkt bearbeiten\" Seite zu sehen sind. Leer lassen um "
6407
+ "alle Rollen anzuzeigen."
6408
+
6409
+ #: includes/class-wcj-price-by-user-role.php:394
6410
+ msgid ""
6411
+ "When enabled, this will apply user role multipliers to shipping calculations."
6412
+ msgstr ""
6413
+ "Wenn diese Option aktiviert ist, werden Benutzerrollen-Multiplikatoren auf "
6414
+ "Versandberechnungen angewendet."
6415
+
6416
+ #: includes/class-wcj-price-by-user-role.php:401
6417
+ msgid "Disable Price by User Role for Bots"
6418
+ msgstr "Deaktivieren Preis nach Benutzerrolle für Bots"
6419
+
6420
+ #: includes/class-wcj-price-by-user-role.php:412
6421
+ msgid "Roles & Multipliers"
6422
+ msgstr "Rollen & Multiplikatoren"
6423
+
6424
+ #: includes/class-wcj-price-formats.php:27
6425
+ msgid "Price Formats"
6426
+ msgstr "Preisformate"
6427
+
6428
+ #: includes/class-wcj-price-formats.php:28
6429
+ msgid "Set different WooCommerce price formats for different currencies."
6430
+ msgstr ""
6431
+ "Lege verschiedene WooCommerce-Preisformate für verschiedene Währungen fest."
6432
+
6433
+ #: includes/class-wcj-price-formats.php:121
6434
+ msgid "Formats"
6435
+ msgstr "Formate"
6436
+
6437
+ #: includes/class-wcj-price-formats.php:126
6438
+ msgid "Total Number"
6439
+ msgstr "Gesamtanzahl"
6440
+
6441
+ #: includes/class-wcj-price-formats.php:141
6442
+ msgid "Format"
6443
+ msgstr "Format"
6444
+
6445
+ #: includes/class-wcj-price-formats.php:150
6446
+ msgid "Currency Position"
6447
+ msgstr "Währungsposition"
6448
+
6449
+ #: includes/class-wcj-price-formats.php:155
6450
+ msgid "Left"
6451
+ msgstr "Links"
6452
+
6453
+ #: includes/class-wcj-price-formats.php:156
6454
+ msgid "Right"
6455
+ msgstr "Rechts"
6456
+
6457
+ #: includes/class-wcj-price-formats.php:157
6458
+ msgid "Left with space"
6459
+ msgstr "Links mit Platz"
6460
+
6461
+ #: includes/class-wcj-price-formats.php:158
6462
+ msgid "Right with space"
6463
+ msgstr "Rechts mit Platz"
6464
+
6465
+ #: includes/class-wcj-price-formats.php:163
6466
+ msgid "Thousand Separator"
6467
+ msgstr "Tausender Trennzeichen"
6468
+
6469
+ #: includes/class-wcj-price-formats.php:170
6470
+ msgid "Decimal Separator"
6471
+ msgstr "Dezimal Trennzeichen"
6472
+
6473
+ #: includes/class-wcj-price-formats.php:177
6474
+ msgid "Number of Decimals"
6475
+ msgstr "Anzahl der Dezimalstellen"
6476
+
6477
+ #: includes/class-wcj-price-formats.php:188
6478
+ msgid "WPML Language Code"
6479
+ msgstr "WPML Sprach-Code"
6480
+
6481
+ #: includes/class-wcj-price-formats.php:189
6482
+ msgid ""
6483
+ "Option to set different price formats for different WPML languages. Can be "
6484
+ "comma separated list. Leave empty to disable."
6485
+ msgstr ""
6486
+ "Möglichkeit, unterschiedliche Preisformate für verschiedene WPML-Sprachen "
6487
+ "festzulegen. Kann kommagetrennte Liste sein. Leer lassen, um zu deaktivieren."
6488
+
6489
+ #: includes/class-wcj-price-labels.php:25
6490
+ msgid "Custom Price Labels"
6491
+ msgstr "Benutzerdefinierte Preisetiketten"
6492
+
6493
+ #: includes/class-wcj-price-labels.php:26
6494
+ msgid "Create any custom price label for any WooCommerce product."
6495
+ msgstr ""
6496
+ "Erstelle irgendein benutzerdefiniertes Preisetikett für irgendein "
6497
+ "WooCommerce Produkt."
6498
+
6499
+ #: includes/class-wcj-price-labels.php:32
6500
+ msgid "Migrate from Custom Price Labels (Pro)"
6501
+ msgstr "Migrieren von Custom Price Labels (Pro)"
6502
+
6503
+ #: includes/class-wcj-price-labels.php:33
6504
+ msgid ""
6505
+ "Tool lets you copy all the data (that is labels) from Custom Price labels "
6506
+ "(Pro) plugin to Booster."
6507
+ msgstr ""
6508
+ "Mit diesem Werkzeug kannst Du alle Daten (das sind Beschriftungen) von "
6509
+ "Custom Price Labels (Pro)-Plugin nach Booster kopieren."
6510
+
6511
+ #: includes/class-wcj-price-labels.php:43
6512
+ msgid "Instead of the price"
6513
+ msgstr "Statt des Preises"
6514
+
6515
+ #: includes/class-wcj-price-labels.php:44
6516
+ msgid "Before the price"
6517
+ msgstr "Vor dem Preis"
6518
+
6519
+ #: includes/class-wcj-price-labels.php:45
6520
+ msgid "Between regular and sale prices"
6521
+ msgstr "Zwischen regulären und Sale-Preisen"
6522
+
6523
+ #: includes/class-wcj-price-labels.php:46
6524
+ msgid "After the price"
6525
+ msgstr "Nach dem Preis"
6526
+
6527
+ #: includes/class-wcj-price-labels.php:52
6528
+ msgid "Hide on home page"
6529
+ msgstr "Auf der Startseite verbergen"
6530
+
6531
+ #: includes/class-wcj-price-labels.php:53
6532
+ msgid "Hide on products page"
6533
+ msgstr "Ausblenden auf Produkte-Seite"
6534
+
6535
+ #: includes/class-wcj-price-labels.php:54
6536
+ msgid "Hide on single"
6537
+ msgstr "Auf Einzel verbergen"
6538
+
6539
+ #: includes/class-wcj-price-labels.php:55
6540
+ msgid "Hide on all pages"
6541
+ msgstr "Auf allen Seiten verbergen"
6542
+
6543
+ #: includes/class-wcj-price-labels.php:56
6544
+ msgid "Hide on cart page only"
6545
+ msgstr "Nur auf Warenkorbseite ausblenden"
6546
+
6547
+ #: includes/class-wcj-price-labels.php:58
6548
+ msgid "Hide for main price"
6549
+ msgstr "Für Hauptpreis ausblenden"
6550
+
6551
+ #: includes/class-wcj-price-labels.php:59
6552
+ msgid "Hide for all variations"
6553
+ msgstr "Für alle Variationen ausblenden"
6554
+
6555
+ #: includes/class-wcj-price-labels.php:128
6556
+ msgid "Booster - Migrate from Custom Price Labels (Pro)"
6557
+ msgstr "Booster - Migrieren von Custom Price Labels (Pro)"
6558
+
6559
+ #: includes/class-wcj-price-labels.php:179
6560
+ msgid "Migrating (product ID "
6561
+ msgstr "Migriere (Produkt-ID"
6562
+
6563
+ #: includes/class-wcj-price-labels.php:180
6564
+ msgid "Result: "
6565
+ msgstr "Ergebnis: "
6566
+
6567
+ #: includes/class-wcj-price-labels.php:202
6568
+ msgid "Found data to migrate (product ID "
6569
+ msgstr "Daten zum Migrieren gefunden (Produkt-ID"
6570
+
6571
+ #: includes/class-wcj-price-labels.php:218
6572
+ msgid "No data to migrate found"
6573
+ msgstr "Keine zu migrierenden Daten gefunden"
6574
+
6575
+ #: includes/class-wcj-price-labels.php:224
6576
+ msgid ""
6577
+ "Press button below to copy all labels from Custom Price Labels (Pro) plugin. "
6578
+ "Old labels will NOT be deleted. New labels will be overwritten."
6579
+ msgstr ""
6580
+ "Drücke die Taste unten, um alle Labels aus dem Custom Price Labels (Pro) "
6581
+ "Plugin zu kopieren. Alte Beschriftungen werden NICHT gelöscht. Neue Labels "
6582
+ "werden überschrieben."
6583
+
6584
+ #: includes/class-wcj-price-labels.php:225
6585
+ msgid "Migrate data"
6586
+ msgstr "Daten migrieren"
6587
+
6588
+ #: includes/class-wcj-price-labels.php:271
6589
+ msgid "Booster: Custom Price Labels"
6590
+ msgstr "Booster: Custom Price Labels"
6591
+
6592
+ #: includes/class-wcj-price-labels.php:630
6593
+ msgid "Custom Price Labels - Globally"
6594
+ msgstr "Benutzerdefinierte Preisetiketten - Global"
6595
+
6596
+ #: includes/class-wcj-price-labels.php:632
6597
+ msgid "This section lets you set price labels for all products globally."
6598
+ msgstr ""
6599
+ "Dieser Abschnitt lässt Dich Preisetiketten für alle Produkte global "
6600
+ "festlegen."
6601
+
6602
+ #: includes/class-wcj-price-labels.php:636
6603
+ msgid "Add before the price"
6604
+ msgstr "Vor dem Preis hinzufügen"
6605
+
6606
+ #: includes/class-wcj-price-labels.php:637
6607
+ msgid "Enter text to add before all products prices. Leave blank to disable."
6608
+ msgstr ""
6609
+ "Gib den Text ein, der vor allen Produktpreisen hinzugefügt werden soll. Leer "
6610
+ "lassen, um zu deaktivieren."
6611
+
6612
+ #: includes/class-wcj-price-labels.php:646
6613
+ msgid "Add after the price"
6614
+ msgstr "Nach dem Preis hinzufügen"
6615
+
6616
+ #: includes/class-wcj-price-labels.php:647
6617
+ msgid "Enter text to add after all products prices. Leave blank to disable."
6618
+ msgstr ""
6619
+ "Gib Text ein, der nach allen Produktpreisen hinzugefügt werden soll. Leer "
6620
+ "lassen, um zu deaktivieren."
6621
+
6622
+ #: includes/class-wcj-price-labels.php:654
6623
+ msgid "Add between regular and sale prices"
6624
+ msgstr "Zwischen regulären und Sale-Preisen hinzufügen"
6625
+
6626
+ #: includes/class-wcj-price-labels.php:655
6627
+ msgid ""
6628
+ "Enter text to add between regular and sale prices. Leave blank to disable."
6629
+ msgstr ""
6630
+ "Gib Text ein, der zwischen regulären und Verkaufspreisen hinzugefügt wird. "
6631
+ "Leer lassen, um zu deaktivieren."
6632
+
6633
+ #: includes/class-wcj-price-labels.php:664
6634
+ msgid "Remove from price"
6635
+ msgstr "Aus dem Preis entfernen"
6636
+
6637
+ #: includes/class-wcj-price-labels.php:666
6638
+ msgid "Enter text to remove from all products prices. Leave blank to disable."
6639
+ msgstr ""
6640
+ "Gib den Text ein, der von allen Produktpreisen entfernt werden soll. Leer "
6641
+ "lassen, um zu deaktivieren."
6642
+
6643
+ #: includes/class-wcj-price-labels.php:675
6644
+ msgid "Replace in price"
6645
+ msgstr "Im Preis ersetzen"
6646
+
6647
+ #: includes/class-wcj-price-labels.php:676
6648
+ msgid "Enter text to replace in all products prices. Leave blank to disable."
6649
+ msgstr ""
6650
+ "Gib Text ein, der in allen Produkt-Preisen ersetzt wird. Leer lassen, um zu "
6651
+ "deaktivieren."
6652
+
6653
+ #: includes/class-wcj-price-labels.php:687
6654
+ msgid "Enter text to replace with. Leave blank to disable."
6655
+ msgstr "Gib den zu ersetzenden Text ein. Leer lassen, um zu deaktivieren."
6656
+
6657
+ #: includes/class-wcj-price-labels.php:697
6658
+ msgid ""
6659
+ "Apply global price labels only for selected products. Leave blank to disable "
6660
+ "the option."
6661
+ msgstr ""
6662
+ "Wende globale Preisetiketten nur für ausgewählte Produkte an. Leer lassen, "
6663
+ "um die Option zu deaktivieren."
6664
+
6665
+ #: includes/class-wcj-price-labels.php:707
6666
+ msgid ""
6667
+ "Do not apply global price labels only for selected products. Leave blank to "
6668
+ "disable the option."
6669
+ msgstr ""
6670
+ "Wende keine globalen Preisetiketten nur für ausgewählte Produkte an. Leer "
6671
+ "lassen, um die Option zu deaktivieren."
6672
+
6673
+ #: includes/class-wcj-price-labels.php:717
6674
+ msgid ""
6675
+ "Apply global price labels only for selected product categories. Leave blank "
6676
+ "to disable the option."
6677
+ msgstr ""
6678
+ "Wende globale Preisetiketten nur für ausgewählte Produktkategorien an. Leer "
6679
+ "lassen, um die Option zu deaktivieren."
6680
+
6681
+ #: includes/class-wcj-price-labels.php:727
6682
+ msgid ""
6683
+ "Do not apply global price labels only for selected product categories. Leave "
6684
+ "blank to disable the option."
6685
+ msgstr ""
6686
+ "Wende keine globalen Preisetiketten nur für ausgewählte Produktkategorien an."
6687
+ " Leer lassen, um die Option zu deaktivieren."
6688
+
6689
+ #: includes/class-wcj-price-labels.php:736
6690
+ msgid "Product Types - Include"
6691
+ msgstr "Produkttypen - Einschließen"
6692
+
6693
+ #: includes/class-wcj-price-labels.php:737
6694
+ msgid ""
6695
+ "Apply global price labels only for selected product types. Leave blank to "
6696
+ "disable the option."
6697
+ msgstr ""
6698
+ "Wende globale Preisschilder nur für ausgewählte Produktarten an. Leer lassen,"
6699
+ " um die Option zu deaktivieren."
6700
+
6701
+ #: includes/class-wcj-price-labels.php:743
6702
+ msgid "Variable product's variation"
6703
+ msgstr "Variable Produktvariation"
6704
+
6705
+ #: includes/class-wcj-price-labels.php:750
6706
+ msgid "Custom Price Labels - Per Product"
6707
+ msgstr "Benutzerdefinierte Preisetiketten - Pro Produkt"
6708
+
6709
+ #: includes/class-wcj-price-labels.php:756
6710
+ msgid "This will add metaboxes to each product's admin edit page."
6711
+ msgstr "Dies fügt Meta-Boxen zu jeder Produkt-Admin-Bearbeitungsseite hinzu."
6712
+
6713
+ #: includes/class-wcj-product-add-to-cart.php:26
6714
+ msgid "Product Add to Cart"
6715
+ msgstr "Produkt dem Warenkorb hinzufügen"
6716
+
6717
+ #: includes/class-wcj-product-add-to-cart.php:27
6718
+ msgid "Set any local url to redirect to on WooCommerce Add to Cart."
6719
+ msgstr ""
6720
+ "Lege eine beliebige lokale URL fest, auf die umgeleitet wird bei WooCommerce "
6721
+ "dem Warenkorb hinzufügen"
6722
+
6723
+ #: includes/class-wcj-product-add-to-cart.php:28
6724
+ msgid "Automatically add to cart on product visit."
6725
+ msgstr "Automatisch bei Produktbesuch in den Warenkorb legen."
6726
+
6727
+ #: includes/class-wcj-product-add-to-cart.php:29
6728
+ msgid "Display radio buttons instead of drop box for variable products."
6729
+ msgstr ""
6730
+ "Anzeigen von radio buttons anstelle von drop box für variable Produkte."
6731
+
6732
+ #: includes/class-wcj-product-add-to-cart.php:30
6733
+ msgid "Disable quantity input."
6734
+ msgstr "Deaktiviere die Mengeneingabe."
6735
+
6736
+ #: includes/class-wcj-product-add-to-cart.php:31
6737
+ msgid "Disable add to cart button on per product basis."
6738
+ msgstr ""
6739
+ "Deaktiviere dem \"zum Warenkorb hinzufügen\" Button auf pro Produktbasis."
6740
+
6741
+ #: includes/class-wcj-product-add-to-cart.php:32
6742
+ msgid "Open external products on add to cart in new window."
6743
+ msgstr ""
6744
+ "Externe Produkte in einem neuen Fesnter öffnen bei dem Warenkorb hinzufügen."
6745
+
6746
+ #: includes/class-wcj-product-add-to-cart.php:215
6747
+ msgid "Disable Add to Cart Button (Single Product Page)"
6748
+ msgstr ""
6749
+ "Deaktivieren des \"dem Warenkorb hinzufügen\"-Button (Einzelproduktseite)"
6750
+
6751
+ #: includes/class-wcj-product-add-to-cart.php:225
6752
+ msgid "Disable Add to Cart Button (Category/Archives)"
6753
+ msgstr ""
6754
+ "Deaktivieren des \"dem Warenkorb hinzufügen\"-Button (Kategorie/Archive)"
6755
+
6756
+ #: includes/class-wcj-product-add-to-cart.php:235
6757
+ msgid "Custom Add to Cart Button URL (Category/Archives)"
6758
+ msgstr "Benutzerdefinierte In den Warenkorb Button URL (Kategorie/Archive)"
6759
+
6760
+ #: includes/class-wcj-product-add-to-cart.php:246
6761
+ msgid "As shop default (no changes)"
6762
+ msgstr "Wie Shop-Voreinstellung (keine Änderungen)"
6763
+
6764
+ #: includes/class-wcj-product-add-to-cart.php:250
6765
+ msgid "Disable Add to Cart Button AJAX"
6766
+ msgstr "Deaktivieren von AJAX für den \"In den Warenkorb\"-Button"
6767
+
6768
+ #: includes/class-wcj-product-add-to-cart.php:341
6769
+ msgid "Add to Cart Local Redirect Options"
6770
+ msgstr "\"dem Warenkorb hinzufügen\" lokale Umleitungs-Optionen"
6771
+
6772
+ #: includes/class-wcj-product-add-to-cart.php:343
6773
+ msgid ""
6774
+ "This section lets you set any local URL to redirect to after successfully "
6775
+ "adding product to cart. Leave empty to redirect to checkout page (skipping "
6776
+ "the cart page)."
6777
+ msgstr ""
6778
+ "Dieser Abschnitt lässt Dich eine lokale URL festlegen, auf die umgeleitet "
6779
+ "wird, nachdem ein Produkt erfolgreich dem Warenkorb hinzugefügt wurde."
6780
+
6781
+ #: includes/class-wcj-product-add-to-cart.php:347
6782
+ msgid "Local Redirect"
6783
+ msgstr "Lokale Umleitung"
6784
+
6785
+ #: includes/class-wcj-product-add-to-cart.php:354
6786
+ msgid "Local Redirect URL"
6787
+ msgstr "Lokale Umleitungs URL"
6788
+
6789
+ #: includes/class-wcj-product-add-to-cart.php:355
6790
+ msgid "Performs a safe (local) redirect, using wp_redirect()."
6791
+ msgstr "Führt eine sichere (lokale) Weiterleitung mit wp_redirect() durch."
6792
+
6793
+ #: includes/class-wcj-product-add-to-cart.php:356
6794
+ msgid "Local redirect URL. Leave empty to redirect to checkout."
6795
+ msgstr "Lokale Umleitungs-URL. Leer lassen, um zur Kasse umzuleiten."
6796
+
6797
+ #: includes/class-wcj-product-add-to-cart.php:367
6798
+ #: includes/class-wcj-product-add-to-cart.php:373
6799
+ msgid "Add to Cart on Visit"
6800
+ msgstr "Bei Besuch dem Warenkorb hinzufügen"
6801
+
6802
+ #: includes/class-wcj-product-add-to-cart.php:369
6803
+ msgid ""
6804
+ "This section lets you enable automatically adding product to cart on "
6805
+ "visiting the product page. Product is only added once, so if it is already "
6806
+ "in cart - duplicate product is not added. "
6807
+ msgstr ""
6808
+ "Dieser Abschnitt lässt Dich das automatische dem Warenkorb hinzufügen sobald "
6809
+ "die Produktseite aufgerufen wurde, aktivieren. Produkt wird nur einmalig "
6810
+ "hinzugefügt, wenn es sich schon im Warenkorb befindet - ein Duplikat wird "
6811
+ "nicht hinzugefügt."
6812
+
6813
+ #: includes/class-wcj-product-add-to-cart.php:384
6814
+ msgid "Add to Cart Variable Product"
6815
+ msgstr "Variables Produkt dem Warenkorb hinzufügen"
6816
+
6817
+ #: includes/class-wcj-product-add-to-cart.php:389
6818
+ msgid "Display Radio Buttons Instead of Drop Box"
6819
+ msgstr "Radio Buttons statt Drop Box anzeigen"
6820
+
6821
+ #: includes/class-wcj-product-add-to-cart.php:402
6822
+ msgid "Add to Cart Quantity"
6823
+ msgstr "dem Warenkorb hinzufügen Menge"
6824
+
6825
+ #: includes/class-wcj-product-add-to-cart.php:407
6826
+ msgid "Disable Quantity Field for All Products"
6827
+ msgstr "Mengenfeld für alle Produkte deaktivieren"
6828
+
6829
+ #: includes/class-wcj-product-add-to-cart.php:408
6830
+ msgid "Disable on Single Product Page"
6831
+ msgstr "Deaktivieren auf Einzelproduktseite"
6832
+
6833
+ #: includes/class-wcj-product-add-to-cart.php:415
6834
+ msgid "Disable on Cart Page"
6835
+ msgstr "Auf Warenkorbseite deaktivieren"
6836
+
6837
+ #: includes/class-wcj-product-add-to-cart.php:426
6838
+ msgid "Add to Cart Button Disabling"
6839
+ msgstr "In den Warenkorb Button Deaktivieren"
6840
+
6841
+ #: includes/class-wcj-product-add-to-cart.php:431
6842
+ msgid "Disable Add to Cart Buttons on per Product Basis"
6843
+ msgstr "Deaktivieren des \"In den Warenkorb\"-Buttons auf pro Produktbasis"
6844
+
6845
+ #: includes/class-wcj-product-add-to-cart.php:433
6846
+ #: includes/class-wcj-product-add-to-cart.php:450
6847
+ #: includes/class-wcj-product-add-to-cart.php:467
6848
+ msgid "This will add meta box to each product's edit page"
6849
+ msgstr "Dies fügt eine meta box jeder Produktbearbeitungsseite hinzu"
6850
+
6851
+ #: includes/class-wcj-product-add-to-cart.php:443
6852
+ msgid "Add to Cart Button Custom URL"
6853
+ msgstr "Benutzerdefinierte URL für \"In den Warenkorb\"-Button"
6854
+
6855
+ #: includes/class-wcj-product-add-to-cart.php:448
6856
+ msgid "Custom Add to Cart Buttons URL on Archives on per Product Basis"
6857
+ msgstr ""
6858
+ "Benutzerdefinierte In den Warenkorb Button URL in Archiven auf pro "
6859
+ "Produktbasis"
6860
+
6861
+ #: includes/class-wcj-product-add-to-cart.php:460
6862
+ msgid "Add to Cart Button AJAX"
6863
+ msgstr "AJAX für \"In den Warenkorb\"-Button"
6864
+
6865
+ #: includes/class-wcj-product-add-to-cart.php:465
6866
+ msgid "Disable/Enable Add to Cart Button AJAX on per Product Basis"
6867
+ msgstr ""
6868
+ "Deaktivieren/Aktivieren von AJAX für \"In den Warenkorb\"-Button auf pro "
6869
+ "Produktbasis"
6870
+
6871
+ #: includes/class-wcj-product-add-to-cart.php:482
6872
+ msgid "Open External Products on Add to Cart in New Window"
6873
+ msgstr "Öffne externe Produkte bei Hinzufügen zum Warenkorb in neuen Fenster"
6874
+
6875
+ #: includes/class-wcj-product-add-to-cart.php:483
6876
+ msgid "Enable on Single Product Pages"
6877
+ msgstr "Aktiviere auf Einzelproduktseiten"
6878
+
6879
+ #: includes/class-wcj-product-add-to-cart.php:490
6880
+ msgid "Enable on Category/Archive Pages"
6881
+ msgstr "Aktivieren auf Kategorie-/Archivseiten"
6882
+
6883
+ #: includes/class-wcj-product-addons.php:28
6884
+ msgid "Product Addons"
6885
+ msgstr "Produkterweiterungen"
6886
+
6887
+ #: includes/class-wcj-product-addons.php:29
6888
+ msgid "Add (paid/free/discount) addons to WooCommerce products."
6889
+ msgstr ""
6890
+ "Erweiterungen (Bezahlte/kostenlose/Rabattierte) den Woocommerce-Produkten "
6891
+ "hinzufügen"
6892
+
6893
+ #: includes/class-wcj-product-addons.php:99
6894
+ msgid "Some of the required addons are not selected!"
6895
+ msgstr "Einige der benötigten Erweiterungen sind nicht ausgewählt!"
6896
+
6897
+ #: includes/class-wcj-product-addons.php:114
6898
+ msgid ""
6899
+ "Booster: Free plugin's version is limited to only three products with per "
6900
+ "product addons enabled at a time. You will need to get <a href=\"http:"
6901
+ "//booster.io/plus/\" target=\"_blank\">Booster Plus</a> to add unlimited "
6902
+ "number of products with per product addons."
6903
+ msgstr ""
6904
+ "Booster: Kostenlose Pluginversion ist beschränkt auf nur drei Produkte mit "
6905
+ "aktivierten Produkterweiterungen. DU musst dir <a href=\"http://booster."
6906
+ "io/plus/\" target=\"_blank\">Booster Plus</a> kaufen, um eine unbeschränkte "
6907
+ "Anzahl von Produkten pro Produkterweiterung hinzufügen zu können."
6908
+
6909
+ #: includes/class-wcj-product-addons.php:446
6910
+ #: includes/class-wcj-wholesale-price.php:281
6911
+ #: includes/class-wcj-wholesale-price.php:316
6912
+ msgid "Save product after you change this number."
6913
+ msgstr "Speichere das Produkt, nachdem du diese Nummer geändert hast."
6914
+
6915
+ #: includes/class-wcj-product-addons.php:449
6916
+ #: includes/class-wcj-product-addons.php:560
6917
+ msgid "Product Addons Total Number"
6918
+ msgstr "Gesamtanzahl von Produkterweiterungen"
6919
+
6920
+ #: includes/class-wcj-product-addons.php:456
6921
+ #: includes/class-wcj-product-addons.php:576
6922
+ msgid "Product Addon"
6923
+ msgstr "Produkt-Addon"
6924
+
6925
+ #: includes/class-wcj-product-addons.php:472
6926
+ #: includes/class-wcj-product-addons.php:590
6927
+ msgid "Radio Buttons"
6928
+ msgstr "Radio Buttons"
6929
+
6930
+ #: includes/class-wcj-product-addons.php:476
6931
+ #: includes/class-wcj-product-addons.php:594
6932
+ msgid "Label(s)"
6933
+ msgstr "Label(s)"
6934
+
6935
+ #: includes/class-wcj-product-addons.php:477
6936
+ #: includes/class-wcj-product-addons.php:484
6937
+ #: includes/class-wcj-product-addons.php:491
6938
+ #: includes/class-wcj-product-addons.php:595
6939
+ #: includes/class-wcj-product-addons.php:603
6940
+ #: includes/class-wcj-product-addons.php:612
6941
+ msgid "For radio enter one value per line."
6942
+ msgstr "Gib einen Wert pro Zeile für Radio-Buttons ein."
6943
+
6944
+ #: includes/class-wcj-product-addons.php:483
6945
+ #: includes/class-wcj-product-addons.php:602
6946
+ msgid "Price(s)"
6947
+ msgstr "Preis(e)"
6948
+
6949
+ #: includes/class-wcj-product-addons.php:490
6950
+ #: includes/class-wcj-product-addons.php:611
6951
+ msgid "Tooltip(s)"
6952
+ msgstr "Tooltip(s)"
6953
+
6954
+ #: includes/class-wcj-product-addons.php:497
6955
+ #: includes/class-wcj-product-addons.php:619
6956
+ #: includes/class-wcj-purchase-data.php:340
6957
+ msgid "Default Value"
6958
+ msgstr "Voreingestellter Wert"
6959
+
6960
+ #: includes/class-wcj-product-addons.php:498
6961
+ #: includes/class-wcj-product-addons.php:620
6962
+ msgid ""
6963
+ "For checkbox use 'checked'; for radio enter default label. Leave blank for "
6964
+ "no default value."
6965
+ msgstr ""
6966
+ "Nutze 'checked' für Checkboxen; gib eine Standardlabel für Radio-Buttons ein."
6967
+ " Leer lassen, um keinen Standardwert festzulegen."
6968
+
6969
+ #: includes/class-wcj-product-addons.php:504
6970
+ msgid "Is required"
6971
+ msgstr "wird benötigt"
6972
+
6973
+ #: includes/class-wcj-product-addons.php:533
6974
+ msgid "Enable per Product Addons"
6975
+ msgstr "Aktiviere pro Produkterweiterung"
6976
+
6977
+ #: includes/class-wcj-product-addons.php:535
6978
+ msgid ""
6979
+ "When enabled, this will add new \"Booster: Product Addons\" meta box to each "
6980
+ "product's edit page."
6981
+ msgstr ""
6982
+ "Wenn aktiviert, wird dies eine neue \"Booster: Produkterweiterung\" Meta box "
6983
+ "jeder Produktbearbeitungsseite hinzufügen."
6984
+
6985
+ #: includes/class-wcj-product-addons.php:547
6986
+ msgid "All Product Options"
6987
+ msgstr "Alle Produktoptionen"
6988
+
6989
+ #: includes/class-wcj-product-addons.php:552
6990
+ msgid "Enable All Products Addons"
6991
+ msgstr "Aktivere alle Produkterweiterung"
6992
+
6993
+ #: includes/class-wcj-product-addons.php:554
6994
+ msgid "When enabled, this will add addons below to all products."
6995
+ msgstr ""
6996
+ "Wenn aktiviert, wird dies Erweiterungen unterhalb allen Produkten hinzufügen"
6997
+
6998
+ #: includes/class-wcj-product-addons.php:561
6999
+ msgid "Save changes after you change this number."
7000
+ msgstr "Speichere die Änderungen, nachdem Du diese Nummer geändert hast."
7001
+
7002
+ #: includes/class-wcj-product-addons.php:627
7003
+ #: includes/class-wcj-product-by-user.php:233
7004
+ msgid "Is Required"
7005
+ msgstr "Wird benötigt"
7006
+
7007
+ #: includes/class-wcj-product-addons.php:647
7008
+ msgid "Enable AJAX on Single Product Page"
7009
+ msgstr "Aktiviere AJAX auf Einzelproduktseite"
7010
+
7011
+ #: includes/class-wcj-product-addons.php:654
7012
+ msgid "Addon in Cart Format"
7013
+ msgstr "Addon im Warenkorb-Format"
7014
+
7015
+ #: includes/class-wcj-product-addons.php:662
7016
+ #: includes/class-wcj-product-addons.php:685
7017
+ msgid "Each Addon"
7018
+ msgstr "Jedes Addon"
7019
+
7020
+ #: includes/class-wcj-product-addons.php:663
7021
+ #: includes/class-wcj-product-addons.php:686
7022
+ msgid "You can use %addon_label% and %addon_price%."
7023
+ msgstr "Du kannst %addon_label% und %addon_price% nutzen."
7024
+
7025
+ #: includes/class-wcj-product-addons.php:677
7026
+ msgid "Addon in Order Details Table Format"
7027
+ msgstr "Addon in Bestelldetails Tabellenformat"
7028
+
7029
+ #: includes/class-wcj-product-addons.php:700
7030
+ msgid "Admin Order Page"
7031
+ msgstr "Admin-Bestellseite"
7032
+
7033
+ #: includes/class-wcj-product-addons.php:701
7034
+ msgid "Hide all addons"
7035
+ msgstr "Verstecke alle Addons"
7036
+
7037
+ #: includes/class-wcj-product-bookings.php:27
7038
+ msgid "Bookings"
7039
+ msgstr "Buchungen"
7040
+
7041
+ #: includes/class-wcj-product-bookings.php:28
7042
+ msgid "Add bookings products to WooCommerce."
7043
+ msgstr "Hinzufügen von Buchungsprodukten zu WooCommerce."
7044
+
7045
+ #: includes/class-wcj-product-bookings.php:131
7046
+ #: includes/class-wcj-product-bookings.php:226
7047
+ #: includes/class-wcj-product-bookings.php:481
7048
+ msgid "\"Date to\" must be after \"Date from\""
7049
+ msgstr "\"Datum bis\" muss nach \"Datum von\" eingestellt sein"
7050
+
7051
+ #: includes/class-wcj-product-bookings.php:145
7052
+ #: includes/class-wcj-product-open-pricing.php:209
7053
+ msgid "Read more"
7054
+ msgstr "Mehr lesen"
7055
+
7056
+ #: includes/class-wcj-product-bookings.php:184
7057
+ #: includes/class-wcj-product-bookings.php:453
7058
+ msgid "Period"
7059
+ msgstr "Zeitraum"
7060
+
7061
+ #: includes/class-wcj-product-bookings.php:216
7062
+ #: includes/class-wcj-product-bookings.php:467
7063
+ msgid "\"Date from\" must be set"
7064
+ msgstr "\"Datum von\" muss eingestellt sein"
7065
+
7066
+ #: includes/class-wcj-product-bookings.php:220
7067
+ #: includes/class-wcj-product-bookings.php:474
7068
+ msgid "\"Date to\" must be set"
7069
+ msgstr "\"Datum bis\" muss eingestellt sein"
7070
+
7071
+ #: includes/class-wcj-product-bookings.php:299
7072
+ #: includes/class-wcj-product-bookings.php:439
7073
+ msgid "Date from"
7074
+ msgstr "Datum von"
7075
+
7076
+ #: includes/class-wcj-product-bookings.php:303
7077
+ #: includes/class-wcj-product-bookings.php:446
7078
+ msgid "Date to"
7079
+ msgstr "Datum bis"
7080
+
7081
+ #: includes/class-wcj-product-bookings.php:318
7082
+ #: includes/class-wcj-product-bookings.php:460
7083
+ msgid "/ day"
7084
+ msgstr "/ Tag"
7085
+
7086
+ #: includes/class-wcj-product-bookings.php:386
7087
+ msgid ""
7088
+ "Booster: Free plugin's version is limited to only one bookings product "
7089
+ "enabled at a time. You will need to get <a href=\"http://booster.io/plus/\" "
7090
+ "target=\"_blank\">Booster Plus</a> to add unlimited number of bookings "
7091
+ "products."
7092
+ msgstr ""
7093
+ "Booster: Die kostenlose Version des Plugins ist auf ein einziges "
7094
+ "Buchungsprodukt beschränkt. Du musst <a href=\"http://booster.io/plus/\" "
7095
+ "target=\"_blank\">Booster Plus</a> erwerben, um unbegrenzte Anzahl von "
7096
+ "Buchungsprodukten hinzufügen zu können."
7097
+
7098
+ #: includes/class-wcj-product-bookings.php:432
7099
+ #: includes/class-wcj-product-open-pricing.php:369
7100
+ msgid "Labels and Messages"
7101
+ msgstr "Etiketten und Meldungen"
7102
+
7103
+ #: includes/class-wcj-product-bookings.php:437
7104
+ msgid "Frontend Label: \"Date from\""
7105
+ msgstr "Frontend Label: \"Datum von\""
7106
+
7107
+ #: includes/class-wcj-product-bookings.php:444
7108
+ msgid "Frontend Label: \"Date to\""
7109
+ msgstr "Frontend Label: \"Datum bis\""
7110
+
7111
+ #: includes/class-wcj-product-bookings.php:451
7112
+ msgid "Frontend Label: Period"
7113
+ msgstr "Frontend Label: Zeitraum"
7114
+
7115
+ #: includes/class-wcj-product-bookings.php:458
7116
+ msgid "Frontend Label: Price per Day"
7117
+ msgstr "Frontend Label: Preis pro Tag"
7118
+
7119
+ #: includes/class-wcj-product-bookings.php:465
7120
+ msgid "Message: \"Date from\" is missing"
7121
+ msgstr "Hinweis: \"Datum von\" fehlt"
7122
+
7123
+ #: includes/class-wcj-product-bookings.php:472
7124
+ #: includes/class-wcj-product-bookings.php:479
7125
+ msgid "Message: \"Date to\" is missing"
7126
+ msgstr "Hinweis: \"Datum bis\" fehlt"
7127
+
7128
+ #: includes/class-wcj-product-bookings.php:495
7129
+ msgid "Hide Quantity Selector for Booking Products"
7130
+ msgstr "Verstecke die Mengenauswahl für die Buchung von Produkten"
7131
+
7132
+ #: includes/class-wcj-product-bookings.php:506
7133
+ msgid ""
7134
+ "When enabled, module will add new \"Booster: Bookings\" meta box to each "
7135
+ "product's edit page."
7136
+ msgstr ""
7137
+ "Wenn diese Option aktiviert ist, wird das Modul für jede Bearbeitungsseite "
7138
+ "jedes Produkts eine neue \"Booster: Buchungen\"-Meta-Box hinzufügen."
7139
+
7140
+ #: includes/class-wcj-product-bulk-price-converter.php:25
7141
+ #: includes/class-wcj-product-bulk-price-converter.php:32
7142
+ msgid "Bulk Price Converter"
7143
+ msgstr "Bulk-Preis-Konverter"
7144
+
7145
+ #: includes/class-wcj-product-bulk-price-converter.php:26
7146
+ msgid "Multiply all WooCommerce products prices by set value."
7147
+ msgstr "Multipliziere alle WooCommerce-Produkte-Preise nach gesetztem Wert."
7148
+
7149
+ #: includes/class-wcj-product-bulk-price-converter.php:33
7150
+ msgid "Bulk Price Converter Tool."
7151
+ msgstr "Bulk-Preis-Konverter-Werkzeug."
7152
+
7153
+ #: includes/class-wcj-product-bulk-price-converter.php:150
7154
+ #: includes/class-wcj-product-by-user.php:207 includes/class-wcj-sku.php:244
7155
+ #: includes/export/class-wcj-fields-helper.php:318
7156
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:156
7157
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:329
7158
+ msgid "Categories"
7159
+ msgstr "Kategorien"
7160
+
7161
+ #: includes/class-wcj-product-bulk-price-converter.php:151
7162
+ msgid "Price Type"
7163
+ msgstr "Preisart"
7164
+
7165
+ #: includes/class-wcj-product-bulk-price-converter.php:246
7166
+ msgid "Price type to modify"
7167
+ msgstr "Zu ändernde Preisart"
7168
+
7169
+ #: includes/class-wcj-product-bulk-price-converter.php:248
7170
+ msgid "Both"
7171
+ msgstr "Beide"
7172
+
7173
+ #: includes/class-wcj-product-bulk-price-converter.php:250
7174
+ msgid "Sale prices only"
7175
+ msgstr "Nur Abverkaufpreise"
7176
+
7177
+ #: includes/class-wcj-product-bulk-price-converter.php:252
7178
+ msgid "Regular prices only"
7179
+ msgstr "Nur reguläre Preise"
7180
+
7181
+ #: includes/class-wcj-product-bulk-price-converter.php:259
7182
+ msgid "Products category"
7183
+ msgstr "Produktkategorie"
7184
+
7185
+ #: includes/class-wcj-product-bulk-price-converter.php:261
7186
+ #: includes/shortcodes/class-wcj-products-shortcodes.php:232
7187
+ msgid "Any"
7188
+ msgstr "Irgendeins"
7189
+
7190
+ #: includes/class-wcj-product-bulk-price-converter.php:263
7191
+ msgid "None"
7192
+ msgstr "Keine"
7193
+
7194
+ #: includes/class-wcj-product-bulk-price-converter.php:270
7195
+ msgid "\"Pretty prices\" threshold"
7196
+ msgstr "\"Pretty prices\" Übergangswert"
7197
+
7198
+ #: includes/class-wcj-product-bulk-price-converter.php:274
7199
+ msgid "Leave zero to disable"
7200
+ msgstr "Null belassen um zu deaktivieren"
7201
+
7202
+ #: includes/class-wcj-product-bulk-price-converter.php:279
7203
+ msgid "Preview Prices"
7204
+ msgstr "Preisvorschau"
7205
+
7206
+ #: includes/class-wcj-product-bulk-price-converter.php:286
7207
+ msgid "Change Prices"
7208
+ msgstr "Preisänderungen"
7209
+
7210
+ #: includes/class-wcj-product-by-country.php:27
7211
+ msgid "Product Visibility by Country"
7212
+ msgstr "Produktsichtbarkeit nach Land"
7213
+
7214
+ #: includes/class-wcj-product-by-country.php:28
7215
+ msgid "Display WooCommerce products by customer's country."
7216
+ msgstr "Zeige WooCommerce-Produkte nach Kundenland an."
7217
+
7218
+ #: includes/class-wcj-product-by-country.php:76
7219
+ msgid "Visible in Countries"
7220
+ msgstr "Sichtbar in den Ländern"
7221
+
7222
+ #: includes/class-wcj-product-by-country.php:90
7223
+ msgid ""
7224
+ "When enabled, module will add new \"Booster: Product Visibility by Country\" "
7225
+ "meta box to each product's edit page."
7226
+ msgstr ""
7227
+ "Wenn aktiviert, fügt das Modul eine neue \"Booster: Produktsichtbarkeit nach "
7228
+ "Land\"-Meta-Box auf der Seite jedes Produkts hinzu."
7229
+
7230
+ #: includes/class-wcj-product-by-user-role.php:27
7231
+ msgid "Product Visibility by User Role"
7232
+ msgstr "Produktsichtbarkeit nach Benutzerrolle"
7233
+
7234
+ #: includes/class-wcj-product-by-user-role.php:28
7235
+ msgid "Display WooCommerce products by customer's user role."
7236
+ msgstr "Anzeige von WooCommerce-Produkte nach Kunden-Benutzerrolle."
7237
+
7238
+ #: includes/class-wcj-product-by-user-role.php:73
7239
+ msgid "Visible for User Roles"
7240
+ msgstr "Sichtbar für Benutzerrollen"
7241
+
7242
+ #: includes/class-wcj-product-by-user-role.php:74
7243
+ msgid "Hold Control (Ctrl) key to select multiple roles."
7244
+ msgstr "Halte Kontrol (Strg)-Taste, um mehrere Rollen auszuwählen."
7245
+
7246
+ #: includes/class-wcj-product-by-user.php:27
7247
+ msgid "User Products"
7248
+ msgstr "Benutzer-Produkte"
7249
+
7250
+ #: includes/class-wcj-product-by-user.php:28
7251
+ msgid "Let users add new WooCommerce products from frontend."
7252
+ msgstr "Lasse Benutzer neue WooCommerce Produkte vom Frontend hinzufügen."
7253
+
7254
+ #: includes/class-wcj-product-by-user.php:115
7255
+ #: includes/class-wcj-product-by-user.php:124
7256
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:238
7257
+ msgid "Wrong user ID!"
7258
+ msgstr "Falsche Nutzer-ID!"
7259
+
7260
+ #: includes/class-wcj-product-by-user.php:164
7261
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:359
7262
+ msgid "Edit"
7263
+ msgstr "Bearbeiten"
7264
+
7265
+ #: includes/class-wcj-product-by-user.php:190
7266
+ msgid "Use [wcj_product_add_new] shortcode."
7267
+ msgstr "Nutze [wcj_product_add_new] Shortcode."
7268
+
7269
+ #: includes/class-wcj-product-by-user.php:203
7270
+ #: includes/export/class-wcj-fields-helper.php:292
7271
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:152
7272
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:274
7273
+ msgid "Short Description"
7274
+ msgstr "Kurzbeschreibung"
7275
+
7276
+ #: includes/class-wcj-product-by-user.php:204
7277
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:153
7278
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:290
7279
+ msgid "Image"
7280
+ msgstr "Bild"
7281
+
7282
+ #: includes/class-wcj-product-by-user.php:208
7283
+ #: includes/export/class-wcj-fields-helper.php:319
7284
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:157
7285
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:352
7286
+ msgid "Tags"
7287
+ msgstr "Stichwörter"
7288
+
7289
+ #: includes/class-wcj-product-by-user.php:223
7290
+ msgid "Additional Fields"
7291
+ msgstr "Zusätzliche Felder"
7292
+
7293
+ #: includes/class-wcj-product-by-user.php:249
7294
+ msgid "<em>Title</em> field is always enabled and required."
7295
+ msgstr "<em>Title</em> ist immer aktiviert und erforderlich."
7296
+
7297
+ #: includes/class-wcj-product-by-user.php:257
7298
+ msgid "User Visibility"
7299
+ msgstr "Sichtbarkeit des Benutzers"
7300
+
7301
+ #: includes/class-wcj-product-by-user.php:267
7302
+ msgid "Product Status"
7303
+ msgstr "Produktstatus"
7304
+
7305
+ #: includes/class-wcj-product-by-user.php:274
7306
+ msgid "Require Unique Title"
7307
+ msgstr "Einzigartiger Titel erforderlich"
7308
+
7309
+ #: includes/class-wcj-product-by-user.php:281
7310
+ msgid "Add \"My Products\" Tab to User's My Account Page"
7311
+ msgstr ""
7312
+ "Füge den \"Meine Produkte\"-Tab der \"Mein Konto\"-Seite des Nutzers hinzu"
7313
+
7314
+ #: includes/class-wcj-product-by-user.php:288
7315
+ msgid "Message: Product Successfully Added"
7316
+ msgstr "Nachricht: Produkt erfolgreich hinzugefügt!"
7317
+
7318
+ #: includes/class-wcj-product-by-user.php:290
7319
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:216
7320
+ msgid "\"%product_title%\" successfully added!"
7321
+ msgstr "\"%product_title%\" erfolgreich hinzugefügt!"
7322
+
7323
+ #: includes/class-wcj-product-by-user.php:295
7324
+ msgid "Message: Product Successfully Edited"
7325
+ msgstr "Nachricht: Produkt erfolgreich bearbeitet!"
7326
+
7327
+ #: includes/class-wcj-product-by-user.php:297
7328
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:223
7329
+ msgid "\"%product_title%\" successfully edited!"
7330
+ msgstr "\"%product_title%\" erfolgreich bearbeitet!"
7331
+
7332
+ #: includes/class-wcj-product-custom-info.php:27
7333
+ #: includes/class-wcj-product-info.php:104
7334
+ msgid "Add additional info to WooCommerce category and single product pages."
7335
+ msgstr ""
7336
+ "Füge zusätzliche Informationen der WooCommerce-Kategorie und einzelnen "
7337
+ "Produktseiten hinzu."
7338
+
7339
+ #: includes/class-wcj-product-custom-info.php:107
7340
+ msgid "Single"
7341
+ msgstr "Einzel"
7342
+
7343
+ #: includes/class-wcj-product-custom-info.php:107
7344
+ msgid "Archive"
7345
+ msgstr "Archiv"
7346
+
7347
+ #: includes/class-wcj-product-custom-info.php:110
7348
+ msgid "Product Custom Info Blocks"
7349
+ msgstr "Benutzerdefinierte Produkt-Infoblöcke"
7350
+
7351
+ #: includes/class-wcj-product-custom-info.php:148
7352
+ msgid "Before single product"
7353
+ msgstr "Vor Einzelprodukt"
7354
+
7355
+ #: includes/class-wcj-product-custom-info.php:149
7356
+ #: includes/class-wcj-product-info.php:141
7357
+ msgid "Before single product summary"
7358
+ msgstr "Vor Einzelprodukt Zusammenfassung"
7359
+
7360
+ #: includes/class-wcj-product-custom-info.php:150
7361
+ #: includes/class-wcj-product-info.php:140
7362
+ msgid "Inside single product summary"
7363
+ msgstr "In Einzelprodukt Zusammenfassung"
7364
+
7365
+ #: includes/class-wcj-product-custom-info.php:151
7366
+ #: includes/class-wcj-product-info.php:142
7367
+ msgid "After single product summary"
7368
+ msgstr "Nach Einzelprodukt Zusammenfassung"
7369
+
7370
+ #: includes/class-wcj-product-custom-info.php:152
7371
+ msgid "After single product"
7372
+ msgstr "Nach Einzelprodukt"
7373
+
7374
+ #: includes/class-wcj-product-custom-info.php:153
7375
+ msgid "Before add to cart form"
7376
+ msgstr "Vor dem \"dem Warenkorb hinzufügen\"-Formular"
7377
+
7378
+ #: includes/class-wcj-product-custom-info.php:154
7379
+ msgid "Before add to cart button"
7380
+ msgstr "Vor dem \"dem Warenkorb hinzufügen\"-Button"
7381
+
7382
+ #: includes/class-wcj-product-custom-info.php:155
7383
+ msgid "After add to cart button"
7384
+ msgstr "Nach dem \"dem Warenkorb hinzufügen\"-Button"
7385
+
7386
+ #: includes/class-wcj-product-custom-info.php:156
7387
+ msgid "After add to cart form"
7388
+ msgstr "Nach dem \"dem Warenkorb hinzufügen\"-Formular"
7389
+
7390
+ #: includes/class-wcj-product-custom-info.php:159
7391
+ #: includes/class-wcj-product-info.php:125
7392
+ msgid "Before product"
7393
+ msgstr "Vor dem Produkt"
7394
+
7395
+ #: includes/class-wcj-product-custom-info.php:160
7396
+ #: includes/class-wcj-product-info.php:126
7397
+ msgid "Before product title"
7398
+ msgstr "Vor dem Produkttitel"
7399
+
7400
+ #: includes/class-wcj-product-custom-info.php:161
7401
+ msgid "Inside product title"
7402
+ msgstr "Im Produkttitel"
7403
+
7404
+ #: includes/class-wcj-product-custom-info.php:162
7405
+ #: includes/class-wcj-product-info.php:128
7406
+ msgid "After product title"
7407
+ msgstr "Nach dem Produkttitel"
7408
+
7409
+ #: includes/class-wcj-product-custom-info.php:163
7410
+ #: includes/class-wcj-product-info.php:127
7411
+ msgid "After product"
7412
+ msgstr "Nach dem Produkt"
7413
+
7414
+ #: includes/class-wcj-product-custom-info.php:175
7415
+ msgid "Products to Include"
7416
+ msgstr "Einzuschließende Produkte"
7417
+
7418
+ #: includes/class-wcj-product-custom-info.php:176
7419
+ #: includes/class-wcj-product-custom-info.php:186
7420
+ msgid "Leave blank to disable the option."
7421
+ msgstr "Leer lassen, um die Option zu deaktivieren."
7422
+
7423
+ #: includes/class-wcj-product-custom-info.php:185
7424
+ msgid "Products to Exclude"
7425
+ msgstr "Auszuschließende Produkte"
7426
+
7427
+ #: includes/class-wcj-product-images.php:26
7428
+ msgid "Product Images"
7429
+ msgstr "Produktbilder"
7430
+
7431
+ #: includes/class-wcj-product-images.php:27
7432
+ msgid "Customize WooCommerce products images, thumbnails and sale flashes."
7433
+ msgstr "Passen WooCommerce Produktbilder, Thumbnails und Sale Flashes an."
7434
+
7435
+ #: includes/class-wcj-product-images.php:182
7436
+ #: includes/class-wcj-product-images.php:334
7437
+ msgid "Sale!"
7438
+ msgstr "Sale!"
7439
+
7440
+ #: includes/class-wcj-product-images.php:197
7441
+ msgid "Replace image with custom HTML on single product page"
7442
+ msgstr "Ersetze das Bild mit benutzerdefiniertem HTML auf Einzel-Produktseite"
7443
+
7444
+ #: includes/class-wcj-product-images.php:203
7445
+ msgid "Replace image with custom HTML on archives"
7446
+ msgstr "Ersetze das Bild mit benutzerdefiniertem HTML in Archiven"
7447
+
7448
+ #: includes/class-wcj-product-images.php:213
7449
+ msgid "Hide Image on Single"
7450
+ msgstr "Bild auf Single ausblenden"
7451
+
7452
+ #: includes/class-wcj-product-images.php:223
7453
+ msgid "Hide Thumbnails on Single"
7454
+ msgstr "Thumbnails auf Single ausblenden"
7455
+
7456
+ #: includes/class-wcj-product-images.php:233
7457
+ msgid "Hide Image on Archives"
7458
+ msgstr "Bild in Archiven ausblenden"
7459
+
7460
+ #: includes/class-wcj-product-images.php:247
7461
+ msgid "Product Image and Thumbnails"
7462
+ msgstr "Produktbild und Thumbnails"
7463
+
7464
+ #: includes/class-wcj-product-images.php:258
7465
+ msgid "Image and Thumbnails on Single"
7466
+ msgstr "Bild und Thumbnails auf Single"
7467
+
7468
+ #: includes/class-wcj-product-images.php:265
7469
+ msgid "Image on Single"
7470
+ msgstr "Bild auf Single"
7471
+
7472
+ #: includes/class-wcj-product-images.php:272
7473
+ msgid "Thumbnails on Single"
7474
+ msgstr "Thumbnails auf Single"
7475
+
7476
+ #: includes/class-wcj-product-images.php:279
7477
+ msgid "Image on Archives"
7478
+ msgstr "Bild in Archiven"
7479
+
7480
+ #: includes/class-wcj-product-images.php:286
7481
+ msgid "Replace Image on Single"
7482
+ msgstr "Ersetze das Bild auf Einzelproduktseite"
7483
+
7484
+ #: includes/class-wcj-product-images.php:287
7485
+ msgid ""
7486
+ "Replace image on single product page with custom HTML. Leave blank to "
7487
+ "disable."
7488
+ msgstr ""
7489
+ "Ersetze Bild auf einzelner Produktseite mit benutzerdefinierten HTML. Leer "
7490
+ "lassen, um zu deaktivieren."
7491
+
7492
+ #: includes/class-wcj-product-images.php:294
7493
+ msgid "Replace Thumbnails on Single"
7494
+ msgstr "Ersetzen von Thumbnails auf Einzel"
7495
+
7496
+ #: includes/class-wcj-product-images.php:295
7497
+ msgid ""
7498
+ "Replace thumbnails on single product page with custom HTML. Leave blank to "
7499
+ "disable."
7500
+ msgstr ""
7501
+ "Ersetzen von Thumbnails auf einzelner Produktseite mit benutzerdefiniertem "
7502
+ "HTML. Leer lassen, um zu deaktivieren."
7503
+
7504
+ #: includes/class-wcj-product-images.php:302
7505
+ msgid "Replace Image on Archive"
7506
+ msgstr "Ersetze Bild im Archiv"
7507
+
7508
+ #: includes/class-wcj-product-images.php:303
7509
+ msgid ""
7510
+ "Replace image on archive pages with custom HTML. Leave blank to disable."
7511
+ msgstr ""
7512
+ "Ersetze das Bild auf den Archivseiten mit benutzerdefiniertem HTML. Leer "
7513
+ "lassen, um zu deaktivieren."
7514
+
7515
+ #: includes/class-wcj-product-images.php:310
7516
+ msgid "Single Product Thumbnails Columns"
7517
+ msgstr "Einzelprodukt-Thumbnails Spalten"
7518
+
7519
+ #: includes/class-wcj-product-images.php:321
7520
+ msgid "Product Images Sale Flash"
7521
+ msgstr "Produktbilder Sale Flash"
7522
+
7523
+ #: includes/class-wcj-product-images.php:332
7524
+ msgid "HTML"
7525
+ msgstr "HTML"
7526
+
7527
+ #: includes/class-wcj-product-images.php:339
7528
+ msgid "Hide on Archives (Categories)"
7529
+ msgstr "Verstecken auf Archiven (Kategorien)"
7530
+
7531
+ #: includes/class-wcj-product-images.php:345
7532
+ msgid "Hide on Single"
7533
+ msgstr "Verstecken auf Einzelprodukt"
7534
+
7535
+ #: includes/class-wcj-product-info.php:103
7536
+ msgid "Product Info V1"
7537
+ msgstr "Produktinformation V1"
7538
+
7539
+ #: includes/class-wcj-product-info.php:274
7540
+ #: includes/class-wcj-product-info.php:377
7541
+ #: includes/class-wcj-product-info.php:410
7542
+ #: includes/class-wcj-product-tabs.php:550
7543
+ msgid "Priority (i.e. Order)"
7544
+ msgstr "Priorität (d.h. Bestellung)"
7545
+
7546
+ #: includes/class-wcj-product-info.php:281
7547
+ msgid ""
7548
+ "Number of product info fields. Click \"Save changes\" after you change this "
7549
+ "number."
7550
+ msgstr ""
7551
+ "Anzahl der Produktinformationsfelder. Klicke auf \"Änderungen speichern\" "
7552
+ "nachdem Du die Nummer geändert hast."
7553
+
7554
+ #: includes/class-wcj-product-info.php:303
7555
+ msgid ""
7556
+ "[wcj_product_you_save before=\"You save: <strong>\" hide_if_zero=\"yes\" "
7557
+ "after=\"</strong>\"][wcj_product_you_save_percent hide_if_zero=\"yes\" "
7558
+ "before=\" (\" after=\"%)\"]"
7559
+ msgstr ""
7560
+ "[wcj_product_you_save before=\"You save: <strong>\" hide_if_zero=\"yes\" "
7561
+ "after=\"</strong>\"][wcj_product_you_save_percent hide_if_zero=\"yes\" "
7562
+ "before=\" (\" after=\"%)\"]"
7563
+
7564
+ #: includes/class-wcj-product-info.php:304
7565
+ msgid "[wcj_product_total_sales before=\"Total sales: \"]"
7566
+ msgstr "[wcj_product_total_sales before=\"Total sales: \"]"
7567
+
7568
+ #: includes/class-wcj-product-info.php:331
7569
+ msgid "Products Info"
7570
+ msgstr "Produktinformation"
7571
+
7572
+ #: includes/class-wcj-product-info.php:332
7573
+ msgid ""
7574
+ "For full list of short codes, please visit <a target=\"_blank\" href=\"http:"
7575
+ "//booster.io/shortcodes/\">http://booster.io/shortcodes/</a>."
7576
+ msgstr ""
7577
+ "Für eine vollständige Liste der Shortcodes, besuche bitte <a "
7578
+ "target=\"_blank\" href=\"http://booster.io/shortcodes/\">http://booster."
7579
+ "io/shortcodes/</a>."
7580
+
7581
+ #: includes/class-wcj-product-info.php:336
7582
+ #: includes/class-wcj-product-info.php:350
7583
+ msgid "Product Info on Archive Pages"
7584
+ msgstr "Produkt-Info auf einzelnen WordPress-Archiv-Seiten"
7585
+
7586
+ #: includes/class-wcj-product-info.php:337
7587
+ msgid "Product Info on Single Pages"
7588
+ msgstr "Produkt-Info auf einzelnen WordPress-Seiten"
7589
+
7590
+ #: includes/class-wcj-product-info.php:345
7591
+ msgid "Even More Products Info"
7592
+ msgstr "Noch mehr Produkte-Info"
7593
+
7594
+ #: includes/class-wcj-product-info.php:358
7595
+ #: includes/class-wcj-product-info.php:391
7596
+ msgid "HTML info."
7597
+ msgstr "HTML Information."
7598
+
7599
+ #: includes/class-wcj-product-info.php:360
7600
+ msgid "[wcj_product_sku before=\"SKU: \"]"
7601
+ msgstr "[wcj_product_sku before=\"SKU: \"]"
7602
+
7603
+ #: includes/class-wcj-product-info.php:383
7604
+ msgid "Product Info on Single Product Pages"
7605
+ msgstr "Produktinformationen auf einzelnen Produktseiten"
7606
+
7607
+ #: includes/class-wcj-product-info.php:393
7608
+ msgid "Total sales: [wcj_product_total_sales]"
7609
+ msgstr "Gesamtumsatz: [wcj_product_total_sales]"
7610
+
7611
+ #: includes/class-wcj-product-info.php:416
7612
+ msgid "Product IDs to exclude"
7613
+ msgstr "Auszuschließende Produkt-IDs"
7614
+
7615
+ #: includes/class-wcj-product-info.php:417
7616
+ msgid "Comma separated list of product IDs to exclude from product info."
7617
+ msgstr ""
7618
+ "Kommagetrennte Liste der Produkt-IDs, die von der Produktinformation "
7619
+ "ausgeschlossen werden sollen."
7620
+
7621
+ #: includes/class-wcj-product-input-fields.php:24
7622
+ #: includes/input-fields/class-wcj-product-input-fields-per-product.php:127
7623
+ msgid "Product Input Fields"
7624
+ msgstr "Produkt-Eingabefelder"
7625
+
7626
+ #: includes/class-wcj-product-input-fields.php:25
7627
+ msgid "WooCommerce product input fields."
7628
+ msgstr "WooCommerce Produkt-Eingabefelder."
7629
+
7630
+ #: includes/class-wcj-product-input-fields.php:124
7631
+ msgid "Product Input Fields per Product Options"
7632
+ msgstr "Produkt-Eingabefelder pro Produkt Optionen"
7633
+
7634
+ #: includes/class-wcj-product-input-fields.php:126
7635
+ #: includes/class-wcj-product-input-fields.php:164
7636
+ msgid ""
7637
+ "Add custom input fields to product's single page for customer to fill before "
7638
+ "adding product to cart."
7639
+ msgstr ""
7640
+ "Füge benutzerdefinierte Eingabefelder der Produkt-Einzelseite hinzu, die ein "
7641
+ "Kunde ausfüllen muss, bevor das Produkt in den Warenkorb gelegt wird."
7642
+
7643
+ #: includes/class-wcj-product-input-fields.php:127
7644
+ msgid ""
7645
+ "When enabled this module will add \"Product Input Fields\" tab to each "
7646
+ "product's \"Edit\" page."
7647
+ msgstr ""
7648
+ "Wenn aktiviert, wird dieses Modul jedem Produkt \"Produkt-Eingabefelder\"-"
7649
+ "Tab der Bearbeitungsseite hinzufügen."
7650
+
7651
+ #: includes/class-wcj-product-input-fields.php:132
7652
+ msgid "Product Input Fields - per Product"
7653
+ msgstr "Produkt-Eingabefelder - pro Produkt"
7654
+
7655
+ #: includes/class-wcj-product-input-fields.php:134
7656
+ msgid "Add custom input field on per product basis."
7657
+ msgstr ""
7658
+ "Benutzerdefinierte Eingabefelder auf einer pro Produktbasis hinzufügen."
7659
+
7660
+ #: includes/class-wcj-product-input-fields.php:141
7661
+ msgid "Default Number of Product Input Fields per Product"
7662
+ msgstr "Voreingestellte Anzahl von Produkt-Eingabefeldern pro Produkt"
7663
+
7664
+ #: includes/class-wcj-product-input-fields.php:162
7665
+ msgid "Product Input Fields Global Options"
7666
+ msgstr "Produkt-Eingabefelder - Globale Optionen"
7667
+
7668
+ #: includes/class-wcj-product-input-fields.php:169
7669
+ msgid "Product Input Fields - All Products"
7670
+ msgstr "Produkt-Eingabefelder - Alle Produkte"
7671
+
7672
+ #: includes/class-wcj-product-input-fields.php:171
7673
+ msgid "Add custom input fields to all products."
7674
+ msgstr "Benutzerdefinierte Eingabefelder allen Produkten hinzufügen."
7675
+
7676
+ #: includes/class-wcj-product-input-fields.php:178
7677
+ msgid "Product Input Fields Number"
7678
+ msgstr "Produkt-Eingabefelder Anzahl"
7679
+
7680
+ #: includes/class-wcj-product-input-fields.php:198
7681
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:300
7682
+ #: includes/input-fields/class-wcj-product-input-fields-per-product.php:164
7683
+ msgid "Product Input Field"
7684
+ msgstr "Produkt-Eingabefeld"
7685
+
7686
+ #: includes/class-wcj-product-input-fields.php:232
7687
+ msgid "Affects Checkout, Emails and Admin Orders View"
7688
+ msgstr "Betrifft Checkout, E-Mails und Admin-Bestellungen-Ansicht"
7689
+
7690
+ #: includes/class-wcj-product-input-fields.php:276
7691
+ msgid "Admin Order View Options"
7692
+ msgstr "Admin Bestellansichts-Optionen"
7693
+
7694
+ #: includes/class-wcj-product-input-fields.php:282
7695
+ msgid "Replace Field ID with Field Label"
7696
+ msgstr "Ersetze die Feld-ID mit Feld-Label"
7697
+
7698
+ #: includes/class-wcj-product-listings.php:25
7699
+ msgid "Product Listings"
7700
+ msgstr "Produktauflistungen"
7701
+
7702
+ #: includes/class-wcj-product-listings.php:26
7703
+ msgid ""
7704
+ "Change WooCommerce display options for shop and category pages: show/hide "
7705
+ "categories count, exclude categories, show/hide empty categories. Add "
7706
+ "\"products per page\" selector."
7707
+ msgstr ""
7708
+ "Ändere WooCommerce-Anzeigeoptionen für Shop- und Kategorieseiten: "
7709
+ "Anzeigen/Ausblenden von Kategorienzählung, Kategorien ausschließen, leere "
7710
+ "Kategorien ein-/ausblenden. \"Produkte pro Seite\"-Wähler hinzufügen."
7711
+
7712
+ #: includes/class-wcj-product-listings.php:141
7713
+ #: includes/class-wcj-product-listings.php:491
7714
+ msgid ""
7715
+ "Products <strong>%from% - %to%</strong> from <strong>%total%</strong>. "
7716
+ "Products on page %select_form%"
7717
+ msgstr ""
7718
+ "Produkte <strong>%from% - %to%</strong> ab <strong>% gesamt% </ strong>. "
7719
+ "Produkte auf Seite %select_form%"
7720
+
7721
+ #: includes/class-wcj-product-listings.php:362
7722
+ msgid "Shop Page Display Options"
7723
+ msgstr "Shop-Seite Anzeige-Optionen"
7724
+
7725
+ #: includes/class-wcj-product-listings.php:364
7726
+ msgid ""
7727
+ "This will work only when \"Shop Page Display\" in \"WooCommerce > Settings > "
7728
+ "Products > Product Listings\" is set to \"Show subcategories\" or \"Show "
7729
+ "both\"."
7730
+ msgstr ""
7731
+ "Dies funktioniert nur, wenn \"Shop Page Display\" in \"WooCommerce > "
7732
+ "Einstellungen > Produkte > Produktlisten\" auf \"Unterkategorien anzeigen\" "
7733
+ "oder \"Zeige beide\" gesetzt ist."
7734
+
7735
+ #: includes/class-wcj-product-listings.php:368
7736
+ msgid "Categories Count"
7737
+ msgstr "Kategorienzähler"
7738
+
7739
+ #: includes/class-wcj-product-listings.php:369
7740
+ msgid "Hide categories count on shop page"
7741
+ msgstr "Kategorienzähler auf Shop-Seite ausblenden"
7742
+
7743
+ #: includes/class-wcj-product-listings.php:375
7744
+ msgid "Exclude Categories"
7745
+ msgstr "Kategorien ausschließen"
7746
+
7747
+ #: includes/class-wcj-product-listings.php:376
7748
+ msgid ""
7749
+ " Excludes one or more categories from the shop page. This parameter takes a "
7750
+ "comma-separated list of categories by unique ID, in ascending order. Leave "
7751
+ "blank to disable."
7752
+ msgstr ""
7753
+ " Schließt eine oder mehr Kategorien von der Shopseite aus. Dieser Parameter "
7754
+ "nimmt eine durch Kommas getrennte Liste von Kategorien durch eindeutige ID "
7755
+ "in aufsteigender Reihenfolge auf. Leer lassen, um zu deaktivieren."
7756
+
7757
+ #: includes/class-wcj-product-listings.php:383
7758
+ #: includes/class-wcj-product-listings.php:424
7759
+ msgid "Hide Empty"
7760
+ msgstr "Leer ausblenden"
7761
+
7762
+ #: includes/class-wcj-product-listings.php:384
7763
+ msgid "Hide empty categories on shop page"
7764
+ msgstr "Leere Kategorien auf Shopseite ausblenden"
7765
+
7766
+ #: includes/class-wcj-product-listings.php:390
7767
+ #: includes/class-wcj-product-listings.php:431
7768
+ msgid "Show Products"
7769
+ msgstr "Zeige Produkte"
7770
+
7771
+ #: includes/class-wcj-product-listings.php:391
7772
+ msgid "Show products if no categories are displayed on shop page"
7773
+ msgstr "Zeige Produkte auf Shopseite, wenn keine Kategorien angezeigt werden"
7774
+
7775
+ #: includes/class-wcj-product-listings.php:401
7776
+ msgid "Category Display Options"
7777
+ msgstr "Kategorie Anzeigeoptionen"
7778
+
7779
+ #: includes/class-wcj-product-listings.php:403
7780
+ msgid ""
7781
+ "This will work only when \"Default Category Display\" in \"WooCommerce > "
7782
+ "Settings > Products > Product Listings\" is set to \"Show subcategories\" or "
7783
+ "\"Show both\"."
7784
+ msgstr ""
7785
+ "Dies funktioniert nur, wenn \"Standard-Kategorie Anzeige\" in \"WooCommerce >"
7786
+ " Einstellungen > Produkte > Produktlisten\" auf \"Unterkategorien anzeigen\" "
7787
+ "oder \"Zeige beides\" gesetzt ist."
7788
+
7789
+ #: includes/class-wcj-product-listings.php:407
7790
+ msgid "Subcategories Count"
7791
+ msgstr "Unterkategorien-Zähler"
7792
+
7793
+ #: includes/class-wcj-product-listings.php:408
7794
+ msgid "Hide subcategories count on category pages"
7795
+ msgstr "Unterkategorien ausblenden auf Kategorieseiten"
7796
+
7797
+ #: includes/class-wcj-product-listings.php:416
7798
+ msgid "Exclude Subcategories"
7799
+ msgstr "Unterkategorien ausblenden"
7800
+
7801
+ #: includes/class-wcj-product-listings.php:417
7802
+ msgid ""
7803
+ " Excludes one or more categories from the category (archive) pages. This "
7804
+ "parameter takes a comma-separated list of categories by unique ID, in "
7805
+ "ascending order. Leave blank to disable."
7806
+ msgstr ""
7807
+ " Schließt eine oder mehrere Kategorien von den Kategorie(Archiv)-Seiten aus. "
7808
+ "Dieser Parameter nimmt eine durch Kommas getrennte Liste von Kategorien "
7809
+ "durch eindeutige ID in aufsteigender Reihenfolge auf. Leer lassen, um zu "
7810
+ "deaktivieren."
7811
+
7812
+ #: includes/class-wcj-product-listings.php:425
7813
+ msgid "Hide empty subcategories on category pages"
7814
+ msgstr "Leere Unterkategorien auf Shopseite ausblenden"
7815
+
7816
+ #: includes/class-wcj-product-listings.php:432
7817
+ msgid "Show products if no categories are displayed on category page"
7818
+ msgstr ""
7819
+ "Produkte anzeigen, wenn keine Kategorien auf der Kategorienseite angezeigt "
7820
+ "werden"
7821
+
7822
+ #: includes/class-wcj-product-listings.php:442
7823
+ msgid "Products per Page Options"
7824
+ msgstr "Produkte pro Seite Optionen"
7825
+
7826
+ #: includes/class-wcj-product-listings.php:447
7827
+ msgid "Enable Products per Page"
7828
+ msgstr "Produkte pro Seite aktivieren"
7829
+
7830
+ #: includes/class-wcj-product-listings.php:454
7831
+ msgid "Select Options"
7832
+ msgstr "Optionen wählen"
7833
+
7834
+ #: includes/class-wcj-product-listings.php:455
7835
+ msgid "Name|Number; one per line; -1 for all products"
7836
+ msgstr "Name|Nummer; eine pro Linie; -1 für alle Produkte"
7837
+
7838
+ #: includes/class-wcj-product-listings.php:477
7839
+ msgid "Before shop loop"
7840
+ msgstr "Vor dem Shop-Loop"
7841
+
7842
+ #: includes/class-wcj-product-listings.php:478
7843
+ msgid "After shop loop"
7844
+ msgstr "Nach dem Shop-Loop"
7845
+
7846
+ #: includes/class-wcj-product-listings.php:500
7847
+ msgid "TAX Display Prices in the Shop"
7848
+ msgstr "Steuern-Preisanzeige im Shop"
7849
+
7850
+ #: includes/class-wcj-product-listings.php:502
7851
+ msgid ""
7852
+ "If you want to display part of your products including TAX and another part "
7853
+ "excluding TAX, you can set it here."
7854
+ msgstr ""
7855
+ "Wenn Du einen Teil Ihrer Produkte inkl. Steuern und einen anderen Teil exkl. "
7856
+ "Steuern anzeigen möchtest, kannst Du das hier einstellen."
7857
+
7858
+ #: includes/class-wcj-product-listings.php:506
7859
+ msgid "Products - Including TAX"
7860
+ msgstr "Produkte - inkl. Steuern"
7861
+
7862
+ #: includes/class-wcj-product-listings.php:508
7863
+ msgid "Select products to display including TAX."
7864
+ msgstr "Wähle Produkte aus, die angezeigt werden sollen, inkl. Steuern."
7865
+
7866
+ #: includes/class-wcj-product-listings.php:516
7867
+ msgid "Products - Excluding TAX"
7868
+ msgstr "Produkte - exkl. Steuern"
7869
+
7870
+ #: includes/class-wcj-product-listings.php:518
7871
+ msgid "Select products to display excluding TAX."
7872
+ msgstr "Wähle Produkte aus, die ohne Steuern angezeigt werden sollen."
7873
+
7874
+ #: includes/class-wcj-product-listings.php:526
7875
+ msgid "Product Categories - Including TAX"
7876
+ msgstr "Produktkategorien - inkl. Steuern"
7877
+
7878
+ #: includes/class-wcj-product-listings.php:528
7879
+ msgid "Select product categories to display including TAX."
7880
+ msgstr "Wähle Produktkategorien aus, die mit Steuern angezeigt werden sollen."
7881
+
7882
+ #: includes/class-wcj-product-listings.php:536
7883
+ msgid "Product Categories - Excluding TAX"
7884
+ msgstr "Produktkategorien - exkl. Steuern"
7885
+
7886
+ #: includes/class-wcj-product-listings.php:538
7887
+ msgid "Select product categories to display excluding TAX."
7888
+ msgstr "Wähle Produktkategorien aus, die ohne Steuern angezeigt werden sollen."
7889
+
7890
+ #: includes/class-wcj-product-open-pricing.php:27
7891
+ msgid "Product Open Pricing (Name Your Price)"
7892
+ msgstr "Produkt mit offenem Preis (Nenne Deinen Preis)"
7893
+
7894
+ #: includes/class-wcj-product-price-by-formula.php:27
7895
+ msgid "Product Price by Formula"
7896
+ msgstr "Produktpreis nach Formel"
7897
+
7898
+ #: includes/class-wcj-product-price-by-formula.php:206
7899
+ msgid ""
7900
+ "Booster: Free plugin's version is limited to only one price by formula "
7901
+ "product enabled at a time. You will need to get <a href=\"http://booster."
7902
+ "io/plus/\" target=\"_blank\">Booster Plus</a> to add unlimited number of "
7903
+ "price by formula products."
7904
+ msgstr ""
7905
+ "Booster: Die kostenlose Plugin-Version ist auf nur einen Produktpreis nach "
7906
+ "Formel begrenzt. Du musst <a href=\"http://booster.io/plus/\" "
7907
+ "target=\"_blank\">Booster Plus</a> erwerben, um eine unbegrenzte Anzahl von "
7908
+ "\"Produktpreis nach Formel\"-Produkten hinzufügen zu können."
7909
+
7910
+ #: includes/class-wcj-product-price-by-formula.php:247
7911
+ msgid "Calculation"
7912
+ msgstr "Berechnung"
7913
+
7914
+ #: includes/class-wcj-product-price-by-formula.php:253
7915
+ #: includes/class-wcj-product-price-by-formula.php:313
7916
+ msgid "Formula"
7917
+ msgstr "Formel"
7918
+
7919
+ #: includes/class-wcj-product-price-by-formula.php:259
7920
+ msgid "Number of Parameters"
7921
+ msgstr "Anzahl der Parameter"
7922
+
7923
+ #: includes/class-wcj-product-price-by-formula.php:293
7924
+ msgid "Final Price Preview"
7925
+ msgstr "Endgültiger Preis-Vorschau"
7926
+
7927
+ #: includes/class-wcj-product-price-by-formula.php:307
7928
+ msgid "Default Settings"
7929
+ msgstr "Voreinstellungen"
7930
+
7931
+ #: includes/class-wcj-product-price-by-formula.php:309
7932
+ msgid ""
7933
+ "You can set default settings here. All settings can later be changed in "
7934
+ "individual product's edit page."
7935
+ msgstr ""
7936
+ "Hier kannst Du Voreinstellungen festlegen. Alle Einstellungen können später, "
7937
+ "auf der jeweiligen Produktbearbeitungsseite, geändert werden."
7938
+
7939
+ #: includes/class-wcj-product-price-by-formula.php:314
7940
+ msgid "Use \"x\" variable for product's base price. For example: x+p1*p2"
7941
+ msgstr "Nutze \"x\"-Variable für den Produktbasispreis, z.B.: x+p1*p2"
7942
+
7943
+ #: includes/class-wcj-product-price-by-formula.php:320
7944
+ msgid "Total Params"
7945
+ msgstr "Paramter-Gesamtanzahl"
7946
+
7947
+ #: includes/class-wcj-product-tabs.php:25
7948
+ msgid "Product Tabs"
7949
+ msgstr "Produkt-Registerkarten"
7950
+
7951
+ #: includes/class-wcj-product-tabs.php:26
7952
+ msgid ""
7953
+ "Add custom product tabs - globally or per product. Customize or completely "
7954
+ "remove WooCommerce default product tabs."
7955
+ msgstr ""
7956
+ "Benutzerdefiniertes Produkt-Registerkarte hinzufügen - weltweit oder pro "
7957
+ "Produkt. Passe an oder entferne die voreingestellten WooCommerce Produkt-"
7958
+ "Registerkarten vollständig"
7959
+
7960
+ #: includes/class-wcj-product-tabs.php:288
7961
+ msgid "Booster: Custom Tabs"
7962
+ msgstr "Booster: Benutzerdefinierte Registerkarte"
7963
+
7964
+ #: includes/class-wcj-product-tabs.php:405
7965
+ msgid "Total number of custom tabs"
7966
+ msgstr "Gesamtanzahl an benutzerdefinierten Registerkarten"
7967
+
7968
+ #: includes/class-wcj-product-tabs.php:426
7969
+ #: includes/class-wcj-related-products.php:127
7970
+ msgid "Order"
7971
+ msgstr "Sortierung"
7972
+
7973
+ #: includes/class-wcj-product-tabs.php:499
7974
+ msgid "This section lets you add custom single product tabs."
7975
+ msgstr ""
7976
+ "Dieser Abschnitt lässt Dich benutzerdefinierte Einzelprodukt-Registerkarten "
7977
+ "hinzufügen."
7978
+
7979
+ #: includes/class-wcj-product-tabs.php:673
7980
+ msgid "This section lets you set defaults for per product custom tabs."
7981
+ msgstr ""
7982
+ "Dieser Abschnitt lässt Dich die Vorgaben für benutzerdefinierte Pro-Produkt-"
7983
+ "Registerkarten festlegen."
7984
+
7985
+ #: includes/class-wcj-product-tabs.php:805
7986
+ msgid "This section lets you customize single product tabs."
7987
+ msgstr "Dieser Abschnitt lässt Dich Einzelprodukt-Registerkarten anpassen."
7988
+
7989
+ #: includes/class-wcj-products-xml.php:96
7990
+ #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:203
7991
+ msgid "Once Weekly"
7992
+ msgstr "Einmal wöchentlich"
7993
+
7994
+ #: includes/class-wcj-products-xml.php:285
7995
+ msgid "Update Period"
7996
+ msgstr "Zeitraum aktualisieren"
7997
+
7998
+ #: includes/class-wcj-products-xml.php:297
7999
+ msgid ""
8000
+ "Possible update periods are: every minute, hourly, twice daily, daily and "
8001
+ "weekly."
8002
+ msgstr ""
8003
+ "Mögliche Aktualisierungszeiträume sind: jede Minute, stündlich, zweimal "
8004
+ "täglich, täglich und wöchentlich."
8005
+
8006
+ #: includes/class-wcj-purchase-data.php:26
8007
+ msgid "Product Cost Price"
8008
+ msgstr "Produktkosten-Preis"
8009
+
8010
+ #: includes/class-wcj-purchase-data.php:27
8011
+ msgid "Save WooCommerce product purchase costs data for admin reports."
8012
+ msgstr "Speichere WooCommerce Produktverkaufskosten-Daten für Admin-Berichte."
8013
+
8014
+ #: includes/class-wcj-purchase-data.php:116
8015
+ #: includes/class-wcj-purchase-data.php:278
8016
+ msgid "Product cost (purchase) price"
8017
+ msgstr "Produktkosten-(Kauf)-Preis"
8018
+
8019
+ #: includes/class-wcj-purchase-data.php:168
8020
+ #: includes/class-wcj-purchase-data.php:359
8021
+ msgid "(Last) Purchase date"
8022
+ msgstr "(Letztes) Kaufdatum"
8023
+
8024
+ #: includes/class-wcj-purchase-data.php:384
8025
+ msgid "Orders List Custom Columns"
8026
+ msgstr "Bestellliste benutzerdefinierte Spalten"
8027
+
8028
+ #: includes/class-wcj-related-products.php:26
8029
+ msgid ""
8030
+ "Change displayed WooCommerce related products number, columns, order, relate "
8031
+ "by tag and/or category, or hide related products completely."
8032
+ msgstr ""
8033
+ "Ändern der angezeigten WooCommerce-bezogenen Produktnummern, Spalten, "
8034
+ "Reihenfolge, beziehen sich auf Stichwort und/oder Kategorie oder verbergen "
8035
+ "ähnliche Produkte vollständig."
8036
+
8037
+ #: includes/class-wcj-related-products.php:104
8038
+ msgid "Related Products Number"
8039
+ msgstr "Ähnliche Produkte Nummer"
8040
+
8041
+ #: includes/class-wcj-related-products.php:110
8042
+ msgid "Related Products Columns"
8043
+ msgstr "Ähnliche Produkte Spalten"
8044
+
8045
+ #: includes/class-wcj-related-products.php:116
8046
+ msgid "Order by"
8047
+ msgstr "Ordnen nach"
8048
+
8049
+ #: includes/class-wcj-related-products.php:121
8050
+ msgid "Random"
8051
+ msgstr "Zufällig"
8052
+
8053
+ #: includes/class-wcj-related-products.php:122
8054
+ msgid "Date"
8055
+ msgstr "Datum"
8056
+
8057
+ #: includes/class-wcj-related-products.php:133
8058
+ msgid "Ascending"
8059
+ msgstr "Aufsteigend"
8060
+
8061
+ #: includes/class-wcj-related-products.php:134
8062
+ msgid "Descending"
8063
+ msgstr "Absteigend"
8064
+
8065
+ #: includes/class-wcj-related-products.php:150
8066
+ msgid "Hide Related Products"
8067
+ msgstr "Verstecke Ähnliche Produkte"
8068
+
8069
+ #: includes/class-wcj-reports.php:34
8070
+ msgid "Reports"
8071
+ msgstr "Berichte"
8072
+
8073
+ #: includes/class-wcj-reports.php:73
8074
+ msgid "Booster: More Ranges - Months"
8075
+ msgstr "Booster: Mehr Umfang - Monate"
8076
+
8077
+ #: includes/class-wcj-reports.php:75 includes/class-wcj-reports.php:111
8078
+ msgid "Select Range"
8079
+ msgstr "Umfang wählen"
8080
+
8081
+ #: includes/class-wcj-reports.php:109
8082
+ msgid "Booster: More Ranges"
8083
+ msgstr "Booster: Mehr Umfang"
8084
+
8085
+ #: includes/class-wcj-reports.php:119 includes/class-wcj-reports.php:121
8086
+ msgid "Last 14 Days"
8087
+ msgstr "Letzte 14 Tage"
8088
+
8089
+ #: includes/class-wcj-reports.php:126 includes/class-wcj-reports.php:128
8090
+ msgid "Last 30 Days"
8091
+ msgstr "Letzte 30 Tage"
8092
+
8093
+ #: includes/class-wcj-reports.php:133 includes/class-wcj-reports.php:135
8094
+ msgid "Last 3 Months"
8095
+ msgstr "Letzte 3 Monate"
8096
+
8097
+ #: includes/class-wcj-reports.php:140 includes/class-wcj-reports.php:142
8098
+ msgid "Last 6 Months"
8099
+ msgstr "Letzte 6 Monate"
8100
+
8101
+ #: includes/class-wcj-reports.php:147 includes/class-wcj-reports.php:149
8102
+ msgid "Last 12 Months"
8103
+ msgstr "Letzte 12 Monate"
8104
+
8105
+ #: includes/class-wcj-reports.php:154 includes/class-wcj-reports.php:156
8106
+ msgid "Last 24 Months"
8107
+ msgstr "Letzte 24 Monate"
8108
+
8109
+ #: includes/class-wcj-reports.php:161 includes/class-wcj-reports.php:163
8110
+ msgid "Same Days Last Month"
8111
+ msgstr "Gleiche Tage Letzter Monat"
8112
+
8113
+ #: includes/class-wcj-reports.php:175 includes/class-wcj-reports.php:177
8114
+ msgid "Last Year"
8115
+ msgstr "Letztes Jahr"
8116
+
8117
+ #: includes/class-wcj-reports.php:241
8118
+ msgid "Booster: Product Sales"
8119
+ msgstr "Booster: Verkaufte Produkte"
8120
+
8121
+ #: includes/class-wcj-reports.php:248
8122
+ msgid "Booster: Monthly Sales"
8123
+ msgstr "Booster: Monatliche Verkäufe"
8124
+
8125
+ #: includes/class-wcj-reports.php:263
8126
+ msgid "Booster: All in stock"
8127
+ msgstr "Booster: Alles auf Lager"
8128
+
8129
+ #: includes/class-wcj-reports.php:270
8130
+ msgid "Booster: Understocked"
8131
+ msgstr "Booester: Untervorratet"
8132
+
8133
+ #: includes/class-wcj-reports.php:277
8134
+ msgid "Booster: Overstocked"
8135
+ msgstr "Booster: Übervorratet"
8136
+
8137
+ #: includes/class-wcj-reports.php:323
8138
+ msgid "Count variations in product sales report"
8139
+ msgstr "Zähle Varianten in Produktverkaufsbericht"
8140
+
8141
+ #: includes/class-wcj-reports.php:328
8142
+ msgid "Monthly Sales (with currency conversions)"
8143
+ msgstr "Monatliche Verkäufe (mit Währungsumrechnungen)"
8144
+
8145
+ #: includes/class-wcj-reports.php:352
8146
+ msgid "Understocked products (calculated by sales data)"
8147
+ msgstr "Untervorratete Produkte (berechnet nach Verkaufsdaten)"
8148
+
8149
+ #: includes/class-wcj-reports.php:358
8150
+ msgid "Overstocked products (calculated by sales data)"
8151
+ msgstr "Übervorratete Produkte (berechnet nach Verkaufsdaten)"
8152
+
8153
+ #: includes/class-wcj-reports.php:366
8154
+ msgid "Available Reports"
8155
+ msgstr "Verfügbare Berichte"
8156
+
8157
+ #: includes/class-wcj-reports.php:383
8158
+ msgid "View report"
8159
+ msgstr "Bericht ansehen"
8160
+
8161
+ #: includes/class-wcj-shipping-calculator.php:25
8162
+ msgid "Shipping Calculator"
8163
+ msgstr "Versandrechner"
8164
+
8165
+ #: includes/class-wcj-shipping-calculator.php:26
8166
+ msgid "Customize WooCommerce shipping calculator on cart page."
8167
+ msgstr "Anpassung des WooCommerce Versandrechners auf Warenkorbseite."
8168
+
8169
+ #: includes/class-wcj-shipping-calculator.php:128
8170
+ msgid "Shipping Calculator Options"
8171
+ msgstr "Versandrechner-Optionen"
8172
+
8173
+ #: includes/class-wcj-shipping-calculator.php:133
8174
+ msgid "Enable City"
8175
+ msgstr "Stadt aktivieren"
8176
+
8177
+ #: includes/class-wcj-shipping-calculator.php:140
8178
+ msgid "Enable Postcode"
8179
+ msgstr "Postleitzahl aktivieren"
8180
+
8181
+ #: includes/class-wcj-shipping-calculator.php:147
8182
+ msgid "Enable State"
8183
+ msgstr "Zustand aktivieren"
8184
+
8185
+ #: includes/class-wcj-shipping-calculator.php:154
8186
+ msgid "Force Block Open"
8187
+ msgstr "Erzwinge Block öffnen"
8188
+
8189
+ #: includes/class-wcj-shipping-calculator.php:162
8190
+ msgid "Calculate Shipping button"
8191
+ msgstr "Versandkosten berechnen-Button"
8192
+
8193
+ #: includes/class-wcj-shipping-calculator.php:163
8194
+ msgid ""
8195
+ "When \"Force Block Open\" options is enabled, set Calculate Shipping button "
8196
+ "options."
8197
+ msgstr ""
8198
+ "Wenn die Option \"Erzwinge Block öffnen\" aktiviert ist, stelle die Optionen "
8199
+ "für den \"Versand berechnen\"-Button ein."
8200
+
8201
+ #: includes/class-wcj-shipping-calculator.php:169
8202
+ msgid "Make non clickable"
8203
+ msgstr "Nicht anklickbar machen"
8204
+
8205
+ #: includes/class-wcj-shipping.php:27
8206
+ msgid "Add multiple custom shipping methods to WooCommerce."
8207
+ msgstr "Füge WooCommerce mehrfache benutzerdefinierte Versandmethoden hinzu."
8208
+
8209
+ #: includes/class-wcj-shipping.php:29
8210
+ msgid "Hide WooCommerce shipping when free is available."
8211
+ msgstr "Verstecken von WooCommerce-Versand, wenn kostenlos verfügbar ist."
8212
+
8213
+ #: includes/class-wcj-shipping.php:201
8214
+ msgid "This section lets you set number of custom shipping methods to add."
8215
+ msgstr ""
8216
+ "Dieser Abschnitt lässt Dich die Anzahl von hinzufügbaren benutzerdefinierten "
8217
+ "Versandmethoden festlegen."
8218
+
8219
+ #: includes/class-wcj-shipping.php:205
8220
+ msgid "Custom Shipping Methods Number"
8221
+ msgstr "Benutzerdefinierte Versandmethoden-Nummer"
8222
+
8223
+ #: includes/class-wcj-shipping.php:217
8224
+ msgid "Admin Title Custom Shipping"
8225
+ msgstr "Admin Titel benutzerdefinierter Versand"
8226
+
8227
+ #: includes/class-wcj-shipping.php:231
8228
+ msgid "Hide if Free is Available"
8229
+ msgstr "Wenn \"kostenlos\" verfügbar ist, ausblenden"
8230
+
8231
+ #: includes/class-wcj-shipping.php:233
8232
+ msgid ""
8233
+ "This section lets you hide other shipping options when free shipping is "
8234
+ "available on shop frontend."
8235
+ msgstr ""
8236
+ "Dieser Abschnitt lässt Dich andere Versandoptionen ausblenden, wenn "
8237
+ "kostenloser Versand im Shop-Frontend verfügbar ist."
8238
+
8239
+ #: includes/class-wcj-shipping.php:245
8240
+ msgid "Hide shipping"
8241
+ msgstr "Versand ausblenden"
8242
+
8243
+ #: includes/class-wcj-shipping.php:259 includes/class-wcj-shipping.php:265
8244
+ msgid "Shipping Descriptions"
8245
+ msgstr "Versandbeschreibungen"
8246
+
8247
+ #: includes/class-wcj-shipping.php:261
8248
+ msgid ""
8249
+ "This section will allow you to add any text (e.g. description) for shipping "
8250
+ "method. Text will be visible on cart and checkout pages. You can add HTML "
8251
+ "tags here, e.g. try \"%s\""
8252
+ msgstr ""
8253
+ "In diesem Abschnitt kannst Du einen beliebigen Text (z. B. Beschreibung) für "
8254
+ "die Versandart hinzufügen. Text wird auf Warenkorb- und Kassenseiten "
8255
+ "sichtbar. Du kannst hier HTML-Tags hinzufügen, versuche z.B. \"%s\""
8256
+
8257
+ #: includes/class-wcj-shipping.php:291 includes/class-wcj-shipping.php:297
8258
+ msgid "Shipping Icons"
8259
+ msgstr "Versandicons"
8260
+
8261
+ #: includes/class-wcj-shipping.php:293
8262
+ msgid ""
8263
+ "This section will allow you to add icons for shipping method. Icons will be "
8264
+ "visible on cart and checkout pages."
8265
+ msgstr ""
8266
+ "In diesem Abschnitt kannst Du Icons für die Versandmethode hinzufügen. Icons "
8267
+ "werden auf Warenkorb- und Kassenseiten sichtbar."
8268
+
8269
+ #: includes/class-wcj-sku.php:26 includes/class-wcj-sku.php:245
8270
+ #: includes/export/class-wcj-fields-helper.php:283
8271
+ msgid "SKU"
8272
+ msgstr "SKU"
8273
+
8274
+ #: includes/class-wcj-sku.php:27
8275
+ msgid "Generate WooCommerce SKUs automatically."
8276
+ msgstr "Generiere WooCommerce SKUs automatisch."
8277
+
8278
+ #: includes/class-wcj-sku.php:33
8279
+ msgid "Autogenerate SKUs"
8280
+ msgstr "Autogenerieren von SKUs"
8281
+
8282
+ #: includes/class-wcj-sku.php:321
8283
+ msgid "Variable Products Variations"
8284
+ msgstr "Varianten für Variable Produkte"
8285
+
8286
+ #: includes/class-wcj-sku.php:322
8287
+ msgid ""
8288
+ "Please note, that on new variable product creation, variations will get same "
8289
+ "SKUs as parent product, and if you want variations to have different SKUs, "
8290
+ "you will need to run \"Autogenerate SKUs\" tool manually."
8291
+ msgstr ""
8292
+ "Bitte beachte, dass Variationen bei der Erzeugung neuer Variablen dieselben "
8293
+ "SKUs wie das übergeordnete Produkt erhalten. Wenn Variationen "
8294
+ "unterschiedliche SKUs haben sollen, musst Du das Werkzeug \"Autogenerieren "
8295
+ "von SKUs\" manuell ausführen."
8296
+
8297
+ #: includes/class-wcj-sku.php:386
8298
+ msgid "If disabled you can use Autogenerate SKUs tool."
8299
+ msgstr ""
8300
+ "Wenn deaktiviert, kannst Du \"Autogenerieren von SKUs\"-Werkzeug verwenden."
8301
+
8302
+ #: includes/class-wcj-sku.php:413
8303
+ msgid ""
8304
+ "If you wish to set SKUs for existing products, use \"Autogenerate SKUs\" "
8305
+ "Tool."
8306
+ msgstr ""
8307
+ "Wenn Du SKUs für bestehende Produkte festlegen möchtest, verwende das "
8308
+ "Werkzeug \"Autogenerieren von SKUs\"."
8309
+
8310
+ #: includes/class-wcj-sorting.php:26
8311
+ msgid "Sorting"
8312
+ msgstr "Sortierung"
8313
+
8314
+ #: includes/class-wcj-sorting.php:27
8315
+ msgid ""
8316
+ "Add more WooCommerce sorting options or remove all sorting including default."
8317
+ msgstr ""
8318
+ "Füge weitere WooCommerce Sortierungsoptionen hinzu oder entferne alle "
8319
+ "Sortierungen einschließlich der Voreingestellten."
8320
+
8321
+ #: includes/class-wcj-sorting.php:67
8322
+ msgid "WooJetpack: Remove All Sorting"
8323
+ msgstr "WooJetpack: Alle Sortierungen entfernen"
8324
+
8325
+ #: includes/class-wcj-sorting.php:71
8326
+ msgid "Completely remove sorting from the shop front end"
8327
+ msgstr "Sortierung komplett aus dem Shop entfernen"
8328
+
8329
+ #: includes/class-wcj-sorting.php:165 includes/class-wcj-sorting.php:170
8330
+ msgid "Remove All Sorting"
8331
+ msgstr "Entfernen aller Sortierungen"
8332
+
8333
+ #: includes/class-wcj-sorting.php:171
8334
+ msgid "Remove all sorting (including WooCommerce default)"
8335
+ msgstr "Entferne alle Sortierungen (einschließlich WooCommerce-Voreinstellung)"
8336
+
8337
+ #: includes/class-wcj-sorting.php:183 includes/class-wcj-sorting.php:188
8338
+ msgid "Add More Sorting"
8339
+ msgstr "Weitere Sortierung hinzufügen"
8340
+
8341
+ #: includes/class-wcj-sorting.php:195
8342
+ msgid "Sort by Name"
8343
+ msgstr "Sortieren nach Name"
8344
+
8345
+ #: includes/class-wcj-sorting.php:196 includes/class-wcj-sorting.php:199
8346
+ msgid "Sort by title: A to Z"
8347
+ msgstr "Sortieren nach Titel: A bis Z"
8348
+
8349
+ #: includes/class-wcj-sorting.php:197 includes/class-wcj-sorting.php:206
8350
+ #: includes/class-wcj-sorting.php:215 includes/class-wcj-sorting.php:224
8351
+ #: includes/class-wcj-sorting.php:242 includes/class-wcj-sorting.php:251
8352
+ msgid "Text to show on frontend. Leave blank to disable."
8353
+ msgstr "Anzuzeigender Text im Frontend. Leer lassen, um zu deaktivieren."
8354
+
8355
+ #: includes/class-wcj-sorting.php:205 includes/class-wcj-sorting.php:208
8356
+ msgid "Sort by title: Z to A"
8357
+ msgstr "Sortieren nach Titel: Z bis A"
8358
+
8359
+ #: includes/class-wcj-sorting.php:213
8360
+ msgid "Sort by SKU"
8361
+ msgstr "Sortieren nach SKU"
8362
+
8363
+ #: includes/class-wcj-sorting.php:214 includes/class-wcj-sorting.php:217
8364
+ msgid "Sort by SKU: low to high"
8365
+ msgstr "Sortieren nach SKU: von niedrig nach hoch"
8366
+
8367
+ #: includes/class-wcj-sorting.php:223 includes/class-wcj-sorting.php:226
8368
+ msgid "Sort by SKU: high to low"
8369
+ msgstr "Sortieren nach SKU: von hoch nach niedrig"
8370
+
8371
+ #: includes/class-wcj-sorting.php:232
8372
+ msgid "Sort SKUs as numbers instead of as texts"
8373
+ msgstr "Sortiere SKUs als Zahlen anstelle von Texten"
8374
+
8375
+ #: includes/class-wcj-sorting.php:240
8376
+ msgid "Sort by stock quantity"
8377
+ msgstr "Nach Bestandsmenge sortieren"
8378
+
8379
+ #: includes/class-wcj-sorting.php:241 includes/class-wcj-sorting.php:244
8380
+ msgid "Sort by stock quantity: low to high"
8381
+ msgstr "Nach Bestandsmenge sortieren: von niedrig nach hoch"
8382
+
8383
+ #: includes/class-wcj-sorting.php:250 includes/class-wcj-sorting.php:253
8384
+ msgid "Sort by stock quantity: high to low"
8385
+ msgstr "Nach Bestandsmenge sortieren: von hoch nach niedrig"
8386
+
8387
+ #: includes/class-wcj-wholesale-price.php:27
8388
+ msgid "Wholesale Price"
8389
+ msgstr "Großhandelspreis"
8390
+
8391
+ #: includes/class-wcj-wholesale-price.php:28
8392
+ msgid ""
8393
+ "Set WooCommerce wholesale pricing depending on product quantity in cart (buy "
8394
+ "more pay less)."
8395
+ msgstr ""
8396
+ "WooCommerce Großhandelspreisgestaltung, abhängig von der Produktmenge im "
8397
+ "Einkaufswagen (mehr kaufen weniger zahlen) einstellen."
8398
+
8399
+ #: includes/class-wcj-wholesale-price.php:266
8400
+ msgid "Enable per Product Levels"
8401
+ msgstr "Aktivieren von pro Produktstufen"
8402
+
8403
+ #: includes/class-wcj-wholesale-price.php:273
8404
+ #: includes/class-wcj-wholesale-price.php:419
8405
+ msgid "Discount Type"
8406
+ msgstr "Rabattart"
8407
+
8408
+ #: includes/class-wcj-wholesale-price.php:280
8409
+ #: includes/class-wcj-wholesale-price.php:315
8410
+ #: includes/class-wcj-wholesale-price.php:455
8411
+ #: includes/class-wcj-wholesale-price.php:510
8412
+ msgid "Number of levels"
8413
+ msgstr "Anzahl der Stufen"
8414
+
8415
+ #: includes/class-wcj-wholesale-price.php:281
8416
+ #: includes/class-wcj-wholesale-price.php:316
8417
+ msgid ""
8418
+ "Free Booster's version is limited to one level maximum. Please visit http:"
8419
+ "//booster.io to get full version."
8420
+ msgstr ""
8421
+ "Free Booster-Version ist auf maximal eine Stufe begrenzt. Bitte besuche http:"
8422
+ "//booster.io, um die Vollversion zu erwerben."
8423
+
8424
+ #: includes/class-wcj-wholesale-price.php:295
8425
+ #: includes/class-wcj-wholesale-price.php:302
8426
+ #: includes/class-wcj-wholesale-price.php:330
8427
+ #: includes/class-wcj-wholesale-price.php:337
8428
+ msgid "Level"
8429
+ msgstr "Stufe"
8430
+
8431
+ #: includes/class-wcj-wholesale-price.php:295
8432
+ #: includes/class-wcj-wholesale-price.php:330
8433
+ #: includes/class-wcj-wholesale-price.php:468
8434
+ #: includes/class-wcj-wholesale-price.php:524
8435
+ msgid "Min quantity"
8436
+ msgstr "Mindestmenge"
8437
+
8438
+ #: includes/class-wcj-wholesale-price.php:302
8439
+ #: includes/export/class-wcj-fields-helper.php:288
8440
+ #: includes/reports/wcj-class-reports-stock.php:321
8441
+ msgid "Price"
8442
+ msgstr "Preis"
8443
+
8444
+ #: includes/class-wcj-wholesale-price.php:302
8445
+ #: includes/class-wcj-wholesale-price.php:337
8446
+ #: includes/class-wcj-wholesale-price.php:476
8447
+ #: includes/class-wcj-wholesale-price.php:477
8448
+ #: includes/class-wcj-wholesale-price.php:532
8449
+ #: includes/class-wcj-wholesale-price.php:533
8450
+ msgid "Discount"
8451
+ msgstr "Rabatt"
8452
+
8453
+ #: includes/class-wcj-wholesale-price.php:379
8454
+ msgid ""
8455
+ "Wholesale Price Levels Options. If you want to display prices table on "
8456
+ "frontend, use [wcj_product_wholesale_price_table] shortcode."
8457
+ msgstr ""
8458
+ "Großhandels-Preisstufen-Optionen. Wenn Du die Preistabelle auf dem Frontend "
8459
+ "anzeigen möchtest, verwende den Shortcode [wcj_product_wholesale_price_table]"
8460
+ "."
8461
+
8462
+ #: includes/class-wcj-wholesale-price.php:383
8463
+ msgid "Enable per Product"
8464
+ msgstr "Aktivieren pro Produkt"
8465
+
8466
+ #: includes/class-wcj-wholesale-price.php:390
8467
+ msgid "Use total cart quantity instead of product quantity"
8468
+ msgstr "Verwende die gesamte Warenkorbmenge statt der Produktmenge"
8469
+
8470
+ #: includes/class-wcj-wholesale-price.php:397
8471
+ msgid "Apply wholesale discount only if no other cart discounts were applied"
8472
+ msgstr ""
8473
+ "Wende den Großhandelsrabatt nur an, wenn keine anderen Warenkorbrabatte "
8474
+ "angewandt wurden"
8475
+
8476
+ #: includes/class-wcj-wholesale-price.php:404
8477
+ msgid "Show discount info on cart page"
8478
+ msgstr "Zeige Rabatt-Info auf der Warenkorbseite"
8479
+
8480
+ #: includes/class-wcj-wholesale-price.php:405
8481
+ msgid "Show"
8482
+ msgstr "Zeige"
8483
+
8484
+ #: includes/class-wcj-wholesale-price.php:411
8485
+ msgid "If show discount info on cart page is enabled, set format here"
8486
+ msgstr ""
8487
+ "Wenn die Rabattinfo auf der Warenkorbseite aktiviert ist, lege hier das "
8488
+ "Format fest"
8489
+
8490
+ #: includes/class-wcj-wholesale-price.php:429
8491
+ msgid "Products to include"
8492
+ msgstr "Einzuschließende Produkte"
8493
+
8494
+ #: includes/class-wcj-wholesale-price.php:430
8495
+ msgid "Leave blank to include all products."
8496
+ msgstr "Lasse das Feld leer, um alle Produkte einzuschließen."
8497
+
8498
+ #: includes/class-wcj-wholesale-price.php:438
8499
+ msgid "Products to exclude"
8500
+ msgstr "Auszuschließende Produkte"
8501
+
8502
+ #: includes/class-wcj-wholesale-price.php:450
8503
+ msgid "Wholesale Levels Options"
8504
+ msgstr "Großhandel-Abstufungs-Optionen"
8505
+
8506
+ #: includes/class-wcj-wholesale-price.php:469
8507
+ #: includes/class-wcj-wholesale-price.php:525
8508
+ msgid "Minimum quantity to apply discount"
8509
+ msgstr "Mindestabnahmemenge um Rabatt anzuwenden"
8510
+
8511
+ #: includes/class-wcj-wholesale-price.php:490
8512
+ msgid "Additional User Roles Options"
8513
+ msgstr "Optionen für zusätzliche Benutzer-Rollen"
8514
+
8515
+ #: includes/class-wcj-wholesale-price.php:492
8516
+ msgid ""
8517
+ "If you want to set different wholesale pricing options for different user "
8518
+ "roles, fill this section. Please note that you can also use Booster's "
8519
+ "\"Price by User Role\" module without filling this section."
8520
+ msgstr ""
8521
+ "Wenn Du verschiedene Großhandelspreisoptionen für verschiedene "
8522
+ "Benutzerrollen festlegen möchtest, fülle diesen Abschnitt aus. Bitte beachte,"
8523
+ " dass Du auch das Modul \"Preis nach Benutzer-Rolle\" von Booster verwenden "
8524
+ "kannst, ohne diesen Abschnitt auszufüllen."
8525
+
8526
+ #: includes/class-wcj-wholesale-price.php:496
8527
+ msgid "User Roles Settings"
8528
+ msgstr "Benutzer Rollen-Einstellungen"
8529
+
8530
+ #: includes/class-wcj-wpml.php:26
8531
+ msgid "Booster WPML"
8532
+ msgstr "Booster WPML"
8533
+
8534
+ #: includes/class-wcj-wpml.php:27
8535
+ msgid "Booster for WooCommerce basic WPML support."
8536
+ msgstr "Booster for WooCommerce Grundlegende Unterstützung für WPML."
8537
+
8538
+ #: includes/class-wcj-wpml.php:66 includes/classes/class-wcj-module.php:336
8539
+ msgid "Tools"
8540
+ msgstr "Werkzeuge"
8541
+
8542
+ #: includes/class-wcj-wpml.php:71 includes/classes/class-wcj-module.php:342
8543
+ msgid "Module Tools"
8544
+ msgstr "Modul-Werkzeuge"
8545
+
8546
+ #: includes/class-wcj-wpml.php:76 includes/class-wcj-wpml.php:79
8547
+ msgid "Regenerate wpml-config.xml file"
8548
+ msgstr "Regeneriere die Datei wpml-config.xml"
8549
+
8550
+ #: includes/class-wcj-wpml.php:104
8551
+ msgid "File wpml-config.xml successfully regenerated!"
8552
+ msgstr "Datei wpml-config.xml erfolgreich regeneriert!"
8553
+
8554
+ #: includes/classes/class-wcj-module.php:324
8555
+ msgid "Back to Module Settings"
8556
+ msgstr "Zurück zu Moduleinstellungen"
8557
+
8558
+ #: includes/classes/class-wcj-module.php:416
8559
+ msgid "disabled"
8560
+ msgstr "deaktiviert"
8561
+
8562
+ #: includes/classes/class-wcj-module.php:462
8563
+ msgid "Reset Settings"
8564
+ msgstr "Einstellungen rücksetzen"
8565
+
8566
+ #: includes/classes/class-wcj-module.php:468
8567
+ msgid "Reset Module to Default Settings"
8568
+ msgstr "Modul auf Voreinstellungen rücksetzen"
8569
+
8570
+ #: includes/classes/class-wcj-module.php:469
8571
+ msgid "Reset Submodule to Default Settings"
8572
+ msgstr "Untermodul auf Voreinstellungen rücksetzen"
8573
+
8574
+ #: includes/classes/class-wcj-module.php:473
8575
+ msgid "Reset settings"
8576
+ msgstr "Einstellungen rücksetzen"
8577
+
8578
+ #: includes/classes/class-wcj-module.php:501
8579
+ msgid "Module Options"
8580
+ msgstr "Moduloptionen"
8581
+
8582
+ #: includes/classes/class-wcj-module.php:508
8583
+ msgid "Enable Module"
8584
+ msgstr "Modul aktivieren"
8585
+
8586
+ #: includes/currencies/wcj-currencies.php:83
8587
+ msgid "Kenyan shilling"
8588
+ msgstr "Kenia-Schilling"
8589
+
8590
+ #: includes/emails/class-wc-email-wcj-custom.php:31
8591
+ msgid ""
8592
+ "Custom emails are sent to the recipient list when selected triggers are "
8593
+ "called."
8594
+ msgstr ""
8595
+ "Wenn ausgewählte Auslöser aufgerufen werden, werden benutzerdefinierte E-"
8596
+ "Mails an die Empfängerliste gesendet."
8597
+
8598
+ #: includes/emails/class-wc-email-wcj-custom.php:33
8599
+ msgid "Custom Heading"
8600
+ msgstr "Benutzerdefinierte Überschrift"
8601
+
8602
+ #: includes/emails/class-wc-email-wcj-custom.php:34
8603
+ msgid "[{site_title}] Custom Subject - Order ({order_number}) - {order_date}"
8604
+ msgstr ""
8605
+ "[{site_title}] Benutzerdefinierter Betreff - Bestellung ({order_number}) - "
8606
+ "{order_date}"
8607
+
8608
+ #: includes/emails/class-wc-email-wcj-custom.php:251
8609
+ msgid "New order (%s)"
8610
+ msgstr "neue bestellung (%s)"
8611
+
8612
+ #: includes/emails/class-wc-email-wcj-custom.php:252
8613
+ msgid "Order status updated to %s"
8614
+ msgstr "Bestellzustand aktualisiert zu %s"
8615
+
8616
+ #: includes/emails/class-wc-email-wcj-custom.php:262
8617
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:61
8618
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:76
8619
+ msgid "Enable/Disable"
8620
+ msgstr "Aktivieren/Deaktivieren"
8621
+
8622
+ #: includes/emails/class-wc-email-wcj-custom.php:264
8623
+ msgid "Enable this email notification"
8624
+ msgstr "Aktiviere diese Emailbenachrichtigung"
8625
+
8626
+ #: includes/emails/class-wc-email-wcj-custom.php:268
8627
+ msgid "Trigger(s)"
8628
+ msgstr "Auslöser"
8629
+
8630
+ #: includes/emails/class-wc-email-wcj-custom.php:272
8631
+ msgid ""
8632
+ "Please note, that all new orders in WooCommerce by default are created with "
8633
+ "Pending Payment status. If you want to change the default order status - you "
8634
+ "can use Booster's \"Order Custom Statuses\" module (in WooCommerce > "
8635
+ "Settings > Booster > Shipping & Orders > Order Custom Statuses)."
8636
+ msgstr ""
8637
+ "Bitte beachte, dass alle neuen Bestellungen in WooCommerce voreingestellt "
8638
+ "mit \"Ausstehendem Zahlungstatus\" erstellt werden. Wenn Du den "
8639
+ "Standardbestellstatus ändern möchtest - kannst Du Booster's "
8640
+ "\"Benutzerdefinierte Bestellzustände\"-Modul (in WooCommerce > Einstellungen "
8641
+ "> Booster > Versand & Bestellungen > Benutzerdefinierte Bestellzustände) "
8642
+ "nutzen."
8643
+
8644
+ #: includes/emails/class-wc-email-wcj-custom.php:275
8645
+ msgid "New order (Any status)"
8646
+ msgstr "Neue Bestellung (jeder Zustand)"
8647
+
8648
+ #: includes/emails/class-wc-email-wcj-custom.php:280
8649
+ msgid "Reset password notification"
8650
+ msgstr "Kennwortbenachrichtigung zurücksetzen"
8651
+
8652
+ #: includes/emails/class-wc-email-wcj-custom.php:281
8653
+ msgid "Order fully refunded notification"
8654
+ msgstr "Benachrichtigung für Auftrag vollständig zurückerstattet"
8655
+
8656
+ #: includes/emails/class-wc-email-wcj-custom.php:282
8657
+ msgid "Order partially refunded notification"
8658
+ msgstr "Benachrichtigung für Bestellung teilweise zurückerstattet"
8659
+
8660
+ #: includes/emails/class-wc-email-wcj-custom.php:283
8661
+ msgid "New customer note notification"
8662
+ msgstr "Benachrichtigung über neuen Kunden"
8663
+
8664
+ #: includes/emails/class-wc-email-wcj-custom.php:295
8665
+ msgid "Recipient(s)"
8666
+ msgstr "Empfänger"
8667
+
8668
+ #: includes/emails/class-wc-email-wcj-custom.php:297
8669
+ msgid ""
8670
+ "Enter recipients (comma separated) for this email. Defaults to <code>"
8671
+ "%s</code>."
8672
+ msgstr ""
8673
+ "Empfänger eingeben (Komma-getrennt) für diese Email. Voreinstellung ist "
8674
+ "<code>%s</code>."
8675
+
8676
+ #: includes/emails/class-wc-email-wcj-custom.php:297
8677
+ msgid "Or enter <code>%customer%</code> to send to customer billing email."
8678
+ msgstr ""
8679
+ "Oder gib <code>%customer%</code> ein, um an die Rechnungs-E-Mail des Kunden "
8680
+ "zu senden."
8681
+
8682
+ #: includes/emails/class-wc-email-wcj-custom.php:302
8683
+ msgid "Subject"
8684
+ msgstr "Betreff"
8685
+
8686
+ #: includes/export/class-wcj-fields-helper.php:36
8687
+ #: includes/export/class-wcj-fields-helper.php:132
8688
+ #: includes/export/class-wcj-fields-helper.php:217
8689
+ msgid "Billing Email"
8690
+ msgstr "Rechnung Email"
8691
+
8692
+ #: includes/export/class-wcj-fields-helper.php:37
8693
+ #: includes/export/class-wcj-fields-helper.php:122
8694
+ #: includes/export/class-wcj-fields-helper.php:207
8695
+ msgid "Billing First Name"
8696
+ msgstr "Rechnung Vorname"
8697
+
8698
+ #: includes/export/class-wcj-fields-helper.php:38
8699
+ #: includes/export/class-wcj-fields-helper.php:123
8700
+ #: includes/export/class-wcj-fields-helper.php:208
8701
+ msgid "Billing Last Name"
8702
+ msgstr "Rechnung Nachname"
8703
+
8704
+ #: includes/export/class-wcj-fields-helper.php:39
8705
+ #: includes/export/class-wcj-fields-helper.php:124
8706
+ #: includes/export/class-wcj-fields-helper.php:209
8707
+ msgid "Billing Company"
8708
+ msgstr "Rechnung Unternehmen"
8709
+
8710
+ #: includes/export/class-wcj-fields-helper.php:40
8711
+ #: includes/export/class-wcj-fields-helper.php:125
8712
+ #: includes/export/class-wcj-fields-helper.php:210
8713
+ msgid "Billing Address 1"
8714
+ msgstr "Rechnungsadresse 1"
8715
+
8716
+ #: includes/export/class-wcj-fields-helper.php:41
8717
+ #: includes/export/class-wcj-fields-helper.php:126
8718
+ #: includes/export/class-wcj-fields-helper.php:211
8719
+ msgid "Billing Address 2"
8720
+ msgstr "Rechnungsadresse 2"
8721
+
8722
+ #: includes/export/class-wcj-fields-helper.php:42
8723
+ #: includes/export/class-wcj-fields-helper.php:127
8724
+ #: includes/export/class-wcj-fields-helper.php:212
8725
+ msgid "Billing City"
8726
+ msgstr "Rechnung Ort"
8727
+
8728
+ #: includes/export/class-wcj-fields-helper.php:43
8729
+ #: includes/export/class-wcj-fields-helper.php:128
8730
+ #: includes/export/class-wcj-fields-helper.php:213
8731
+ msgid "Billing State"
8732
+ msgstr "Rechnung Bundesland/Staat/Region"
8733
+
8734
+ #: includes/export/class-wcj-fields-helper.php:44
8735
+ #: includes/export/class-wcj-fields-helper.php:129
8736
+ #: includes/export/class-wcj-fields-helper.php:214
8737
+ msgid "Billing Postcode"
8738
+ msgstr "Rechnung Postleitzahl"
8739
+
8740
+ #: includes/export/class-wcj-fields-helper.php:45
8741
+ #: includes/export/class-wcj-fields-helper.php:130
8742
+ #: includes/export/class-wcj-fields-helper.php:215
8743
+ msgid "Billing Country"
8744
+ msgstr "Rechnung Land"
8745
+
8746
+ #: includes/export/class-wcj-fields-helper.php:46
8747
+ #: includes/export/class-wcj-fields-helper.php:131
8748
+ #: includes/export/class-wcj-fields-helper.php:216
8749
+ msgid "Billing Phone"
8750
+ msgstr "Rechnung Telefonnummer"
8751
+
8752
+ #: includes/export/class-wcj-fields-helper.php:47
8753
+ msgid "Last Order Date"
8754
+ msgstr "Letztes Bestelldatum"
8755
+
8756
+ #: includes/export/class-wcj-fields-helper.php:75
8757
+ msgid "Customer ID"
8758
+ msgstr "Kunden-ID"
8759
+
8760
+ #: includes/export/class-wcj-fields-helper.php:77
8761
+ msgid "First Name"
8762
+ msgstr "Vorname"
8763
+
8764
+ #: includes/export/class-wcj-fields-helper.php:78
8765
+ msgid "Last Name"
8766
+ msgstr "Nachname"
8767
+
8768
+ #: includes/export/class-wcj-fields-helper.php:82
8769
+ #: includes/reports/wcj-class-reports-customers.php:94
8770
+ msgid "Registered"
8771
+ msgstr "Angemeldet am"
8772
+
8773
+ #: includes/export/class-wcj-fields-helper.php:111
8774
+ #: includes/export/class-wcj-fields-helper.php:194
8775
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:254
8776
+ msgid "Order ID"
8777
+ msgstr "Bestell-ID"
8778
+
8779
+ #: includes/export/class-wcj-fields-helper.php:112
8780
+ #: includes/export/class-wcj-fields-helper.php:195
8781
+ msgid "Order Number"
8782
+ msgstr "Bestellnummer"
8783
+
8784
+ #: includes/export/class-wcj-fields-helper.php:113
8785
+ #: includes/export/class-wcj-fields-helper.php:196
8786
+ msgid "Order Status"
8787
+ msgstr "Bestell-Status"
8788
+
8789
+ #: includes/export/class-wcj-fields-helper.php:114
8790
+ #: includes/export/class-wcj-fields-helper.php:197
8791
+ msgid "Order Date"
8792
+ msgstr "Bestelldatum"
8793
+
8794
+ #: includes/export/class-wcj-fields-helper.php:116
8795
+ #: includes/export/class-wcj-fields-helper.php:199
8796
+ msgid "Order Item Count"
8797
+ msgstr "Bestellpositionszahl"
8798
+
8799
+ #: includes/export/class-wcj-fields-helper.php:118
8800
+ #: includes/export/class-wcj-fields-helper.php:203
8801
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:260
8802
+ msgid "Order Total"
8803
+ msgstr "Gesamtsumme der Bestellung"
8804
+
8805
+ #: includes/export/class-wcj-fields-helper.php:119
8806
+ #: includes/export/class-wcj-fields-helper.php:204
8807
+ msgid "Order Total Tax"
8808
+ msgstr "Steuern Gesamtsumme der Bestellung"
8809
+
8810
+ #: includes/export/class-wcj-fields-helper.php:120
8811
+ #: includes/export/class-wcj-fields-helper.php:205
8812
+ msgid "Order Payment Method"
8813
+ msgstr "Bestellungszahlungsart"
8814
+
8815
+ #: includes/export/class-wcj-fields-helper.php:133
8816
+ #: includes/export/class-wcj-fields-helper.php:218
8817
+ msgid "Shipping First Name"
8818
+ msgstr "Empängeradresse Vorname"
8819
+
8820
+ #: includes/export/class-wcj-fields-helper.php:134
8821
+ #: includes/export/class-wcj-fields-helper.php:219
8822
+ msgid "Shipping Last Name"
8823
+ msgstr "Empfängeradresse Nachname"
8824
+
8825
+ #: includes/export/class-wcj-fields-helper.php:135
8826
+ #: includes/export/class-wcj-fields-helper.php:220
8827
+ msgid "Shipping Company"
8828
+ msgstr "Empfängeradresse Unternehmen"
8829
+
8830
+ #: includes/export/class-wcj-fields-helper.php:136
8831
+ #: includes/export/class-wcj-fields-helper.php:221
8832
+ msgid "Shipping Address 1"
8833
+ msgstr "Versandadresse 1"
8834
+
8835
+ #: includes/export/class-wcj-fields-helper.php:137
8836
+ #: includes/export/class-wcj-fields-helper.php:222
8837
+ msgid "Shipping Address 2"
8838
+ msgstr "Versandadresse 2"
8839
+
8840
+ #: includes/export/class-wcj-fields-helper.php:138
8841
+ #: includes/export/class-wcj-fields-helper.php:223
8842
+ msgid "Shipping City"
8843
+ msgstr "Versandort"
8844
+
8845
+ #: includes/export/class-wcj-fields-helper.php:139
8846
+ #: includes/export/class-wcj-fields-helper.php:224
8847
+ msgid "Shipping State"
8848
+ msgstr "Versand Staat"
8849
+
8850
+ #: includes/export/class-wcj-fields-helper.php:140
8851
+ #: includes/export/class-wcj-fields-helper.php:225
8852
+ msgid "Shipping Postcode"
8853
+ msgstr "Versand PLZ"
8854
+
8855
+ #: includes/export/class-wcj-fields-helper.php:141
8856
+ #: includes/export/class-wcj-fields-helper.php:226
8857
+ msgid "Shipping Country"
8858
+ msgstr "Versand Land"
8859
+
8860
+ #: includes/export/class-wcj-fields-helper.php:147
8861
+ msgid "Item Tax Class"
8862
+ msgstr "Artikelsteuer-Klasse"
8863
+
8864
+ #: includes/export/class-wcj-fields-helper.php:152
8865
+ msgid "Item Line Subtotal Tax"
8866
+ msgstr "Artikel-Linie Zwischensumme Steuer"
8867
+
8868
+ #: includes/export/class-wcj-fields-helper.php:153
8869
+ msgid "Item Line Tax"
8870
+ msgstr "Artikellinie Steuer"
8871
+
8872
+ #: includes/export/class-wcj-fields-helper.php:154
8873
+ msgid "Item Line Subtotal Plus Tax"
8874
+ msgstr "Artikel-Linie Zwischensumme zzgl. MwSt"
8875
+
8876
+ #: includes/export/class-wcj-fields-helper.php:155
8877
+ msgid "Item Line Total Plus Tax"
8878
+ msgstr "Artikel-Linie Gesamtsumme zzgl. MwSt"
8879
+
8880
+ #: includes/export/class-wcj-fields-helper.php:200
8881
+ msgid "Order Items"
8882
+ msgstr "Auftragspositionen"
8883
+
8884
+ #: includes/export/class-wcj-fields-helper.php:281
8885
+ msgid "Product ID"
8886
+ msgstr "Produkt ID"
8887
+
8888
+ #: includes/export/class-wcj-fields-helper.php:305
8889
+ msgid "Tax Status"
8890
+ msgstr "Steuerstatus"
8891
+
8892
+ #: includes/export/class-wcj-fields-helper.php:306
8893
+ msgid "Tax Class"
8894
+ msgstr "Steuerklasse"
8895
+
8896
+ #: includes/export/class-wcj-fields-helper.php:312
8897
+ msgid "Price Including Tax"
8898
+ msgstr "Preis inkl. MwSt."
8899
+
8900
+ #: includes/export/class-wcj-fields-helper.php:313
8901
+ msgid "Price Excluding Tax"
8902
+ msgstr "Preis exkl. MwSt."
8903
+
8904
+ #: includes/functions/wcj-country-functions.php:113
8905
+ msgid "Afghanistan"
8906
+ msgstr "Afghanistan"
8907
+
8908
+ #: includes/functions/wcj-country-functions.php:115
8909
+ msgid "Albania"
8910
+ msgstr "Albanien"
8911
+
8912
+ #: includes/functions/wcj-country-functions.php:116
8913
+ msgid "Algeria"
8914
+ msgstr "Algerien"
8915
+
8916
+ #: includes/functions/wcj-country-functions.php:117
8917
+ msgid "Andorra"
8918
+ msgstr "Andorra"
8919
+
8920
+ #: includes/functions/wcj-country-functions.php:118
8921
+ msgid "Angola"
8922
+ msgstr "Angola"
8923
+
8924
+ #: includes/functions/wcj-country-functions.php:119
8925
+ msgid "Anguilla"
8926
+ msgstr "Anguilla"
8927
+
8928
+ #: includes/functions/wcj-country-functions.php:121
8929
+ msgid "Antigua and Barbuda"
8930
+ msgstr "Antigua und Barbuda"
8931
+
8932
+ #: includes/functions/wcj-country-functions.php:122
8933
+ msgid "Argentina"
8934
+ msgstr "Argentinien"
8935
+
8936
+ #: includes/functions/wcj-country-functions.php:123
8937
+ msgid "Armenia"
8938
+ msgstr "Armenien"
8939
+
8940
+ #: includes/functions/wcj-country-functions.php:124
8941
+ msgid "Aruba"
8942
+ msgstr "Aruba"
8943
+
8944
+ #: includes/functions/wcj-country-functions.php:125
8945
+ msgid "Australia"
8946
+ msgstr "Australien"
8947
+
8948
+ #: includes/functions/wcj-country-functions.php:126
8949
+ msgid "Austria"
8950
+ msgstr "Österreich"
8951
+
8952
+ #: includes/functions/wcj-country-functions.php:127
8953
+ msgid "Azerbaijan"
8954
+ msgstr "Aserbaidschan"
8955
+
8956
+ #: includes/functions/wcj-country-functions.php:128
8957
+ msgid "Bahamas"
8958
+ msgstr "Bahamas"
8959
+
8960
+ #: includes/functions/wcj-country-functions.php:129
8961
+ msgid "Bahrain"
8962
+ msgstr "Bahrain"
8963
+
8964
+ #: includes/functions/wcj-country-functions.php:130
8965
+ msgid "Bangladesh"
8966
+ msgstr "Bangladesch"
8967
+
8968
+ #: includes/functions/wcj-country-functions.php:131
8969
+ msgid "Barbados"
8970
+ msgstr "Barbados"
8971
+
8972
+ #: includes/functions/wcj-country-functions.php:132
8973
+ msgid "Belarus"
8974
+ msgstr "Weißrussland"
8975
+
8976
+ #: includes/functions/wcj-country-functions.php:133
8977
+ msgid "Belgium"
8978
+ msgstr "Belgien"
8979
+
8980
+ #: includes/functions/wcj-country-functions.php:135
8981
+ msgid "Belize"
8982
+ msgstr "Belize"
8983
+
8984
+ #: includes/functions/wcj-country-functions.php:136
8985
+ msgid "Benin"
8986
+ msgstr "Benin"
8987
+
8988
+ #: includes/functions/wcj-country-functions.php:137
8989
+ msgid "Bermuda"
8990
+ msgstr "Bermuda"
8991
+
8992
+ #: includes/functions/wcj-country-functions.php:138
8993
+ msgid "Bhutan"
8994
+ msgstr "Bhutan"
8995
+
8996
+ #: includes/functions/wcj-country-functions.php:139
8997
+ msgid "Bolivia"
8998
+ msgstr "Bolivien"
8999
+
9000
+ #: includes/functions/wcj-country-functions.php:141
9001
+ msgid "Bosnia and Herzegovina"
9002
+ msgstr "Bosnien und Herzegovina"
9003
+
9004
+ #: includes/functions/wcj-country-functions.php:142
9005
+ msgid "Botswana"
9006
+ msgstr "Botswana"
9007
+
9008
+ #: includes/functions/wcj-country-functions.php:144
9009
+ msgid "Brazil"
9010
+ msgstr "Brasilien"
9011
+
9012
+ #: includes/functions/wcj-country-functions.php:145
9013
+ msgid "British Indian Ocean Territory"
9014
+ msgstr "Britisches Territorium des Indischen Ozeans"
9015
+
9016
+ #: includes/functions/wcj-country-functions.php:146
9017
+ msgid "British Virgin Islands"
9018
+ msgstr "Britischen Jungferninseln"
9019
+
9020
+ #: includes/functions/wcj-country-functions.php:147
9021
+ msgid "Brunei"
9022
+ msgstr "Brunei"
9023
+
9024
+ #: includes/functions/wcj-country-functions.php:148
9025
+ msgid "Bulgaria"
9026
+ msgstr "Bulgarien"
9027
+
9028
+ #: includes/functions/wcj-country-functions.php:149
9029
+ msgid "Burkina Faso"
9030
+ msgstr "Burkina Faso"
9031
+
9032
+ #: includes/functions/wcj-country-functions.php:150
9033
+ msgid "Burundi"
9034
+ msgstr "Burundi"
9035
+
9036
+ #: includes/functions/wcj-country-functions.php:151
9037
+ msgid "Cambodia"
9038
+ msgstr "Kambodscha"
9039
+
9040
+ #: includes/functions/wcj-country-functions.php:152
9041
+ msgid "Cameroon"
9042
+ msgstr "Kamerun"
9043
+
9044
+ #: includes/functions/wcj-country-functions.php:153
9045
+ msgid "Canada"
9046
+ msgstr "Kanada"
9047
+
9048
+ #: includes/functions/wcj-country-functions.php:154
9049
+ msgid "Cape Verde"
9050
+ msgstr "Kap Verde"
9051
+
9052
+ #: includes/functions/wcj-country-functions.php:155
9053
+ msgid "Cayman Islands"
9054
+ msgstr "Kaimaninseln"
9055
+
9056
+ #: includes/functions/wcj-country-functions.php:156
9057
+ msgid "Central African Republic"
9058
+ msgstr "Zentralafrikanische Republik"
9059
+
9060
+ #: includes/functions/wcj-country-functions.php:157
9061
+ msgid "Chad"
9062
+ msgstr "Tschad"
9063
+
9064
+ #: includes/functions/wcj-country-functions.php:158
9065
+ msgid "Chile"
9066
+ msgstr "Chile"
9067
+
9068
+ #: includes/functions/wcj-country-functions.php:159
9069
+ msgid "China"
9070
+ msgstr "China"
9071
+
9072
+ #: includes/functions/wcj-country-functions.php:160
9073
+ msgid "Christmas Island"
9074
+ msgstr "Weihnachtsinsel"
9075
+
9076
+ #: includes/functions/wcj-country-functions.php:162
9077
+ msgid "Colombia"
9078
+ msgstr "Kolumbien"
9079
+
9080
+ #: includes/functions/wcj-country-functions.php:163
9081
+ msgid "Comoros"
9082
+ msgstr "Komoren"
9083
+
9084
+ #: includes/functions/wcj-country-functions.php:167
9085
+ msgid "Costa Rica"
9086
+ msgstr "Costa Rica"
9087
+
9088
+ #: includes/functions/wcj-country-functions.php:168
9089
+ msgid "Croatia"
9090
+ msgstr "Kroatien"
9091
+
9092
+ #: includes/functions/wcj-country-functions.php:169
9093
+ msgid "Cuba"
9094
+ msgstr "Kuba"
9095
+
9096
+ #: includes/functions/wcj-country-functions.php:171
9097
+ msgid "Cyprus"
9098
+ msgstr "Zypern"
9099
+
9100
+ #: includes/functions/wcj-country-functions.php:172
9101
+ msgid "Czech Republic"
9102
+ msgstr "Tschechien"
9103
+
9104
+ #: includes/functions/wcj-country-functions.php:173
9105
+ msgid "Denmark"
9106
+ msgstr "Dänemark"
9107
+
9108
+ #: includes/functions/wcj-country-functions.php:174
9109
+ msgid "Djibouti"
9110
+ msgstr "Dschibuti"
9111
+
9112
+ #: includes/functions/wcj-country-functions.php:175
9113
+ msgid "Dominica"
9114
+ msgstr "Dominica"
9115
+
9116
+ #: includes/functions/wcj-country-functions.php:176
9117
+ msgid "Dominican Republic"
9118
+ msgstr "Dominikanische Republik"
9119
+
9120
+ #: includes/functions/wcj-country-functions.php:177
9121
+ msgid "Ecuador"
9122
+ msgstr "Ecuador"
9123
+
9124
+ #: includes/functions/wcj-country-functions.php:178
9125
+ msgid "Egypt"
9126
+ msgstr "Ägypten"
9127
+
9128
+ #: includes/functions/wcj-country-functions.php:179
9129
+ msgid "El Salvador"
9130
+ msgstr "El Salvador"
9131
+
9132
+ #: includes/functions/wcj-country-functions.php:180
9133
+ msgid "Equatorial Guinea"
9134
+ msgstr "Equatorial Guinea"
9135
+
9136
+ #: includes/functions/wcj-country-functions.php:181
9137
+ msgid "Eritrea"
9138
+ msgstr "Eritrea"
9139
+
9140
+ #: includes/functions/wcj-country-functions.php:182
9141
+ msgid "Estonia"
9142
+ msgstr "Estland"
9143
+
9144
+ #: includes/functions/wcj-country-functions.php:183
9145
+ msgid "Ethiopia"
9146
+ msgstr "Äthiopien"
9147
+
9148
+ #: includes/functions/wcj-country-functions.php:185
9149
+ msgid "Faroe Islands"
9150
+ msgstr "Färöer"
9151
+
9152
+ #: includes/functions/wcj-country-functions.php:186
9153
+ msgid "Fiji"
9154
+ msgstr "Fidschi"
9155
+
9156
+ #: includes/functions/wcj-country-functions.php:187
9157
+ msgid "Finland"
9158
+ msgstr "Finnland"
9159
+
9160
+ #: includes/functions/wcj-country-functions.php:188
9161
+ msgid "France"
9162
+ msgstr "Frankreich"
9163
+
9164
+ #: includes/functions/wcj-country-functions.php:189
9165
+ msgid "French Guiana"
9166
+ msgstr "Französisch-Guayana"
9167
+
9168
+ #: includes/functions/wcj-country-functions.php:190
9169
+ msgid "French Polynesia"
9170
+ msgstr "Französisch-Polynesien"
9171
+
9172
+ #: includes/functions/wcj-country-functions.php:191
9173
+ msgid "French Southern Territories"
9174
+ msgstr "Französische Süd- und Antarktisgebiete"
9175
+
9176
+ #: includes/functions/wcj-country-functions.php:192
9177
+ msgid "Gabon"
9178
+ msgstr "Gabun"
9179
+
9180
+ #: includes/functions/wcj-country-functions.php:193
9181
+ msgid "Gambia"
9182
+ msgstr "Gambia"
9183
+
9184
+ #: includes/functions/wcj-country-functions.php:195
9185
+ msgid "Germany"
9186
+ msgstr "Deutschland"
9187
+
9188
+ #: includes/functions/wcj-country-functions.php:196
9189
+ msgid "Ghana"
9190
+ msgstr "Ghana"
9191
+
9192
+ #: includes/functions/wcj-country-functions.php:198
9193
+ msgid "Greece"
9194
+ msgstr "Griechenland"
9195
+
9196
+ #: includes/functions/wcj-country-functions.php:199
9197
+ msgid "Greenland"
9198
+ msgstr "Grönland"
9199
+
9200
+ #: includes/functions/wcj-country-functions.php:200
9201
+ msgid "Grenada"
9202
+ msgstr "Grenada"
9203
+
9204
+ #: includes/functions/wcj-country-functions.php:201
9205
+ msgid "Guadeloupe"
9206
+ msgstr "Guadeloupe"
9207
+
9208
+ #: includes/functions/wcj-country-functions.php:202
9209
+ msgid "Guatemala"
9210
+ msgstr "Guatemala"
9211
+
9212
+ #: includes/functions/wcj-country-functions.php:204
9213
+ msgid "Guinea"
9214
+ msgstr "Guinea"
9215
+
9216
+ #: includes/functions/wcj-country-functions.php:205
9217
+ msgid "Guinea-Bissau"
9218
+ msgstr "Guinea-Bissau"
9219
+
9220
+ #: includes/functions/wcj-country-functions.php:206
9221
+ msgid "Guyana"
9222
+ msgstr "Guyana"
9223
+
9224
+ #: includes/functions/wcj-country-functions.php:207
9225
+ msgid "Haiti"
9226
+ msgstr "Haiti"
9227
+
9228
+ #: includes/functions/wcj-country-functions.php:209
9229
+ msgid "Honduras"
9230
+ msgstr "Honduras"
9231
+
9232
+ #: includes/functions/wcj-country-functions.php:210
9233
+ msgid "Hong Kong"
9234
+ msgstr "Hong Kong"
9235
+
9236
+ #: includes/functions/wcj-country-functions.php:211
9237
+ msgid "Hungary"
9238
+ msgstr "Ungarn"
9239
+
9240
+ #: includes/functions/wcj-country-functions.php:212
9241
+ msgid "Iceland"
9242
+ msgstr "Island"
9243
+
9244
+ #: includes/functions/wcj-country-functions.php:213
9245
+ msgid "India"
9246
+ msgstr "Indien"
9247
+
9248
+ #: includes/functions/wcj-country-functions.php:214
9249
+ msgid "Indonesia"
9250
+ msgstr "Indonesien"
9251
+
9252
+ #: includes/functions/wcj-country-functions.php:215
9253
+ msgid "Iran"
9254
+ msgstr "Iran"
9255
+
9256
+ #: includes/functions/wcj-country-functions.php:216
9257
+ msgid "Iraq"
9258
+ msgstr "Irak"
9259
+
9260
+ #: includes/functions/wcj-country-functions.php:219
9261
+ msgid "Israel"
9262
+ msgstr "Israel"
9263
+
9264
+ #: includes/functions/wcj-country-functions.php:220
9265
+ msgid "Italy"
9266
+ msgstr "Italien"
9267
+
9268
+ #: includes/functions/wcj-country-functions.php:221
9269
+ msgid "Ivory Coast"
9270
+ msgstr "Elfenbeinküste"
9271
+
9272
+ #: includes/functions/wcj-country-functions.php:223
9273
+ msgid "Japan"
9274
+ msgstr "Japan"
9275
+
9276
+ #: includes/functions/wcj-country-functions.php:225
9277
+ msgid "Jordan"
9278
+ msgstr "Jordanien"
9279
+
9280
+ #: includes/functions/wcj-country-functions.php:226
9281
+ msgid "Kazakhstan"
9282
+ msgstr "Kasachstan"
9283
+
9284
+ #: includes/functions/wcj-country-functions.php:229
9285
+ msgid "Kuwait"
9286
+ msgstr "Kuwait"
9287
+
9288
+ #: includes/functions/wcj-country-functions.php:230
9289
+ msgid "Kyrgyzstan"
9290
+ msgstr "Kirgisistan"
9291
+
9292
+ #: includes/functions/wcj-country-functions.php:232
9293
+ msgid "Latvia"
9294
+ msgstr "Lettland"
9295
+
9296
+ #: includes/functions/wcj-country-functions.php:233
9297
+ msgid "Lebanon"
9298
+ msgstr "Libanon"
9299
+
9300
+ #: includes/functions/wcj-country-functions.php:235
9301
+ msgid "Liberia"
9302
+ msgstr "Liberia"
9303
+
9304
+ #: includes/functions/wcj-country-functions.php:236
9305
+ msgid "Libya"
9306
+ msgstr "Libyen"
9307
+
9308
+ #: includes/functions/wcj-country-functions.php:237
9309
+ msgid "Liechtenstein"
9310
+ msgstr "Liechtenstein"
9311
+
9312
+ #: includes/functions/wcj-country-functions.php:238
9313
+ msgid "Lithuania"
9314
+ msgstr "Litauen"
9315
+
9316
+ #: includes/functions/wcj-country-functions.php:239
9317
+ msgid "Luxembourg"
9318
+ msgstr "Luxemburg"
9319
+
9320
+ #: includes/functions/wcj-country-functions.php:241
9321
+ msgid "Macedonia"
9322
+ msgstr "Mazedonien"
9323
+
9324
+ #: includes/functions/wcj-country-functions.php:242
9325
+ msgid "Madagascar"
9326
+ msgstr "Madagaskar"
9327
+
9328
+ #: includes/functions/wcj-country-functions.php:243
9329
+ msgid "Malawi"
9330
+ msgstr "Malawi"
9331
+
9332
+ #: includes/functions/wcj-country-functions.php:244
9333
+ msgid "Malaysia"
9334
+ msgstr "Malaysia"
9335
+
9336
+ #: includes/functions/wcj-country-functions.php:245
9337
+ msgid "Maldives"
9338
+ msgstr "Malediven"
9339
+
9340
+ #: includes/functions/wcj-country-functions.php:246
9341
+ msgid "Mali"
9342
+ msgstr "Mali"
9343
+
9344
+ #: includes/functions/wcj-country-functions.php:248
9345
+ msgid "Marshall Islands"
9346
+ msgstr "Marshall-Inseln"
9347
+
9348
+ #: includes/functions/wcj-country-functions.php:249
9349
+ msgid "Martinique"
9350
+ msgstr "Martinique"
9351
+
9352
+ #: includes/functions/wcj-country-functions.php:250
9353
+ msgid "Mauritania"
9354
+ msgstr "Mauretanien"
9355
+
9356
+ #: includes/functions/wcj-country-functions.php:251
9357
+ msgid "Mauritius"
9358
+ msgstr "Mauritius"
9359
+
9360
+ #: includes/functions/wcj-country-functions.php:253
9361
+ msgid "Mexico"
9362
+ msgstr "Mexiko"
9363
+
9364
+ #: includes/functions/wcj-country-functions.php:254
9365
+ msgid "Micronesia"
9366
+ msgstr "Mikronesien"
9367
+
9368
+ #: includes/functions/wcj-country-functions.php:255
9369
+ msgid "Moldova"
9370
+ msgstr "Moldau"
9371
+
9372
+ #: includes/functions/wcj-country-functions.php:256
9373
+ msgid "Monaco"
9374
+ msgstr "Monaco"
9375
+
9376
+ #: includes/functions/wcj-country-functions.php:257
9377
+ msgid "Mongolia"
9378
+ msgstr "Mongolei"
9379
+
9380
+ #: includes/functions/wcj-country-functions.php:258
9381
+ msgid "Montenegro"
9382
+ msgstr "Montenegro"
9383
+
9384
+ #: includes/functions/wcj-country-functions.php:259
9385
+ msgid "Montserrat"
9386
+ msgstr "Montserrat"
9387
+
9388
+ #: includes/functions/wcj-country-functions.php:260
9389
+ msgid "Morocco"
9390
+ msgstr "Marokko"
9391
+
9392
+ #: includes/functions/wcj-country-functions.php:261
9393
+ msgid "Mozambique"
9394
+ msgstr "Mosambik"
9395
+
9396
+ #: includes/functions/wcj-country-functions.php:262
9397
+ msgid "Myanmar"
9398
+ msgstr "Myanmar"
9399
+
9400
+ #: includes/functions/wcj-country-functions.php:263
9401
+ msgid "Namibia"
9402
+ msgstr "Namibia"
9403
+
9404
+ #: includes/functions/wcj-country-functions.php:264
9405
+ msgid "Nauru"
9406
+ msgstr "Nauru"
9407
+
9408
+ #: includes/functions/wcj-country-functions.php:265
9409
+ msgid "Nepal"
9410
+ msgstr "Nepal"
9411
+
9412
+ #: includes/functions/wcj-country-functions.php:266
9413
+ msgid "Netherlands"
9414
+ msgstr "Niederlande"
9415
+
9416
+ #: includes/functions/wcj-country-functions.php:267
9417
+ msgid "Netherlands Antilles"
9418
+ msgstr "Niederländische Antillen"
9419
+
9420
+ #: includes/functions/wcj-country-functions.php:268
9421
+ msgid "New Caledonia"
9422
+ msgstr "Neukaledonien"
9423
+
9424
+ #: includes/functions/wcj-country-functions.php:269
9425
+ msgid "New Zealand"
9426
+ msgstr "Neuseeland"
9427
+
9428
+ #: includes/functions/wcj-country-functions.php:270
9429
+ msgid "Nicaragua"
9430
+ msgstr "Nicaragua"
9431
+
9432
+ #: includes/functions/wcj-country-functions.php:275
9433
+ msgid "North Korea"
9434
+ msgstr "Nord Korea"
9435
+
9436
+ #: includes/functions/wcj-country-functions.php:276
9437
+ msgid "Norway"
9438
+ msgstr "Norwegen"
9439
+
9440
+ #: includes/functions/wcj-country-functions.php:277
9441
+ msgid "Oman"
9442
+ msgstr "Oman"
9443
+
9444
+ #: includes/functions/wcj-country-functions.php:281
9445
+ msgid "Papua New Guinea"
9446
+ msgstr "Papua-Neuguinea"
9447
+
9448
+ #: includes/functions/wcj-country-functions.php:283
9449
+ msgid "Peru"
9450
+ msgstr "Peru"
9451
+
9452
+ #: includes/functions/wcj-country-functions.php:284
9453
+ msgid "Philippines"
9454
+ msgstr "Philippinen"
9455
+
9456
+ #: includes/functions/wcj-country-functions.php:286
9457
+ msgid "Poland"
9458
+ msgstr "Polen"
9459
+
9460
+ #: includes/functions/wcj-country-functions.php:287
9461
+ msgid "Portugal"
9462
+ msgstr "Portugal"
9463
+
9464
+ #: includes/functions/wcj-country-functions.php:288
9465
+ msgid "Qatar"
9466
+ msgstr "Katar"
9467
+
9468
+ #: includes/functions/wcj-country-functions.php:290
9469
+ msgid "Romania"
9470
+ msgstr "Rumänien"
9471
+
9472
+ #: includes/functions/wcj-country-functions.php:291
9473
+ msgid "Russia"
9474
+ msgstr "Russland"
9475
+
9476
+ #: includes/functions/wcj-country-functions.php:292
9477
+ msgid "Rwanda"
9478
+ msgstr "Ruanda"
9479
+
9480
+ #: includes/functions/wcj-country-functions.php:294
9481
+ msgid "Saint Helena"
9482
+ msgstr "St. Helena"
9483
+
9484
+ #: includes/functions/wcj-country-functions.php:300
9485
+ msgid "Saint Vincent and the Grenadines"
9486
+ msgstr "Saint Vincent und die Grenadinen"
9487
+
9488
+ #: includes/functions/wcj-country-functions.php:303
9489
+ msgid "Saudi Arabia"
9490
+ msgstr "Saudi-Arabien"
9491
+
9492
+ #: includes/functions/wcj-country-functions.php:305
9493
+ msgid "Serbia"
9494
+ msgstr "Serbien"
9495
+
9496
+ #: includes/functions/wcj-country-functions.php:306
9497
+ msgid "Seychelles"
9498
+ msgstr "Seychellen"
9499
+
9500
+ #: includes/functions/wcj-country-functions.php:308
9501
+ msgid "Singapore"
9502
+ msgstr "Singapur"
9503
+
9504
+ #: includes/functions/wcj-country-functions.php:309
9505
+ msgid "Slovakia"
9506
+ msgstr "Slowakei"
9507
+
9508
+ #: includes/functions/wcj-country-functions.php:310
9509
+ msgid "Slovenia"
9510
+ msgstr "Slowenien"
9511
+
9512
+ #: includes/functions/wcj-country-functions.php:311
9513
+ msgid "Solomon Islands"
9514
+ msgstr "Salomonen"
9515
+
9516
+ #: includes/functions/wcj-country-functions.php:313
9517
+ msgid "South Africa"
9518
+ msgstr "Südafrika"
9519
+
9520
+ #: includes/functions/wcj-country-functions.php:315
9521
+ msgid "South Korea"
9522
+ msgstr "Süd Korea"
9523
+
9524
+ #: includes/functions/wcj-country-functions.php:317
9525
+ msgid "Spain"
9526
+ msgstr "Spanien"
9527
+
9528
+ #: includes/functions/wcj-country-functions.php:323
9529
+ msgid "Sweden"
9530
+ msgstr "Schweden"
9531
+
9532
+ #: includes/functions/wcj-country-functions.php:324
9533
+ msgid "Switzerland"
9534
+ msgstr "Schweiz"
9535
+
9536
+ #: includes/functions/wcj-country-functions.php:325
9537
+ msgid "Syria"
9538
+ msgstr "Syrien"
9539
+
9540
+ #: includes/functions/wcj-country-functions.php:326
9541
+ msgid "Taiwan"
9542
+ msgstr "Taiwan"
9543
+
9544
+ #: includes/functions/wcj-country-functions.php:328
9545
+ msgid "Tanzania"
9546
+ msgstr "Tansania"
9547
+
9548
+ #: includes/functions/wcj-country-functions.php:329
9549
+ msgid "Thailand"
9550
+ msgstr "Thailand"
9551
+
9552
+ #: includes/functions/wcj-country-functions.php:334
9553
+ msgid "Trinidad and Tobago"
9554
+ msgstr "Trinidad und Tobago"
9555
+
9556
+ #: includes/functions/wcj-country-functions.php:335
9557
+ msgid "Tunisia"
9558
+ msgstr "Tunesien"
9559
+
9560
+ #: includes/functions/wcj-country-functions.php:336
9561
+ msgid "Turkey"
9562
+ msgstr "Türkei"
9563
+
9564
+ #: includes/functions/wcj-country-functions.php:338
9565
+ msgid "Turks and Caicos Islands"
9566
+ msgstr "Turks- und Caicosinseln"
9567
+
9568
+ #: includes/functions/wcj-country-functions.php:341
9569
+ msgid "Ukraine"
9570
+ msgstr "Ukraine"
9571
+
9572
+ #: includes/functions/wcj-country-functions.php:342
9573
+ msgid "United Arab Emirates"
9574
+ msgstr "Vereinigte Arabische Emirate"
9575
+
9576
+ #: includes/functions/wcj-country-functions.php:345
9577
+ msgid "Uruguay"
9578
+ msgstr "Uruguay"
9579
+
9580
+ #: includes/functions/wcj-country-functions.php:346
9581
+ msgid "Uzbekistan"
9582
+ msgstr "Usbekistan"
9583
+
9584
+ #: includes/functions/wcj-country-functions.php:348
9585
+ msgid "Vatican"
9586
+ msgstr "Vatikan"
9587
+
9588
+ #: includes/functions/wcj-country-functions.php:349
9589
+ msgid "Venezuela"
9590
+ msgstr "Venezuela"
9591
+
9592
+ #: includes/functions/wcj-country-functions.php:351
9593
+ msgid "Wallis and Futuna"
9594
+ msgstr "Wallis und Futuna"
9595
+
9596
+ #: includes/functions/wcj-country-functions.php:353
9597
+ msgid "Western Samoa"
9598
+ msgstr "Westliches Samoa"
9599
+
9600
+ #: includes/functions/wcj-country-functions.php:354
9601
+ msgid "Yemen"
9602
+ msgstr "Jemen"
9603
+
9604
+ #: includes/functions/wcj-country-functions.php:355
9605
+ msgid "Zambia"
9606
+ msgstr "Sambia"
9607
+
9608
+ #: includes/functions/wcj-country-functions.php:356
9609
+ msgid "Zimbabwe"
9610
+ msgstr "Simbabwe"
9611
+
9612
+ #: includes/functions/wcj-functions.php:609
9613
+ msgid "Before cart"
9614
+ msgstr "Vor Warenkorb"
9615
+
9616
+ #: includes/functions/wcj-functions.php:610
9617
+ msgid "Before cart table"
9618
+ msgstr "Vor Warenkorbtabelle"
9619
+
9620
+ #: includes/functions/wcj-functions.php:611
9621
+ msgid "Before cart contents"
9622
+ msgstr "Vor Warenkorbinhalten"
9623
+
9624
+ #: includes/functions/wcj-functions.php:612
9625
+ msgid "Cart contents"
9626
+ msgstr "Warenkorbinhalte"
9627
+
9628
+ #: includes/functions/wcj-functions.php:613
9629
+ msgid "Cart coupon"
9630
+ msgstr "Warenkorb-Gutschein"
9631
+
9632
+ #: includes/functions/wcj-functions.php:614
9633
+ msgid "Cart actions"
9634
+ msgstr "Warenkorb-Aktionen"
9635
+
9636
+ #: includes/functions/wcj-functions.php:615
9637
+ msgid "After cart contents"
9638
+ msgstr "Nach Warenkorbinhalten"
9639
+
9640
+ #: includes/functions/wcj-functions.php:616
9641
+ msgid "After cart table"
9642
+ msgstr "Nach Warenkorbtabelle"
9643
+
9644
+ #: includes/functions/wcj-functions.php:617
9645
+ msgid "Cart collaterals"
9646
+ msgstr "Warenkorb-Sicherheiten"
9647
+
9648
+ #: includes/functions/wcj-functions.php:618
9649
+ msgid "After cart"
9650
+ msgstr "Nach Warenkorb"
9651
+
9652
+ #: includes/functions/wcj-functions.php:620
9653
+ msgid "Before cart totals"
9654
+ msgstr "Vor Warenkorb-Total"
9655
+
9656
+ #: includes/functions/wcj-functions.php:621
9657
+ msgid "Cart totals: Before shipping"
9658
+ msgstr "Warenkorb-Total: Vor Versand"
9659
+
9660
+ #: includes/functions/wcj-functions.php:622
9661
+ msgid "Cart totals: After shipping"
9662
+ msgstr "Warenkorb-Total: Nach Versand"
9663
+
9664
+ #: includes/functions/wcj-functions.php:623
9665
+ msgid "Cart totals: Before order total"
9666
+ msgstr "Warenkorb-Total: Vor Bestell-Total"
9667
+
9668
+ #: includes/functions/wcj-functions.php:624
9669
+ msgid "Cart totals: After order total"
9670
+ msgstr "Warenkorb-Total: Nach Bestell-Total"
9671
+
9672
+ #: includes/functions/wcj-functions.php:625
9673
+ msgid "Proceed to checkout"
9674
+ msgstr "Fortfahren zur Kasse"
9675
+
9676
+ #: includes/functions/wcj-functions.php:626
9677
+ msgid "After cart totals"
9678
+ msgstr "Nach Warenkorb-Total"
9679
+
9680
+ #: includes/functions/wcj-functions.php:631
9681
+ msgid "If cart is empty"
9682
+ msgstr "Wenn Warenkorb leer ist"
9683
+
9684
+ #: includes/functions/wcj-functions.php:1159
9685
+ msgctxt "Order status"
9686
+ msgid "Pending Payment"
9687
+ msgstr "Ausstehende Zahlung"
9688
+
9689
+ #: includes/functions/wcj-functions.php:1161
9690
+ msgctxt "Order status"
9691
+ msgid "On Hold"
9692
+ msgstr "In Wartestellung"
9693
+
9694
+ #: includes/functions/wcj-invoicing-functions.php:36
9695
+ msgid "Packing Slips"
9696
+ msgstr "Packzettel"
9697
+
9698
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:85
9699
+ msgid "Instructions"
9700
+ msgstr "Anleitungen"
9701
+
9702
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:126
9703
+ msgid "Datepicker/Weekpicker: Date format"
9704
+ msgstr "Datums-/Wochenwählers: Datumsformat"
9705
+
9706
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:134
9707
+ msgid "Datepicker/Weekpicker: Min date"
9708
+ msgstr "Datums-/Wochenwählers: Min Datum"
9709
+
9710
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:142
9711
+ msgid "Datepicker/Weekpicker: Max date"
9712
+ msgstr "Datums-/Wochenwählers: Max Datum"
9713
+
9714
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:150
9715
+ msgid "Datepicker/Weekpicker: Change year"
9716
+ msgstr "Datums-/Wochenwählers: Jahr ändern"
9717
+
9718
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:158
9719
+ msgid "Datepicker/Weekpicker: Year range"
9720
+ msgstr "Datums-/Wochenwählers: Jahresumfang"
9721
+
9722
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:167
9723
+ msgid "Datepicker/Weekpicker: First week day"
9724
+ msgstr "Datums-/Wochenwählers: Erster Tag der Woche"
9725
+
9726
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:184
9727
+ msgid "Timepicker: Time format"
9728
+ msgstr "Zeitwähler: Zeitformat"
9729
+
9730
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:192
9731
+ msgid "Timepicker: Interval"
9732
+ msgstr "Zeitwähler: Intervall"
9733
+
9734
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:199
9735
+ msgid "If select/radio is selected, set options here. One option per line"
9736
+ msgstr ""
9737
+ "Wenn Auswählen/Radio ausgewählt ist, stelle hier Optionen ein. Eine Option "
9738
+ "pro Zeile"
9739
+
9740
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:200
9741
+ msgid "Select/Radio: Options"
9742
+ msgstr "Auswählen/Radio: Optionen"
9743
+
9744
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:228
9745
+ msgid "Message on required"
9746
+ msgstr "Nachricht bei erforderlich"
9747
+
9748
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:468
9749
+ msgid "Wrong file type!"
9750
+ msgstr "Falscher Dateityp!"
9751
+
9752
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:477
9753
+ msgid "File is too big!"
9754
+ msgstr "Datei ist zu groß!"
9755
+
9756
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:619
9757
+ msgid "Select a country&hellip;"
9758
+ msgstr "Wähle ein Land&hellip;"
9759
+
9760
+ #: includes/input-fields/class-wcj-product-input-fields-per-product.php:111
9761
+ msgid "Booster: Product Input Fields"
9762
+ msgstr "Booster: Produkt-Eingabefelder"
9763
+
9764
+ #: includes/input-fields/class-wcj-product-input-fields-per-product.php:147
9765
+ msgid "Total number of "
9766
+ msgstr "Gesamtzahl an "
9767
+
9768
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:56
9769
+ msgid "Invoices successfully renumerated!"
9770
+ msgstr "Rechnungen erfolgreich renumeriert!"
9771
+
9772
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:58
9773
+ msgid "Please select at least one order status."
9774
+ msgstr "Bitte wähle mindestens einen Bestellzustand aus."
9775
+
9776
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:63
9777
+ msgid "Booster - Renumerate Invoices"
9778
+ msgstr "Booster - Rechnungen renumerieren"
9779
+
9780
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:64
9781
+ msgid ""
9782
+ "The tool renumerates invoices from choosen date. Invoice number format is "
9783
+ "set in WooCommerce > Settings > Booster > PDF Invoicing & Packing Slips > "
9784
+ "Numbering."
9785
+ msgstr ""
9786
+ "Das Werkzeug nummeriert alle Rechnungen neu von gewähltem Datum an. Das "
9787
+ "Rechnungsnummernformat wird eingestellt in WooCommerce > Einstellungen > "
9788
+ "Booster > PDF Rechnungen & Packzettel > \n"
9789
+ "Nummerierung."
9790
+
9791
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:73
9792
+ msgid "Date to start renumerating. Leave blank to renumerate all invoices."
9793
+ msgstr ""
9794
+ "Datum, ab dem die Renumerieren beginnen soll. Leer lassen, um alle "
9795
+ "Rechnungen neu zu berechnen."
9796
+
9797
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:78
9798
+ msgid "End Date"
9799
+ msgstr "Enddatum"
9800
+
9801
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:80
9802
+ msgid "Date to end renumerating. Leave blank to renumerate all invoices."
9803
+ msgstr ""
9804
+ "Datum an dem Renumerierung enden soll. Leer lassen, um alle Rechnungen neu "
9805
+ "zu berechnen."
9806
+
9807
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:85
9808
+ msgid "Start Number"
9809
+ msgstr "Startnummer"
9810
+
9811
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:87
9812
+ msgid ""
9813
+ "Counter to start renumerating. Leave 0 to continue from current counter."
9814
+ msgstr ""
9815
+ "Zähler für Start der Renumerierung. Lasse 0, um vom aktuellen Zähler "
9816
+ "fortzufahren."
9817
+
9818
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:92
9819
+ msgid "Delete All"
9820
+ msgstr "Alles löschen"
9821
+
9822
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:94
9823
+ msgid "Clear all invoices before renumerating."
9824
+ msgstr "Lösche alle Rechnungen vor der Renumerierung."
9825
+
9826
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:105
9827
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:97
9828
+ msgid "Document Type"
9829
+ msgstr "Dokumentart"
9830
+
9831
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:115
9832
+ msgid "Order Statuses"
9833
+ msgstr "Bestellzustände"
9834
+
9835
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:118
9836
+ msgid "Renumerate invoices"
9837
+ msgstr "Rechnungen renumerieren"
9838
+
9839
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:127
9840
+ msgid "Results"
9841
+ msgstr "Ergebnisse"
9842
+
9843
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:206
9844
+ msgid "Total documents created: %d"
9845
+ msgstr "Gesamtzahl der erstellten Dokumente: %d"
9846
+
9847
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:207
9848
+ msgid "Total documents deleted: %d"
9849
+ msgstr "Gesamtzahl der gelöschten Dokumente: %d"
9850
+
9851
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:38
9852
+ msgid ""
9853
+ "This option is disabled in WooCommerce > Settings > Booster > Emails & Misc. "
9854
+ "> General > Advanced Options > Disable Saving PDFs in PHP directory for "
9855
+ "temporary files"
9856
+ msgstr ""
9857
+ "Diese Option ist deaktiviert in WooCommerce > Einstellungen > Booster > "
9858
+ "Emails & Sonstiges > Allgemein > Erweiterte Optionen > Deaktivieren von "
9859
+ "Speichern von PDFs im PHP-Verzeichnis temporärer Dateien"
9860
+
9861
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:43
9862
+ msgid "Sorry, but something went wrong..."
9863
+ msgstr "Entschuldigung, aber etwas schief gelaufen..."
9864
+
9865
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:47
9866
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:68
9867
+ msgid "Please fill year and month values."
9868
+ msgstr "Bitte fülle die Jahres- und Monatswerte aus."
9869
+
9870
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:87
9871
+ msgid "Year"
9872
+ msgstr ""
9873
+ "Erlaubt tags: <code> [blog_name] </ code>, <code> [Monat] </ code>, <code> "
9874
+ "[Tag] </ code>, <code> [Jahr] </ code>, <code> [Stunde] </ code>, <code> "
9875
+ "[Minute] </ code>, <code> [zweite] </ code> und <code> [timestamp] </ code>"
9876
+
9877
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:92
9878
+ msgid "Month"
9879
+ msgstr "Monat"
9880
+
9881
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:103
9882
+ msgid "Display monthly documents table"
9883
+ msgstr "Anzeigen Tabelle der monatlichen Dokumente"
9884
+
9885
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:108
9886
+ msgid "Download all monthly documents PDFs in single ZIP file"
9887
+ msgstr "Download aller monatlichen Dokumente PDFs in einer einzigen ZIP-Datei"
9888
+
9889
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:252
9890
+ msgid "Document Nr."
9891
+ msgstr "Dokumentnr."
9892
+
9893
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:253
9894
+ msgid "Document Date"
9895
+ msgstr "Dokumentdatum"
9896
+
9897
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:255
9898
+ msgid "Customer Country"
9899
+ msgstr "Kunden Land"
9900
+
9901
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:256
9902
+ msgid "Customer VAT ID"
9903
+ msgstr "Kunde Umsatzsteuer-ID"
9904
+
9905
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:257
9906
+ msgid "Tax %"
9907
+ msgstr "Steuern %"
9908
+
9909
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:258
9910
+ msgid "Order Total Tax Excl."
9911
+ msgstr "Gesamtsumme der Bestellungen exkl. Steuern"
9912
+
9913
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:259
9914
+ msgid "Order Taxes"
9915
+ msgstr "Steuern der Bestellungen"
9916
+
9917
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:262
9918
+ msgid "Refunds"
9919
+ msgstr "Rückerstattungen"
9920
+
9921
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:26
9922
+ msgid "Display & Misc."
9923
+ msgstr "Anzeigen & Sonstiges"
9924
+
9925
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:142
9926
+ msgid "View"
9927
+ msgstr "Ansehen"
9928
+
9929
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:161
9930
+ msgid "Create"
9931
+ msgstr "Erstellen"
9932
+
9933
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:293
9934
+ msgid "Admin's \"Orders\" Page"
9935
+ msgstr "\"Bestellungen\"-Seite für Administrator "
9936
+
9937
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:294
9938
+ msgid "Add Column"
9939
+ msgstr "Spalte hinzufügen"
9940
+
9941
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:302
9942
+ msgid "Column Title"
9943
+ msgstr "Spalten-Titel"
9944
+
9945
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:327
9946
+ msgid "Add View Button"
9947
+ msgstr "Ansehen-Button hinzufügen"
9948
+
9949
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:334
9950
+ msgid "Add Create Button"
9951
+ msgstr "Erstellen-Button hinzufügen"
9952
+
9953
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:341
9954
+ msgid "Add Delete Button"
9955
+ msgstr "Lösch-Button hinzufügen"
9956
+
9957
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:348
9958
+ msgid "Create Button Requires Confirmation"
9959
+ msgstr "Erstellen-Button erfordert Bestätigung"
9960
+
9961
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:355
9962
+ msgid "Delete Button Requires Confirmation"
9963
+ msgstr "Lösch-Button erfordert Bestätigung"
9964
+
9965
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:362
9966
+ msgid "Customer's \"My Account\" Page"
9967
+ msgstr "\"Mein Konto\" des Kunden-Seite"
9968
+
9969
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:363
9970
+ msgid "Add link"
9971
+ msgstr "Link hinzufügen"
9972
+
9973
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:371
9974
+ msgid "Link Text"
9975
+ msgstr "Link Text"
9976
+
9977
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:378
9978
+ msgid "Enable \"Save as\""
9979
+ msgstr "Aktivieren von \"Speichern unter\" "
9980
+
9981
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:380
9982
+ msgid "Enable \"save as\" pdf instead of view pdf in browser"
9983
+ msgstr ""
9984
+ "Aktivieren von PDF-\"Speichern unter\" anstelle von Ansehen des PDF im "
9985
+ "Browser"
9986
+
9987
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:387
9988
+ msgid "PDF File Name"
9989
+ msgstr "PDF-Dateiname"
9990
+
9991
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:26
9992
+ msgid "Email Options"
9993
+ msgstr "Emailoptionen"
9994
+
9995
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:87
9996
+ msgid "Payment gateways to include"
9997
+ msgstr "Einzuschließende Zahlungs-Gateways"
9998
+
9999
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:94
10000
+ msgid "Select some gateways. Leave blank to include all."
10001
+ msgstr "Wähle einige Gateways aus. Leer lassen, um alle einzuschließen."
10002
+
10003
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:119
10004
+ msgid "Admin - New Order"
10005
+ msgstr "Administrator - Neue Bestellung"
10006
+
10007
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:120
10008
+ msgid "Admin - Cancelled Order"
10009
+ msgstr "Administrator - Abgebrochener Bestellung"
10010
+
10011
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:122
10012
+ msgid "Customer - Processing Order"
10013
+ msgstr "Kunde - zu verarbeitende Bestellungen"
10014
+
10015
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:124
10016
+ msgid "Customer - Completed Order"
10017
+ msgstr "Kunde - Abgeschlossene Bestellungen"
10018
+
10019
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:125
10020
+ msgid "Customer - Invoice"
10021
+ msgstr "Kunde - Rechnung"
10022
+
10023
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:126
10024
+ msgid "Customer - Refunded Order"
10025
+ msgstr "Kunde - zurückerstattete Bestellung"
10026
+
10027
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:137
10028
+ msgid "Attach PDF to emails"
10029
+ msgstr "Anhängen von PDF an Emails"
10030
+
10031
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:144
10032
+ msgid "Select some emails"
10033
+ msgstr "Wähle einige Emails aus"
10034
+
10035
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:23
10036
+ msgid "Footer"
10037
+ msgstr "Fußzeile"
10038
+
10039
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:44
10040
+ msgid "Enable Footer"
10041
+ msgstr "Fußzeile aktivieren"
10042
+
10043
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:50
10044
+ msgid "Footer Text"
10045
+ msgstr "Text im Footer-Bereich"
10046
+
10047
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:57
10048
+ msgid ""
10049
+ "You can use HTML here, as well as any WordPress shortcodes. There is two "
10050
+ "more predefined values you can use: %page_number% and %total_pages%."
10051
+ msgstr ""
10052
+ "Du kannst hier HTML und auch alle WordPress-Shortcodes verwenden. Es gibt "
10053
+ "zwei weitere vordefinierte Werte, die Du verwenden kannst: %page_number% und "
10054
+ "%total_pages%."
10055
+
10056
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:61
10057
+ msgid "Footer Text Color"
10058
+ msgstr "Fußzeilen-Textfarbe"
10059
+
10060
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:68
10061
+ msgid "Footer Line Color"
10062
+ msgstr "Fußzeilenfarbe"
10063
+
10064
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:75
10065
+ msgid "Footer Margin"
10066
+ msgstr "Fußzeilenrand"
10067
+
10068
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:25
10069
+ msgid "Header"
10070
+ msgstr "Kopfzeile"
10071
+
10072
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:46
10073
+ msgid "Enable Header"
10074
+ msgstr "Kopfzeilen aktivieren"
10075
+
10076
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:52
10077
+ msgid "Header Image"
10078
+ msgstr "Kopfzeilenbild"
10079
+
10080
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:57
10081
+ msgid ""
10082
+ "Enter a URL to an image you want to show in the invoice's header. Upload "
10083
+ "your image using the <a href=\"/wp-admin/media-new.php\">media uploader</a>."
10084
+ msgstr ""
10085
+ "Gib eine URL zu einem Bild ein, das Du im Kopf der Rechnung anzeigen "
10086
+ "möchtest. Lade Dein Bild mit dem <a href=\"/wp-admin/media-new.php\">"
10087
+ "Medienuploader</a> hoch."
10088
+
10089
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:61
10090
+ msgid "Header Image Width in mm"
10091
+ msgstr "Kopfzeilen-Bildbreite in mm"
10092
+
10093
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:67
10094
+ msgid "Header Title"
10095
+ msgstr "Kopfzeilen-Titel"
10096
+
10097
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:73
10098
+ msgid "Header Text"
10099
+ msgstr "Kopfzeilen-Text"
10100
+
10101
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:75
10102
+ msgid "Company Name"
10103
+ msgstr "Firmenname:"
10104
+
10105
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:79
10106
+ msgid "Header Text Color"
10107
+ msgstr "Kopfzeilen-Textfarbe"
10108
+
10109
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:86
10110
+ msgid "Header Line Color"
10111
+ msgstr "Kopfzeilenfarbe"
10112
+
10113
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:93
10114
+ msgid "Header Margin"
10115
+ msgstr "Kopfzeilenrand"
10116
+
10117
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:107
10118
+ msgid "PDF Invoicing Header General Options"
10119
+ msgstr "Allgemeine Kopf-Optionen der PDF-Rechnung"
10120
+
10121
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:112
10122
+ msgid "Default Images Directory"
10123
+ msgstr "Voreingestelltes Verzeichnis für Bilder"
10124
+
10125
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:113
10126
+ msgid "Default images directory in TCPDF library (K_PATH_IMAGES)."
10127
+ msgstr ""
10128
+ "Voreingestelltes Verzeichnis für Bilder in TCPDF-Bibliothek (K_PATH_IMAGES)."
10129
+
10130
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:114
10131
+ msgid "Try changing this if you have issues displaying image in header."
10132
+ msgstr ""
10133
+ "Versuche dies zu ändern, wenn Probleme mit der Darstellung eines Bildes in "
10134
+ "der Kopfzeile bestehen."
10135
+
10136
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:119
10137
+ msgid "Empty"
10138
+ msgstr "Leer"
10139
+
10140
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:120
10141
+ msgid "TCPDF Default"
10142
+ msgstr "TCPDF-Voreinstellung"
10143
+
10144
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:121
10145
+ msgid "ABSPATH"
10146
+ msgstr "ABSPATH"
10147
+
10148
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:122
10149
+ msgid "DOCUMENT_ROOT"
10150
+ msgstr "DOCUMENT_ROOT"
10151
+
10152
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-numbering.php:25
10153
+ msgid "Numbering"
10154
+ msgstr "Nummerierung"
10155
+
10156
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-numbering.php:51
10157
+ msgid "Counter"
10158
+ msgstr "Zähler"
10159
+
10160
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-numbering.php:57
10161
+ msgid "Counter Width"
10162
+ msgstr "Zählerbreite"
10163
+
10164
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:25
10165
+ msgid "Page Settings"
10166
+ msgstr "Seiteneinstellungen"
10167
+
10168
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:407
10169
+ msgid "Page Orientation"
10170
+ msgstr "Seitenorientierung"
10171
+
10172
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:412
10173
+ msgid "Portrait"
10174
+ msgstr "Portrait"
10175
+
10176
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:413
10177
+ msgid "Landscape"
10178
+ msgstr "Querformat"
10179
+
10180
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:417
10181
+ msgid "Page Format"
10182
+ msgstr "Seitenformat"
10183
+
10184
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:424
10185
+ msgid "Margin Left"
10186
+ msgstr "Rand links"
10187
+
10188
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:430
10189
+ msgid "Margin Right"
10190
+ msgstr "Rand rechts"
10191
+
10192
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:436
10193
+ msgid "Margin Top"
10194
+ msgstr "Rand oben"
10195
+
10196
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:442
10197
+ msgid "Margin Bottom"
10198
+ msgstr "Rand unten"
10199
+
10200
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-styling.php:25
10201
+ msgid "Styling"
10202
+ msgstr "Gestaltung"
10203
+
10204
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-styling.php:53
10205
+ msgid "CSS"
10206
+ msgstr "CSS"
10207
+
10208
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-styling.php:61
10209
+ msgid "Font Family"
10210
+ msgstr "Schriftenfamilie"
10211
+
10212
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-styling.php:80
10213
+ msgid "Font Size"
10214
+ msgstr "Schriftgröße"
10215
+
10216
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-styling.php:87
10217
+ msgid "Make Font Shadowed"
10218
+ msgstr "Schrift soll Schatten werfen"
10219
+
10220
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-templates.php:25
10221
+ msgid "Templates"
10222
+ msgstr "Vorlagen"
10223
+
10224
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-templates.php:53
10225
+ msgid "HTML Template"
10226
+ msgstr "HTML-Vorlage"
10227
+
10228
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-templates.php:68
10229
+ msgid "Available Shortcodes"
10230
+ msgstr "Verfügbare Shortcodes"
10231
+
10232
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-templates.php:71
10233
+ msgid "For the list of available shortcodes, please visit %s."
10234
+ msgstr "Eine Liste der verfügbaren Shortcodes findest Du unter %s."
10235
+
10236
+ #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:77
10237
+ msgid "Create All Country Groups Failed."
10238
+ msgstr "Erstellen aller Ländergruppen fehlgeschlagen."
10239
+
10240
+ #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:89
10241
+ msgid "Create All Country Groups Failed. Wrong parameter."
10242
+ msgstr "Erstellen aller Ländergruppen fehlgeschlagen. Falscher Parameter"
10243
+
10244
+ #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:95
10245
+ msgid ""
10246
+ "All existing country groups will be deleted and %s new groups will be "
10247
+ "created. Are you sure?"
10248
+ msgstr ""
10249
+ "Alle bestehenden Ländergruppen werden gelöscht und %s neue Gruppen werden "
10250
+ "erstellt. Bist Du sicher?"
10251
+
10252
+ #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:96
10253
+ msgid "Confirm"
10254
+ msgstr "Bestätigen"
10255
+
10256
+ #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:124
10257
+ msgid "Country Groups Generated."
10258
+ msgstr "Ländergruppen generiert."
10259
+
10260
+ #: includes/price-by-country/class-wcj-price-by-country-local.php:250
10261
+ msgid "Country Group Nr."
10262
+ msgstr "Ländergruppen Nr."
10263
+
10264
+ #: includes/reports/class-wcj-currency-reports.php:40
10265
+ msgid "Reports currency:"
10266
+ msgstr "Währung für Berichte:"
10267
+
10268
+ #: includes/reports/class-wcj-currency-reports.php:42
10269
+ #: includes/reports/class-wcj-currency-reports.php:86
10270
+ msgid "Show reports only in"
10271
+ msgstr "Zeige Berichte nur in"
10272
+
10273
+ #: includes/reports/wcj-class-reports-customers.php:41
10274
+ msgid "No customers found."
10275
+ msgstr "Keine Kunden gefunden."
10276
+
10277
+ #: includes/reports/wcj-class-reports-customers.php:91
10278
+ msgid "Customer Name"
10279
+ msgstr "Kundenname"
10280
+
10281
+ #: includes/reports/wcj-class-reports-customers.php:93
10282
+ msgid "Total Spent"
10283
+ msgstr "Insgesamt ausgegeben"
10284
+
10285
+ #: includes/reports/wcj-class-reports-customers.php:133
10286
+ msgid "Total customers"
10287
+ msgstr "Kunden insgesamt"
10288
+
10289
+ #: includes/reports/wcj-class-reports-customers.php:137
10290
+ msgid "Country Code"
10291
+ msgstr "Landesvorwahl"
10292
+
10293
+ #: includes/reports/wcj-class-reports-customers.php:138
10294
+ msgid "Customers Count"
10295
+ msgstr "Kundenzählung"
10296
+
10297
+ #: includes/reports/wcj-class-reports-customers.php:139
10298
+ msgid "Percent of total"
10299
+ msgstr "Prozent der Gesamtzahl"
10300
+
10301
+ #: includes/reports/wcj-class-reports-customers.php:161
10302
+ msgid "Report for:"
10303
+ msgstr "Bericht für:"
10304
+
10305
+ #: includes/reports/wcj-class-reports-monthly-sales.php:39
10306
+ msgid "Currency rates deleted."
10307
+ msgstr "Wechselkurse gelöscht."
10308
+
10309
+ #: includes/reports/wcj-class-reports-monthly-sales.php:137
10310
+ msgid "Days"
10311
+ msgstr "Tage"
10312
+
10313
+ #: includes/reports/wcj-class-reports-monthly-sales.php:138
10314
+ msgid "Total Orders"
10315
+ msgstr "Gesamtbestellungen"
10316
+
10317
+ #: includes/reports/wcj-class-reports-monthly-sales.php:139
10318
+ msgid "Orders Average / Day"
10319
+ msgstr "Durschnittsbestellungen / Tag"
10320
+
10321
+ #: includes/reports/wcj-class-reports-monthly-sales.php:140
10322
+ #: includes/reports/wcj-class-reports-sales.php:174
10323
+ msgid "Total Sum"
10324
+ msgstr "Gesamtsumme"
10325
+
10326
+ #: includes/reports/wcj-class-reports-monthly-sales.php:141
10327
+ msgid "Total Sum (excl. TAX)"
10328
+ msgstr "Gesamtsumme (exkl. Steuern)"
10329
+
10330
+ #: includes/reports/wcj-class-reports-monthly-sales.php:142
10331
+ msgid "Average / Order (excl. TAX)"
10332
+ msgstr "Durchschnitt/Bestellung (exkl. Steuern)"
10333
+
10334
+ #: includes/reports/wcj-class-reports-monthly-sales.php:143
10335
+ msgid "Average / Day (excl. TAX)"
10336
+ msgstr "Durchschnitt/Tag (exkl. Steuern)"
10337
+
10338
+ #: includes/reports/wcj-class-reports-monthly-sales.php:144
10339
+ msgid "Currency Rates"
10340
+ msgstr "Wechselkurse"
10341
+
10342
+ #: includes/reports/wcj-class-reports-monthly-sales.php:219
10343
+ msgid "Error getting currency rate for %s"
10344
+ msgstr "Fehler beim Abrufen der Wechselkurses für %s"
10345
+
10346
+ #: includes/reports/wcj-class-reports-monthly-sales.php:277
10347
+ msgid "Totals"
10348
+ msgstr "Summen"
10349
+
10350
+ #: includes/reports/wcj-class-reports-monthly-sales.php:312
10351
+ msgid "Report currency"
10352
+ msgstr "Währung des Berichts"
10353
+
10354
+ #: includes/reports/wcj-class-reports-monthly-sales.php:326
10355
+ msgid "Report generated in: %s s"
10356
+ msgstr "Bericht generiert in: %s s"
10357
+
10358
+ #: includes/reports/wcj-class-reports-monthly-sales.php:328
10359
+ msgid "Reset Currency Rates"
10360
+ msgstr "Rücksetzen der Wechselkurse"
10361
+
10362
+ #: includes/reports/wcj-class-reports-sales.php:232
10363
+ msgid "No sales data for current period."
10364
+ msgstr "Keine Verkaufsdaten für den aktuellen Zeitraum."
10365
+
10366
+ #: includes/reports/wcj-class-reports-stock.php:30
10367
+ msgid "All Products on Stock"
10368
+ msgstr "Alle Produkte vorrätig"
10369
+
10370
+ #: includes/reports/wcj-class-reports-stock.php:31
10371
+ msgid "Report shows all products that are on stock and some sales info."
10372
+ msgstr ""
10373
+ "Bericht zeigt alle Produkte, die auf Lager sind und einige "
10374
+ "Verkäufsinformationen."
10375
+
10376
+ #: includes/reports/wcj-class-reports-stock.php:35
10377
+ msgid "Understocked"
10378
+ msgstr "Untervorrat"
10379
+
10380
+ #: includes/reports/wcj-class-reports-stock.php:36
10381
+ msgid ""
10382
+ "Report shows all products that are low in stock calculated on product's "
10383
+ "sales data."
10384
+ msgstr ""
10385
+ "Der Bericht zeigt alle Produkte, die einen niedrigen Lagerbestand aufweisen, "
10386
+ "basierend auf den Verkaufsdaten."
10387
+
10388
+ #: includes/reports/wcj-class-reports-stock.php:38
10389
+ msgid ""
10390
+ "Threshold for minimum stock is equal to half of the sales in selected days "
10391
+ "range."
10392
+ msgstr ""
10393
+ "Schwelle für Mindestbestand ist gleich der Hälfte der Verkäufe im "
10394
+ "ausgewählten Tagesumfang."
10395
+
10396
+ #: includes/reports/wcj-class-reports-stock.php:42
10397
+ msgid "Overstocked"
10398
+ msgstr "Übervorrat"
10399
+
10400
+ #: includes/reports/wcj-class-reports-stock.php:43
10401
+ msgid ""
10402
+ "Report shows all products that are on stock, but have no sales in selected "
10403
+ "period. Only products added before the start date of selected period are "
10404
+ "accounted."
10405
+ msgstr ""
10406
+ "Bericht zeigt alle Produkte, die auf Lager sind, haben aber keine Verkäufe "
10407
+ "im ausgewählten Zeitraum. Nur Produkte, die vor dem Startdatum des "
10408
+ "ausgewählten Zeitraums hinzugefügt wurden, werden berücksichtigt."
10409
+
10410
+ #: includes/reports/wcj-class-reports-stock.php:213
10411
+ msgid "deleted"
10412
+ msgstr "gelöscht"
10413
+
10414
+ #: includes/reports/wcj-class-reports-stock.php:322
10415
+ msgid "Stock"
10416
+ msgstr "Vorrat"
10417
+
10418
+ #: includes/reports/wcj-class-reports-stock.php:323
10419
+ msgid "Stock price"
10420
+ msgstr "Lagerpreis"
10421
+
10422
+ #: includes/reports/wcj-class-reports-stock.php:324
10423
+ msgid "Total stock price"
10424
+ msgstr "Lagerpreis isngesamt"
10425
+
10426
+ #: includes/reports/wcj-class-reports-stock.php:326
10427
+ msgid "Last sale"
10428
+ msgstr "Letzter Verkauf"
10429
+
10430
+ #: includes/reports/wcj-class-reports-stock.php:327
10431
+ msgid "Sales in last %s days"
10432
+ msgstr "Verkäufe in den letzten %s Tagen"
10433
+
10434
+ #: includes/reports/wcj-class-reports-stock.php:328
10435
+ msgid "Total sales"
10436
+ msgstr "Gesamtverkäufe"
10437
+
10438
+ #: includes/reports/wcj-class-reports-stock.php:331
10439
+ msgid "Stock to minimum"
10440
+ msgstr "Bestand auf Minimum"
10441
+
10442
+ #: includes/reports/wcj-class-reports-stock.php:364
10443
+ msgid "purchase price:"
10444
+ msgstr "Kaufpreis:"
10445
+
10446
+ #: includes/reports/wcj-class-reports-stock.php:369
10447
+ msgid "stock purchase price:"
10448
+ msgstr "Lagerkaufpreis:"
10449
+
10450
+ #: includes/reports/wcj-class-reports-stock.php:375
10451
+ msgid "No sales yet"
10452
+ msgstr "Noch keine Verkäufe"
10453
+
10454
+ #: includes/reports/wcj-class-reports-stock.php:380
10455
+ msgid "profit:"
10456
+ msgstr "Gewinn:"
10457
+
10458
+ #: includes/reports/wcj-class-reports-stock.php:404
10459
+ msgid "Total current stock value"
10460
+ msgstr "Aktueller Gesamtbestandswert"
10461
+
10462
+ #: includes/reports/wcj-class-reports-stock.php:405
10463
+ msgid "Total stock value"
10464
+ msgstr "Gesamtbestandswert"
10465
+
10466
+ #: includes/reports/wcj-class-reports-stock.php:406
10467
+ msgid "Product stock value average"
10468
+ msgstr "Durchschnittlicher Produktbestandswert"
10469
+
10470
+ #: includes/reports/wcj-class-reports-stock.php:407
10471
+ msgid "Product stock average"
10472
+ msgstr "Durchschnittlicher Produktbestand"
10473
+
10474
+ #: includes/reports/wcj-class-reports-stock.php:411
10475
+ msgid "Report was generated in: "
10476
+ msgstr "Bericht wurde generiert in:"
10477
+
10478
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:52
10479
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:45
10480
+ msgid "Booster: Custom Shipping Method"
10481
+ msgstr "Booster: Benutzerdefinierte Versandmethode"
10482
+
10483
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:122
10484
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:91
10485
+ msgid "Cost calculation type."
10486
+ msgstr "Art der Kostenberechnung."
10487
+
10488
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:126
10489
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:95
10490
+ msgid "Flat Rate"
10491
+ msgstr "Pauschale"
10492
+
10493
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:127
10494
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:96
10495
+ msgid "By Total Cart Weight"
10496
+ msgstr "Nach gesamten Warenkorbgewicht"
10497
+
10498
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:128
10499
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:97
10500
+ msgid "By Total Cart Weight Table"
10501
+ msgstr "Nach gesamter Warenkorbgewichttabelle"
10502
+
10503
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:129
10504
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:98
10505
+ msgid "By Total Cart Quantity"
10506
+ msgstr "Nach gesamter Warenkorbmenge"
10507
+
10508
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:133
10509
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:175
10510
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:102
10511
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:128
10512
+ msgid "Cost"
10513
+ msgstr "Kosten"
10514
+
10515
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:135
10516
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:104
10517
+ msgid ""
10518
+ "Cost. If calculating by weight - then cost per one weight unit. If "
10519
+ "calculating by quantity - then cost per one piece."
10520
+ msgstr ""
10521
+ "Kosten. Wenn Berechnung nach Gewicht - dann Kosten pro Gewichtseinheit. Wenn "
10522
+ "Berechnung nach menge - dann Kosten pro Stück."
10523
+
10524
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:143
10525
+ msgid "Minimum total cart weight. Set zero to disable."
10526
+ msgstr "Minimum Warenkorb-Gesamtgewicht. Null einstellen um zu deaktivieren."
10527
+
10528
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:149
10529
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:168
10530
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:121
10531
+ msgid "Max Weight"
10532
+ msgstr "Max Gewicht"
10533
+
10534
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:151
10535
+ msgid "Maximum total cart weight. Set zero to disable."
10536
+ msgstr "Maximum Warenkorb-Gesamtgewicht. Null einstellen um zu deaktivieren."
10537
+
10538
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:157
10539
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:110
10540
+ msgid "Weight Table Total Rows"
10541
+ msgstr "Gewichtstabelle Gesamtzeilen"
10542
+
10543
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:78
10544
+ msgid "Enable Custom Shipping"
10545
+ msgstr "Aktiviere benutzerdefinierten Versand"
10546
+
10547
+ #: includes/shortcodes/class-wcj-input-field-shortcodes.php:52
10548
+ msgid "Attribute \"name\" is required!"
10549
+ msgstr "Attribut \"Name\" wird benötigt!"
10550
+
10551
+ #: includes/shortcodes/class-wcj-orders-shortcodes.php:96
10552
+ msgid "Dollars"
10553
+ msgstr "Dollar"
10554
+
10555
+ #: includes/shortcodes/class-wcj-orders-shortcodes.php:97
10556
+ msgid "Cents"
10557
+ msgstr "Cent"
10558
+
10559
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:53
10560
+ msgid "Product by User"
10561
+ msgstr "Produkt nach Nutzer"
10562
+
10563
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:138
10564
+ msgid "Title is required!"
10565
+ msgstr "Titel wird benötigt!"
10566
+
10567
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:146
10568
+ msgid "Product exists!"
10569
+ msgstr "Produkt vorhanden!"
10570
+
10571
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:168
10572
+ msgid "%s is required!"
10573
+ msgstr "%s wird benötigt!"
10574
+
10575
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:174
10576
+ msgid "Sale price must be less than the regular price!"
10577
+ msgstr "Der Kaufpreis muss niedriger sein als der reguläre Preis!"
10578
+
10579
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:208
10580
+ msgid "Error!"
10581
+ msgstr "Fehler!"
10582
+
10583
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:250
10584
+ msgid "Add New Product"
10585
+ msgstr "Neues Produkt hinzufügen"
10586
+
10587
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:250
10588
+ msgid "Edit Product"
10589
+ msgstr "Produkt bearbeiten"
10590
+
10591
+ #: includes/shortcodes/class-wcj-products-shortcodes.php:200
10592
+ msgid "%s ago"
10593
+ msgstr "%s her"
10594
+
10595
+ #: includes/shortcodes/class-wcj-products-shortcodes.php:216
10596
+ msgid "No sales yet."
10597
+ msgstr "Noch keine Verkäufe."
10598
+
10599
+ #: includes/shortcodes/class-wcj-shortcodes.php:96
10600
+ msgid "%s module not enabled!"
10601
+ msgstr "%s Modul nicht aktiviert!"
10602
+
10603
+ #: includes/shortcodes/class-wcj-shortcodes.php:120
10604
+ msgid "Wrong user role!"
10605
+ msgstr "Falsche Benutzerrolle"
10606
+
10607
+ #: includes/templates/wcj-add-to-cart-variable.php:24
10608
+ msgid "This product is currently out of stock and unavailable."
10609
+ msgstr "Dieses Produkt ist derzeit nicht auf Lager und nicht verfügbar."
10610
+
10611
+ #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:43
10612
+ #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:70
10613
+ msgid "VAT"
10614
+ msgstr "Mehrwertsteuer"
10615
+
10616
+ #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:77
10617
+ msgid "Add EU Countries VAT Rates"
10618
+ msgstr "Mehrwertsteuersätze der EU-Länder hinzufügen"
10619
+
10620
+ #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:77
10621
+ msgid "Note: will add duplicates."
10622
+ msgstr "Hinweis: Wird Duplikate hinzufügen."
10623
+
10624
+ #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:85
10625
+ msgid "List of EU VAT rates to be added"
10626
+ msgstr "Liste der EU-Mehrwertsteuersätze die hinzugefügt werden"
10627
+
10628
+ #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:91
10629
+ #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:105
10630
+ msgid "Rate"
10631
+ msgstr "Satz"
10632
+
10633
+ #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:99
10634
+ msgid "Current standard tax rates"
10635
+ msgstr "Aktuelle Standardsteuersätze"
10636
+
10637
+ #: includes/widgets/class-wcj-widget-country-switcher.php:24
10638
+ msgid "Booster: Country Switcher Widget"
10639
+ msgstr "Booster: Länderumschalter-Widget"
10640
+
10641
+ #: includes/widgets/class-wcj-widget-country-switcher.php:26
10642
+ msgid "Booster - Country Switcher"
10643
+ msgstr "Booster - Länderumschalter"
10644
+
10645
+ #: includes/widgets/class-wcj-widget-country-switcher.php:43
10646
+ msgid "Prices and Currencies by Country module not enabled!"
10647
+ msgstr "Preise und Währungen nach Ländermodul nicht aktiviert!"
10648
+
10649
+ #: includes/widgets/class-wcj-widget-country-switcher.php:45
10650
+ msgid "Customer Country Detection Method must include \"by user selection\"!"
10651
+ msgstr ""
10652
+ "Kundenland-Erkennungsmethode muss \"durch Benutzerauswahl\" enthalten sein!"
10653
+
10654
+ #: includes/widgets/class-wcj-widget-country-switcher.php:80
10655
+ #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:56
10656
+ #: includes/widgets/class-wcj-widget-multicurrency.php:72
10657
+ msgid "Title:"
10658
+ msgstr "Titel:"
10659
+
10660
+ #: includes/widgets/class-wcj-widget-country-switcher.php:84
10661
+ msgid "Countries:"
10662
+ msgstr "Länder:"
10663
+
10664
+ #: includes/widgets/class-wcj-widget-country-switcher.php:88
10665
+ msgid "Replace with currency:"
10666
+ msgstr "Ersetzen mit Währung:"
10667
+
10668
+ #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:24
10669
+ msgid "Booster: Left to Free Shipping Widget"
10670
+ msgstr "Booster: Übrig bis kostenloser Versand Widget"
10671
+
10672
+ #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:26
10673
+ msgid "Booster - Left to Free Shipping"
10674
+ msgstr "Booster - Übrig bis kostenloser Versand"
10675
+
10676
+ #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:58
10677
+ msgid "Content:"
10678
+ msgstr "Inhalt:"
10679
+
10680
+ #: includes/widgets/class-wcj-widget-multicurrency.php:24
10681
+ msgid "Booster: Multicurrency Switcher Widget"
10682
+ msgstr "Booster: Multiwährungenumschalter-Widget"
10683
+
10684
+ #: includes/widgets/class-wcj-widget-multicurrency.php:26
10685
+ msgid "Booster - Multicurrency Switcher"
10686
+ msgstr "Booster - Multiwährungenumschalter"
10687
+
10688
+ #: includes/widgets/class-wcj-widget-multicurrency.php:43
10689
+ msgid "Multicurrency module not enabled!"
10690
+ msgstr "Multiwährungen-Modul nicht aktiviert!"
10691
+
10692
+ #: includes/widgets/class-wcj-widget-multicurrency.php:76
10693
+ msgid "Type:"
10694
+ msgstr "Art:"
10695
+
10696
+ #: includes/widgets/class-wcj-widget-multicurrency.php:78
10697
+ msgid "Drop down"
10698
+ msgstr "Dropdown-Liste"
10699
+
10700
+ #: includes/widgets/class-wcj-widget-multicurrency.php:79
10701
+ msgid "Radio list"
10702
+ msgstr "Radio-Liste"
10703
+
10704
+ #: includes/widgets/class-wcj-widget-multicurrency.php:80
10705
+ msgid "Link list"
10706
+ msgstr "Link-Liste"
10707
+
10708
+ #: woocommerce-jetpack.php:366
10709
+ msgid ""
10710
+ "If you like <strong>Booster for WooCommerce</strong> please leave us a %s "
10711
+ "rating. Thank you, we couldn't have done it without you!"
10712
+ msgstr ""
10713
+ "Wenn Du <strong>Booster for WooCommerce</ strong> magst, hinterlasse uns "
10714
+ "bitte eine %s Bewertung. Danke, wir hätten es nicht ohne Dich geschafft!"
10715
+
10716
+ #. #-#-#-#-# tmp-woocommerce-jetpack.pot (Booster for WooCommerce 2.5.6)
10717
+ #. #-#-#-#-#
10718
+ #. Plugin Name of the plugin/theme
10719
+ #: woocommerce-jetpack.php:382
10720
+ msgid "Booster for WooCommerce"
10721
+ msgstr "Booster for WooCommerce"
10722
+
10723
+ #: woocommerce-jetpack.php:383
10724
+ msgid "Booster Settings"
10725
+ msgstr "Booster-Einstellungen"
10726
+
10727
+ #: woocommerce-jetpack.php:399
10728
+ msgid "Docs"
10729
+ msgstr "Dokumentation"
10730
+
10731
+ #: woocommerce-jetpack.php:402
10732
+ msgid "Unlock all"
10733
+ msgstr "Alles freischalten"
10734
+
10735
+ #: woocommerce-jetpack.php:418
10736
+ msgid "Install Booster Plus to unlock all features"
10737
+ msgstr "Installiere Booster Plus, um alle Funktionen freizuschalten"
10738
+
10739
+ #: woocommerce-jetpack.php:419
10740
+ msgid ""
10741
+ "Some settings fields are locked and you will need %s to modify all locked "
10742
+ "fields."
10743
+ msgstr ""
10744
+ "Einige Einstellungsfelder sind gesperrt und Du benötigst %s, um alle "
10745
+ "gesperrten Felder zu ändern."
10746
+
10747
+ #: woocommerce-jetpack.php:420
10748
+ msgid "Buy now"
10749
+ msgstr "Jetzt kaufen"
10750
+
10751
+ #: woocommerce-jetpack.php:420
10752
+ msgid "Visit Booster Site"
10753
+ msgstr "Besuche die Booster-Site"
10754
+
10755
+ #: woocommerce-jetpack.php:424
10756
+ msgid ""
10757
+ "Get <a href=\"http://booster.io/plus/\" target=\"_blank\">Booster Plus</a> "
10758
+ "to change value."
10759
+ msgstr ""
10760
+ "Hole Dir <a href=\"http://booster.io/plus/\" target=\"_blank\">Booster "
10761
+ "Plus</a>, um den Wert zu ändern."
10762
+
10763
+ #: woocommerce-jetpack.php:427
10764
+ msgid ""
10765
+ "Get <a href=\"http://booster.io/plus/\" target=\"_blank\">Booster Plus</a> "
10766
+ "to change values below."
10767
+ msgstr ""
10768
+ "Hole Dir <a href=\"http://booster.io/plus/\" target=\"_blank\">Booster "
10769
+ "Plus</a>, um die Werte unten zu ändern."
10770
+
10771
+ #: woocommerce-jetpack.php:430
10772
+ msgid ""
10773
+ "Get <a href=\"http://booster.io/plus/\" target=\"_blank\">Booster Plus</a> "
10774
+ "to change values above."
10775
+ msgstr ""
10776
+ "Hole Dir <a href=\"http://booster.io/plus/\" target=\"_blank\">Booster "
10777
+ "Plus</a>, um die Werte oben zu ändern."
10778
+
10779
+ #: woocommerce-jetpack.php:433
10780
+ msgid "Get Booster Plus to change value."
10781
+ msgstr "Hole Dir Booster Plus, um den Wert zu ändern."
10782
+
10783
+ #: woocommerce-jetpack.php:686
10784
+ msgid "Please upload a file to import!"
10785
+ msgstr "Bitte lade Dir eine Datei zum Importieren hoch!"
10786
+
10787
+ #: woocommerce-jetpack.php:694 woocommerce-jetpack.php:699
10788
+ msgid "Wrong file format!"
10789
+ msgstr "Falsches Dateiformat!"
10790
+
10791
+ #: woocommerce-jetpack.php:706
10792
+ msgid "%d options successfully imported."
10793
+ msgstr "%d Optionen erfolgreich importiert."
10794
+
10795
+ #: woocommerce-jetpack.php:771
10796
+ msgid "%d options successfully deleted."
10797
+ msgstr "%d Optionen erfolgreich gelöscht."
10798
+
10799
+ #. Plugin URI of the plugin/theme
10800
+ msgid "http://booster.io"
10801
+ msgstr "http://booster.io"
10802
+
10803
+ #. Description of the plugin/theme
10804
+ msgid "Supercharge your WooCommerce site with these awesome powerful features."
10805
+ msgstr ""
10806
+ "Erweitere Deine WooCommerce-Website mit diesen großartigen mächtigen "
10807
+ "Funktionen."
10808
+
10809
+ #. Author of the plugin/theme
10810
+ msgid "Algoritmika Ltd"
10811
+ msgstr "Algoritmika Ltd"
10812
+
10813
+ #. Author URI of the plugin/theme
10814
+ msgid "http://www.algoritmika.com"
10815
+ msgstr "http://www.algoritmika.com"
langs/woocommerce-jetpack.pot CHANGED
@@ -1,13686 +1,13686 @@
1
- # SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) YEAR Booster for WooCommerce
3
- # This file is distributed under the same license as the PACKAGE package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
- #
6
- #: includes/settings/wcj-settings-add-to-cart.php:60
7
- #: includes/settings/wcj-settings-shipping-calculator.php:47
8
- #, fuzzy
9
- msgid ""
10
- msgstr ""
11
- "Project-Id-Version: Booster for WooCommerce 2.9.1\n"
12
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-"
13
- "jetpack\n"
14
- "POT-Creation-Date: 2017-07-17 04:48+0300\n"
15
- "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
16
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
17
- "Language-Team: LANGUAGE <LL@li.org>\n"
18
- "Language: \n"
19
- "MIME-Version: 1.0\n"
20
- "Content-Type: text/plain; charset=UTF-8\n"
21
- "Content-Transfer-Encoding: 8bit\n"
22
- "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
23
-
24
- #: woocommerce-jetpack.php:155
25
- #, php-format
26
- msgid ""
27
- "Please upgrade <strong>Booster Plus for WooCommerce</strong> plugin to "
28
- "version %s. Please visit <a href=\"%s\">your account</a> on booster.io to "
29
- "download the latest Booster Plus version."
30
- msgstr ""
31
-
32
- #: woocommerce-jetpack.php:175
33
- #, php-format
34
- msgid ""
35
- "If you like <strong>Booster for WooCommerce</strong> please leave us a %s "
36
- "rating. Thank you, we couldn't have done it without you!"
37
- msgstr ""
38
-
39
- #: woocommerce-jetpack.php:191
40
- #: includes/admin/class-wc-settings-jetpack.php:438
41
- msgid "Booster for WooCommerce"
42
- msgstr ""
43
-
44
- #: woocommerce-jetpack.php:192
45
- msgid "Booster Settings"
46
- msgstr ""
47
-
48
- #: woocommerce-jetpack.php:207 includes/class-wcj-admin-bar.php:167
49
- #: includes/class-wcj-admin-bar.php:437 includes/class-wcj-admin-bar.php:537
50
- #: includes/admin/class-wc-settings-jetpack.php:195
51
- #: includes/admin/class-wc-settings-jetpack.php:362
52
- msgid "Settings"
53
- msgstr ""
54
-
55
- #: woocommerce-jetpack.php:208
56
- msgid "Docs"
57
- msgstr ""
58
-
59
- #: woocommerce-jetpack.php:211
60
- msgid "Unlock all"
61
- msgstr ""
62
-
63
- #: woocommerce-jetpack.php:465
64
- #, php-format
65
- msgid ""
66
- "<strong>Booster for WooCommerce</strong> plugin was successfully updated to "
67
- "version <strong>%s</strong>."
68
- msgstr ""
69
-
70
- #: includes/class-wcj-add-to-cart.php:23
71
- msgid "Add to Cart Labels"
72
- msgstr ""
73
-
74
- #: includes/class-wcj-add-to-cart.php:24
75
- msgid ""
76
- "Change text for Add to Cart button by WooCommerce product type, by product "
77
- "category or for individual products."
78
- msgstr ""
79
-
80
- #: includes/class-wcj-address-formats.php:24
81
- msgid "Address Formats"
82
- msgstr ""
83
-
84
- #: includes/class-wcj-address-formats.php:25
85
- msgid ""
86
- "Set address format in WooCommerce orders on per country basis. Force base "
87
- "country display."
88
- msgstr ""
89
-
90
- #: includes/class-wcj-admin-bar.php:35
91
- msgid "Admin Bar"
92
- msgstr ""
93
-
94
- #: includes/class-wcj-admin-bar.php:36
95
- msgid "WooCommerce admin bar."
96
- msgstr ""
97
-
98
- #: includes/class-wcj-admin-bar.php:139
99
- #: includes/admin/class-wc-settings-jetpack.php:80
100
- msgid "Alphabetically"
101
- msgstr ""
102
-
103
- #: includes/class-wcj-admin-bar.php:143
104
- #: includes/admin/class-wc-settings-jetpack.php:81
105
- msgid "By Category"
106
- msgstr ""
107
-
108
- #: includes/class-wcj-admin-bar.php:147
109
- #: includes/admin/class-wc-settings-jetpack.php:82
110
- msgid "Active"
111
- msgstr ""
112
-
113
- #: includes/class-wcj-admin-bar.php:151
114
- #: includes/admin/class-wc-settings-jetpack.php:83
115
- msgid "Manage Settings"
116
- msgstr ""
117
-
118
- #: includes/class-wcj-admin-bar.php:171
119
- #: includes/admin/class-wc-settings-jetpack.php:364
120
- #: includes/classes/class-wcj-module.php:607
121
- msgid "Documentation"
122
- msgstr ""
123
-
124
- #: includes/class-wcj-admin-bar.php:213
125
- #: includes/admin/class-wc-settings-jetpack.php:131
126
- #: includes/admin/wcj-modules-cats.php:15
127
- msgid "Dashboard"
128
- msgstr ""
129
-
130
- #: includes/class-wcj-admin-bar.php:214
131
- msgid ""
132
- "This dashboard lets you check statuses and short descriptions of all "
133
- "available Booster for WooCommerce tools. Tools can be enabled through "
134
- "WooCommerce > Settings > Booster."
135
- msgstr ""
136
-
137
- #: includes/class-wcj-admin-bar.php:238
138
- #: includes/class-wcj-checkout-files-upload.php:138
139
- #: includes/class-wcj-eu-vat-number.php:86 includes/class-wcj-general.php:164
140
- #: includes/class-wcj-general.php:260
141
- #: includes/class-wcj-payment-gateways.php:53
142
- #: includes/admin/class-wc-settings-jetpack.php:24
143
- #: includes/admin/class-wc-settings-jetpack.php:197
144
- #: includes/classes/class-wcj-module.php:266
145
- #: includes/classes/class-wcj-module.php:467
146
- msgid "Booster"
147
- msgstr ""
148
-
149
- #: includes/class-wcj-admin-bar.php:241
150
- msgid "Booster - Settings"
151
- msgstr ""
152
-
153
- #: includes/class-wcj-admin-bar.php:245
154
- msgid "Modules"
155
- msgstr ""
156
-
157
- #: includes/class-wcj-admin-bar.php:250 includes/class-wcj-admin-bar.php:561
158
- #: includes/classes/class-wcj-module.php:440
159
- #: includes/settings/wcj-settings-wpml.php:15
160
- msgid "Tools"
161
- msgstr ""
162
-
163
- #: includes/class-wcj-admin-bar.php:269
164
- msgid "Sales by date"
165
- msgstr ""
166
-
167
- #: includes/class-wcj-admin-bar.php:270
168
- msgid "Sales by product"
169
- msgstr ""
170
-
171
- #: includes/class-wcj-admin-bar.php:271
172
- msgid "Sales by category"
173
- msgstr ""
174
-
175
- #: includes/class-wcj-admin-bar.php:272
176
- msgid "Coupons by date"
177
- msgstr ""
178
-
179
- #: includes/class-wcj-admin-bar.php:280 includes/class-wcj-general.php:43
180
- #: includes/functions/wcj-reports-functions.php:62
181
- msgid "Last 7 days"
182
- msgstr ""
183
-
184
- #: includes/class-wcj-admin-bar.php:284
185
- #: includes/functions/wcj-reports-functions.php:57
186
- msgid "This month"
187
- msgstr ""
188
-
189
- #: includes/class-wcj-admin-bar.php:288
190
- #: includes/functions/wcj-reports-functions.php:52
191
- msgid "Last month"
192
- msgstr ""
193
-
194
- #: includes/class-wcj-admin-bar.php:292
195
- #: includes/functions/wcj-reports-functions.php:47
196
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:85
197
- msgid "Year"
198
- msgstr ""
199
-
200
- #: includes/class-wcj-admin-bar.php:315
201
- #: includes/admin/class-wc-settings-jetpack.php:193
202
- msgid "WooCommerce"
203
- msgstr ""
204
-
205
- #: includes/class-wcj-admin-bar.php:318
206
- msgid "WooCommerce settings"
207
- msgstr ""
208
-
209
- #: includes/class-wcj-admin-bar.php:322 includes/class-wcj-admin-bar.php:326
210
- #: includes/class-wcj-admin-bar.php:344 includes/class-wcj-orders.php:23
211
- #: includes/settings/wcj-settings-reports.php:16
212
- #: includes/settings/wcj-settings-reports.php:54
213
- #: includes/settings/wcj-settings-reports.php:95
214
- msgid "Orders"
215
- msgstr ""
216
-
217
- #: includes/class-wcj-admin-bar.php:330
218
- msgid "Add order"
219
- msgstr ""
220
-
221
- #: includes/class-wcj-admin-bar.php:334 includes/class-wcj-admin-bar.php:349
222
- #: includes/settings/wcj-settings-reports.php:115
223
- #: includes/settings/wcj-settings-reports.php:121
224
- msgid "Customers"
225
- msgstr ""
226
-
227
- #: includes/class-wcj-admin-bar.php:340 includes/class-wcj-reports.php:32
228
- msgid "Reports"
229
- msgstr ""
230
-
231
- #: includes/class-wcj-admin-bar.php:353
232
- msgid "Customers vs. guests"
233
- msgstr ""
234
-
235
- #: includes/class-wcj-admin-bar.php:357
236
- msgid "Customer list"
237
- msgstr ""
238
-
239
- #: includes/class-wcj-admin-bar.php:363 includes/class-wcj-stock.php:26
240
- #: includes/reports/wcj-class-reports-stock.php:256
241
- #: includes/settings/wcj-settings-reports.php:127
242
- #: includes/settings/wcj-settings-reports.php:133
243
- #: includes/settings/wcj-settings-reports.php:139
244
- msgid "Stock"
245
- msgstr ""
246
-
247
- #: includes/class-wcj-admin-bar.php:367
248
- msgid "Low in stock"
249
- msgstr ""
250
-
251
- #: includes/class-wcj-admin-bar.php:371
252
- msgid "Out of stock"
253
- msgstr ""
254
-
255
- #: includes/class-wcj-admin-bar.php:375
256
- msgid "Most Stocked"
257
- msgstr ""
258
-
259
- #: includes/class-wcj-admin-bar.php:381
260
- #: includes/class-wcj-eu-vat-number.php:150
261
- msgid "Taxes"
262
- msgstr ""
263
-
264
- #: includes/class-wcj-admin-bar.php:385
265
- msgid "Taxes by code"
266
- msgstr ""
267
-
268
- #: includes/class-wcj-admin-bar.php:389
269
- msgid "Taxes by date"
270
- msgstr ""
271
-
272
- #: includes/class-wcj-admin-bar.php:397 includes/class-wcj-admin-bar.php:401
273
- #: includes/class-wcj-admin-bar.php:445
274
- #: includes/class-wcj-product-bulk-meta-editor.php:259
275
- #: includes/class-wcj-product-by-user.php:96
276
- #: includes/class-wcj-product-by-user.php:132
277
- #: includes/admin/wcj-modules-cats.php:60
278
- #: includes/settings/wcj-settings-shipping-options.php:59
279
- msgid "Products"
280
- msgstr ""
281
-
282
- #: includes/class-wcj-admin-bar.php:405
283
- msgid "Add product"
284
- msgstr ""
285
-
286
- #: includes/class-wcj-admin-bar.php:409
287
- #: includes/class-wcj-product-bulk-price-converter.php:149
288
- #: includes/class-wcj-sku.php:332
289
- #: includes/export/class-wcj-fields-helper.php:318
290
- #: includes/settings/wcj-settings-price-by-user-role.php:114
291
- #: includes/settings/wcj-settings-product-by-user.php:19
292
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:185
293
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:406
294
- msgid "Categories"
295
- msgstr ""
296
-
297
- #: includes/class-wcj-admin-bar.php:413
298
- #: includes/export/class-wcj-fields-helper.php:319
299
- #: includes/settings/wcj-settings-product-by-user.php:20
300
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:186
301
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:411
302
- msgid "Tags"
303
- msgstr ""
304
-
305
- #: includes/class-wcj-admin-bar.php:417
306
- msgid "Attributes"
307
- msgstr ""
308
-
309
- #: includes/class-wcj-admin-bar.php:423 includes/class-wcj-admin-bar.php:427
310
- msgid "Coupons"
311
- msgstr ""
312
-
313
- #: includes/class-wcj-admin-bar.php:431
314
- msgid "Add coupon"
315
- msgstr ""
316
-
317
- #: includes/class-wcj-admin-bar.php:441 includes/class-wcj-admin-bar.php:449
318
- #: includes/class-wcj-general.php:23 includes/class-wcj-pdf-invoicing.php:24
319
- #: includes/settings/wcj-settings-related-products.php:28
320
- msgid "General"
321
- msgstr ""
322
-
323
- #: includes/class-wcj-admin-bar.php:453
324
- #: includes/settings/wcj-settings-eu-vat-number.php:146
325
- msgid "Display"
326
- msgstr ""
327
-
328
- #: includes/class-wcj-admin-bar.php:457
329
- msgid "Inventory"
330
- msgstr ""
331
-
332
- #: includes/class-wcj-admin-bar.php:461
333
- msgid "Downloadable products"
334
- msgstr ""
335
-
336
- #: includes/class-wcj-admin-bar.php:467
337
- msgid "Tax"
338
- msgstr ""
339
-
340
- #: includes/class-wcj-admin-bar.php:471
341
- msgid "Tax options"
342
- msgstr ""
343
-
344
- #: includes/class-wcj-admin-bar.php:475
345
- msgid "Standard rates"
346
- msgstr ""
347
-
348
- #: includes/class-wcj-admin-bar.php:481
349
- #: includes/settings/wcj-settings-checkout-custom-fields.php:132
350
- #: includes/settings/wcj-settings-checkout-custom-info.php:56
351
- #: includes/settings/wcj-settings-empty-cart.php:59
352
- #: includes/settings/wcj-settings-left-to-free-shipping.php:121
353
- #: includes/settings/wcj-settings-price-by-user-role.php:46
354
- msgid "Shipping"
355
- msgstr ""
356
-
357
- #: includes/class-wcj-admin-bar.php:485
358
- msgid "Shipping zones"
359
- msgstr ""
360
-
361
- #: includes/class-wcj-admin-bar.php:489
362
- msgid "Shipping options"
363
- msgstr ""
364
-
365
- #: includes/class-wcj-admin-bar.php:493
366
- msgid "Shipping classes"
367
- msgstr ""
368
-
369
- #: includes/class-wcj-admin-bar.php:499
370
- msgid "Checkout"
371
- msgstr ""
372
-
373
- #: includes/class-wcj-admin-bar.php:503
374
- msgid "Checkout options"
375
- msgstr ""
376
-
377
- #: includes/class-wcj-admin-bar.php:507
378
- msgid "BACS"
379
- msgstr ""
380
-
381
- #: includes/class-wcj-admin-bar.php:511
382
- msgid "Check payments"
383
- msgstr ""
384
-
385
- #: includes/class-wcj-admin-bar.php:515
386
- msgid "Cash on delivery"
387
- msgstr ""
388
-
389
- #: includes/class-wcj-admin-bar.php:519
390
- msgid "PayPal"
391
- msgstr ""
392
-
393
- #: includes/class-wcj-admin-bar.php:525
394
- #: includes/settings/wcj-settings-checkout-custom-fields.php:134
395
- msgid "Account"
396
- msgstr ""
397
-
398
- #: includes/class-wcj-admin-bar.php:529
399
- msgid "Emails"
400
- msgstr ""
401
-
402
- #: includes/class-wcj-admin-bar.php:533
403
- msgid "API"
404
- msgstr ""
405
-
406
- #: includes/class-wcj-admin-bar.php:541
407
- msgid "Keys/Apps"
408
- msgstr ""
409
-
410
- #: includes/class-wcj-admin-bar.php:545
411
- msgid "Webhooks"
412
- msgstr ""
413
-
414
- #: includes/class-wcj-admin-bar.php:553 includes/class-wcj-admin-bar.php:557
415
- msgid "System status"
416
- msgstr ""
417
-
418
- #: includes/class-wcj-admin-bar.php:565
419
- msgid "Logs"
420
- msgstr ""
421
-
422
- #: includes/class-wcj-admin-bar.php:571
423
- msgid "Extensions"
424
- msgstr ""
425
-
426
- #: includes/class-wcj-admin-tools.php:23 includes/class-wcj-admin-tools.php:30
427
- msgid "Admin Tools"
428
- msgstr ""
429
-
430
- #: includes/class-wcj-admin-tools.php:24
431
- msgid "Booster for WooCommerce debug and log tools."
432
- msgstr ""
433
-
434
- #: includes/class-wcj-admin-tools.php:31
435
- msgid "Log."
436
- msgstr ""
437
-
438
- #: includes/class-wcj-admin-tools.php:32
439
- #: includes/settings/wcj-settings-admin-tools.php:19
440
- msgid "Log"
441
- msgstr ""
442
-
443
- #: includes/class-wcj-admin-tools.php:43
444
- #, php-format
445
- msgid "Current PHP memory limit: %s."
446
- msgstr ""
447
-
448
- #: includes/class-wcj-admin-tools.php:48
449
- #, php-format
450
- msgid "Current PHP time limit: %s seconds."
451
- msgstr ""
452
-
453
- #: includes/class-wcj-admin-tools.php:69
454
- #: includes/settings/wcj-settings-export.php:156
455
- #: includes/settings/wcj-settings-export.php:235
456
- msgid "Product Meta"
457
- msgstr ""
458
-
459
- #: includes/class-wcj-admin-tools.php:86
460
- #: includes/settings/wcj-settings-export.php:86
461
- #: includes/settings/wcj-settings-export.php:154
462
- msgid "Order Meta"
463
- msgstr ""
464
-
465
- #: includes/class-wcj-admin-tools.php:122
466
- msgid "Order Items Meta"
467
- msgstr ""
468
-
469
- #: includes/class-wcj-admin-tools.php:145
470
- msgid "Delete Log"
471
- msgstr ""
472
-
473
- #: includes/class-wcj-admin-tools.php:148
474
- #, php-format
475
- msgid "Now: %s"
476
- msgstr ""
477
-
478
- #: includes/class-wcj-admin-tools.php:178
479
- msgid "NOT DEFINED"
480
- msgstr ""
481
-
482
- #: includes/class-wcj-breadcrumbs.php:28
483
- msgid "Breadcrumbs"
484
- msgstr ""
485
-
486
- #: includes/class-wcj-breadcrumbs.php:29
487
- msgid "Customize WooCommerce breadcrumbs."
488
- msgstr ""
489
-
490
- #: includes/class-wcj-call-for-price.php:23
491
- msgid "Call for Price"
492
- msgstr ""
493
-
494
- #: includes/class-wcj-call-for-price.php:24
495
- msgid ""
496
- "Create any custom price label for all WooCommerce products with empty price."
497
- msgstr ""
498
-
499
- #: includes/class-wcj-cart-customization.php:25
500
- msgid "Cart Customization"
501
- msgstr ""
502
-
503
- #: includes/class-wcj-cart-customization.php:26
504
- msgid ""
505
- "Customize WooCommerce cart - hide coupon field; item remove link; change "
506
- "empty cart \"Return to shop\" button text."
507
- msgstr ""
508
-
509
- #: includes/class-wcj-cart-customization.php:55
510
- #: includes/settings/wcj-settings-cart-customization.php:41
511
- msgid "Return to shop"
512
- msgstr ""
513
-
514
- #: includes/class-wcj-cart.php:23
515
- msgid "Cart Custom Info"
516
- msgstr ""
517
-
518
- #: includes/class-wcj-cart.php:24
519
- msgid "Add custom info to WooCommerce cart page."
520
- msgstr ""
521
-
522
- #: includes/class-wcj-checkout-core-fields.php:23
523
- msgid "Checkout Core Fields"
524
- msgstr ""
525
-
526
- #: includes/class-wcj-checkout-core-fields.php:24
527
- msgid ""
528
- "Customize WooCommerce core checkout fields. Disable/enable fields, set "
529
- "required, change labels and/or placeholders."
530
- msgstr ""
531
-
532
- #: includes/class-wcj-checkout-custom-fields.php:23
533
- msgid "Checkout Custom Fields"
534
- msgstr ""
535
-
536
- #: includes/class-wcj-checkout-custom-fields.php:24
537
- msgid "Add custom fields to WooCommerce checkout page."
538
- msgstr ""
539
-
540
- #: includes/class-wcj-checkout-custom-info.php:24
541
- msgid "Checkout Custom Info"
542
- msgstr ""
543
-
544
- #: includes/class-wcj-checkout-custom-info.php:25
545
- msgid "Add custom info to WooCommerce checkout page."
546
- msgstr ""
547
-
548
- #: includes/class-wcj-checkout-customization.php:29
549
- msgid "Checkout Customization"
550
- msgstr ""
551
-
552
- #: includes/class-wcj-checkout-customization.php:30
553
- msgid ""
554
- "Customize WooCommerce checkout - hide \"Order Again\" button; disable "
555
- "selected fields on checkout for logged users and more."
556
- msgstr ""
557
-
558
- #: includes/class-wcj-checkout-customization.php:80
559
- #: includes/settings/wcj-settings-checkout-customization.php:72
560
- msgid "This field can not be changed"
561
- msgstr ""
562
-
563
- #: includes/class-wcj-checkout-files-upload.php:26
564
- msgid "Checkout Files Upload"
565
- msgstr ""
566
-
567
- #: includes/class-wcj-checkout-files-upload.php:27
568
- msgid "Let customers upload files on (or after) WooCommerce checkout."
569
- msgstr ""
570
-
571
- #: includes/class-wcj-checkout-files-upload.php:86
572
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:52
573
- #: includes/settings/wcj-settings-checkout-files-upload.php:37
574
- msgid "File"
575
- msgstr ""
576
-
577
- #: includes/class-wcj-checkout-files-upload.php:108
578
- #: includes/settings/wcj-settings-checkout-files-upload.php:122
579
- msgid "File is required!"
580
- msgstr ""
581
-
582
- #: includes/class-wcj-checkout-files-upload.php:118
583
- #: includes/class-wcj-checkout-files-upload.php:255
584
- #: includes/settings/wcj-settings-checkout-files-upload.php:115
585
- #, php-format
586
- msgid "Wrong file type: \"%s\"!"
587
- msgstr ""
588
-
589
- #: includes/class-wcj-checkout-files-upload.php:138
590
- msgid "Uploaded Files"
591
- msgstr ""
592
-
593
- #: includes/class-wcj-checkout-files-upload.php:170
594
- msgid "No files uploaded."
595
- msgstr ""
596
-
597
- #: includes/class-wcj-checkout-files-upload.php:227
598
- #: includes/class-wcj-checkout-files-upload.php:235
599
- #: includes/settings/wcj-settings-checkout-files-upload.php:145
600
- #, php-format
601
- msgid "File \"%s\" was successfully removed."
602
- msgstr ""
603
-
604
- #: includes/class-wcj-checkout-files-upload.php:267
605
- #: includes/settings/wcj-settings-checkout-files-upload.php:130
606
- #, php-format
607
- msgid "File \"%s\" was successfully uploaded."
608
- msgstr ""
609
-
610
- #: includes/class-wcj-checkout-files-upload.php:275
611
- #: includes/settings/wcj-settings-checkout-files-upload.php:137
612
- msgid "Please select file to upload!"
613
- msgstr ""
614
-
615
- #: includes/class-wcj-checkout-files-upload.php:489
616
- #: includes/class-wcj-checkout-files-upload.php:490
617
- #: includes/settings/wcj-settings-checkout-files-upload.php:100
618
- msgid "Upload"
619
- msgstr ""
620
-
621
- #: includes/class-wcj-checkout-files-upload.php:498
622
- #: includes/class-wcj-checkout-files-upload.php:499
623
- #: includes/settings/wcj-settings-checkout-files-upload.php:107
624
- #: includes/settings/wcj-settings-sorting.php:144
625
- msgid "Remove"
626
- msgstr ""
627
-
628
- #: includes/class-wcj-crowdfunding.php:24
629
- msgid "Crowdfunding"
630
- msgstr ""
631
-
632
- #: includes/class-wcj-crowdfunding.php:25
633
- msgid "Add crowdfunding products to WooCommerce."
634
- msgstr ""
635
-
636
- #: includes/class-wcj-crowdfunding.php:27
637
- msgid "When enabled, module will add Crowdfunding metabox to product edit."
638
- msgstr ""
639
-
640
- #: includes/class-wcj-crowdfunding.php:29
641
- #, php-format
642
- msgid ""
643
- "To add crowdfunding info to the product, use <a href=\"%s\" target=\"_blank"
644
- "\">Booster's crowdfunding shortcodes</a>."
645
- msgstr ""
646
-
647
- #: includes/class-wcj-crowdfunding.php:33
648
- #, php-format
649
- msgid ""
650
- "Shortcodes could be used for example in <a href=\"%s\">Product Info module</"
651
- "a>."
652
- msgstr ""
653
-
654
- #: includes/class-wcj-crowdfunding.php:37
655
- #, php-format
656
- msgid ""
657
- "To change add to cart button labels use <a href=\"%s\">Add to Cart Labels "
658
- "module</a>."
659
- msgstr ""
660
-
661
- #: includes/class-wcj-currencies.php:23
662
- msgid "Currencies"
663
- msgstr ""
664
-
665
- #: includes/class-wcj-currencies.php:24
666
- msgid ""
667
- "Add all world currencies to your WooCommerce store; change currency symbol."
668
- msgstr ""
669
-
670
- #: includes/class-wcj-currencies.php:69
671
- msgid "Booster: Currency Symbol"
672
- msgstr ""
673
-
674
- #: includes/class-wcj-currencies.php:70
675
- msgid "This sets the currency symbol."
676
- msgstr ""
677
-
678
- #: includes/class-wcj-currency-exchange-rates.php:24
679
- msgid "Currency Exchange Rates"
680
- msgstr ""
681
-
682
- #: includes/class-wcj-currency-exchange-rates.php:25
683
- msgid "Automatic currency exchange rates for WooCommerce."
684
- msgstr ""
685
-
686
- #: includes/class-wcj-currency-external-products.php:23
687
- msgid "Currency for External Products"
688
- msgstr ""
689
-
690
- #: includes/class-wcj-currency-external-products.php:24
691
- msgid "Set different currency for external WooCommerce products."
692
- msgstr ""
693
-
694
- #: includes/class-wcj-currency-per-product.php:25
695
- msgid "Currency per Product"
696
- msgstr ""
697
-
698
- #: includes/class-wcj-currency-per-product.php:26
699
- msgid "Display prices for WooCommerce products in different currencies."
700
- msgstr ""
701
-
702
- #: includes/class-wcj-currency-per-product.php:196
703
- #: includes/settings/wcj-settings-currency-per-product.php:43
704
- msgid ""
705
- "Only one product can be added to the cart. Clear the cart or finish the "
706
- "order, before adding another product to the cart."
707
- msgstr ""
708
-
709
- #: includes/class-wcj-currency-per-product.php:211
710
- #: includes/settings/wcj-settings-currency-per-product.php:50
711
- msgid ""
712
- "Only products with same currency can be added to the cart. Clear the cart or "
713
- "finish the order, before adding products with another currency to the cart."
714
- msgstr ""
715
-
716
- #: includes/class-wcj-currency-per-product.php:257
717
- #, php-format
718
- msgctxt "Price range: from-to"
719
- msgid "%1$s&ndash;%2$s"
720
- msgstr ""
721
-
722
- #: includes/class-wcj-custom-css.php:28
723
- msgid "Custom CSS"
724
- msgstr ""
725
-
726
- #: includes/class-wcj-custom-css.php:29
727
- msgid "Separate custom CSS for front and back end. Per product CSS."
728
- msgstr ""
729
-
730
- #: includes/class-wcj-custom-js.php:28
731
- msgid "Custom JS"
732
- msgstr ""
733
-
734
- #: includes/class-wcj-custom-js.php:29
735
- msgid "Separate custom JS for front and back end."
736
- msgstr ""
737
-
738
- #: includes/class-wcj-email-options.php:26
739
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-emails.php:24
740
- #: includes/settings/wcj-settings-offer-price.php:226
741
- msgid "Email Options"
742
- msgstr ""
743
-
744
- #: includes/class-wcj-email-options.php:27
745
- msgid ""
746
- "WooCommerce email options. E.g.: add another email recipient(s) to all "
747
- "WooCommerce emails."
748
- msgstr ""
749
-
750
- #: includes/class-wcj-email-options.php:93
751
- msgid "Booster: Email Forwarding Options"
752
- msgstr ""
753
-
754
- #: includes/class-wcj-email-options.php:94
755
- msgid "Email Forwarding Options"
756
- msgstr ""
757
-
758
- #: includes/class-wcj-email-options.php:96
759
- msgid ""
760
- "This section lets you add another email recipient(s) to all WooCommerce "
761
- "emails. Leave blank to disable."
762
- msgstr ""
763
-
764
- #: includes/class-wcj-email-options.php:100
765
- msgid "Cc Email"
766
- msgstr ""
767
-
768
- #: includes/class-wcj-email-options.php:101
769
- msgid "Cc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
770
- msgstr ""
771
-
772
- #: includes/class-wcj-email-options.php:107
773
- msgid "Bcc Email"
774
- msgstr ""
775
-
776
- #: includes/class-wcj-email-options.php:108
777
- msgid "Bcc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
778
- msgstr ""
779
-
780
- #: includes/class-wcj-emails-verification.php:26
781
- msgid "Email Verification"
782
- msgstr ""
783
-
784
- #: includes/class-wcj-emails-verification.php:27
785
- msgid "Add WooCommerce email verification."
786
- msgstr ""
787
-
788
- #: includes/class-wcj-emails-verification.php:71
789
- #: includes/settings/wcj-settings-emails-verification.php:72
790
- msgid ""
791
- "Your account has to be activated before you can login. You can resend email "
792
- "with verification link by clicking <a href=\"%resend_verification_url%"
793
- "\">here</a>."
794
- msgstr ""
795
-
796
- #: includes/class-wcj-emails-verification.php:92
797
- #: includes/class-wcj-emails-verification.php:94
798
- #: includes/settings/wcj-settings-emails-verification.php:55
799
- msgid ""
800
- "Please click the following link to verify your email:<br><br><a href="
801
- "\"%verification_url%\">%verification_url%</a>"
802
- msgstr ""
803
-
804
- #: includes/class-wcj-emails-verification.php:97
805
- #: includes/class-wcj-emails-verification.php:99
806
- #: includes/settings/wcj-settings-emails-verification.php:45
807
- msgid "Please activate your account"
808
- msgstr ""
809
-
810
- #: includes/class-wcj-emails-verification.php:117
811
- #: includes/settings/wcj-settings-emails-verification.php:64
812
- msgid "<strong>Success:</strong> Your account has been activated!"
813
- msgstr ""
814
-
815
- #: includes/class-wcj-emails-verification.php:126
816
- #: includes/settings/wcj-settings-emails-verification.php:80
817
- msgid ""
818
- "<strong>Error:</strong> Activation failed, please contact our administrator. "
819
- "You can resend email with verification link by clicking <a href="
820
- "\"%resend_verification_url%\">here</a>."
821
- msgstr ""
822
-
823
- #: includes/class-wcj-emails-verification.php:135
824
- #: includes/settings/wcj-settings-emails-verification.php:87
825
- msgid ""
826
- "Thank you for your registration. Your account has to be activated before you "
827
- "can login. Please check your email."
828
- msgstr ""
829
-
830
- #: includes/class-wcj-emails-verification.php:140
831
- #: includes/settings/wcj-settings-emails-verification.php:94
832
- msgid ""
833
- "<strong>Success:</strong> Your activation email has been resend. Please "
834
- "check your email."
835
- msgstr ""
836
-
837
- #: includes/class-wcj-emails.php:23
838
- #: includes/settings/wcj-settings-emails.php:14
839
- msgid "Custom Emails"
840
- msgstr ""
841
-
842
- #: includes/class-wcj-emails.php:24
843
- msgid "Add custom emails to WooCommerce."
844
- msgstr ""
845
-
846
- #: includes/class-wcj-empty-cart-button.php:25
847
- #: includes/shortcodes/class-wcj-general-shortcodes.php:128
848
- msgid "Empty Cart Button"
849
- msgstr ""
850
-
851
- #: includes/class-wcj-empty-cart-button.php:26
852
- msgid ""
853
- "Add (and customize) \"Empty Cart\" button to WooCommerce cart and checkout "
854
- "pages."
855
- msgstr ""
856
-
857
- #: includes/class-wcj-eu-vat-number.php:24
858
- #: includes/class-wcj-eu-vat-number.php:227
859
- #: includes/settings/wcj-settings-eu-vat-number.php:22
860
- #: includes/settings/wcj-settings-eu-vat-number.php:29
861
- msgid "EU VAT Number"
862
- msgstr ""
863
-
864
- #: includes/class-wcj-eu-vat-number.php:25
865
- msgid ""
866
- "Collect and validate EU VAT numbers on WooCommerce checkout. Automatically "
867
- "disable VAT for valid numbers. Add all EU countries VAT standard rates to "
868
- "WooCommerce."
869
- msgstr ""
870
-
871
- #: includes/class-wcj-eu-vat-number.php:31
872
- msgid "EU Countries VAT Rates"
873
- msgstr ""
874
-
875
- #: includes/class-wcj-eu-vat-number.php:32
876
- msgid "Add all EU countries VAT standard rates to WooCommerce."
877
- msgstr ""
878
-
879
- #: includes/class-wcj-eu-vat-number.php:138
880
- msgid "Customer IP"
881
- msgstr ""
882
-
883
- #: includes/class-wcj-eu-vat-number.php:142
884
- msgid "Country by IP"
885
- msgstr ""
886
-
887
- #: includes/class-wcj-eu-vat-number.php:146
888
- msgid "Customer EU VAT Number"
889
- msgstr ""
890
-
891
- #: includes/class-wcj-eu-vat-number.php:297
892
- #: includes/settings/wcj-settings-eu-vat-number.php:165
893
- msgid "Validating VAT. Please wait..."
894
- msgstr ""
895
-
896
- #: includes/class-wcj-eu-vat-number.php:298
897
- #: includes/settings/wcj-settings-eu-vat-number.php:172
898
- msgid "VAT is valid."
899
- msgstr ""
900
-
901
- #: includes/class-wcj-eu-vat-number.php:299
902
- #: includes/settings/wcj-settings-eu-vat-number.php:179
903
- msgid "VAT is not valid."
904
- msgstr ""
905
-
906
- #: includes/class-wcj-eu-vat-number.php:300
907
- #: includes/settings/wcj-settings-eu-vat-number.php:187
908
- msgid "Validation failed. Please try again."
909
- msgstr ""
910
-
911
- #: includes/class-wcj-eu-vat-number.php:404
912
- #: includes/settings/wcj-settings-eu-vat-number.php:84
913
- msgid "<strong>EU VAT Number</strong> is not valid."
914
- msgstr ""
915
-
916
- #: includes/class-wcj-export-import.php:26
917
- #: includes/admin/class-wc-settings-jetpack.php:272
918
- msgid "Export"
919
- msgstr ""
920
-
921
- #: includes/class-wcj-export-import.php:27
922
- msgid "WooCommerce export tools."
923
- msgstr ""
924
-
925
- #: includes/class-wcj-export-import.php:33
926
- msgid "Export Customers"
927
- msgstr ""
928
-
929
- #: includes/class-wcj-export-import.php:34
930
- msgid "Export Customers."
931
- msgstr ""
932
-
933
- #: includes/class-wcj-export-import.php:37
934
- msgid "Export Customers from Orders"
935
- msgstr ""
936
-
937
- #: includes/class-wcj-export-import.php:38
938
- msgid "Export Customers (extracted from orders)."
939
- msgstr ""
940
-
941
- #: includes/class-wcj-export-import.php:38
942
- msgid "Customers are identified by billing email."
943
- msgstr ""
944
-
945
- #: includes/class-wcj-export-import.php:41
946
- msgid "Export Orders"
947
- msgstr ""
948
-
949
- #: includes/class-wcj-export-import.php:42
950
- msgid "Export Orders."
951
- msgstr ""
952
-
953
- #: includes/class-wcj-export-import.php:45
954
- msgid "Export Orders Items"
955
- msgstr ""
956
-
957
- #: includes/class-wcj-export-import.php:46
958
- msgid "Export Orders Items."
959
- msgstr ""
960
-
961
- #: includes/class-wcj-export-import.php:49
962
- msgid "Export Products"
963
- msgstr ""
964
-
965
- #: includes/class-wcj-export-import.php:50
966
- msgid "Export Products."
967
- msgstr ""
968
-
969
- #: includes/class-wcj-export-import.php:193
970
- #: includes/class-wcj-export-import.php:199
971
- msgid "Filter by Billing Country"
972
- msgstr ""
973
-
974
- #: includes/class-wcj-export-import.php:194
975
- msgid "Filter by Product Title"
976
- msgstr ""
977
-
978
- #: includes/class-wcj-export-import.php:213
979
- #: includes/reports/wcj-class-reports-sales-daily.php:188
980
- #: includes/settings/wcj-settings-orders.php:33
981
- msgid "Filter"
982
- msgstr ""
983
-
984
- #: includes/class-wcj-export-import.php:232
985
- msgid "Download CSV"
986
- msgstr ""
987
-
988
- #: includes/class-wcj-export-import.php:234
989
- msgid "Download XML"
990
- msgstr ""
991
-
992
- #: includes/class-wcj-export-import.php:235
993
- msgid "Filter by All Fields"
994
- msgstr ""
995
-
996
- #: includes/class-wcj-free-price.php:26
997
- msgid "Free Price Labels"
998
- msgstr ""
999
-
1000
- #: includes/class-wcj-free-price.php:27
1001
- msgid "WooCommerce free price labels."
1002
- msgstr ""
1003
-
1004
- #: includes/class-wcj-free-price.php:131 includes/class-wcj-free-price.php:144
1005
- #: includes/class-wcj-free-price.php:154 includes/class-wcj-free-price.php:164
1006
- #: includes/settings/wcj-settings-free-price.php:27
1007
- msgid "Free!"
1008
- msgstr ""
1009
-
1010
- #: includes/class-wcj-general.php:24
1011
- msgid "Custom roles tool. Shortcodes in WordPress text widgets."
1012
- msgstr ""
1013
-
1014
- #: includes/class-wcj-general.php:30
1015
- msgid "Products Attributes"
1016
- msgstr ""
1017
-
1018
- #: includes/class-wcj-general.php:31
1019
- msgid "All Products and All Attributes."
1020
- msgstr ""
1021
-
1022
- #: includes/class-wcj-general.php:34
1023
- msgid "Add/Manage Custom Roles"
1024
- msgstr ""
1025
-
1026
- #: includes/class-wcj-general.php:35
1027
- msgid "Custom Roles"
1028
- msgstr ""
1029
-
1030
- #: includes/class-wcj-general.php:36
1031
- msgid "Manage Custom Roles."
1032
- msgstr ""
1033
-
1034
- #: includes/class-wcj-general.php:42
1035
- msgid "Last 24 hours"
1036
- msgstr ""
1037
-
1038
- #: includes/class-wcj-general.php:44
1039
- msgid "Last 28 days"
1040
- msgstr ""
1041
-
1042
- #: includes/class-wcj-general.php:45
1043
- msgid "All time"
1044
- msgstr ""
1045
-
1046
- #: includes/class-wcj-general.php:164
1047
- msgid "Acquisition Source"
1048
- msgstr ""
1049
-
1050
- #: includes/class-wcj-general.php:189
1051
- msgid "Other"
1052
- msgstr ""
1053
-
1054
- #: includes/class-wcj-general.php:206
1055
- #: includes/settings/wcj-settings-products-xml.php:115
1056
- msgid "URL:"
1057
- msgstr ""
1058
-
1059
- #: includes/class-wcj-general.php:207
1060
- #: includes/widgets/class-wcj-widget-multicurrency.php:74
1061
- msgid "Type:"
1062
- msgstr ""
1063
-
1064
- #: includes/class-wcj-general.php:260
1065
- #, php-format
1066
- msgid "Top %d countries by visits"
1067
- msgstr ""
1068
-
1069
- #: includes/class-wcj-general.php:328
1070
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:59
1071
- #: includes/settings/wcj-settings-checkout-custom-fields.php:92
1072
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:88
1073
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:102
1074
- msgid "Country"
1075
- msgstr ""
1076
-
1077
- #: includes/class-wcj-general.php:328
1078
- msgid "Visits"
1079
- msgstr ""
1080
-
1081
- #: includes/class-wcj-general.php:338
1082
- msgid "No stats yet."
1083
- msgstr ""
1084
-
1085
- #: includes/class-wcj-general.php:343 includes/class-wcj-my-account.php:75
1086
- #: includes/class-wcj-order-custom-statuses.php:359
1087
- #: includes/class-wcj-product-bulk-meta-editor.php:275
1088
- #: includes/class-wcj-product-by-user.php:206
1089
- #: includes/class-wcj-purchase-data.php:93
1090
- #: includes/classes/class-wcj-module.php:576
1091
- #: includes/functions/wcj-html-functions.php:95
1092
- #: includes/reports/wcj-class-reports-monthly-sales.php:334
1093
- #: includes/settings/wcj-settings-empty-cart.php:80
1094
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:367
1095
- msgid "Are you sure?"
1096
- msgstr ""
1097
-
1098
- #: includes/class-wcj-general.php:344
1099
- msgid "Delete all tracking data"
1100
- msgstr ""
1101
-
1102
- #: includes/class-wcj-general.php:349
1103
- #, php-format
1104
- msgid "Stats generated at %s. Next update is scheduled at %s."
1105
- msgstr ""
1106
-
1107
- #: includes/class-wcj-general.php:350
1108
- msgid "Update now"
1109
- msgstr ""
1110
-
1111
- #: includes/class-wcj-general.php:454
1112
- msgid "Booster User Role"
1113
- msgstr ""
1114
-
1115
- #: includes/class-wcj-general.php:518
1116
- msgid "Both fields are required!"
1117
- msgstr ""
1118
-
1119
- #: includes/class-wcj-general.php:521
1120
- msgid "Role ID must not be numbers only!"
1121
- msgstr ""
1122
-
1123
- #: includes/class-wcj-general.php:525
1124
- msgid "Role successfully added!"
1125
- msgstr ""
1126
-
1127
- #: includes/class-wcj-general.php:527
1128
- msgid "Role already exists!"
1129
- msgstr ""
1130
-
1131
- #: includes/class-wcj-general.php:535
1132
- #, php-format
1133
- msgid "Role %s successfully deleted!"
1134
- msgstr ""
1135
-
1136
- #: includes/class-wcj-general.php:541 includes/class-wcj-general.php:554
1137
- #: includes/class-wcj-sku.php:330
1138
- #: includes/reports/wcj-class-reports-sales.php:191
1139
- #: includes/settings/wcj-settings-product-by-user.php:161
1140
- #: includes/settings/wcj-settings-related-products.php:21
1141
- msgid "ID"
1142
- msgstr ""
1143
-
1144
- #: includes/class-wcj-general.php:541 includes/class-wcj-general.php:555
1145
- #: includes/class-wcj-offer-price.php:116
1146
- #: includes/export/class-wcj-fields-helper.php:282
1147
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:70
1148
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:104
1149
- msgid "Name"
1150
- msgstr ""
1151
-
1152
- #: includes/class-wcj-general.php:541
1153
- #: includes/class-wcj-order-custom-statuses.php:337
1154
- #: includes/class-wcj-product-by-user.php:197
1155
- #: includes/settings/wcj-settings-pdf-invoicing-styling.php:125
1156
- msgid "Actions"
1157
- msgstr ""
1158
-
1159
- #: includes/class-wcj-general.php:547
1160
- #: includes/class-wcj-order-custom-statuses.php:359
1161
- #: includes/class-wcj-product-bulk-meta-editor.php:359
1162
- #: includes/class-wcj-product-by-user.php:206
1163
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:155
1164
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:320
1165
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:367
1166
- msgid "Delete"
1167
- msgstr ""
1168
-
1169
- #: includes/class-wcj-general.php:550
1170
- msgid "Existing Roles"
1171
- msgstr ""
1172
-
1173
- #: includes/class-wcj-general.php:556
1174
- msgid "Add New Role"
1175
- msgstr ""
1176
-
1177
- #: includes/class-wcj-general.php:559
1178
- #: includes/class-wcj-order-custom-statuses.php:384
1179
- #: includes/settings/wcj-settings-checkout-custom-fields.php:22
1180
- #: includes/settings/wcj-settings-checkout-custom-fields.php:29
1181
- #: includes/settings/wcj-settings-checkout-custom-fields.php:36
1182
- #: includes/settings/wcj-settings-email-options.php:20
1183
- #: includes/settings/wcj-settings-eu-vat-number.php:157
1184
- #: includes/settings/wcj-settings-eu-vat-number.php:193
1185
- #: includes/settings/wcj-settings-export.php:27
1186
- #: includes/settings/wcj-settings-order-custom-statuses.php:29
1187
- #: includes/settings/wcj-settings-order-custom-statuses.php:36
1188
- #: includes/settings/wcj-settings-order-custom-statuses.php:58
1189
- #: includes/settings/wcj-settings-order-min-amount.php:46
1190
- #: includes/settings/wcj-settings-orders.php:168
1191
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:134
1192
- #: includes/settings/wcj-settings-product-by-country.php:41
1193
- #: includes/settings/wcj-settings-product-by-user.php:114
1194
- #: includes/settings/wcj-settings-purchase-data.php:134
1195
- #: includes/settings/wcj-settings-purchase-data.php:143
1196
- #: includes/settings/wcj-settings-purchase-data.php:162
1197
- #: includes/settings/wcj-settings-purchase-data.php:169
1198
- #: includes/settings/wcj-settings-sku.php:165
1199
- #: includes/settings/wcj-settings-sku.php:180
1200
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:425
1201
- msgid "Add"
1202
- msgstr ""
1203
-
1204
- #: includes/class-wcj-general.php:622 includes/class-wcj-general.php:664
1205
- #: includes/class-wcj-product-bulk-meta-editor.php:331
1206
- #: includes/class-wcj-product-bulk-price-converter.php:148
1207
- #: includes/class-wcj-sku.php:331
1208
- #: includes/reports/wcj-class-reports-sales.php:192
1209
- #: includes/reports/wcj-class-reports-stock.php:253
1210
- msgid "Product"
1211
- msgstr ""
1212
-
1213
- #: includes/class-wcj-general.php:623 includes/class-wcj-general.php:665
1214
- #: includes/reports/wcj-class-reports-stock.php:254
1215
- msgid "Category"
1216
- msgstr ""
1217
-
1218
- #: includes/class-wcj-general.php:685
1219
- msgid "Total Products:"
1220
- msgstr ""
1221
-
1222
- #: includes/class-wcj-global-discount.php:26
1223
- msgid "Global Discount"
1224
- msgstr ""
1225
-
1226
- #: includes/class-wcj-global-discount.php:27
1227
- msgid "Add global discount to all WooCommerce products."
1228
- msgstr ""
1229
-
1230
- #: includes/class-wcj-left-to-free-shipping.php:25
1231
- #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:50
1232
- msgid "Left to Free Shipping"
1233
- msgstr ""
1234
-
1235
- #: includes/class-wcj-left-to-free-shipping.php:26
1236
- msgid "Display \"left to free shipping\" info in WooCommerce."
1237
- msgstr ""
1238
-
1239
- #: includes/class-wcj-left-to-free-shipping.php:62
1240
- #: includes/class-wcj-left-to-free-shipping.php:72
1241
- #: includes/class-wcj-left-to-free-shipping.php:82
1242
- #: includes/functions/wcj-general-functions.php:184
1243
- #: includes/settings/wcj-settings-left-to-free-shipping.php:33
1244
- #: includes/settings/wcj-settings-left-to-free-shipping.php:68
1245
- #: includes/settings/wcj-settings-left-to-free-shipping.php:107
1246
- #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:51
1247
- #, php-format
1248
- msgid "%left_to_free% left to free shipping"
1249
- msgstr ""
1250
-
1251
- #: includes/class-wcj-mini-cart.php:24
1252
- msgid "Mini Cart Custom Info"
1253
- msgstr ""
1254
-
1255
- #: includes/class-wcj-mini-cart.php:25
1256
- msgid "Add custom info to WooCommerce mini cart widget."
1257
- msgstr ""
1258
-
1259
- #: includes/class-wcj-more-button-labels.php:24
1260
- msgid "More Button Labels"
1261
- msgstr ""
1262
-
1263
- #: includes/class-wcj-more-button-labels.php:25
1264
- msgid "Set WooCommerce \"Place order\" button label."
1265
- msgstr ""
1266
-
1267
- #: includes/class-wcj-multicurrency-product-base-price.php:25
1268
- msgid "Multicurrency Product Base Price"
1269
- msgstr ""
1270
-
1271
- #: includes/class-wcj-multicurrency-product-base-price.php:26
1272
- msgid "Enter prices for WooCommerce products in different currencies."
1273
- msgstr ""
1274
-
1275
- #: includes/class-wcj-multicurrency.php:24
1276
- msgid "Multicurrency (Currency Switcher)"
1277
- msgstr ""
1278
-
1279
- #: includes/class-wcj-multicurrency.php:25
1280
- msgid "Add multiple currencies (currency switcher) to WooCommerce."
1281
- msgstr ""
1282
-
1283
- #: includes/class-wcj-multicurrency.php:27
1284
- msgid ""
1285
- "After setting currencies in the Currencies Options below, use <em>Booster - "
1286
- "Multicurrency Switcher</em> widget, or <em>"
1287
- "[wcj_currency_select_drop_down_list]</em> shortcode. If you want to insert "
1288
- "switcher in your PHP code, just use <em>echo do_shortcode"
1289
- "( '[wcj_currency_select_drop_down_list]' );</em>"
1290
- msgstr ""
1291
-
1292
- #: includes/class-wcj-my-account.php:25
1293
- msgid "My Account"
1294
- msgstr ""
1295
-
1296
- #: includes/class-wcj-my-account.php:26
1297
- msgid "WooCommerce \"My Account\" page customization."
1298
- msgstr ""
1299
-
1300
- #: includes/class-wcj-offer-price.php:36
1301
- msgid "Offer Your Price"
1302
- msgstr ""
1303
-
1304
- #: includes/class-wcj-offer-price.php:37
1305
- msgid "Let your customers to suggest their price for products in WooCommerce."
1306
- msgstr ""
1307
-
1308
- #: includes/class-wcj-offer-price.php:92
1309
- msgid "Booster: Offer Price History"
1310
- msgstr ""
1311
-
1312
- #: includes/class-wcj-offer-price.php:108
1313
- msgid "No price offers yet."
1314
- msgstr ""
1315
-
1316
- #: includes/class-wcj-offer-price.php:113
1317
- #: includes/functions/wcj-reports-functions.php:21
1318
- #: includes/functions/wcj-reports-functions.php:24
1319
- #: includes/settings/wcj-settings-related-products.php:14
1320
- msgid "Date"
1321
- msgstr ""
1322
-
1323
- #: includes/class-wcj-offer-price.php:114
1324
- #: includes/export/class-wcj-fields-helper.php:288
1325
- #: includes/reports/wcj-class-reports-stock.php:255
1326
- #: includes/settings/wcj-settings-related-products.php:24
1327
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:72
1328
- msgid "Price"
1329
- msgstr ""
1330
-
1331
- #: includes/class-wcj-offer-price.php:115
1332
- #: includes/settings/wcj-settings-currency-per-product.php:41
1333
- #: includes/settings/wcj-settings-currency-per-product.php:48
1334
- #: includes/settings/wcj-settings-product-by-date.php:69
1335
- #: includes/settings/wcj-settings-product-by-time.php:69
1336
- msgid "Message"
1337
- msgstr ""
1338
-
1339
- #: includes/class-wcj-offer-price.php:117
1340
- #: includes/export/class-wcj-fields-helper.php:75
1341
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:61
1342
- #: includes/reports/wcj-class-reports-customers.php:90
1343
- #: includes/settings/wcj-settings-checkout-custom-fields.php:94
1344
- msgid "Email"
1345
- msgstr ""
1346
-
1347
- #: includes/class-wcj-offer-price.php:118
1348
- #: includes/export/class-wcj-fields-helper.php:74
1349
- msgid "Customer ID"
1350
- msgstr ""
1351
-
1352
- #: includes/class-wcj-offer-price.php:119
1353
- msgid "Sent to"
1354
- msgstr ""
1355
-
1356
- #: includes/class-wcj-offer-price.php:141
1357
- #, php-format
1358
- msgid "Average offer: %s (from %s offer(s))"
1359
- msgstr ""
1360
-
1361
- #: includes/class-wcj-offer-price.php:148
1362
- msgid "Delete history"
1363
- msgstr ""
1364
-
1365
- #: includes/class-wcj-offer-price.php:149
1366
- msgid "Update product after checking the box."
1367
- msgstr ""
1368
-
1369
- #: includes/class-wcj-offer-price.php:219
1370
- #: includes/settings/wcj-settings-offer-price.php:119
1371
- #, php-format
1372
- msgid "Your price (%s)"
1373
- msgstr ""
1374
-
1375
- #: includes/class-wcj-offer-price.php:225
1376
- #: includes/settings/wcj-settings-offer-price.php:190
1377
- #, php-format
1378
- msgid "Suggest your price for %s"
1379
- msgstr ""
1380
-
1381
- #: includes/class-wcj-offer-price.php:280
1382
- #: includes/settings/wcj-settings-offer-price.php:158
1383
- msgid "Your email"
1384
- msgstr ""
1385
-
1386
- #: includes/class-wcj-offer-price.php:284
1387
- #: includes/settings/wcj-settings-offer-price.php:166
1388
- msgid "Your name"
1389
- msgstr ""
1390
-
1391
- #: includes/class-wcj-offer-price.php:288
1392
- #: includes/settings/wcj-settings-offer-price.php:174
1393
- msgid "Your message"
1394
- msgstr ""
1395
-
1396
- #: includes/class-wcj-offer-price.php:292
1397
- #: includes/settings/wcj-settings-offer-price.php:197
1398
- msgid "Send"
1399
- msgstr ""
1400
-
1401
- #: includes/class-wcj-offer-price.php:294
1402
- #: includes/settings/wcj-settings-offer-price.php:182
1403
- msgid "Send a copy to your email"
1404
- msgstr ""
1405
-
1406
- #: includes/class-wcj-offer-price.php:342
1407
- #: includes/settings/wcj-settings-offer-price.php:46
1408
- msgid "Make an offer"
1409
- msgstr ""
1410
-
1411
- #: includes/class-wcj-offer-price.php:395
1412
- #: includes/settings/wcj-settings-offer-price.php:256
1413
- #, php-format
1414
- msgid "Product: %s"
1415
- msgstr ""
1416
-
1417
- #: includes/class-wcj-offer-price.php:396
1418
- #: includes/settings/wcj-settings-offer-price.php:257
1419
- #, php-format
1420
- msgid "Offered price: %s"
1421
- msgstr ""
1422
-
1423
- #: includes/class-wcj-offer-price.php:397
1424
- #: includes/settings/wcj-settings-offer-price.php:258
1425
- #, php-format
1426
- msgid "From: %s %s"
1427
- msgstr ""
1428
-
1429
- #: includes/class-wcj-offer-price.php:398
1430
- #: includes/settings/wcj-settings-offer-price.php:259
1431
- #, php-format
1432
- msgid "Message: %s"
1433
- msgstr ""
1434
-
1435
- #: includes/class-wcj-offer-price.php:409
1436
- #: includes/settings/wcj-settings-offer-price.php:248
1437
- msgid "Price Offer"
1438
- msgstr ""
1439
-
1440
- #: includes/class-wcj-offer-price.php:419
1441
- #: includes/settings/wcj-settings-offer-price.php:218
1442
- msgid "Your price offer has been sent."
1443
- msgstr ""
1444
-
1445
- #: includes/class-wcj-old-slugs.php:23
1446
- msgid "Old Slugs"
1447
- msgstr ""
1448
-
1449
- #: includes/class-wcj-old-slugs.php:24
1450
- msgid "Remove old WooCommerce products slugs."
1451
- msgstr ""
1452
-
1453
- #: includes/class-wcj-old-slugs.php:30
1454
- msgid "Remove Old Slugs"
1455
- msgstr ""
1456
-
1457
- #: includes/class-wcj-old-slugs.php:31
1458
- msgid "Tool removes old slugs/permalinks from database."
1459
- msgstr ""
1460
-
1461
- #: includes/class-wcj-old-slugs.php:48
1462
- msgid "Old slug"
1463
- msgstr ""
1464
-
1465
- #: includes/class-wcj-old-slugs.php:49
1466
- msgid "Post title"
1467
- msgstr ""
1468
-
1469
- #: includes/class-wcj-old-slugs.php:50
1470
- msgid "Post id"
1471
- msgstr ""
1472
-
1473
- #: includes/class-wcj-old-slugs.php:51
1474
- msgid "Post type"
1475
- msgstr ""
1476
-
1477
- #: includes/class-wcj-old-slugs.php:52
1478
- msgid "Current slug"
1479
- msgstr ""
1480
-
1481
- #: includes/class-wcj-old-slugs.php:85
1482
- #, php-format
1483
- msgid ""
1484
- "Removing old slugs from database finished! <strong>%d</strong> old slug(s) "
1485
- "deleted."
1486
- msgstr ""
1487
-
1488
- #: includes/class-wcj-old-slugs.php:87
1489
- msgid "Please <a href=\"\">refresh</a> the page."
1490
- msgstr ""
1491
-
1492
- #: includes/class-wcj-old-slugs.php:107
1493
- msgid "Old products slugs found:"
1494
- msgstr ""
1495
-
1496
- #: includes/class-wcj-old-slugs.php:110
1497
- msgid "Remove all old product slugs"
1498
- msgstr ""
1499
-
1500
- #: includes/class-wcj-old-slugs.php:113
1501
- msgid "Old non-products slugs found:"
1502
- msgstr ""
1503
-
1504
- #: includes/class-wcj-old-slugs.php:116
1505
- msgid "Remove all old non-product slugs"
1506
- msgstr ""
1507
-
1508
- #: includes/class-wcj-old-slugs.php:130
1509
- msgid "No old slugs found."
1510
- msgstr ""
1511
-
1512
- #: includes/class-wcj-order-custom-statuses.php:26
1513
- msgid "Order Custom Statuses"
1514
- msgstr ""
1515
-
1516
- #: includes/class-wcj-order-custom-statuses.php:27
1517
- msgid "Custom statuses for WooCommerce orders."
1518
- msgstr ""
1519
-
1520
- #: includes/class-wcj-order-custom-statuses.php:33
1521
- #: includes/settings/wcj-settings-order-custom-statuses.php:14
1522
- msgid "Custom Statuses"
1523
- msgstr ""
1524
-
1525
- #: includes/class-wcj-order-custom-statuses.php:34
1526
- msgid "Tool lets you add or delete any custom status for WooCommerce orders."
1527
- msgstr ""
1528
-
1529
- #: includes/class-wcj-order-custom-statuses.php:85
1530
- msgid "Processing"
1531
- msgstr ""
1532
-
1533
- #: includes/class-wcj-order-custom-statuses.php:92
1534
- msgid "Complete"
1535
- msgstr ""
1536
-
1537
- #: includes/class-wcj-order-custom-statuses.php:156
1538
- msgctxt "Order status"
1539
- msgid "Pending payment"
1540
- msgstr ""
1541
-
1542
- #: includes/class-wcj-order-custom-statuses.php:157
1543
- #: includes/functions/wcj-order-functions.php:113
1544
- msgctxt "Order status"
1545
- msgid "Processing"
1546
- msgstr ""
1547
-
1548
- #: includes/class-wcj-order-custom-statuses.php:158
1549
- msgctxt "Order status"
1550
- msgid "On hold"
1551
- msgstr ""
1552
-
1553
- #: includes/class-wcj-order-custom-statuses.php:159
1554
- #: includes/functions/wcj-order-functions.php:115
1555
- msgctxt "Order status"
1556
- msgid "Completed"
1557
- msgstr ""
1558
-
1559
- #: includes/class-wcj-order-custom-statuses.php:160
1560
- #: includes/functions/wcj-order-functions.php:116
1561
- msgctxt "Order status"
1562
- msgid "Cancelled"
1563
- msgstr ""
1564
-
1565
- #: includes/class-wcj-order-custom-statuses.php:161
1566
- #: includes/functions/wcj-order-functions.php:117
1567
- msgctxt "Order status"
1568
- msgid "Refunded"
1569
- msgstr ""
1570
-
1571
- #: includes/class-wcj-order-custom-statuses.php:162
1572
- #: includes/functions/wcj-order-functions.php:118
1573
- msgctxt "Order status"
1574
- msgid "Failed"
1575
- msgstr ""
1576
-
1577
- #: includes/class-wcj-order-custom-statuses.php:202
1578
- #, php-format
1579
- msgid " <span class=\"count\">(%s)</span>"
1580
- msgid_plural " <span class=\"count\">(%s)</span>"
1581
- msgstr[0] ""
1582
- msgstr[1] ""
1583
-
1584
- #: includes/class-wcj-order-custom-statuses.php:252
1585
- msgid "Status slug is empty. Status was not added!"
1586
- msgstr ""
1587
-
1588
- #: includes/class-wcj-order-custom-statuses.php:255
1589
- msgid ""
1590
- "The length of status slug must be 17 or less characters. Status was not "
1591
- "added!"
1592
- msgstr ""
1593
-
1594
- #: includes/class-wcj-order-custom-statuses.php:258
1595
- msgid "Status label is empty. Status was not added!"
1596
- msgstr ""
1597
-
1598
- #: includes/class-wcj-order-custom-statuses.php:265
1599
- msgid "Duplicate slug. Status was not added!"
1600
- msgstr ""
1601
-
1602
- #: includes/class-wcj-order-custom-statuses.php:269
1603
- msgid "Duplicate slug (default WooCommerce status). Status was not added!"
1604
- msgstr ""
1605
-
1606
- #: includes/class-wcj-order-custom-statuses.php:280
1607
- msgid "New status has been successfully added!"
1608
- msgstr ""
1609
-
1610
- #: includes/class-wcj-order-custom-statuses.php:282
1611
- msgid "Status was not added."
1612
- msgstr ""
1613
-
1614
- #: includes/class-wcj-order-custom-statuses.php:300
1615
- msgid "Status label is empty. Status was not edited!"
1616
- msgstr ""
1617
-
1618
- #: includes/class-wcj-order-custom-statuses.php:310
1619
- msgid "Status has been successfully edited!"
1620
- msgstr ""
1621
-
1622
- #: includes/class-wcj-order-custom-statuses.php:312
1623
- msgid "Status was not edited."
1624
- msgstr ""
1625
-
1626
- #: includes/class-wcj-order-custom-statuses.php:320
1627
- msgid "Status has been successfully deleted."
1628
- msgstr ""
1629
-
1630
- #: includes/class-wcj-order-custom-statuses.php:322
1631
- msgid "Delete failed."
1632
- msgstr ""
1633
-
1634
- #: includes/class-wcj-order-custom-statuses.php:327
1635
- msgid "Booster - Custom Statuses"
1636
- msgstr ""
1637
-
1638
- #: includes/class-wcj-order-custom-statuses.php:328
1639
- msgid ""
1640
- "The tool lets you add or delete any custom status for WooCommerce orders."
1641
- msgstr ""
1642
-
1643
- #: includes/class-wcj-order-custom-statuses.php:330
1644
- msgid "Statuses"
1645
- msgstr ""
1646
-
1647
- #: includes/class-wcj-order-custom-statuses.php:333
1648
- msgid "Slug"
1649
- msgstr ""
1650
-
1651
- #: includes/class-wcj-order-custom-statuses.php:334
1652
- #: includes/class-wcj-order-custom-statuses.php:389
1653
- #: includes/settings/wcj-settings-checkout-custom-fields.php:105
1654
- #: includes/settings/wcj-settings-checkout-files-upload.php:82
1655
- #: includes/settings/wcj-settings-checkout-files-upload.php:256
1656
- #: includes/settings/wcj-settings-offer-price.php:43
1657
- #: includes/settings/wcj-settings-offer-price.php:115
1658
- #: includes/settings/wcj-settings-offer-price.php:155
1659
- #: includes/settings/wcj-settings-offer-price.php:163
1660
- #: includes/settings/wcj-settings-offer-price.php:171
1661
- #: includes/settings/wcj-settings-offer-price.php:179
1662
- #: includes/settings/wcj-settings-orders.php:103
1663
- #: includes/settings/wcj-settings-product-listings.php:210
1664
- msgid "Label"
1665
- msgstr ""
1666
-
1667
- #: includes/class-wcj-order-custom-statuses.php:335
1668
- #: includes/class-wcj-order-custom-statuses.php:390
1669
- msgid "Icon Code"
1670
- msgstr ""
1671
-
1672
- #: includes/class-wcj-order-custom-statuses.php:336
1673
- #: includes/class-wcj-order-custom-statuses.php:392
1674
- msgid "Icon Color"
1675
- msgstr ""
1676
-
1677
- #: includes/class-wcj-order-custom-statuses.php:360
1678
- msgid "Get Booster Plus to enable."
1679
- msgstr ""
1680
-
1681
- #: includes/class-wcj-order-custom-statuses.php:360
1682
- #: includes/class-wcj-order-custom-statuses.php:384
1683
- #: includes/class-wcj-product-by-user.php:205
1684
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:425
1685
- msgid "Edit"
1686
- msgstr ""
1687
-
1688
- #: includes/class-wcj-order-custom-statuses.php:388
1689
- msgid "Slug (without wc- prefix)"
1690
- msgstr ""
1691
-
1692
- #: includes/class-wcj-order-custom-statuses.php:391
1693
- #, php-format
1694
- msgid "You can check icon codes <a target=\"_blank\" href=\"%s\">here</a>."
1695
- msgstr ""
1696
-
1697
- #: includes/class-wcj-order-custom-statuses.php:394
1698
- msgid "Edit custom status"
1699
- msgstr ""
1700
-
1701
- #: includes/class-wcj-order-custom-statuses.php:394
1702
- msgid "Add new custom status"
1703
- msgstr ""
1704
-
1705
- #: includes/class-wcj-order-custom-statuses.php:395
1706
- #: includes/settings/wcj-settings-checkout-custom-fields.php:149
1707
- #: includes/settings/wcj-settings-eu-vat-number.php:56
1708
- msgid "Clear"
1709
- msgstr ""
1710
-
1711
- #: includes/class-wcj-order-custom-statuses.php:417
1712
- #: includes/class-wcj-order-custom-statuses.php:418
1713
- msgid "Mark"
1714
- msgstr ""
1715
-
1716
- #: includes/class-wcj-order-min-amount.php:26
1717
- #: includes/settings/wcj-settings-order-min-amount.php:14
1718
- msgid "Order Minimum Amount"
1719
- msgstr ""
1720
-
1721
- #: includes/class-wcj-order-min-amount.php:27
1722
- msgid "Minimum WooCommerce order amount (optionally by user role)."
1723
- msgstr ""
1724
-
1725
- #: includes/class-wcj-order-numbers.php:23
1726
- #: includes/settings/wcj-settings-order-numbers.php:14
1727
- msgid "Order Numbers"
1728
- msgstr ""
1729
-
1730
- #: includes/class-wcj-order-numbers.php:24
1731
- msgid ""
1732
- "WooCommerce sequential order numbering, custom order number prefix, suffix "
1733
- "and number width."
1734
- msgstr ""
1735
-
1736
- #: includes/class-wcj-order-numbers.php:30
1737
- msgid "Orders Renumerate"
1738
- msgstr ""
1739
-
1740
- #: includes/class-wcj-order-numbers.php:31
1741
- msgid "Tool renumerates all orders."
1742
- msgstr ""
1743
-
1744
- #: includes/class-wcj-order-numbers.php:144
1745
- msgid "Orders successfully renumerated!"
1746
- msgstr ""
1747
-
1748
- #: includes/class-wcj-order-numbers.php:148
1749
- msgid ""
1750
- "Press the button below to renumerate all existing orders starting from order "
1751
- "counter settings in WooCommerce > Settings > Booster > Order Numbers."
1752
- msgstr ""
1753
-
1754
- #: includes/class-wcj-order-numbers.php:151
1755
- msgid "Renumerate orders"
1756
- msgstr ""
1757
-
1758
- #: includes/class-wcj-order-quantities.php:28
1759
- msgid "Order Min/Max Quantities"
1760
- msgstr ""
1761
-
1762
- #: includes/class-wcj-order-quantities.php:29
1763
- msgid "Set min/max product quantities in WooCommerce order."
1764
- msgstr ""
1765
-
1766
- #: includes/class-wcj-order-quantities.php:95
1767
- #: includes/settings/wcj-settings-order-quantities.php:87
1768
- msgid ""
1769
- "Maximum allowed order quantity is %max_cart_total_quantity%. Your current "
1770
- "order quantity is %cart_total_quantity%."
1771
- msgstr ""
1772
-
1773
- #: includes/class-wcj-order-quantities.php:103
1774
- #: includes/settings/wcj-settings-order-quantities.php:38
1775
- msgid ""
1776
- "Minimum allowed order quantity is %min_cart_total_quantity%. Your current "
1777
- "order quantity is %cart_total_quantity%."
1778
- msgstr ""
1779
-
1780
- #: includes/class-wcj-order-quantities.php:113
1781
- #: includes/settings/wcj-settings-order-quantities.php:104
1782
- msgid ""
1783
- "Maximum allowed quantity for %product_title% is %max_per_item_quantity%. "
1784
- "Your current item quantity is %item_quantity%."
1785
- msgstr ""
1786
-
1787
- #: includes/class-wcj-order-quantities.php:123
1788
- #: includes/settings/wcj-settings-order-quantities.php:55
1789
- msgid ""
1790
- "Minimum allowed quantity for %product_title% is %min_per_item_quantity%. "
1791
- "Your current item quantity is %item_quantity%."
1792
- msgstr ""
1793
-
1794
- #: includes/class-wcj-orders.php:24
1795
- msgid ""
1796
- "Orders auto-complete. Custom admin order list columns. Admin order currency. "
1797
- "Admin order list multiple status filtering."
1798
- msgstr ""
1799
-
1800
- #: includes/class-wcj-orders.php:176
1801
- msgid "Not Completed"
1802
- msgstr ""
1803
-
1804
- #: includes/class-wcj-orders.php:302
1805
- msgid "All countries"
1806
- msgstr ""
1807
-
1808
- #: includes/class-wcj-orders.php:311
1809
- msgid "All currencies"
1810
- msgstr ""
1811
-
1812
- #: includes/class-wcj-orders.php:351
1813
- #: includes/export/class-wcj-fields-helper.php:44
1814
- #: includes/export/class-wcj-fields-helper.php:129
1815
- #: includes/export/class-wcj-fields-helper.php:214
1816
- #: includes/settings/wcj-settings-orders.php:66
1817
- msgid "Billing Country"
1818
- msgstr ""
1819
-
1820
- #: includes/class-wcj-orders.php:354
1821
- #: includes/settings/wcj-settings-orders.php:73
1822
- msgid "Currency Code"
1823
- msgstr ""
1824
-
1825
- #: includes/class-wcj-payment-gateways-by-country.php:24
1826
- msgid "Gateways by Country or State"
1827
- msgstr ""
1828
-
1829
- #: includes/class-wcj-payment-gateways-by-country.php:25
1830
- msgid ""
1831
- "Set countries or states to include/exclude for WooCommerce payment gateways "
1832
- "to show up."
1833
- msgstr ""
1834
-
1835
- #: includes/class-wcj-payment-gateways-by-shipping.php:25
1836
- msgid "Gateways by Shipping"
1837
- msgstr ""
1838
-
1839
- #: includes/class-wcj-payment-gateways-by-shipping.php:26
1840
- msgid "Set \"enable for shipping methods\" for WooCommerce payment gateways."
1841
- msgstr ""
1842
-
1843
- #: includes/class-wcj-payment-gateways-by-user-role.php:25
1844
- msgid "Gateways by User Role"
1845
- msgstr ""
1846
-
1847
- #: includes/class-wcj-payment-gateways-by-user-role.php:26
1848
- msgid ""
1849
- "Set user roles to include/exclude for WooCommerce payment gateways to show "
1850
- "up."
1851
- msgstr ""
1852
-
1853
- #: includes/class-wcj-payment-gateways-currency.php:24
1854
- msgid "Gateways Currency"
1855
- msgstr ""
1856
-
1857
- #: includes/class-wcj-payment-gateways-currency.php:25
1858
- msgid "Currency per WooCommerce payment gateway."
1859
- msgstr ""
1860
-
1861
- #: includes/class-wcj-payment-gateways-fees.php:24
1862
- msgid "Gateways Fees and Discounts"
1863
- msgstr ""
1864
-
1865
- #: includes/class-wcj-payment-gateways-fees.php:25
1866
- msgid "Enable extra fees or discounts for WooCommerce payment gateways."
1867
- msgstr ""
1868
-
1869
- #: includes/class-wcj-payment-gateways-icons.php:24
1870
- msgid "Gateways Icons"
1871
- msgstr ""
1872
-
1873
- #: includes/class-wcj-payment-gateways-icons.php:25
1874
- msgid ""
1875
- "Change or completely remove icons (images) for any (default or custom) "
1876
- "WooCommerce payment gateway."
1877
- msgstr ""
1878
-
1879
- #: includes/class-wcj-payment-gateways-min-max.php:24
1880
- msgid "Gateways Min/Max Amounts"
1881
- msgstr ""
1882
-
1883
- #: includes/class-wcj-payment-gateways-min-max.php:25
1884
- msgid "Add min/max amounts for WooCommerce payment gateways to show up."
1885
- msgstr ""
1886
-
1887
- #: includes/class-wcj-payment-gateways-min-max.php:41
1888
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:37
1889
- msgid "Minimum amount for %gateway_title% is %min_amount%"
1890
- msgstr ""
1891
-
1892
- #: includes/class-wcj-payment-gateways-min-max.php:42
1893
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:45
1894
- msgid "Maximum amount for %gateway_title% is %max_amount%"
1895
- msgstr ""
1896
-
1897
- #: includes/class-wcj-payment-gateways-per-category.php:24
1898
- msgid "Gateways per Product or Category"
1899
- msgstr ""
1900
-
1901
- #: includes/class-wcj-payment-gateways-per-category.php:25
1902
- msgid ""
1903
- "Show WooCommerce gateway only if there is selected product or product "
1904
- "category in cart."
1905
- msgstr ""
1906
-
1907
- #: includes/class-wcj-payment-gateways.php:23
1908
- msgid "Custom Gateways"
1909
- msgstr ""
1910
-
1911
- #: includes/class-wcj-payment-gateways.php:24
1912
- msgid "Add multiple custom payment gateways to WooCommerce."
1913
- msgstr ""
1914
-
1915
- #: includes/class-wcj-payment-gateways.php:53
1916
- #, php-format
1917
- msgid "%s Fields"
1918
- msgstr ""
1919
-
1920
- #: includes/class-wcj-pdf-invoicing.php:23
1921
- msgid "PDF Invoicing"
1922
- msgstr ""
1923
-
1924
- #: includes/class-wcj-pdf-invoicing.php:25
1925
- msgid ""
1926
- "WooCommerce Invoices, Proforma Invoices, Credit Notes and Packing Slips."
1927
- msgstr ""
1928
-
1929
- #: includes/class-wcj-pdf-invoicing.php:31
1930
- msgid "Invoices Renumerate"
1931
- msgstr ""
1932
-
1933
- #: includes/class-wcj-pdf-invoicing.php:32
1934
- msgid ""
1935
- "Tool renumerates all invoices, proforma invoices, credit notes and packing "
1936
- "slips."
1937
- msgstr ""
1938
-
1939
- #: includes/class-wcj-pdf-invoicing.php:35
1940
- msgid "Invoices Report"
1941
- msgstr ""
1942
-
1943
- #: includes/class-wcj-pdf-invoicing.php:36
1944
- msgid "Invoices Monthly Reports."
1945
- msgstr ""
1946
-
1947
- #: includes/class-wcj-pdf-invoicing.php:87
1948
- #: includes/class-wcj-pdf-invoicing.php:88
1949
- #: includes/settings/wcj-settings-price-by-country.php:164
1950
- #: includes/settings/wcj-settings-price-by-country.php:169
1951
- #: includes/settings/wcj-settings-price-by-country.php:174
1952
- msgid "Generate"
1953
- msgstr ""
1954
-
1955
- #: includes/class-wcj-pdf-invoicing.php:95
1956
- #: includes/class-wcj-pdf-invoicing.php:96
1957
- #: includes/settings/wcj-settings-pdf-invoicing-styling.php:128
1958
- msgid "Download"
1959
- msgstr ""
1960
-
1961
- #: includes/class-wcj-pdf-invoicing.php:112
1962
- #, php-format
1963
- msgid "Document generated."
1964
- msgid_plural "%s documents generated."
1965
- msgstr[0] ""
1966
- msgstr[1] ""
1967
-
1968
- #: includes/class-wcj-pdf-invoicing.php:218
1969
- #: includes/classes/class-wcj-pdf-invoice.php:272
1970
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:193
1971
- msgid "Unexpected error"
1972
- msgstr ""
1973
-
1974
- #: includes/class-wcj-pdf-invoicing.php:341
1975
- msgid "You are not allowed to view the invoice."
1976
- msgstr ""
1977
-
1978
- #: includes/class-wcj-price-by-country.php:23
1979
- msgid "Prices and Currencies by Country"
1980
- msgstr ""
1981
-
1982
- #: includes/class-wcj-price-by-country.php:24
1983
- msgid ""
1984
- "Change WooCommerce product price and currency automatically by customer's "
1985
- "country."
1986
- msgstr ""
1987
-
1988
- #: includes/class-wcj-price-by-country.php:90
1989
- msgid "Price filter widget product prices recalculated."
1990
- msgstr ""
1991
-
1992
- #: includes/class-wcj-price-by-user-role.php:26
1993
- msgid "Price by User Role"
1994
- msgstr ""
1995
-
1996
- #: includes/class-wcj-price-by-user-role.php:27
1997
- msgid "Display WooCommerce products prices by user roles."
1998
- msgstr ""
1999
-
2000
- #: includes/class-wcj-price-by-user-role.php:101
2001
- msgid ""
2002
- "Booster: Free plugin's version is limited to only one price by user role per "
2003
- "products settings product enabled at a time. You will need to get <a href="
2004
- "\"http://booster.io/plus/\" target=\"_blank\">Booster Plus</a> to add "
2005
- "unlimited number of price by user role per product settings products."
2006
- msgstr ""
2007
-
2008
- #: includes/class-wcj-price-formats.php:25
2009
- msgid "Price Formats"
2010
- msgstr ""
2011
-
2012
- #: includes/class-wcj-price-formats.php:26
2013
- msgid "Set different WooCommerce price formats for different currencies."
2014
- msgstr ""
2015
-
2016
- #: includes/class-wcj-price-labels.php:23
2017
- msgid "Custom Price Labels"
2018
- msgstr ""
2019
-
2020
- #: includes/class-wcj-price-labels.php:24
2021
- msgid "Create any custom price label for any WooCommerce product."
2022
- msgstr ""
2023
-
2024
- #: includes/class-wcj-price-labels.php:32
2025
- #: includes/settings/wcj-settings-price-labels.php:88
2026
- msgid "Instead of the price"
2027
- msgstr ""
2028
-
2029
- #: includes/class-wcj-price-labels.php:33
2030
- msgid "Before the price"
2031
- msgstr ""
2032
-
2033
- #: includes/class-wcj-price-labels.php:34
2034
- msgid "Between regular and sale prices"
2035
- msgstr ""
2036
-
2037
- #: includes/class-wcj-price-labels.php:35
2038
- msgid "After the price"
2039
- msgstr ""
2040
-
2041
- #: includes/class-wcj-price-labels.php:40
2042
- #: includes/class-wcj-product-info.php:254
2043
- #: includes/class-wcj-shipping-options.php:172
2044
- #: includes/settings/wcj-settings-add-to-cart.php:52
2045
- #: includes/settings/wcj-settings-address-formats.php:20
2046
- #: includes/settings/wcj-settings-admin-bar.php:20
2047
- #: includes/settings/wcj-settings-admin-bar.php:27
2048
- #: includes/settings/wcj-settings-admin-tools.php:20
2049
- #: includes/settings/wcj-settings-admin-tools.php:27
2050
- #: includes/settings/wcj-settings-admin-tools.php:34
2051
- #: includes/settings/wcj-settings-admin-tools.php:74
2052
- #: includes/settings/wcj-settings-admin-tools.php:81
2053
- #: includes/settings/wcj-settings-breadcrumbs.php:20
2054
- #: includes/settings/wcj-settings-call-for-price.php:69
2055
- #: includes/settings/wcj-settings-cart-customization.php:34
2056
- #: includes/settings/wcj-settings-checkout-custom-fields.php:69
2057
- #: includes/settings/wcj-settings-currency-exchange-rates.php:54
2058
- #: includes/settings/wcj-settings-currency-exchange-rates.php:84
2059
- #: includes/settings/wcj-settings-currency-exchange-rates.php:92
2060
- #: includes/settings/wcj-settings-currency-per-product.php:66
2061
- #: includes/settings/wcj-settings-currency-per-product.php:73
2062
- #: includes/settings/wcj-settings-currency-per-product.php:80
2063
- #: includes/settings/wcj-settings-currency-per-product.php:87
2064
- #: includes/settings/wcj-settings-custom-css.php:34
2065
- #: includes/settings/wcj-settings-emails-verification.php:28
2066
- #: includes/settings/wcj-settings-emails-verification.php:36
2067
- #: includes/settings/wcj-settings-general.php:41
2068
- #: includes/settings/wcj-settings-general.php:65
2069
- #: includes/settings/wcj-settings-general.php:81
2070
- #: includes/settings/wcj-settings-general.php:139
2071
- #: includes/settings/wcj-settings-general.php:190
2072
- #: includes/settings/wcj-settings-general.php:248
2073
- #: includes/settings/wcj-settings-global-discount.php:43
2074
- #: includes/settings/wcj-settings-left-to-free-shipping.php:23
2075
- #: includes/settings/wcj-settings-left-to-free-shipping.php:56
2076
- #: includes/settings/wcj-settings-left-to-free-shipping.php:95
2077
- #: includes/settings/wcj-settings-multicurrency.php:38
2078
- #: includes/settings/wcj-settings-multicurrency.php:46
2079
- #: includes/settings/wcj-settings-offer-price.php:19
2080
- #: includes/settings/wcj-settings-order-numbers.php:88
2081
- #: includes/settings/wcj-settings-order-numbers.php:96
2082
- #: includes/settings/wcj-settings-order-numbers.php:103
2083
- #: includes/settings/wcj-settings-order-quantities.php:119
2084
- #: includes/settings/wcj-settings-order-quantities.php:126
2085
- #: includes/settings/wcj-settings-orders.php:20
2086
- #: includes/settings/wcj-settings-orders.php:49
2087
- #: includes/settings/wcj-settings-orders.php:184
2088
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:98
2089
- #: includes/settings/wcj-settings-pdf-invoicing-numbering.php:23
2090
- #: includes/settings/wcj-settings-price-by-country.php:69
2091
- #: includes/settings/wcj-settings-price-by-country.php:89
2092
- #: includes/settings/wcj-settings-price-by-country.php:105
2093
- #: includes/settings/wcj-settings-price-by-country.php:113
2094
- #: includes/settings/wcj-settings-price-by-country.php:122
2095
- #: includes/settings/wcj-settings-price-by-user-role.php:20
2096
- #: includes/settings/wcj-settings-price-by-user-role.php:47
2097
- #: includes/settings/wcj-settings-price-labels.php:155
2098
- #: includes/settings/wcj-settings-product-add-to-cart.php:25
2099
- #: includes/settings/wcj-settings-product-add-to-cart.php:41
2100
- #: includes/settings/wcj-settings-product-add-to-cart.php:80
2101
- #: includes/settings/wcj-settings-product-add-to-cart.php:103
2102
- #: includes/settings/wcj-settings-product-add-to-cart.php:142
2103
- #: includes/settings/wcj-settings-product-add-to-cart.php:173
2104
- #: includes/settings/wcj-settings-product-add-to-cart.php:190
2105
- #: includes/settings/wcj-settings-product-add-to-cart.php:231
2106
- #: includes/settings/wcj-settings-product-add-to-cart.php:245
2107
- #: includes/settings/wcj-settings-product-addons.php:21
2108
- #: includes/settings/wcj-settings-product-addons.php:40
2109
- #: includes/settings/wcj-settings-product-addons.php:64
2110
- #: includes/settings/wcj-settings-product-addons.php:135
2111
- #: includes/settings/wcj-settings-product-bulk-meta-editor.php:21
2112
- #: includes/settings/wcj-settings-product-bulk-meta-editor.php:29
2113
- #: includes/settings/wcj-settings-product-by-country.php:20
2114
- #: includes/settings/wcj-settings-product-by-country.php:27
2115
- #: includes/settings/wcj-settings-product-by-country.php:34
2116
- #: includes/settings/wcj-settings-product-by-date.php:21
2117
- #: includes/settings/wcj-settings-product-by-date.php:53
2118
- #: includes/settings/wcj-settings-product-by-time.php:21
2119
- #: includes/settings/wcj-settings-product-by-time.php:53
2120
- #: includes/settings/wcj-settings-product-by-user-role.php:20
2121
- #: includes/settings/wcj-settings-product-by-user-role.php:27
2122
- #: includes/settings/wcj-settings-product-by-user-role.php:34
2123
- #: includes/settings/wcj-settings-product-by-user.php:107
2124
- #: includes/settings/wcj-settings-product-info.php:35
2125
- #: includes/settings/wcj-settings-product-info.php:68
2126
- #: includes/settings/wcj-settings-product-input-fields.php:22
2127
- #: includes/settings/wcj-settings-product-input-fields.php:52
2128
- #: includes/settings/wcj-settings-product-input-fields.php:204
2129
- #: includes/settings/wcj-settings-product-open-pricing.php:87
2130
- #: includes/settings/wcj-settings-product-open-pricing.php:94
2131
- #: includes/settings/wcj-settings-product-open-pricing.php:108
2132
- #: includes/settings/wcj-settings-product-price-by-formula.php:28
2133
- #: includes/settings/wcj-settings-product-tabs.php:181
2134
- #: includes/settings/wcj-settings-product-tabs.php:189
2135
- #: includes/settings/wcj-settings-products-xml.php:72
2136
- #: includes/settings/wcj-settings-purchase-data.php:22
2137
- #: includes/settings/wcj-settings-purchase-data.php:29
2138
- #: includes/settings/wcj-settings-purchase-data.php:36
2139
- #: includes/settings/wcj-settings-purchase-data.php:103
2140
- #: includes/settings/wcj-settings-purchase-data.php:110
2141
- #: includes/settings/wcj-settings-purchase-data.php:117
2142
- #: includes/settings/wcj-settings-purchase-data.php:185
2143
- #: includes/settings/wcj-settings-related-products.php:95
2144
- #: includes/settings/wcj-settings-related-products.php:102
2145
- #: includes/settings/wcj-settings-related-products.php:109
2146
- #: includes/settings/wcj-settings-related-products.php:139
2147
- #: includes/settings/wcj-settings-shipping-calculator.php:20
2148
- #: includes/settings/wcj-settings-shipping-calculator.php:27
2149
- #: includes/settings/wcj-settings-shipping-calculator.php:34
2150
- #: includes/settings/wcj-settings-shipping-calculator.php:41
2151
- #: includes/settings/wcj-settings-shipping-options.php:53
2152
- #: includes/settings/wcj-settings-shipping.php:24
2153
- #: includes/settings/wcj-settings-sku.php:47
2154
- #: includes/settings/wcj-settings-sku.php:150
2155
- #: includes/settings/wcj-settings-sku.php:158
2156
- #: includes/settings/wcj-settings-sku.php:173
2157
- #: includes/settings/wcj-settings-stock.php:30
2158
- #: includes/settings/wcj-settings-stock.php:43
2159
- #: includes/settings/wcj-settings-wholesale-price.php:22
2160
- #: includes/settings/wcj-settings-wholesale-price.php:29
2161
- #: includes/settings/wcj-settings-wholesale-price.php:36
2162
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:92
2163
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:35
2164
- #: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:17
2165
- msgid "Enable"
2166
- msgstr ""
2167
-
2168
- #: includes/class-wcj-price-labels.php:41
2169
- msgid "Hide on home page"
2170
- msgstr ""
2171
-
2172
- #: includes/class-wcj-price-labels.php:42
2173
- msgid "Hide on products page"
2174
- msgstr ""
2175
-
2176
- #: includes/class-wcj-price-labels.php:43
2177
- msgid "Hide on single"
2178
- msgstr ""
2179
-
2180
- #: includes/class-wcj-price-labels.php:44
2181
- msgid "Hide on all pages"
2182
- msgstr ""
2183
-
2184
- #: includes/class-wcj-price-labels.php:45
2185
- msgid "Hide on cart page only"
2186
- msgstr ""
2187
-
2188
- #: includes/class-wcj-price-labels.php:47
2189
- msgid "Hide for main price"
2190
- msgstr ""
2191
-
2192
- #: includes/class-wcj-price-labels.php:48
2193
- msgid "Hide for all variations"
2194
- msgstr ""
2195
-
2196
- #: includes/class-wcj-price-labels.php:134
2197
- msgid "Booster: Custom Price Labels"
2198
- msgstr ""
2199
-
2200
- #: includes/class-wcj-product-add-to-cart.php:24
2201
- msgid "Product Add to Cart"
2202
- msgstr ""
2203
-
2204
- #: includes/class-wcj-product-add-to-cart.php:25
2205
- msgid "Set any local url to redirect to on WooCommerce Add to Cart."
2206
- msgstr ""
2207
-
2208
- #: includes/class-wcj-product-add-to-cart.php:26
2209
- msgid "Automatically add to cart on product visit."
2210
- msgstr ""
2211
-
2212
- #: includes/class-wcj-product-add-to-cart.php:27
2213
- msgid "Display radio buttons instead of drop box for variable products."
2214
- msgstr ""
2215
-
2216
- #: includes/class-wcj-product-add-to-cart.php:28
2217
- msgid "Disable quantity input."
2218
- msgstr ""
2219
-
2220
- #: includes/class-wcj-product-add-to-cart.php:29
2221
- msgid "Disable add to cart button on per product basis."
2222
- msgstr ""
2223
-
2224
- #: includes/class-wcj-product-add-to-cart.php:30
2225
- msgid "Open external products on add to cart in new window."
2226
- msgstr ""
2227
-
2228
- #: includes/class-wcj-product-add-to-cart.php:31
2229
- msgid ""
2230
- "Replace Add to Cart button on archives with button from single product pages."
2231
- msgstr ""
2232
-
2233
- #: includes/class-wcj-product-add-to-cart.php:32
2234
- msgid "Customize Add to Cart messages."
2235
- msgstr ""
2236
-
2237
- #: includes/class-wcj-product-add-to-cart.php:142
2238
- #, php-format
2239
- msgctxt "Item name in quotes"
2240
- msgid "&ldquo;%s&rdquo;"
2241
- msgstr ""
2242
-
2243
- #: includes/class-wcj-product-add-to-cart.php:147
2244
- #, php-format
2245
- msgid "%s has been added to your cart."
2246
- msgid_plural "%s have been added to your cart."
2247
- msgstr[0] ""
2248
- msgstr[1] ""
2249
-
2250
- #: includes/class-wcj-product-add-to-cart.php:151
2251
- #: includes/settings/wcj-settings-product-add-to-cart.php:240
2252
- msgid "Continue shopping"
2253
- msgstr ""
2254
-
2255
- #: includes/class-wcj-product-add-to-cart.php:153
2256
- #: includes/settings/wcj-settings-product-add-to-cart.php:254
2257
- msgid "View cart"
2258
- msgstr ""
2259
-
2260
- #: includes/class-wcj-product-addons.php:28
2261
- msgid "Product Addons"
2262
- msgstr ""
2263
-
2264
- #: includes/class-wcj-product-addons.php:29
2265
- msgid "Add (paid/free/discount) addons to WooCommerce products."
2266
- msgstr ""
2267
-
2268
- #: includes/class-wcj-product-addons.php:100
2269
- msgid "Some of the required addons are not selected!"
2270
- msgstr ""
2271
-
2272
- #: includes/class-wcj-product-addons.php:115
2273
- msgid ""
2274
- "Booster: Free plugin's version is limited to only three products with per "
2275
- "product addons enabled at a time. You will need to get <a href=\"http://"
2276
- "booster.io/plus/\" target=\"_blank\">Booster Plus</a> to add unlimited "
2277
- "number of products with per product addons."
2278
- msgstr ""
2279
-
2280
- #: includes/class-wcj-product-bookings.php:25
2281
- msgid "Bookings"
2282
- msgstr ""
2283
-
2284
- #: includes/class-wcj-product-bookings.php:26
2285
- msgid "Add bookings products to WooCommerce."
2286
- msgstr ""
2287
-
2288
- #: includes/class-wcj-product-bookings.php:28
2289
- msgid ""
2290
- "When enabled, module will add new \"Booster: Bookings\" meta box to each "
2291
- "product's edit page."
2292
- msgstr ""
2293
-
2294
- #: includes/class-wcj-product-bookings.php:131
2295
- #: includes/class-wcj-product-bookings.php:225
2296
- #: includes/settings/wcj-settings-product-bookings.php:63
2297
- msgid "\"Date to\" must be after \"Date from\""
2298
- msgstr ""
2299
-
2300
- #: includes/class-wcj-product-bookings.php:144
2301
- #: includes/class-wcj-product-open-pricing.php:224
2302
- msgid "Read more"
2303
- msgstr ""
2304
-
2305
- #: includes/class-wcj-product-bookings.php:183
2306
- #: includes/settings/wcj-settings-product-bookings.php:35
2307
- msgid "Period"
2308
- msgstr ""
2309
-
2310
- #: includes/class-wcj-product-bookings.php:215
2311
- #: includes/settings/wcj-settings-product-bookings.php:49
2312
- msgid "\"Date from\" must be set"
2313
- msgstr ""
2314
-
2315
- #: includes/class-wcj-product-bookings.php:219
2316
- #: includes/settings/wcj-settings-product-bookings.php:56
2317
- msgid "\"Date to\" must be set"
2318
- msgstr ""
2319
-
2320
- #: includes/class-wcj-product-bookings.php:298
2321
- #: includes/settings/wcj-settings-product-bookings.php:21
2322
- msgid "Date from"
2323
- msgstr ""
2324
-
2325
- #: includes/class-wcj-product-bookings.php:302
2326
- #: includes/settings/wcj-settings-product-bookings.php:28
2327
- msgid "Date to"
2328
- msgstr ""
2329
-
2330
- #: includes/class-wcj-product-bookings.php:317
2331
- #: includes/settings/wcj-settings-product-bookings.php:42
2332
- msgid "/ day"
2333
- msgstr ""
2334
-
2335
- #: includes/class-wcj-product-bookings.php:385
2336
- msgid ""
2337
- "Booster: Free plugin's version is limited to only one bookings product "
2338
- "enabled at a time. You will need to get <a href=\"http://booster.io/plus/\" "
2339
- "target=\"_blank\">Booster Plus</a> to add unlimited number of bookings "
2340
- "products."
2341
- msgstr ""
2342
-
2343
- #: includes/class-wcj-product-bulk-meta-editor.php:25
2344
- #: includes/class-wcj-product-bulk-meta-editor.php:32
2345
- msgid "Product Bulk Meta Editor"
2346
- msgstr ""
2347
-
2348
- #: includes/class-wcj-product-bulk-meta-editor.php:26
2349
- msgid "Set WooCommerce products meta with bulk editor."
2350
- msgstr ""
2351
-
2352
- #: includes/class-wcj-product-bulk-meta-editor.php:33
2353
- msgid "Product Bulk Meta Editor Tool."
2354
- msgstr ""
2355
-
2356
- #: includes/class-wcj-product-bulk-meta-editor.php:164
2357
- msgid "Please enter meta key."
2358
- msgstr ""
2359
-
2360
- #: includes/class-wcj-product-bulk-meta-editor.php:184
2361
- #, php-format
2362
- msgid "Meta for <strong>%d</strong> was product(s) updated."
2363
- msgstr ""
2364
-
2365
- #: includes/class-wcj-product-bulk-meta-editor.php:187
2366
- #, php-format
2367
- msgid "Meta for <strong>%d</strong> product(s) was not updated."
2368
- msgstr ""
2369
-
2370
- #: includes/class-wcj-product-bulk-meta-editor.php:223
2371
- msgid "Meta key"
2372
- msgstr ""
2373
-
2374
- #: includes/class-wcj-product-bulk-meta-editor.php:225
2375
- #, php-format
2376
- msgid "for example %s"
2377
- msgstr ""
2378
-
2379
- #: includes/class-wcj-product-bulk-meta-editor.php:228
2380
- #: includes/settings/wcj-settings-wholesale-price.php:43
2381
- msgid "Show"
2382
- msgstr ""
2383
-
2384
- #: includes/class-wcj-product-bulk-meta-editor.php:232
2385
- #: includes/class-wcj-product-bulk-meta-editor.php:332
2386
- msgid "Meta"
2387
- msgstr ""
2388
-
2389
- #: includes/class-wcj-product-bulk-meta-editor.php:255
2390
- msgid ""
2391
- "Hold <strong>Control</strong> key to select multiple products. Press "
2392
- "<strong>Control</strong> + <strong>A</strong> to select all products."
2393
- msgstr ""
2394
-
2395
- #: includes/class-wcj-product-bulk-meta-editor.php:289
2396
- #: includes/settings/wcj-settings-export.php:91
2397
- #: includes/settings/wcj-settings-export.php:161
2398
- #: includes/settings/wcj-settings-export.php:240
2399
- #: includes/settings/wcj-settings-global-discount.php:59
2400
- #: includes/settings/wcj-settings-orders.php:110
2401
- #: includes/settings/wcj-settings-product-listings.php:217
2402
- msgid "Value"
2403
- msgstr ""
2404
-
2405
- #: includes/class-wcj-product-bulk-meta-editor.php:292
2406
- msgid "Set"
2407
- msgstr ""
2408
-
2409
- #: includes/class-wcj-product-bulk-meta-editor.php:295
2410
- msgid "Set Meta for All Products"
2411
- msgstr ""
2412
-
2413
- #: includes/class-wcj-product-bulk-meta-editor.php:312
2414
- msgid "Save all"
2415
- msgstr ""
2416
-
2417
- #: includes/class-wcj-product-bulk-meta-editor.php:315
2418
- msgid "Delete all"
2419
- msgstr ""
2420
-
2421
- #: includes/class-wcj-product-bulk-meta-editor.php:356
2422
- msgid "Save"
2423
- msgstr ""
2424
-
2425
- #: includes/class-wcj-product-bulk-meta-editor.php:381
2426
- #: includes/class-wcj-purchase-data.php:76
2427
- #: includes/export/class-wcj-fields-helper.php:280
2428
- #: includes/functions/wcj-reports-functions.php:25
2429
- #: includes/settings/wcj-settings-product-bulk-meta-editor.php:42
2430
- msgid "Product ID"
2431
- msgstr ""
2432
-
2433
- #: includes/class-wcj-product-bulk-meta-editor.php:384
2434
- #: includes/settings/wcj-settings-product-bulk-meta-editor.php:43
2435
- msgid "Product status"
2436
- msgstr ""
2437
-
2438
- #: includes/class-wcj-product-bulk-meta-editor.php:387
2439
- #: includes/settings/wcj-settings-product-bulk-meta-editor.php:44
2440
- msgid "Meta keys"
2441
- msgstr ""
2442
-
2443
- #: includes/class-wcj-product-bulk-meta-editor.php:409
2444
- msgid "Show all"
2445
- msgstr ""
2446
-
2447
- #: includes/class-wcj-product-bulk-price-converter.php:24
2448
- #: includes/class-wcj-product-bulk-price-converter.php:31
2449
- msgid "Bulk Price Converter"
2450
- msgstr ""
2451
-
2452
- #: includes/class-wcj-product-bulk-price-converter.php:25
2453
- msgid "Multiply all WooCommerce products prices by set value."
2454
- msgstr ""
2455
-
2456
- #: includes/class-wcj-product-bulk-price-converter.php:32
2457
- msgid "Bulk Price Converter Tool."
2458
- msgstr ""
2459
-
2460
- #: includes/class-wcj-product-bulk-price-converter.php:150
2461
- msgid "Price Type"
2462
- msgstr ""
2463
-
2464
- #: includes/class-wcj-product-bulk-price-converter.php:151
2465
- msgid "Original Price"
2466
- msgstr ""
2467
-
2468
- #: includes/class-wcj-product-bulk-price-converter.php:152
2469
- msgid "Modified Price"
2470
- msgstr ""
2471
-
2472
- #: includes/class-wcj-product-bulk-price-converter.php:205
2473
- msgid "Multiply value must be above zero."
2474
- msgstr ""
2475
-
2476
- #: includes/class-wcj-product-bulk-price-converter.php:212
2477
- msgid "Prices changed successfully!"
2478
- msgstr ""
2479
-
2480
- #: includes/class-wcj-product-bulk-price-converter.php:237
2481
- msgid "Multiply all product prices by"
2482
- msgstr ""
2483
-
2484
- #: includes/class-wcj-product-bulk-price-converter.php:245
2485
- msgid "Price type to modify"
2486
- msgstr ""
2487
-
2488
- #: includes/class-wcj-product-bulk-price-converter.php:247
2489
- msgid "Both"
2490
- msgstr ""
2491
-
2492
- #: includes/class-wcj-product-bulk-price-converter.php:249
2493
- msgid "Sale prices only"
2494
- msgstr ""
2495
-
2496
- #: includes/class-wcj-product-bulk-price-converter.php:251
2497
- msgid "Regular prices only"
2498
- msgstr ""
2499
-
2500
- #: includes/class-wcj-product-bulk-price-converter.php:258
2501
- msgid "Products category"
2502
- msgstr ""
2503
-
2504
- #: includes/class-wcj-product-bulk-price-converter.php:260
2505
- #: includes/shortcodes/class-wcj-products-shortcodes.php:302
2506
- msgid "Any"
2507
- msgstr ""
2508
-
2509
- #: includes/class-wcj-product-bulk-price-converter.php:262
2510
- msgid "None"
2511
- msgstr ""
2512
-
2513
- #: includes/class-wcj-product-bulk-price-converter.php:269
2514
- msgid "\"Pretty prices\" threshold"
2515
- msgstr ""
2516
-
2517
- #: includes/class-wcj-product-bulk-price-converter.php:273
2518
- msgid "Leave zero to disable"
2519
- msgstr ""
2520
-
2521
- #: includes/class-wcj-product-bulk-price-converter.php:278
2522
- msgid "Preview Prices"
2523
- msgstr ""
2524
-
2525
- #: includes/class-wcj-product-bulk-price-converter.php:285
2526
- msgid "Change Prices"
2527
- msgstr ""
2528
-
2529
- #: includes/class-wcj-product-by-country.php:25
2530
- msgid "Product Visibility by Country"
2531
- msgstr ""
2532
-
2533
- #: includes/class-wcj-product-by-country.php:26
2534
- msgid "Display WooCommerce products by customer's country."
2535
- msgstr ""
2536
-
2537
- #: includes/class-wcj-product-by-country.php:28
2538
- msgid ""
2539
- "When enabled, module will add new \"Booster: Product Visibility by Country\" "
2540
- "meta box to each product's edit page."
2541
- msgstr ""
2542
-
2543
- #: includes/class-wcj-product-by-country.php:63
2544
- msgid "Countries"
2545
- msgstr ""
2546
-
2547
- #: includes/class-wcj-product-by-date.php:29
2548
- msgid "Product Availability by Date"
2549
- msgstr ""
2550
-
2551
- #: includes/class-wcj-product-by-date.php:30
2552
- msgid "WooCommerce product availability by date."
2553
- msgstr ""
2554
-
2555
- #: includes/class-wcj-product-by-date.php:95
2556
- #: includes/class-wcj-product-by-date.php:97
2557
- #: includes/settings/wcj-settings-product-by-date.php:87
2558
- msgid ""
2559
- "<p style=\"color:red;\">%product_title% is not available this month.</p>"
2560
- msgstr ""
2561
-
2562
- #: includes/class-wcj-product-by-date.php:98
2563
- #: includes/class-wcj-product-by-date.php:100
2564
- #: includes/settings/wcj-settings-product-by-date.php:75
2565
- msgid ""
2566
- "<p style=\"color:red;\">%product_title% is available only on %date_this_month"
2567
- "% this month.</p>"
2568
- msgstr ""
2569
-
2570
- #: includes/class-wcj-product-by-time.php:29
2571
- msgid "Product Availability by Time"
2572
- msgstr ""
2573
-
2574
- #: includes/class-wcj-product-by-time.php:30
2575
- msgid "WooCommerce product availability by time."
2576
- msgstr ""
2577
-
2578
- #: includes/class-wcj-product-by-time.php:91
2579
- #: includes/class-wcj-product-by-time.php:93
2580
- #: includes/settings/wcj-settings-product-by-time.php:87
2581
- msgid "<p style=\"color:red;\">%product_title% is not available today.</p>"
2582
- msgstr ""
2583
-
2584
- #: includes/class-wcj-product-by-time.php:94
2585
- #: includes/class-wcj-product-by-time.php:96
2586
- #: includes/settings/wcj-settings-product-by-time.php:75
2587
- msgid ""
2588
- "<p style=\"color:red;\">%product_title% is available only at %time_today% "
2589
- "today.</p>"
2590
- msgstr ""
2591
-
2592
- #: includes/class-wcj-product-by-user-role.php:26
2593
- msgid "Product Visibility by User Role"
2594
- msgstr ""
2595
-
2596
- #: includes/class-wcj-product-by-user-role.php:27
2597
- msgid "Display WooCommerce products by customer's user role."
2598
- msgstr ""
2599
-
2600
- #: includes/class-wcj-product-by-user-role.php:29
2601
- msgid ""
2602
- "When enabled, module will add new \"Booster: Product Visibility by User Role"
2603
- "\" meta box to each product's edit page."
2604
- msgstr ""
2605
-
2606
- #: includes/class-wcj-product-by-user.php:26
2607
- msgid "User Products"
2608
- msgstr ""
2609
-
2610
- #: includes/class-wcj-product-by-user.php:27
2611
- msgid "Let users add new WooCommerce products from frontend."
2612
- msgstr ""
2613
-
2614
- #: includes/class-wcj-product-by-user.php:29
2615
- msgid ""
2616
- "Use <strong>[wcj_product_add_new]</strong> shortcode to add product upload "
2617
- "form to frontend."
2618
- msgstr ""
2619
-
2620
- #: includes/class-wcj-product-by-user.php:154
2621
- #: includes/class-wcj-product-by-user.php:163
2622
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:313
2623
- msgid "Wrong user ID!"
2624
- msgstr ""
2625
-
2626
- #: includes/class-wcj-product-by-user.php:197
2627
- #: includes/admin/class-wcj-tools.php:74
2628
- #: includes/export/class-wcj-fields-helper.php:294
2629
- msgid "Status"
2630
- msgstr ""
2631
-
2632
- #: includes/class-wcj-product-by-user.php:197
2633
- #: includes/class-wcj-product-tabs.php:505
2634
- #: includes/gateways/class-wc-gateway-wcj-custom.php:66
2635
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:68
2636
- #: includes/settings/wcj-settings-export.php:75
2637
- #: includes/settings/wcj-settings-export.php:143
2638
- #: includes/settings/wcj-settings-export.php:224
2639
- #: includes/settings/wcj-settings-product-by-user.php:167
2640
- #: includes/settings/wcj-settings-product-tabs.php:44
2641
- #: includes/settings/wcj-settings-purchase-data.php:66
2642
- #: includes/settings/wcj-settings-related-products.php:15
2643
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:157
2644
- #: includes/shipping/class-wc-shipping-wcj-custom.php:116
2645
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:337
2646
- msgid "Title"
2647
- msgstr ""
2648
-
2649
- #: includes/class-wcj-product-custom-info.php:24
2650
- #: includes/admin/class-wc-settings-jetpack.php:416
2651
- #: includes/functions/wcj-general-functions.php:33
2652
- msgid "Product Info"
2653
- msgstr ""
2654
-
2655
- #: includes/class-wcj-product-custom-info.php:25
2656
- #: includes/class-wcj-product-info.php:102
2657
- msgid "Add additional info to WooCommerce category and single product pages."
2658
- msgstr ""
2659
-
2660
- #: includes/class-wcj-product-images.php:25
2661
- msgid "Product Images"
2662
- msgstr ""
2663
-
2664
- #: includes/class-wcj-product-images.php:26
2665
- msgid "Customize WooCommerce products images, thumbnails and sale flashes."
2666
- msgstr ""
2667
-
2668
- #: includes/class-wcj-product-images.php:204
2669
- #: includes/settings/wcj-settings-product-images.php:103
2670
- msgid "Sale!"
2671
- msgstr ""
2672
-
2673
- #: includes/class-wcj-product-info.php:101
2674
- msgid "Product Info V1"
2675
- msgstr ""
2676
-
2677
- #: includes/class-wcj-product-info.php:123
2678
- #: includes/settings/wcj-settings-offer-price.php:91
2679
- #: includes/settings/wcj-settings-product-custom-info.php:79
2680
- msgid "Before product"
2681
- msgstr ""
2682
-
2683
- #: includes/class-wcj-product-info.php:124
2684
- #: includes/settings/wcj-settings-product-custom-info.php:80
2685
- msgid "Before product title"
2686
- msgstr ""
2687
-
2688
- #: includes/class-wcj-product-info.php:125
2689
- #: includes/settings/wcj-settings-offer-price.php:92
2690
- #: includes/settings/wcj-settings-product-custom-info.php:83
2691
- msgid "After product"
2692
- msgstr ""
2693
-
2694
- #: includes/class-wcj-product-info.php:126
2695
- #: includes/settings/wcj-settings-product-custom-info.php:82
2696
- msgid "After product title"
2697
- msgstr ""
2698
-
2699
- #: includes/class-wcj-product-info.php:138
2700
- #: includes/settings/wcj-settings-offer-price.php:72
2701
- #: includes/settings/wcj-settings-product-custom-info.php:70
2702
- msgid "Inside single product summary"
2703
- msgstr ""
2704
-
2705
- #: includes/class-wcj-product-info.php:139
2706
- #: includes/settings/wcj-settings-offer-price.php:71
2707
- #: includes/settings/wcj-settings-product-custom-info.php:69
2708
- msgid "Before single product summary"
2709
- msgstr ""
2710
-
2711
- #: includes/class-wcj-product-info.php:140
2712
- #: includes/settings/wcj-settings-offer-price.php:73
2713
- #: includes/settings/wcj-settings-product-custom-info.php:71
2714
- msgid "After single product summary"
2715
- msgstr ""
2716
-
2717
- #: includes/class-wcj-product-info.php:261
2718
- #: includes/settings/wcj-settings-cart.php:51
2719
- #: includes/settings/wcj-settings-checkout-custom-info.php:47
2720
- #: includes/settings/wcj-settings-checkout-files-upload.php:51
2721
- #: includes/settings/wcj-settings-left-to-free-shipping.php:39
2722
- #: includes/settings/wcj-settings-left-to-free-shipping.php:74
2723
- #: includes/settings/wcj-settings-left-to-free-shipping.php:113
2724
- #: includes/settings/wcj-settings-mini-cart.php:46
2725
- #: includes/settings/wcj-settings-product-custom-info.php:62
2726
- #: includes/settings/wcj-settings-product-info.php:50
2727
- #: includes/settings/wcj-settings-product-info.php:83
2728
- #: includes/settings/wcj-settings-products-per-page.php:36
2729
- msgid "Position"
2730
- msgstr ""
2731
-
2732
- #: includes/class-wcj-product-info.php:272
2733
- #: includes/settings/wcj-settings-checkout-custom-fields.php:119
2734
- #: includes/settings/wcj-settings-product-info.php:61
2735
- #: includes/settings/wcj-settings-product-info.php:94
2736
- #: includes/settings/wcj-settings-product-tabs.php:51
2737
- msgid "Priority (i.e. Order)"
2738
- msgstr ""
2739
-
2740
- #: includes/class-wcj-product-info.php:279
2741
- msgid ""
2742
- "Number of product info fields. Click \"Save changes\" after you change this "
2743
- "number."
2744
- msgstr ""
2745
-
2746
- #: includes/class-wcj-product-info.php:301
2747
- msgid ""
2748
- "[wcj_product_you_save before=\"You save: <strong>\" hide_if_zero=\"yes\" "
2749
- "after=\"</strong>\"][wcj_product_you_save_percent hide_if_zero=\"yes\" "
2750
- "before=\" (\" after=\"%)\"]"
2751
- msgstr ""
2752
-
2753
- #: includes/class-wcj-product-info.php:302
2754
- msgid "[wcj_product_total_sales before=\"Total sales: \"]"
2755
- msgstr ""
2756
-
2757
- #: includes/class-wcj-product-input-fields.php:23
2758
- #: includes/input-fields/class-wcj-product-input-fields-per-product.php:128
2759
- msgid "Product Input Fields"
2760
- msgstr ""
2761
-
2762
- #: includes/class-wcj-product-input-fields.php:24
2763
- msgid "WooCommerce product input fields."
2764
- msgstr ""
2765
-
2766
- #: includes/class-wcj-product-listings.php:22
2767
- msgid "Product Listings"
2768
- msgstr ""
2769
-
2770
- #: includes/class-wcj-product-listings.php:23
2771
- msgid ""
2772
- "Change WooCommerce display options for shop and category pages: show/hide "
2773
- "categories count, exclude categories, show/hide empty categories."
2774
- msgstr ""
2775
-
2776
- #: includes/class-wcj-product-open-pricing.php:25
2777
- msgid "Product Open Pricing (Name Your Price)"
2778
- msgstr ""
2779
-
2780
- #: includes/class-wcj-product-open-pricing.php:26
2781
- msgid ""
2782
- "Let your WooCommerce store customers enter price for the product manually."
2783
- msgstr ""
2784
-
2785
- #: includes/class-wcj-product-open-pricing.php:69
2786
- msgid "Open Pricing"
2787
- msgstr ""
2788
-
2789
- #: includes/class-wcj-product-open-pricing.php:185
2790
- msgid ""
2791
- "Booster: Free plugin's version is limited to only one open pricing product "
2792
- "enabled at a time. You will need to get <a href=\"http://booster.io/plus/\" "
2793
- "target=\"_blank\">Booster Plus</a> to add unlimited number of open pricing "
2794
- "products."
2795
- msgstr ""
2796
-
2797
- #: includes/class-wcj-product-open-pricing.php:280
2798
- #: includes/settings/wcj-settings-product-open-pricing.php:60
2799
- msgid "Price is required!"
2800
- msgstr ""
2801
-
2802
- #: includes/class-wcj-product-open-pricing.php:284
2803
- #: includes/settings/wcj-settings-product-open-pricing.php:67
2804
- msgid "Entered price is too small!"
2805
- msgstr ""
2806
-
2807
- #: includes/class-wcj-product-open-pricing.php:290
2808
- #: includes/settings/wcj-settings-product-open-pricing.php:74
2809
- msgid "Entered price is too big!"
2810
- msgstr ""
2811
-
2812
- #: includes/class-wcj-product-open-pricing.php:347
2813
- #: includes/settings/wcj-settings-product-open-pricing.php:23
2814
- msgid "Name Your Price"
2815
- msgstr ""
2816
-
2817
- #: includes/class-wcj-product-price-by-formula.php:25
2818
- msgid "Product Price by Formula"
2819
- msgstr ""
2820
-
2821
- #: includes/class-wcj-product-price-by-formula.php:26
2822
- msgid "Set formula for automatic WooCommerce product price calculation."
2823
- msgstr ""
2824
-
2825
- #: includes/class-wcj-product-price-by-formula.php:105
2826
- msgid "Error in formula"
2827
- msgstr ""
2828
-
2829
- #: includes/class-wcj-product-price-by-formula.php:192
2830
- msgid ""
2831
- "Booster: Free plugin's version is limited to only one price by formula "
2832
- "product enabled at a time. You will need to get <a href=\"http://booster.io/"
2833
- "plus/\" target=\"_blank\">Booster Plus</a> to add unlimited number of price "
2834
- "by formula products."
2835
- msgstr ""
2836
-
2837
- #: includes/class-wcj-product-price-by-formula.php:224
2838
- msgid "Final Price Preview"
2839
- msgstr ""
2840
-
2841
- #: includes/class-wcj-product-tabs.php:24
2842
- msgid "Product Tabs"
2843
- msgstr ""
2844
-
2845
- #: includes/class-wcj-product-tabs.php:25
2846
- msgid ""
2847
- "Add custom product tabs - globally or per product. Customize or completely "
2848
- "remove WooCommerce default product tabs."
2849
- msgstr ""
2850
-
2851
- #: includes/class-wcj-product-tabs.php:372
2852
- msgid "Booster: Custom Tabs"
2853
- msgstr ""
2854
-
2855
- #: includes/class-wcj-product-tabs.php:489
2856
- msgid "Total number of custom tabs"
2857
- msgstr ""
2858
-
2859
- #: includes/class-wcj-product-tabs.php:495
2860
- #: includes/input-fields/class-wcj-product-input-fields-per-product.php:154
2861
- msgid "Click \"Update\" product after you change this number."
2862
- msgstr ""
2863
-
2864
- #: includes/class-wcj-product-tabs.php:510
2865
- #: includes/settings/wcj-settings-related-products.php:49
2866
- #: includes/settings/wcj-settings-related-products.php:74
2867
- msgid "Order"
2868
- msgstr ""
2869
-
2870
- #: includes/class-wcj-product-tabs.php:515
2871
- #: includes/settings/wcj-settings-cart.php:44
2872
- #: includes/settings/wcj-settings-checkout-custom-info.php:40
2873
- #: includes/settings/wcj-settings-left-to-free-shipping.php:30
2874
- #: includes/settings/wcj-settings-left-to-free-shipping.php:65
2875
- #: includes/settings/wcj-settings-left-to-free-shipping.php:104
2876
- #: includes/settings/wcj-settings-mini-cart.php:39
2877
- #: includes/settings/wcj-settings-product-custom-info.php:54
2878
- #: includes/settings/wcj-settings-product-tabs.php:57
2879
- msgid "Content"
2880
- msgstr ""
2881
-
2882
- #: includes/class-wcj-product-tabs.php:520
2883
- #: includes/settings/wcj-settings-product-tabs.php:65
2884
- msgid "Link"
2885
- msgstr ""
2886
-
2887
- #: includes/class-wcj-product-tabs.php:522
2888
- #: includes/settings/wcj-settings-product-tabs.php:66
2889
- msgid ""
2890
- "If you wish to forward tab to new link, enter it here. In this case content "
2891
- "is ignored. Leave blank to show content."
2892
- msgstr ""
2893
-
2894
- #: includes/class-wcj-product-tabs.php:526
2895
- #: includes/settings/wcj-settings-product-tabs.php:73
2896
- msgid "Link - Open in New Window"
2897
- msgstr ""
2898
-
2899
- #: includes/class-wcj-product-tabs.php:529
2900
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:118
2901
- #: includes/settings/wcj-settings-checkout-custom-fields.php:172
2902
- #: includes/settings/wcj-settings-orders.php:123
2903
- #: includes/settings/meta-box/wcj-settings-meta-box-custom-css.php:20
2904
- #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:20
2905
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:35
2906
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:97
2907
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:21
2908
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:43
2909
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:57
2910
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:67
2911
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:19
2912
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:41
2913
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:89
2914
- #: includes/settings/meta-box/wcj-settings-meta-box-product-bookings.php:20
2915
- #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:33
2916
- #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:43
2917
- #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:53
2918
- #: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:20
2919
- #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:19
2920
- #: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:23
2921
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:32
2922
- #: includes/widgets/class-wcj-widget-country-switcher.php:88
2923
- msgid "No"
2924
- msgstr ""
2925
-
2926
- #: includes/class-wcj-product-tabs.php:530
2927
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:110
2928
- #: includes/settings/wcj-settings-checkout-custom-fields.php:166
2929
- #: includes/settings/wcj-settings-eu-vat-number.php:50
2930
- #: includes/settings/wcj-settings-eu-vat-number.php:57
2931
- #: includes/settings/wcj-settings-eu-vat-number.php:75
2932
- #: includes/settings/wcj-settings-eu-vat-number.php:102
2933
- #: includes/settings/wcj-settings-eu-vat-number.php:109
2934
- #: includes/settings/wcj-settings-eu-vat-number.php:128
2935
- #: includes/settings/meta-box/wcj-settings-meta-box-custom-css.php:19
2936
- #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:19
2937
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:34
2938
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:96
2939
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:20
2940
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:42
2941
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:56
2942
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:66
2943
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:18
2944
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:40
2945
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:88
2946
- #: includes/settings/meta-box/wcj-settings-meta-box-product-bookings.php:19
2947
- #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:32
2948
- #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:42
2949
- #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:52
2950
- #: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:19
2951
- #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:18
2952
- #: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:24
2953
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:31
2954
- #: includes/widgets/class-wcj-widget-country-switcher.php:89
2955
- msgid "Yes"
2956
- msgstr ""
2957
-
2958
- #: includes/class-wcj-product-tabs.php:538
2959
- #: includes/settings/wcj-settings-checkout-core-fields.php:30
2960
- #: includes/settings/wcj-settings-currency-exchange-rates.php:141
2961
- #: includes/settings/wcj-settings-pdf-invoicing.php:21
2962
- #: includes/settings/wcj-settings-product-add-to-cart.php:64
2963
- #: includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php:19
2964
- #: includes/settings/meta-box/wcj-settings-meta-box-product-by-time.php:19
2965
- msgid "Disabled"
2966
- msgstr ""
2967
-
2968
- #: includes/class-wcj-product-tabs.php:541
2969
- #: includes/settings/wcj-settings-product-tabs.php:43
2970
- #: includes/settings/wcj-settings-product-tabs.php:212
2971
- msgid "Custom Product Tab"
2972
- msgstr ""
2973
-
2974
- #: includes/class-wcj-products-per-page.php:28
2975
- msgid "Products per Page"
2976
- msgstr ""
2977
-
2978
- #: includes/class-wcj-products-per-page.php:29
2979
- msgid "Add \"products per page\" selector to WooCommerce."
2980
- msgstr ""
2981
-
2982
- #: includes/class-wcj-products-per-page.php:92
2983
- #: includes/settings/wcj-settings-products-per-page.php:63
2984
- msgid ""
2985
- "Products <strong>%from% - %to%</strong> from <strong>%total%</strong>. "
2986
- "Products on page %select_form%"
2987
- msgstr ""
2988
-
2989
- #: includes/class-wcj-products-xml.php:26
2990
- msgid "Products XML"
2991
- msgstr ""
2992
-
2993
- #: includes/class-wcj-products-xml.php:27
2994
- msgid "WooCommerce products XML feed."
2995
- msgstr ""
2996
-
2997
- #: includes/class-wcj-products-xml.php:94
2998
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:211
2999
- msgid "Once Weekly"
3000
- msgstr ""
3001
-
3002
- #: includes/class-wcj-products-xml.php:98
3003
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:215
3004
- msgid "Once a Minute"
3005
- msgstr ""
3006
-
3007
- #: includes/class-wcj-products-xml.php:110
3008
- msgid "Products XML file created successfully."
3009
- msgstr ""
3010
-
3011
- #: includes/class-wcj-products-xml.php:120
3012
- msgid "An error has occurred while creating products XML file."
3013
- msgstr ""
3014
-
3015
- #: includes/class-wcj-purchase-data.php:27
3016
- msgid "Cost of Goods"
3017
- msgstr ""
3018
-
3019
- #: includes/class-wcj-purchase-data.php:28
3020
- msgid "Save WooCommerce product purchase costs data for admin reports."
3021
- msgstr ""
3022
-
3023
- #: includes/class-wcj-purchase-data.php:34
3024
- msgid "\"WooCommerce Cost of Goods\" Data Import"
3025
- msgstr ""
3026
-
3027
- #: includes/class-wcj-purchase-data.php:35
3028
- msgid "Import products costs from \"WooCommerce Cost of Goods\"."
3029
- msgstr ""
3030
-
3031
- #: includes/class-wcj-purchase-data.php:77
3032
- msgid "Product Title"
3033
- msgstr ""
3034
-
3035
- #: includes/class-wcj-purchase-data.php:78
3036
- msgid "WooCommerce Cost of Goods (source)"
3037
- msgstr ""
3038
-
3039
- #: includes/class-wcj-purchase-data.php:79
3040
- msgid "Booster: Product cost (destination)"
3041
- msgstr ""
3042
-
3043
- #: includes/class-wcj-purchase-data.php:92
3044
- #: includes/admin/class-wc-settings-jetpack.php:276
3045
- msgid "Import"
3046
- msgstr ""
3047
-
3048
- #: includes/class-wcj-purchase-data.php:114
3049
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:105
3050
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:172
3051
- #: includes/shipping/class-wc-shipping-wcj-custom.php:131
3052
- #: includes/shipping/class-wc-shipping-wcj-custom.php:173
3053
- msgid "Cost"
3054
- msgstr ""
3055
-
3056
- #: includes/class-wcj-purchase-data.php:117
3057
- #: includes/class-wcj-purchase-data.php:150
3058
- #: includes/class-wcj-purchase-data.php:235
3059
- #: includes/functions/wcj-reports-functions.php:29
3060
- #: includes/settings/wcj-settings-purchase-data.php:133
3061
- #: includes/settings/wcj-settings-purchase-data.php:161
3062
- msgid "Profit"
3063
- msgstr ""
3064
-
3065
- #: includes/class-wcj-purchase-data.php:153
3066
- #: includes/settings/wcj-settings-purchase-data.php:142
3067
- #: includes/settings/wcj-settings-purchase-data.php:168
3068
- msgid "Purchase Cost"
3069
- msgstr ""
3070
-
3071
- #: includes/class-wcj-purchase-data.php:233
3072
- msgid "Selling"
3073
- msgstr ""
3074
-
3075
- #: includes/class-wcj-purchase-data.php:234
3076
- msgid "Buying"
3077
- msgstr ""
3078
-
3079
- #: includes/class-wcj-purchase-data.php:243
3080
- msgid "Report"
3081
- msgstr ""
3082
-
3083
- #: includes/class-wcj-related-products.php:38
3084
- #: includes/settings/wcj-settings-free-price.php:20
3085
- #: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:28
3086
- msgid "Related Products"
3087
- msgstr ""
3088
-
3089
- #: includes/class-wcj-related-products.php:39
3090
- msgid ""
3091
- "Change displayed WooCommerce related products number, columns, order; relate "
3092
- "by tag, category, product attribute or manually on per product basis. Hide "
3093
- "related products completely."
3094
- msgstr ""
3095
-
3096
- #: includes/class-wcj-related-products.php:42
3097
- #, php-format
3098
- msgid ""
3099
- "You may need to <a class=\"button\" href=\"%s\">clear all products "
3100
- "transients</a> to immediately see results on frontend after changing "
3101
- "module's settings. Alternatively you can just update each product "
3102
- "individually to clear its transients."
3103
- msgstr ""
3104
-
3105
- #: includes/class-wcj-reports.php:33
3106
- msgid "WooCommerce stock, sales, customers etc. reports."
3107
- msgstr ""
3108
-
3109
- #: includes/class-wcj-reports.php:72
3110
- msgid "Booster: More Ranges - Months"
3111
- msgstr ""
3112
-
3113
- #: includes/class-wcj-reports.php:74 includes/class-wcj-reports.php:118
3114
- msgid "Select Range"
3115
- msgstr ""
3116
-
3117
- #: includes/class-wcj-reports.php:116
3118
- msgid "Booster: More Ranges"
3119
- msgstr ""
3120
-
3121
- #: includes/class-wcj-reports.php:207
3122
- msgid "Booster: Product Sales (Daily)"
3123
- msgstr ""
3124
-
3125
- #: includes/class-wcj-reports.php:214
3126
- msgid "Booster: Product Sales (Monthly)"
3127
- msgstr ""
3128
-
3129
- #: includes/class-wcj-reports.php:221
3130
- msgid "Booster: Monthly Sales (with Currency Conversion)"
3131
- msgstr ""
3132
-
3133
- #: includes/class-wcj-reports.php:236
3134
- msgid "Booster: All in stock"
3135
- msgstr ""
3136
-
3137
- #: includes/class-wcj-reports.php:243
3138
- msgid "Booster: Understocked"
3139
- msgstr ""
3140
-
3141
- #: includes/class-wcj-reports.php:250
3142
- msgid "Booster: Overstocked"
3143
- msgstr ""
3144
-
3145
- #: includes/class-wcj-reports.php:265
3146
- msgid "Booster: Customers by Country"
3147
- msgstr ""
3148
-
3149
- #: includes/class-wcj-reports.php:272
3150
- msgid "Booster: Customers by Country Sets"
3151
- msgstr ""
3152
-
3153
- #: includes/class-wcj-shipping-by-user-role.php:25
3154
- msgid "Shipping Methods by User Role"
3155
- msgstr ""
3156
-
3157
- #: includes/class-wcj-shipping-by-user-role.php:26
3158
- msgid ""
3159
- "Set user roles to include/exclude for WooCommerce shipping methods to show "
3160
- "up."
3161
- msgstr ""
3162
-
3163
- #: includes/class-wcj-shipping-calculator.php:23
3164
- msgid "Shipping Calculator"
3165
- msgstr ""
3166
-
3167
- #: includes/class-wcj-shipping-calculator.php:24
3168
- msgid "Customize WooCommerce shipping calculator on cart page."
3169
- msgstr ""
3170
-
3171
- #: includes/class-wcj-shipping-options.php:25
3172
- msgid "Shipping Options"
3173
- msgstr ""
3174
-
3175
- #: includes/class-wcj-shipping-options.php:26
3176
- msgid "Add descriptions and icons to shipping methods on frontend."
3177
- msgstr ""
3178
-
3179
- #: includes/class-wcj-shipping-options.php:27
3180
- msgid "Hide WooCommerce shipping when free is available."
3181
- msgstr ""
3182
-
3183
- #: includes/class-wcj-shipping-options.php:28
3184
- msgid "Grant free shipping on per product basis."
3185
- msgstr ""
3186
-
3187
- #: includes/class-wcj-shipping-options.php:171
3188
- msgid "Booster: Hide when free is available"
3189
- msgstr ""
3190
-
3191
- #: includes/class-wcj-shipping-options.php:179
3192
- #: includes/settings/wcj-settings-shipping-options.php:28
3193
- msgid ""
3194
- "Available options: hide all; hide all except \"Local Pickup\"; hide \"Flat "
3195
- "Rate\" only."
3196
- msgstr ""
3197
-
3198
- #: includes/class-wcj-shipping-options.php:183
3199
- #: includes/settings/wcj-settings-shipping-options.php:32
3200
- msgid "Hide all"
3201
- msgstr ""
3202
-
3203
- #: includes/class-wcj-shipping-options.php:184
3204
- #: includes/settings/wcj-settings-shipping-options.php:33
3205
- msgid "Hide all except \"Local Pickup\""
3206
- msgstr ""
3207
-
3208
- #: includes/class-wcj-shipping-options.php:185
3209
- #: includes/settings/wcj-settings-shipping-options.php:34
3210
- msgid "Hide \"Flat Rate\" only"
3211
- msgstr ""
3212
-
3213
- #: includes/class-wcj-shipping.php:23
3214
- #: includes/settings/wcj-settings-shipping.php:16
3215
- #: includes/settings/wcj-settings-shipping.php:23
3216
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:160
3217
- #: includes/shipping/class-wc-shipping-wcj-custom.php:119
3218
- msgid "Custom Shipping"
3219
- msgstr ""
3220
-
3221
- #: includes/class-wcj-shipping.php:24
3222
- msgid "Add multiple custom shipping methods to WooCommerce."
3223
- msgstr ""
3224
-
3225
- #: includes/class-wcj-sku.php:23 includes/class-wcj-sku.php:333
3226
- #: includes/export/class-wcj-fields-helper.php:283
3227
- msgid "SKU"
3228
- msgstr ""
3229
-
3230
- #: includes/class-wcj-sku.php:24
3231
- msgid "Generate WooCommerce SKUs automatically. Search by SKU on frontend."
3232
- msgstr ""
3233
-
3234
- #: includes/class-wcj-sku.php:26
3235
- msgid "When enabled - all new products will be given (autogenerated) SKU."
3236
- msgstr ""
3237
-
3238
- #: includes/class-wcj-sku.php:27
3239
- msgid ""
3240
- "If you wish to set SKUs for existing products, use \"Autogenerate SKUs\" "
3241
- "Tool."
3242
- msgstr ""
3243
-
3244
- #: includes/class-wcj-sku.php:32
3245
- msgid "Autogenerate SKUs"
3246
- msgstr ""
3247
-
3248
- #: includes/class-wcj-sku.php:33
3249
- msgid "The tool generates and sets product SKUs for existing products."
3250
- msgstr ""
3251
-
3252
- #: includes/class-wcj-sku.php:334
3253
- msgid "Old SKU"
3254
- msgstr ""
3255
-
3256
- #: includes/class-wcj-sku.php:340
3257
- msgid "SKUs generated and set successfully!"
3258
- msgstr ""
3259
-
3260
- #: includes/class-wcj-sku.php:349
3261
- msgid "Preview SKUs"
3262
- msgstr ""
3263
-
3264
- #: includes/class-wcj-sku.php:351
3265
- msgid "Set SKUs"
3266
- msgstr ""
3267
-
3268
- #: includes/class-wcj-sorting.php:24
3269
- msgid "Sorting"
3270
- msgstr ""
3271
-
3272
- #: includes/class-wcj-sorting.php:25
3273
- msgid ""
3274
- "Add more WooCommerce sorting options; rename or remove default sorting "
3275
- "options; rearrange sorting options on frontend."
3276
- msgstr ""
3277
-
3278
- #: includes/class-wcj-sorting.php:166
3279
- msgid "Default sorting"
3280
- msgstr ""
3281
-
3282
- #: includes/class-wcj-sorting.php:167
3283
- msgid "Sort by popularity"
3284
- msgstr ""
3285
-
3286
- #: includes/class-wcj-sorting.php:168
3287
- msgid "Sort by average rating"
3288
- msgstr ""
3289
-
3290
- #: includes/class-wcj-sorting.php:169
3291
- msgid "Sort by newness"
3292
- msgstr ""
3293
-
3294
- #: includes/class-wcj-sorting.php:170
3295
- msgid "Sort by price: low to high"
3296
- msgstr ""
3297
-
3298
- #: includes/class-wcj-sorting.php:171
3299
- msgid "Sort by price: high to low"
3300
- msgstr ""
3301
-
3302
- #: includes/class-wcj-stock.php:27
3303
- msgid "WooCommerce products stock management."
3304
- msgstr ""
3305
-
3306
- #: includes/class-wcj-url-coupons.php:25
3307
- msgid "URL Coupons"
3308
- msgstr ""
3309
-
3310
- #: includes/class-wcj-url-coupons.php:26
3311
- msgid "WooCommerce URL coupons."
3312
- msgstr ""
3313
-
3314
- #: includes/class-wcj-wholesale-price.php:25
3315
- msgid "Wholesale Price"
3316
- msgstr ""
3317
-
3318
- #: includes/class-wcj-wholesale-price.php:26
3319
- msgid ""
3320
- "Set WooCommerce wholesale pricing depending on product quantity in cart (buy "
3321
- "more pay less)."
3322
- msgstr ""
3323
-
3324
- #: includes/class-wcj-wpml.php:24
3325
- msgid "Booster WPML"
3326
- msgstr ""
3327
-
3328
- #: includes/class-wcj-wpml.php:25
3329
- msgid "Booster for WooCommerce basic WPML support."
3330
- msgstr ""
3331
-
3332
- #: includes/class-wcj-wpml.php:50
3333
- msgid "File wpml-config.xml successfully regenerated!"
3334
- msgstr ""
3335
-
3336
- #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:81
3337
- msgid "Booster: Custom Add to Cart"
3338
- msgstr ""
3339
-
3340
- #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:97
3341
- msgid "Single product view"
3342
- msgstr ""
3343
-
3344
- #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:98
3345
- msgid "Product category (archive) view"
3346
- msgstr ""
3347
-
3348
- #: includes/admin/class-wc-settings-jetpack.php:166
3349
- #, php-format
3350
- msgid ""
3351
- "Please note that current <em>%s</em> module is deprecated and will be "
3352
- "removed in future updates. Please use <em>%s</em> module instead."
3353
- msgstr ""
3354
-
3355
- #: includes/admin/class-wc-settings-jetpack.php:171
3356
- msgid ""
3357
- "Module will be removed from the module's list as soon as you disable it."
3358
- msgstr ""
3359
-
3360
- #: includes/admin/class-wc-settings-jetpack.php:182
3361
- #, php-format
3362
- msgid ""
3363
- "Please note that <em>%s</em> module is currently under development. Until "
3364
- "stable module version is released, options can be changed or some options "
3365
- "can be moved to paid plugin version."
3366
- msgstr ""
3367
-
3368
- #: includes/admin/class-wc-settings-jetpack.php:244
3369
- msgid ""
3370
- "This section lets you export, import or reset all Booster's modules settings."
3371
- msgstr ""
3372
-
3373
- #: includes/admin/class-wc-settings-jetpack.php:273
3374
- msgid "Export all Booster's options to a file."
3375
- msgstr ""
3376
-
3377
- #: includes/admin/class-wc-settings-jetpack.php:278
3378
- msgid "Import all Booster's options from a file."
3379
- msgstr ""
3380
-
3381
- #: includes/admin/class-wc-settings-jetpack.php:281
3382
- msgid ""
3383
- "This will reset settings to defaults for all Booster modules. Are you sure?"
3384
- msgstr ""
3385
-
3386
- #: includes/admin/class-wc-settings-jetpack.php:281
3387
- msgid "Reset"
3388
- msgstr ""
3389
-
3390
- #: includes/admin/class-wc-settings-jetpack.php:282
3391
- msgid "Reset all Booster's options."
3392
- msgstr ""
3393
-
3394
- #: includes/admin/class-wc-settings-jetpack.php:298
3395
- msgid "Version"
3396
- msgstr ""
3397
-
3398
- #: includes/admin/class-wc-settings-jetpack.php:322
3399
- #: includes/admin/class-wc-settings-jetpack.php:329
3400
- msgid "Select All"
3401
- msgstr ""
3402
-
3403
- #: includes/admin/class-wc-settings-jetpack.php:323
3404
- #: includes/admin/class-wc-settings-jetpack.php:330
3405
- #: includes/admin/class-wcj-tools.php:72
3406
- msgid "Module"
3407
- msgstr ""
3408
-
3409
- #: includes/admin/class-wc-settings-jetpack.php:324
3410
- #: includes/admin/class-wc-settings-jetpack.php:331
3411
- #: includes/admin/class-wcj-tools.php:73
3412
- #: includes/export/class-wcj-fields-helper.php:293
3413
- #: includes/gateways/class-wc-gateway-wcj-custom.php:74
3414
- #: includes/settings/wcj-settings-eu-vat-number.php:34
3415
- #: includes/settings/wcj-settings-product-by-user.php:13
3416
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:179
3417
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:345
3418
- msgid "Description"
3419
- msgstr ""
3420
-
3421
- #: includes/admin/class-wc-settings-jetpack.php:376
3422
- msgid "No active modules found."
3423
- msgstr ""
3424
-
3425
- #: includes/admin/class-wc-settings-jetpack.php:379
3426
- msgid "Total Modules:"
3427
- msgstr ""
3428
-
3429
- #: includes/admin/class-wc-settings-jetpack.php:406
3430
- msgid "Autoload Booster's Options"
3431
- msgstr ""
3432
-
3433
- #: includes/admin/class-wc-settings-jetpack.php:408
3434
- msgid ""
3435
- "Choose if you want Booster's options to be autoloaded when calling "
3436
- "add_option. After saving this option, you need to Reset all Booster's "
3437
- "settings. Leave default value (i.e. Enabled) if not sure."
3438
- msgstr ""
3439
-
3440
- #: includes/admin/class-wc-settings-jetpack.php:413
3441
- msgid "Use List Instead of Comma Separated Text for Products in Settings"
3442
- msgstr ""
3443
-
3444
- #: includes/admin/class-wc-settings-jetpack.php:415
3445
- #, php-format
3446
- msgid "Supported modules: %s."
3447
- msgstr ""
3448
-
3449
- #: includes/admin/class-wcj-settings-custom-fields.php:187
3450
- #: includes/settings/wcj-settings-wpml.php:21
3451
- msgid "To use tools, module must be enabled."
3452
- msgstr ""
3453
-
3454
- #: includes/admin/class-wcj-settings-custom-fields.php:226
3455
- msgid "Save changes"
3456
- msgstr ""
3457
-
3458
- #: includes/admin/class-wcj-settings-manager.php:56
3459
- msgid "Please upload a file to import!"
3460
- msgstr ""
3461
-
3462
- #: includes/admin/class-wcj-settings-manager.php:64
3463
- #: includes/admin/class-wcj-settings-manager.php:69
3464
- msgid "Wrong file format!"
3465
- msgstr ""
3466
-
3467
- #: includes/admin/class-wcj-settings-manager.php:76
3468
- #, php-format
3469
- msgid "%d options successfully imported."
3470
- msgstr ""
3471
-
3472
- #: includes/admin/class-wcj-settings-manager.php:141
3473
- #, php-format
3474
- msgid "%d options successfully deleted."
3475
- msgstr ""
3476
-
3477
- #: includes/admin/class-wcj-tools.php:32
3478
- msgid "Booster for WooCommerce Tools"
3479
- msgstr ""
3480
-
3481
- #: includes/admin/class-wcj-tools.php:33
3482
- msgid "Booster Tools"
3483
- msgstr ""
3484
-
3485
- #: includes/admin/class-wcj-tools.php:51
3486
- msgid "Tools Dashboard"
3487
- msgstr ""
3488
-
3489
- #: includes/admin/class-wcj-tools.php:65
3490
- msgid "Booster for WooCommerce Tools - Dashboard"
3491
- msgstr ""
3492
-
3493
- #: includes/admin/class-wcj-tools.php:66
3494
- msgid ""
3495
- "This dashboard lets you check statuses and short descriptions of all "
3496
- "available Booster for WooCommerce tools. Tools can be enabled through "
3497
- "WooCommerce > Settings > Booster. Enabled tools will appear in the tabs menu "
3498
- "above."
3499
- msgstr ""
3500
-
3501
- #: includes/admin/class-wcj-tools.php:71
3502
- msgid "Tool"
3503
- msgstr ""
3504
-
3505
- #: includes/admin/wcj-modules-cats.php:16
3506
- msgid ""
3507
- "This dashboard lets you enable/disable any Booster's module. Each checkbox "
3508
- "comes with short module's description. Please visit <a href=\"http://booster."
3509
- "io\" target=\"_blank\">http://booster.io</a> for detailed info on each "
3510
- "feature."
3511
- msgstr ""
3512
-
3513
- #: includes/admin/wcj-modules-cats.php:26
3514
- msgid "Prices & Currencies"
3515
- msgstr ""
3516
-
3517
- #: includes/admin/wcj-modules-cats.php:27
3518
- msgid ""
3519
- "Multicurrency, Price Converter, Wholesale Pricing, Name You Price, Price by "
3520
- "User Role and more."
3521
- msgstr ""
3522
-
3523
- #: includes/admin/wcj-modules-cats.php:48
3524
- msgid "Button & Price Labels"
3525
- msgstr ""
3526
-
3527
- #: includes/admin/wcj-modules-cats.php:49
3528
- msgid "Add to Cart Labels, Call for Price, Custom Price Labels and more."
3529
- msgstr ""
3530
-
3531
- #: includes/admin/wcj-modules-cats.php:61
3532
- msgid ""
3533
- "Bookings, Crowdfunding Products, Product Addons and Input Fields, Product "
3534
- "Listings, Product Tabs and more."
3535
- msgstr ""
3536
-
3537
- #: includes/admin/wcj-modules-cats.php:89
3538
- msgid "Cart & Checkout"
3539
- msgstr ""
3540
-
3541
- #: includes/admin/wcj-modules-cats.php:90
3542
- msgid "Cart and Checkout Customization, Empty Cart Button, Mini Cart and more."
3543
- msgstr ""
3544
-
3545
- #: includes/admin/wcj-modules-cats.php:106
3546
- #: includes/settings/wcj-settings-payment-gateways-by-country.php:14
3547
- #: includes/settings/wcj-settings-payment-gateways-by-shipping.php:21
3548
- #: includes/settings/wcj-settings-payment-gateways-by-user-role.php:14
3549
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:65
3550
- msgid "Payment Gateways"
3551
- msgstr ""
3552
-
3553
- #: includes/admin/wcj-modules-cats.php:107
3554
- msgid ""
3555
- "Custom Payment Gateways, Gateways Currency, Gateways Fees and Discounts and "
3556
- "more."
3557
- msgstr ""
3558
-
3559
- #: includes/admin/wcj-modules-cats.php:122
3560
- msgid "Shipping & Orders"
3561
- msgstr ""
3562
-
3563
- #: includes/admin/wcj-modules-cats.php:123
3564
- msgid ""
3565
- "Order Custom Statuses, Order Minimum Amount, Order Numbers, Custom Shipping "
3566
- "Methods and more."
3567
- msgstr ""
3568
-
3569
- #: includes/admin/wcj-modules-cats.php:140
3570
- msgid "PDF Invoicing & Packing Slips"
3571
- msgstr ""
3572
-
3573
- #: includes/admin/wcj-modules-cats.php:141
3574
- msgid "PDF Documents"
3575
- msgstr ""
3576
-
3577
- #: includes/admin/wcj-modules-cats.php:156
3578
- msgid "Emails & Misc."
3579
- msgstr ""
3580
-
3581
- #: includes/admin/wcj-modules-cats.php:157
3582
- msgid "Emails, Reports, Export, Admin Tools, General Options and more."
3583
- msgstr ""
3584
-
3585
- #: includes/classes/class-wcj-module.php:94
3586
- #, php-format
3587
- msgid ""
3588
- "Booster: Free plugin's version is limited to only one \"%1$s\" product with "
3589
- "settings on per product basis enabled at a time. You will need to get <a "
3590
- "href=\"%2$s\" target=\"_blank\">Booster Plus</a> to add unlimited number of "
3591
- "\"%1$s\" products."
3592
- msgstr ""
3593
-
3594
- #: includes/classes/class-wcj-module.php:428
3595
- msgid "Back to Module Settings"
3596
- msgstr ""
3597
-
3598
- #: includes/classes/class-wcj-module.php:446
3599
- #: includes/settings/wcj-settings-wpml.php:20
3600
- msgid "Module Tools"
3601
- msgstr ""
3602
-
3603
- #: includes/classes/class-wcj-module.php:519
3604
- #: includes/settings/wcj-settings-checkout-core-fields.php:23
3605
- msgid "enabled"
3606
- msgstr ""
3607
-
3608
- #: includes/classes/class-wcj-module.php:520
3609
- msgid "disabled"
3610
- msgstr ""
3611
-
3612
- #: includes/classes/class-wcj-module.php:528
3613
- #: includes/settings/wcj-settings-product-tabs.php:133
3614
- #: includes/settings/wcj-settings-product-tabs.php:141
3615
- #: includes/settings/wcj-settings-product-tabs.php:149
3616
- #: includes/settings/wcj-settings-product-tabs.php:157
3617
- msgid "Deprecated"
3618
- msgstr ""
3619
-
3620
- #: includes/classes/class-wcj-module.php:566
3621
- msgid "Reset Settings"
3622
- msgstr ""
3623
-
3624
- #: includes/classes/class-wcj-module.php:572
3625
- msgid "Reset Module to Default Settings"
3626
- msgstr ""
3627
-
3628
- #: includes/classes/class-wcj-module.php:573
3629
- msgid "Reset Submodule to Default Settings"
3630
- msgstr ""
3631
-
3632
- #: includes/classes/class-wcj-module.php:577
3633
- msgid "Reset settings"
3634
- msgstr ""
3635
-
3636
- #: includes/classes/class-wcj-module.php:611
3637
- msgid "Module Options"
3638
- msgstr ""
3639
-
3640
- #: includes/classes/class-wcj-module.php:618
3641
- msgid "Enable Module"
3642
- msgstr ""
3643
-
3644
- #: includes/classes/class-wcj-tcpdf.php:34
3645
- #: includes/settings/wcj-settings-pdf-invoicing-footer.php:30
3646
- msgid "Page %page_number% / %total_pages%"
3647
- msgstr ""
3648
-
3649
- #: includes/emails/class-wc-email-wcj-custom.php:30
3650
- #: includes/settings/wcj-settings-emails.php:37
3651
- #: includes/settings/wcj-settings-pdf-invoicing-emails.php:31
3652
- #: includes/settings/wcj-settings-shipping.php:63
3653
- #: includes/shipping/class-wc-shipping-wcj-custom.php:46
3654
- msgid "Custom"
3655
- msgstr ""
3656
-
3657
- #: includes/emails/class-wc-email-wcj-custom.php:31
3658
- msgid ""
3659
- "Custom emails are sent to the recipient list when selected triggers are "
3660
- "called."
3661
- msgstr ""
3662
-
3663
- #: includes/emails/class-wc-email-wcj-custom.php:33
3664
- msgid "Custom Heading"
3665
- msgstr ""
3666
-
3667
- #: includes/emails/class-wc-email-wcj-custom.php:34
3668
- msgid "[{site_title}] Custom Subject - Order ({order_number}) - {order_date}"
3669
- msgstr ""
3670
-
3671
- #: includes/emails/class-wc-email-wcj-custom.php:251
3672
- #, php-format
3673
- msgid "New order (%s)"
3674
- msgstr ""
3675
-
3676
- #: includes/emails/class-wc-email-wcj-custom.php:252
3677
- #, php-format
3678
- msgid "Order status updated to %s"
3679
- msgstr ""
3680
-
3681
- #: includes/emails/class-wc-email-wcj-custom.php:255
3682
- #, php-format
3683
- msgid "Order status %s to %s"
3684
- msgstr ""
3685
-
3686
- #: includes/emails/class-wc-email-wcj-custom.php:262
3687
- #: includes/gateways/class-wc-gateway-wcj-custom.php:59
3688
- #: includes/settings/wcj-settings-checkout-custom-fields.php:68
3689
- #: includes/settings/wcj-settings-product-listings.php:179
3690
- #: includes/settings/wcj-settings-product-listings.php:237
3691
- #: includes/shipping/class-wc-shipping-wcj-custom.php:110
3692
- msgid "Enable/Disable"
3693
- msgstr ""
3694
-
3695
- #: includes/emails/class-wc-email-wcj-custom.php:264
3696
- msgid "Enable this email notification"
3697
- msgstr ""
3698
-
3699
- #: includes/emails/class-wc-email-wcj-custom.php:268
3700
- msgid "Trigger(s)"
3701
- msgstr ""
3702
-
3703
- #: includes/emails/class-wc-email-wcj-custom.php:272
3704
- msgid ""
3705
- "Please note, that all new orders in WooCommerce by default are created with "
3706
- "Pending Payment status. If you want to change the default order status - you "
3707
- "can use Booster's \"Order Custom Statuses\" module (in WooCommerce > "
3708
- "Settings > Booster > Shipping & Orders > Order Custom Statuses)."
3709
- msgstr ""
3710
-
3711
- #: includes/emails/class-wc-email-wcj-custom.php:275
3712
- msgid "New order (Any status)"
3713
- msgstr ""
3714
-
3715
- #: includes/emails/class-wc-email-wcj-custom.php:280
3716
- msgid "Reset password notification"
3717
- msgstr ""
3718
-
3719
- #: includes/emails/class-wc-email-wcj-custom.php:281
3720
- msgid "Order fully refunded notification"
3721
- msgstr ""
3722
-
3723
- #: includes/emails/class-wc-email-wcj-custom.php:282
3724
- msgid "Order partially refunded notification"
3725
- msgstr ""
3726
-
3727
- #: includes/emails/class-wc-email-wcj-custom.php:283
3728
- msgid "New customer note notification"
3729
- msgstr ""
3730
-
3731
- #: includes/emails/class-wc-email-wcj-custom.php:284
3732
- msgid "Low stock notification"
3733
- msgstr ""
3734
-
3735
- #: includes/emails/class-wc-email-wcj-custom.php:285
3736
- msgid "No stock notification"
3737
- msgstr ""
3738
-
3739
- #: includes/emails/class-wc-email-wcj-custom.php:286
3740
- msgid "Product on backorder notification"
3741
- msgstr ""
3742
-
3743
- #: includes/emails/class-wc-email-wcj-custom.php:287
3744
- msgid "Created customer notification"
3745
- msgstr ""
3746
-
3747
- #: includes/emails/class-wc-email-wcj-custom.php:295
3748
- msgid "Recipient(s)"
3749
- msgstr ""
3750
-
3751
- #: includes/emails/class-wc-email-wcj-custom.php:297
3752
- #, php-format
3753
- msgid ""
3754
- "Enter recipients (comma separated) for this email. Defaults to <code>%s</"
3755
- "code>."
3756
- msgstr ""
3757
-
3758
- #: includes/emails/class-wc-email-wcj-custom.php:297
3759
- msgid "Or enter <code>%customer%</code> to send to customer billing email."
3760
- msgstr ""
3761
-
3762
- #: includes/emails/class-wc-email-wcj-custom.php:302
3763
- msgid "Subject"
3764
- msgstr ""
3765
-
3766
- #: includes/emails/class-wc-email-wcj-custom.php:304
3767
- #, php-format
3768
- msgid ""
3769
- "This controls the email subject line. Leave blank to use the default "
3770
- "subject: <code>%s</code>."
3771
- msgstr ""
3772
-
3773
- #: includes/emails/class-wc-email-wcj-custom.php:309
3774
- msgid "Email Heading"
3775
- msgstr ""
3776
-
3777
- #: includes/emails/class-wc-email-wcj-custom.php:311
3778
- #, php-format
3779
- msgid ""
3780
- "This controls the main heading contained within the email notification. "
3781
- "Leave blank to use the default heading: <code>%s</code>."
3782
- msgstr ""
3783
-
3784
- #: includes/emails/class-wc-email-wcj-custom.php:316
3785
- msgid "Email type"
3786
- msgstr ""
3787
-
3788
- #: includes/emails/class-wc-email-wcj-custom.php:318
3789
- msgid "Choose which format of email to send."
3790
- msgstr ""
3791
-
3792
- #: includes/emails/class-wc-email-wcj-custom.php:324
3793
- msgid "HTML template"
3794
- msgstr ""
3795
-
3796
- #: includes/emails/class-wc-email-wcj-custom.php:326
3797
- #: includes/emails/class-wc-email-wcj-custom.php:335
3798
- msgid "You can use shortcodes here. E.g. Booster's order shortcodes."
3799
- msgstr ""
3800
-
3801
- #: includes/emails/class-wc-email-wcj-custom.php:333
3802
- msgid "Plain text template"
3803
- msgstr ""
3804
-
3805
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:22
3806
- #: includes/settings/wcj-settings-currency-exchange-rates.php:38
3807
- #: includes/settings/wcj-settings-products-xml.php:128
3808
- msgid "Update Every Minute"
3809
- msgstr ""
3810
-
3811
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:23
3812
- #: includes/settings/wcj-settings-currency-exchange-rates.php:39
3813
- #: includes/settings/wcj-settings-products-xml.php:129
3814
- msgid "Update Hourly"
3815
- msgstr ""
3816
-
3817
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:24
3818
- #: includes/settings/wcj-settings-currency-exchange-rates.php:40
3819
- #: includes/settings/wcj-settings-products-xml.php:130
3820
- msgid "Update Twice Daily"
3821
- msgstr ""
3822
-
3823
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:25
3824
- #: includes/settings/wcj-settings-currency-exchange-rates.php:41
3825
- #: includes/settings/wcj-settings-products-xml.php:131
3826
- msgid "Update Daily"
3827
- msgstr ""
3828
-
3829
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:26
3830
- #: includes/settings/wcj-settings-currency-exchange-rates.php:42
3831
- #: includes/settings/wcj-settings-products-xml.php:132
3832
- msgid "Update Weekly"
3833
- msgstr ""
3834
-
3835
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:186
3836
- msgid "Cron job: exchange rates successfully updated"
3837
- msgstr ""
3838
-
3839
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:188
3840
- msgid "Cron job: exchange rates not updated, as currency_from == currency_to"
3841
- msgstr ""
3842
-
3843
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:191
3844
- msgid "Cron job: exchange rates update failed"
3845
- msgstr ""
3846
-
3847
- #: includes/exchange-rates/class-wcj-exchange-rates.php:102
3848
- #, php-format
3849
- msgid "Grab %s rate from %s"
3850
- msgstr ""
3851
-
3852
- #: includes/export/class-wcj-fields-helper.php:34
3853
- msgid "Customer Nr."
3854
- msgstr ""
3855
-
3856
- #: includes/export/class-wcj-fields-helper.php:35
3857
- #: includes/export/class-wcj-fields-helper.php:131
3858
- #: includes/export/class-wcj-fields-helper.php:216
3859
- msgid "Billing Email"
3860
- msgstr ""
3861
-
3862
- #: includes/export/class-wcj-fields-helper.php:36
3863
- #: includes/export/class-wcj-fields-helper.php:121
3864
- #: includes/export/class-wcj-fields-helper.php:206
3865
- msgid "Billing First Name"
3866
- msgstr ""
3867
-
3868
- #: includes/export/class-wcj-fields-helper.php:37
3869
- #: includes/export/class-wcj-fields-helper.php:122
3870
- #: includes/export/class-wcj-fields-helper.php:207
3871
- msgid "Billing Last Name"
3872
- msgstr ""
3873
-
3874
- #: includes/export/class-wcj-fields-helper.php:38
3875
- #: includes/export/class-wcj-fields-helper.php:123
3876
- #: includes/export/class-wcj-fields-helper.php:208
3877
- msgid "Billing Company"
3878
- msgstr ""
3879
-
3880
- #: includes/export/class-wcj-fields-helper.php:39
3881
- #: includes/export/class-wcj-fields-helper.php:124
3882
- #: includes/export/class-wcj-fields-helper.php:209
3883
- msgid "Billing Address 1"
3884
- msgstr ""
3885
-
3886
- #: includes/export/class-wcj-fields-helper.php:40
3887
- #: includes/export/class-wcj-fields-helper.php:125
3888
- #: includes/export/class-wcj-fields-helper.php:210
3889
- msgid "Billing Address 2"
3890
- msgstr ""
3891
-
3892
- #: includes/export/class-wcj-fields-helper.php:41
3893
- #: includes/export/class-wcj-fields-helper.php:126
3894
- #: includes/export/class-wcj-fields-helper.php:211
3895
- msgid "Billing City"
3896
- msgstr ""
3897
-
3898
- #: includes/export/class-wcj-fields-helper.php:42
3899
- #: includes/export/class-wcj-fields-helper.php:127
3900
- #: includes/export/class-wcj-fields-helper.php:212
3901
- msgid "Billing State"
3902
- msgstr ""
3903
-
3904
- #: includes/export/class-wcj-fields-helper.php:43
3905
- #: includes/export/class-wcj-fields-helper.php:128
3906
- #: includes/export/class-wcj-fields-helper.php:213
3907
- msgid "Billing Postcode"
3908
- msgstr ""
3909
-
3910
- #: includes/export/class-wcj-fields-helper.php:45
3911
- #: includes/export/class-wcj-fields-helper.php:130
3912
- #: includes/export/class-wcj-fields-helper.php:215
3913
- msgid "Billing Phone"
3914
- msgstr ""
3915
-
3916
- #: includes/export/class-wcj-fields-helper.php:46
3917
- msgid "Last Order Date"
3918
- msgstr ""
3919
-
3920
- #: includes/export/class-wcj-fields-helper.php:76
3921
- msgid "First Name"
3922
- msgstr ""
3923
-
3924
- #: includes/export/class-wcj-fields-helper.php:77
3925
- msgid "Last Name"
3926
- msgstr ""
3927
-
3928
- #: includes/export/class-wcj-fields-helper.php:78
3929
- msgid "Login"
3930
- msgstr ""
3931
-
3932
- #: includes/export/class-wcj-fields-helper.php:79
3933
- msgid "Nicename"
3934
- msgstr ""
3935
-
3936
- #: includes/export/class-wcj-fields-helper.php:80
3937
- #: includes/export/class-wcj-fields-helper.php:295
3938
- #: includes/gateways/class-wc-gateway-wcj-custom.php:161
3939
- msgid "URL"
3940
- msgstr ""
3941
-
3942
- #: includes/export/class-wcj-fields-helper.php:81
3943
- #: includes/reports/wcj-class-reports-customers.php:92
3944
- msgid "Registered"
3945
- msgstr ""
3946
-
3947
- #: includes/export/class-wcj-fields-helper.php:82
3948
- msgid "Display Name"
3949
- msgstr ""
3950
-
3951
- #: includes/export/class-wcj-fields-helper.php:110
3952
- #: includes/export/class-wcj-fields-helper.php:193
3953
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:252
3954
- #: includes/settings/wcj-settings-order-numbers.php:26
3955
- msgid "Order ID"
3956
- msgstr ""
3957
-
3958
- #: includes/export/class-wcj-fields-helper.php:111
3959
- #: includes/export/class-wcj-fields-helper.php:194
3960
- msgid "Order Number"
3961
- msgstr ""
3962
-
3963
- #: includes/export/class-wcj-fields-helper.php:112
3964
- #: includes/export/class-wcj-fields-helper.php:195
3965
- msgid "Order Status"
3966
- msgstr ""
3967
-
3968
- #: includes/export/class-wcj-fields-helper.php:113
3969
- #: includes/export/class-wcj-fields-helper.php:196
3970
- msgid "Order Date"
3971
- msgstr ""
3972
-
3973
- #: includes/export/class-wcj-fields-helper.php:114
3974
- #: includes/export/class-wcj-fields-helper.php:197
3975
- msgid "Order Time"
3976
- msgstr ""
3977
-
3978
- #: includes/export/class-wcj-fields-helper.php:115
3979
- #: includes/export/class-wcj-fields-helper.php:198
3980
- msgid "Order Item Count"
3981
- msgstr ""
3982
-
3983
- #: includes/export/class-wcj-fields-helper.php:116
3984
- #: includes/export/class-wcj-fields-helper.php:201
3985
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:259
3986
- #: includes/settings/meta-box/wcj-settings-meta-box-orders.php:19
3987
- msgid "Order Currency"
3988
- msgstr ""
3989
-
3990
- #: includes/export/class-wcj-fields-helper.php:117
3991
- #: includes/export/class-wcj-fields-helper.php:202
3992
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:258
3993
- msgid "Order Total"
3994
- msgstr ""
3995
-
3996
- #: includes/export/class-wcj-fields-helper.php:118
3997
- #: includes/export/class-wcj-fields-helper.php:203
3998
- msgid "Order Total Tax"
3999
- msgstr ""
4000
-
4001
- #: includes/export/class-wcj-fields-helper.php:119
4002
- #: includes/export/class-wcj-fields-helper.php:204
4003
- msgid "Order Payment Method"
4004
- msgstr ""
4005
-
4006
- #: includes/export/class-wcj-fields-helper.php:120
4007
- #: includes/export/class-wcj-fields-helper.php:205
4008
- #: includes/settings/wcj-settings-checkout-custom-fields.php:133
4009
- msgid "Order Notes"
4010
- msgstr ""
4011
-
4012
- #: includes/export/class-wcj-fields-helper.php:132
4013
- #: includes/export/class-wcj-fields-helper.php:217
4014
- msgid "Shipping First Name"
4015
- msgstr ""
4016
-
4017
- #: includes/export/class-wcj-fields-helper.php:133
4018
- #: includes/export/class-wcj-fields-helper.php:218
4019
- msgid "Shipping Last Name"
4020
- msgstr ""
4021
-
4022
- #: includes/export/class-wcj-fields-helper.php:134
4023
- #: includes/export/class-wcj-fields-helper.php:219
4024
- msgid "Shipping Company"
4025
- msgstr ""
4026
-
4027
- #: includes/export/class-wcj-fields-helper.php:135
4028
- #: includes/export/class-wcj-fields-helper.php:220
4029
- msgid "Shipping Address 1"
4030
- msgstr ""
4031
-
4032
- #: includes/export/class-wcj-fields-helper.php:136
4033
- #: includes/export/class-wcj-fields-helper.php:221
4034
- msgid "Shipping Address 2"
4035
- msgstr ""
4036
-
4037
- #: includes/export/class-wcj-fields-helper.php:137
4038
- #: includes/export/class-wcj-fields-helper.php:222
4039
- msgid "Shipping City"
4040
- msgstr ""
4041
-
4042
- #: includes/export/class-wcj-fields-helper.php:138
4043
- #: includes/export/class-wcj-fields-helper.php:223
4044
- msgid "Shipping State"
4045
- msgstr ""
4046
-
4047
- #: includes/export/class-wcj-fields-helper.php:139
4048
- #: includes/export/class-wcj-fields-helper.php:224
4049
- msgid "Shipping Postcode"
4050
- msgstr ""
4051
-
4052
- #: includes/export/class-wcj-fields-helper.php:140
4053
- #: includes/export/class-wcj-fields-helper.php:225
4054
- msgid "Shipping Country"
4055
- msgstr ""
4056
-
4057
- #: includes/export/class-wcj-fields-helper.php:142
4058
- msgid "Item Name"
4059
- msgstr ""
4060
-
4061
- #: includes/export/class-wcj-fields-helper.php:143
4062
- msgid "Item Meta"
4063
- msgstr ""
4064
-
4065
- #: includes/export/class-wcj-fields-helper.php:144
4066
- msgid "Item Variation Meta"
4067
- msgstr ""
4068
-
4069
- #: includes/export/class-wcj-fields-helper.php:145
4070
- msgid "Item Quantity"
4071
- msgstr ""
4072
-
4073
- #: includes/export/class-wcj-fields-helper.php:146
4074
- msgid "Item Tax Class"
4075
- msgstr ""
4076
-
4077
- #: includes/export/class-wcj-fields-helper.php:147
4078
- msgid "Item Product ID"
4079
- msgstr ""
4080
-
4081
- #: includes/export/class-wcj-fields-helper.php:148
4082
- msgid "Item Variation ID"
4083
- msgstr ""
4084
-
4085
- #: includes/export/class-wcj-fields-helper.php:149
4086
- msgid "Item Line Subtotal"
4087
- msgstr ""
4088
-
4089
- #: includes/export/class-wcj-fields-helper.php:150
4090
- msgid "Item Line Total"
4091
- msgstr ""
4092
-
4093
- #: includes/export/class-wcj-fields-helper.php:151
4094
- msgid "Item Line Subtotal Tax"
4095
- msgstr ""
4096
-
4097
- #: includes/export/class-wcj-fields-helper.php:152
4098
- msgid "Item Line Tax"
4099
- msgstr ""
4100
-
4101
- #: includes/export/class-wcj-fields-helper.php:153
4102
- msgid "Item Line Subtotal Plus Tax"
4103
- msgstr ""
4104
-
4105
- #: includes/export/class-wcj-fields-helper.php:154
4106
- msgid "Item Line Total Plus Tax"
4107
- msgstr ""
4108
-
4109
- #: includes/export/class-wcj-fields-helper.php:155
4110
- msgid "Item Product Input Fields"
4111
- msgstr ""
4112
-
4113
- #: includes/export/class-wcj-fields-helper.php:199
4114
- msgid "Order Items"
4115
- msgstr ""
4116
-
4117
- #: includes/export/class-wcj-fields-helper.php:200
4118
- msgid "Order Items Product Input Fields"
4119
- msgstr ""
4120
-
4121
- #: includes/export/class-wcj-fields-helper.php:281
4122
- msgid "Parent Product ID"
4123
- msgstr ""
4124
-
4125
- #: includes/export/class-wcj-fields-helper.php:284
4126
- msgid "Total Stock"
4127
- msgstr ""
4128
-
4129
- #: includes/export/class-wcj-fields-helper.php:285
4130
- msgid "Stock Quantity"
4131
- msgstr ""
4132
-
4133
- #: includes/export/class-wcj-fields-helper.php:286
4134
- #: includes/price-by-country/class-wcj-price-by-country-local.php:126
4135
- #: includes/settings/wcj-settings-product-by-user.php:16
4136
- #: includes/settings/meta-box/wcj-settings-meta-box-multicurrency.php:37
4137
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:55
4138
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:182
4139
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:381
4140
- msgid "Regular Price"
4141
- msgstr ""
4142
-
4143
- #: includes/export/class-wcj-fields-helper.php:287
4144
- #: includes/price-by-country/class-wcj-price-by-country-local.php:133
4145
- #: includes/settings/wcj-settings-product-by-user.php:17
4146
- #: includes/settings/meta-box/wcj-settings-meta-box-multicurrency.php:46
4147
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:64
4148
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:183
4149
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:390
4150
- msgid "Sale Price"
4151
- msgstr ""
4152
-
4153
- #: includes/export/class-wcj-fields-helper.php:289
4154
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:44
4155
- #: includes/settings/wcj-settings-checkout-custom-fields.php:77
4156
- #: includes/settings/wcj-settings-export.php:81
4157
- #: includes/settings/wcj-settings-export.php:149
4158
- #: includes/settings/wcj-settings-export.php:230
4159
- #: includes/settings/wcj-settings-global-discount.php:49
4160
- #: includes/settings/wcj-settings-product-addons.php:70
4161
- #: includes/settings/wcj-settings-purchase-data.php:73
4162
- #: includes/settings/wcj-settings-shipping-options.php:67
4163
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:45
4164
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:164
4165
- #: includes/shipping/class-wc-shipping-wcj-custom.php:123
4166
- msgid "Type"
4167
- msgstr ""
4168
-
4169
- #: includes/export/class-wcj-fields-helper.php:291
4170
- #: includes/settings/wcj-settings-shipping-options.php:181
4171
- msgid "Image URL"
4172
- msgstr ""
4173
-
4174
- #: includes/export/class-wcj-fields-helper.php:292
4175
- #: includes/settings/wcj-settings-product-by-user.php:14
4176
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:180
4177
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:354
4178
- msgid "Short Description"
4179
- msgstr ""
4180
-
4181
- #: includes/export/class-wcj-fields-helper.php:296
4182
- msgid "Shipping Class"
4183
- msgstr ""
4184
-
4185
- #: includes/export/class-wcj-fields-helper.php:297
4186
- msgid "Shipping Class ID"
4187
- msgstr ""
4188
-
4189
- #: includes/export/class-wcj-fields-helper.php:298
4190
- msgid "Width"
4191
- msgstr ""
4192
-
4193
- #: includes/export/class-wcj-fields-helper.php:299
4194
- msgid "Length"
4195
- msgstr ""
4196
-
4197
- #: includes/export/class-wcj-fields-helper.php:300
4198
- msgid "Height"
4199
- msgstr ""
4200
-
4201
- #: includes/export/class-wcj-fields-helper.php:301
4202
- msgid "Weight"
4203
- msgstr ""
4204
-
4205
- #: includes/export/class-wcj-fields-helper.php:302
4206
- msgid "Downloadable"
4207
- msgstr ""
4208
-
4209
- #: includes/export/class-wcj-fields-helper.php:303
4210
- msgid "Virtual"
4211
- msgstr ""
4212
-
4213
- #: includes/export/class-wcj-fields-helper.php:304
4214
- msgid "Sold Individually"
4215
- msgstr ""
4216
-
4217
- #: includes/export/class-wcj-fields-helper.php:305
4218
- msgid "Tax Status"
4219
- msgstr ""
4220
-
4221
- #: includes/export/class-wcj-fields-helper.php:306
4222
- #: includes/settings/wcj-settings-payment-gateways-fees.php:90
4223
- msgid "Tax Class"
4224
- msgstr ""
4225
-
4226
- #: includes/export/class-wcj-fields-helper.php:307
4227
- msgid "Manage Stock"
4228
- msgstr ""
4229
-
4230
- #: includes/export/class-wcj-fields-helper.php:308
4231
- msgid "Stock Status"
4232
- msgstr ""
4233
-
4234
- #: includes/export/class-wcj-fields-helper.php:309
4235
- msgid "Backorders"
4236
- msgstr ""
4237
-
4238
- #: includes/export/class-wcj-fields-helper.php:310
4239
- msgid "Featured"
4240
- msgstr ""
4241
-
4242
- #: includes/export/class-wcj-fields-helper.php:311
4243
- msgid "Visibility"
4244
- msgstr ""
4245
-
4246
- #: includes/export/class-wcj-fields-helper.php:312
4247
- msgid "Price Including Tax"
4248
- msgstr ""
4249
-
4250
- #: includes/export/class-wcj-fields-helper.php:313
4251
- msgid "Price Excluding Tax"
4252
- msgstr ""
4253
-
4254
- #: includes/export/class-wcj-fields-helper.php:314
4255
- msgid "Display Price"
4256
- msgstr ""
4257
-
4258
- #: includes/export/class-wcj-fields-helper.php:315
4259
- msgid "Average Rating"
4260
- msgstr ""
4261
-
4262
- #: includes/export/class-wcj-fields-helper.php:316
4263
- msgid "Rating Count"
4264
- msgstr ""
4265
-
4266
- #: includes/export/class-wcj-fields-helper.php:317
4267
- msgid "Review Count"
4268
- msgstr ""
4269
-
4270
- #: includes/export/class-wcj-fields-helper.php:320
4271
- msgid "Dimensions"
4272
- msgstr ""
4273
-
4274
- #: includes/export/class-wcj-fields-helper.php:321
4275
- msgid "Formatted Name"
4276
- msgstr ""
4277
-
4278
- #: includes/export/class-wcj-fields-helper.php:322
4279
- msgid "Availability"
4280
- msgstr ""
4281
-
4282
- #: includes/export/class-wcj-fields-helper.php:323
4283
- msgid "Availability Class"
4284
- msgstr ""
4285
-
4286
- #: includes/functions/wcj-admin-functions.php:28
4287
- msgid "Enter comma separated list of IDs."
4288
- msgstr ""
4289
-
4290
- #: includes/functions/wcj-admin-functions.php:102
4291
- #: includes/settings/wcj-settings-emails-verification.php:52
4292
- #: includes/settings/wcj-settings-emails-verification.php:69
4293
- #: includes/settings/wcj-settings-emails-verification.php:77
4294
- #, php-format
4295
- msgid "Replaced value: %s"
4296
- msgstr ""
4297
-
4298
- #: includes/functions/wcj-admin-functions.php:102
4299
- #, php-format
4300
- msgid "Replaced values: %s"
4301
- msgstr ""
4302
-
4303
- #: includes/functions/wcj-admin-functions.php:131
4304
- msgid "Install Booster Plus to unlock all features"
4305
- msgstr ""
4306
-
4307
- #: includes/functions/wcj-admin-functions.php:132
4308
- #, php-format
4309
- msgid ""
4310
- "Some settings fields are locked and you will need %s to modify all locked "
4311
- "fields."
4312
- msgstr ""
4313
-
4314
- #: includes/functions/wcj-admin-functions.php:133
4315
- msgid "Buy now"
4316
- msgstr ""
4317
-
4318
- #: includes/functions/wcj-admin-functions.php:133
4319
- msgid "Visit Booster Site"
4320
- msgstr ""
4321
-
4322
- #: includes/functions/wcj-admin-functions.php:137
4323
- #, php-format
4324
- msgid "Get <a href=\"%s\" target=\"_blank\">Booster Plus</a> to change value."
4325
- msgstr ""
4326
-
4327
- #: includes/functions/wcj-admin-functions.php:140
4328
- #, php-format
4329
- msgid ""
4330
- "Get <a href=\"%s\" target=\"_blank\">Booster Plus</a> to enable \"%s\" "
4331
- "option."
4332
- msgstr ""
4333
-
4334
- #: includes/functions/wcj-admin-functions.php:143
4335
- #, php-format
4336
- msgid "Get Booster Plus to enable \"%s\" option."
4337
- msgstr ""
4338
-
4339
- #: includes/functions/wcj-admin-functions.php:146
4340
- #, php-format
4341
- msgid ""
4342
- "Get <a href=\"%s\" target=\"_blank\">Booster Plus</a> to change values below."
4343
- msgstr ""
4344
-
4345
- #: includes/functions/wcj-admin-functions.php:149
4346
- #, php-format
4347
- msgid ""
4348
- "Get <a href=\"%s\" target=\"_blank\">Booster Plus</a> to change values above."
4349
- msgstr ""
4350
-
4351
- #: includes/functions/wcj-admin-functions.php:152
4352
- msgid "Get Booster Plus to change value."
4353
- msgstr ""
4354
-
4355
- #: includes/functions/wcj-country-functions.php:119
4356
- msgid "Afghanistan"
4357
- msgstr ""
4358
-
4359
- #: includes/functions/wcj-country-functions.php:120
4360
- msgid "&#197;land Islands"
4361
- msgstr ""
4362
-
4363
- #: includes/functions/wcj-country-functions.php:121
4364
- msgid "Albania"
4365
- msgstr ""
4366
-
4367
- #: includes/functions/wcj-country-functions.php:122
4368
- msgid "Algeria"
4369
- msgstr ""
4370
-
4371
- #: includes/functions/wcj-country-functions.php:123
4372
- msgid "Andorra"
4373
- msgstr ""
4374
-
4375
- #: includes/functions/wcj-country-functions.php:124
4376
- msgid "Angola"
4377
- msgstr ""
4378
-
4379
- #: includes/functions/wcj-country-functions.php:125
4380
- msgid "Anguilla"
4381
- msgstr ""
4382
-
4383
- #: includes/functions/wcj-country-functions.php:126
4384
- msgid "Antarctica"
4385
- msgstr ""
4386
-
4387
- #: includes/functions/wcj-country-functions.php:127
4388
- msgid "Antigua and Barbuda"
4389
- msgstr ""
4390
-
4391
- #: includes/functions/wcj-country-functions.php:128
4392
- msgid "Argentina"
4393
- msgstr ""
4394
-
4395
- #: includes/functions/wcj-country-functions.php:129
4396
- msgid "Armenia"
4397
- msgstr ""
4398
-
4399
- #: includes/functions/wcj-country-functions.php:130
4400
- msgid "Aruba"
4401
- msgstr ""
4402
-
4403
- #: includes/functions/wcj-country-functions.php:131
4404
- msgid "Australia"
4405
- msgstr ""
4406
-
4407
- #: includes/functions/wcj-country-functions.php:132
4408
- msgid "Austria"
4409
- msgstr ""
4410
-
4411
- #: includes/functions/wcj-country-functions.php:133
4412
- msgid "Azerbaijan"
4413
- msgstr ""
4414
-
4415
- #: includes/functions/wcj-country-functions.php:134
4416
- msgid "Bahamas"
4417
- msgstr ""
4418
-
4419
- #: includes/functions/wcj-country-functions.php:135
4420
- msgid "Bahrain"
4421
- msgstr ""
4422
-
4423
- #: includes/functions/wcj-country-functions.php:136
4424
- msgid "Bangladesh"
4425
- msgstr ""
4426
-
4427
- #: includes/functions/wcj-country-functions.php:137
4428
- msgid "Barbados"
4429
- msgstr ""
4430
-
4431
- #: includes/functions/wcj-country-functions.php:138
4432
- msgid "Belarus"
4433
- msgstr ""
4434
-
4435
- #: includes/functions/wcj-country-functions.php:139
4436
- msgid "Belgium"
4437
- msgstr ""
4438
-
4439
- #: includes/functions/wcj-country-functions.php:140
4440
- msgid "Belau"
4441
- msgstr ""
4442
-
4443
- #: includes/functions/wcj-country-functions.php:141
4444
- msgid "Belize"
4445
- msgstr ""
4446
-
4447
- #: includes/functions/wcj-country-functions.php:142
4448
- msgid "Benin"
4449
- msgstr ""
4450
-
4451
- #: includes/functions/wcj-country-functions.php:143
4452
- msgid "Bermuda"
4453
- msgstr ""
4454
-
4455
- #: includes/functions/wcj-country-functions.php:144
4456
- msgid "Bhutan"
4457
- msgstr ""
4458
-
4459
- #: includes/functions/wcj-country-functions.php:145
4460
- msgid "Bolivia"
4461
- msgstr ""
4462
-
4463
- #: includes/functions/wcj-country-functions.php:146
4464
- msgid "Bonaire, Saint Eustatius and Saba"
4465
- msgstr ""
4466
-
4467
- #: includes/functions/wcj-country-functions.php:147
4468
- msgid "Bosnia and Herzegovina"
4469
- msgstr ""
4470
-
4471
- #: includes/functions/wcj-country-functions.php:148
4472
- msgid "Botswana"
4473
- msgstr ""
4474
-
4475
- #: includes/functions/wcj-country-functions.php:149
4476
- msgid "Bouvet Island"
4477
- msgstr ""
4478
-
4479
- #: includes/functions/wcj-country-functions.php:150
4480
- msgid "Brazil"
4481
- msgstr ""
4482
-
4483
- #: includes/functions/wcj-country-functions.php:151
4484
- msgid "British Indian Ocean Territory"
4485
- msgstr ""
4486
-
4487
- #: includes/functions/wcj-country-functions.php:152
4488
- msgid "British Virgin Islands"
4489
- msgstr ""
4490
-
4491
- #: includes/functions/wcj-country-functions.php:153
4492
- msgid "Brunei"
4493
- msgstr ""
4494
-
4495
- #: includes/functions/wcj-country-functions.php:154
4496
- msgid "Bulgaria"
4497
- msgstr ""
4498
-
4499
- #: includes/functions/wcj-country-functions.php:155
4500
- msgid "Burkina Faso"
4501
- msgstr ""
4502
-
4503
- #: includes/functions/wcj-country-functions.php:156
4504
- msgid "Burundi"
4505
- msgstr ""
4506
-
4507
- #: includes/functions/wcj-country-functions.php:157
4508
- msgid "Cambodia"
4509
- msgstr ""
4510
-
4511
- #: includes/functions/wcj-country-functions.php:158
4512
- msgid "Cameroon"
4513
- msgstr ""
4514
-
4515
- #: includes/functions/wcj-country-functions.php:159
4516
- msgid "Canada"
4517
- msgstr ""
4518
-
4519
- #: includes/functions/wcj-country-functions.php:160
4520
- msgid "Cape Verde"
4521
- msgstr ""
4522
-
4523
- #: includes/functions/wcj-country-functions.php:161
4524
- msgid "Cayman Islands"
4525
- msgstr ""
4526
-
4527
- #: includes/functions/wcj-country-functions.php:162
4528
- msgid "Central African Republic"
4529
- msgstr ""
4530
-
4531
- #: includes/functions/wcj-country-functions.php:163
4532
- msgid "Chad"
4533
- msgstr ""
4534
-
4535
- #: includes/functions/wcj-country-functions.php:164
4536
- msgid "Chile"
4537
- msgstr ""
4538
-
4539
- #: includes/functions/wcj-country-functions.php:165
4540
- msgid "China"
4541
- msgstr ""
4542
-
4543
- #: includes/functions/wcj-country-functions.php:166
4544
- msgid "Christmas Island"
4545
- msgstr ""
4546
-
4547
- #: includes/functions/wcj-country-functions.php:167
4548
- msgid "Cocos (Keeling) Islands"
4549
- msgstr ""
4550
-
4551
- #: includes/functions/wcj-country-functions.php:168
4552
- msgid "Colombia"
4553
- msgstr ""
4554
-
4555
- #: includes/functions/wcj-country-functions.php:169
4556
- msgid "Comoros"
4557
- msgstr ""
4558
-
4559
- #: includes/functions/wcj-country-functions.php:170
4560
- msgid "Congo (Brazzaville)"
4561
- msgstr ""
4562
-
4563
- #: includes/functions/wcj-country-functions.php:171
4564
- msgid "Congo (Kinshasa)"
4565
- msgstr ""
4566
-
4567
- #: includes/functions/wcj-country-functions.php:172
4568
- msgid "Cook Islands"
4569
- msgstr ""
4570
-
4571
- #: includes/functions/wcj-country-functions.php:173
4572
- msgid "Costa Rica"
4573
- msgstr ""
4574
-
4575
- #: includes/functions/wcj-country-functions.php:174
4576
- msgid "Croatia"
4577
- msgstr ""
4578
-
4579
- #: includes/functions/wcj-country-functions.php:175
4580
- msgid "Cuba"
4581
- msgstr ""
4582
-
4583
- #: includes/functions/wcj-country-functions.php:176
4584
- msgid "Cura&Ccedil;ao"
4585
- msgstr ""
4586
-
4587
- #: includes/functions/wcj-country-functions.php:177
4588
- msgid "Cyprus"
4589
- msgstr ""
4590
-
4591
- #: includes/functions/wcj-country-functions.php:178
4592
- msgid "Czech Republic"
4593
- msgstr ""
4594
-
4595
- #: includes/functions/wcj-country-functions.php:179
4596
- msgid "Denmark"
4597
- msgstr ""
4598
-
4599
- #: includes/functions/wcj-country-functions.php:180
4600
- msgid "Djibouti"
4601
- msgstr ""
4602
-
4603
- #: includes/functions/wcj-country-functions.php:181
4604
- msgid "Dominica"
4605
- msgstr ""
4606
-
4607
- #: includes/functions/wcj-country-functions.php:182
4608
- msgid "Dominican Republic"
4609
- msgstr ""
4610
-
4611
- #: includes/functions/wcj-country-functions.php:183
4612
- msgid "Ecuador"
4613
- msgstr ""
4614
-
4615
- #: includes/functions/wcj-country-functions.php:184
4616
- msgid "Egypt"
4617
- msgstr ""
4618
-
4619
- #: includes/functions/wcj-country-functions.php:185
4620
- msgid "El Salvador"
4621
- msgstr ""
4622
-
4623
- #: includes/functions/wcj-country-functions.php:186
4624
- msgid "Equatorial Guinea"
4625
- msgstr ""
4626
-
4627
- #: includes/functions/wcj-country-functions.php:187
4628
- msgid "Eritrea"
4629
- msgstr ""
4630
-
4631
- #: includes/functions/wcj-country-functions.php:188
4632
- msgid "Estonia"
4633
- msgstr ""
4634
-
4635
- #: includes/functions/wcj-country-functions.php:189
4636
- msgid "Ethiopia"
4637
- msgstr ""
4638
-
4639
- #: includes/functions/wcj-country-functions.php:190
4640
- msgid "Falkland Islands"
4641
- msgstr ""
4642
-
4643
- #: includes/functions/wcj-country-functions.php:191
4644
- msgid "Faroe Islands"
4645
- msgstr ""
4646
-
4647
- #: includes/functions/wcj-country-functions.php:192
4648
- msgid "Fiji"
4649
- msgstr ""
4650
-
4651
- #: includes/functions/wcj-country-functions.php:193
4652
- msgid "Finland"
4653
- msgstr ""
4654
-
4655
- #: includes/functions/wcj-country-functions.php:194
4656
- msgid "France"
4657
- msgstr ""
4658
-
4659
- #: includes/functions/wcj-country-functions.php:195
4660
- msgid "French Guiana"
4661
- msgstr ""
4662
-
4663
- #: includes/functions/wcj-country-functions.php:196
4664
- msgid "French Polynesia"
4665
- msgstr ""
4666
-
4667
- #: includes/functions/wcj-country-functions.php:197
4668
- msgid "French Southern Territories"
4669
- msgstr ""
4670
-
4671
- #: includes/functions/wcj-country-functions.php:198
4672
- msgid "Gabon"
4673
- msgstr ""
4674
-
4675
- #: includes/functions/wcj-country-functions.php:199
4676
- msgid "Gambia"
4677
- msgstr ""
4678
-
4679
- #: includes/functions/wcj-country-functions.php:200
4680
- msgid "Georgia"
4681
- msgstr ""
4682
-
4683
- #: includes/functions/wcj-country-functions.php:201
4684
- msgid "Germany"
4685
- msgstr ""
4686
-
4687
- #: includes/functions/wcj-country-functions.php:202
4688
- msgid "Ghana"
4689
- msgstr ""
4690
-
4691
- #: includes/functions/wcj-country-functions.php:203
4692
- msgid "Gibraltar"
4693
- msgstr ""
4694
-
4695
- #: includes/functions/wcj-country-functions.php:204
4696
- msgid "Greece"
4697
- msgstr ""
4698
-
4699
- #: includes/functions/wcj-country-functions.php:205
4700
- msgid "Greenland"
4701
- msgstr ""
4702
-
4703
- #: includes/functions/wcj-country-functions.php:206
4704
- msgid "Grenada"
4705
- msgstr ""
4706
-
4707
- #: includes/functions/wcj-country-functions.php:207
4708
- msgid "Guadeloupe"
4709
- msgstr ""
4710
-
4711
- #: includes/functions/wcj-country-functions.php:208
4712
- msgid "Guatemala"
4713
- msgstr ""
4714
-
4715
- #: includes/functions/wcj-country-functions.php:209
4716
- msgid "Guernsey"
4717
- msgstr ""
4718
-
4719
- #: includes/functions/wcj-country-functions.php:210
4720
- msgid "Guinea"
4721
- msgstr ""
4722
-
4723
- #: includes/functions/wcj-country-functions.php:211
4724
- msgid "Guinea-Bissau"
4725
- msgstr ""
4726
-
4727
- #: includes/functions/wcj-country-functions.php:212
4728
- msgid "Guyana"
4729
- msgstr ""
4730
-
4731
- #: includes/functions/wcj-country-functions.php:213
4732
- msgid "Haiti"
4733
- msgstr ""
4734
-
4735
- #: includes/functions/wcj-country-functions.php:214
4736
- msgid "Heard Island and McDonald Islands"
4737
- msgstr ""
4738
-
4739
- #: includes/functions/wcj-country-functions.php:215
4740
- msgid "Honduras"
4741
- msgstr ""
4742
-
4743
- #: includes/functions/wcj-country-functions.php:216
4744
- msgid "Hong Kong"
4745
- msgstr ""
4746
-
4747
- #: includes/functions/wcj-country-functions.php:217
4748
- msgid "Hungary"
4749
- msgstr ""
4750
-
4751
- #: includes/functions/wcj-country-functions.php:218
4752
- msgid "Iceland"
4753
- msgstr ""
4754
-
4755
- #: includes/functions/wcj-country-functions.php:219
4756
- msgid "India"
4757
- msgstr ""
4758
-
4759
- #: includes/functions/wcj-country-functions.php:220
4760
- msgid "Indonesia"
4761
- msgstr ""
4762
-
4763
- #: includes/functions/wcj-country-functions.php:221
4764
- msgid "Iran"
4765
- msgstr ""
4766
-
4767
- #: includes/functions/wcj-country-functions.php:222
4768
- msgid "Iraq"
4769
- msgstr ""
4770
-
4771
- #: includes/functions/wcj-country-functions.php:223
4772
- msgid "Republic of Ireland"
4773
- msgstr ""
4774
-
4775
- #: includes/functions/wcj-country-functions.php:224
4776
- msgid "Isle of Man"
4777
- msgstr ""
4778
-
4779
- #: includes/functions/wcj-country-functions.php:225
4780
- msgid "Israel"
4781
- msgstr ""
4782
-
4783
- #: includes/functions/wcj-country-functions.php:226
4784
- msgid "Italy"
4785
- msgstr ""
4786
-
4787
- #: includes/functions/wcj-country-functions.php:227
4788
- msgid "Ivory Coast"
4789
- msgstr ""
4790
-
4791
- #: includes/functions/wcj-country-functions.php:228
4792
- msgid "Jamaica"
4793
- msgstr ""
4794
-
4795
- #: includes/functions/wcj-country-functions.php:229
4796
- msgid "Japan"
4797
- msgstr ""
4798
-
4799
- #: includes/functions/wcj-country-functions.php:230
4800
- msgid "Jersey"
4801
- msgstr ""
4802
-
4803
- #: includes/functions/wcj-country-functions.php:231
4804
- msgid "Jordan"
4805
- msgstr ""
4806
-
4807
- #: includes/functions/wcj-country-functions.php:232
4808
- msgid "Kazakhstan"
4809
- msgstr ""
4810
-
4811
- #: includes/functions/wcj-country-functions.php:233
4812
- msgid "Kenya"
4813
- msgstr ""
4814
-
4815
- #: includes/functions/wcj-country-functions.php:234
4816
- msgid "Kiribati"
4817
- msgstr ""
4818
-
4819
- #: includes/functions/wcj-country-functions.php:235
4820
- msgid "Kuwait"
4821
- msgstr ""
4822
-
4823
- #: includes/functions/wcj-country-functions.php:236
4824
- msgid "Kyrgyzstan"
4825
- msgstr ""
4826
-
4827
- #: includes/functions/wcj-country-functions.php:237
4828
- msgid "Laos"
4829
- msgstr ""
4830
-
4831
- #: includes/functions/wcj-country-functions.php:238
4832
- msgid "Latvia"
4833
- msgstr ""
4834
-
4835
- #: includes/functions/wcj-country-functions.php:239
4836
- msgid "Lebanon"
4837
- msgstr ""
4838
-
4839
- #: includes/functions/wcj-country-functions.php:240
4840
- msgid "Lesotho"
4841
- msgstr ""
4842
-
4843
- #: includes/functions/wcj-country-functions.php:241
4844
- msgid "Liberia"
4845
- msgstr ""
4846
-
4847
- #: includes/functions/wcj-country-functions.php:242
4848
- msgid "Libya"
4849
- msgstr ""
4850
-
4851
- #: includes/functions/wcj-country-functions.php:243
4852
- msgid "Liechtenstein"
4853
- msgstr ""
4854
-
4855
- #: includes/functions/wcj-country-functions.php:244
4856
- msgid "Lithuania"
4857
- msgstr ""
4858
-
4859
- #: includes/functions/wcj-country-functions.php:245
4860
- msgid "Luxembourg"
4861
- msgstr ""
4862
-
4863
- #: includes/functions/wcj-country-functions.php:246
4864
- msgid "Macao S.A.R., China"
4865
- msgstr ""
4866
-
4867
- #: includes/functions/wcj-country-functions.php:247
4868
- msgid "Macedonia"
4869
- msgstr ""
4870
-
4871
- #: includes/functions/wcj-country-functions.php:248
4872
- msgid "Madagascar"
4873
- msgstr ""
4874
-
4875
- #: includes/functions/wcj-country-functions.php:249
4876
- msgid "Malawi"
4877
- msgstr ""
4878
-
4879
- #: includes/functions/wcj-country-functions.php:250
4880
- msgid "Malaysia"
4881
- msgstr ""
4882
-
4883
- #: includes/functions/wcj-country-functions.php:251
4884
- msgid "Maldives"
4885
- msgstr ""
4886
-
4887
- #: includes/functions/wcj-country-functions.php:252
4888
- msgid "Mali"
4889
- msgstr ""
4890
-
4891
- #: includes/functions/wcj-country-functions.php:253
4892
- msgid "Malta"
4893
- msgstr ""
4894
-
4895
- #: includes/functions/wcj-country-functions.php:254
4896
- msgid "Marshall Islands"
4897
- msgstr ""
4898
-
4899
- #: includes/functions/wcj-country-functions.php:255
4900
- msgid "Martinique"
4901
- msgstr ""
4902
-
4903
- #: includes/functions/wcj-country-functions.php:256
4904
- msgid "Mauritania"
4905
- msgstr ""
4906
-
4907
- #: includes/functions/wcj-country-functions.php:257
4908
- msgid "Mauritius"
4909
- msgstr ""
4910
-
4911
- #: includes/functions/wcj-country-functions.php:258
4912
- msgid "Mayotte"
4913
- msgstr ""
4914
-
4915
- #: includes/functions/wcj-country-functions.php:259
4916
- msgid "Mexico"
4917
- msgstr ""
4918
-
4919
- #: includes/functions/wcj-country-functions.php:260
4920
- msgid "Micronesia"
4921
- msgstr ""
4922
-
4923
- #: includes/functions/wcj-country-functions.php:261
4924
- msgid "Moldova"
4925
- msgstr ""
4926
-
4927
- #: includes/functions/wcj-country-functions.php:262
4928
- msgid "Monaco"
4929
- msgstr ""
4930
-
4931
- #: includes/functions/wcj-country-functions.php:263
4932
- msgid "Mongolia"
4933
- msgstr ""
4934
-
4935
- #: includes/functions/wcj-country-functions.php:264
4936
- msgid "Montenegro"
4937
- msgstr ""
4938
-
4939
- #: includes/functions/wcj-country-functions.php:265
4940
- msgid "Montserrat"
4941
- msgstr ""
4942
-
4943
- #: includes/functions/wcj-country-functions.php:266
4944
- msgid "Morocco"
4945
- msgstr ""
4946
-
4947
- #: includes/functions/wcj-country-functions.php:267
4948
- msgid "Mozambique"
4949
- msgstr ""
4950
-
4951
- #: includes/functions/wcj-country-functions.php:268
4952
- msgid "Myanmar"
4953
- msgstr ""
4954
-
4955
- #: includes/functions/wcj-country-functions.php:269
4956
- msgid "Namibia"
4957
- msgstr ""
4958
-
4959
- #: includes/functions/wcj-country-functions.php:270
4960
- msgid "Nauru"
4961
- msgstr ""
4962
-
4963
- #: includes/functions/wcj-country-functions.php:271
4964
- msgid "Nepal"
4965
- msgstr ""
4966
-
4967
- #: includes/functions/wcj-country-functions.php:272
4968
- msgid "Netherlands"
4969
- msgstr ""
4970
-
4971
- #: includes/functions/wcj-country-functions.php:273
4972
- msgid "Netherlands Antilles"
4973
- msgstr ""
4974
-
4975
- #: includes/functions/wcj-country-functions.php:274
4976
- msgid "New Caledonia"
4977
- msgstr ""
4978
-
4979
- #: includes/functions/wcj-country-functions.php:275
4980
- msgid "New Zealand"
4981
- msgstr ""
4982
-
4983
- #: includes/functions/wcj-country-functions.php:276
4984
- msgid "Nicaragua"
4985
- msgstr ""
4986
-
4987
- #: includes/functions/wcj-country-functions.php:277
4988
- msgid "Niger"
4989
- msgstr ""
4990
-
4991
- #: includes/functions/wcj-country-functions.php:278
4992
- msgid "Nigeria"
4993
- msgstr ""
4994
-
4995
- #: includes/functions/wcj-country-functions.php:279
4996
- msgid "Niue"
4997
- msgstr ""
4998
-
4999
- #: includes/functions/wcj-country-functions.php:280
5000
- msgid "Norfolk Island"
5001
- msgstr ""
5002
-
5003
- #: includes/functions/wcj-country-functions.php:281
5004
- msgid "North Korea"
5005
- msgstr ""
5006
-
5007
- #: includes/functions/wcj-country-functions.php:282
5008
- msgid "Norway"
5009
- msgstr ""
5010
-
5011
- #: includes/functions/wcj-country-functions.php:283
5012
- msgid "Oman"
5013
- msgstr ""
5014
-
5015
- #: includes/functions/wcj-country-functions.php:284
5016
- msgid "Pakistan"
5017
- msgstr ""
5018
-
5019
- #: includes/functions/wcj-country-functions.php:285
5020
- msgid "Palestinian Territory"
5021
- msgstr ""
5022
-
5023
- #: includes/functions/wcj-country-functions.php:286
5024
- msgid "Panama"
5025
- msgstr ""
5026
-
5027
- #: includes/functions/wcj-country-functions.php:287
5028
- msgid "Papua New Guinea"
5029
- msgstr ""
5030
-
5031
- #: includes/functions/wcj-country-functions.php:288
5032
- msgid "Paraguay"
5033
- msgstr ""
5034
-
5035
- #: includes/functions/wcj-country-functions.php:289
5036
- msgid "Peru"
5037
- msgstr ""
5038
-
5039
- #: includes/functions/wcj-country-functions.php:290
5040
- msgid "Philippines"
5041
- msgstr ""
5042
-
5043
- #: includes/functions/wcj-country-functions.php:291
5044
- msgid "Pitcairn"
5045
- msgstr ""
5046
-
5047
- #: includes/functions/wcj-country-functions.php:292
5048
- msgid "Poland"
5049
- msgstr ""
5050
-
5051
- #: includes/functions/wcj-country-functions.php:293
5052
- msgid "Portugal"
5053
- msgstr ""
5054
-
5055
- #: includes/functions/wcj-country-functions.php:294
5056
- msgid "Qatar"
5057
- msgstr ""
5058
-
5059
- #: includes/functions/wcj-country-functions.php:295
5060
- msgid "Reunion"
5061
- msgstr ""
5062
-
5063
- #: includes/functions/wcj-country-functions.php:296
5064
- msgid "Romania"
5065
- msgstr ""
5066
-
5067
- #: includes/functions/wcj-country-functions.php:297
5068
- msgid "Russia"
5069
- msgstr ""
5070
-
5071
- #: includes/functions/wcj-country-functions.php:298
5072
- msgid "Rwanda"
5073
- msgstr ""
5074
-
5075
- #: includes/functions/wcj-country-functions.php:299
5076
- msgid "Saint Barth&eacute;lemy"
5077
- msgstr ""
5078
-
5079
- #: includes/functions/wcj-country-functions.php:300
5080
- msgid "Saint Helena"
5081
- msgstr ""
5082
-
5083
- #: includes/functions/wcj-country-functions.php:301
5084
- msgid "Saint Kitts and Nevis"
5085
- msgstr ""
5086
-
5087
- #: includes/functions/wcj-country-functions.php:302
5088
- msgid "Saint Lucia"
5089
- msgstr ""
5090
-
5091
- #: includes/functions/wcj-country-functions.php:303
5092
- msgid "Saint Martin (French part)"
5093
- msgstr ""
5094
-
5095
- #: includes/functions/wcj-country-functions.php:304
5096
- msgid "Saint Martin (Dutch part)"
5097
- msgstr ""
5098
-
5099
- #: includes/functions/wcj-country-functions.php:305
5100
- msgid "Saint Pierre and Miquelon"
5101
- msgstr ""
5102
-
5103
- #: includes/functions/wcj-country-functions.php:306
5104
- msgid "Saint Vincent and the Grenadines"
5105
- msgstr ""
5106
-
5107
- #: includes/functions/wcj-country-functions.php:307
5108
- msgid "San Marino"
5109
- msgstr ""
5110
-
5111
- #: includes/functions/wcj-country-functions.php:308
5112
- msgid "S&atilde;o Tom&eacute; and Pr&iacute;ncipe"
5113
- msgstr ""
5114
-
5115
- #: includes/functions/wcj-country-functions.php:309
5116
- msgid "Saudi Arabia"
5117
- msgstr ""
5118
-
5119
- #: includes/functions/wcj-country-functions.php:310
5120
- msgid "Senegal"
5121
- msgstr ""
5122
-
5123
- #: includes/functions/wcj-country-functions.php:311
5124
- msgid "Serbia"
5125
- msgstr ""
5126
-
5127
- #: includes/functions/wcj-country-functions.php:312
5128
- msgid "Seychelles"
5129
- msgstr ""
5130
-
5131
- #: includes/functions/wcj-country-functions.php:313
5132
- msgid "Sierra Leone"
5133
- msgstr ""
5134
-
5135
- #: includes/functions/wcj-country-functions.php:314
5136
- msgid "Singapore"
5137
- msgstr ""
5138
-
5139
- #: includes/functions/wcj-country-functions.php:315
5140
- msgid "Slovakia"
5141
- msgstr ""
5142
-
5143
- #: includes/functions/wcj-country-functions.php:316
5144
- msgid "Slovenia"
5145
- msgstr ""
5146
-
5147
- #: includes/functions/wcj-country-functions.php:317
5148
- msgid "Solomon Islands"
5149
- msgstr ""
5150
-
5151
- #: includes/functions/wcj-country-functions.php:318
5152
- msgid "Somalia"
5153
- msgstr ""
5154
-
5155
- #: includes/functions/wcj-country-functions.php:319
5156
- msgid "South Africa"
5157
- msgstr ""
5158
-
5159
- #: includes/functions/wcj-country-functions.php:320
5160
- msgid "South Georgia/Sandwich Islands"
5161
- msgstr ""
5162
-
5163
- #: includes/functions/wcj-country-functions.php:321
5164
- msgid "South Korea"
5165
- msgstr ""
5166
-
5167
- #: includes/functions/wcj-country-functions.php:322
5168
- msgid "South Sudan"
5169
- msgstr ""
5170
-
5171
- #: includes/functions/wcj-country-functions.php:323
5172
- msgid "Spain"
5173
- msgstr ""
5174
-
5175
- #: includes/functions/wcj-country-functions.php:324
5176
- msgid "Sri Lanka"
5177
- msgstr ""
5178
-
5179
- #: includes/functions/wcj-country-functions.php:325
5180
- msgid "Sudan"
5181
- msgstr ""
5182
-
5183
- #: includes/functions/wcj-country-functions.php:326
5184
- msgid "Suriname"
5185
- msgstr ""
5186
-
5187
- #: includes/functions/wcj-country-functions.php:327
5188
- msgid "Svalbard and Jan Mayen"
5189
- msgstr ""
5190
-
5191
- #: includes/functions/wcj-country-functions.php:328
5192
- msgid "Swaziland"
5193
- msgstr ""
5194
-
5195
- #: includes/functions/wcj-country-functions.php:329
5196
- msgid "Sweden"
5197
- msgstr ""
5198
-
5199
- #: includes/functions/wcj-country-functions.php:330
5200
- msgid "Switzerland"
5201
- msgstr ""
5202
-
5203
- #: includes/functions/wcj-country-functions.php:331
5204
- msgid "Syria"
5205
- msgstr ""
5206
-
5207
- #: includes/functions/wcj-country-functions.php:332
5208
- msgid "Taiwan"
5209
- msgstr ""
5210
-
5211
- #: includes/functions/wcj-country-functions.php:333
5212
- msgid "Tajikistan"
5213
- msgstr ""
5214
-
5215
- #: includes/functions/wcj-country-functions.php:334
5216
- msgid "Tanzania"
5217
- msgstr ""
5218
-
5219
- #: includes/functions/wcj-country-functions.php:335
5220
- msgid "Thailand"
5221
- msgstr ""
5222
-
5223
- #: includes/functions/wcj-country-functions.php:336
5224
- msgid "Timor-Leste"
5225
- msgstr ""
5226
-
5227
- #: includes/functions/wcj-country-functions.php:337
5228
- msgid "Togo"
5229
- msgstr ""
5230
-
5231
- #: includes/functions/wcj-country-functions.php:338
5232
- msgid "Tokelau"
5233
- msgstr ""
5234
-
5235
- #: includes/functions/wcj-country-functions.php:339
5236
- msgid "Tonga"
5237
- msgstr ""
5238
-
5239
- #: includes/functions/wcj-country-functions.php:340
5240
- msgid "Trinidad and Tobago"
5241
- msgstr ""
5242
-
5243
- #: includes/functions/wcj-country-functions.php:341
5244
- msgid "Tunisia"
5245
- msgstr ""
5246
-
5247
- #: includes/functions/wcj-country-functions.php:342
5248
- msgid "Turkey"
5249
- msgstr ""
5250
-
5251
- #: includes/functions/wcj-country-functions.php:343
5252
- msgid "Turkmenistan"
5253
- msgstr ""
5254
-
5255
- #: includes/functions/wcj-country-functions.php:344
5256
- msgid "Turks and Caicos Islands"
5257
- msgstr ""
5258
-
5259
- #: includes/functions/wcj-country-functions.php:345
5260
- msgid "Tuvalu"
5261
- msgstr ""
5262
-
5263
- #: includes/functions/wcj-country-functions.php:346
5264
- msgid "Uganda"
5265
- msgstr ""
5266
-
5267
- #: includes/functions/wcj-country-functions.php:347
5268
- msgid "Ukraine"
5269
- msgstr ""
5270
-
5271
- #: includes/functions/wcj-country-functions.php:348
5272
- msgid "United Arab Emirates"
5273
- msgstr ""
5274
-
5275
- #: includes/functions/wcj-country-functions.php:349
5276
- msgid "United Kingdom (UK)"
5277
- msgstr ""
5278
-
5279
- #: includes/functions/wcj-country-functions.php:350
5280
- msgid "United States (US)"
5281
- msgstr ""
5282
-
5283
- #: includes/functions/wcj-country-functions.php:351
5284
- msgid "Uruguay"
5285
- msgstr ""
5286
-
5287
- #: includes/functions/wcj-country-functions.php:352
5288
- msgid "Uzbekistan"
5289
- msgstr ""
5290
-
5291
- #: includes/functions/wcj-country-functions.php:353
5292
- msgid "Vanuatu"
5293
- msgstr ""
5294
-
5295
- #: includes/functions/wcj-country-functions.php:354
5296
- msgid "Vatican"
5297
- msgstr ""
5298
-
5299
- #: includes/functions/wcj-country-functions.php:355
5300
- msgid "Venezuela"
5301
- msgstr ""
5302
-
5303
- #: includes/functions/wcj-country-functions.php:356
5304
- msgid "Vietnam"
5305
- msgstr ""
5306
-
5307
- #: includes/functions/wcj-country-functions.php:357
5308
- msgid "Wallis and Futuna"
5309
- msgstr ""
5310
-
5311
- #: includes/functions/wcj-country-functions.php:358
5312
- msgid "Western Sahara"
5313
- msgstr ""
5314
-
5315
- #: includes/functions/wcj-country-functions.php:359
5316
- msgid "Western Samoa"
5317
- msgstr ""
5318
-
5319
- #: includes/functions/wcj-country-functions.php:360
5320
- msgid "Yemen"
5321
- msgstr ""
5322
-
5323
- #: includes/functions/wcj-country-functions.php:361
5324
- msgid "Zambia"
5325
- msgstr ""
5326
-
5327
- #: includes/functions/wcj-country-functions.php:362
5328
- msgid "Zimbabwe"
5329
- msgstr ""
5330
-
5331
- #: includes/functions/wcj-country-functions.php:363
5332
- msgid "European Union"
5333
- msgstr ""
5334
-
5335
- #: includes/functions/wcj-currencies.php:13
5336
- msgid "United Arab Emirates Dirham"
5337
- msgstr ""
5338
-
5339
- #: includes/functions/wcj-currencies.php:14
5340
- msgid "Afghan afghani"
5341
- msgstr ""
5342
-
5343
- #: includes/functions/wcj-currencies.php:15
5344
- msgid "Albanian lek"
5345
- msgstr ""
5346
-
5347
- #: includes/functions/wcj-currencies.php:16
5348
- msgid "Armenian dram"
5349
- msgstr ""
5350
-
5351
- #: includes/functions/wcj-currencies.php:17
5352
- msgid "Netherlands Antillean gulden"
5353
- msgstr ""
5354
-
5355
- #: includes/functions/wcj-currencies.php:18
5356
- msgid "Angolan kwanza"
5357
- msgstr ""
5358
-
5359
- #: includes/functions/wcj-currencies.php:19
5360
- msgid "Argentine Peso"
5361
- msgstr ""
5362
-
5363
- #: includes/functions/wcj-currencies.php:20
5364
- msgid "Australian Dollars"
5365
- msgstr ""
5366
-
5367
- #: includes/functions/wcj-currencies.php:21
5368
- msgid "Aruban florin"
5369
- msgstr ""
5370
-
5371
- #: includes/functions/wcj-currencies.php:22
5372
- msgid "Azerbaijani manat"
5373
- msgstr ""
5374
-
5375
- #: includes/functions/wcj-currencies.php:23
5376
- msgid "Bosnia and Herzegovina konvertibilna marka"
5377
- msgstr ""
5378
-
5379
- #: includes/functions/wcj-currencies.php:24
5380
- msgid "Barbadian dollar"
5381
- msgstr ""
5382
-
5383
- #: includes/functions/wcj-currencies.php:25
5384
- msgid "Bangladeshi Taka"
5385
- msgstr ""
5386
-
5387
- #: includes/functions/wcj-currencies.php:26
5388
- msgid "Bulgarian Lev"
5389
- msgstr ""
5390
-
5391
- #: includes/functions/wcj-currencies.php:27
5392
- msgid "Bahraini dinar"
5393
- msgstr ""
5394
-
5395
- #: includes/functions/wcj-currencies.php:28
5396
- msgid "Burundi franc"
5397
- msgstr ""
5398
-
5399
- #: includes/functions/wcj-currencies.php:29
5400
- msgid "Belarusian ruble"
5401
- msgstr ""
5402
-
5403
- #: includes/functions/wcj-currencies.php:30
5404
- msgid "Brunei dollar"
5405
- msgstr ""
5406
-
5407
- #: includes/functions/wcj-currencies.php:31
5408
- msgid "Bolivian boliviano"
5409
- msgstr ""
5410
-
5411
- #: includes/functions/wcj-currencies.php:32
5412
- msgid "Brazilian Real"
5413
- msgstr ""
5414
-
5415
- #: includes/functions/wcj-currencies.php:33
5416
- msgid "Bahamian dollar"
5417
- msgstr ""
5418
-
5419
- #: includes/functions/wcj-currencies.php:34
5420
- msgid "Bhutanese ngultrum"
5421
- msgstr ""
5422
-
5423
- #: includes/functions/wcj-currencies.php:35
5424
- msgid "Botswana pula"
5425
- msgstr ""
5426
-
5427
- #: includes/functions/wcj-currencies.php:36
5428
- msgid "Belize dollar"
5429
- msgstr ""
5430
-
5431
- #: includes/functions/wcj-currencies.php:37
5432
- msgid "Canadian Dollars"
5433
- msgstr ""
5434
-
5435
- #: includes/functions/wcj-currencies.php:38
5436
- msgid "Congolese franc"
5437
- msgstr ""
5438
-
5439
- #: includes/functions/wcj-currencies.php:39
5440
- msgid "Swiss Franc"
5441
- msgstr ""
5442
-
5443
- #: includes/functions/wcj-currencies.php:40
5444
- msgid "Chilean Peso"
5445
- msgstr ""
5446
-
5447
- #: includes/functions/wcj-currencies.php:41
5448
- msgid "Chinese Yuan"
5449
- msgstr ""
5450
-
5451
- #: includes/functions/wcj-currencies.php:42
5452
- msgid "Colombian Peso"
5453
- msgstr ""
5454
-
5455
- #: includes/functions/wcj-currencies.php:43
5456
- msgid "Costa Rican colon"
5457
- msgstr ""
5458
-
5459
- #: includes/functions/wcj-currencies.php:44
5460
- msgid "Cuban peso"
5461
- msgstr ""
5462
-
5463
- #: includes/functions/wcj-currencies.php:45
5464
- msgid "Cape Verdean escudo"
5465
- msgstr ""
5466
-
5467
- #: includes/functions/wcj-currencies.php:46
5468
- msgid "Czech Koruna"
5469
- msgstr ""
5470
-
5471
- #: includes/functions/wcj-currencies.php:47
5472
- msgid "Djiboutian franc"
5473
- msgstr ""
5474
-
5475
- #: includes/functions/wcj-currencies.php:48
5476
- msgid "Danish Krone"
5477
- msgstr ""
5478
-
5479
- #: includes/functions/wcj-currencies.php:49
5480
- msgid "Dominican Peso"
5481
- msgstr ""
5482
-
5483
- #: includes/functions/wcj-currencies.php:50
5484
- msgid "Algerian dinar"
5485
- msgstr ""
5486
-
5487
- #: includes/functions/wcj-currencies.php:51
5488
- msgid "Estonian kroon"
5489
- msgstr ""
5490
-
5491
- #: includes/functions/wcj-currencies.php:52
5492
- msgid "Egyptian Pound"
5493
- msgstr ""
5494
-
5495
- #: includes/functions/wcj-currencies.php:53
5496
- msgid "Eritrean nakfa"
5497
- msgstr ""
5498
-
5499
- #: includes/functions/wcj-currencies.php:54
5500
- msgid "Ethiopian birr"
5501
- msgstr ""
5502
-
5503
- #: includes/functions/wcj-currencies.php:55
5504
- msgid "Euros"
5505
- msgstr ""
5506
-
5507
- #: includes/functions/wcj-currencies.php:56
5508
- msgid "Fijian dollar"
5509
- msgstr ""
5510
-
5511
- #: includes/functions/wcj-currencies.php:57
5512
- msgid "Falkland Islands pound"
5513
- msgstr ""
5514
-
5515
- #: includes/functions/wcj-currencies.php:58
5516
- msgid "Pounds Sterling"
5517
- msgstr ""
5518
-
5519
- #: includes/functions/wcj-currencies.php:59
5520
- msgid "Georgian lari"
5521
- msgstr ""
5522
-
5523
- #: includes/functions/wcj-currencies.php:60
5524
- msgid "Ghanaian cedi"
5525
- msgstr ""
5526
-
5527
- #: includes/functions/wcj-currencies.php:61
5528
- msgid "Gibraltar pound"
5529
- msgstr ""
5530
-
5531
- #: includes/functions/wcj-currencies.php:62
5532
- msgid "Guyanese dollar"
5533
- msgstr ""
5534
-
5535
- #: includes/functions/wcj-currencies.php:63
5536
- msgid "Gambian dalasi"
5537
- msgstr ""
5538
-
5539
- #: includes/functions/wcj-currencies.php:64
5540
- msgid "Guinean franc"
5541
- msgstr ""
5542
-
5543
- #: includes/functions/wcj-currencies.php:65
5544
- #: includes/functions/wcj-currencies.php:168
5545
- msgid "Central African CFA franc"
5546
- msgstr ""
5547
-
5548
- #: includes/functions/wcj-currencies.php:66
5549
- msgid "Guatemalan quetzal"
5550
- msgstr ""
5551
-
5552
- #: includes/functions/wcj-currencies.php:67
5553
- msgid "Hong Kong Dollar"
5554
- msgstr ""
5555
-
5556
- #: includes/functions/wcj-currencies.php:68
5557
- msgid "Honduran lempira"
5558
- msgstr ""
5559
-
5560
- #: includes/functions/wcj-currencies.php:69
5561
- msgid "Croatia kuna"
5562
- msgstr ""
5563
-
5564
- #: includes/functions/wcj-currencies.php:70
5565
- msgid "Haitian gourde"
5566
- msgstr ""
5567
-
5568
- #: includes/functions/wcj-currencies.php:71
5569
- msgid "Hungarian Forint"
5570
- msgstr ""
5571
-
5572
- #: includes/functions/wcj-currencies.php:72
5573
- msgid "Indonesia Rupiah"
5574
- msgstr ""
5575
-
5576
- #: includes/functions/wcj-currencies.php:73
5577
- msgid "Israeli Shekel"
5578
- msgstr ""
5579
-
5580
- #: includes/functions/wcj-currencies.php:74
5581
- msgid "Indian Rupee"
5582
- msgstr ""
5583
-
5584
- #: includes/functions/wcj-currencies.php:75
5585
- msgid "Iraqi dinar"
5586
- msgstr ""
5587
-
5588
- #: includes/functions/wcj-currencies.php:76
5589
- msgid "Iranian rial"
5590
- msgstr ""
5591
-
5592
- #: includes/functions/wcj-currencies.php:77
5593
- msgid "Icelandic krona"
5594
- msgstr ""
5595
-
5596
- #: includes/functions/wcj-currencies.php:78
5597
- msgid "Yemeni rial"
5598
- msgstr ""
5599
-
5600
- #: includes/functions/wcj-currencies.php:79
5601
- msgid "Jamaican dollar"
5602
- msgstr ""
5603
-
5604
- #: includes/functions/wcj-currencies.php:80
5605
- msgid "Jordanian dinar"
5606
- msgstr ""
5607
-
5608
- #: includes/functions/wcj-currencies.php:81
5609
- msgid "Japanese Yen"
5610
- msgstr ""
5611
-
5612
- #: includes/functions/wcj-currencies.php:82
5613
- msgid "Kenyan shilling"
5614
- msgstr ""
5615
-
5616
- #: includes/functions/wcj-currencies.php:83
5617
- msgid "Kyrgyzstani som"
5618
- msgstr ""
5619
-
5620
- #: includes/functions/wcj-currencies.php:84
5621
- msgid "Cambodian riel"
5622
- msgstr ""
5623
-
5624
- #: includes/functions/wcj-currencies.php:85
5625
- msgid "Lao kip"
5626
- msgstr ""
5627
-
5628
- #: includes/functions/wcj-currencies.php:86
5629
- msgid "Cayman Islands dollar"
5630
- msgstr ""
5631
-
5632
- #: includes/functions/wcj-currencies.php:87
5633
- msgid "Comorian franc"
5634
- msgstr ""
5635
-
5636
- #: includes/functions/wcj-currencies.php:88
5637
- msgid "North Korean won"
5638
- msgstr ""
5639
-
5640
- #: includes/functions/wcj-currencies.php:89
5641
- msgid "South Korean Won"
5642
- msgstr ""
5643
-
5644
- #: includes/functions/wcj-currencies.php:90
5645
- msgid "Kuwaiti dinar"
5646
- msgstr ""
5647
-
5648
- #: includes/functions/wcj-currencies.php:91
5649
- msgid "Kazakhstani tenge"
5650
- msgstr ""
5651
-
5652
- #: includes/functions/wcj-currencies.php:92
5653
- msgid "Lao Kip"
5654
- msgstr ""
5655
-
5656
- #: includes/functions/wcj-currencies.php:93
5657
- msgid "Lebanese lira"
5658
- msgstr ""
5659
-
5660
- #: includes/functions/wcj-currencies.php:94
5661
- msgid "Libyan dinar"
5662
- msgstr ""
5663
-
5664
- #: includes/functions/wcj-currencies.php:95
5665
- msgid "Sri Lankan rupee"
5666
- msgstr ""
5667
-
5668
- #: includes/functions/wcj-currencies.php:96
5669
- msgid "Liberian dollar"
5670
- msgstr ""
5671
-
5672
- #: includes/functions/wcj-currencies.php:97
5673
- msgid "Lesotho loti"
5674
- msgstr ""
5675
-
5676
- #: includes/functions/wcj-currencies.php:98
5677
- msgid "Lithuanian litas"
5678
- msgstr ""
5679
-
5680
- #: includes/functions/wcj-currencies.php:99
5681
- msgid "Latvian lats"
5682
- msgstr ""
5683
-
5684
- #: includes/functions/wcj-currencies.php:100
5685
- msgid "Moroccan dirham"
5686
- msgstr ""
5687
-
5688
- #: includes/functions/wcj-currencies.php:101
5689
- msgid "Moldovan leu"
5690
- msgstr ""
5691
-
5692
- #: includes/functions/wcj-currencies.php:102
5693
- msgid "Malagasy ariary"
5694
- msgstr ""
5695
-
5696
- #: includes/functions/wcj-currencies.php:103
5697
- msgid "Malaysian ringgit"
5698
- msgstr ""
5699
-
5700
- #: includes/functions/wcj-currencies.php:104
5701
- msgid "Macedonian denar"
5702
- msgstr ""
5703
-
5704
- #: includes/functions/wcj-currencies.php:105
5705
- msgid "Myanma kyat"
5706
- msgstr ""
5707
-
5708
- #: includes/functions/wcj-currencies.php:106
5709
- msgid "Mongolian tugrik"
5710
- msgstr ""
5711
-
5712
- #: includes/functions/wcj-currencies.php:107
5713
- msgid "Macanese pataca"
5714
- msgstr ""
5715
-
5716
- #: includes/functions/wcj-currencies.php:108
5717
- msgid "Mauritanian ouguiya"
5718
- msgstr ""
5719
-
5720
- #: includes/functions/wcj-currencies.php:109
5721
- msgid "Mauritian rupee"
5722
- msgstr ""
5723
-
5724
- #: includes/functions/wcj-currencies.php:110
5725
- msgid "Maldivian rufiyaa"
5726
- msgstr ""
5727
-
5728
- #: includes/functions/wcj-currencies.php:111
5729
- msgid "Malawian kwacha"
5730
- msgstr ""
5731
-
5732
- #: includes/functions/wcj-currencies.php:112
5733
- msgid "Mexican Peso"
5734
- msgstr ""
5735
-
5736
- #: includes/functions/wcj-currencies.php:113
5737
- msgid "Malaysian Ringgits"
5738
- msgstr ""
5739
-
5740
- #: includes/functions/wcj-currencies.php:114
5741
- msgid "Mozambican metical"
5742
- msgstr ""
5743
-
5744
- #: includes/functions/wcj-currencies.php:115
5745
- msgid "Namibian dollar"
5746
- msgstr ""
5747
-
5748
- #: includes/functions/wcj-currencies.php:116
5749
- msgid "Nigerian Naira"
5750
- msgstr ""
5751
-
5752
- #: includes/functions/wcj-currencies.php:117
5753
- msgid "Nicaraguan cordoba"
5754
- msgstr ""
5755
-
5756
- #: includes/functions/wcj-currencies.php:118
5757
- msgid "Norwegian Krone"
5758
- msgstr ""
5759
-
5760
- #: includes/functions/wcj-currencies.php:119
5761
- msgid "Nepali Rupee"
5762
- msgstr ""
5763
-
5764
- #: includes/functions/wcj-currencies.php:120
5765
- msgid "New Zealand Dollar"
5766
- msgstr ""
5767
-
5768
- #: includes/functions/wcj-currencies.php:121
5769
- msgid "Omani rial"
5770
- msgstr ""
5771
-
5772
- #: includes/functions/wcj-currencies.php:122
5773
- msgid "Panamanian balboa"
5774
- msgstr ""
5775
-
5776
- #: includes/functions/wcj-currencies.php:123
5777
- msgid "Peruvian nuevo sol"
5778
- msgstr ""
5779
-
5780
- #: includes/functions/wcj-currencies.php:124
5781
- msgid "Papua New Guinean kina"
5782
- msgstr ""
5783
-
5784
- #: includes/functions/wcj-currencies.php:125
5785
- msgid "Philippine Pesos"
5786
- msgstr ""
5787
-
5788
- #: includes/functions/wcj-currencies.php:126
5789
- msgid "Paraguayan guarani"
5790
- msgstr ""
5791
-
5792
- #: includes/functions/wcj-currencies.php:127
5793
- msgid "Pakistani Rupee"
5794
- msgstr ""
5795
-
5796
- #: includes/functions/wcj-currencies.php:128
5797
- msgid "Polish Zloty"
5798
- msgstr ""
5799
-
5800
- #: includes/functions/wcj-currencies.php:129
5801
- msgid "Paraguayan Guaraní"
5802
- msgstr ""
5803
-
5804
- #: includes/functions/wcj-currencies.php:130
5805
- msgid "Qatari riyal"
5806
- msgstr ""
5807
-
5808
- #: includes/functions/wcj-currencies.php:131
5809
- msgid "Chinese renminbi"
5810
- msgstr ""
5811
-
5812
- #: includes/functions/wcj-currencies.php:132
5813
- msgid "Romanian Leu"
5814
- msgstr ""
5815
-
5816
- #: includes/functions/wcj-currencies.php:133
5817
- msgid "Serbian dinar"
5818
- msgstr ""
5819
-
5820
- #: includes/functions/wcj-currencies.php:134
5821
- msgid "Russian Ruble"
5822
- msgstr ""
5823
-
5824
- #: includes/functions/wcj-currencies.php:135
5825
- msgid "Rwandan franc"
5826
- msgstr ""
5827
-
5828
- #: includes/functions/wcj-currencies.php:136
5829
- msgid "Saudi Riyal"
5830
- msgstr ""
5831
-
5832
- #: includes/functions/wcj-currencies.php:137
5833
- msgid "Solomon Islands dollar"
5834
- msgstr ""
5835
-
5836
- #: includes/functions/wcj-currencies.php:138
5837
- msgid "Seychellois rupee"
5838
- msgstr ""
5839
-
5840
- #: includes/functions/wcj-currencies.php:139
5841
- msgid "Sudanese pound"
5842
- msgstr ""
5843
-
5844
- #: includes/functions/wcj-currencies.php:140
5845
- msgid "Swedish Krona"
5846
- msgstr ""
5847
-
5848
- #: includes/functions/wcj-currencies.php:141
5849
- msgid "Singapore Dollar"
5850
- msgstr ""
5851
-
5852
- #: includes/functions/wcj-currencies.php:142
5853
- msgid "Saint Helena pound"
5854
- msgstr ""
5855
-
5856
- #: includes/functions/wcj-currencies.php:143
5857
- msgid "Syrian pound"
5858
- msgstr ""
5859
-
5860
- #: includes/functions/wcj-currencies.php:144
5861
- msgid "Slovak koruna"
5862
- msgstr ""
5863
-
5864
- #: includes/functions/wcj-currencies.php:145
5865
- msgid "Sierra Leonean leone"
5866
- msgstr ""
5867
-
5868
- #: includes/functions/wcj-currencies.php:146
5869
- msgid "Somali shilling"
5870
- msgstr ""
5871
-
5872
- #: includes/functions/wcj-currencies.php:147
5873
- msgid "Surinamese dollar"
5874
- msgstr ""
5875
-
5876
- #: includes/functions/wcj-currencies.php:148
5877
- msgid "Sao Tome and Principe dobra"
5878
- msgstr ""
5879
-
5880
- #: includes/functions/wcj-currencies.php:149
5881
- msgid "Swazi lilangeni"
5882
- msgstr ""
5883
-
5884
- #: includes/functions/wcj-currencies.php:150
5885
- msgid "Thai Baht"
5886
- msgstr ""
5887
-
5888
- #: includes/functions/wcj-currencies.php:151
5889
- msgid "Tajikistani somoni"
5890
- msgstr ""
5891
-
5892
- #: includes/functions/wcj-currencies.php:152
5893
- msgid "Turkmen manat"
5894
- msgstr ""
5895
-
5896
- #: includes/functions/wcj-currencies.php:153
5897
- msgid "Tunisian dinar"
5898
- msgstr ""
5899
-
5900
- #: includes/functions/wcj-currencies.php:154
5901
- msgid "Paanga"
5902
- msgstr ""
5903
-
5904
- #: includes/functions/wcj-currencies.php:155
5905
- msgid "Turkish Lira"
5906
- msgstr ""
5907
-
5908
- #: includes/functions/wcj-currencies.php:156
5909
- msgid "Trinidad and Tobago dollar"
5910
- msgstr ""
5911
-
5912
- #: includes/functions/wcj-currencies.php:157
5913
- msgid "Taiwan New Dollars"
5914
- msgstr ""
5915
-
5916
- #: includes/functions/wcj-currencies.php:158
5917
- msgid "Tanzanian shilling"
5918
- msgstr ""
5919
-
5920
- #: includes/functions/wcj-currencies.php:159
5921
- msgid "Ukrainian Hryvnia"
5922
- msgstr ""
5923
-
5924
- #: includes/functions/wcj-currencies.php:160
5925
- msgid "Ugandan shilling"
5926
- msgstr ""
5927
-
5928
- #: includes/functions/wcj-currencies.php:161
5929
- msgid "Uruguayan peso"
5930
- msgstr ""
5931
-
5932
- #: includes/functions/wcj-currencies.php:162
5933
- msgid "US Dollars"
5934
- msgstr ""
5935
-
5936
- #: includes/functions/wcj-currencies.php:163
5937
- msgid "Uzbekistani som"
5938
- msgstr ""
5939
-
5940
- #: includes/functions/wcj-currencies.php:164
5941
- msgid "Venezuelan bolivar"
5942
- msgstr ""
5943
-
5944
- #: includes/functions/wcj-currencies.php:165
5945
- msgid "Vietnamese Dong"
5946
- msgstr ""
5947
-
5948
- #: includes/functions/wcj-currencies.php:166
5949
- msgid "Vanuatu vatu"
5950
- msgstr ""
5951
-
5952
- #: includes/functions/wcj-currencies.php:167
5953
- msgid "Samoan tala"
5954
- msgstr ""
5955
-
5956
- #: includes/functions/wcj-currencies.php:169
5957
- msgid "East Caribbean dollar"
5958
- msgstr ""
5959
-
5960
- #: includes/functions/wcj-currencies.php:170
5961
- msgid "Special Drawing Rights"
5962
- msgstr ""
5963
-
5964
- #: includes/functions/wcj-currencies.php:171
5965
- msgid "West African CFA franc"
5966
- msgstr ""
5967
-
5968
- #: includes/functions/wcj-currencies.php:172
5969
- msgid "CFP franc"
5970
- msgstr ""
5971
-
5972
- #: includes/functions/wcj-currencies.php:173
5973
- msgid "South African rand"
5974
- msgstr ""
5975
-
5976
- #: includes/functions/wcj-currencies.php:174
5977
- msgid "Zambian kwacha"
5978
- msgstr ""
5979
-
5980
- #: includes/functions/wcj-currencies.php:175
5981
- msgid "Zimbabwean dollar"
5982
- msgstr ""
5983
-
5984
- #: includes/functions/wcj-currencies.php:176
5985
- msgid "Bitcoin"
5986
- msgstr ""
5987
-
5988
- #: includes/functions/wcj-currencies.php:177
5989
- msgid "Ethereum"
5990
- msgstr ""
5991
-
5992
- #: includes/functions/wcj-currencies.php:178
5993
- msgid "myCred"
5994
- msgstr ""
5995
-
5996
- #: includes/functions/wcj-exchange-rates-functions.php:21
5997
- msgid "Yahoo"
5998
- msgstr ""
5999
-
6000
- #: includes/functions/wcj-exchange-rates-functions.php:22
6001
- msgid "European Central Bank (ECB)"
6002
- msgstr ""
6003
-
6004
- #: includes/functions/wcj-exchange-rates-functions.php:23
6005
- msgid "TCMB"
6006
- msgstr ""
6007
-
6008
- #: includes/functions/wcj-general-functions.php:224
6009
- #: includes/settings/wcj-settings-left-to-free-shipping.php:143
6010
- msgid "You have Free delivery"
6011
- msgstr ""
6012
-
6013
- #: includes/functions/wcj-general-functions.php:245
6014
- msgid "Before cart"
6015
- msgstr ""
6016
-
6017
- #: includes/functions/wcj-general-functions.php:246
6018
- msgid "Before cart table"
6019
- msgstr ""
6020
-
6021
- #: includes/functions/wcj-general-functions.php:247
6022
- msgid "Before cart contents"
6023
- msgstr ""
6024
-
6025
- #: includes/functions/wcj-general-functions.php:248
6026
- msgid "Cart contents"
6027
- msgstr ""
6028
-
6029
- #: includes/functions/wcj-general-functions.php:249
6030
- msgid "Cart coupon"
6031
- msgstr ""
6032
-
6033
- #: includes/functions/wcj-general-functions.php:250
6034
- msgid "Cart actions"
6035
- msgstr ""
6036
-
6037
- #: includes/functions/wcj-general-functions.php:251
6038
- msgid "After cart contents"
6039
- msgstr ""
6040
-
6041
- #: includes/functions/wcj-general-functions.php:252
6042
- msgid "After cart table"
6043
- msgstr ""
6044
-
6045
- #: includes/functions/wcj-general-functions.php:253
6046
- msgid "Cart collaterals"
6047
- msgstr ""
6048
-
6049
- #: includes/functions/wcj-general-functions.php:254
6050
- msgid "After cart"
6051
- msgstr ""
6052
-
6053
- #: includes/functions/wcj-general-functions.php:256
6054
- msgid "Before cart totals"
6055
- msgstr ""
6056
-
6057
- #: includes/functions/wcj-general-functions.php:257
6058
- msgid "Cart totals: Before shipping"
6059
- msgstr ""
6060
-
6061
- #: includes/functions/wcj-general-functions.php:258
6062
- msgid "Cart totals: After shipping"
6063
- msgstr ""
6064
-
6065
- #: includes/functions/wcj-general-functions.php:259
6066
- msgid "Cart totals: Before order total"
6067
- msgstr ""
6068
-
6069
- #: includes/functions/wcj-general-functions.php:260
6070
- msgid "Cart totals: After order total"
6071
- msgstr ""
6072
-
6073
- #: includes/functions/wcj-general-functions.php:261
6074
- msgid "Proceed to checkout"
6075
- msgstr ""
6076
-
6077
- #: includes/functions/wcj-general-functions.php:262
6078
- msgid "After cart totals"
6079
- msgstr ""
6080
-
6081
- #: includes/functions/wcj-general-functions.php:264
6082
- msgid "Before shipping calculator"
6083
- msgstr ""
6084
-
6085
- #: includes/functions/wcj-general-functions.php:265
6086
- msgid "After shipping calculator"
6087
- msgstr ""
6088
-
6089
- #: includes/functions/wcj-general-functions.php:267
6090
- msgid "If cart is empty"
6091
- msgstr ""
6092
-
6093
- #: includes/functions/wcj-invoicing-functions.php:209
6094
- msgid "Invoice"
6095
- msgstr ""
6096
-
6097
- #: includes/functions/wcj-invoicing-functions.php:210
6098
- msgid "Invoices"
6099
- msgstr ""
6100
-
6101
- #: includes/functions/wcj-invoicing-functions.php:217
6102
- msgid "Proforma Invoice"
6103
- msgstr ""
6104
-
6105
- #: includes/functions/wcj-invoicing-functions.php:218
6106
- msgid "Proforma Invoices"
6107
- msgstr ""
6108
-
6109
- #: includes/functions/wcj-invoicing-functions.php:225
6110
- msgid "Packing Slip"
6111
- msgstr ""
6112
-
6113
- #: includes/functions/wcj-invoicing-functions.php:226
6114
- msgid "Packing Slips"
6115
- msgstr ""
6116
-
6117
- #: includes/functions/wcj-invoicing-functions.php:233
6118
- msgid "Credit Note"
6119
- msgstr ""
6120
-
6121
- #: includes/functions/wcj-invoicing-functions.php:234
6122
- msgid "Credit Notes"
6123
- msgstr ""
6124
-
6125
- #: includes/functions/wcj-invoicing-functions.php:252
6126
- msgid "Custom Document"
6127
- msgstr ""
6128
-
6129
- #: includes/functions/wcj-invoicing-functions.php:253
6130
- msgid "Custom Documents"
6131
- msgstr ""
6132
-
6133
- #: includes/functions/wcj-order-functions.php:112
6134
- msgctxt "Order status"
6135
- msgid "Pending Payment"
6136
- msgstr ""
6137
-
6138
- #: includes/functions/wcj-order-functions.php:114
6139
- msgctxt "Order status"
6140
- msgid "On Hold"
6141
- msgstr ""
6142
-
6143
- #: includes/functions/wcj-reports-functions.php:22
6144
- msgid "Daily Total Sum"
6145
- msgstr ""
6146
-
6147
- #: includes/functions/wcj-reports-functions.php:23
6148
- msgid "Daily Total Quantity"
6149
- msgstr ""
6150
-
6151
- #: includes/functions/wcj-reports-functions.php:26
6152
- msgid "Item Title"
6153
- msgstr ""
6154
-
6155
- #: includes/functions/wcj-reports-functions.php:27
6156
- msgid "Quantity"
6157
- msgstr ""
6158
-
6159
- #: includes/functions/wcj-reports-functions.php:28
6160
- msgid "Sum"
6161
- msgstr ""
6162
-
6163
- #: includes/functions/wcj-reports-functions.php:30
6164
- msgid "Last Sale Date"
6165
- msgstr ""
6166
-
6167
- #: includes/functions/wcj-reports-functions.php:31
6168
- msgid "Last Sale Order ID"
6169
- msgstr ""
6170
-
6171
- #: includes/functions/wcj-reports-functions.php:32
6172
- msgid "Last Sale Order Status"
6173
- msgstr ""
6174
-
6175
- #: includes/functions/wcj-reports-functions.php:80
6176
- msgid "Last 14 days"
6177
- msgstr ""
6178
-
6179
- #: includes/functions/wcj-reports-functions.php:85
6180
- msgid "Last 30 days"
6181
- msgstr ""
6182
-
6183
- #: includes/functions/wcj-reports-functions.php:90
6184
- msgid "Last 3 months"
6185
- msgstr ""
6186
-
6187
- #: includes/functions/wcj-reports-functions.php:95
6188
- msgid "Last 6 months"
6189
- msgstr ""
6190
-
6191
- #: includes/functions/wcj-reports-functions.php:100
6192
- msgid "Last 12 months"
6193
- msgstr ""
6194
-
6195
- #: includes/functions/wcj-reports-functions.php:105
6196
- msgid "Last 24 months"
6197
- msgstr ""
6198
-
6199
- #: includes/functions/wcj-reports-functions.php:110
6200
- msgid "Last 36 months"
6201
- msgstr ""
6202
-
6203
- #: includes/functions/wcj-reports-functions.php:115
6204
- msgid "Same days last month"
6205
- msgstr ""
6206
-
6207
- #: includes/functions/wcj-reports-functions.php:120
6208
- msgid "Same days last year"
6209
- msgstr ""
6210
-
6211
- #: includes/functions/wcj-reports-functions.php:125
6212
- msgid "Last year"
6213
- msgstr ""
6214
-
6215
- #: includes/functions/wcj-reports-functions.php:130
6216
- msgid "Yesterday"
6217
- msgstr ""
6218
-
6219
- #: includes/functions/wcj-reports-functions.php:135
6220
- msgid "Today"
6221
- msgstr ""
6222
-
6223
- #: includes/functions/wcj-user-roles-functions.php:101
6224
- #: includes/functions/wcj-user-roles-functions.php:121
6225
- msgid "Guest"
6226
- msgstr ""
6227
-
6228
- #: includes/gateways/class-wc-gateway-wcj-custom.php:61
6229
- msgid "Enable Custom Payment"
6230
- msgstr ""
6231
-
6232
- #: includes/gateways/class-wc-gateway-wcj-custom.php:68
6233
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:159
6234
- #: includes/shipping/class-wc-shipping-wcj-custom.php:118
6235
- msgid "This controls the title which the user sees during checkout."
6236
- msgstr ""
6237
-
6238
- #: includes/gateways/class-wc-gateway-wcj-custom.php:69
6239
- msgid "Custom Payment"
6240
- msgstr ""
6241
-
6242
- #: includes/gateways/class-wc-gateway-wcj-custom.php:76
6243
- msgid "Payment method description that the customer will see on your checkout."
6244
- msgstr ""
6245
-
6246
- #: includes/gateways/class-wc-gateway-wcj-custom.php:77
6247
- msgid "You can add input fields with [wcj_input_field] shortcode."
6248
- msgstr ""
6249
-
6250
- #: includes/gateways/class-wc-gateway-wcj-custom.php:78
6251
- msgid "Custom Payment Description."
6252
- msgstr ""
6253
-
6254
- #: includes/gateways/class-wc-gateway-wcj-custom.php:83
6255
- msgid "Instructions"
6256
- msgstr ""
6257
-
6258
- #: includes/gateways/class-wc-gateway-wcj-custom.php:85
6259
- msgid "Instructions that will be added to the thank you page."
6260
- msgstr ""
6261
-
6262
- #: includes/gateways/class-wc-gateway-wcj-custom.php:91
6263
- msgid "Email Instructions"
6264
- msgstr ""
6265
-
6266
- #: includes/gateways/class-wc-gateway-wcj-custom.php:93
6267
- msgid "Instructions that will be added to the emails."
6268
- msgstr ""
6269
-
6270
- #: includes/gateways/class-wc-gateway-wcj-custom.php:99
6271
- msgid "Icon"
6272
- msgstr ""
6273
-
6274
- #: includes/gateways/class-wc-gateway-wcj-custom.php:101
6275
- #: includes/settings/wcj-settings-payment-gateways-icons.php:16
6276
- msgid ""
6277
- "If you want to show an image next to the gateway's name on the frontend, "
6278
- "enter a URL to an image."
6279
- msgstr ""
6280
-
6281
- #: includes/gateways/class-wc-gateway-wcj-custom.php:108
6282
- msgid "Minimum order amount"
6283
- msgstr ""
6284
-
6285
- #: includes/gateways/class-wc-gateway-wcj-custom.php:110
6286
- msgid ""
6287
- "If you want to set minimum order amount (excluding fees) to show this "
6288
- "gateway on frontend, enter a number here. Set to 0 to disable."
6289
- msgstr ""
6290
-
6291
- #: includes/gateways/class-wc-gateway-wcj-custom.php:117
6292
- #: includes/settings/wcj-settings-payment-gateways-by-shipping.php:43
6293
- msgid "Enable for shipping methods"
6294
- msgstr ""
6295
-
6296
- #: includes/gateways/class-wc-gateway-wcj-custom.php:122
6297
- msgid ""
6298
- "If gateway is only available for certain shipping methods, set it up here. "
6299
- "Leave blank to enable for all methods."
6300
- msgstr ""
6301
-
6302
- #: includes/gateways/class-wc-gateway-wcj-custom.php:125
6303
- #: includes/settings/wcj-settings-payment-gateways-by-shipping.php:50
6304
- msgid "Select shipping methods"
6305
- msgstr ""
6306
-
6307
- #: includes/gateways/class-wc-gateway-wcj-custom.php:129
6308
- msgid "Enable for virtual orders"
6309
- msgstr ""
6310
-
6311
- #: includes/gateways/class-wc-gateway-wcj-custom.php:130
6312
- msgid "Enable gateway if the order is virtual"
6313
- msgstr ""
6314
-
6315
- #: includes/gateways/class-wc-gateway-wcj-custom.php:136
6316
- #: includes/settings/wcj-settings-order-custom-statuses.php:19
6317
- msgid "Default Order Status"
6318
- msgstr ""
6319
-
6320
- #: includes/gateways/class-wc-gateway-wcj-custom.php:137
6321
- msgid "Enable Custom Statuses feature to add custom statuses to the list."
6322
- msgstr ""
6323
-
6324
- #: includes/gateways/class-wc-gateway-wcj-custom.php:144
6325
- msgid "Send Additional Emails"
6326
- msgstr ""
6327
-
6328
- #: includes/gateways/class-wc-gateway-wcj-custom.php:145
6329
- msgid "Send to Admin"
6330
- msgstr ""
6331
-
6332
- #: includes/gateways/class-wc-gateway-wcj-custom.php:153
6333
- msgid "Send to Customer"
6334
- msgstr ""
6335
-
6336
- #: includes/gateways/class-wc-gateway-wcj-custom.php:154
6337
- msgid ""
6338
- "This may help if you are using pending or custom default status and not "
6339
- "getting new order emails."
6340
- msgstr ""
6341
-
6342
- #: includes/gateways/class-wc-gateway-wcj-custom.php:160
6343
- msgid "Custom Return URL (Thank You Page)"
6344
- msgstr ""
6345
-
6346
- #: includes/gateways/class-wc-gateway-wcj-custom.php:162
6347
- msgid "Enter full URL with http(s)."
6348
- msgstr ""
6349
-
6350
- #: includes/gateways/class-wc-gateway-wcj-custom.php:163
6351
- msgid "Optional. Leave blank to use default URL."
6352
- msgstr ""
6353
-
6354
- #: includes/gateways/class-wc-gateway-wcj-custom.php:354
6355
- #: includes/settings/wcj-settings-payment-gateways.php:38
6356
- msgid "Custom Gateway"
6357
- msgstr ""
6358
-
6359
- #: includes/gateways/class-wc-gateway-wcj-custom.php:355
6360
- msgid "Booster for WooCommerce: Custom Payment Gateway"
6361
- msgstr ""
6362
-
6363
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:37
6364
- #: includes/settings/wcj-settings-checkout-core-fields.php:29
6365
- #: includes/settings/wcj-settings-checkout-files-upload.php:39
6366
- #: includes/settings/wcj-settings-export.php:70
6367
- #: includes/settings/wcj-settings-export.php:138
6368
- #: includes/settings/wcj-settings-export.php:219
6369
- #: includes/settings/wcj-settings-global-discount.php:42
6370
- #: includes/settings/wcj-settings-orders.php:96
6371
- #: includes/settings/wcj-settings-product-by-user.php:149
6372
- #: includes/settings/wcj-settings-product-listings.php:203
6373
- #: includes/settings/wcj-settings-products-xml.php:71
6374
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:37
6375
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:21
6376
- #: includes/settings/meta-box/wcj-settings-meta-box-product-bookings.php:14
6377
- #: includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php:20
6378
- #: includes/settings/meta-box/wcj-settings-meta-box-product-by-time.php:20
6379
- #: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:14
6380
- #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:21
6381
- msgid "Enabled"
6382
- msgstr ""
6383
-
6384
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:48
6385
- #: includes/settings/wcj-settings-checkout-custom-fields.php:82
6386
- #: includes/settings/wcj-settings-more-button-labels.php:19
6387
- msgid "Text"
6388
- msgstr ""
6389
-
6390
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:49
6391
- #: includes/settings/wcj-settings-checkout-custom-fields.php:83
6392
- msgid "Textarea"
6393
- msgstr ""
6394
-
6395
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:50
6396
- #: includes/settings/wcj-settings-checkout-custom-fields.php:84
6397
- msgid "Number"
6398
- msgstr ""
6399
-
6400
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:51
6401
- #: includes/settings/wcj-settings-checkout-custom-fields.php:85
6402
- #: includes/settings/wcj-settings-product-addons.php:76
6403
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:50
6404
- msgid "Checkbox"
6405
- msgstr ""
6406
-
6407
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:53
6408
- #: includes/settings/wcj-settings-checkout-custom-fields.php:86
6409
- msgid "Datepicker"
6410
- msgstr ""
6411
-
6412
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:54
6413
- #: includes/settings/wcj-settings-checkout-custom-fields.php:87
6414
- msgid "Weekpicker"
6415
- msgstr ""
6416
-
6417
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:55
6418
- #: includes/settings/wcj-settings-checkout-custom-fields.php:88
6419
- msgid "Timepicker"
6420
- msgstr ""
6421
-
6422
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:56
6423
- #: includes/settings/wcj-settings-checkout-custom-fields.php:89
6424
- msgid "Select"
6425
- msgstr ""
6426
-
6427
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:57
6428
- #: includes/settings/wcj-settings-checkout-custom-fields.php:90
6429
- msgid "Radio"
6430
- msgstr ""
6431
-
6432
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:58
6433
- #: includes/settings/wcj-settings-checkout-custom-fields.php:91
6434
- msgid "Password"
6435
- msgstr ""
6436
-
6437
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:62
6438
- #: includes/settings/wcj-settings-checkout-custom-fields.php:95
6439
- msgid "Phone"
6440
- msgstr ""
6441
-
6442
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:75
6443
- #: includes/settings/wcj-settings-checkout-custom-fields.php:112
6444
- #: includes/settings/wcj-settings-eu-vat-number.php:27
6445
- msgid "Placeholder"
6446
- msgstr ""
6447
-
6448
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:82
6449
- #: includes/settings/wcj-settings-checkout-core-fields.php:41
6450
- #: includes/settings/wcj-settings-checkout-custom-fields.php:99
6451
- #: includes/settings/wcj-settings-checkout-files-upload.php:45
6452
- #: includes/settings/wcj-settings-eu-vat-number.php:49
6453
- #: includes/settings/wcj-settings-product-by-user.php:155
6454
- msgid "Required"
6455
- msgstr ""
6456
-
6457
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:89
6458
- msgid "Message on required"
6459
- msgstr ""
6460
-
6461
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:107
6462
- msgid "If checkbox is selected, set value for ON here"
6463
- msgstr ""
6464
-
6465
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:108
6466
- msgid "Checkbox: ON"
6467
- msgstr ""
6468
-
6469
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:115
6470
- msgid "If checkbox is selected, set value for OFF here"
6471
- msgstr ""
6472
-
6473
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:116
6474
- msgid "Checkbox: OFF"
6475
- msgstr ""
6476
-
6477
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:123
6478
- msgid "If checkbox is selected, set default value here"
6479
- msgstr ""
6480
-
6481
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:124
6482
- msgid "Checkbox: Default"
6483
- msgstr ""
6484
-
6485
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:128
6486
- #: includes/settings/wcj-settings-checkout-custom-fields.php:180
6487
- msgid "Not Checked"
6488
- msgstr ""
6489
-
6490
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:129
6491
- #: includes/settings/wcj-settings-checkout-custom-fields.php:181
6492
- #: includes/settings/wcj-settings-checkout-customization.php:26
6493
- msgid "Checked"
6494
- msgstr ""
6495
-
6496
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:135
6497
- msgid ""
6498
- "If file is selected, set accepted file types here. E.g.: \".jpg,.jpeg,.png"
6499
- "\". Leave blank to accept all files"
6500
- msgstr ""
6501
-
6502
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:136
6503
- msgid ""
6504
- "Visit <a href=\"https://www.w3schools.com/tags/att_input_accept.asp\" target="
6505
- "\"_blank\">documentation on input accept attribute</a> for valid option "
6506
- "formats"
6507
- msgstr ""
6508
-
6509
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:137
6510
- msgid "File: Accepted types"
6511
- msgstr ""
6512
-
6513
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:139
6514
- msgid ".jpg,.jpeg,.png"
6515
- msgstr ""
6516
-
6517
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:144
6518
- msgid ""
6519
- "If file is selected, set max file size here. Set to zero to accept all files"
6520
- msgstr ""
6521
-
6522
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:145
6523
- msgid "File: Max size"
6524
- msgstr ""
6525
-
6526
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:152
6527
- msgid ""
6528
- "If datepicker/weekpicker is selected, set date format here. Visit <a href="
6529
- "\"https://codex.wordpress.org/Formatting_Date_and_Time\" target=\"_blank"
6530
- "\">documentation on date and time formatting</a> for valid date formats"
6531
- msgstr ""
6532
-
6533
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:153
6534
- #: includes/settings/wcj-settings-checkout-custom-fields.php:187
6535
- msgid "Leave blank to use your current WordPress format"
6536
- msgstr ""
6537
-
6538
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:154
6539
- msgid "Datepicker/Weekpicker: Date format"
6540
- msgstr ""
6541
-
6542
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:161
6543
- msgid "If datepicker/weekpicker is selected, set min date (in days) here"
6544
- msgstr ""
6545
-
6546
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:162
6547
- msgid "Datepicker/Weekpicker: Min date"
6548
- msgstr ""
6549
-
6550
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:169
6551
- msgid "If datepicker/weekpicker is selected, set max date (in days) here"
6552
- msgstr ""
6553
-
6554
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:170
6555
- msgid "Datepicker/Weekpicker: Max date"
6556
- msgstr ""
6557
-
6558
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:177
6559
- msgid ""
6560
- "If datepicker/weekpicker is selected, set if you want to add year selector"
6561
- msgstr ""
6562
-
6563
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:178
6564
- msgid "Datepicker/Weekpicker: Change year"
6565
- msgstr ""
6566
-
6567
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:185
6568
- msgid ""
6569
- "If datepicker/weekpicker is selected, and year selector is enabled, set year "
6570
- "range here"
6571
- msgstr ""
6572
-
6573
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:186
6574
- msgid "Datepicker/Weekpicker: Year range"
6575
- msgstr ""
6576
-
6577
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:194
6578
- msgid "If datepicker/weekpicker is selected, set first week day here"
6579
- msgstr ""
6580
-
6581
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:195
6582
- msgid "Datepicker/Weekpicker: First week day"
6583
- msgstr ""
6584
-
6585
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:199
6586
- #: includes/settings/wcj-settings-checkout-custom-fields.php:225
6587
- msgid "Sunday"
6588
- msgstr ""
6589
-
6590
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:200
6591
- #: includes/settings/wcj-settings-checkout-custom-fields.php:226
6592
- msgid "Monday"
6593
- msgstr ""
6594
-
6595
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:201
6596
- #: includes/settings/wcj-settings-checkout-custom-fields.php:227
6597
- msgid "Tuesday"
6598
- msgstr ""
6599
-
6600
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:202
6601
- #: includes/settings/wcj-settings-checkout-custom-fields.php:228
6602
- msgid "Wednesday"
6603
- msgstr ""
6604
-
6605
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:203
6606
- #: includes/settings/wcj-settings-checkout-custom-fields.php:229
6607
- msgid "Thursday"
6608
- msgstr ""
6609
-
6610
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:204
6611
- #: includes/settings/wcj-settings-checkout-custom-fields.php:230
6612
- msgid "Friday"
6613
- msgstr ""
6614
-
6615
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:205
6616
- #: includes/settings/wcj-settings-checkout-custom-fields.php:231
6617
- msgid "Saturday"
6618
- msgstr ""
6619
-
6620
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:211
6621
- msgid ""
6622
- "If timepicker is selected, set time format here. Visit <a href=\"http://"
6623
- "timepicker.co/options/\" target=\"_blank\">timepicker options page</a> for "
6624
- "valid time formats"
6625
- msgstr ""
6626
-
6627
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:212
6628
- msgid "Timepicker: Time format"
6629
- msgstr ""
6630
-
6631
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:219
6632
- msgid ""
6633
- "If timepicker is selected, set min time here. Visit <a href=\"http://"
6634
- "timepicker.co/options/\" target=\"_blank\">timepicker options page</a> for "
6635
- "valid option formats"
6636
- msgstr ""
6637
-
6638
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:220
6639
- msgid "Timepicker: Min Time"
6640
- msgstr ""
6641
-
6642
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:227
6643
- msgid ""
6644
- "If timepicker is selected, set max time here. Visit <a href=\"http://"
6645
- "timepicker.co/options/\" target=\"_blank\">timepicker options page</a> for "
6646
- "valid option formats"
6647
- msgstr ""
6648
-
6649
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:228
6650
- msgid "Timepicker: Max Time"
6651
- msgstr ""
6652
-
6653
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:235
6654
- msgid "If timepicker is selected, set interval (in minutes) here"
6655
- msgstr ""
6656
-
6657
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:236
6658
- #: includes/settings/wcj-settings-checkout-custom-fields.php:242
6659
- msgid "Timepicker: Interval"
6660
- msgstr ""
6661
-
6662
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:243
6663
- msgid "If select/radio is selected, set options here. One option per line"
6664
- msgstr ""
6665
-
6666
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:244
6667
- #: includes/settings/wcj-settings-checkout-custom-fields.php:155
6668
- msgid "Select/Radio: Options"
6669
- msgstr ""
6670
-
6671
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:323
6672
- #: includes/input-fields/class-wcj-product-input-fields-per-product.php:165
6673
- #: includes/settings/wcj-settings-product-input-fields.php:76
6674
- msgid "Product Input Field"
6675
- msgstr ""
6676
-
6677
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:404
6678
- msgid "Wrong file type!"
6679
- msgstr ""
6680
-
6681
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:413
6682
- msgid "File is too big!"
6683
- msgstr ""
6684
-
6685
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:567
6686
- msgid "Select a country&hellip;"
6687
- msgstr ""
6688
-
6689
- #: includes/input-fields/class-wcj-product-input-fields-per-product.php:112
6690
- msgid "Booster: Product Input Fields"
6691
- msgstr ""
6692
-
6693
- #: includes/input-fields/class-wcj-product-input-fields-per-product.php:148
6694
- msgid "Total number of "
6695
- msgstr ""
6696
-
6697
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:54
6698
- msgid "Invoices successfully renumerated!"
6699
- msgstr ""
6700
-
6701
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:56
6702
- msgid "Please select at least one order status."
6703
- msgstr ""
6704
-
6705
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:61
6706
- msgid "Booster - Renumerate Invoices"
6707
- msgstr ""
6708
-
6709
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:62
6710
- msgid ""
6711
- "The tool renumerates invoices from choosen date. Invoice number format is "
6712
- "set in WooCommerce > Settings > Booster > PDF Invoicing & Packing Slips > "
6713
- "Numbering."
6714
- msgstr ""
6715
-
6716
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:69
6717
- #: includes/settings/meta-box/wcj-settings-meta-box-crowdfunding.php:23
6718
- msgid "Start Date"
6719
- msgstr ""
6720
-
6721
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:71
6722
- msgid "Date to start renumerating. Leave blank to renumerate all invoices."
6723
- msgstr ""
6724
-
6725
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:76
6726
- msgid "End Date"
6727
- msgstr ""
6728
-
6729
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:78
6730
- msgid "Date to end renumerating. Leave blank to renumerate all invoices."
6731
- msgstr ""
6732
-
6733
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:83
6734
- msgid "Start Number"
6735
- msgstr ""
6736
-
6737
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:85
6738
- msgid ""
6739
- "Counter to start renumerating. Leave 0 to continue from current counter."
6740
- msgstr ""
6741
-
6742
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:90
6743
- msgid "Delete All"
6744
- msgstr ""
6745
-
6746
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:92
6747
- msgid "Clear all invoices before renumerating."
6748
- msgstr ""
6749
-
6750
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:103
6751
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:95
6752
- msgid "Document Type"
6753
- msgstr ""
6754
-
6755
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:113
6756
- msgid "Order Statuses"
6757
- msgstr ""
6758
-
6759
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:116
6760
- msgid "Renumerate invoices"
6761
- msgstr ""
6762
-
6763
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:125
6764
- msgid "Results"
6765
- msgstr ""
6766
-
6767
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:204
6768
- #, php-format
6769
- msgid "Total documents created: %d"
6770
- msgstr ""
6771
-
6772
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:205
6773
- #, php-format
6774
- msgid "Total documents deleted: %d"
6775
- msgstr ""
6776
-
6777
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:36
6778
- msgid ""
6779
- "This option is disabled in WooCommerce > Settings > Booster > Emails & Misc. "
6780
- "> General > Advanced Options > Disable Saving PDFs in PHP directory for "
6781
- "temporary files"
6782
- msgstr ""
6783
-
6784
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:41
6785
- msgid "Sorry, but something went wrong..."
6786
- msgstr ""
6787
-
6788
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:45
6789
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:66
6790
- msgid "Please fill year and month values."
6791
- msgstr ""
6792
-
6793
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:90
6794
- msgid "Month"
6795
- msgstr ""
6796
-
6797
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:101
6798
- msgid "Display monthly documents table"
6799
- msgstr ""
6800
-
6801
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:106
6802
- msgid "Download all monthly documents PDFs in single ZIP file"
6803
- msgstr ""
6804
-
6805
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:111
6806
- msgid "Download monthly documents CSV"
6807
- msgstr ""
6808
-
6809
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:250
6810
- msgid "Document Nr."
6811
- msgstr ""
6812
-
6813
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:251
6814
- msgid "Document Date"
6815
- msgstr ""
6816
-
6817
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:253
6818
- msgid "Customer Country"
6819
- msgstr ""
6820
-
6821
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:254
6822
- msgid "Customer VAT ID"
6823
- msgstr ""
6824
-
6825
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:255
6826
- msgid "Tax %"
6827
- msgstr ""
6828
-
6829
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:256
6830
- msgid "Order Total Tax Excl."
6831
- msgstr ""
6832
-
6833
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:257
6834
- msgid "Order Taxes"
6835
- msgstr ""
6836
-
6837
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:260
6838
- msgid "Refunds"
6839
- msgstr ""
6840
-
6841
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:24
6842
- msgid "Display & Misc."
6843
- msgstr ""
6844
-
6845
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:146
6846
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:313
6847
- msgid "View"
6848
- msgstr ""
6849
-
6850
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:165
6851
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:326
6852
- msgid "Create"
6853
- msgstr ""
6854
-
6855
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:284
6856
- msgid "Booster: PDF Invoices"
6857
- msgstr ""
6858
-
6859
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-footer.php:21
6860
- msgid "Footer"
6861
- msgstr ""
6862
-
6863
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-header.php:23
6864
- msgid "Header"
6865
- msgstr ""
6866
-
6867
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-numbering.php:23
6868
- msgid "Numbering"
6869
- msgstr ""
6870
-
6871
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-page.php:23
6872
- msgid "Page Settings"
6873
- msgstr ""
6874
-
6875
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-styling.php:23
6876
- msgid "Styling"
6877
- msgstr ""
6878
-
6879
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-templates.php:23
6880
- msgid "Templates"
6881
- msgstr ""
6882
-
6883
- #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:75
6884
- msgid "Create All Country Groups Failed."
6885
- msgstr ""
6886
-
6887
- #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:87
6888
- msgid "Create All Country Groups Failed. Wrong parameter."
6889
- msgstr ""
6890
-
6891
- #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:93
6892
- #, php-format
6893
- msgid ""
6894
- "All existing country groups will be deleted and %s new groups will be "
6895
- "created. Are you sure?"
6896
- msgstr ""
6897
-
6898
- #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:94
6899
- msgid "Confirm"
6900
- msgstr ""
6901
-
6902
- #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:122
6903
- msgid "Country Groups Generated."
6904
- msgstr ""
6905
-
6906
- #: includes/price-by-country/class-wcj-price-by-country-local.php:140
6907
- #: includes/settings/wcj-settings-price-by-country.php:291
6908
- msgid "Make empty price"
6909
- msgstr ""
6910
-
6911
- #: includes/price-by-country/class-wcj-price-by-country-local.php:246
6912
- msgid "Country Group Nr."
6913
- msgstr ""
6914
-
6915
- #: includes/reports/class-wcj-currency-reports.php:38
6916
- msgid "Reports currency:"
6917
- msgstr ""
6918
-
6919
- #: includes/reports/class-wcj-currency-reports.php:40
6920
- #: includes/reports/class-wcj-currency-reports.php:84
6921
- msgid "Show reports only in"
6922
- msgstr ""
6923
-
6924
- #: includes/reports/wcj-class-reports-customers.php:39
6925
- msgid "No customers found."
6926
- msgstr ""
6927
-
6928
- #: includes/reports/wcj-class-reports-customers.php:89
6929
- #: includes/settings/wcj-settings-offer-price.php:162
6930
- msgid "Customer Name"
6931
- msgstr ""
6932
-
6933
- #: includes/reports/wcj-class-reports-customers.php:91
6934
- msgid "Total Spent"
6935
- msgstr ""
6936
-
6937
- #: includes/reports/wcj-class-reports-customers.php:131
6938
- msgid "Total customers"
6939
- msgstr ""
6940
-
6941
- #: includes/reports/wcj-class-reports-customers.php:135
6942
- msgid "Country Code"
6943
- msgstr ""
6944
-
6945
- #: includes/reports/wcj-class-reports-customers.php:136
6946
- msgid "Customers Count"
6947
- msgstr ""
6948
-
6949
- #: includes/reports/wcj-class-reports-customers.php:137
6950
- msgid "Percent of total"
6951
- msgstr ""
6952
-
6953
- #: includes/reports/wcj-class-reports-customers.php:159
6954
- msgid "Report for:"
6955
- msgstr ""
6956
-
6957
- #: includes/reports/wcj-class-reports-monthly-sales.php:37
6958
- msgid "Currency rates saved."
6959
- msgstr ""
6960
-
6961
- #: includes/reports/wcj-class-reports-monthly-sales.php:41
6962
- msgid "Currency rates deleted."
6963
- msgstr ""
6964
-
6965
- #: includes/reports/wcj-class-reports-monthly-sales.php:85
6966
- msgid "Days"
6967
- msgstr ""
6968
-
6969
- #: includes/reports/wcj-class-reports-monthly-sales.php:86
6970
- msgid "Total Orders"
6971
- msgstr ""
6972
-
6973
- #: includes/reports/wcj-class-reports-monthly-sales.php:87
6974
- msgid "Orders Average / Day"
6975
- msgstr ""
6976
-
6977
- #: includes/reports/wcj-class-reports-monthly-sales.php:88
6978
- #: includes/reports/wcj-class-reports-sales.php:325
6979
- msgid "Total Sum"
6980
- msgstr ""
6981
-
6982
- #: includes/reports/wcj-class-reports-monthly-sales.php:89
6983
- msgid "Total Sum (excl. TAX)"
6984
- msgstr ""
6985
-
6986
- #: includes/reports/wcj-class-reports-monthly-sales.php:90
6987
- msgid "Average / Order (excl. TAX)"
6988
- msgstr ""
6989
-
6990
- #: includes/reports/wcj-class-reports-monthly-sales.php:91
6991
- msgid "Average / Day (excl. TAX)"
6992
- msgstr ""
6993
-
6994
- #: includes/reports/wcj-class-reports-monthly-sales.php:92
6995
- msgid "Currency Rates"
6996
- msgstr ""
6997
-
6998
- #: includes/reports/wcj-class-reports-monthly-sales.php:93
6999
- msgid "Orders by Currency"
7000
- msgstr ""
7001
-
7002
- #: includes/reports/wcj-class-reports-monthly-sales.php:270
7003
- msgid "Totals"
7004
- msgstr ""
7005
-
7006
- #: includes/reports/wcj-class-reports-monthly-sales.php:312
7007
- msgid "Report currency"
7008
- msgstr ""
7009
-
7010
- #: includes/reports/wcj-class-reports-monthly-sales.php:327
7011
- #, php-format
7012
- msgid "Report generated in: %s s"
7013
- msgstr ""
7014
-
7015
- #: includes/reports/wcj-class-reports-monthly-sales.php:330
7016
- msgid "Save Currency Rates"
7017
- msgstr ""
7018
-
7019
- #: includes/reports/wcj-class-reports-monthly-sales.php:334
7020
- msgid "Reset Currency Rates"
7021
- msgstr ""
7022
-
7023
- #: includes/reports/wcj-class-reports-sales-daily.php:163
7024
- #: includes/reports/wcj-class-reports-sales.php:331
7025
- msgid "Reports Settings"
7026
- msgstr ""
7027
-
7028
- #: includes/reports/wcj-class-reports-sales-daily.php:180
7029
- msgid "From:"
7030
- msgstr ""
7031
-
7032
- #: includes/reports/wcj-class-reports-sales-daily.php:183
7033
- msgid "To:"
7034
- msgstr ""
7035
-
7036
- #: includes/reports/wcj-class-reports-sales-daily.php:186
7037
- msgid "Product:"
7038
- msgstr ""
7039
-
7040
- #: includes/reports/wcj-class-reports-sales-daily.php:275
7041
- #, php-format
7042
- msgid "Total: %d"
7043
- msgstr ""
7044
-
7045
- #: includes/reports/wcj-class-reports-sales-daily.php:279
7046
- #: includes/reports/wcj-class-reports-sales-daily.php:283
7047
- #, php-format
7048
- msgid "Total: %s"
7049
- msgstr ""
7050
-
7051
- #: includes/reports/wcj-class-reports-sales-daily.php:295
7052
- #, php-format
7053
- msgid "Total orders: %d"
7054
- msgstr ""
7055
-
7056
- #: includes/reports/wcj-class-reports-sales-daily.php:296
7057
- #: includes/reports/wcj-class-reports-sales.php:352
7058
- msgid "No sales data for current period."
7059
- msgstr ""
7060
-
7061
- #: includes/reports/wcj-class-reports-sales.php:124
7062
- msgid "Variation"
7063
- msgstr ""
7064
-
7065
- #: includes/reports/wcj-class-reports-sales.php:193
7066
- msgid "Last Sale"
7067
- msgstr ""
7068
-
7069
- #: includes/reports/wcj-class-reports-sales.php:194
7070
- msgid "Total"
7071
- msgstr ""
7072
-
7073
- #: includes/reports/wcj-class-reports-sales.php:322
7074
- msgid "Total Items"
7075
- msgstr ""
7076
-
7077
- #: includes/reports/wcj-class-reports-sales.php:328
7078
- msgid "Total Profit"
7079
- msgstr ""
7080
-
7081
- #: includes/reports/wcj-class-reports-sales.php:347
7082
- msgid "Filter products"
7083
- msgstr ""
7084
-
7085
- #: includes/reports/wcj-class-reports-stock.php:32
7086
- msgid "All Products on Stock"
7087
- msgstr ""
7088
-
7089
- #: includes/reports/wcj-class-reports-stock.php:33
7090
- msgid "Report shows all products that are on stock and some sales info."
7091
- msgstr ""
7092
-
7093
- #: includes/reports/wcj-class-reports-stock.php:37
7094
- msgid "Understocked"
7095
- msgstr ""
7096
-
7097
- #: includes/reports/wcj-class-reports-stock.php:38
7098
- msgid ""
7099
- "Report shows all products that are low in stock calculated on product's "
7100
- "sales data."
7101
- msgstr ""
7102
-
7103
- #: includes/reports/wcj-class-reports-stock.php:39
7104
- msgid ""
7105
- "Threshold for minimum stock is equal to half of the sales in selected days "
7106
- "range."
7107
- msgstr ""
7108
-
7109
- #: includes/reports/wcj-class-reports-stock.php:43
7110
- msgid "Overstocked"
7111
- msgstr ""
7112
-
7113
- #: includes/reports/wcj-class-reports-stock.php:44
7114
- msgid ""
7115
- "Report shows all products that are on stock, but have no sales in selected "
7116
- "period. Only products added before the start date of selected period are "
7117
- "accounted."
7118
- msgstr ""
7119
-
7120
- #: includes/reports/wcj-class-reports-stock.php:173
7121
- msgid "deleted"
7122
- msgstr ""
7123
-
7124
- #: includes/reports/wcj-class-reports-stock.php:257
7125
- msgid "Stock price"
7126
- msgstr ""
7127
-
7128
- #: includes/reports/wcj-class-reports-stock.php:258
7129
- msgid "Total stock price"
7130
- msgstr ""
7131
-
7132
- #: includes/reports/wcj-class-reports-stock.php:259
7133
- msgid "Last sale"
7134
- msgstr ""
7135
-
7136
- #: includes/reports/wcj-class-reports-stock.php:260
7137
- #, php-format
7138
- msgid "Sales in last %s days"
7139
- msgstr ""
7140
-
7141
- #: includes/reports/wcj-class-reports-stock.php:261
7142
- msgid "Total sales"
7143
- msgstr ""
7144
-
7145
- #: includes/reports/wcj-class-reports-stock.php:263
7146
- msgid "Stock to minimum"
7147
- msgstr ""
7148
-
7149
- #: includes/reports/wcj-class-reports-stock.php:292
7150
- msgid "purchase price:"
7151
- msgstr ""
7152
-
7153
- #: includes/reports/wcj-class-reports-stock.php:296
7154
- msgid "stock purchase price:"
7155
- msgstr ""
7156
-
7157
- #: includes/reports/wcj-class-reports-stock.php:301
7158
- msgid "No sales yet"
7159
- msgstr ""
7160
-
7161
- #: includes/reports/wcj-class-reports-stock.php:305
7162
- msgid "profit:"
7163
- msgstr ""
7164
-
7165
- #: includes/reports/wcj-class-reports-stock.php:325
7166
- msgid "Total current stock value"
7167
- msgstr ""
7168
-
7169
- #: includes/reports/wcj-class-reports-stock.php:326
7170
- msgid "Total stock value"
7171
- msgstr ""
7172
-
7173
- #: includes/reports/wcj-class-reports-stock.php:327
7174
- msgid "Product stock value average"
7175
- msgstr ""
7176
-
7177
- #: includes/reports/wcj-class-reports-stock.php:328
7178
- msgid "Product stock average"
7179
- msgstr ""
7180
-
7181
- #: includes/reports/wcj-class-reports-stock.php:330
7182
- msgid "Total current stock purchase price"
7183
- msgstr ""
7184
-
7185
- #: includes/reports/wcj-class-reports-stock.php:334
7186
- msgid "Report was generated in: "
7187
- msgstr ""
7188
-
7189
- #: includes/settings/wcj-settings-add-to-cart.php:14
7190
- msgid "Per Category Options"
7191
- msgstr ""
7192
-
7193
- #: includes/settings/wcj-settings-add-to-cart.php:16
7194
- msgid ""
7195
- "This sections lets you set Add to Cart button text on per category basis."
7196
- msgstr ""
7197
-
7198
- #: includes/settings/wcj-settings-add-to-cart.php:20
7199
- msgid "Per Category Labels"
7200
- msgstr ""
7201
-
7202
- #: includes/settings/wcj-settings-add-to-cart.php:21
7203
- #: includes/settings/wcj-settings-add-to-cart.php:99
7204
- #: includes/settings/wcj-settings-add-to-cart.php:117
7205
- #: includes/settings/wcj-settings-general.php:156
7206
- #: includes/settings/wcj-settings-order-quantities.php:21
7207
- #: includes/settings/wcj-settings-order-quantities.php:70
7208
- #: includes/settings/wcj-settings-product-images.php:19
7209
- #: includes/settings/wcj-settings-product-images.php:95
7210
- #: includes/settings/wcj-settings-shipping-calculator.php:69
7211
- #: includes/settings/wcj-settings-shipping-options.php:93
7212
- #: includes/settings/wcj-settings-shipping-options.php:139
7213
- #: includes/settings/wcj-settings-sorting.php:20
7214
- #: includes/settings/wcj-settings-sorting.php:99
7215
- #: includes/settings/wcj-settings-sorting.php:123
7216
- msgid "Enable Section"
7217
- msgstr ""
7218
-
7219
- #: includes/settings/wcj-settings-add-to-cart.php:28
7220
- msgid "Category Groups Number"
7221
- msgstr ""
7222
-
7223
- #: includes/settings/wcj-settings-add-to-cart.php:29
7224
- #: includes/settings/wcj-settings-product-tabs.php:22
7225
- msgid "Click \"Save changes\" after you change this number."
7226
- msgstr ""
7227
-
7228
- #: includes/settings/wcj-settings-add-to-cart.php:51
7229
- #: includes/settings/wcj-settings-price-by-country.php:193
7230
- #: includes/settings/wcj-settings-price-by-country.php:203
7231
- #: includes/settings/wcj-settings-price-by-country.php:213
7232
- #: includes/settings/wcj-settings-price-by-country.php:271
7233
- msgid "Group"
7234
- msgstr ""
7235
-
7236
- #: includes/settings/wcj-settings-add-to-cart.php:59
7237
- msgid "categories"
7238
- msgstr ""
7239
-
7240
- #: includes/settings/wcj-settings-add-to-cart.php:70
7241
- msgid "Button text - single product view"
7242
- msgstr ""
7243
-
7244
- #: includes/settings/wcj-settings-add-to-cart.php:78
7245
- msgid "Button text - product archive (category) view"
7246
- msgstr ""
7247
-
7248
- #: includes/settings/wcj-settings-add-to-cart.php:92
7249
- #: includes/settings/wcj-settings-product-addons.php:15
7250
- #: includes/settings/wcj-settings-product-by-date.php:47
7251
- #: includes/settings/wcj-settings-product-by-time.php:47
7252
- msgid "Per Product Options"
7253
- msgstr ""
7254
-
7255
- #: includes/settings/wcj-settings-add-to-cart.php:94
7256
- msgid ""
7257
- "This section lets you set Add to Cart button text on per product basis. When "
7258
- "enabled, label for each product can be changed in \"Edit Product\"."
7259
- msgstr ""
7260
-
7261
- #: includes/settings/wcj-settings-add-to-cart.php:98
7262
- #: includes/settings/wcj-settings-add-to-cart.php:116
7263
- msgid "Per Product Labels"
7264
- msgstr ""
7265
-
7266
- #: includes/settings/wcj-settings-add-to-cart.php:110
7267
- msgid "Per Product Type Options"
7268
- msgstr ""
7269
-
7270
- #: includes/settings/wcj-settings-add-to-cart.php:126
7271
- #: includes/settings/wcj-settings-product-by-user.php:93
7272
- msgid "Simple product"
7273
- msgstr ""
7274
-
7275
- #: includes/settings/wcj-settings-add-to-cart.php:131
7276
- msgid "Variable product"
7277
- msgstr ""
7278
-
7279
- #: includes/settings/wcj-settings-add-to-cart.php:136
7280
- msgid "External product"
7281
- msgstr ""
7282
-
7283
- #: includes/settings/wcj-settings-add-to-cart.php:141
7284
- msgid "Grouped product"
7285
- msgstr ""
7286
-
7287
- #: includes/settings/wcj-settings-add-to-cart.php:146
7288
- msgid "Other product"
7289
- msgstr ""
7290
-
7291
- #: includes/settings/wcj-settings-add-to-cart.php:155
7292
- msgid "Single product view."
7293
- msgstr ""
7294
-
7295
- #: includes/settings/wcj-settings-add-to-cart.php:156
7296
- #: includes/settings/wcj-settings-add-to-cart.php:165
7297
- #: includes/settings/wcj-settings-add-to-cart.php:209
7298
- #: includes/settings/wcj-settings-add-to-cart.php:220
7299
- msgid "Leave blank to disable."
7300
- msgstr ""
7301
-
7302
- #: includes/settings/wcj-settings-add-to-cart.php:156
7303
- #: includes/settings/wcj-settings-add-to-cart.php:165
7304
- #: includes/settings/wcj-settings-add-to-cart.php:211
7305
- #: includes/settings/wcj-settings-add-to-cart.php:222
7306
- #: includes/settings/wcj-settings-sorting.php:27
7307
- #: includes/settings/wcj-settings-sorting.php:36
7308
- #: includes/settings/wcj-settings-sorting.php:45
7309
- #: includes/settings/wcj-settings-sorting.php:54
7310
- #: includes/settings/wcj-settings-sorting.php:72
7311
- #: includes/settings/wcj-settings-sorting.php:81
7312
- msgid "Default: "
7313
- msgstr ""
7314
-
7315
- #: includes/settings/wcj-settings-add-to-cart.php:164
7316
- msgid "Product category (archive) view."
7317
- msgstr ""
7318
-
7319
- #: includes/settings/wcj-settings-add-to-cart.php:175
7320
- msgid "Products with price set to 0 (i.e. free). Single product view."
7321
- msgstr ""
7322
-
7323
- #: includes/settings/wcj-settings-add-to-cart.php:176
7324
- #: includes/settings/wcj-settings-add-to-cart.php:185
7325
- msgid "Leave blank to disable. Default: Add to cart"
7326
- msgstr ""
7327
-
7328
- #: includes/settings/wcj-settings-add-to-cart.php:178
7329
- #: includes/settings/wcj-settings-add-to-cart.php:187
7330
- #: includes/settings/wcj-settings-add-to-cart.php:211
7331
- #: includes/settings/wcj-settings-add-to-cart.php:212
7332
- #: includes/settings/wcj-settings-add-to-cart.php:222
7333
- #: includes/settings/wcj-settings-add-to-cart.php:223
7334
- msgid "Add to cart"
7335
- msgstr ""
7336
-
7337
- #: includes/settings/wcj-settings-add-to-cart.php:184
7338
- msgid ""
7339
- "Products with price set to 0 (i.e. free). Product category (archive) view."
7340
- msgstr ""
7341
-
7342
- #: includes/settings/wcj-settings-add-to-cart.php:193
7343
- msgid "Products with empty price. Product category (archive) view."
7344
- msgstr ""
7345
-
7346
- #: includes/settings/wcj-settings-add-to-cart.php:194
7347
- msgid "Leave blank to disable. Default: Read More"
7348
- msgstr ""
7349
-
7350
- #: includes/settings/wcj-settings-add-to-cart.php:196
7351
- msgid "Read More"
7352
- msgstr ""
7353
-
7354
- #: includes/settings/wcj-settings-add-to-cart.php:208
7355
- msgid "Already in cart. Single product view."
7356
- msgstr ""
7357
-
7358
- #: includes/settings/wcj-settings-add-to-cart.php:210
7359
- #: includes/settings/wcj-settings-add-to-cart.php:221
7360
- msgid "Try: "
7361
- msgstr ""
7362
-
7363
- #: includes/settings/wcj-settings-add-to-cart.php:210
7364
- #: includes/settings/wcj-settings-add-to-cart.php:221
7365
- msgid "Already in cart - Add Again?"
7366
- msgstr ""
7367
-
7368
- #: includes/settings/wcj-settings-add-to-cart.php:219
7369
- msgid "Already in cart. Product category (archive) view."
7370
- msgstr ""
7371
-
7372
- #: includes/settings/wcj-settings-address-formats.php:14
7373
- #: includes/settings/wcj-settings-address-formats.php:19
7374
- msgid "Force Base Country Display"
7375
- msgstr ""
7376
-
7377
- #: includes/settings/wcj-settings-address-formats.php:30
7378
- msgid "Address Formats by Country"
7379
- msgstr ""
7380
-
7381
- #: includes/settings/wcj-settings-admin-bar.php:14
7382
- #: includes/settings/wcj-settings-breadcrumbs.php:14
7383
- #: includes/settings/wcj-settings-cart-customization.php:14
7384
- #: includes/settings/wcj-settings-checkout-custom-fields.php:16
7385
- #: includes/settings/wcj-settings-checkout-customization.php:14
7386
- #: includes/settings/wcj-settings-checkout-files-upload.php:17
7387
- #: includes/settings/wcj-settings-custom-css.php:14
7388
- #: includes/settings/wcj-settings-custom-js.php:14
7389
- #: includes/settings/wcj-settings-emails-verification.php:14
7390
- #: includes/settings/wcj-settings-empty-cart.php:14
7391
- #: includes/settings/wcj-settings-eu-vat-number.php:15
7392
- #: includes/settings/wcj-settings-global-discount.php:15
7393
- #: includes/settings/wcj-settings-multicurrency-base-price.php:19
7394
- #: includes/settings/wcj-settings-multicurrency.php:17
7395
- #: includes/settings/wcj-settings-my-account.php:14
7396
- #: includes/settings/wcj-settings-payment-gateways-icons.php:14
7397
- #: includes/settings/wcj-settings-payment-gateways-per-category.php:17
7398
- #: includes/settings/wcj-settings-price-by-user-role.php:14
7399
- #: includes/settings/wcj-settings-product-addons.php:129
7400
- #: includes/settings/wcj-settings-product-bookings.php:72
7401
- #: includes/settings/wcj-settings-product-by-country.php:14
7402
- #: includes/settings/wcj-settings-product-by-user-role.php:14
7403
- #: includes/settings/wcj-settings-product-by-user.php:59
7404
- #: includes/settings/wcj-settings-product-open-pricing.php:16
7405
- #: includes/settings/wcj-settings-products-per-page.php:14
7406
- #: includes/settings/wcj-settings-products-xml.php:17
7407
- #: includes/settings/wcj-settings-url-coupons.php:14
7408
- #: includes/settings/wcj-settings-wholesale-price.php:15
7409
- msgid "Options"
7410
- msgstr ""
7411
-
7412
- #: includes/settings/wcj-settings-admin-bar.php:19
7413
- msgid "WooCommerce Admin Bar"
7414
- msgstr ""
7415
-
7416
- #: includes/settings/wcj-settings-admin-bar.php:26
7417
- msgid "Booster Admin Bar"
7418
- msgstr ""
7419
-
7420
- #: includes/settings/wcj-settings-admin-tools.php:14
7421
- msgid "Admin Tools Options"
7422
- msgstr ""
7423
-
7424
- #: includes/settings/wcj-settings-admin-tools.php:26
7425
- msgid "WooCommerce Log"
7426
- msgstr ""
7427
-
7428
- #: includes/settings/wcj-settings-admin-tools.php:33
7429
- msgid "Debug"
7430
- msgstr ""
7431
-
7432
- #: includes/settings/wcj-settings-admin-tools.php:40
7433
- msgid "PHP Memory Limit"
7434
- msgstr ""
7435
-
7436
- #: includes/settings/wcj-settings-admin-tools.php:41
7437
- msgid "megabytes."
7438
- msgstr ""
7439
-
7440
- #: includes/settings/wcj-settings-admin-tools.php:42
7441
- #: includes/settings/wcj-settings-admin-tools.php:51
7442
- #: includes/settings/wcj-settings-offer-price.php:139
7443
- #: includes/settings/wcj-settings-offer-price.php:147
7444
- #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:43
7445
- #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:52
7446
- msgid "Set zero to disable."
7447
- msgstr ""
7448
-
7449
- #: includes/settings/wcj-settings-admin-tools.php:49
7450
- msgid "PHP Time Limit"
7451
- msgstr ""
7452
-
7453
- #: includes/settings/wcj-settings-admin-tools.php:50
7454
- msgid "seconds."
7455
- msgstr ""
7456
-
7457
- #: includes/settings/wcj-settings-admin-tools.php:66
7458
- msgid "System Info"
7459
- msgstr ""
7460
-
7461
- #: includes/settings/wcj-settings-admin-tools.php:73
7462
- msgid "Show Order Meta"
7463
- msgstr ""
7464
-
7465
- #: includes/settings/wcj-settings-admin-tools.php:80
7466
- msgid "Show Product Meta"
7467
- msgstr ""
7468
-
7469
- #: includes/settings/wcj-settings-breadcrumbs.php:19
7470
- msgid "Change Breadcrumbs Home URL"
7471
- msgstr ""
7472
-
7473
- #: includes/settings/wcj-settings-breadcrumbs.php:26
7474
- msgid "Home URL"
7475
- msgstr ""
7476
-
7477
- #: includes/settings/wcj-settings-breadcrumbs.php:33
7478
- msgid "Hide Breadcrumbs"
7479
- msgstr ""
7480
-
7481
- #: includes/settings/wcj-settings-breadcrumbs.php:34
7482
- #: includes/settings/wcj-settings-cart-customization.php:20
7483
- #: includes/settings/wcj-settings-cart-customization.php:27
7484
- #: includes/settings/wcj-settings-checkout-customization.php:32
7485
- #: includes/settings/wcj-settings-currency.php:21
7486
- #: includes/settings/wcj-settings-order-custom-statuses.php:51
7487
- #: includes/settings/wcj-settings-orders.php:161
7488
- #: includes/settings/wcj-settings-pdf-invoicing.php:66
7489
- #: includes/settings/wcj-settings-product-bookings.php:78
7490
- #: includes/settings/wcj-settings-product-images.php:26
7491
- #: includes/settings/wcj-settings-product-images.php:33
7492
- #: includes/settings/wcj-settings-product-images.php:40
7493
- #: includes/settings/wcj-settings-product-images.php:47
7494
- #: includes/settings/wcj-settings-related-products.php:153
7495
- #: includes/settings/wcj-settings-related-products.php:159
7496
- #: includes/settings/wcj-settings-shipping-calculator.php:54
7497
- msgid "Hide"
7498
- msgstr ""
7499
-
7500
- #: includes/settings/wcj-settings-call-for-price.php:14
7501
- msgid "Call for Price Options"
7502
- msgstr ""
7503
-
7504
- #: includes/settings/wcj-settings-call-for-price.php:16
7505
- msgid ""
7506
- "Leave price empty when adding or editing products. Then set the options here."
7507
- msgstr ""
7508
-
7509
- #: includes/settings/wcj-settings-call-for-price.php:17
7510
- msgid "You can use shortcodes in options."
7511
- msgstr ""
7512
-
7513
- #: includes/settings/wcj-settings-call-for-price.php:21
7514
- msgid "Label to Show on Single"
7515
- msgstr ""
7516
-
7517
- #: includes/settings/wcj-settings-call-for-price.php:22
7518
- #: includes/settings/wcj-settings-call-for-price.php:32
7519
- #: includes/settings/wcj-settings-call-for-price.php:42
7520
- #: includes/settings/wcj-settings-call-for-price.php:52
7521
- msgid "This sets the html to output on empty price. Leave blank to disable."
7522
- msgstr ""
7523
-
7524
- #: includes/settings/wcj-settings-call-for-price.php:31
7525
- msgid "Label to Show on Archives"
7526
- msgstr ""
7527
-
7528
- #: includes/settings/wcj-settings-call-for-price.php:41
7529
- msgid "Label to Show on Homepage"
7530
- msgstr ""
7531
-
7532
- #: includes/settings/wcj-settings-call-for-price.php:51
7533
- msgid "Label to Show on Related"
7534
- msgstr ""
7535
-
7536
- #: includes/settings/wcj-settings-call-for-price.php:61
7537
- msgid "Hide Sale! Tag"
7538
- msgstr ""
7539
-
7540
- #: includes/settings/wcj-settings-call-for-price.php:62
7541
- msgid "Hide the tag"
7542
- msgstr ""
7543
-
7544
- #: includes/settings/wcj-settings-call-for-price.php:68
7545
- msgid "Make All Products Call for Price"
7546
- msgstr ""
7547
-
7548
- #: includes/settings/wcj-settings-call-for-price.php:70
7549
- msgid ""
7550
- "Enable this to make all products (except variable) prices empty. When "
7551
- "checkbox disabled, all prices go back to normal."
7552
- msgstr ""
7553
-
7554
- #: includes/settings/wcj-settings-cart-customization.php:19
7555
- msgid "Hide Coupon on Cart Page"
7556
- msgstr ""
7557
-
7558
- #: includes/settings/wcj-settings-cart-customization.php:26
7559
- msgid "Hide Item Remove Link"
7560
- msgstr ""
7561
-
7562
- #: includes/settings/wcj-settings-cart-customization.php:33
7563
- msgid "Change Empty Cart \"Return to shop\" Button Text"
7564
- msgstr ""
7565
-
7566
- #: includes/settings/wcj-settings-cart.php:16
7567
- msgid "Cart Custom Info Blocks"
7568
- msgstr ""
7569
-
7570
- #: includes/settings/wcj-settings-cart.php:19
7571
- msgid ""
7572
- "This feature allows you to add a final checkpoint for your customers before "
7573
- "they proceed to payment."
7574
- msgstr ""
7575
-
7576
- #: includes/settings/wcj-settings-cart.php:20
7577
- msgid ""
7578
- "Show custom information at on the cart page using Booster's various "
7579
- "shortcodes and give your customers a seamless cart experience."
7580
- msgstr ""
7581
-
7582
- #: includes/settings/wcj-settings-cart.php:21
7583
- msgid ""
7584
- "For example, show them the total weight of their items, any additional fees "
7585
- "or taxes, or a confirmation of the address their products are being sent to."
7586
- msgstr ""
7587
-
7588
- #: includes/settings/wcj-settings-cart.php:24
7589
- #: includes/settings/wcj-settings-checkout-custom-info.php:19
7590
- #: includes/settings/wcj-settings-mini-cart.php:19
7591
- #: includes/settings/wcj-settings-product-custom-info.php:28
7592
- msgid "Total Blocks"
7593
- msgstr ""
7594
-
7595
- #: includes/settings/wcj-settings-cart.php:39
7596
- #: includes/settings/wcj-settings-checkout-custom-info.php:35
7597
- #: includes/settings/wcj-settings-mini-cart.php:34
7598
- #: includes/settings/wcj-settings-product-custom-info.php:49
7599
- msgid "Info Block"
7600
- msgstr ""
7601
-
7602
- #: includes/settings/wcj-settings-cart.php:59
7603
- #: includes/settings/wcj-settings-checkout-custom-info.php:85
7604
- #: includes/settings/wcj-settings-mini-cart.php:58
7605
- #: includes/settings/wcj-settings-product-custom-info.php:88
7606
- msgid "Position Order (i.e. Priority)"
7607
- msgstr ""
7608
-
7609
- #: includes/settings/wcj-settings-cart.php:74
7610
- msgid "Cart Items Table Custom Info"
7611
- msgstr ""
7612
-
7613
- #: includes/settings/wcj-settings-cart.php:80
7614
- msgid "Add to Each Item Name"
7615
- msgstr ""
7616
-
7617
- #: includes/settings/wcj-settings-cart.php:81
7618
- msgid ""
7619
- "You can use shortcodes here. E.g.: [wcj_product_sku]. Leave blank to disable."
7620
- msgstr ""
7621
-
7622
- #: includes/settings/wcj-settings-checkout-core-fields.php:14
7623
- msgid "Checkout Core Fields Options"
7624
- msgstr ""
7625
-
7626
- #: includes/settings/wcj-settings-checkout-core-fields.php:28
7627
- #: includes/settings/wcj-settings-checkout-core-fields.php:40
7628
- #: includes/settings/wcj-settings-checkout-core-fields.php:69
7629
- #: includes/settings/wcj-settings-products-per-page.php:29
7630
- msgid "Default"
7631
- msgstr ""
7632
-
7633
- #: includes/settings/wcj-settings-checkout-core-fields.php:35
7634
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:330
7635
- msgid "required"
7636
- msgstr ""
7637
-
7638
- #: includes/settings/wcj-settings-checkout-core-fields.php:42
7639
- msgid "Not Required"
7640
- msgstr ""
7641
-
7642
- #: includes/settings/wcj-settings-checkout-core-fields.php:48
7643
- msgid "label"
7644
- msgstr ""
7645
-
7646
- #: includes/settings/wcj-settings-checkout-core-fields.php:49
7647
- #: includes/settings/wcj-settings-checkout-core-fields.php:57
7648
- msgid "Leave blank for WooCommerce defaults."
7649
- msgstr ""
7650
-
7651
- #: includes/settings/wcj-settings-checkout-core-fields.php:56
7652
- msgid "placeholder"
7653
- msgstr ""
7654
-
7655
- #: includes/settings/wcj-settings-checkout-core-fields.php:64
7656
- msgid "class"
7657
- msgstr ""
7658
-
7659
- #: includes/settings/wcj-settings-checkout-core-fields.php:70
7660
- msgid "Align Left"
7661
- msgstr ""
7662
-
7663
- #: includes/settings/wcj-settings-checkout-core-fields.php:71
7664
- msgid "Align Right"
7665
- msgstr ""
7666
-
7667
- #: includes/settings/wcj-settings-checkout-core-fields.php:72
7668
- msgid "Full Row"
7669
- msgstr ""
7670
-
7671
- #: includes/settings/wcj-settings-checkout-core-fields.php:77
7672
- msgid "priority (i.e. order)"
7673
- msgstr ""
7674
-
7675
- #: includes/settings/wcj-settings-checkout-core-fields.php:78
7676
- msgid "Leave zero for WooCommerce defaults."
7677
- msgstr ""
7678
-
7679
- #: includes/settings/wcj-settings-checkout-custom-fields.php:21
7680
- msgid "Add All Fields to Admin Emails"
7681
- msgstr ""
7682
-
7683
- #: includes/settings/wcj-settings-checkout-custom-fields.php:28
7684
- msgid "Add All Fields to Customers Emails"
7685
- msgstr ""
7686
-
7687
- #: includes/settings/wcj-settings-checkout-custom-fields.php:35
7688
- msgid "Add All Fields to \"Order Received\" Page"
7689
- msgstr ""
7690
-
7691
- #: includes/settings/wcj-settings-checkout-custom-fields.php:42
7692
- msgid "Custom Fields Number"
7693
- msgstr ""
7694
-
7695
- #: includes/settings/wcj-settings-checkout-custom-fields.php:43
7696
- #: includes/settings/wcj-settings-product-input-fields.php:60
7697
- msgid "Click Save changes after you change this number."
7698
- msgstr ""
7699
-
7700
- #: includes/settings/wcj-settings-checkout-custom-fields.php:63
7701
- msgid "Custom Field"
7702
- msgstr ""
7703
-
7704
- #: includes/settings/wcj-settings-checkout-custom-fields.php:70
7705
- msgid "Key"
7706
- msgstr ""
7707
-
7708
- #: includes/settings/wcj-settings-checkout-custom-fields.php:93
7709
- msgid "State"
7710
- msgstr ""
7711
-
7712
- #: includes/settings/wcj-settings-checkout-custom-fields.php:126
7713
- msgid "Section"
7714
- msgstr ""
7715
-
7716
- #: includes/settings/wcj-settings-checkout-custom-fields.php:131
7717
- #: includes/settings/wcj-settings-checkout-custom-info.php:55
7718
- #: includes/settings/wcj-settings-empty-cart.php:58
7719
- #: includes/settings/wcj-settings-left-to-free-shipping.php:120
7720
- msgid "Billing"
7721
- msgstr ""
7722
-
7723
- #: includes/settings/wcj-settings-checkout-custom-fields.php:138
7724
- #: includes/settings/wcj-settings-eu-vat-number.php:63
7725
- msgid "Class"
7726
- msgstr ""
7727
-
7728
- #: includes/settings/wcj-settings-checkout-custom-fields.php:143
7729
- #: includes/settings/wcj-settings-eu-vat-number.php:68
7730
- msgid "Wide"
7731
- msgstr ""
7732
-
7733
- #: includes/settings/wcj-settings-checkout-custom-fields.php:144
7734
- #: includes/settings/wcj-settings-eu-vat-number.php:69
7735
- msgid "First"
7736
- msgstr ""
7737
-
7738
- #: includes/settings/wcj-settings-checkout-custom-fields.php:145
7739
- #: includes/settings/wcj-settings-eu-vat-number.php:70
7740
- msgid "Last"
7741
- msgstr ""
7742
-
7743
- #: includes/settings/wcj-settings-checkout-custom-fields.php:156
7744
- msgid "One option per line"
7745
- msgstr ""
7746
-
7747
- #: includes/settings/wcj-settings-checkout-custom-fields.php:164
7748
- msgid "Checkbox: Value for ON"
7749
- msgstr ""
7750
-
7751
- #: includes/settings/wcj-settings-checkout-custom-fields.php:170
7752
- msgid "Checkbox: Value for OFF"
7753
- msgstr ""
7754
-
7755
- #: includes/settings/wcj-settings-checkout-custom-fields.php:176
7756
- msgid "Checkbox: Default Value"
7757
- msgstr ""
7758
-
7759
- #: includes/settings/wcj-settings-checkout-custom-fields.php:185
7760
- msgid "Datepicker/Weekpicker: Date Format"
7761
- msgstr ""
7762
-
7763
- #: includes/settings/wcj-settings-checkout-custom-fields.php:186
7764
- msgid ""
7765
- "Visit <a href=\"https://codex.wordpress.org/Formatting_Date_and_Time\" "
7766
- "target=\"_blank\">documentation on date and time formatting</a> for valid "
7767
- "date formats"
7768
- msgstr ""
7769
-
7770
- #: includes/settings/wcj-settings-checkout-custom-fields.php:193
7771
- msgid "Datepicker/Weekpicker: Min Date"
7772
- msgstr ""
7773
-
7774
- #: includes/settings/wcj-settings-checkout-custom-fields.php:194
7775
- #: includes/settings/wcj-settings-checkout-custom-fields.php:201
7776
- msgid "days"
7777
- msgstr ""
7778
-
7779
- #: includes/settings/wcj-settings-checkout-custom-fields.php:200
7780
- msgid "Datepicker/Weekpicker: Max Date"
7781
- msgstr ""
7782
-
7783
- #: includes/settings/wcj-settings-checkout-custom-fields.php:207
7784
- msgid "Datepicker/Weekpicker: Add Year Selector"
7785
- msgstr ""
7786
-
7787
- #: includes/settings/wcj-settings-checkout-custom-fields.php:213
7788
- msgid "Datepicker/Weekpicker: Year Selector: Year Range"
7789
- msgstr ""
7790
-
7791
- #: includes/settings/wcj-settings-checkout-custom-fields.php:214
7792
- msgid ""
7793
- "The range of years displayed in the year drop-down: either relative to "
7794
- "today's year (\"-nn:+nn\"), relative to the currently selected year (\"c-nn:c"
7795
- "+nn\"), absolute (\"nnnn:nnnn\"), or combinations of these formats (\"nnnn:-"
7796
- "nn\"). Note that this option only affects what appears in the drop-down, to "
7797
- "restrict which dates may be selected use the minDate and/or maxDate options."
7798
- msgstr ""
7799
-
7800
- #: includes/settings/wcj-settings-checkout-custom-fields.php:220
7801
- msgid "Datepicker/Weekpicker: First Week Day"
7802
- msgstr ""
7803
-
7804
- #: includes/settings/wcj-settings-checkout-custom-fields.php:235
7805
- msgid "Timepicker: Time Format"
7806
- msgstr ""
7807
-
7808
- #: includes/settings/wcj-settings-checkout-custom-fields.php:236
7809
- msgid ""
7810
- "Visit <a href=\"http://timepicker.co/options/\" target=\"_blank\">timepicker "
7811
- "options page</a> for valid time formats"
7812
- msgstr ""
7813
-
7814
- #: includes/settings/wcj-settings-checkout-custom-fields.php:243
7815
- msgid "minutes"
7816
- msgstr ""
7817
-
7818
- #: includes/settings/wcj-settings-checkout-custom-fields.php:249
7819
- #: includes/settings/wcj-settings-product-listings.php:50
7820
- msgid "Exclude Categories"
7821
- msgstr ""
7822
-
7823
- #: includes/settings/wcj-settings-checkout-custom-fields.php:250
7824
- msgid "Hide this field if there is a product of selected category in cart."
7825
- msgstr ""
7826
-
7827
- #: includes/settings/wcj-settings-checkout-custom-fields.php:258
7828
- msgid "Include Categories"
7829
- msgstr ""
7830
-
7831
- #: includes/settings/wcj-settings-checkout-custom-fields.php:259
7832
- msgid ""
7833
- "Show this field only if there is a product of selected category in cart."
7834
- msgstr ""
7835
-
7836
- #: includes/settings/wcj-settings-checkout-custom-fields.php:267
7837
- msgid "Exclude Products"
7838
- msgstr ""
7839
-
7840
- #: includes/settings/wcj-settings-checkout-custom-fields.php:268
7841
- msgid "Hide this field if there is a selected product in cart."
7842
- msgstr ""
7843
-
7844
- #: includes/settings/wcj-settings-checkout-custom-fields.php:276
7845
- msgid "Include Products"
7846
- msgstr ""
7847
-
7848
- #: includes/settings/wcj-settings-checkout-custom-fields.php:277
7849
- msgid "Show this field only if there is a selected product in cart."
7850
- msgstr ""
7851
-
7852
- #: includes/settings/wcj-settings-checkout-custom-info.php:14
7853
- msgid "Checkout Custom Info Blocks"
7854
- msgstr ""
7855
-
7856
- #: includes/settings/wcj-settings-checkout-custom-info.php:53
7857
- #: includes/settings/wcj-settings-checkout-files-upload.php:55
7858
- #: includes/settings/wcj-settings-empty-cart.php:56
7859
- #: includes/settings/wcj-settings-left-to-free-shipping.php:118
7860
- msgid "Before checkout form"
7861
- msgstr ""
7862
-
7863
- #: includes/settings/wcj-settings-checkout-custom-info.php:54
7864
- #: includes/settings/wcj-settings-empty-cart.php:57
7865
- #: includes/settin