Kadence WooCommerce Email Designer - Version 1.0.7

Version Description

  • Add: Romania and Catalan Translation.
  • Update: Preview url for better support.
  • Add: Waitlist Support.
Download this release

Release Info

Developer britner
Plugin Icon 128x128 Kadence WooCommerce Email Designer
Version 1.0.7
Comparing to
See all releases

Code changes from version 1.0.6 to 1.0.7

includes/class-kadence-woomail-customizer.php CHANGED
@@ -43,7 +43,7 @@ class Kadence_Woomail_Customizer {
43
  add_action('customize_register', array( $this, 'add_settings' ) );
44
 
45
  // Maybe add custom styles to default WooCommerce styles
46
- add_filter( 'woocommerce_email_styles', array( $this, 'maybe_add_custom_styles' ), 9999 );
47
 
48
  // Ajax handler
49
  add_action( 'wp_ajax_kt_woomail_reset', array( $this, 'ajax_reset' ) );
@@ -55,7 +55,7 @@ class Kadence_Woomail_Customizer {
55
  if ( ! Kadence_Woomail_Designer::is_own_customizer_request() && ! Kadence_Woomail_Designer::is_own_preview_request() ) {
56
  return;
57
  }
58
-
59
  // Add controls, sections and panels
60
  add_action('customize_register', array( $this, 'add_controls'));
61
 
@@ -77,12 +77,12 @@ class Kadence_Woomail_Customizer {
77
  // Changes the publish text to save.
78
  add_filter( 'gettext', array( $this, 'change_publish_button' ), 10, 2 );
79
 
80
- // This filters in edits that are not saved while the preview refreshes
81
- add_action( 'init', array( $this, 'get_customizer_options_override_ready' ) );
82
 
83
  }
84
  public function get_customizer_options_override_ready() {
85
- foreach ( Kadence_Woomail_Settings::$email_types_mapping as $key => $value ) {
86
  add_filter('pre_option_woocommerce_' . $key .'_settings', array( $this, 'customizer_woo_options_override'), 99, 2 );
87
  }
88
  }
@@ -146,7 +146,7 @@ class Kadence_Woomail_Customizer {
146
  if ( is_null( Kadence_Woomail_Customizer::$customizer_url ) ) {
147
  Kadence_Woomail_Customizer::$customizer_url = add_query_arg( array(
148
  'kt-woomail-customize' => '1',
149
- 'url' => urlencode( add_query_arg( array( 'kt-woomail-preview' => '1' ), site_url('/') ) ),
150
  'return' => urlencode( Kadence_Woomail_Woo::get_email_settings_page_url() ),
151
  ), admin_url( 'customize.php' ) );
152
  }
@@ -678,46 +678,45 @@ class Kadence_Woomail_Customizer {
678
  return $styles;
679
  }
680
 
681
- /**
682
- * Get value for use in templates
683
- *
684
- * @access public
685
- * @param string $key
686
- * @param string $selector
687
- * @return string
688
- */
689
- public static function opt( $key, $selector = null ) {
690
- // Get raw value
691
- $stored_value = Kadence_Woomail_Customizer::get_stored_value( $key, Kadence_Woomail_Settings::get_default_value( $key ) );
692
-
693
- // Prepare value
694
- $value = Kadence_Woomail_Customizer::prepare( $key, $stored_value, $selector );
695
-
696
- // Allow developers to override
697
- return apply_filters( 'kt_woomail_option_value', $value, $key, $selector, $stored_value );
698
- }
699
-
700
- /**
701
- * Get value stored in database
702
- *
703
- * @access public
704
- * @param string $key
705
- * @param string $default
706
- * @return string
707
- */
708
- public static function get_stored_value($key, $default = '') {
709
- // Get all stored values
710
- $stored = (array) get_option( 'kt_woomail', array());
711
-
712
- // Check if value exists in stored values array
713
- if (!empty($stored) && isset($stored[$key])) {
714
- return $stored[$key];
715
  }
716
 
717
- // Stored value not found, use default value
718
- return $default;
719
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
720
 
 
 
 
721
  /**
722
  * Prepare value for use in HTML
723
  *
@@ -851,12 +850,12 @@ class Kadence_Woomail_Customizer {
851
  */
852
  public function ajax_reset() {
853
  // Check request
854
- if ( empty($_REQUEST['wp_customize'] ) || $_REQUEST['wp_customize'] !== 'on' || empty($_REQUEST['action']) || $_REQUEST['action'] !== 'kt_woomail_reset') {
855
  exit;
856
  }
857
 
858
  // Check if user is allowed to reset values
859
- if ( ! Kadence_Woomail_Designer::is_admin()) {
860
  exit;
861
  }
862
  global $wp_customize;
@@ -867,94 +866,88 @@ class Kadence_Woomail_Customizer {
867
  exit;
868
  }
869
 
870
- /**
871
- * Reset to default values
872
- *
873
- * @access private
874
- * @return void
875
- */
876
- public static function reset( $wp_customize ) {
877
- update_option('kt_woomail', array());
878
- // Load the export/import option class.
879
- require_once KT_WOOMAIL_PATH . 'includes/class-kadence-woomail-import-option.php';
880
- //Run through the woocommerce settings we are overriding
881
- foreach ( Kadence_Woomail_Settings::get_woo_settings() as $setting_key => $setting ) {
882
- $option = new Kadence_Woomail_Import_Option( $wp_customize, $setting_key, array(
883
- 'default' => '',
884
- 'type' => 'option',
885
- 'capability' => Kadence_Woomail_Designer::get_admin_capability(),
886
- ) );
887
- if ( 'woocommerce_email_footer_text' == $setting_key ) {
888
- $option->import( '{site_title}' );
889
- } else if ( 'woocommerce_email_body_background_color' == $setting_key ) {
890
- $option->import( '#ffffff' );
891
- } else if ( 'woocommerce_email_background_color' == $setting_key ) {
892
- $option->import( '#f7f7f7' );
893
- } else if ( 'woocommerce_email_text_color' == $setting_key ) {
894
- $option->import( '#3c3c3c' );
895
- } else {
896
- $option->import( '' );
897
- }
898
- }
899
- }
900
-
901
- /**
902
- * Maybe add custom styles to default WooCommerce styles
903
- *
904
- * @access public
905
- * @param string $styles
906
- * @return string
907
- */
908
- public function maybe_add_custom_styles( $styles ) {
909
- // Check if custom styles need to be applied
910
- if ( Kadence_Woomail_Designer::overwrite_options() ) {
911
-
912
- // Add custom styles
913
- $styles .= Kadence_Woomail_Customizer::get_styles_string();
914
-
915
- // Static styles
916
- $styles .= Kadence_Woomail_Customizer::get_static_styles();
917
- }
918
- // Otherwise apply some fixes for Customizer Preview
919
- else if ( Kadence_Woomail_Designer::is_own_preview_request() ) {
920
- $styles .= 'body { background-color: ' . get_option( 'woocommerce_email_background_color' ) . '; }';
921
- $styles .= Kadence_Woomail_Customizer::get_static_styles();
922
- }
923
-
924
- // Return styles
925
- return $styles;
926
- }
927
-
928
- /**
929
- * Get static styles
930
- *
931
- * @access public
932
- * @return string
933
- */
934
- public static function get_static_styles() {
935
- return "
936
- html, body {height:100%; position:relative;}
937
- #body_content_inner > table {
938
- border-collapse: collapse;
939
- }
940
- #body_content_inner > table.td > tbody {
941
- border-bottom-style: solid;
942
- }
943
- #template_header h1 {
944
- text-shadow:none;
945
- }
946
- #template_header_image p {
947
- margin-bottom:0;
948
- }
949
- ";
950
- }
951
-
952
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
953
 
 
 
 
954
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
955
 
956
  }
957
 
958
- Kadence_Woomail_Customizer::get_instance();
959
 
960
  }
43
  add_action('customize_register', array( $this, 'add_settings' ) );
44
 
45
  // Maybe add custom styles to default WooCommerce styles
46
+ add_filter( 'woocommerce_email_styles', array( $this, 'maybe_add_custom_styles' ), 99 );
47
 
48
  // Ajax handler
49
  add_action( 'wp_ajax_kt_woomail_reset', array( $this, 'ajax_reset' ) );
55
  if ( ! Kadence_Woomail_Designer::is_own_customizer_request() && ! Kadence_Woomail_Designer::is_own_preview_request() ) {
56
  return;
57
  }
58
+
59
  // Add controls, sections and panels
60
  add_action('customize_register', array( $this, 'add_controls'));
61
 
77
  // Changes the publish text to save.
78
  add_filter( 'gettext', array( $this, 'change_publish_button' ), 10, 2 );
79
 
80
+ // This filters in woocommerce edits that are not saved while the preview refreshes
81
+ add_action( 'init', array( $this, 'get_customizer_options_override_ready' ) );
82
 
83
  }
84
  public function get_customizer_options_override_ready() {
85
+ foreach ( Kadence_Woomail_Settings::get_email_types() as $key => $value ) {
86
  add_filter('pre_option_woocommerce_' . $key .'_settings', array( $this, 'customizer_woo_options_override'), 99, 2 );
87
  }
88
  }
146
  if ( is_null( Kadence_Woomail_Customizer::$customizer_url ) ) {
147
  Kadence_Woomail_Customizer::$customizer_url = add_query_arg( array(
148
  'kt-woomail-customize' => '1',
149
+ 'url' => urlencode( add_query_arg( array( 'kt-woomail-preview' => '1' ), home_url('/') ) ),
150
  'return' => urlencode( Kadence_Woomail_Woo::get_email_settings_page_url() ),
151
  ), admin_url( 'customize.php' ) );
152
  }
678
  return $styles;
679
  }
680
 
681
+ /**
682
+ * Get value for use in templates
683
+ *
684
+ * @access public
685
+ * @param string $key
686
+ * @param string $selector
687
+ * @return string
688
+ */
689
+ public static function opt( $key, $selector = null ) {
690
+ // Get raw value
691
+ $stored_value = Kadence_Woomail_Customizer::get_stored_value( $key, Kadence_Woomail_Settings::get_default_value( $key ) );
692
+
693
+ // Prepare value
694
+ $value = Kadence_Woomail_Customizer::prepare( $key, $stored_value, $selector );
695
+
696
+ // Allow developers to override
697
+ return apply_filters( 'kt_woomail_option_value', $value, $key, $selector, $stored_value );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
698
  }
699
 
700
+ /**
701
+ * Get value stored in database
702
+ *
703
+ * @access public
704
+ * @param string $key the setting key.
705
+ * @param string $default the setting defaut.
706
+ * @return string
707
+ */
708
+ public static function get_stored_value( $key, $default = '' ) {
709
+ // Get all stored values.
710
+ $stored = (array) get_option( 'kt_woomail', array() );
711
+
712
+ // Check if value exists in stored values array.
713
+ if ( ! empty( $stored ) && isset( $stored[ $key ] ) ) {
714
+ return $stored[ $key ];
715
+ }
716
 
717
+ // Stored value not found, use default value.
718
+ return $default;
719
+ }
720
  /**
721
  * Prepare value for use in HTML
722
  *
850
  */
851
  public function ajax_reset() {
852
  // Check request
853
+ if ( empty( $_REQUEST['wp_customize'] ) || $_REQUEST['wp_customize'] !== 'on' || empty($_REQUEST['action']) || $_REQUEST['action'] !== 'kt_woomail_reset' ) {
854
  exit;
855
  }
856
 
857
  // Check if user is allowed to reset values
858
+ if ( ! Kadence_Woomail_Designer::is_admin() ) {
859
  exit;
860
  }
861
  global $wp_customize;
866
  exit;
867
  }
868
 
869
+ /**
870
+ * Reset to default values
871
+ *
872
+ * @access private
873
+ * @return void
874
+ */
875
+ public static function reset( $wp_customize ) {
876
+ update_option( 'kt_woomail', array() );
877
+ // Load the export/import option class.
878
+ require_once KT_WOOMAIL_PATH . 'includes/class-kadence-woomail-import-option.php';
879
+ //Run through the woocommerce settings we are overriding
880
+ foreach ( Kadence_Woomail_Settings::get_woo_settings() as $setting_key => $setting ) {
881
+ $option = new Kadence_Woomail_Import_Option( $wp_customize, $setting_key, array(
882
+ 'default' => '',
883
+ 'type' => 'option',
884
+ 'capability' => Kadence_Woomail_Designer::get_admin_capability(),
885
+ ) );
886
+ if ( 'woocommerce_email_footer_text' == $setting_key ) {
887
+ $option->import( '{site_title}' );
888
+ } else if ( 'woocommerce_email_body_background_color' == $setting_key ) {
889
+ $option->import( '#ffffff' );
890
+ } else if ( 'woocommerce_email_background_color' == $setting_key ) {
891
+ $option->import( '#f7f7f7' );
892
+ } else if ( 'woocommerce_email_text_color' == $setting_key ) {
893
+ $option->import( '#3c3c3c' );
894
+ } else {
895
+ $option->import( '' );
896
+ }
897
+ }
898
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
899
 
900
+ /**
901
+ * Maybe add custom styles to default WooCommerce styles
902
+ *
903
+ * @access public
904
+ * @param string $styles
905
+ * @return string
906
+ */
907
+ public function maybe_add_custom_styles( $styles ) {
908
+ // Check if custom styles need to be applied.
909
+ if ( Kadence_Woomail_Designer::overwrite_options() ) {
910
+
911
+ // Add custom styles
912
+ $styles .= Kadence_Woomail_Customizer::get_styles_string();
913
+
914
+ // Static styles
915
+ $styles .= Kadence_Woomail_Customizer::get_static_styles();
916
+ }
917
+ // Otherwise apply some fixes for Customizer Preview
918
+ else if ( Kadence_Woomail_Designer::is_own_preview_request() ) {
919
+ $styles .= 'body { background-color: ' . get_option( 'woocommerce_email_background_color' ) . '; }';
920
+ $styles .= Kadence_Woomail_Customizer::get_static_styles();
921
+ }
922
 
923
+ // Return styles.
924
+ return $styles;
925
+ }
926
 
927
+ /**
928
+ * Get static styles
929
+ *
930
+ * @access public
931
+ * @return string
932
+ */
933
+ public static function get_static_styles() {
934
+ return 'html, body {height:100%; position:relative;}
935
+ #body_content_inner > table {
936
+ border-collapse: collapse;
937
+ }
938
+ #body_content_inner > table.td > tbody {
939
+ border-bottom-style: solid;
940
+ }
941
+ #template_header h1 {
942
+ text-shadow:none;
943
+ }
944
+ #template_header_image p {
945
+ margin-bottom:0;
946
+ }';
947
+ }
948
 
949
  }
950
 
951
+ Kadence_Woomail_Customizer::get_instance();
952
 
953
  }
includes/class-kadence-woomail-preview.php CHANGED
@@ -14,6 +14,7 @@ if ( ! class_exists( 'Kadence_Woomail_Preview' ) ) {
14
  class Kadence_Woomail_Preview {
15
  // WooCommerce email classes
16
  public static $current_order = null;
 
17
  public static $current_recipients = null;
18
  public static $email_types_class_names = array(
19
  'new_order' => 'WC_Email_New_Order',
@@ -35,6 +36,8 @@ if ( ! class_exists( 'Kadence_Woomail_Preview' ) ) {
35
  'customer_renewal_invoice' => 'WCS_Email_Customer_Renewal_Invoice',
36
  'customer_payment_retry' => 'WCS_Email_Customer_Payment_Retry',
37
  'cancelled_subscription' => 'WCS_Email_Cancelled_Subscription',
 
 
38
  );
39
  public static $email_types_order_status = array(
40
  'new_order' => 'processing',
@@ -56,6 +59,8 @@ if ( ! class_exists( 'Kadence_Woomail_Preview' ) ) {
56
  'customer_renewal_invoice' => 'failed',
57
  'customer_payment_retry' => 'on-hold',
58
  'cancelled_subscription' => 'cancelled',
 
 
59
  );
60
  /**
61
  * @var null
@@ -158,7 +163,7 @@ if ( ! class_exists( 'Kadence_Woomail_Preview' ) ) {
158
  $partial_status = false;
159
  }
160
  }
161
- // Reference email
162
  if ( isset( $emails[ $email_type ] ) && is_object( $emails[ $email_type ] ) ) {
163
  $email = $emails[ $email_type ];
164
  };
@@ -166,20 +171,52 @@ if ( ! class_exists( 'Kadence_Woomail_Preview' ) ) {
166
  // Get an order
167
  $order = Kadence_Woomail_Preview::get_wc_order_for_preview( $order_status, $preview_id );
168
  self::$current_order = $order;
169
-
170
- // Get user ID from order, if guest get current user ID.
171
- if ( 0 === ( $user_id = (int) get_post_meta( $order->get_id(), '_customer_user', TRUE ) ) ) {
 
 
 
172
  $user_id = get_current_user_id();
173
  }
174
  // Get user object
175
  $user = get_user_by( 'id', $user_id );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
176
 
177
- if( isset( $email ) ) {
178
  // Make sure gateways are running in case the email needs to input content from them.
179
  WC()->payment_gateways();
180
  // Make sure shipping is running in case the email needs to input content from it.
181
  WC()->shipping();
182
-
183
  switch ( $email_template ) {
184
 
185
  /**
@@ -274,6 +311,18 @@ if ( ! class_exists( 'Kadence_Woomail_Preview' ) ) {
274
 
275
  $email->object = false;
276
  break;
 
 
 
 
 
 
 
 
 
 
 
 
277
 
278
  /**
279
  * Everything else.
@@ -421,7 +470,7 @@ if ( ! class_exists( 'Kadence_Woomail_Preview' ) ) {
421
  'subtotal' => '14.95',
422
  'sku' => 'kwd_ex_2',
423
  ));
424
- $order->add_item($order_item);
425
 
426
  // Return mockup order
427
  return $order;
@@ -440,7 +489,7 @@ if ( ! class_exists( 'Kadence_Woomail_Preview' ) ) {
440
  $scripts = '<script type="text/javascript">jQuery(document).ready(function() {';
441
 
442
  // Font family mapping
443
- $scripts .= 'var font_family_mapping = ' . json_encode(Kadence_Woomail_Settings::$font_family_mapping) . ';';
444
 
445
  // Get information from email to use in placeholders.
446
  $scripts .= 'var pl_site_title = "' . get_bloginfo( 'name', 'display' ).'";';
@@ -449,6 +498,7 @@ if ( ! class_exists( 'Kadence_Woomail_Preview' ) ) {
449
  $scripts .= 'var pl_customer_first_name = "' . self::$current_order->get_billing_first_name().'";';
450
  $scripts .= 'var pl_customer_last_name = "' . self::$current_order->get_billing_last_name().'";';
451
  $scripts .= 'var pl_customer_full_name = "' . self::$current_order->get_formatted_billing_full_name().'";';
 
452
 
453
  // Function to handle special cases
454
  $scripts .= "function prepare(value, key, selector) {
@@ -478,6 +528,9 @@ if ( ! class_exists( 'Kadence_Woomail_Preview' ) ) {
478
  } else if (value && value.includes('{customer_full_name}') ) {
479
  value = value.replace('{customer_full_name}', pl_customer_full_name);
480
  }
 
 
 
481
  return value;
482
  }";
483
  // Get CSS suffixes
14
  class Kadence_Woomail_Preview {
15
  // WooCommerce email classes
16
  public static $current_order = null;
17
+ public static $current_product_title = null;
18
  public static $current_recipients = null;
19
  public static $email_types_class_names = array(
20
  'new_order' => 'WC_Email_New_Order',
36
  'customer_renewal_invoice' => 'WCS_Email_Customer_Renewal_Invoice',
37
  'customer_payment_retry' => 'WCS_Email_Customer_Payment_Retry',
38
  'cancelled_subscription' => 'WCS_Email_Cancelled_Subscription',
39
+ // Waitlist Plugin
40
+ 'woocommerce_waitlist_mailout' => 'Pie_WCWL_Waitlist_Mailout',
41
  );
42
  public static $email_types_order_status = array(
43
  'new_order' => 'processing',
59
  'customer_renewal_invoice' => 'failed',
60
  'customer_payment_retry' => 'on-hold',
61
  'cancelled_subscription' => 'cancelled',
62
+ // Waitlist Plugin
63
+ 'woocommerce_waitlist_mailout' => null,
64
  );
65
  /**
66
  * @var null
163
  $partial_status = false;
164
  }
165
  }
166
+ // Reference email.
167
  if ( isset( $emails[ $email_type ] ) && is_object( $emails[ $email_type ] ) ) {
168
  $email = $emails[ $email_type ];
169
  };
171
  // Get an order
172
  $order = Kadence_Woomail_Preview::get_wc_order_for_preview( $order_status, $preview_id );
173
  self::$current_order = $order;
174
+ if ( is_object( $order ) ) {
175
+ // Get user ID from order, if guest get current user ID.
176
+ if ( 0 === ( $user_id = (int) get_post_meta( $order->get_id(), '_customer_user', TRUE ) ) ) {
177
+ $user_id = get_current_user_id();
178
+ }
179
+ } else {
180
  $user_id = get_current_user_id();
181
  }
182
  // Get user object
183
  $user = get_user_by( 'id', $user_id );
184
+ self::$current_product_title = 'Product Title Example';
185
+ if ( 'woocommerce_waitlist_mailout' == $email_template ) {
186
+
187
+ $product_id = -1;
188
+
189
+ if ( is_object( $order ) ) {
190
+ $items = $order->get_items();
191
+ foreach ( $items as $item ) {
192
+ $product_id = $item['product_id'];
193
+ if ( NULL !== get_post( $product_id ) ){
194
+ break;
195
+ }
196
+ }
197
+ }
198
+
199
+ if ( NULL === get_post( $product_id ) ) {
200
+
201
+ $products_array = get_posts( array(
202
+ 'posts_per_page' => 1,
203
+ 'orderby' => 'date',
204
+ 'post_type' => 'product',
205
+ 'post_status' => 'publish',
206
+ ) );
207
+
208
+ if ( isset( $products_array[0]->ID ) ) {
209
+ $product_id = $products_array[0]->ID;
210
+ }
211
+ }
212
+ }
213
 
214
+ if ( isset( $email ) ) {
215
  // Make sure gateways are running in case the email needs to input content from them.
216
  WC()->payment_gateways();
217
  // Make sure shipping is running in case the email needs to input content from it.
218
  WC()->shipping();
219
+
220
  switch ( $email_template ) {
221
 
222
  /**
311
 
312
  $email->object = false;
313
  break;
314
+
315
+ /**
316
+ * WooCommerce Wait-list Plugin (from WooCommerce).
317
+ */
318
+
319
+ case 'woocommerce_waitlist_mailout':
320
+
321
+ $email->object = get_product( $product_id );
322
+ $email->find[] = '{product_title}';
323
+ $email->replace[] = $email->object->get_title();
324
+ self::$current_product_title = $email->object->get_title();
325
+ break;
326
 
327
  /**
328
  * Everything else.
470
  'subtotal' => '14.95',
471
  'sku' => 'kwd_ex_2',
472
  ));
473
+ $order->add_item( $order_item );
474
 
475
  // Return mockup order
476
  return $order;
489
  $scripts = '<script type="text/javascript">jQuery(document).ready(function() {';
490
 
491
  // Font family mapping
492
+ $scripts .= 'var font_family_mapping = ' . json_encode( Kadence_Woomail_Settings::$font_family_mapping ) . ';';
493
 
494
  // Get information from email to use in placeholders.
495
  $scripts .= 'var pl_site_title = "' . get_bloginfo( 'name', 'display' ).'";';
498
  $scripts .= 'var pl_customer_first_name = "' . self::$current_order->get_billing_first_name().'";';
499
  $scripts .= 'var pl_customer_last_name = "' . self::$current_order->get_billing_last_name().'";';
500
  $scripts .= 'var pl_customer_full_name = "' . self::$current_order->get_formatted_billing_full_name().'";';
501
+ $scripts .= 'var pl_product_title = "' . self::$current_product_title.'";';
502
 
503
  // Function to handle special cases
504
  $scripts .= "function prepare(value, key, selector) {
528
  } else if (value && value.includes('{customer_full_name}') ) {
529
  value = value.replace('{customer_full_name}', pl_customer_full_name);
530
  }
531
+ else if (value && value.includes('{product_title}') ) {
532
+ value = value.replace('{product_title}', pl_product_title);
533
+ }
534
  return value;
535
  }";
536
  // Get CSS suffixes
includes/class-kadence-woomail-settings.php CHANGED
@@ -58,11 +58,15 @@ if ( ! class_exists( 'Kadence_Woomail_Settings' ) ) {
58
  'customer_renewal_invoice' => 'Customer Renewal Invoice',
59
  'cancelled_subscription' => 'Cancelled Subscription',
60
  );
 
 
 
 
61
 
62
  public static $prebuilt_templates_mapping = array(
63
- 'kt_full' => 'assets/images/kt_full_template.jpg',
64
- 'kt_skinny' => 'assets/images/kt_skinny_template.jpg',
65
- 'kt_flat' => 'assets/images/kt_flat_template.jpg',
66
  );
67
  /**
68
  * Get our customizer panels
@@ -2148,6 +2152,9 @@ if ( ! class_exists( 'Kadence_Woomail_Settings' ) ) {
2148
  'header_image_background_color' => 'transparent',
2149
  'header_image_padding_top_bottom' => '0',
2150
 
 
 
 
2151
  // Subscription Email Text Defaults
2152
  'new_renewal_order_heading' => __( 'New customer order', 'kadence-woocommerce-email-designer' ),
2153
  'new_renewal_order_subject' => __( '[{site_title}] New customer order ({order_number}) - {order_date}', 'kadence-woocommerce-email-designer' ),
@@ -2443,6 +2450,9 @@ To reset your password, visit the following address:', 'kadence-woocommerce-emai
2443
  if ( class_exists( 'WC_Subscriptions' ) ) {
2444
  $types = array_merge($types, Kadence_Woomail_Settings::$subscription_email_types_mapping );
2445
  }
 
 
 
2446
 
2447
  self::$email_types = apply_filters( 'kadence_woomail_email_types', $types );
2448
  }
@@ -2462,6 +2472,9 @@ To reset your password, visit the following address:', 'kadence-woocommerce-emai
2462
  if ( class_exists( 'WC_Subscriptions' ) ) {
2463
  $types = array_merge($types, Kadence_Woomail_Settings::$subscription_email_types_mapping );
2464
  }
 
 
 
2465
 
2466
  self::$email_types = apply_filters( 'kadence_woomail_customized_email_types', $types );
2467
  }
58
  'customer_renewal_invoice' => 'Customer Renewal Invoice',
59
  'cancelled_subscription' => 'Cancelled Subscription',
60
  );
61
+ // Woocommerce Waitlist Email Types
62
+ public static $waitlist_email_types_mapping = array(
63
+ 'woocommerce_waitlist_mailout' => 'Waitlist Mailout',
64
+ );
65
 
66
  public static $prebuilt_templates_mapping = array(
67
+ 'kt_full' => 'assets/images/kt_full_template.jpg',
68
+ 'kt_skinny' => 'assets/images/kt_skinny_template.jpg',
69
+ 'kt_flat' => 'assets/images/kt_flat_template.jpg',
70
  );
71
  /**
72
  * Get our customizer panels
2152
  'header_image_background_color' => 'transparent',
2153
  'header_image_padding_top_bottom' => '0',
2154
 
2155
+ 'woocommerce_waitlist_mailout_body' => __( 'Hi There,', 'kadence-woocommerce-email-designer' ),
2156
+ 'woocommerce_waitlist_mailout_heading' => __( '{product_title} is now back in stock at {site_title}', 'kadence-woocommerce-email-designer' ),
2157
+ 'woocommerce_waitlist_mailout_subject' => __( 'A product you are waiting for is back in stock', 'kadence-woocommerce-email-designer' ),
2158
  // Subscription Email Text Defaults
2159
  'new_renewal_order_heading' => __( 'New customer order', 'kadence-woocommerce-email-designer' ),
2160
  'new_renewal_order_subject' => __( '[{site_title}] New customer order ({order_number}) - {order_date}', 'kadence-woocommerce-email-designer' ),
2450
  if ( class_exists( 'WC_Subscriptions' ) ) {
2451
  $types = array_merge($types, Kadence_Woomail_Settings::$subscription_email_types_mapping );
2452
  }
2453
+ if ( class_exists( 'WooCommerce_Waitlist_Plugin' ) ) {
2454
+ $types = array_merge($types, Kadence_Woomail_Settings::$waitlist_email_types_mapping );
2455
+ }
2456
 
2457
  self::$email_types = apply_filters( 'kadence_woomail_email_types', $types );
2458
  }
2472
  if ( class_exists( 'WC_Subscriptions' ) ) {
2473
  $types = array_merge($types, Kadence_Woomail_Settings::$subscription_email_types_mapping );
2474
  }
2475
+ if ( class_exists( 'WooCommerce_Waitlist_Plugin' ) ) {
2476
+ $types = array_merge($types, Kadence_Woomail_Settings::$waitlist_email_types_mapping );
2477
+ }
2478
 
2479
  self::$email_types = apply_filters( 'kadence_woomail_customized_email_types', $types );
2480
  }
includes/class-kadence-woomail-woo.php CHANGED
@@ -51,7 +51,7 @@ if ( ! class_exists( 'Kadence_Woomail_Woo' ) ) {
51
  * @param array $settings
52
  * @return array
53
  */
54
- public function add_mail_customizer_to_woocommerce_email_settings($settings) {
55
 
56
  // Open section
57
  $settings[] = array(
@@ -78,37 +78,38 @@ if ( ! class_exists( 'Kadence_Woomail_Woo' ) ) {
78
  }
79
 
80
  /**
81
- * Print Open Designer button
82
- *
83
- * @access public
84
- * @param array $options
85
- * @return void
86
- */
87
- public function print_open_customizer_button( $options ) { ?>
 
88
  <tr valign="top">
89
  <th scope="row" class="titledesc">
90
- <?php _e('Customize WooCommerce Emails', 'kadence-woocommerce-email-designer'); ?>
91
  </th>
92
- <td class="forminp forminp-<?php echo sanitize_title($options['type']); ?>">
93
- <a href="<?php echo Kadence_Woomail_Customizer::get_customizer_url(); ?>">
94
- <button type="button" class="button button-secondary" value="<?php _e('Open Woocommerce Email Designer', 'kadence-woocommerce-email-designer'); ?>">
95
- <?php _e('Open Woocommerce Email Designer', 'kadence-woocommerce-email-designer'); ?>
96
  </button>
97
  </a>
98
- <p class="description"><?php printf(__('Make Woocommerce Emails match your brand. <a href="%s">Kadence Woocommerce Email Designer</a> plugin by <a href="%s">Kadence Themes</a>.', 'kadence-woocommerce-email-designer'), 'https://www.kadencethemes.com/products/kadence-woomail-designer', 'https://www.kadencethemes.com'); ?></p>
99
  </td>
100
  </tr>
101
  <?php
102
  }
103
 
104
  /**
105
- * Get WooCommerce email settings page URL
106
- *
107
- * @access public
108
- * @return string
109
- */
110
  public static function get_email_settings_page_url() {
111
- return admin_url('admin.php?page=wc-settings&tab=email');
112
  }
113
 
114
  }
51
  * @param array $settings
52
  * @return array
53
  */
54
+ public function add_mail_customizer_to_woocommerce_email_settings( $settings ) {
55
 
56
  // Open section
57
  $settings[] = array(
78
  }
79
 
80
  /**
81
+ * Print Open Designer button
82
+ *
83
+ * @access public
84
+ * @param array $options settings options.
85
+ * @return void
86
+ */
87
+ public function print_open_customizer_button( $options ) {
88
+ ?>
89
  <tr valign="top">
90
  <th scope="row" class="titledesc">
91
+ <?php _e( 'Customize WooCommerce Emails', 'kadence-woocommerce-email-designer' ); ?>
92
  </th>
93
+ <td class="forminp forminp-<?php echo esc_attr( sanitize_title( $options['type'] ) ); ?>">
94
+ <a href="<?php echo esc_url( Kadence_Woomail_Customizer::get_customizer_url() ); ?>">
95
+ <button type="button" class="button button-secondary" value="<?php _e( 'Open Woocommerce Email Designer', 'kadence-woocommerce-email-designer' ); ?>">
96
+ <?php _e( 'Open Woocommerce Email Designer', 'kadence-woocommerce-email-designer' ); ?>
97
  </button>
98
  </a>
99
+ <p class="description"><?php printf( __( 'Make Woocommerce Emails match your brand. <a href="%s">Kadence Woocommerce Email Designer</a> plugin by <a href="%s">Kadence Themes</a>.', 'kadence-woocommerce-email-designer' ), 'https://www.kadencethemes.com/products/kadence-woomail-designer', 'https://www.kadencethemes.com' ); ?></p>
100
  </td>
101
  </tr>
102
  <?php
103
  }
104
 
105
  /**
106
+ * Get WooCommerce email settings page URL
107
+ *
108
+ * @access public
109
+ * @return string
110
+ */
111
  public static function get_email_settings_page_url() {
112
+ return admin_url( 'admin.php?page=wc-settings&tab=email' );
113
  }
114
 
115
  }
kadence-woocommerce-email-designer.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Kadence WooCommerce Email Designer
4
  * Plugin URI: http://kadencethemes.com/products/woocommerce-email-designer/
5
  * Description: Customize the default woocommerce email templates design and text through the native WordPress customizer. Preview emails and send test emails.
6
- * Version: 1.0.6
7
  * Author: Kadence Themes
8
  * Author URI: http://kadencethemes.com/
9
  * License: GPLv2 or later
@@ -120,7 +120,7 @@ class Kadence_Woomail_Designer {
120
  );
121
  $run++;
122
 
123
- return $order->email_order_items_table( $args );
124
  }
125
  return $output;
126
  }
@@ -204,11 +204,11 @@ class Kadence_Woomail_Designer {
204
  }
205
 
206
  /**
207
- * Hook in main text areas for customized emails
208
- *
209
- * @access public
210
- * @return void
211
- */
212
  public function email_main_text_area( $order, $sent_to_admin, $plain_text, $email ) {
213
 
214
  // Get Email ID
@@ -262,11 +262,11 @@ class Kadence_Woomail_Designer {
262
  }
263
 
264
  /**
265
- * Filter Subtitle for Placeholders
266
- *
267
- * @access public
268
- * @return void
269
- */
270
  public static function filter_subtitle( $subtitle, $email ) {
271
 
272
  // Check for placeholders
@@ -294,12 +294,14 @@ class Kadence_Woomail_Designer {
294
  $subtitle = str_replace( '{customer_full_name}', $full_name, $subtitle );
295
  $subtitle = str_replace( '{customer_username}', $email->user_login, $subtitle );
296
 
297
- } else if( is_a( $email->object, 'WC_Order' ) ) {
298
  $subtitle = str_replace( '{order_date}', wc_format_datetime( $email->object->get_date_created() ), $subtitle );
299
  $subtitle = str_replace( '{order_number}', $email->object->get_order_number(), $subtitle );
300
  $subtitle = str_replace( '{customer_first_name}', $email->object->get_billing_first_name(), $subtitle );
301
  $subtitle = str_replace( '{customer_last_name}', $email->object->get_billing_last_name(), $subtitle );
302
  $subtitle = str_replace( '{customer_full_name}', $email->object->get_formatted_billing_full_name(), $subtitle );
 
 
303
  }
304
 
305
 
@@ -318,19 +320,19 @@ class Kadence_Woomail_Designer {
318
  // Get Email ID
319
  $key = $email->id;
320
 
321
- $body_text = Kadence_Woomail_Customizer::opt( $key.'_body' );
322
  // Check for placeholders
323
  $body_text = str_replace( '{site_title}', get_bloginfo( 'name', 'display' ), $body_text );
324
  if ( is_a( $email->object, 'WP_User' ) ) {
325
 
326
  $first_name = get_user_meta( $email->object->ID, 'billing_first_name', true );
327
- if( empty( $first_name ) ) {
328
  // Fall back to user display name
329
  $first_name = $email->object->display_name;
330
  }
331
 
332
  $last_name = get_user_meta( $email->object->ID, 'billing_last_name', true );
333
- if( empty( $last_name ) ) {
334
  // Fall back to user display name
335
  $last_name = $email->object->display_name;
336
  }
@@ -344,6 +346,8 @@ class Kadence_Woomail_Designer {
344
  $body_text = str_replace( '{customer_last_name}', $last_name, $body_text );
345
  $body_text = str_replace( '{customer_full_name}', $full_name, $body_text );
346
  $body_text = str_replace( '{customer_username}', $email->user_login, $body_text );
 
 
347
  }
348
 
349
  $body_text = apply_filters( 'kadence_woomail_no_order_body_text', $body_text, $email );
@@ -356,11 +360,11 @@ class Kadence_Woomail_Designer {
356
  }
357
 
358
  /**
359
- * Filter through strings to add support for extra placeholders
360
- *
361
- * @access public
362
- * @return string
363
- */
364
  public function add_extra_placeholders( $string, $email ) {
365
 
366
  if ( is_a( $email->object, 'WC_Order' ) ) {
@@ -384,7 +388,7 @@ class Kadence_Woomail_Designer {
384
  __( 'Email Customizer', 'kadence-woocommerce-email-designer' ),
385
  __( 'Email Customizer', 'kadence-woocommerce-email-designer' ),
386
  'manage_woocommerce',
387
- 'customize.php?kt-woomail-customize=1&url='.urlencode( add_query_arg( array( 'kt-woomail-preview' => '1' ), site_url('/') ) )
388
  );
389
  }
390
 
3
  * Plugin Name: Kadence WooCommerce Email Designer
4
  * Plugin URI: http://kadencethemes.com/products/woocommerce-email-designer/
5
  * Description: Customize the default woocommerce email templates design and text through the native WordPress customizer. Preview emails and send test emails.
6
+ * Version: 1.0.7
7
  * Author: Kadence Themes
8
  * Author URI: http://kadencethemes.com/
9
  * License: GPLv2 or later
120
  );
121
  $run++;
122
 
123
+ return wc_get_email_order_items( $order, $args );
124
  }
125
  return $output;
126
  }
204
  }
205
 
206
  /**
207
+ * Hook in main text areas for customized emails
208
+ *
209
+ * @access public
210
+ * @return void
211
+ */
212
  public function email_main_text_area( $order, $sent_to_admin, $plain_text, $email ) {
213
 
214
  // Get Email ID
262
  }
263
 
264
  /**
265
+ * Filter Subtitle for Placeholders
266
+ *
267
+ * @access public
268
+ * @return void
269
+ */
270
  public static function filter_subtitle( $subtitle, $email ) {
271
 
272
  // Check for placeholders
294
  $subtitle = str_replace( '{customer_full_name}', $full_name, $subtitle );
295
  $subtitle = str_replace( '{customer_username}', $email->user_login, $subtitle );
296
 
297
+ } elseif ( is_a( $email->object, 'WC_Order' ) ) {
298
  $subtitle = str_replace( '{order_date}', wc_format_datetime( $email->object->get_date_created() ), $subtitle );
299
  $subtitle = str_replace( '{order_number}', $email->object->get_order_number(), $subtitle );
300
  $subtitle = str_replace( '{customer_first_name}', $email->object->get_billing_first_name(), $subtitle );
301
  $subtitle = str_replace( '{customer_last_name}', $email->object->get_billing_last_name(), $subtitle );
302
  $subtitle = str_replace( '{customer_full_name}', $email->object->get_formatted_billing_full_name(), $subtitle );
303
+ } elseif ( is_a( $email->object, 'WC_Product' ) ) {
304
+ $subtitle = str_replace( '{product_title}', $email->object->get_title(), $subtitle );
305
  }
306
 
307
 
320
  // Get Email ID
321
  $key = $email->id;
322
 
323
+ $body_text = Kadence_Woomail_Customizer::opt( $key . '_body' );
324
  // Check for placeholders
325
  $body_text = str_replace( '{site_title}', get_bloginfo( 'name', 'display' ), $body_text );
326
  if ( is_a( $email->object, 'WP_User' ) ) {
327
 
328
  $first_name = get_user_meta( $email->object->ID, 'billing_first_name', true );
329
+ if ( empty( $first_name ) ) {
330
  // Fall back to user display name
331
  $first_name = $email->object->display_name;
332
  }
333
 
334
  $last_name = get_user_meta( $email->object->ID, 'billing_last_name', true );
335
+ if ( empty( $last_name ) ) {
336
  // Fall back to user display name
337
  $last_name = $email->object->display_name;
338
  }
346
  $body_text = str_replace( '{customer_last_name}', $last_name, $body_text );
347
  $body_text = str_replace( '{customer_full_name}', $full_name, $body_text );
348
  $body_text = str_replace( '{customer_username}', $email->user_login, $body_text );
349
+ } elseif ( is_a( $email->object, 'WC_Product' ) ) {
350
+ $body_text = str_replace( '{product_title}', $email->object->get_title(), $body_text );
351
  }
352
 
353
  $body_text = apply_filters( 'kadence_woomail_no_order_body_text', $body_text, $email );
360
  }
361
 
362
  /**
363
+ * Filter through strings to add support for extra placeholders
364
+ *
365
+ * @access public
366
+ * @return string
367
+ */
368
  public function add_extra_placeholders( $string, $email ) {
369
 
370
  if ( is_a( $email->object, 'WC_Order' ) ) {
388
  __( 'Email Customizer', 'kadence-woocommerce-email-designer' ),
389
  __( 'Email Customizer', 'kadence-woocommerce-email-designer' ),
390
  'manage_woocommerce',
391
+ 'customize.php?kt-woomail-customize=1&url='.urlencode( add_query_arg( array( 'kt-woomail-preview' => '1' ), home_url('/') ) )
392
  );
393
  }
394
 
languages/kadence-woocommerce-email-designer-ca.mo ADDED
Binary file
languages/kadence-woocommerce-email-designer-ca.po ADDED
@@ -0,0 +1,1809 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # This file was generated by WPML
2
+ # WPML is a WordPress plugin that can turn any WordPress or WordPressMU site into a full featured multilingual content management system.
3
+ # https://wpml.org
4
+ msgid ""
5
+ msgstr ""
6
+ "Project-Id-Version: WPML_EXPORT_kadence-woocommerce-email-designer\n"
7
+ "POT-Creation-Date: 2018-10-29 12:45-0600\n"
8
+ "PO-Revision-Date: \n"
9
+ "Last-Translator: \n"
10
+ "Language-Team: \n"
11
+ "Language: ca\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=utf-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 2.1.1\n"
16
+
17
+ # wpml-name: 0095a9fa74d1713e43e370a7d7846224
18
+ #: includes/class-customizer-kwdimportexport-control.php:16
19
+ #: includes/class-customizer-kwdimportexport-control.php:21
20
+ msgid "Export"
21
+ msgstr "Exportar"
22
+
23
+ # wpml-name: c9e9cf5aca22bc76b4e8c37455a830bb
24
+ #: includes/class-customizer-kwdimportexport-control.php:19
25
+ msgid ""
26
+ "Click the button below to export the customization settings for this plugin."
27
+ msgstr ""
28
+ "Clica el botó de sota per a exportar els ajustos de personalització per "
29
+ "aquesta extensió."
30
+
31
+ # wpml-name: 72d6d7a1885885bb55a565fd1070581a
32
+ #: includes/class-customizer-kwdimportexport-control.php:26
33
+ #: includes/class-customizer-kwdimportexport-control.php:36
34
+ msgid "Import"
35
+ msgstr "Importar"
36
+
37
+ # wpml-name: 10bfc429c6c90d5072cada2b63643192
38
+ #: includes/class-customizer-kwdimportexport-control.php:29
39
+ msgid "Upload a file to import customization settings for this plugin."
40
+ msgstr ""
41
+ "Carrega un arxiu per importar ajustos de personalització per aquesta "
42
+ "extensió."
43
+
44
+ # wpml-name: f2870421907fa4e9e9c6fbe349234ecf
45
+ #: includes/class-customizer-kwdimportexport-control.php:35
46
+ msgid "Uploading..."
47
+ msgstr "Pujant..."
48
+
49
+ # wpml-name: fef7210286bf4d0d65615955ab98abd9
50
+ #: includes/class-customizer-kwdsendemail-control.php:21
51
+ msgid "Settings must be saved to send preview email."
52
+ msgstr "Els ajustos s'han de guardar per enviar un email de vista prèvia."
53
+
54
+ # wpml-name: c9f8da277cc33b904b2147a6d9c29ef5
55
+ #: includes/class-customizer-kwdsendemail-control.php:22
56
+ msgid "Send Email"
57
+ msgstr "Enviar Email"
58
+
59
+ # wpml-name: a9e158138ce76dc8d5a3556b6121b1b2
60
+ #: includes/class-customizer-kwdsendemail-control.php:23
61
+ msgid ""
62
+ "Some emails will not work correctly with the mockup order. It is best to use "
63
+ "a real order for sending preview emails."
64
+ msgstr ""
65
+ "Alguns emails no funcionaran correctament amb la comanda de prova. És millor "
66
+ "utilitzar una comanda real per enviar correus electrònics de vista prèvia."
67
+
68
+ # wpml-name: 8a5cb8d9d4059ca47cb16906011f5b4c
69
+ #: includes/class-customizer-kwdtemplateload-control.php:17
70
+ #: includes/class-customizer-kwdtemplateload-control.php:31
71
+ msgid "Load Template"
72
+ msgstr "Carregar plantilla"
73
+
74
+ # wpml-name: a8c3cd2df509b1db8e2c44506218906f
75
+ #: includes/class-customizer-kwdtemplateload-control.php:30
76
+ msgid "Loading and Saving..."
77
+ msgstr "Carregant i guardant..."
78
+
79
+ # wpml-name: be59f3154959c4958b2554645502b30f
80
+ #: includes/class-customizer-repeater-control.php:29
81
+ msgid "Add new field"
82
+ msgstr "Afegir nou camp"
83
+
84
+ # wpml-name: 5f57040c41e55062d797d4b9ccf5c038
85
+ #: includes/class-customizer-repeater-control.php:34
86
+ msgid "Customizer Repeater"
87
+ msgstr "Repetidor de personalitzador"
88
+
89
+ # wpml-name: b78a3223503896721cca1303f776159b
90
+ #: includes/class-customizer-repeater-control.php:201
91
+ #: includes/class-customizer-repeater-control.php:253
92
+ msgid "Title"
93
+ msgstr "Títol"
94
+
95
+ # wpml-name: 97e7c9a7d06eac006a28bf05467fcc8b
96
+ #: includes/class-customizer-repeater-control.php:208
97
+ #: includes/class-customizer-repeater-control.php:261
98
+ msgid "Link"
99
+ msgstr "Enllaç"
100
+
101
+ # wpml-name: c64f8a38fc13441f6cc860a4cbae887a
102
+ #: includes/class-customizer-repeater-control.php:222
103
+ #: includes/class-customizer-repeater-control.php:269
104
+ msgid "Delete field"
105
+ msgstr "Borrar camp"
106
+
107
+ # wpml-name: 22bfeebade13bc12924cb3b1ef74806a
108
+ #: includes/class-customizer-repeater-control.php:310
109
+ msgid "Choose a Bundled Icon"
110
+ msgstr "Escull una icona agrupada"
111
+
112
+ # wpml-name: 55e699089d1a0a0f9e60254a155f51df
113
+ #: includes/class-customizer-repeater-control.php:332
114
+ #: includes/class-customizer-repeater-control.php:346
115
+ msgid "Custom Upload Icon"
116
+ msgstr "Icona de càrrega personalitzada"
117
+
118
+ # wpml-name: 1f98842c354dc496970446bce14f4c50
119
+ #: includes/class-customizer-repeater-control.php:335
120
+ msgid "Upload Image"
121
+ msgstr "Carregar imatge"
122
+
123
+ # wpml-name: 6e8d9f2aa6e9921d1d2dbdf625c4fd6b
124
+ #: includes/class-customizer-repeater-control.php:342
125
+ msgid "Social Image Source"
126
+ msgstr "Font d'imatge social"
127
+
128
+ # wpml-name: e19792c22129b567d57485432c61649a
129
+ #: includes/class-customizer-repeater-control.php:345
130
+ msgid "Bundled Icon"
131
+ msgstr "Icona agrupada"
132
+
133
+ # wpml-name: 6adf97f83acf6453d4a6a4b1070f3754
134
+ #: includes/class-customizer-repeater-control.php:347
135
+ #: includes/class-kadence-woomail-settings.php:1383
136
+ #: includes/class-kadence-woomail-settings.php:1424
137
+ msgid "None"
138
+ msgstr "Cap"
139
+
140
+ # wpml-name: a4d4346b34faba5d8d49ab42ef655a88
141
+ #: includes/class-customizer-repeater-control.php:354
142
+ msgid "Bundled Icon Color"
143
+ msgstr "Color d'icona agrupada"
144
+
145
+ # wpml-name: e90dfb84e30edf611e326eeb04d680de
146
+ #: includes/class-customizer-repeater-control.php:357
147
+ msgid "Black"
148
+ msgstr "Negre"
149
+
150
+ # wpml-name: 25a81701fbfa4a1efdf660a950c1d006
151
+ #: includes/class-customizer-repeater-control.php:358
152
+ msgid "White"
153
+ msgstr "Blanc"
154
+
155
+ # wpml-name: 994ae1d9731cebe455aff211bcb25b93
156
+ #: includes/class-customizer-repeater-control.php:359
157
+ msgid "Gray"
158
+ msgstr "Gris"
159
+
160
+ # wpml-name: c9cc8cce247e49bae79f15173ce97354
161
+ #: includes/class-kadence-woomail-customizer.php:110
162
+ msgid "Save"
163
+ msgstr "Guardar"
164
+
165
+ # wpml-name: 248336101b461380a4b2391a7625493d
166
+ #: includes/class-kadence-woomail-customizer.php:112
167
+ msgid "Saved"
168
+ msgstr "Guardat"
169
+
170
+ # wpml-name: f3c4ba24ea3b940938d58502b3b5fc82
171
+ #: includes/class-kadence-woomail-customizer.php:165
172
+ #, fuzzy
173
+ #| msgid "Woocommerce Emails"
174
+ msgid "WooCommerce Emails"
175
+ msgstr "Emails de WooCommerce"
176
+
177
+ # wpml-name: 526d688f37a86d3c3f27d0c5016eb71d
178
+ #: includes/class-kadence-woomail-customizer.php:272
179
+ msgid "Reset"
180
+ msgstr "Restablir"
181
+
182
+ # wpml-name: f3c4ba24ea3b940938d58502b3b5fc82
183
+ #: includes/class-kadence-woomail-customizer.php:273
184
+ msgid "Woocommerce Emails"
185
+ msgstr "Emails de WooCommerce"
186
+
187
+ # wpml-name: 4f8981570bd78cada4b5db1550c270f5
188
+ #: includes/class-kadence-woomail-customizer.php:274
189
+ msgid "Are you sure you want to send an email?"
190
+ msgstr "Estàs segur que vols enviar un email?"
191
+
192
+ # wpml-name: 4450277200a0425a9524fabbeb976c32
193
+ #: includes/class-kadence-woomail-customizer.php:275
194
+ msgid "Email Sent!"
195
+ msgstr "¡Email Enviat!"
196
+
197
+ # wpml-name: 833485eb231eeca56d7c3f8824b829f3
198
+ #: includes/class-kadence-woomail-customizer.php:276
199
+ msgid "Email failed, make sure you have a working email server for your site."
200
+ msgstr ""
201
+ "Email fallit, assegura't que tens uns servidor de correu que funcioni per la "
202
+ "teva web."
203
+
204
+ # wpml-name: d58f72b355ef700b737189eabd8eef49
205
+ #: includes/class-kadence-woomail-customizer.php:277
206
+ msgid ""
207
+ "Are you sure you want to reset all changes made to your WooCommerce emails?"
208
+ msgstr ""
209
+ "Estàs segur que vols restablir tots els canvis fets en els teus emails de "
210
+ "WooCommerce?"
211
+
212
+ # wpml-name: b6c27ca3fda2a7820b24af17e7021eed
213
+ #: includes/class-kadence-woomail-customizer.php:278
214
+ msgid ""
215
+ "<p>Use native WordPress Customizer to make Woocommerce emails match your "
216
+ "brand.</p>"
217
+ msgstr ""
218
+ "<p>Utilitza el personalitzador natiu de WordPress per a que els emails de "
219
+ "WooCommerce encaixin en la teva marca.</p>"
220
+
221
+ # wpml-name: c5e2693eb87e35dde47edfb4d7ff2f9b
222
+ #: includes/class-kadence-woomail-customizer.php:278
223
+ #, php-format
224
+ msgid ""
225
+ "<a href=\"%s\">Kadence Woocommerce Email Designer</a> plugin by <a href=\"%s"
226
+ "\">Kadence Themes</a>."
227
+ msgstr ""
228
+ "<a href=\"%s\">Kadence Woocommerce Email Designer</a> extensió per <a href="
229
+ "\"%s\">Kadence Themes</a>."
230
+
231
+ #: includes/class-kadence-woomail-customizer.php:283
232
+ msgid "Please choose a file to import."
233
+ msgstr ""
234
+
235
+ #: includes/class-kadence-woomail-customizer.php:284
236
+ msgid ""
237
+ "WARNING: This will override all of your current settings. Are you sure you "
238
+ "want to do that? We suggest geting an export of your current settings incase "
239
+ "you want to revert back."
240
+ msgstr ""
241
+
242
+ #: includes/class-kadence-woomail-import-export.php:211
243
+ msgid "Error importing settings! Please try again."
244
+ msgstr ""
245
+
246
+ #: includes/class-kadence-woomail-import-export.php:224
247
+ #: includes/class-kadence-woomail-import-export.php:228
248
+ msgid ""
249
+ "Error importing settings! Please check that you uploaded a customizer export "
250
+ "file."
251
+ msgstr ""
252
+
253
+ #: includes/class-kadence-woomail-import-export.php:232
254
+ msgid ""
255
+ "Error importing settings! The settings you uploaded are not for the Kadence "
256
+ "Woomail Designer."
257
+ msgstr ""
258
+
259
+ #: includes/class-kadence-woomail-import-export.php:293
260
+ msgid "Error importing settings! The template you selected is not found."
261
+ msgstr ""
262
+
263
+ #: includes/class-kadence-woomail-import-export.php:297
264
+ #: includes/class-kadence-woomail-import-export.php:301
265
+ msgid "Error importing settings! The template you selected is not valid."
266
+ msgstr ""
267
+
268
+ #: includes/class-kadence-woomail-preview.php:231
269
+ msgid "Hello! This is an example note"
270
+ msgstr ""
271
+
272
+ #: includes/class-kadence-woomail-preview.php:304
273
+ msgid ""
274
+ "This email type can not be previewed because it links with a subscription. "
275
+ "We are working on it."
276
+ msgstr ""
277
+
278
+ #: includes/class-kadence-woomail-preview.php:351
279
+ msgid ""
280
+ "An error occurred trying to load this email type. Make sure this email type "
281
+ "is enabled or please try another type."
282
+ msgstr ""
283
+
284
+ # wpml-name: bf50d5e661106d0abe925af3c2e6f7e7
285
+ #: includes/class-kadence-woomail-settings.php:79
286
+ msgid "Header"
287
+ msgstr "Capçalera"
288
+
289
+ # wpml-name: f15c1cae7882448b3fb0404682e17e61
290
+ #: includes/class-kadence-woomail-settings.php:85
291
+ msgid "Content"
292
+ msgstr "Contingut"
293
+
294
+ # wpml-name: ded40f2a77c30efc6062db0cbd857746
295
+ #: includes/class-kadence-woomail-settings.php:91
296
+ msgid "Footer"
297
+ msgstr "Peu de pàgina"
298
+
299
+ # wpml-name: 8c526e0f668d47328e31dd1efbeb5531
300
+ #: includes/class-kadence-woomail-settings.php:113
301
+ msgid "Prebuilt Templates"
302
+ msgstr "Plantilles pre-construïdes"
303
+
304
+ # wpml-name: 358a2a629bf842eea171bbf786478fda
305
+ #: includes/class-kadence-woomail-settings.php:117
306
+ msgid "Email Type and Text"
307
+ msgstr "Text i tipus d'email"
308
+
309
+ # wpml-name: 0e7278cda02a9c0446dcc75a4df34eb2
310
+ #: includes/class-kadence-woomail-settings.php:122
311
+ msgid "Container"
312
+ msgstr "Contenedor"
313
+
314
+ # wpml-name: 1af4254c54c05d454a43f041f6315930
315
+ #: includes/class-kadence-woomail-settings.php:128
316
+ msgid "Header Style"
317
+ msgstr "Estil de capçalera"
318
+
319
+ # wpml-name: e7809587c69a98dbf9ffe3d656e4e72a
320
+ #: includes/class-kadence-woomail-settings.php:135
321
+ #: includes/class-kadence-woomail-settings.php:237
322
+ msgid "Header Image"
323
+ msgstr "Imatge de capçalera"
324
+
325
+ # wpml-name: 0101316665d4f82adaa26d86fbbb2d6e
326
+ #: includes/class-kadence-woomail-settings.php:142
327
+ msgid "Heading"
328
+ msgstr "Capçalera"
329
+
330
+ # wpml-name: 9897c1e80ee14e69e7c1d53f41736d6b
331
+ #: includes/class-kadence-woomail-settings.php:149
332
+ msgid "Footer Style"
333
+ msgstr "Estil de peu de pàgina"
334
+
335
+ # wpml-name: 287aa07685c68627ac6c750757cc0d16
336
+ #: includes/class-kadence-woomail-settings.php:155
337
+ msgid "Footer Social"
338
+ msgstr "Social de peu de pàgina"
339
+
340
+ # wpml-name: 62b6dcddedd560b61c944356e7400485
341
+ #: includes/class-kadence-woomail-settings.php:161
342
+ msgid "Footer Credit Content"
343
+ msgstr "Contingut de crèdit de peu de pàgina"
344
+
345
+ # wpml-name: 43d5ade58b6596289daa2c36dff729c0
346
+ #: includes/class-kadence-woomail-settings.php:168
347
+ msgid "Content Container"
348
+ msgstr "Contenidor de contingut"
349
+
350
+ # wpml-name: 5aa6b7c7139d31f4a22fa850972d2a1e
351
+ #: includes/class-kadence-woomail-settings.php:173
352
+ msgid "Content Headings Style"
353
+ msgstr "Estil de capçalera de contingut"
354
+
355
+ # wpml-name: 46c4c2f23c1e3fe43fffde2a1d458044
356
+ #: includes/class-kadence-woomail-settings.php:179
357
+ msgid "Content Text Style"
358
+ msgstr "Estil de text del contingut"
359
+
360
+ # wpml-name: 4b84bd35233c0d3d3c36b9a6ce6e0745
361
+ #: includes/class-kadence-woomail-settings.php:185
362
+ msgid "Order Items"
363
+ msgstr "Articles de la comanda"
364
+
365
+ # wpml-name: 284b47b0bb63ae2df3b29f0e691d6fcf
366
+ #: includes/class-kadence-woomail-settings.php:191
367
+ msgid "Addresses"
368
+ msgstr "Adreces"
369
+
370
+ # wpml-name: c9b4483375dd8c1afd59188ef64a06e5
371
+ #: includes/class-kadence-woomail-settings.php:197
372
+ msgid "Text Copy"
373
+ msgstr "Còpia de text"
374
+
375
+ # wpml-name: ba824d148e95ecf46c3022e17d925581
376
+ #: includes/class-kadence-woomail-settings.php:204
377
+ msgid "Custom Styles"
378
+ msgstr "Estils personalitzats"
379
+
380
+ # wpml-name: e8f6c20ec172433f1bd8c503c3809265
381
+ #: includes/class-kadence-woomail-settings.php:209
382
+ #: includes/class-kadence-woomail-settings.php:2102
383
+ msgid "Import Export"
384
+ msgstr "Importar Exportar"
385
+
386
+ # wpml-name: 643ee2566428cf0e4d9a19199aaffa43
387
+ #: includes/class-kadence-woomail-settings.php:214
388
+ msgid "Send Preview Email"
389
+ msgstr "Enviar Email de prova"
390
+
391
+ # wpml-name: a611da2d0b68a38e611c48362f470c59
392
+ #: includes/class-kadence-woomail-settings.php:250
393
+ msgid "Container Background color"
394
+ msgstr "Color de fons del contenidor"
395
+
396
+ # wpml-name: 1cb44377676aca830a4f15a21fe43350
397
+ #: includes/class-kadence-woomail-settings.php:263
398
+ msgid "Content Text color"
399
+ msgstr "Color de text del contingut"
400
+
401
+ # wpml-name: 89827110892b35559fabde2faa8ff2f1
402
+ #: includes/class-kadence-woomail-settings.php:277
403
+ msgid "Content Background color"
404
+ msgstr "Color de fons del contingut"
405
+
406
+ # wpml-name: ae68c7d78a4135cf3d9790ef9f176cdf
407
+ #: includes/class-kadence-woomail-settings.php:291
408
+ msgid "Footer text"
409
+ msgstr "Text del peu de pàgina"
410
+
411
+ # wpml-name: c6db7b7b214aab26a9ab4ef91c214590
412
+ #: includes/class-kadence-woomail-settings.php:306
413
+ msgid "Recipient(s)"
414
+ msgstr "Destinatari(s)"
415
+
416
+ # wpml-name: 5fa4e8318931d50d0dc568ba877c1cfa
417
+ #: includes/class-kadence-woomail-settings.php:311
418
+ #, php-format
419
+ msgid "Enter recipients (comma separated) for this email. Defaults to %s."
420
+ msgstr ""
421
+ "Introdueix els destinataris (separats per comes) per aquest email. Per "
422
+ "defecte a %s."
423
+
424
+ # wpml-name: dc4bbed3a49419690ec9bdcb6d029c45
425
+ #: includes/class-kadence-woomail-settings.php:322
426
+ msgid "Full refund subject"
427
+ msgstr "Assumpte del reemborsament complet"
428
+
429
+ # wpml-name: ad8605f810a0705a2574b5b73c1e28c5
430
+ #: includes/class-kadence-woomail-settings.php:338
431
+ msgid "Partial refund subject"
432
+ msgstr "Assumpte del reemborsament parcial"
433
+
434
+ # wpml-name: 67bd9f8d5b0fe6fded7d7d0cbc78f5ea
435
+ #: includes/class-kadence-woomail-settings.php:354
436
+ msgid "Full refund Heading Text"
437
+ msgstr "Text de capçalera de reemborsament complet"
438
+
439
+ # wpml-name: 902230f573bb7fcdd089345d8365ab90
440
+ #: includes/class-kadence-woomail-settings.php:374
441
+ msgid "Partial refund Heading Text"
442
+ msgstr "Text de capçalera de reemborsament parcial"
443
+
444
+ # wpml-name: 43a4c78e0c2a85e9c68f96a47e83b0f4
445
+ #: includes/class-kadence-woomail-settings.php:391
446
+ msgid "Subject Text"
447
+ msgstr "Text de l'assumpte"
448
+
449
+ # wpml-name: 4bbd1afff0ef0d8db107991ddf75d854
450
+ #: includes/class-kadence-woomail-settings.php:407
451
+ msgid "Subject (paid) Text"
452
+ msgstr "Text de l'assumpte (pagat)"
453
+
454
+ # wpml-name: 266e35b3512b016280e8586b0eb311e7
455
+ #: includes/class-kadence-woomail-settings.php:424
456
+ msgid "Heading Text"
457
+ msgstr "Text de capçalera"
458
+
459
+ # wpml-name: 1062e8c2d555977a9a0512d0446f0e23
460
+ #: includes/class-kadence-woomail-settings.php:444
461
+ msgid "Heading (paid) Text"
462
+ msgstr "Text de capçalera (pagat)"
463
+
464
+ # wpml-name: 657124d5c953c2cde9b92bd9f4c335c2
465
+ #: includes/class-kadence-woomail-settings.php:479
466
+ msgid "Template_load"
467
+ msgstr "Template_load"
468
+
469
+ # wpml-name: f65f47afb7275e8bd5401e550e59d231
470
+ #: includes/class-kadence-woomail-settings.php:488
471
+ msgid "Preview Order"
472
+ msgstr "Vista prèvia de comanda"
473
+
474
+ # wpml-name: 06e145df196337410ad5e653c20a425d
475
+ #: includes/class-kadence-woomail-settings.php:498
476
+ msgid "Email Type"
477
+ msgstr "Tipus d'email"
478
+
479
+ # wpml-name: 84e3488afdceef9f41342d480161be2c
480
+ #: includes/class-kadence-woomail-settings.php:508
481
+ msgid "Available placeholders"
482
+ msgstr "Marques disponibles"
483
+
484
+ # wpml-name: 785549da209dfd338dd472a800a82a12
485
+ #: includes/class-kadence-woomail-settings.php:520
486
+ msgid "Subtitle Text"
487
+ msgstr "Text del subtítol"
488
+
489
+ # wpml-name: bb9b0bec0080f0c8030634bbdc286d96
490
+ #: includes/class-kadence-woomail-settings.php:538
491
+ msgid "Switch off for Partial Refund Preview"
492
+ msgstr "Desactivar per a vista prèvia de reemborsament parcial"
493
+
494
+ # wpml-name: 64f7a5aa5e77469d9a7016060d36c405
495
+ #: includes/class-kadence-woomail-settings.php:553
496
+ msgid "Body Full Refund Text"
497
+ msgstr "Text del cos de reemborsament complet"
498
+
499
+ # wpml-name: 2eaeead4686487184f8874f10b0d347f
500
+ #: includes/class-kadence-woomail-settings.php:567
501
+ msgid "Body Partial Refund Text"
502
+ msgstr "Text del cos de reemborsament parcial"
503
+
504
+ # wpml-name: de3ce871c0131156ed65bb10a24dac28
505
+ #: includes/class-kadence-woomail-settings.php:582
506
+ msgid "Switch off for unpaid preview"
507
+ msgstr "Desactivar per vista prèvia sense pagar"
508
+
509
+ # wpml-name: a8cba7269fb1c3f9df390cc90250fa9c
510
+ #: includes/class-kadence-woomail-settings.php:597
511
+ msgid "Body Invoice Paid Text"
512
+ msgstr "Text del cos de factura pagada"
513
+
514
+ # wpml-name: d1a40b1f853ddc325608597839e0318f
515
+ #: includes/class-kadence-woomail-settings.php:611
516
+ #: includes/class-kadence-woomail-settings.php:639
517
+ msgid "Body Invoice Pending Payment Text"
518
+ msgstr "Text del cos de pagament pendent de factura"
519
+
520
+ # wpml-name: a8cba7269fb1c3f9df390cc90250fa9c
521
+ #: includes/class-kadence-woomail-settings.php:625
522
+ #, fuzzy
523
+ #| msgid "Body Invoice Paid Text"
524
+ msgid "Body Invoice Failed Text"
525
+ msgstr "Text del cos de factura pagada"
526
+
527
+ # wpml-name: c1800412bc0184dd8339a641907b549f
528
+ #: includes/class-kadence-woomail-settings.php:653
529
+ msgid "Body Text"
530
+ msgstr "Text del cos"
531
+
532
+ # wpml-name: 399df326b0ba3630641583807b229bfe
533
+ #: includes/class-kadence-woomail-settings.php:671
534
+ msgid "Content Width"
535
+ msgstr "Amplada del contingut"
536
+
537
+ # wpml-name: b6bc6234dd2b0f9b05c0ce4825c620a8
538
+ #: includes/class-kadence-woomail-settings.php:691
539
+ msgid "Border radius"
540
+ msgstr "Radi de la bora"
541
+
542
+ # wpml-name: 757e8d7a69c388d1b39efa9bd3d54d4d
543
+ #: includes/class-kadence-woomail-settings.php:707
544
+ #: includes/class-kadence-woomail-settings.php:1631
545
+ msgid "Border Width"
546
+ msgstr "Gruix de la vora"
547
+
548
+ # wpml-name: d8404c62148d50f3388a992e47f9fbcf
549
+ #: includes/class-kadence-woomail-settings.php:723
550
+ msgid "Border color"
551
+ msgstr "Color de la vora"
552
+
553
+ # wpml-name: 3f39588bb19e28051d9aedfbb170025c
554
+ #: includes/class-kadence-woomail-settings.php:734
555
+ msgid "Shadow"
556
+ msgstr "Ombra"
557
+
558
+ # wpml-name: 651909a5e8fbd63fbb6e74bcecbf3a12
559
+ #: includes/class-kadence-woomail-settings.php:750
560
+ msgid "Container Top Padding"
561
+ msgstr "Espai superior del contenidor"
562
+
563
+ # wpml-name: 7730444859567293bc7dca285243bfea
564
+ #: includes/class-kadence-woomail-settings.php:766
565
+ msgid "Container Botom Padding"
566
+ msgstr "Espai inferior del contenidor"
567
+
568
+ # wpml-name: 8d04afc2efd25165a5b759fa03017ac8
569
+ #: includes/class-kadence-woomail-settings.php:783
570
+ msgid "Image Align"
571
+ msgstr "Alineació d'imatge"
572
+
573
+ # wpml-name: 64e7fa617ab782f6c20987cd3ec6ecf5
574
+ #: includes/class-kadence-woomail-settings.php:795
575
+ msgid "Image Max Width"
576
+ msgstr "Amplada màxima d'imatge"
577
+
578
+ # wpml-name: 368d9ac76af05f714092bc808a426bfc
579
+ #: includes/class-kadence-woomail-settings.php:810
580
+ #: includes/class-kadence-woomail-settings.php:837
581
+ msgid "Background color"
582
+ msgstr "Color de fons"
583
+
584
+ # wpml-name: 09d3df02a61792dde2969793e32cf732
585
+ #: includes/class-kadence-woomail-settings.php:821
586
+ msgid "Padding top/bottom"
587
+ msgstr "Espai superior/inferior"
588
+
589
+ # wpml-name: c22b28c5c38d219b521e476691bd7158
590
+ #: includes/class-kadence-woomail-settings.php:848
591
+ msgid "Text align"
592
+ msgstr "Alineació de text"
593
+
594
+ # wpml-name: 0e3707cdd522f78c20bee3c7d2f171cd
595
+ #: includes/class-kadence-woomail-settings.php:862
596
+ #: includes/class-kadence-woomail-settings.php:1107
597
+ msgid "Padding Top"
598
+ msgstr "Espai superior"
599
+
600
+ # wpml-name: d8ccc7a230be06499d368a9c00f5c437
601
+ #: includes/class-kadence-woomail-settings.php:878
602
+ #: includes/class-kadence-woomail-settings.php:1123
603
+ msgid "Padding Bottom"
604
+ msgstr "Espai inferior"
605
+
606
+ # wpml-name: 6c7a32aa2660507944adf6f30512c39b
607
+ #: includes/class-kadence-woomail-settings.php:895
608
+ msgid "Padding left/right"
609
+ msgstr "Espai esquerra/dreta"
610
+
611
+ # wpml-name: 1435d39c322930cb38caf78cd140f309
612
+ #: includes/class-kadence-woomail-settings.php:911
613
+ msgid "Heading Font size"
614
+ msgstr "Tamany de font de la capçalera"
615
+
616
+ # wpml-name: e6a422c13747f1fc35e4e7eecfabdd20
617
+ #: includes/class-kadence-woomail-settings.php:927
618
+ msgid "Heading Line Height"
619
+ msgstr "Alçada de línia de la capçalera"
620
+
621
+ # wpml-name: f1a153e4552a785023865699de1b5ad2
622
+ #: includes/class-kadence-woomail-settings.php:943
623
+ msgid "Heading Font family"
624
+ msgstr "Font de la capçalera"
625
+
626
+ # wpml-name: 7227ae032e085fd49b1582ea2d0305d4
627
+ #: includes/class-kadence-woomail-settings.php:955
628
+ msgid "Heading Font Style"
629
+ msgstr "Estil de la font de la capçalera"
630
+
631
+ # wpml-name: 960b44c579bc2f6818d2daaf9e4c16f0
632
+ #: includes/class-kadence-woomail-settings.php:961
633
+ #: includes/class-kadence-woomail-settings.php:1068
634
+ #: includes/class-kadence-woomail-settings.php:1350
635
+ #: includes/class-kadence-woomail-settings.php:1539
636
+ #: includes/class-kadence-woomail-settings.php:1581
637
+ #: includes/class-kadence-woomail-settings.php:1686
638
+ msgid "Normal"
639
+ msgstr "Normal"
640
+
641
+ # wpml-name: 1d874710ccdcd46b95397049d2e7500c
642
+ #: includes/class-kadence-woomail-settings.php:962
643
+ #: includes/class-kadence-woomail-settings.php:1069
644
+ #: includes/class-kadence-woomail-settings.php:1351
645
+ #: includes/class-kadence-woomail-settings.php:1540
646
+ msgid "Italic"
647
+ msgstr "Cursiva"
648
+
649
+ # wpml-name: f15c2ab7f113f6d65222ba568232a4dc
650
+ #: includes/class-kadence-woomail-settings.php:970
651
+ msgid "Heading Font weight"
652
+ msgstr "Pes de la font de la capçalera"
653
+
654
+ # wpml-name: 3716efe560389c3c2b4f37a49ef82a75
655
+ #: includes/class-kadence-woomail-settings.php:986
656
+ msgid "Heading Text color"
657
+ msgstr "Color de text de la capçalera"
658
+
659
+ # wpml-name: bb9dae496c806bf870b174eab696fb3b
660
+ #: includes/class-kadence-woomail-settings.php:998
661
+ msgid "Subtitle Settings"
662
+ msgstr "Ajustos del subtítol"
663
+
664
+ # wpml-name: 6e126598b8a6188c704df9a15c89038e
665
+ #: includes/class-kadence-woomail-settings.php:1005
666
+ msgid "Subtitle Placement"
667
+ msgstr "Ubicació del subtítol"
668
+
669
+ # wpml-name: ead924807789051d0b8c6d4ec1d944d1
670
+ #: includes/class-kadence-woomail-settings.php:1011
671
+ msgid "Below Heading"
672
+ msgstr "Davall de la capçalera"
673
+
674
+ # wpml-name: bc5b8b2dd26887d4a8019c78460addb8
675
+ #: includes/class-kadence-woomail-settings.php:1012
676
+ msgid "Above Heading"
677
+ msgstr "Damunt de la capçalera"
678
+
679
+ # wpml-name: c190f468f95350d201258f2fb9319dfa
680
+ #: includes/class-kadence-woomail-settings.php:1018
681
+ msgid "Subtitle Font Size"
682
+ msgstr "Tamany de font del subtítol"
683
+
684
+ # wpml-name: 503664ee855241668bca1a9a9bc1f488
685
+ #: includes/class-kadence-woomail-settings.php:1034
686
+ msgid "Subtitle Line Height"
687
+ msgstr "Alçada de línia del subtítol"
688
+
689
+ # wpml-name: 8e9cc33dd6cfd9fa963c48024bdc6b3f
690
+ #: includes/class-kadence-woomail-settings.php:1050
691
+ msgid "Subtitle Font Family"
692
+ msgstr "Font del subtítol"
693
+
694
+ # wpml-name: ffa0ad10b9955a8a0f21d7e8fd8a0b86
695
+ #: includes/class-kadence-woomail-settings.php:1062
696
+ msgid "Subtitle Font Style"
697
+ msgstr "Estil de la font del subtítol"
698
+
699
+ # wpml-name: c0c90bf669a29974cf9321932d791f48
700
+ #: includes/class-kadence-woomail-settings.php:1078
701
+ msgid "Subtitle Font weight"
702
+ msgstr "Pes de la font del subtítol"
703
+
704
+ # wpml-name: b2193dde255f56f4d2a3e5d5e7da81a9
705
+ #: includes/class-kadence-woomail-settings.php:1095
706
+ msgid "Subtitle Text color"
707
+ msgstr "Color de text del subtítol"
708
+
709
+ # wpml-name: 98b10e8c5b545d4749a40e7cd2800cae
710
+ #: includes/class-kadence-woomail-settings.php:1139
711
+ msgid "Padding Left/Right"
712
+ msgstr "Espai esquerra/dreta"
713
+
714
+ # wpml-name: 45f0d4fa9a30e9c5571dbaa9ad1be931
715
+ #: includes/class-kadence-woomail-settings.php:1157
716
+ #: includes/class-kadence-woomail-settings.php:2003
717
+ msgid "Font Size"
718
+ msgstr "Tamany de font"
719
+
720
+ # wpml-name: 1ef0054faf96b87acdea23847bf263e8
721
+ #: includes/class-kadence-woomail-settings.php:1174
722
+ msgid "Line Height"
723
+ msgstr "Alçada de línia"
724
+
725
+ # wpml-name: db40a5d4b654151bf70f2e25e73263dc
726
+ #: includes/class-kadence-woomail-settings.php:1191
727
+ #: includes/class-kadence-woomail-settings.php:2019
728
+ msgid "Font Family"
729
+ msgstr "Font"
730
+
731
+ # wpml-name: a47c4f19993bfe8ff2a3529bae8c0be3
732
+ #: includes/class-kadence-woomail-settings.php:1205
733
+ #: includes/class-kadence-woomail-settings.php:2032
734
+ msgid "Font weight"
735
+ msgstr "Pes de la font"
736
+
737
+ # wpml-name: 59ece6dc07b89f5c61320dd130579a7f
738
+ #: includes/class-kadence-woomail-settings.php:1221
739
+ msgid "Link Color"
740
+ msgstr "Color d'enllaç"
741
+
742
+ # wpml-name: 7cc87b16baf4f65ebad831e18703877f
743
+ #: includes/class-kadence-woomail-settings.php:1235
744
+ msgid "H2 Font Size"
745
+ msgstr "Tamany de font H2"
746
+
747
+ # wpml-name: 21247538d478cf4604be160fa6c342e1
748
+ #: includes/class-kadence-woomail-settings.php:1251
749
+ msgid "H2 Line Height"
750
+ msgstr "Alçada de línia H2"
751
+
752
+ # wpml-name: fc5a47a4a99108009da0142dc4e331af
753
+ #: includes/class-kadence-woomail-settings.php:1267
754
+ msgid "H2 Padding Top"
755
+ msgstr "Espai superior H2"
756
+
757
+ # wpml-name: 5d00690d03bb171325017d94f8ff466c
758
+ #: includes/class-kadence-woomail-settings.php:1283
759
+ msgid "H2 Padding Bottom"
760
+ msgstr "Espai inferior H2"
761
+
762
+ # wpml-name: b9ca807b4205563cd7cb75a91eb17cda
763
+ #: includes/class-kadence-woomail-settings.php:1299
764
+ msgid "H2 Margin Top"
765
+ msgstr "Marge superior H2"
766
+
767
+ # wpml-name: 91329c3206b0963b936ba38576f41110
768
+ #: includes/class-kadence-woomail-settings.php:1315
769
+ msgid "H2 Margin Bottom"
770
+ msgstr "Marge inferior H2"
771
+
772
+ # wpml-name: a5d1b99a8c682e1f1f6d00e1f2d15737
773
+ #: includes/class-kadence-woomail-settings.php:1331
774
+ msgid "H2 Font Family"
775
+ msgstr "Font H2"
776
+
777
+ # wpml-name: 81b27073f543ccf07f76d97ca05a53e6
778
+ #: includes/class-kadence-woomail-settings.php:1344
779
+ msgid "H2 Font Style"
780
+ msgstr "Estil de la font H2"
781
+
782
+ # wpml-name: 4608075e2e478be28542470d740bfe1a
783
+ #: includes/class-kadence-woomail-settings.php:1360
784
+ msgid "H2 Font weight"
785
+ msgstr "Pes de la font H2"
786
+
787
+ # wpml-name: 31d5e3b330b8e62eb8b53998d94e718c
788
+ #: includes/class-kadence-woomail-settings.php:1377
789
+ msgid "H2 Text Transform"
790
+ msgstr "Transformació de text H2"
791
+
792
+ # wpml-name: 621e7b8ece62fecc55e883252ff2fbe7
793
+ #: includes/class-kadence-woomail-settings.php:1384
794
+ msgid "Uppercase"
795
+ msgstr "Majúscules"
796
+
797
+ # wpml-name: dc1ff975a46c75335d6d640abdc0c3a6
798
+ #: includes/class-kadence-woomail-settings.php:1385
799
+ msgid "Lowercase"
800
+ msgstr "Minúscules"
801
+
802
+ # wpml-name: 97a62b5e6d3cae255036b6bc37b87b44
803
+ #: includes/class-kadence-woomail-settings.php:1386
804
+ msgid "Capitalize"
805
+ msgstr "Primera lletra en majúscula"
806
+
807
+ # wpml-name: f01c73d6a9ee572b9235d45f887c1ed9
808
+ #: includes/class-kadence-woomail-settings.php:1394
809
+ msgid "H2 Color"
810
+ msgstr "Color H2"
811
+
812
+ # wpml-name: 4180ba68307b5b563f4330868b09f681
813
+ #: includes/class-kadence-woomail-settings.php:1406
814
+ msgid "H2 Text Align"
815
+ msgstr "Alineació de text H2"
816
+
817
+ # wpml-name: 94ed89c39c58f2d01a94b377cf7a01a8
818
+ #: includes/class-kadence-woomail-settings.php:1418
819
+ msgid "H2 Separator"
820
+ msgstr "Separador H2"
821
+
822
+ # wpml-name: b7a8e107740d79649189685bfa4409f4
823
+ #: includes/class-kadence-woomail-settings.php:1425
824
+ msgid "Separator below"
825
+ msgstr "Davall del separador"
826
+
827
+ # wpml-name: 14ad80cc9b8661cc1c30b6729e10a505
828
+ #: includes/class-kadence-woomail-settings.php:1426
829
+ msgid "Separator above"
830
+ msgstr "Damunt del separador"
831
+
832
+ # wpml-name: 2483e8422f3d9225dccfda61dc8f11d0
833
+ #: includes/class-kadence-woomail-settings.php:1431
834
+ msgid "H2 Separator height"
835
+ msgstr "Alçada separador H2"
836
+
837
+ # wpml-name: d17e239477554b4ae53c01824e25b91d
838
+ #: includes/class-kadence-woomail-settings.php:1449
839
+ msgid "H2 Separator Style"
840
+ msgstr "Estil de separador H2"
841
+
842
+ # wpml-name: e41480b6bbfbf7407974a88d3d34f4fa
843
+ #: includes/class-kadence-woomail-settings.php:1455
844
+ #: includes/class-kadence-woomail-settings.php:1665
845
+ #: includes/class-kadence-woomail-settings.php:1736
846
+ #: includes/class-kadence-woomail-settings.php:1977
847
+ msgid "Solid"
848
+ msgstr "Sòlida"
849
+
850
+ # wpml-name: d909d38d705ce75386dd86e611a82f5b
851
+ #: includes/class-kadence-woomail-settings.php:1456
852
+ #: includes/class-kadence-woomail-settings.php:1666
853
+ #: includes/class-kadence-woomail-settings.php:1737
854
+ #: includes/class-kadence-woomail-settings.php:1978
855
+ msgid "Double"
856
+ msgstr "Doble"
857
+
858
+ # wpml-name: a5d7f2d1b78f9222563004a41a616334
859
+ #: includes/class-kadence-woomail-settings.php:1457
860
+ #: includes/class-kadence-woomail-settings.php:1667
861
+ #: includes/class-kadence-woomail-settings.php:1738
862
+ #: includes/class-kadence-woomail-settings.php:1979
863
+ msgid "Groove"
864
+ msgstr "Groove"
865
+
866
+ # wpml-name: 90c09393a4c0970bc9a6703ad527781c
867
+ #: includes/class-kadence-woomail-settings.php:1458
868
+ #: includes/class-kadence-woomail-settings.php:1668
869
+ #: includes/class-kadence-woomail-settings.php:1739
870
+ #: includes/class-kadence-woomail-settings.php:1980
871
+ msgid "Dotted"
872
+ msgstr "De punts"
873
+
874
+ # wpml-name: eb656e41b6da91494775ecf47a51da91
875
+ #: includes/class-kadence-woomail-settings.php:1459
876
+ #: includes/class-kadence-woomail-settings.php:1669
877
+ #: includes/class-kadence-woomail-settings.php:1740
878
+ #: includes/class-kadence-woomail-settings.php:1981
879
+ msgid "Dashed"
880
+ msgstr "Línia discontínua"
881
+
882
+ # wpml-name: e9eeca48aa5cccacde08760c6ec9dd5a
883
+ #: includes/class-kadence-woomail-settings.php:1460
884
+ #: includes/class-kadence-woomail-settings.php:1670
885
+ #: includes/class-kadence-woomail-settings.php:1741
886
+ #: includes/class-kadence-woomail-settings.php:1982
887
+ msgid "Ridge"
888
+ msgstr "Cresta"
889
+
890
+ # wpml-name: 140ffd58f1b40c89699b95d9b28aa3e6
891
+ #: includes/class-kadence-woomail-settings.php:1469
892
+ msgid "H2 Separator Color"
893
+ msgstr "Color de separador H2"
894
+
895
+ # wpml-name: 11f4ff64c2ac94cbe397a008d3839ead
896
+ #: includes/class-kadence-woomail-settings.php:1482
897
+ msgid "H3 Settings"
898
+ msgstr "Ajustos H3"
899
+
900
+ # wpml-name: c3d0b6c1c462eb5892b99c58988e648f
901
+ #: includes/class-kadence-woomail-settings.php:1489
902
+ msgid "H3 Font Size"
903
+ msgstr "Tamany de lletra H3"
904
+
905
+ # wpml-name: 30bd1161dbb0e0c8b01429e954f6ebb1
906
+ #: includes/class-kadence-woomail-settings.php:1505
907
+ msgid "H3 Line Height"
908
+ msgstr "Alçada de línia H3"
909
+
910
+ # wpml-name: 0f9ecd3cc2176e427aaaab3d30194307
911
+ #: includes/class-kadence-woomail-settings.php:1521
912
+ msgid "H3 Font Family"
913
+ msgstr "Font H3"
914
+
915
+ # wpml-name: e48fb0cffb30706a4fa11c5894c20252
916
+ #: includes/class-kadence-woomail-settings.php:1533
917
+ msgid "H3 Font Style"
918
+ msgstr "Estil de la font H3"
919
+
920
+ # wpml-name: 52001ad0aafdcca65b6d8053cc0cb665
921
+ #: includes/class-kadence-woomail-settings.php:1548
922
+ msgid "H3 Font weight"
923
+ msgstr "Pes de la font H3"
924
+
925
+ # wpml-name: 1f02f9669470aae23790528390803ee9
926
+ #: includes/class-kadence-woomail-settings.php:1564
927
+ msgid "H3 Color"
928
+ msgstr "Color H3"
929
+
930
+ # wpml-name: 9d74bc1850d9bd60f465842532554bf8
931
+ #: includes/class-kadence-woomail-settings.php:1575
932
+ msgid "Order Table Style"
933
+ msgstr "Estil de la taula de la comanda"
934
+
935
+ # wpml-name: 9914a0ce04a7b7b6a8e39bec55064b82
936
+ #: includes/class-kadence-woomail-settings.php:1582
937
+ msgid "Light"
938
+ msgstr "Lleuger"
939
+
940
+ # wpml-name: ca9602ba1b7cb83ac430536609ded665
941
+ #: includes/class-kadence-woomail-settings.php:1587
942
+ msgid "Product Image Option"
943
+ msgstr "Opció d'imatge de producte"
944
+
945
+ # wpml-name: 1cf124095a544c1503f322881f956017
946
+ #: includes/class-kadence-woomail-settings.php:1593
947
+ msgid "Do not show"
948
+ msgstr "No mostrar"
949
+
950
+ # wpml-name: 498f79c4c5bbde77f1bceb6c86fd0f6d
951
+ #: includes/class-kadence-woomail-settings.php:1594
952
+ msgid "Show"
953
+ msgstr "Mostrar"
954
+
955
+ # wpml-name: ebf49986ce395073a9ec6de33c266a57
956
+ #: includes/class-kadence-woomail-settings.php:1599
957
+ msgid "Order Table Background color"
958
+ msgstr "Color de fons de la taula de la comanda"
959
+
960
+ # wpml-name: a10443964156b9e87c95e74c8f9baf15
961
+ #: includes/class-kadence-woomail-settings.php:1611
962
+ msgid "Padding"
963
+ msgstr "Espai"
964
+
965
+ # wpml-name: 475c80ecff56299d3527cf51af68e48c
966
+ #: includes/class-kadence-woomail-settings.php:1648
967
+ msgid "Border Color"
968
+ msgstr "Color de la vora"
969
+
970
+ # wpml-name: 21c3e4abcdab4e034e0e6bd0a6102545
971
+ #: includes/class-kadence-woomail-settings.php:1659
972
+ msgid "Border Style"
973
+ msgstr "Estil de la vora"
974
+
975
+ # wpml-name: ada056b6947c625cb3a5d9199c5b74c8
976
+ #: includes/class-kadence-woomail-settings.php:1680
977
+ msgid "Order Table Heading Style"
978
+ msgstr "Estil de la capçalera de la taula de la comanda"
979
+
980
+ # wpml-name: 8a9e64d86ed12ad40de129bc7f4683b2
981
+ #: includes/class-kadence-woomail-settings.php:1687
982
+ msgid "Split"
983
+ msgstr "Dividir"
984
+
985
+ # wpml-name: d23932546d8c02b11522fca0fe93aab4
986
+ #: includes/class-kadence-woomail-settings.php:1692
987
+ msgid "Address Box Background color"
988
+ msgstr "Color de fons de la caixa de l'adreça"
989
+
990
+ # wpml-name: 9c653c9f248eadc386e7f853789f8eef
991
+ #: includes/class-kadence-woomail-settings.php:1703
992
+ msgid "Address Box Border Width"
993
+ msgstr "Gruix de la vora de la caixa de l'adreça"
994
+
995
+ # wpml-name: 13aa67c10ec82e496cc1342ebe373e97
996
+ #: includes/class-kadence-woomail-settings.php:1719
997
+ msgid "Address Box Border Color"
998
+ msgstr "Color de la vora de la caixa de l'adreça"
999
+
1000
+ # wpml-name: 264732a51491bd19f48f0f2738b17582
1001
+ #: includes/class-kadence-woomail-settings.php:1730
1002
+ msgid "Address Box Border Style"
1003
+ msgstr "Estil de la vora de la caixa de l'adreça"
1004
+
1005
+ # wpml-name: b5b82732bfd63fc31279d7a984019c49
1006
+ #: includes/class-kadence-woomail-settings.php:1749
1007
+ msgid "Address Box Text Color"
1008
+ msgstr "Color del text de la caixa de l'adreça"
1009
+
1010
+ # wpml-name: b4ce9cdafde9607068ecf426f671c798
1011
+ #: includes/class-kadence-woomail-settings.php:1760
1012
+ msgid "Address Box Text Align"
1013
+ msgstr "Alineació del text de la caixa de l'adreça"
1014
+
1015
+ # wpml-name: cd3e807d5f870afc5624c6fee8326198
1016
+ #: includes/class-kadence-woomail-settings.php:1772
1017
+ msgid "Footer Background Placement"
1018
+ msgstr "Ubicació del fons del peu de pàgina"
1019
+
1020
+ # wpml-name: 36bb165ac6fd87ed04cdefd51e0980c2
1021
+ #: includes/class-kadence-woomail-settings.php:1778
1022
+ msgid "Inside Body Container"
1023
+ msgstr "Interior del contenidor del cos"
1024
+
1025
+ # wpml-name: e4aec1a610998713206216a6f946b9e5
1026
+ #: includes/class-kadence-woomail-settings.php:1779
1027
+ msgid "Outside Body Container"
1028
+ msgstr "Exterior del contenidor del cos"
1029
+
1030
+ # wpml-name: 33a546df940dafa4964e77acbf812cda
1031
+ #: includes/class-kadence-woomail-settings.php:1784
1032
+ msgid "Footer Background Color"
1033
+ msgstr "Color de fons del peu de pàgina"
1034
+
1035
+ # wpml-name: 6b4d793d700f92a5db7dd15cf1f9c5fe
1036
+ #: includes/class-kadence-woomail-settings.php:1795
1037
+ #: includes/class-kadence-woomail-settings.php:1912
1038
+ #: includes/class-kadence-woomail-settings.php:2060
1039
+ msgid "Top Padding"
1040
+ msgstr "Espai superior"
1041
+
1042
+ # wpml-name: 5afb5cc2d0e3967afc0aac0ac20abe5b
1043
+ #: includes/class-kadence-woomail-settings.php:1811
1044
+ #: includes/class-kadence-woomail-settings.php:1928
1045
+ #: includes/class-kadence-woomail-settings.php:2076
1046
+ msgid "Bottom Padding"
1047
+ msgstr "Espai inferior"
1048
+
1049
+ # wpml-name: 6e492be7fafc13698709bdc262b0b459
1050
+ #: includes/class-kadence-woomail-settings.php:1827
1051
+ msgid "Left/Right Padding"
1052
+ msgstr "Espai esquerra/dreta"
1053
+
1054
+ # wpml-name: b3a0e641c9ee5c09fec35eb9a3b9a832
1055
+ #: includes/class-kadence-woomail-settings.php:1843
1056
+ msgid "Footer Social Options"
1057
+ msgstr "Opcions del social del peu de pàgina"
1058
+
1059
+ # wpml-name: a260ebfebbeffdaff3b8bb437949da07
1060
+ #: includes/class-kadence-woomail-settings.php:1857
1061
+ msgid "Footer Social Title Color"
1062
+ msgstr "Color del títol del social del peu de pàgina"
1063
+
1064
+ # wpml-name: 9c558b3b3458769778e3bd84c4260b84
1065
+ #: includes/class-kadence-woomail-settings.php:1868
1066
+ msgid "Footer Social Title Font Size"
1067
+ msgstr "Tamany de la font del títol del social del peu de pàgina"
1068
+
1069
+ # wpml-name: 22cdcf3613ec1240875a8f171406fb85
1070
+ #: includes/class-kadence-woomail-settings.php:1884
1071
+ msgid "Footer Social Title Font Family"
1072
+ msgstr "Tipus de lletra del títol del social del peu de pàgina"
1073
+
1074
+ # wpml-name: 181c2605dd92bf9c97aa7fc468b999cc
1075
+ #: includes/class-kadence-woomail-settings.php:1896
1076
+ msgid "Footer Social Title Font Weight"
1077
+ msgstr "Pes de la font del títol del social del peu de pàgina"
1078
+
1079
+ # wpml-name: c8fb4f1fb73d111c1b451c5db84cec83
1080
+ #: includes/class-kadence-woomail-settings.php:1944
1081
+ msgid "Footer Social Bottom Border Width"
1082
+ msgstr "Gruix de la vora inferior del social del peu de pàgina"
1083
+
1084
+ # wpml-name: 1f76899318b0f54c87d40bef6520080d
1085
+ #: includes/class-kadence-woomail-settings.php:1960
1086
+ msgid "Footer Social Bottom Border Color"
1087
+ msgstr "Color de la vora inferior del social del peu de pàgina"
1088
+
1089
+ # wpml-name: d078484481cbce021e093a3b59e94e6a
1090
+ #: includes/class-kadence-woomail-settings.php:1971
1091
+ msgid "Footer Social Bottom Border Style"
1092
+ msgstr "Estil de la vora inferior del social del peu de pàgina"
1093
+
1094
+ # wpml-name: b14a348d14021b3f79da6be488d63253
1095
+ #: includes/class-kadence-woomail-settings.php:1990
1096
+ msgid "Text Align"
1097
+ msgstr "Alineació de text"
1098
+
1099
+ # wpml-name: 8903861290617267b361478ab7f16f31
1100
+ #: includes/class-kadence-woomail-settings.php:2049
1101
+ msgid "Text Color"
1102
+ msgstr "Color de text"
1103
+
1104
+ # wpml-name: 42e6feb7f76e910efcda54034ecc83ce
1105
+ #: includes/class-kadence-woomail-settings.php:2091
1106
+ msgid "Custom CSS"
1107
+ msgstr "CSS personalitzat"
1108
+
1109
+ # wpml-name: 6c99b94c1760e2831aeac8d2ad7d2966
1110
+ #: includes/class-kadence-woomail-settings.php:2108
1111
+ msgid "Preview Email Recipient"
1112
+ msgstr "Desinatari d'email de vista prèvia"
1113
+
1114
+ # wpml-name: a76f0bf922f75a4250be455f4d6bd7e9
1115
+ #: includes/class-kadence-woomail-settings.php:2109
1116
+ msgid "Enter recipients (comma separated) for preview emails"
1117
+ msgstr ""
1118
+ "Ingressa destinataris (separats per comes) per a emails de vista prèvia"
1119
+
1120
+ # wpml-name: 514abf986bc39bf27203494f391ac156
1121
+ #: includes/class-kadence-woomail-settings.php:2152
1122
+ #: includes/class-kadence-woomail-settings.php:2179
1123
+ msgid "New customer order"
1124
+ msgstr "Nova comanda de client"
1125
+
1126
+ # wpml-name: ba70f212819f8c25c14676424ccdf72c
1127
+ #: includes/class-kadence-woomail-settings.php:2153
1128
+ #: includes/class-kadence-woomail-settings.php:2194
1129
+ msgid "[{site_title}] New customer order ({order_number}) - {order_date}"
1130
+ msgstr "[{site_title}] Nova comanda ({order_number}) - {order_date}"
1131
+
1132
+ # wpml-name: 0ff1cc38e196e107a90532b3e8ebb65c
1133
+ #: includes/class-kadence-woomail-settings.php:2154
1134
+ msgid ""
1135
+ "You have received a subscription renewal order from {customer_full_name}. "
1136
+ "Their order is as follows:"
1137
+ msgstr ""
1138
+ "Has rebut una comanda de renovació de suscripció de {customer_full_name}. La "
1139
+ "comanda és la següent:"
1140
+
1141
+ # wpml-name: 0f9b4be6207d496fc281b0cce2eeed3b
1142
+ #: includes/class-kadence-woomail-settings.php:2155
1143
+ #: includes/class-kadence-woomail-settings.php:2181
1144
+ #: includes/class-kadence-woomail-settings.php:2186
1145
+ msgid "Thank you for your order"
1146
+ msgstr "Gràcies per la teva comanda"
1147
+
1148
+ # wpml-name: 5e82a96af83e975066e5bf7525f1281b
1149
+ #: includes/class-kadence-woomail-settings.php:2156
1150
+ #: includes/class-kadence-woomail-settings.php:2196
1151
+ #: includes/class-kadence-woomail-settings.php:2202
1152
+ msgid "Your {site_title} order receipt from {order_date}"
1153
+ msgstr "Rebut de la teva comanda a {site_title} del {order_date} "
1154
+
1155
+ # wpml-name: fd1714ab9f3d7736dbb0a0cbe1589d3f
1156
+ #: includes/class-kadence-woomail-settings.php:2157
1157
+ msgid ""
1158
+ "Your subscription renewal order has been received and is now being "
1159
+ "processed. Your order details are shown below for your reference:"
1160
+ msgstr ""
1161
+ "La teva comanda de renovació de suscripció ha estat rebuda i s'està "
1162
+ "processant. Els detalls de la teva comanda es mostren a sota per la teva "
1163
+ "referència:"
1164
+
1165
+ # wpml-name: 1b94d6661488ec210d2f8a00f186551d
1166
+ #: includes/class-kadence-woomail-settings.php:2158
1167
+ #: includes/class-kadence-woomail-settings.php:2161
1168
+ #: includes/class-kadence-woomail-settings.php:2182
1169
+ msgid "Your order is complete"
1170
+ msgstr "La teva comanda s'ha completat"
1171
+
1172
+ # wpml-name: 0553c36564a7a7692f5f9776486c1e67
1173
+ #: includes/class-kadence-woomail-settings.php:2159
1174
+ #: includes/class-kadence-woomail-settings.php:2162
1175
+ #: includes/class-kadence-woomail-settings.php:2197
1176
+ msgid "Your {site_title} order from {order_date} is complete"
1177
+ msgstr "La teva comanda a {site_title} del {order_date} s'ha completat"
1178
+
1179
+ # wpml-name: 3a698a3568a9b9d6d6b1d363f896893a
1180
+ #: includes/class-kadence-woomail-settings.php:2160
1181
+ msgid ""
1182
+ "Hi there. Your subscription renewal order with {site_title} has been "
1183
+ "completed. Your order details are shown below for your reference:"
1184
+ msgstr ""
1185
+ "Hola. La teva comanda de renovació de suscripció amb {site_title} s'ha "
1186
+ "completat. Els detalls de la teva comanda es mostren a sota per la teva "
1187
+ "referència:"
1188
+
1189
+ # wpml-name: 2bd27c28666f10a96ae9757a757859fd
1190
+ #: includes/class-kadence-woomail-settings.php:2163
1191
+ msgid ""
1192
+ "Hi there. You have successfully changed your subscription items on "
1193
+ "{site_title}. Your new order and subscription details are shown below for "
1194
+ "your reference:"
1195
+ msgstr ""
1196
+ "Hola. Has canviat els teus articles de suscripció a {site_title} amb èxit. "
1197
+ "Els detalls de la teva nova comanda i suscripció son els següents per a la "
1198
+ "teva referencia:"
1199
+
1200
+ # wpml-name: c6d0507db3b377afdf6a549def7ccb7a
1201
+ #: includes/class-kadence-woomail-settings.php:2165
1202
+ #: includes/class-kadence-woomail-settings.php:2166
1203
+ #: includes/class-kadence-woomail-settings.php:2187
1204
+ #: includes/class-kadence-woomail-settings.php:2204
1205
+ msgid "Invoice for order {order_number}"
1206
+ msgstr "Factura de la comanda {order_number}"
1207
+
1208
+ # wpml-name: 6e33dca3d0fbfd555dd381424a7425cf
1209
+ #: includes/class-kadence-woomail-settings.php:2167
1210
+ msgid ""
1211
+ "An invoice has been created for you to renew your subscription with "
1212
+ "{site_title}. To pay for this invoice please use the following link: "
1213
+ "{invoice_pay_link}"
1214
+ msgstr ""
1215
+ "Una factura s'ha creat per tu per a renovar la suscripció amb {site_title}. "
1216
+ "Per pagar aquesta factura, si us plau segueix el següent enllaç: "
1217
+ "{invoice_pay_link}"
1218
+
1219
+ # wpml-name: 3170fa9e299e5d7fef40880d40bc983a
1220
+ #: includes/class-kadence-woomail-settings.php:2168
1221
+ msgid ""
1222
+ "The automatic payment to renew your subscription with {site_title} has "
1223
+ "failed. To reactivate the subscription, please login and pay for the renewal "
1224
+ "from your account page: {invoice_pay_link}"
1225
+ msgstr ""
1226
+ "El pagament automàtic per renovar la teva suscripció amb {site_title} ha "
1227
+ "fallat. Per reactivar la suscripció, si us plau accedeix y paga la renovació "
1228
+ "des de la pàgina del teu compte: {invoice_pay_link}"
1229
+
1230
+ # wpml-name: 0c6d8ba5966e2d40d85d300b1f3e03c1
1231
+ #: includes/class-kadence-woomail-settings.php:2171
1232
+ msgid "Subscription Cancelled"
1233
+ msgstr "Suscripció cancel·lada"
1234
+
1235
+ # wpml-name: 04aeae693702007d53241118f93cb760
1236
+ #: includes/class-kadence-woomail-settings.php:2172
1237
+ msgid "[{site_title}] Subscription Cancelled"
1238
+ msgstr "[{site_title}] Suscripció cancel.lada"
1239
+
1240
+ # wpml-name: 31f92eba1222910185fa7be9fd508d9d
1241
+ #: includes/class-kadence-woomail-settings.php:2173
1242
+ msgid ""
1243
+ "A subscription belonging to {customer_full_name} has been cancelled. Their "
1244
+ "subscription's details are as follows:"
1245
+ msgstr ""
1246
+ "Una suscripció que pertany a {customer_full_name} ha estat cancelada. Els "
1247
+ "detalls de la suscripció son els següents:"
1248
+
1249
+ # wpml-name: b4f9dd9f8a24c2d6092d563a62a055f4
1250
+ #: includes/class-kadence-woomail-settings.php:2176
1251
+ msgid "Automatic payment failed for order {order_number}"
1252
+ msgstr "El pagament automàtic ha fallat per la comanda {order_number}"
1253
+
1254
+ # wpml-name: 0983dd3a874d372d632b1dd88a43e23c
1255
+ #: includes/class-kadence-woomail-settings.php:2177
1256
+ msgid "Automatic payment failed for {order_number}, we will retry {retry_time}"
1257
+ msgstr ""
1258
+ "El pagament automàtic ha fallat per {order_number}, ho tornarem a intentar "
1259
+ "{retry_time}"
1260
+
1261
+ # wpml-name: 1e11911d162f1f3ff21aebf122c6b7b4
1262
+ #: includes/class-kadence-woomail-settings.php:2180
1263
+ msgid "Cancelled order"
1264
+ msgstr "Comanda cancel·lada"
1265
+
1266
+ # wpml-name: 00ba7284de9d01146b0a0c7284bf9e67
1267
+ #: includes/class-kadence-woomail-settings.php:2183
1268
+ msgid "Order {order_number} details"
1269
+ msgstr "Detalls de la comanda {order_number}"
1270
+
1271
+ # wpml-name: d9e276d60797545ff9c2d65b5f36de95
1272
+ #: includes/class-kadence-woomail-settings.php:2184
1273
+ msgid "Your order has been partially refunded"
1274
+ msgstr "La teva comanda s'ha reemborsat parcialment"
1275
+
1276
+ # wpml-name: 4ce77f0d30eb2791acef9596321ce4f8
1277
+ #: includes/class-kadence-woomail-settings.php:2188
1278
+ msgid "Your order details"
1279
+ msgstr "Els detalls de la teva comanda"
1280
+
1281
+ # wpml-name: c15a9fc62d39166d480fe92dac448cf1
1282
+ #: includes/class-kadence-woomail-settings.php:2189
1283
+ msgid "Failed order"
1284
+ msgstr "Comanda fallida"
1285
+
1286
+ # wpml-name: cd85a4bc24b373f1abefe5f23a91791b
1287
+ #: includes/class-kadence-woomail-settings.php:2190
1288
+ msgid "Welcome to {site_title}"
1289
+ msgstr "Benvingut a {site_title}"
1290
+
1291
+ # wpml-name: c5baabbbda7a4aef5e66373b4e5bb706
1292
+ #: includes/class-kadence-woomail-settings.php:2191
1293
+ msgid "A note has been added to your order"
1294
+ msgstr "S'ha afegit una nota a la teva comanda"
1295
+
1296
+ # wpml-name: d7bfc3d4e3e894425f39c30023c8d3b3
1297
+ #: includes/class-kadence-woomail-settings.php:2192
1298
+ msgid "Password reset instructions"
1299
+ msgstr "Instruccions per a restablir la contrassenya"
1300
+
1301
+ # wpml-name: 99d14407f9a8ee13cbda80bf6940246f
1302
+ #: includes/class-kadence-woomail-settings.php:2195
1303
+ msgid "[{site_title}] Cancelled order ({order_number})"
1304
+ msgstr "[{site_title}] Comanda cancel·lada ({order_number})"
1305
+
1306
+ # wpml-name: 6bd655d4b18bd8d97bc84df5bb811e7c
1307
+ #: includes/class-kadence-woomail-settings.php:2199
1308
+ msgid "Your {site_title} order from {order_date} has been refunded"
1309
+ msgstr "La teva comanda a {site_title} del {order_date} ha estat reemborsada"
1310
+
1311
+ # wpml-name: d5dae48d04a563d3ae217c3d8515284d
1312
+ #: includes/class-kadence-woomail-settings.php:2200
1313
+ msgid "Your {site_title} order from {order_date} has been partially refunded"
1314
+ msgstr ""
1315
+ "La teva comanda a {site_title} del {order_date} ha estat parcialment "
1316
+ "reemborsada"
1317
+
1318
+ # wpml-name: 243fd32985c3f50ceefaccaad5364e76
1319
+ #: includes/class-kadence-woomail-settings.php:2205
1320
+ msgid "Your {site_title} order from {order_date}"
1321
+ msgstr "La teva comanda a {site_title} del {order_date}"
1322
+
1323
+ # wpml-name: ebba721d55f01990b3ee070d311b08d9
1324
+ #: includes/class-kadence-woomail-settings.php:2207
1325
+ msgid "[{site_title}] Failed order ({order_number})"
1326
+ msgstr "[{site_title}] Comanda fallida ({order_number})"
1327
+
1328
+ # wpml-name: 749ddce2a2c94162a11592bacbaa7438
1329
+ #: includes/class-kadence-woomail-settings.php:2208
1330
+ msgid "Your account on {site_title}"
1331
+ msgstr "El teu compte a {site_title}"
1332
+
1333
+ # wpml-name: 14b5c382ab9332b0fcbdedfac208affa
1334
+ #: includes/class-kadence-woomail-settings.php:2209
1335
+ msgid "Note added to your {site_title} order from {order_date}"
1336
+ msgstr "Nota afegida a la teva comanda a {site_title} del {order_date}"
1337
+
1338
+ # wpml-name: 7b7c0c42697dd652024bbb6bb6761a26
1339
+ #: includes/class-kadence-woomail-settings.php:2210
1340
+ msgid "Password reset for {site_title}"
1341
+ msgstr "Restablir contrassenya a {site_title}"
1342
+
1343
+ # wpml-name: af7fc68260856936a7002fb260ac6047
1344
+ #: includes/class-kadence-woomail-settings.php:2212
1345
+ msgid ""
1346
+ "You have received an order from {customer_full_name}. The order is as "
1347
+ "follows:"
1348
+ msgstr ""
1349
+ "Has rebut una comanda de {customer_full_name}. La comanda és la següent:"
1350
+
1351
+ # wpml-name: 686941c1f1e2f28750ba2895905a752b
1352
+ #: includes/class-kadence-woomail-settings.php:2213
1353
+ msgid ""
1354
+ "The order {order_number} from {customer_full_name} has been cancelled. The "
1355
+ "order was as follows:"
1356
+ msgstr ""
1357
+ "La comanda {order_number} de {customer_full_name} ha estat cancelada. La "
1358
+ "comanda era la següent:"
1359
+
1360
+ # wpml-name: 21fee85efed162ad54e430d964fc6576
1361
+ #: includes/class-kadence-woomail-settings.php:2214
1362
+ msgid ""
1363
+ "Your order has been received and is now being processed. Your order details "
1364
+ "are shown below for your reference:"
1365
+ msgstr ""
1366
+ "La teva comanda s'ha rebut i s'està processant. Per a la teva informació, "
1367
+ "els detalls de la teva comanda son els següents:"
1368
+
1369
+ # wpml-name: 19563e20c4d2475e1b6bb60c79eb2465
1370
+ #: includes/class-kadence-woomail-settings.php:2215
1371
+ msgid ""
1372
+ "Hi there. Your recent order on {site_title} has been completed. Your order "
1373
+ "details are shown below for your reference:"
1374
+ msgstr ""
1375
+ "Hola. La teva recent comanda a {site_title} ha estat completada. Els detalls "
1376
+ "de la teva comanda es mostren a continuació per a la teva referencia:"
1377
+
1378
+ # wpml-name: ce146d5bfb4236f5b62ecb33f1b2c1da
1379
+ #: includes/class-kadence-woomail-settings.php:2217
1380
+ msgid "Hi there. Your order on {site_title} has been refunded."
1381
+ msgstr "Hola. La teva comanda a {site_title} ha estat reemborsada."
1382
+
1383
+ # wpml-name: 11e373c3f2a4f422766e7e41dbca169c
1384
+ #: includes/class-kadence-woomail-settings.php:2218
1385
+ msgid "Hi there. Your order on {site_title} has been partially refunded."
1386
+ msgstr "Hola. La teva comanda a {site_title} ha estat parcialment reemborsada."
1387
+
1388
+ # wpml-name: 5726fa9893e1e7ef20418ad5653a6c93
1389
+ #: includes/class-kadence-woomail-settings.php:2220
1390
+ msgid ""
1391
+ "Your order is on-hold until we confirm payment has been received. Your order "
1392
+ "details are shown below for your reference:"
1393
+ msgstr ""
1394
+ "La teva comanda està a l'espera fins que confirmem que hem rebut el "
1395
+ "pagament. Els detalls de la teva comanda es mostren a sota com a referència:"
1396
+
1397
+ # wpml-name: b1182112ed05903e21b0349e27533848
1398
+ #: includes/class-kadence-woomail-settings.php:2222
1399
+ msgid "An order has been created for you on {site_title}. {invoice_pay_link}"
1400
+ msgstr "Una comanda s'ha creat per tu a {site_title}. {invoice_pay_link}"
1401
+
1402
+ # wpml-name: b8c68fd12e1313de3175d9a060c28eca
1403
+ #: includes/class-kadence-woomail-settings.php:2224
1404
+ msgid ""
1405
+ "Payment for order {order_number} from {customer_full_name} has failed. The "
1406
+ "order was as follows:"
1407
+ msgstr ""
1408
+ "El pagament de la comanda {order_number} de {customer_full_name} ha fallat. "
1409
+ "La comanda era la següent:"
1410
+
1411
+ # wpml-name: 850109e44c539eaecc12ddf54cf8e166
1412
+ #: includes/class-kadence-woomail-settings.php:2225
1413
+ msgid ""
1414
+ "Thanks for creating an account on {site_title}. Your username is "
1415
+ "{customer_username}"
1416
+ msgstr ""
1417
+ "Gràcies per crear un compte a {site_title}. El teu nom d'usuari és "
1418
+ "{customer_username}"
1419
+
1420
+ # wpml-name: 4514f1138007fbae767b3bf1de8a911e
1421
+ #: includes/class-kadence-woomail-settings.php:2226
1422
+ msgid "Hello, a note has just been added to your order:"
1423
+ msgstr "Hola, una nota s'acaba d'afegir a la teva comanda:"
1424
+
1425
+ # wpml-name: 32ca7a7844982117356637889b5f22d5
1426
+ #: includes/class-kadence-woomail-settings.php:2227
1427
+ #, fuzzy
1428
+ #| msgid ""
1429
+ #| "Someone requested that the password be reset for the following account:\n"
1430
+ #| "\n"
1431
+ #| "Username: {customer_username}\n"
1432
+ #| "\n"
1433
+ #| "If this was a mistake, just ignore this email and nothing will happen.\n"
1434
+ #| "\n"
1435
+ #| "To reset your password, visit the following address:\n"
1436
+ msgid ""
1437
+ "Someone requested that the password be reset for the following account:\n"
1438
+ "\n"
1439
+ "Username: {customer_username}\n"
1440
+ "\n"
1441
+ "If this was a mistake, just ignore this email and nothing will happen.\n"
1442
+ "\n"
1443
+ "To reset your password, visit the following address:"
1444
+ msgstr ""
1445
+ "Algú ha demanat restablir la contrassenya pel següent compte:\n"
1446
+ "\n"
1447
+ "Nom d'usuari: {customer_username}\n"
1448
+ "\n"
1449
+ "Si això és un error, ignora aquest email i no passarà res.\n"
1450
+ "\n"
1451
+ "Per restablir la teva contrassenya, visita la següent adreça:\n"
1452
+
1453
+ #: includes/class-kadence-woomail-settings.php:2364
1454
+ msgid "none"
1455
+ msgstr ""
1456
+
1457
+ #: includes/class-kadence-woomail-settings.php:2365
1458
+ msgid "hidden"
1459
+ msgstr ""
1460
+
1461
+ # wpml-name: 90c09393a4c0970bc9a6703ad527781c
1462
+ #: includes/class-kadence-woomail-settings.php:2366
1463
+ #, fuzzy
1464
+ #| msgid "Dotted"
1465
+ msgid "dotted"
1466
+ msgstr "De punts"
1467
+
1468
+ # wpml-name: eb656e41b6da91494775ecf47a51da91
1469
+ #: includes/class-kadence-woomail-settings.php:2367
1470
+ #, fuzzy
1471
+ #| msgid "Dashed"
1472
+ msgid "dashed"
1473
+ msgstr "Línia discontínua"
1474
+
1475
+ # wpml-name: e41480b6bbfbf7407974a88d3d34f4fa
1476
+ #: includes/class-kadence-woomail-settings.php:2368
1477
+ #, fuzzy
1478
+ #| msgid "Solid"
1479
+ msgid "solid"
1480
+ msgstr "Sòlida"
1481
+
1482
+ # wpml-name: d909d38d705ce75386dd86e611a82f5b
1483
+ #: includes/class-kadence-woomail-settings.php:2369
1484
+ #, fuzzy
1485
+ #| msgid "Double"
1486
+ msgid "double"
1487
+ msgstr "Doble"
1488
+
1489
+ # wpml-name: a5d7f2d1b78f9222563004a41a616334
1490
+ #: includes/class-kadence-woomail-settings.php:2370
1491
+ #, fuzzy
1492
+ #| msgid "Groove"
1493
+ msgid "groove"
1494
+ msgstr "Groove"
1495
+
1496
+ # wpml-name: e9eeca48aa5cccacde08760c6ec9dd5a
1497
+ #: includes/class-kadence-woomail-settings.php:2371
1498
+ #, fuzzy
1499
+ #| msgid "Ridge"
1500
+ msgid "ridge"
1501
+ msgstr "Cresta"
1502
+
1503
+ #: includes/class-kadence-woomail-settings.php:2372
1504
+ msgid "inset"
1505
+ msgstr ""
1506
+
1507
+ #: includes/class-kadence-woomail-settings.php:2373
1508
+ msgid "outset"
1509
+ msgstr ""
1510
+
1511
+ # wpml-name: 945d5e233cf7d6240f6b783b36a374ff
1512
+ #: includes/class-kadence-woomail-settings.php:2385
1513
+ #: includes/class-kadence-woomail-settings.php:2393
1514
+ msgid "Left"
1515
+ msgstr "Esquerra"
1516
+
1517
+ # wpml-name: 4f1f6016fc9f3f2353c0cc7c67b292bd
1518
+ #: includes/class-kadence-woomail-settings.php:2386
1519
+ #: includes/class-kadence-woomail-settings.php:2394
1520
+ msgid "Center"
1521
+ msgstr "Centrar"
1522
+
1523
+ # wpml-name: 92b09c7c48c520c3c55e497875da437c
1524
+ #: includes/class-kadence-woomail-settings.php:2387
1525
+ #: includes/class-kadence-woomail-settings.php:2395
1526
+ msgid "Right"
1527
+ msgstr "Dreta"
1528
+
1529
+ # wpml-name: 4b425d212a2e7b36c38703bfdcd57823
1530
+ #: includes/class-kadence-woomail-settings.php:2388
1531
+ msgid "Justify"
1532
+ msgstr "Justificar"
1533
+
1534
+ # wpml-name: a2a3fce21d38346fb221e2a9ee6ae191
1535
+ #: includes/class-kadence-woomail-settings.php:2408
1536
+ msgid "Mockup Order"
1537
+ msgstr "Comanda de prova"
1538
+
1539
+ # wpml-name: 9c028313ab8c2b306e5de1d7e5319b19
1540
+ #: includes/class-kadence-woomail-woo.php:60
1541
+ msgid "Woocommerce Email Designer"
1542
+ msgstr "Woocommerce Email Designer"
1543
+
1544
+ # wpml-name: 5581b42a87d672ec8a4c582ea33f0053
1545
+ #: includes/class-kadence-woomail-woo.php:90
1546
+ msgid "Customize WooCommerce Emails"
1547
+ msgstr "Personalitza els emails de WooCommerce"
1548
+
1549
+ # wpml-name: 7f33a274da7b54a1bcaf66373b4a6abe
1550
+ #: includes/class-kadence-woomail-woo.php:94
1551
+ #: includes/class-kadence-woomail-woo.php:95
1552
+ msgid "Open Woocommerce Email Designer"
1553
+ msgstr "Obrir WooCommerce Email Designer"
1554
+
1555
+ # wpml-name: b6b173af15c9ae29666c1ab6f8fae9fd
1556
+ #: includes/class-kadence-woomail-woo.php:98
1557
+ #, php-format
1558
+ msgid ""
1559
+ "Make Woocommerce Emails match your brand. <a href=\"%s\">Kadence Woocommerce "
1560
+ "Email Designer</a> plugin by <a href=\"%s\">Kadence Themes</a>."
1561
+ msgstr ""
1562
+ "Fes que els emails de WooCommerce encaixin amb la teva marca. <a href=\"%s"
1563
+ "\">Kadence Woocommerce Email Designer</a> extensió per <a href=\"%s"
1564
+ "\">Kadence Themes</a>."
1565
+
1566
+ # wpml-name: c66669dad372a916b1968872348fce8d
1567
+ #: kadence-woocommerce-email-designer.php:130
1568
+ msgid ""
1569
+ "Kadence Woocommerce Email Designer requires WooCommerce to be active to work"
1570
+ msgstr ""
1571
+ "Kadence Woocommerce Email Designer requereix, per a poder funcionar, que "
1572
+ "WooCommerce estigui actiu"
1573
+
1574
+ # wpml-name: 15d5deb1c8d1f58f30b8fa83124ddfe2
1575
+ #: kadence-woocommerce-email-designer.php:227
1576
+ msgid "Pay for this order"
1577
+ msgstr "Pagar aquesta comanda"
1578
+
1579
+ #: kadence-woocommerce-email-designer.php:235
1580
+ #: kadence-woocommerce-email-designer.php:239
1581
+ msgid "Pay Now &raquo;"
1582
+ msgstr ""
1583
+
1584
+ # wpml-name: f44bb0cc9844088b32b5daddd0b2c6ae
1585
+ #: kadence-woocommerce-email-designer.php:384
1586
+ #: kadence-woocommerce-email-designer.php:385
1587
+ msgid "Email Customizer"
1588
+ msgstr "Personalitzador de correu electrònic"
1589
+
1590
+ # wpml-name: dd1833bf385299e78e464deecb9ca5c7
1591
+ #: kadence-woocommerce-email-designer.php:398
1592
+ msgid "Open Email Designer"
1593
+ msgstr "Obrir dissenyador d'emai"
1594
+
1595
+ # wpml-name: dd1833bf385299e78e464deecb9ca5c7
1596
+ #: preview.php:30
1597
+ #, fuzzy
1598
+ #| msgid "Open Email Designer"
1599
+ msgid "Email Designer"
1600
+ msgstr "Obrir dissenyador d'emai"
1601
+
1602
+ # wpml-name: 0c6d8ba5966e2d40d85d300b1f3e03c1
1603
+ #: templates/woo/emails/cancelled-subscription.php:34
1604
+ #: templates/woo/emails/subscription-info.php:24
1605
+ #, fuzzy
1606
+ #| msgid "Subscription Cancelled"
1607
+ msgid "Subscription"
1608
+ msgstr "Suscripció cancel·lada"
1609
+
1610
+ # wpml-name: 3601146c4e948c32b6424d2c0a7f0118
1611
+ #: templates/woo/emails/cancelled-subscription.php:35
1612
+ #, fuzzy
1613
+ #| msgid "Price"
1614
+ msgctxt "table headings in notification email"
1615
+ msgid "Price"
1616
+ msgstr "Preu"
1617
+
1618
+ # wpml-name: f4d5b114119bfdbdc5f3d9472a46fc7b
1619
+ #: templates/woo/emails/cancelled-subscription.php:36
1620
+ #, fuzzy
1621
+ #| msgid "Order date:"
1622
+ msgctxt "table heading"
1623
+ msgid "Last Order Date"
1624
+ msgstr "Data de la comanda:"
1625
+
1626
+ #: templates/woo/emails/cancelled-subscription.php:37
1627
+ msgctxt "table headings in notification email"
1628
+ msgid "End of Prepaid Term"
1629
+ msgstr ""
1630
+
1631
+ #: templates/woo/emails/cancelled-subscription.php:54
1632
+ msgid "-"
1633
+ msgstr ""
1634
+
1635
+ # wpml-name: 0c6d8ba5966e2d40d85d300b1f3e03c1
1636
+ #: templates/woo/emails/customer-completed-switch-order.php:34
1637
+ #, fuzzy
1638
+ #| msgid "Subscription Cancelled"
1639
+ msgid "New Subscription Details"
1640
+ msgstr "Suscripció cancel·lada"
1641
+
1642
+ # wpml-name: 455c027603e22e1c79c88ec89d03ba7a
1643
+ #: templates/woo/emails/customer-new-account.php:40
1644
+ #, php-format
1645
+ msgid "Your password has been automatically generated: %s"
1646
+ msgstr "La teva contrassenya s'ha generat automàticament: %s"
1647
+
1648
+ # wpml-name: 4fa4f36120760e5c358e0bfe7237aa24
1649
+ #: templates/woo/emails/customer-new-account.php:44
1650
+ #, php-format
1651
+ msgid ""
1652
+ "You can access your account area to view your orders and change your "
1653
+ "password here: %s."
1654
+ msgstr ""
1655
+ "Pots accedir al teu compte per a veure les teves comandes i canviar la teva "
1656
+ "contrassenya aquí: %s."
1657
+
1658
+ # wpml-name: 6f4226a6910726a00e1289693b892332
1659
+ #: templates/woo/emails/customer-note.php:41
1660
+ msgid "For your reference, your order details are shown below."
1661
+ msgstr ""
1662
+ "Per a la teva referencia, els detalls de la teva comanda es mostren a sota."
1663
+
1664
+ # wpml-name: f007e26d5cfa456551c270f3944da262
1665
+ #: templates/woo/emails/customer-reset-password.php:38
1666
+ msgid "Click here to reset your password"
1667
+ msgstr "Clica aquí per a restablir la teva contrassenya"
1668
+
1669
+ # wpml-name: 1fbc7e5f1b92c7ec072397b59a0bb5da
1670
+ #: templates/woo/emails/email-addresses.php:35
1671
+ msgid "Billing address"
1672
+ msgstr "Adreça de facturació"
1673
+
1674
+ # wpml-name: 382b0f5185773fa0f67a8ed8056c7759
1675
+ #: templates/woo/emails/email-addresses.php:38
1676
+ msgid "N/A"
1677
+ msgstr "N/A"
1678
+
1679
+ # wpml-name: 0c458988127eb2150776881e2ef3f0c4
1680
+ #: templates/woo/emails/email-addresses.php:49
1681
+ msgid "Shipping address"
1682
+ msgstr "Adreça d'enviament"
1683
+
1684
+ # wpml-name: ed616fc7d3ad764449f6146bca1ad05d
1685
+ #: templates/woo/emails/email-customer-details.php:34
1686
+ msgid "Customer details"
1687
+ msgstr "Detalls del client"
1688
+
1689
+ # wpml-name: c20c35ef53bf1b70789ce94e66800147
1690
+ #: templates/woo/emails/email-downloads.php:33
1691
+ msgid "Downloads"
1692
+ msgstr "Descàrregues"
1693
+
1694
+ # wpml-name: 6e7b34fa59e1bd229b207892956dc41c
1695
+ #: templates/woo/emails/email-downloads.php:66
1696
+ msgid "Never"
1697
+ msgstr "Mai"
1698
+
1699
+ # wpml-name: c5c8ac6bbc6d7f5c95d0a888527554d3
1700
+ #: templates/woo/emails/email-order-details.php:40
1701
+ msgid "Order Details"
1702
+ msgstr "Detalls de la comanda"
1703
+
1704
+ # wpml-name: 0a5816f72a20c5bccfd3ba1b4666041c
1705
+ #. translators: %s: Order ID.
1706
+ #: templates/woo/emails/email-order-details.php:53
1707
+ #, php-format
1708
+ msgid "Order number: %s"
1709
+ msgstr "Nombre de comanda: %s"
1710
+
1711
+ # wpml-name: f4d5b114119bfdbdc5f3d9472a46fc7b
1712
+ #: templates/woo/emails/email-order-details.php:58
1713
+ msgid "Order date:"
1714
+ msgstr "Data de la comanda:"
1715
+
1716
+ # wpml-name: 42a4da30e8688c72e08f7d6c8126380a
1717
+ #. translators: %s: Order ID.
1718
+ #: templates/woo/emails/email-order-details.php:73
1719
+ #, php-format
1720
+ msgid "Order #%s"
1721
+ msgstr "Comanda #%s"
1722
+
1723
+ # wpml-name: deb10517653c255364175796ace3553f
1724
+ #: templates/woo/emails/email-order-details.php:82
1725
+ msgid "Product"
1726
+ msgstr "Producte"
1727
+
1728
+ # wpml-name: 694e8d1f2ee056f98ee488bdc4982d73
1729
+ #: templates/woo/emails/email-order-details.php:83
1730
+ msgid "Quantity"
1731
+ msgstr "Quantitat"
1732
+
1733
+ # wpml-name: 3601146c4e948c32b6424d2c0a7f0118
1734
+ #: templates/woo/emails/email-order-details.php:84
1735
+ msgid "Price"
1736
+ msgstr "Preu"
1737
+
1738
+ # wpml-name: fc9d3df613063ee57906c461320744e2
1739
+ #: templates/woo/emails/email-order-details.php:117
1740
+ msgid "Note:"
1741
+ msgstr "Nota:"
1742
+
1743
+ # wpml-name: 0c6d8ba5966e2d40d85d300b1f3e03c1
1744
+ #: templates/woo/emails/subscription-info.php:19
1745
+ #, fuzzy
1746
+ #| msgid "Subscription Cancelled"
1747
+ msgid "Subscription Information:"
1748
+ msgstr "Suscripció cancel·lada"
1749
+
1750
+ #: templates/woo/emails/subscription-info.php:25
1751
+ msgctxt "table heading"
1752
+ msgid "Start Date"
1753
+ msgstr ""
1754
+
1755
+ #: templates/woo/emails/subscription-info.php:26
1756
+ msgctxt "table heading"
1757
+ msgid "End Date"
1758
+ msgstr ""
1759
+
1760
+ # wpml-name: 3601146c4e948c32b6424d2c0a7f0118
1761
+ #: templates/woo/emails/subscription-info.php:27
1762
+ #, fuzzy
1763
+ #| msgid "Price"
1764
+ msgctxt "table heading"
1765
+ msgid "Price"
1766
+ msgstr "Preu"
1767
+
1768
+ #: templates/woo/emails/subscription-info.php:33
1769
+ #, php-format
1770
+ msgctxt "subscription number in email table. (eg: #106)"
1771
+ msgid "#%s"
1772
+ msgstr ""
1773
+
1774
+ # wpml-name: 1e11911d162f1f3ff21aebf122c6b7b4
1775
+ #: templates/woo/emails/subscription-info.php:35
1776
+ #, fuzzy
1777
+ #| msgid "Cancelled order"
1778
+ msgctxt "Used as end date for an indefinite subscription"
1779
+ msgid "When Cancelled"
1780
+ msgstr "Comanda cancel·lada"
1781
+
1782
+ # wpml-name: b0019d9bc76b51b9510ca0d022c3a4ab
1783
+ #~ msgid "1.0.6"
1784
+ #~ msgstr "1.0.6"
1785
+
1786
+ # wpml-name: f63163cdb1493c95a036f8830d0132c5
1787
+ #~ msgid "1.0.5"
1788
+ #~ msgstr "1.0.5"
1789
+
1790
+ # wpml-name: f5cb8dafa43be95003ba8c04160a3764
1791
+ #~ msgid "http://kadencethemes.com/"
1792
+ #~ msgstr "http://kadencethemes.com/"
1793
+
1794
+ # wpml-name: 22ccb45d4c600ed0e52f5f937c69a75e
1795
+ #~ msgid "Kadence Themes"
1796
+ #~ msgstr "Kadence Themes"
1797
+
1798
+ # wpml-name: ecf5d72c80ee235073147e2a86231f8c
1799
+ #~ msgid ""
1800
+ #~ "Customize the default woocommerce email templates design and text through "
1801
+ #~ "the native WordPress customizer. Preview emails and send test emails."
1802
+ #~ msgstr ""
1803
+ #~ "Personalitza el disseny i el text de les plantilles d'email per defecte "
1804
+ #~ "de woocommerce mitjançant el personalitzador natiu de WordPress. "
1805
+ #~ "Previsualitza emails i envia emails de prova."
1806
+
1807
+ # wpml-name: 892958c963408baa6d112833b24b5755
1808
+ #~ msgid "Kadence WooCommerce Email Designer"
1809
+ #~ msgstr "Kadence Woocommerce Email Designer"
languages/kadence-woocommerce-email-designer-ro_RO.mo ADDED
Binary file
languages/kadence-woocommerce-email-designer-ro_RO.po ADDED
@@ -0,0 +1,21002 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Kadence WooCommerce Email Designer\n"
4
+ "POT-Creation-Date: 2018-09-26 11:59-0600\n"
5
+ "PO-Revision-Date: 2018-10-29 12:40-0600\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: \n"
8
+ "Language: ro\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==0 || (n!=1 && n%100>=1 && n"
13
+ "%100<=19) ? 1 : 2);\n"
14
+ "X-Generator: Poedit 2.1.1\n"
15
+ "X-Poedit-KeywordsList: __;_e;esc_html__;esc_html_e;esc_attr__;esc_attr_e;"
16
+ "_ex:1,2c;_n:1,2;esc_attr_x:1,2c;_x:1,2c;esc_html_x:1,2c\n"
17
+ "X-Poedit-Basepath: ..\n"
18
+ "X-Poedit-SearchPath-0: .\n"
19
+
20
+ #: includes/class-customizer-kwdimportexport-control.php:16
21
+ #: includes/class-customizer-kwdimportexport-control.php:21
22
+ msgid "Export"
23
+ msgstr "Export"
24
+
25
+ #: includes/class-customizer-kwdimportexport-control.php:19
26
+ msgid ""
27
+ "Click the button below to export the customization settings for this plugin."
28
+ msgstr ""
29
+
30
+ #: includes/class-customizer-kwdimportexport-control.php:26
31
+ #: includes/class-customizer-kwdimportexport-control.php:36
32
+ msgid "Import"
33
+ msgstr "Import"
34
+
35
+ #: includes/class-customizer-kwdimportexport-control.php:29
36
+ msgid "Upload a file to import customization settings for this plugin."
37
+ msgstr ""
38
+
39
+ #: includes/class-customizer-kwdimportexport-control.php:35
40
+ msgid "Uploading..."
41
+ msgstr ""
42
+
43
+ #: includes/class-customizer-kwdsendemail-control.php:21
44
+ msgid "Settings must be saved to send preview email."
45
+ msgstr ""
46
+
47
+ #: includes/class-customizer-kwdsendemail-control.php:22
48
+ #, fuzzy
49
+ #| msgid "Email"
50
+ msgid "Send Email"
51
+ msgstr "Email"
52
+
53
+ #: includes/class-customizer-kwdsendemail-control.php:23
54
+ msgid ""
55
+ "Some emails will not work correctly with the mockup order. It is best to use "
56
+ "a real order for sending preview emails."
57
+ msgstr ""
58
+
59
+ #: includes/class-customizer-kwdtemplateload-control.php:17
60
+ #: includes/class-customizer-kwdtemplateload-control.php:31
61
+ #, fuzzy
62
+ #| msgid "Templates"
63
+ msgid "Load Template"
64
+ msgstr "Șabloane"
65
+
66
+ #: includes/class-customizer-kwdtemplateload-control.php:30
67
+ msgid "Loading and Saving..."
68
+ msgstr ""
69
+
70
+ #: includes/class-customizer-repeater-control.php:29
71
+ #, fuzzy
72
+ #| msgid "Add new"
73
+ msgid "Add new field"
74
+ msgstr "Adaugă nou"
75
+
76
+ #: includes/class-customizer-repeater-control.php:34
77
+ #, fuzzy
78
+ #| msgid "Customer created"
79
+ msgid "Customizer Repeater"
80
+ msgstr "Client creat"
81
+
82
+ #: includes/class-customizer-repeater-control.php:201
83
+ #: includes/class-customizer-repeater-control.php:253
84
+ msgid "Title"
85
+ msgstr "Titlu"
86
+
87
+ #: includes/class-customizer-repeater-control.php:208
88
+ #: includes/class-customizer-repeater-control.php:261
89
+ msgid "Link"
90
+ msgstr ""
91
+
92
+ #: includes/class-customizer-repeater-control.php:222
93
+ #: includes/class-customizer-repeater-control.php:269
94
+ #, fuzzy
95
+ #| msgid "Delete item"
96
+ msgid "Delete field"
97
+ msgstr "Șterge elementul"
98
+
99
+ #: includes/class-customizer-repeater-control.php:310
100
+ #, fuzzy
101
+ #| msgid "Choose an action..."
102
+ msgid "Choose a Bundled Icon"
103
+ msgstr "Alege o acțiune..."
104
+
105
+ #: includes/class-customizer-repeater-control.php:332
106
+ #: includes/class-customizer-repeater-control.php:346
107
+ #, fuzzy
108
+ #| msgid "Customer download log"
109
+ msgid "Custom Upload Icon"
110
+ msgstr "Jurnal de descărcare client"
111
+
112
+ #: includes/class-customizer-repeater-control.php:335
113
+ #, fuzzy
114
+ #| msgid "Upload an image"
115
+ msgid "Upload Image"
116
+ msgstr "Încarcă o imagine"
117
+
118
+ #: includes/class-customizer-repeater-control.php:342
119
+ msgid "Social Image Source"
120
+ msgstr ""
121
+
122
+ #: includes/class-customizer-repeater-control.php:345
123
+ msgid "Bundled Icon"
124
+ msgstr ""
125
+
126
+ #: includes/class-customizer-repeater-control.php:347
127
+ #: includes/class-kadence-woomail-settings.php:1382
128
+ #: includes/class-kadence-woomail-settings.php:1423
129
+ msgid "None"
130
+ msgstr "Niciuna"
131
+
132
+ #: includes/class-customizer-repeater-control.php:354
133
+ msgid "Bundled Icon Color"
134
+ msgstr ""
135
+
136
+ #: includes/class-customizer-repeater-control.php:357
137
+ msgid "Black"
138
+ msgstr ""
139
+
140
+ #: includes/class-customizer-repeater-control.php:358
141
+ msgid "White"
142
+ msgstr ""
143
+
144
+ #: includes/class-customizer-repeater-control.php:359
145
+ msgid "Gray"
146
+ msgstr ""
147
+
148
+ #: includes/class-kadence-woomail-customizer.php:110
149
+ msgid "Save"
150
+ msgstr "Salvează"
151
+
152
+ #: includes/class-kadence-woomail-customizer.php:112
153
+ #, fuzzy
154
+ #| msgid "Save"
155
+ msgid "Saved"
156
+ msgstr "Salvează"
157
+
158
+ #: includes/class-kadence-woomail-customizer.php:165
159
+ #, fuzzy
160
+ #| msgid "WooCommerce pages"
161
+ msgid "WooCommerce Emails"
162
+ msgstr "Pagini WooCommerce"
163
+
164
+ #: includes/class-kadence-woomail-customizer.php:272
165
+ msgid "Reset"
166
+ msgstr "Resetează"
167
+
168
+ #: includes/class-kadence-woomail-customizer.php:273
169
+ #, fuzzy
170
+ #| msgid "WooCommerce pages"
171
+ msgid "Woocommerce Emails"
172
+ msgstr "Pagini WooCommerce"
173
+
174
+ #: includes/class-kadence-woomail-customizer.php:274
175
+ #, fuzzy
176
+ #| msgid "Are you sure you want to delete this template file?"
177
+ msgid "Are you sure you want to send an email?"
178
+ msgstr "Ești sigur că vrei să ștergi acest șablon?"
179
+
180
+ #: includes/class-kadence-woomail-customizer.php:275
181
+ #, fuzzy
182
+ #| msgid "Email type"
183
+ msgid "Email Sent!"
184
+ msgstr "Tip de email"
185
+
186
+ #: includes/class-kadence-woomail-customizer.php:276
187
+ msgid "Email failed, make sure you have a working email server for your site."
188
+ msgstr ""
189
+
190
+ #: includes/class-kadence-woomail-customizer.php:277
191
+ #, fuzzy
192
+ #| msgid "Are you sure you want to remove the selected items?"
193
+ msgid ""
194
+ "Are you sure you want to reset all changes made to your WooCommerce emails?"
195
+ msgstr "Sigur vrei să înlături elementele selectate?"
196
+
197
+ #: includes/class-kadence-woomail-customizer.php:278
198
+ msgid ""
199
+ "<p>Use native WordPress Customizer to make Woocommerce emails match your "
200
+ "brand.</p>"
201
+ msgstr ""
202
+
203
+ #: includes/class-kadence-woomail-customizer.php:278
204
+ #, php-format
205
+ msgid ""
206
+ "<a href=\"%s\">Kadence Woocommerce Email Designer</a> plugin by <a href=\"%s"
207
+ "\">Kadence Themes</a>."
208
+ msgstr ""
209
+
210
+ #: includes/class-kadence-woomail-customizer.php:283
211
+ #, fuzzy
212
+ #| msgid "Please select some items."
213
+ msgid "Please choose a file to import."
214
+ msgstr "Te rugăm selectează câteva produse."
215
+
216
+ #: includes/class-kadence-woomail-customizer.php:284
217
+ msgid ""
218
+ "WARNING: This will override all of your current settings. Are you sure you "
219
+ "want to do that? We suggest geting an export of your current settings incase "
220
+ "you want to revert back."
221
+ msgstr ""
222
+
223
+ #: includes/class-kadence-woomail-import-export.php:211
224
+ #, fuzzy
225
+ #| msgid "Error processing refund. Please try again."
226
+ msgid "Error importing settings! Please try again."
227
+ msgstr "Eroare la procesarea rambursării. Te rog încearcă din nou."
228
+
229
+ #: includes/class-kadence-woomail-import-export.php:224
230
+ #: includes/class-kadence-woomail-import-export.php:228
231
+ msgid ""
232
+ "Error importing settings! Please check that you uploaded a customizer export "
233
+ "file."
234
+ msgstr ""
235
+
236
+ #: includes/class-kadence-woomail-import-export.php:232
237
+ msgid ""
238
+ "Error importing settings! The settings you uploaded are not for the Kadence "
239
+ "Woomail Designer."
240
+ msgstr ""
241
+
242
+ #: includes/class-kadence-woomail-import-export.php:293
243
+ msgid "Error importing settings! The template you selected is not found."
244
+ msgstr ""
245
+
246
+ #: includes/class-kadence-woomail-import-export.php:297
247
+ #: includes/class-kadence-woomail-import-export.php:301
248
+ msgid "Error importing settings! The template you selected is not valid."
249
+ msgstr ""
250
+
251
+ #: includes/class-kadence-woomail-preview.php:231
252
+ msgid "Hello! This is an example note"
253
+ msgstr ""
254
+
255
+ #: includes/class-kadence-woomail-preview.php:304
256
+ msgid ""
257
+ "This email type can not be previewed because it links with a subscription. "
258
+ "We are working on it."
259
+ msgstr ""
260
+
261
+ #: includes/class-kadence-woomail-preview.php:351
262
+ msgid ""
263
+ "An error occurred trying to load this email type. Make sure this email type "
264
+ "is enabled or please try another type."
265
+ msgstr ""
266
+
267
+ #: includes/class-kadence-woomail-settings.php:79
268
+ #, fuzzy
269
+ #| msgid "Header image"
270
+ msgid "Header"
271
+ msgstr "Imagine antet"
272
+
273
+ #: includes/class-kadence-woomail-settings.php:85
274
+ #, fuzzy
275
+ #| msgid "Content type"
276
+ msgid "Content"
277
+ msgstr "Tip de conținut"
278
+
279
+ #: includes/class-kadence-woomail-settings.php:91
280
+ #, fuzzy
281
+ #| msgid "Footer text"
282
+ msgid "Footer"
283
+ msgstr "Text subsol"
284
+
285
+ #: includes/class-kadence-woomail-settings.php:113
286
+ #, fuzzy
287
+ #| msgid "Templates"
288
+ msgid "Prebuilt Templates"
289
+ msgstr "Șabloane"
290
+
291
+ #: includes/class-kadence-woomail-settings.php:117
292
+ #, fuzzy
293
+ #| msgid "Email type"
294
+ msgid "Email Type and Text"
295
+ msgstr "Tip de email"
296
+
297
+ #: includes/class-kadence-woomail-settings.php:122
298
+ #, fuzzy
299
+ #| msgid "Continue"
300
+ msgid "Container"
301
+ msgstr "Continuă"
302
+
303
+ #: includes/class-kadence-woomail-settings.php:128
304
+ #, fuzzy
305
+ #| msgid "Header image"
306
+ msgid "Header Style"
307
+ msgstr "Imagine antet"
308
+
309
+ #: includes/class-kadence-woomail-settings.php:135
310
+ #: includes/class-kadence-woomail-settings.php:237
311
+ #, fuzzy
312
+ #| msgid "Header image"
313
+ msgid "Header Image"
314
+ msgstr "Imagine antet"
315
+
316
+ #: includes/class-kadence-woomail-settings.php:142
317
+ #, fuzzy
318
+ #| msgid "Pending"
319
+ msgid "Heading"
320
+ msgstr "În așteptare"
321
+
322
+ #: includes/class-kadence-woomail-settings.php:149
323
+ #, fuzzy
324
+ #| msgid "Footer text"
325
+ msgid "Footer Style"
326
+ msgstr "Text subsol"
327
+
328
+ #: includes/class-kadence-woomail-settings.php:155
329
+ msgid "Footer Social"
330
+ msgstr ""
331
+
332
+ #: includes/class-kadence-woomail-settings.php:161
333
+ #, fuzzy
334
+ #| msgid "Footer text"
335
+ msgid "Footer Credit Content"
336
+ msgstr "Text subsol"
337
+
338
+ #: includes/class-kadence-woomail-settings.php:168
339
+ #, fuzzy
340
+ #| msgid "Content type"
341
+ msgid "Content Container"
342
+ msgstr "Tip de conținut"
343
+
344
+ #: includes/class-kadence-woomail-settings.php:173
345
+ #, fuzzy
346
+ #| msgid "Content type"
347
+ msgid "Content Headings Style"
348
+ msgstr "Tip de conținut"
349
+
350
+ #: includes/class-kadence-woomail-settings.php:179
351
+ #, fuzzy
352
+ #| msgid "Content type"
353
+ msgid "Content Text Style"
354
+ msgstr "Tip de conținut"
355
+
356
+ #: includes/class-kadence-woomail-settings.php:185
357
+ #, fuzzy
358
+ #| msgid "Order notes"
359
+ msgid "Order Items"
360
+ msgstr "Note comandă"
361
+
362
+ #: includes/class-kadence-woomail-settings.php:191
363
+ msgid "Addresses"
364
+ msgstr "Adrese"
365
+
366
+ #: includes/class-kadence-woomail-settings.php:197
367
+ #, fuzzy
368
+ #| msgid "Copy"
369
+ msgid "Text Copy"
370
+ msgstr "Copie"
371
+
372
+ #: includes/class-kadence-woomail-settings.php:204
373
+ #, fuzzy
374
+ #| msgid "Customer sales"
375
+ msgid "Custom Styles"
376
+ msgstr "Vânzări client"
377
+
378
+ #: includes/class-kadence-woomail-settings.php:209
379
+ #: includes/class-kadence-woomail-settings.php:2089
380
+ #, fuzzy
381
+ #| msgid "Import products"
382
+ msgid "Import Export"
383
+ msgstr "Importă produse"
384
+
385
+ #: includes/class-kadence-woomail-settings.php:214
386
+ #, fuzzy
387
+ #| msgid "Reviewer email."
388
+ msgid "Send Preview Email"
389
+ msgstr "Email recenzent."
390
+
391
+ #: includes/class-kadence-woomail-settings.php:250
392
+ #, fuzzy
393
+ #| msgid "Background color"
394
+ msgid "Container Background color"
395
+ msgstr "Culoare fundal"
396
+
397
+ #: includes/class-kadence-woomail-settings.php:263
398
+ #, fuzzy
399
+ #| msgid "Body text color"
400
+ msgid "Content Text color"
401
+ msgstr "Culoare text corp"
402
+
403
+ #: includes/class-kadence-woomail-settings.php:277
404
+ #, fuzzy
405
+ #| msgid "Background color"
406
+ msgid "Content Background color"
407
+ msgstr "Culoare fundal"
408
+
409
+ #: includes/class-kadence-woomail-settings.php:291
410
+ msgid "Footer text"
411
+ msgstr "Text subsol"
412
+
413
+ #: includes/class-kadence-woomail-settings.php:306
414
+ msgid "Recipient(s)"
415
+ msgstr "Destinatar(i)"
416
+
417
+ #: includes/class-kadence-woomail-settings.php:311
418
+ #, php-format
419
+ msgid "Enter recipients (comma separated) for this email. Defaults to %s."
420
+ msgstr ""
421
+ "Introdu destinatarii (separați prin virgulă) pentru acest email. Implicit la "
422
+ "%s."
423
+
424
+ #: includes/class-kadence-woomail-settings.php:322
425
+ msgid "Full refund subject"
426
+ msgstr "Subiect rambursare completă"
427
+
428
+ #: includes/class-kadence-woomail-settings.php:338
429
+ msgid "Partial refund subject"
430
+ msgstr "Subiect rambursare parțială"
431
+
432
+ #: includes/class-kadence-woomail-settings.php:354
433
+ #, fuzzy
434
+ #| msgid "Full refund email heading"
435
+ msgid "Full refund Heading Text"
436
+ msgstr "Titlu email pentru rambursare completă"
437
+
438
+ #: includes/class-kadence-woomail-settings.php:374
439
+ #, fuzzy
440
+ #| msgid "Partial refund email heading"
441
+ msgid "Partial refund Heading Text"
442
+ msgstr "Titlu email pentru rambursare parțială"
443
+
444
+ #: includes/class-kadence-woomail-settings.php:391
445
+ #, fuzzy
446
+ #| msgid "Subject"
447
+ msgid "Subject Text"
448
+ msgstr "Subiect"
449
+
450
+ #: includes/class-kadence-woomail-settings.php:407
451
+ #, fuzzy
452
+ #| msgid "Subject (paid)"
453
+ msgid "Subject (paid) Text"
454
+ msgstr "Subiect (plătit)"
455
+
456
+ #: includes/class-kadence-woomail-settings.php:424
457
+ msgid "Heading Text"
458
+ msgstr ""
459
+
460
+ #: includes/class-kadence-woomail-settings.php:444
461
+ #, fuzzy
462
+ #| msgid "Email heading (paid)"
463
+ msgid "Heading (paid) Text"
464
+ msgstr "Titlu email (plătit)"
465
+
466
+ #: includes/class-kadence-woomail-settings.php:479
467
+ #, fuzzy
468
+ #| msgid "Templates"
469
+ msgid "Template_load"
470
+ msgstr "Șabloane"
471
+
472
+ #: includes/class-kadence-woomail-settings.php:488
473
+ #, fuzzy
474
+ #| msgid "Preview"
475
+ msgid "Preview Order"
476
+ msgstr "Previzualizare"
477
+
478
+ #: includes/class-kadence-woomail-settings.php:498
479
+ #, fuzzy
480
+ #| msgid "Email type"
481
+ msgid "Email Type"
482
+ msgstr "Tip de email"
483
+
484
+ #: includes/class-kadence-woomail-settings.php:508
485
+ #, fuzzy
486
+ #| msgid "Available placeholders: %s"
487
+ msgid "Available placeholders"
488
+ msgstr "Substituenți disponibili: %s"
489
+
490
+ #: includes/class-kadence-woomail-settings.php:520
491
+ msgid "Subtitle Text"
492
+ msgstr ""
493
+
494
+ #: includes/class-kadence-woomail-settings.php:538
495
+ msgid "Switch off for Partial Refund Preview"
496
+ msgstr ""
497
+
498
+ #: includes/class-kadence-woomail-settings.php:553
499
+ #, fuzzy
500
+ #| msgid "Full refund subject"
501
+ msgid "Body Full Refund Text"
502
+ msgstr "Subiect rambursare completă"
503
+
504
+ #: includes/class-kadence-woomail-settings.php:567
505
+ #, fuzzy
506
+ #| msgid "Partial refund subject"
507
+ msgid "Body Partial Refund Text"
508
+ msgstr "Subiect rambursare parțială"
509
+
510
+ #: includes/class-kadence-woomail-settings.php:581
511
+ msgid "Switch off for unpaid preview"
512
+ msgstr ""
513
+
514
+ #: includes/class-kadence-woomail-settings.php:596
515
+ msgid "Body Invoice Paid Text"
516
+ msgstr ""
517
+
518
+ #: includes/class-kadence-woomail-settings.php:610
519
+ #: includes/class-kadence-woomail-settings.php:638
520
+ msgid "Body Invoice Pending Payment Text"
521
+ msgstr ""
522
+
523
+ #: includes/class-kadence-woomail-settings.php:624
524
+ msgid "Body Invoice Failed Text"
525
+ msgstr ""
526
+
527
+ #: includes/class-kadence-woomail-settings.php:652
528
+ #, fuzzy
529
+ #| msgid "Body text color"
530
+ msgid "Body Text"
531
+ msgstr "Culoare text corp"
532
+
533
+ #: includes/class-kadence-woomail-settings.php:670
534
+ #, fuzzy
535
+ #| msgid "Content type"
536
+ msgid "Content Width"
537
+ msgstr "Tip de conținut"
538
+
539
+ #: includes/class-kadence-woomail-settings.php:690
540
+ #, fuzzy
541
+ #| msgid "Order Status"
542
+ msgid "Border radius"
543
+ msgstr "Stare comandă"
544
+
545
+ #: includes/class-kadence-woomail-settings.php:706
546
+ #: includes/class-kadence-woomail-settings.php:1618
547
+ #, fuzzy
548
+ #| msgid "Backordered"
549
+ msgid "Border Width"
550
+ msgstr "Precomandat"
551
+
552
+ #: includes/class-kadence-woomail-settings.php:722
553
+ #, fuzzy
554
+ #| msgid "Body text color"
555
+ msgid "Border color"
556
+ msgstr "Culoare text corp"
557
+
558
+ #: includes/class-kadence-woomail-settings.php:733
559
+ msgid "Shadow"
560
+ msgstr ""
561
+
562
+ #: includes/class-kadence-woomail-settings.php:749
563
+ #, fuzzy
564
+ #| msgid "Continue shopping"
565
+ msgid "Container Top Padding"
566
+ msgstr "Continuă cumpărăturile"
567
+
568
+ #: includes/class-kadence-woomail-settings.php:765
569
+ #, fuzzy
570
+ #| msgid "Continue shopping"
571
+ msgid "Container Botom Padding"
572
+ msgstr "Continuă cumpărăturile"
573
+
574
+ #: includes/class-kadence-woomail-settings.php:782
575
+ #, fuzzy
576
+ #| msgid "Image url"
577
+ msgid "Image Align"
578
+ msgstr "URL imagine"
579
+
580
+ #: includes/class-kadence-woomail-settings.php:794
581
+ #, fuzzy
582
+ #| msgid "Image data."
583
+ msgid "Image Max Width"
584
+ msgstr "Dată imagine."
585
+
586
+ #: includes/class-kadence-woomail-settings.php:809
587
+ #: includes/class-kadence-woomail-settings.php:836
588
+ msgid "Background color"
589
+ msgstr "Culoare fundal"
590
+
591
+ #: includes/class-kadence-woomail-settings.php:820
592
+ msgid "Padding top/bottom"
593
+ msgstr ""
594
+
595
+ #: includes/class-kadence-woomail-settings.php:847
596
+ #, fuzzy
597
+ #| msgid "Next page"
598
+ msgid "Text align"
599
+ msgstr "Pagina următoare"
600
+
601
+ #: includes/class-kadence-woomail-settings.php:861
602
+ #: includes/class-kadence-woomail-settings.php:1106
603
+ msgid "Padding Top"
604
+ msgstr ""
605
+
606
+ #: includes/class-kadence-woomail-settings.php:877
607
+ #: includes/class-kadence-woomail-settings.php:1122
608
+ #, fuzzy
609
+ #| msgid "Paying customer"
610
+ msgid "Padding Bottom"
611
+ msgstr "Client plătit"
612
+
613
+ #: includes/class-kadence-woomail-settings.php:894
614
+ msgid "Padding left/right"
615
+ msgstr ""
616
+
617
+ #: includes/class-kadence-woomail-settings.php:910
618
+ msgid "Heading Font size"
619
+ msgstr ""
620
+
621
+ #: includes/class-kadence-woomail-settings.php:926
622
+ msgid "Heading Line Height"
623
+ msgstr ""
624
+
625
+ #: includes/class-kadence-woomail-settings.php:942
626
+ #, fuzzy
627
+ #| msgctxt "enhanced select"
628
+ #| msgid "Loading failed"
629
+ msgid "Heading Font family"
630
+ msgstr "Încărcare eșuată"
631
+
632
+ #: includes/class-kadence-woomail-settings.php:954
633
+ msgid "Heading Font Style"
634
+ msgstr ""
635
+
636
+ #: includes/class-kadence-woomail-settings.php:960
637
+ #: includes/class-kadence-woomail-settings.php:1067
638
+ #: includes/class-kadence-woomail-settings.php:1349
639
+ #: includes/class-kadence-woomail-settings.php:1538
640
+ #: includes/class-kadence-woomail-settings.php:1580
641
+ #: includes/class-kadence-woomail-settings.php:1673
642
+ msgid "Normal"
643
+ msgstr ""
644
+
645
+ #: includes/class-kadence-woomail-settings.php:961
646
+ #: includes/class-kadence-woomail-settings.php:1068
647
+ #: includes/class-kadence-woomail-settings.php:1350
648
+ #: includes/class-kadence-woomail-settings.php:1539
649
+ #, fuzzy
650
+ #| msgid "Italy"
651
+ msgid "Italic"
652
+ msgstr "Italia"
653
+
654
+ #: includes/class-kadence-woomail-settings.php:969
655
+ msgid "Heading Font weight"
656
+ msgstr ""
657
+
658
+ #: includes/class-kadence-woomail-settings.php:985
659
+ #, fuzzy
660
+ #| msgid "Body text color"
661
+ msgid "Heading Text color"
662
+ msgstr "Culoare text corp"
663
+
664
+ #: includes/class-kadence-woomail-settings.php:997
665
+ #, fuzzy
666
+ #| msgid "Review Settings"
667
+ msgid "Subtitle Settings"
668
+ msgstr "Setări recenzii"
669
+
670
+ #: includes/class-kadence-woomail-settings.php:1004
671
+ msgid "Subtitle Placement"
672
+ msgstr ""
673
+
674
+ #: includes/class-kadence-woomail-settings.php:1010
675
+ #, fuzzy
676
+ #| msgid "Email heading"
677
+ msgid "Below Heading"
678
+ msgstr "Titlu email"
679
+
680
+ #: includes/class-kadence-woomail-settings.php:1011
681
+ msgid "Above Heading"
682
+ msgstr ""
683
+
684
+ #: includes/class-kadence-woomail-settings.php:1017
685
+ msgid "Subtitle Font Size"
686
+ msgstr ""
687
+
688
+ #: includes/class-kadence-woomail-settings.php:1033
689
+ msgid "Subtitle Line Height"
690
+ msgstr ""
691
+
692
+ #: includes/class-kadence-woomail-settings.php:1049
693
+ msgid "Subtitle Font Family"
694
+ msgstr ""
695
+
696
+ #: includes/class-kadence-woomail-settings.php:1061
697
+ msgid "Subtitle Font Style"
698
+ msgstr ""
699
+
700
+ #: includes/class-kadence-woomail-settings.php:1077
701
+ msgid "Subtitle Font weight"
702
+ msgstr ""
703
+
704
+ #: includes/class-kadence-woomail-settings.php:1094
705
+ msgid "Subtitle Text color"
706
+ msgstr ""
707
+
708
+ #: includes/class-kadence-woomail-settings.php:1138
709
+ msgid "Padding Left/Right"
710
+ msgstr ""
711
+
712
+ #: includes/class-kadence-woomail-settings.php:1156
713
+ #: includes/class-kadence-woomail-settings.php:1990
714
+ msgid "Font Size"
715
+ msgstr ""
716
+
717
+ #: includes/class-kadence-woomail-settings.php:1173
718
+ #, fuzzy
719
+ #| msgid "Height"
720
+ msgid "Line Height"
721
+ msgstr "Înălțime"
722
+
723
+ #: includes/class-kadence-woomail-settings.php:1190
724
+ #: includes/class-kadence-woomail-settings.php:2006
725
+ msgid "Font Family"
726
+ msgstr ""
727
+
728
+ #: includes/class-kadence-woomail-settings.php:1204
729
+ #: includes/class-kadence-woomail-settings.php:2019
730
+ msgid "Font weight"
731
+ msgstr ""
732
+
733
+ #: includes/class-kadence-woomail-settings.php:1220
734
+ msgid "Link Color"
735
+ msgstr ""
736
+
737
+ #: includes/class-kadence-woomail-settings.php:1234
738
+ msgid "H2 Font Size"
739
+ msgstr ""
740
+
741
+ #: includes/class-kadence-woomail-settings.php:1250
742
+ #, fuzzy
743
+ #| msgid "Height"
744
+ msgid "H2 Line Height"
745
+ msgstr "Înălțime"
746
+
747
+ #: includes/class-kadence-woomail-settings.php:1266
748
+ msgid "H2 Padding Top"
749
+ msgstr ""
750
+
751
+ #: includes/class-kadence-woomail-settings.php:1282
752
+ msgid "H2 Padding Bottom"
753
+ msgstr ""
754
+
755
+ #: includes/class-kadence-woomail-settings.php:1298
756
+ #, fuzzy
757
+ #| msgid "San Marino"
758
+ msgid "H2 Margin Top"
759
+ msgstr "San Marino"
760
+
761
+ #: includes/class-kadence-woomail-settings.php:1314
762
+ msgid "H2 Margin Bottom"
763
+ msgstr ""
764
+
765
+ #: includes/class-kadence-woomail-settings.php:1330
766
+ msgid "H2 Font Family"
767
+ msgstr ""
768
+
769
+ #: includes/class-kadence-woomail-settings.php:1343
770
+ msgid "H2 Font Style"
771
+ msgstr ""
772
+
773
+ #: includes/class-kadence-woomail-settings.php:1359
774
+ #, fuzzy
775
+ #| msgid "Height"
776
+ msgid "H2 Font weight"
777
+ msgstr "Înălțime"
778
+
779
+ #: includes/class-kadence-woomail-settings.php:1376
780
+ msgid "H2 Text Transform"
781
+ msgstr ""
782
+
783
+ #: includes/class-kadence-woomail-settings.php:1383
784
+ msgid "Uppercase"
785
+ msgstr ""
786
+
787
+ #: includes/class-kadence-woomail-settings.php:1384
788
+ msgid "Lowercase"
789
+ msgstr ""
790
+
791
+ #: includes/class-kadence-woomail-settings.php:1385
792
+ #, fuzzy
793
+ #| msgid "Capiz"
794
+ msgid "Capitalize"
795
+ msgstr "Capiz"
796
+
797
+ #: includes/class-kadence-woomail-settings.php:1393
798
+ #, fuzzy
799
+ #| msgid "Colorado"
800
+ msgid "H2 Color"
801
+ msgstr "Colorado"
802
+
803
+ #: includes/class-kadence-woomail-settings.php:1405
804
+ msgid "H2 Text Align"
805
+ msgstr ""
806
+
807
+ #: includes/class-kadence-woomail-settings.php:1417
808
+ #, fuzzy
809
+ #| msgid "Decimal separator"
810
+ msgid "H2 Separator"
811
+ msgstr "Separator pentru zeci"
812
+
813
+ #: includes/class-kadence-woomail-settings.php:1424
814
+ msgid "Separator below"
815
+ msgstr ""
816
+
817
+ #: includes/class-kadence-woomail-settings.php:1425
818
+ msgid "Separator above"
819
+ msgstr ""
820
+
821
+ #: includes/class-kadence-woomail-settings.php:1430
822
+ msgid "H2 Separator height"
823
+ msgstr ""
824
+
825
+ #: includes/class-kadence-woomail-settings.php:1448
826
+ msgid "H2 Separator Style"
827
+ msgstr ""
828
+
829
+ #: includes/class-kadence-woomail-settings.php:1454
830
+ #: includes/class-kadence-woomail-settings.php:1652
831
+ #: includes/class-kadence-woomail-settings.php:1723
832
+ #: includes/class-kadence-woomail-settings.php:1964
833
+ msgid "Solid"
834
+ msgstr ""
835
+
836
+ #: includes/class-kadence-woomail-settings.php:1455
837
+ #: includes/class-kadence-woomail-settings.php:1653
838
+ #: includes/class-kadence-woomail-settings.php:1724
839
+ #: includes/class-kadence-woomail-settings.php:1965
840
+ msgid "Double"
841
+ msgstr ""
842
+
843
+ #: includes/class-kadence-woomail-settings.php:1456
844
+ #: includes/class-kadence-woomail-settings.php:1654
845
+ #: includes/class-kadence-woomail-settings.php:1725
846
+ #: includes/class-kadence-woomail-settings.php:1966
847
+ msgid "Groove"
848
+ msgstr ""
849
+
850
+ #: includes/class-kadence-woomail-settings.php:1457
851
+ #: includes/class-kadence-woomail-settings.php:1655
852
+ #: includes/class-kadence-woomail-settings.php:1726
853
+ #: includes/class-kadence-woomail-settings.php:1967
854
+ #, fuzzy
855
+ #| msgid "Mayotte"
856
+ msgid "Dotted"
857
+ msgstr "Mayotte"
858
+
859
+ #: includes/class-kadence-woomail-settings.php:1458
860
+ #: includes/class-kadence-woomail-settings.php:1656
861
+ #: includes/class-kadence-woomail-settings.php:1727
862
+ #: includes/class-kadence-woomail-settings.php:1968
863
+ #, fuzzy
864
+ #| msgid "Trashed"
865
+ msgid "Dashed"
866
+ msgstr "Aruncat la gunoi"
867
+
868
+ #: includes/class-kadence-woomail-settings.php:1459
869
+ #: includes/class-kadence-woomail-settings.php:1657
870
+ #: includes/class-kadence-woomail-settings.php:1728
871
+ #: includes/class-kadence-woomail-settings.php:1969
872
+ msgid "Ridge"
873
+ msgstr ""
874
+
875
+ #: includes/class-kadence-woomail-settings.php:1468
876
+ msgid "H2 Separator Color"
877
+ msgstr ""
878
+
879
+ #: includes/class-kadence-woomail-settings.php:1481
880
+ #, fuzzy
881
+ #| msgid "Settings"
882
+ msgid "H3 Settings"
883
+ msgstr "Setări"
884
+
885
+ #: includes/class-kadence-woomail-settings.php:1488
886
+ msgid "H3 Font Size"
887
+ msgstr ""
888
+
889
+ #: includes/class-kadence-woomail-settings.php:1504
890
+ #, fuzzy
891
+ #| msgid "Height"
892
+ msgid "H3 Line Height"
893
+ msgstr "Înălțime"
894
+
895
+ #: includes/class-kadence-woomail-settings.php:1520
896
+ msgid "H3 Font Family"
897
+ msgstr ""
898
+
899
+ #: includes/class-kadence-woomail-settings.php:1532
900
+ msgid "H3 Font Style"
901
+ msgstr ""
902
+
903
+ #: includes/class-kadence-woomail-settings.php:1547
904
+ #, fuzzy
905
+ #| msgid "Height"
906
+ msgid "H3 Font weight"
907
+ msgstr "Înălțime"
908
+
909
+ #: includes/class-kadence-woomail-settings.php:1563
910
+ #, fuzzy
911
+ #| msgid "Colorado"
912
+ msgid "H3 Color"
913
+ msgstr "Colorado"
914
+
915
+ #: includes/class-kadence-woomail-settings.php:1574
916
+ #, fuzzy
917
+ #| msgid "Order deleted"
918
+ msgid "Order Table Style"
919
+ msgstr "Comandă ștearsă"
920
+
921
+ #: includes/class-kadence-woomail-settings.php:1581
922
+ #, fuzzy
923
+ #| msgid "Right"
924
+ msgid "Light"
925
+ msgstr "Dreapta"
926
+
927
+ #: includes/class-kadence-woomail-settings.php:1586
928
+ #, fuzzy
929
+ #| msgid "Body background color"
930
+ msgid "Order Table Background color"
931
+ msgstr "Culoare fundal corp"
932
+
933
+ #: includes/class-kadence-woomail-settings.php:1598
934
+ #, fuzzy
935
+ #| msgid "Pending"
936
+ msgid "Padding"
937
+ msgstr "În așteptare"
938
+
939
+ #: includes/class-kadence-woomail-settings.php:1635
940
+ #, fuzzy
941
+ #| msgid "Body text color"
942
+ msgid "Border Color"
943
+ msgstr "Culoare text corp"
944
+
945
+ #: includes/class-kadence-woomail-settings.php:1646
946
+ #, fuzzy
947
+ #| msgid "Order Date"
948
+ msgid "Border Style"
949
+ msgstr "Dată comandă"
950
+
951
+ #: includes/class-kadence-woomail-settings.php:1667
952
+ msgid "Order Table Heading Style"
953
+ msgstr ""
954
+
955
+ #: includes/class-kadence-woomail-settings.php:1674
956
+ msgid "Split"
957
+ msgstr ""
958
+
959
+ #: includes/class-kadence-woomail-settings.php:1679
960
+ #, fuzzy
961
+ #| msgid "Body background color"
962
+ msgid "Address Box Background color"
963
+ msgstr "Culoare fundal corp"
964
+
965
+ #: includes/class-kadence-woomail-settings.php:1690
966
+ #, fuzzy
967
+ #| msgid "Address override"
968
+ msgid "Address Box Border Width"
969
+ msgstr "Contramandare adresă"
970
+
971
+ #: includes/class-kadence-woomail-settings.php:1706
972
+ #, fuzzy
973
+ #| msgid "Address override"
974
+ msgid "Address Box Border Color"
975
+ msgstr "Contramandare adresă"
976
+
977
+ #: includes/class-kadence-woomail-settings.php:1717
978
+ #, fuzzy
979
+ #| msgid "Address override"
980
+ msgid "Address Box Border Style"
981
+ msgstr "Contramandare adresă"
982
+
983
+ #: includes/class-kadence-woomail-settings.php:1736
984
+ msgid "Address Box Text Color"
985
+ msgstr ""
986
+
987
+ #: includes/class-kadence-woomail-settings.php:1747
988
+ #, fuzzy
989
+ #| msgid "Address line 2"
990
+ msgid "Address Box Text Align"
991
+ msgstr "A doua linie a adresei"
992
+
993
+ #: includes/class-kadence-woomail-settings.php:1759
994
+ msgid "Footer Background Placement"
995
+ msgstr ""
996
+
997
+ #: includes/class-kadence-woomail-settings.php:1765
998
+ msgid "Inside Body Container"
999
+ msgstr ""
1000
+
1001
+ #: includes/class-kadence-woomail-settings.php:1766
1002
+ msgid "Outside Body Container"
1003
+ msgstr ""
1004
+
1005
+ #: includes/class-kadence-woomail-settings.php:1771
1006
+ #, fuzzy
1007
+ #| msgid "Background color"
1008
+ msgid "Footer Background Color"
1009
+ msgstr "Culoare fundal"
1010
+
1011
+ #: includes/class-kadence-woomail-settings.php:1782
1012
+ #: includes/class-kadence-woomail-settings.php:1899
1013
+ #: includes/class-kadence-woomail-settings.php:2047
1014
+ #, fuzzy
1015
+ #| msgid "Shop Page"
1016
+ msgid "Top Padding"
1017
+ msgstr "Pagină magazin"
1018
+
1019
+ #: includes/class-kadence-woomail-settings.php:1798
1020
+ #: includes/class-kadence-woomail-settings.php:1915
1021
+ #: includes/class-kadence-woomail-settings.php:2063
1022
+ msgid "Bottom Padding"
1023
+ msgstr ""
1024
+
1025
+ #: includes/class-kadence-woomail-settings.php:1814
1026
+ msgid "Left/Right Padding"
1027
+ msgstr ""
1028
+
1029
+ #: includes/class-kadence-woomail-settings.php:1830
1030
+ #, fuzzy
1031
+ #| msgid "Other locations"
1032
+ msgid "Footer Social Options"
1033
+ msgstr "Alte locații"
1034
+
1035
+ #: includes/class-kadence-woomail-settings.php:1844
1036
+ msgid "Footer Social Title Color"
1037
+ msgstr ""
1038
+
1039
+ #: includes/class-kadence-woomail-settings.php:1855
1040
+ msgid "Footer Social Title Font Size"
1041
+ msgstr ""
1042
+
1043
+ #: includes/class-kadence-woomail-settings.php:1871
1044
+ msgid "Footer Social Title Font Family"
1045
+ msgstr ""
1046
+
1047
+ #: includes/class-kadence-woomail-settings.php:1883
1048
+ msgid "Footer Social Title Font Weight"
1049
+ msgstr ""
1050
+
1051
+ #: includes/class-kadence-woomail-settings.php:1931
1052
+ msgid "Footer Social Bottom Border Width"
1053
+ msgstr ""
1054
+
1055
+ #: includes/class-kadence-woomail-settings.php:1947
1056
+ msgid "Footer Social Bottom Border Color"
1057
+ msgstr ""
1058
+
1059
+ #: includes/class-kadence-woomail-settings.php:1958
1060
+ msgid "Footer Social Bottom Border Style"
1061
+ msgstr ""
1062
+
1063
+ #: includes/class-kadence-woomail-settings.php:1977
1064
+ msgid "Text Align"
1065
+ msgstr ""
1066
+
1067
+ #: includes/class-kadence-woomail-settings.php:2036
1068
+ #, fuzzy
1069
+ #| msgid "Body text color"
1070
+ msgid "Text Color"
1071
+ msgstr "Culoare text corp"
1072
+
1073
+ #: includes/class-kadence-woomail-settings.php:2078
1074
+ #, fuzzy
1075
+ #| msgid "Custom"
1076
+ msgid "Custom CSS"
1077
+ msgstr "Personalizată"
1078
+
1079
+ #: includes/class-kadence-woomail-settings.php:2095
1080
+ msgid "Preview Email Recipient"
1081
+ msgstr ""
1082
+
1083
+ #: includes/class-kadence-woomail-settings.php:2096
1084
+ #, fuzzy
1085
+ #| msgid "Enter recipients (comma separated) for this email. Defaults to %s."
1086
+ msgid "Enter recipients (comma separated) for preview emails"
1087
+ msgstr ""
1088
+ "Introdu destinatarii (separați prin virgulă) pentru acest email. Implicit la "
1089
+ "%s."
1090
+
1091
+ #: includes/class-kadence-woomail-settings.php:2139
1092
+ #: includes/class-kadence-woomail-settings.php:2166
1093
+ #, fuzzy
1094
+ #| msgid "customer orders"
1095
+ msgid "New customer order"
1096
+ msgstr "comenzi client"
1097
+
1098
+ #: includes/class-kadence-woomail-settings.php:2140
1099
+ #: includes/class-kadence-woomail-settings.php:2181
1100
+ #, fuzzy
1101
+ #| msgid "[{site_title}]: New order #{order_number}"
1102
+ msgid "[{site_title}] New customer order ({order_number}) - {order_date}"
1103
+ msgstr "[{site_title}]: comandă nouă #{order_number}"
1104
+
1105
+ #: includes/class-kadence-woomail-settings.php:2141
1106
+ msgid ""
1107
+ "You have received a subscription renewal order from {customer_full_name}. "
1108
+ "Their order is as follows:"
1109
+ msgstr ""
1110
+
1111
+ #: includes/class-kadence-woomail-settings.php:2142
1112
+ #: includes/class-kadence-woomail-settings.php:2168
1113
+ #: includes/class-kadence-woomail-settings.php:2173
1114
+ msgid "Thank you for your order"
1115
+ msgstr "Mulțumim pentru comanda dvs."
1116
+
1117
+ #: includes/class-kadence-woomail-settings.php:2143
1118
+ #: includes/class-kadence-woomail-settings.php:2183
1119
+ #: includes/class-kadence-woomail-settings.php:2189
1120
+ #, fuzzy
1121
+ #| msgid "Note added to your {site_title} order from {order_date}"
1122
+ msgid "Your {site_title} order receipt from {order_date}"
1123
+ msgstr ""
1124
+ "Comentariu adăugat la comanda ta de la {site_title} din data {order_date}"
1125
+
1126
+ #: includes/class-kadence-woomail-settings.php:2144
1127
+ #, fuzzy
1128
+ #| msgid ""
1129
+ #| "Your order on %s has been refunded. There are more details below for your "
1130
+ #| "reference:"
1131
+ msgid ""
1132
+ "Your subscription renewal order has been received and is now being "
1133
+ "processed. Your order details are shown below for your reference:"
1134
+ msgstr ""
1135
+ "Comanda ta pentru %s a fost rambursată. Mai jos sunt mai multe detalii "
1136
+ "pentru referință:"
1137
+
1138
+ #: includes/class-kadence-woomail-settings.php:2145
1139
+ #: includes/class-kadence-woomail-settings.php:2148
1140
+ #: includes/class-kadence-woomail-settings.php:2169
1141
+ #, fuzzy
1142
+ #| msgid "Your {site_title} order is now complete"
1143
+ msgid "Your order is complete"
1144
+ msgstr "Comanda ta {site_title} este finalizată acum"
1145
+
1146
+ #: includes/class-kadence-woomail-settings.php:2146
1147
+ #: includes/class-kadence-woomail-settings.php:2149
1148
+ #: includes/class-kadence-woomail-settings.php:2184
1149
+ #, fuzzy
1150
+ #| msgid "Your {site_title} order is now complete"
1151
+ msgid "Your {site_title} order from {order_date} is complete"
1152
+ msgstr "Comanda ta {site_title} este finalizată acum"
1153
+
1154
+ #: includes/class-kadence-woomail-settings.php:2147
1155
+ #, fuzzy
1156
+ #| msgid ""
1157
+ #| "Your order on %s has been refunded. There are more details below for your "
1158
+ #| "reference:"
1159
+ msgid ""
1160
+ "Hi there. Your subscription renewal order with {site_title} has been "
1161
+ "completed. Your order details are shown below for your reference:"
1162
+ msgstr ""
1163
+ "Comanda ta pentru %s a fost rambursată. Mai jos sunt mai multe detalii "
1164
+ "pentru referință:"
1165
+
1166
+ #: includes/class-kadence-woomail-settings.php:2150
1167
+ msgid ""
1168
+ "Hi there. You have successfully changed your subscription items on "
1169
+ "{site_title}. Your new order and subscription details are shown below for "
1170
+ "your reference:"
1171
+ msgstr ""
1172
+
1173
+ #: includes/class-kadence-woomail-settings.php:2152
1174
+ #: includes/class-kadence-woomail-settings.php:2153
1175
+ #: includes/class-kadence-woomail-settings.php:2174
1176
+ #: includes/class-kadence-woomail-settings.php:2191
1177
+ #, fuzzy
1178
+ #| msgid "Your invoice for order #{order_number}"
1179
+ msgid "Invoice for order {order_number}"
1180
+ msgstr "Factură pentru comanda #{order_number}"
1181
+
1182
+ #: includes/class-kadence-woomail-settings.php:2154
1183
+ msgid ""
1184
+ "An invoice has been created for you to renew your subscription with "
1185
+ "{site_title}. To pay for this invoice please use the following link: "
1186
+ "{invoice_pay_link}"
1187
+ msgstr ""
1188
+
1189
+ #: includes/class-kadence-woomail-settings.php:2155
1190
+ msgid ""
1191
+ "The automatic payment to renew your subscription with {site_title} has "
1192
+ "failed. To reactivate the subscription, please login and pay for the renewal "
1193
+ "from your account page: {invoice_pay_link}"
1194
+ msgstr ""
1195
+
1196
+ #: includes/class-kadence-woomail-settings.php:2158
1197
+ #, fuzzy
1198
+ #| msgid "Subscription: Unlimited"
1199
+ msgid "Subscription Cancelled"
1200
+ msgstr "Abonament: nelimitat"
1201
+
1202
+ #: includes/class-kadence-woomail-settings.php:2159
1203
+ #, fuzzy
1204
+ #| msgid "Lifetime Subscription"
1205
+ msgid "[{site_title}] Subscription Cancelled"
1206
+ msgstr "Abonament pe viață"
1207
+
1208
+ #: includes/class-kadence-woomail-settings.php:2160
1209
+ msgid ""
1210
+ "A subscription belonging to {customer_full_name} has been cancelled. Their "
1211
+ "subscription's details are as follows:"
1212
+ msgstr ""
1213
+
1214
+ #: includes/class-kadence-woomail-settings.php:2163
1215
+ #, fuzzy
1216
+ #| msgid "Your invoice for order #{order_number}"
1217
+ msgid "Automatic payment failed for order {order_number}"
1218
+ msgstr "Factură pentru comanda #{order_number}"
1219
+
1220
+ #: includes/class-kadence-woomail-settings.php:2164
1221
+ msgid "Automatic payment failed for {order_number}, we will retry {retry_time}"
1222
+ msgstr ""
1223
+
1224
+ #: includes/class-kadence-woomail-settings.php:2167
1225
+ msgid "Cancelled order"
1226
+ msgstr "Comandă anulată"
1227
+
1228
+ #: includes/class-kadence-woomail-settings.php:2170
1229
+ #, fuzzy
1230
+ #| msgid "New Order: #{order_number}"
1231
+ msgid "Order {order_number} details"
1232
+ msgstr "Comandă nouă: #{order_number}"
1233
+
1234
+ #: includes/class-kadence-woomail-settings.php:2171
1235
+ #, fuzzy
1236
+ #| msgid "Your {site_title} order #{order_number} has been partially refunded"
1237
+ msgid "Your order has been partially refunded"
1238
+ msgstr "Comanda ta {site_title} #{order_number} a fost rambursată parțial"
1239
+
1240
+ #: includes/class-kadence-woomail-settings.php:2175
1241
+ #, fuzzy
1242
+ #| msgid "Order details"
1243
+ msgid "Your order details"
1244
+ msgstr "Detalii comandă"
1245
+
1246
+ #: includes/class-kadence-woomail-settings.php:2176
1247
+ msgid "Failed order"
1248
+ msgstr "Comandă eșuată"
1249
+
1250
+ #: includes/class-kadence-woomail-settings.php:2177
1251
+ msgid "Welcome to {site_title}"
1252
+ msgstr "Bine ai venit la {site_title}"
1253
+
1254
+ #: includes/class-kadence-woomail-settings.php:2178
1255
+ msgid "A note has been added to your order"
1256
+ msgstr "A fost adăugată o notiță comenzii tale"
1257
+
1258
+ #: includes/class-kadence-woomail-settings.php:2179
1259
+ #, fuzzy
1260
+ #| msgid "Password reset request"
1261
+ msgid "Password reset instructions"
1262
+ msgstr "Cerere resetare parolă"
1263
+
1264
+ #: includes/class-kadence-woomail-settings.php:2182
1265
+ #, fuzzy
1266
+ #| msgid "[{site_title}]: New order #{order_number}"
1267
+ msgid "[{site_title}] Cancelled order ({order_number})"
1268
+ msgstr "[{site_title}]: comandă nouă #{order_number}"
1269
+
1270
+ #: includes/class-kadence-woomail-settings.php:2186
1271
+ #, fuzzy
1272
+ #| msgid "Your {site_title} order #{order_number} has been refunded"
1273
+ msgid "Your {site_title} order from {order_date} has been refunded"
1274
+ msgstr "Comanda ta {site_title} #{order_number} a fost rambursată"
1275
+
1276
+ #: includes/class-kadence-woomail-settings.php:2187
1277
+ #, fuzzy
1278
+ #| msgid "Your {site_title} order #{order_number} has been partially refunded"
1279
+ msgid "Your {site_title} order from {order_date} has been partially refunded"
1280
+ msgstr "Comanda ta {site_title} #{order_number} a fost rambursată parțial"
1281
+
1282
+ #: includes/class-kadence-woomail-settings.php:2192
1283
+ #, fuzzy
1284
+ #| msgid "Note added to your {site_title} order from {order_date}"
1285
+ msgid "Your {site_title} order from {order_date}"
1286
+ msgstr ""
1287
+ "Comentariu adăugat la comanda ta de la {site_title} din data {order_date}"
1288
+
1289
+ #: includes/class-kadence-woomail-settings.php:2194
1290
+ #, fuzzy
1291
+ #| msgid "[{site_title}]: New order #{order_number}"
1292
+ msgid "[{site_title}] Failed order ({order_number})"
1293
+ msgstr "[{site_title}]: comandă nouă #{order_number}"
1294
+
1295
+ #: includes/class-kadence-woomail-settings.php:2195
1296
+ #, fuzzy
1297
+ #| msgid "Your latest {site_title} invoice"
1298
+ msgid "Your account on {site_title}"
1299
+ msgstr "Ultima ta factură {site_title}"
1300
+
1301
+ #: includes/class-kadence-woomail-settings.php:2196
1302
+ msgid "Note added to your {site_title} order from {order_date}"
1303
+ msgstr ""
1304
+ "Comentariu adăugat la comanda ta de la {site_title} din data {order_date}"
1305
+
1306
+ #: includes/class-kadence-woomail-settings.php:2197
1307
+ #, fuzzy
1308
+ #| msgid "Password reset request for {site_title}"
1309
+ msgid "Password reset for {site_title}"
1310
+ msgstr "Cerere resetare parolă pentru {site_title}"
1311
+
1312
+ #: includes/class-kadence-woomail-settings.php:2199
1313
+ #, fuzzy
1314
+ #| msgid ""
1315
+ #| "Payment for order #%1$s from %2$s has failed. The order was as follows:"
1316
+ msgid ""
1317
+ "You have received an order from {customer_full_name}. The order is as "
1318
+ "follows:"
1319
+ msgstr ""
1320
+ "Plata pentru comanda #%1$s de la %2$s a eșuat. Comanda a fost după cum "
1321
+ "urmează:"
1322
+
1323
+ #: includes/class-kadence-woomail-settings.php:2200
1324
+ #, fuzzy
1325
+ #| msgid ""
1326
+ #| "Payment for order #%1$s from %2$s has failed. The order was as follows:"
1327
+ msgid ""
1328
+ "The order {order_number} from {customer_full_name} has been cancelled. The "
1329
+ "order was as follows:"
1330
+ msgstr ""
1331
+ "Plata pentru comanda #%1$s de la %2$s a eșuat. Comanda a fost după cum "
1332
+ "urmează:"
1333
+
1334
+ #: includes/class-kadence-woomail-settings.php:2201
1335
+ #, fuzzy
1336
+ #| msgid ""
1337
+ #| "Your order on %s has been refunded. There are more details below for your "
1338
+ #| "reference:"
1339
+ msgid ""
1340
+ "Your order has been received and is now being processed. Your order details "
1341
+ "are shown below for your reference:"
1342
+ msgstr ""
1343
+ "Comanda ta pentru %s a fost rambursată. Mai jos sunt mai multe detalii "
1344
+ "pentru referință:"
1345
+
1346
+ #: includes/class-kadence-woomail-settings.php:2202
1347
+ #, fuzzy
1348
+ #| msgid ""
1349
+ #| "Your order on %s has been refunded. There are more details below for your "
1350
+ #| "reference:"
1351
+ msgid ""
1352
+ "Hi there. Your recent order on {site_title} has been completed. Your order "
1353
+ "details are shown below for your reference:"
1354
+ msgstr ""
1355
+ "Comanda ta pentru %s a fost rambursată. Mai jos sunt mai multe detalii "
1356
+ "pentru referință:"
1357
+
1358
+ #: includes/class-kadence-woomail-settings.php:2204
1359
+ #, fuzzy
1360
+ #| msgid "Your {site_title} order has been received!"
1361
+ msgid "Hi there. Your order on {site_title} has been refunded."
1362
+ msgstr "Comanda ta {site_title} a fost primită!"
1363
+
1364
+ #: includes/class-kadence-woomail-settings.php:2205
1365
+ #, fuzzy
1366
+ #| msgid "Your {site_title} order #{order_number} has been partially refunded"
1367
+ msgid "Hi there. Your order on {site_title} has been partially refunded."
1368
+ msgstr "Comanda ta {site_title} #{order_number} a fost rambursată parțial"
1369
+
1370
+ #: includes/class-kadence-woomail-settings.php:2207
1371
+ #, fuzzy
1372
+ #| msgid ""
1373
+ #| "Your order on %s has been refunded. There are more details below for your "
1374
+ #| "reference:"
1375
+ msgid ""
1376
+ "Your order is on-hold until we confirm payment has been received. Your order "
1377
+ "details are shown below for your reference:"
1378
+ msgstr ""
1379
+ "Comanda ta pentru %s a fost rambursată. Mai jos sunt mai multe detalii "
1380
+ "pentru referință:"
1381
+
1382
+ #: includes/class-kadence-woomail-settings.php:2209
1383
+ msgid "An order has been created for you on {site_title}. {invoice_pay_link}"
1384
+ msgstr ""
1385
+
1386
+ #: includes/class-kadence-woomail-settings.php:2211
1387
+ #, fuzzy
1388
+ #| msgid ""
1389
+ #| "Payment for order #%1$s from %2$s has failed. The order was as follows:"
1390
+ msgid ""
1391
+ "Payment for order {order_number} from {customer_full_name} has failed. The "
1392
+ "order was as follows:"
1393
+ msgstr ""
1394
+ "Plata pentru comanda #%1$s de la %2$s a eșuat. Comanda a fost după cum "
1395
+ "urmează:"
1396
+
1397
+ #: includes/class-kadence-woomail-settings.php:2212
1398
+ msgid ""
1399
+ "Thanks for creating an account on {site_title}. Your username is "
1400
+ "{customer_username}"
1401
+ msgstr ""
1402
+
1403
+ #: includes/class-kadence-woomail-settings.php:2213
1404
+ #, fuzzy
1405
+ #| msgid "A note has been added to your order"
1406
+ msgid "Hello, a note has just been added to your order:"
1407
+ msgstr "A fost adăugată o notiță comenzii tale"
1408
+
1409
+ #: includes/class-kadence-woomail-settings.php:2214
1410
+ msgid ""
1411
+ "Someone requested that the password be reset for the following account:\n"
1412
+ "\n"
1413
+ "Username: {customer_username}\n"
1414
+ "\n"
1415
+ "If this was a mistake, just ignore this email and nothing will happen.\n"
1416
+ "\n"
1417
+ "To reset your password, visit the following address:"
1418
+ msgstr ""
1419
+
1420
+ #: includes/class-kadence-woomail-settings.php:2350
1421
+ #, fuzzy
1422
+ #| msgid "Pordenone"
1423
+ msgid "none"
1424
+ msgstr "Pordenone"
1425
+
1426
+ #: includes/class-kadence-woomail-settings.php:2351
1427
+ #, fuzzy
1428
+ #| msgid "Hidden"
1429
+ msgid "hidden"
1430
+ msgstr "Ascuns"
1431
+
1432
+ #: includes/class-kadence-woomail-settings.php:2352
1433
+ #, fuzzy
1434
+ #| msgid "Mayotte"
1435
+ msgid "dotted"
1436
+ msgstr "Mayotte"
1437
+
1438
+ #: includes/class-kadence-woomail-settings.php:2353
1439
+ #, fuzzy
1440
+ #| msgid "Trashed"
1441
+ msgid "dashed"
1442
+ msgstr "Aruncat la gunoi"
1443
+
1444
+ #: includes/class-kadence-woomail-settings.php:2354
1445
+ msgid "solid"
1446
+ msgstr ""
1447
+
1448
+ #: includes/class-kadence-woomail-settings.php:2355
1449
+ msgid "double"
1450
+ msgstr ""
1451
+
1452
+ #: includes/class-kadence-woomail-settings.php:2356
1453
+ msgid "groove"
1454
+ msgstr ""
1455
+
1456
+ #: includes/class-kadence-woomail-settings.php:2357
1457
+ msgid "ridge"
1458
+ msgstr ""
1459
+
1460
+ #: includes/class-kadence-woomail-settings.php:2358
1461
+ msgid "inset"
1462
+ msgstr ""
1463
+
1464
+ #: includes/class-kadence-woomail-settings.php:2359
1465
+ msgid "outset"
1466
+ msgstr ""
1467
+
1468
+ #: includes/class-kadence-woomail-settings.php:2371
1469
+ #: includes/class-kadence-woomail-settings.php:2379
1470
+ msgid "Left"
1471
+ msgstr "Stânga"
1472
+
1473
+ #: includes/class-kadence-woomail-settings.php:2372
1474
+ #: includes/class-kadence-woomail-settings.php:2380
1475
+ #, fuzzy
1476
+ #| msgid "Central"
1477
+ msgid "Center"
1478
+ msgstr "Central"
1479
+
1480
+ #: includes/class-kadence-woomail-settings.php:2373
1481
+ #: includes/class-kadence-woomail-settings.php:2381
1482
+ msgid "Right"
1483
+ msgstr "Dreapta"
1484
+
1485
+ #: includes/class-kadence-woomail-settings.php:2374
1486
+ msgid "Justify"
1487
+ msgstr ""
1488
+
1489
+ #: includes/class-kadence-woomail-settings.php:2394
1490
+ #, fuzzy
1491
+ #| msgid "Your order"
1492
+ msgid "Mockup Order"
1493
+ msgstr "Comanda ta"
1494
+
1495
+ #: includes/class-kadence-woomail-woo.php:60
1496
+ #, fuzzy
1497
+ #| msgid "WooCommerce Extensions"
1498
+ msgid "Woocommerce Email Designer"
1499
+ msgstr "Extensii WooCommerce"
1500
+
1501
+ #: includes/class-kadence-woomail-woo.php:90
1502
+ #, fuzzy
1503
+ #| msgid "View WooCommerce settings"
1504
+ msgid "Customize WooCommerce Emails"
1505
+ msgstr "Vezi setări WooCommerce"
1506
+
1507
+ #: includes/class-kadence-woomail-woo.php:94
1508
+ #: includes/class-kadence-woomail-woo.php:95
1509
+ #, fuzzy
1510
+ #| msgid "WooCommerce Extensions"
1511
+ msgid "Open Woocommerce Email Designer"
1512
+ msgstr "Extensii WooCommerce"
1513
+
1514
+ #: includes/class-kadence-woomail-woo.php:98
1515
+ #, php-format
1516
+ msgid ""
1517
+ "Make Woocommerce Emails match your brand. <a href=\"%s\">Kadence Woocommerce "
1518
+ "Email Designer</a> plugin by <a href=\"%s\">Kadence Themes</a>."
1519
+ msgstr ""
1520
+
1521
+ #: kadence-woocommerce-email-designer.php:108
1522
+ msgid ""
1523
+ "Kadence Woocommerce Email Designer requires WooCommerce to be active to work"
1524
+ msgstr ""
1525
+
1526
+ #: kadence-woocommerce-email-designer.php:204
1527
+ msgid "Pay for this order"
1528
+ msgstr "Plătește această comandă"
1529
+
1530
+ #: kadence-woocommerce-email-designer.php:212
1531
+ #: kadence-woocommerce-email-designer.php:216
1532
+ msgid "Pay Now &raquo;"
1533
+ msgstr ""
1534
+
1535
+ #: kadence-woocommerce-email-designer.php:361
1536
+ #: kadence-woocommerce-email-designer.php:362
1537
+ #, fuzzy
1538
+ #| msgid "Customer"
1539
+ msgid "Email Customizer"
1540
+ msgstr "Client"
1541
+
1542
+ #: kadence-woocommerce-email-designer.php:375
1543
+ msgid "Open Email Designer"
1544
+ msgstr ""
1545
+
1546
+ #: preview.php:30
1547
+ #, fuzzy
1548
+ #| msgid "Email heading"
1549
+ msgid "Email Designer"
1550
+ msgstr "Titlu email"
1551
+
1552
+ #: templates/woo/emails/cancelled-subscription.php:34
1553
+ #: templates/woo/emails/subscription-info.php:24
1554
+ #, fuzzy
1555
+ #| msgid "Subscriptions"
1556
+ msgid "Subscription"
1557
+ msgstr "Abonamente"
1558
+
1559
+ #: templates/woo/emails/cancelled-subscription.php:35
1560
+ #, fuzzy
1561
+ #| msgid "Price"
1562
+ msgctxt "table headings in notification email"
1563
+ msgid "Price"
1564
+ msgstr "Preț"
1565
+
1566
+ #: templates/woo/emails/cancelled-subscription.php:36
1567
+ #, fuzzy
1568
+ #| msgid "Order Date"
1569
+ msgctxt "table heading"
1570
+ msgid "Last Order Date"
1571
+ msgstr "Dată comandă"
1572
+
1573
+ #: templates/woo/emails/cancelled-subscription.php:37
1574
+ msgctxt "table headings in notification email"
1575
+ msgid "End of Prepaid Term"
1576
+ msgstr ""
1577
+
1578
+ #: templates/woo/emails/cancelled-subscription.php:54
1579
+ msgid "-"
1580
+ msgstr ""
1581
+
1582
+ #: templates/woo/emails/customer-completed-switch-order.php:34
1583
+ #, fuzzy
1584
+ #| msgid "Subscriptions"
1585
+ msgid "New Subscription Details"
1586
+ msgstr "Abonamente"
1587
+
1588
+ #: templates/woo/emails/customer-new-account.php:40
1589
+ #, php-format
1590
+ msgid "Your password has been automatically generated: %s"
1591
+ msgstr "Parola ta a fost generată automat: %s"
1592
+
1593
+ #: templates/woo/emails/customer-new-account.php:44
1594
+ #, php-format
1595
+ msgid ""
1596
+ "You can access your account area to view your orders and change your "
1597
+ "password here: %s."
1598
+ msgstr ""
1599
+
1600
+ #: templates/woo/emails/customer-note.php:41
1601
+ msgid "For your reference, your order details are shown below."
1602
+ msgstr ""
1603
+
1604
+ #: templates/woo/emails/customer-reset-password.php:38
1605
+ msgid "Click here to reset your password"
1606
+ msgstr "Click aici pentru a vă reseta parola"
1607
+
1608
+ #: templates/woo/emails/email-addresses.php:35
1609
+ msgid "Billing address"
1610
+ msgstr "Adresă de facturare"
1611
+
1612
+ #: templates/woo/emails/email-addresses.php:38
1613
+ msgid "N/A"
1614
+ msgstr "Nu se aplică"
1615
+
1616
+ #: templates/woo/emails/email-addresses.php:49
1617
+ msgid "Shipping address"
1618
+ msgstr "Adresă de livrare"
1619
+
1620
+ #: templates/woo/emails/email-customer-details.php:34
1621
+ msgid "Customer details"
1622
+ msgstr "Detalii client"
1623
+
1624
+ #: templates/woo/emails/email-downloads.php:33
1625
+ msgid "Downloads"
1626
+ msgstr "Descărcări"
1627
+
1628
+ #: templates/woo/emails/email-downloads.php:66
1629
+ msgid "Never"
1630
+ msgstr "Niciodată"
1631
+
1632
+ #: templates/woo/emails/email-order-details.php:40
1633
+ msgid "Order Details"
1634
+ msgstr "Detalii comandă"
1635
+
1636
+ #. translators: %s: Order ID.
1637
+ #: templates/woo/emails/email-order-details.php:53
1638
+ #, php-format
1639
+ msgid "Order number: %s"
1640
+ msgstr "Număr comandă: %s"
1641
+
1642
+ #: templates/woo/emails/email-order-details.php:58
1643
+ msgid "Order date:"
1644
+ msgstr "Dată comandă:"
1645
+
1646
+ #. translators: %s: Order ID.
1647
+ #: templates/woo/emails/email-order-details.php:73
1648
+ #, php-format
1649
+ msgid "Order #%s"
1650
+ msgstr "Comanda #%s"
1651
+
1652
+ #: templates/woo/emails/email-order-details.php:82
1653
+ msgid "Product"
1654
+ msgstr "Produs"
1655
+
1656
+ #: templates/woo/emails/email-order-details.php:83
1657
+ msgid "Quantity"
1658
+ msgstr "Cantitate"
1659
+
1660
+ #: templates/woo/emails/email-order-details.php:84
1661
+ msgid "Price"
1662
+ msgstr "Preț"
1663
+
1664
+ #: templates/woo/emails/email-order-details.php:117
1665
+ msgid "Note:"
1666
+ msgstr "Notă:"
1667
+
1668
+ #: templates/woo/emails/subscription-info.php:19
1669
+ #, fuzzy
1670
+ #| msgid "Additional information"
1671
+ msgid "Subscription Information:"
1672
+ msgstr "Informații suplimentare"
1673
+
1674
+ #: templates/woo/emails/subscription-info.php:25
1675
+ #, fuzzy
1676
+ #| msgid "Sale start date"
1677
+ msgctxt "table heading"
1678
+ msgid "Start Date"
1679
+ msgstr "Data de începere a vânzării"
1680
+
1681
+ #: templates/woo/emails/subscription-info.php:26
1682
+ #, fuzzy
1683
+ #| msgid "Order Date"
1684
+ msgctxt "table heading"
1685
+ msgid "End Date"
1686
+ msgstr "Dată comandă"
1687
+
1688
+ #: templates/woo/emails/subscription-info.php:27
1689
+ #, fuzzy
1690
+ #| msgid "Price"
1691
+ msgctxt "table heading"
1692
+ msgid "Price"
1693
+ msgstr "Preț"
1694
+
1695
+ #: templates/woo/emails/subscription-info.php:33
1696
+ #, php-format
1697
+ msgctxt "subscription number in email table. (eg: #106)"
1698
+ msgid "#%s"
1699
+ msgstr ""
1700
+
1701
+ #: templates/woo/emails/subscription-info.php:35
1702
+ #, fuzzy
1703
+ #| msgctxt "Order status"
1704
+ #| msgid "Cancelled"
1705
+ msgctxt "Used as end date for an indefinite subscription"
1706
+ msgid "When Cancelled"
1707
+ msgstr "Anulată"
1708
+
1709
+ #~ msgid "[Order #%1$s] (%2$s)"
1710
+ #~ msgstr "[Comandă #%1$s] (%2$s)"
1711
+
1712
+ #~ msgid "Your password has been automatically generated: %s."
1713
+ #~ msgstr "Parola ta a fost generată automat: %s."
1714
+
1715
+ #~ msgid ""
1716
+ #~ "If you didn't make this request, just ignore this email. If you'd like to "
1717
+ #~ "proceed:"
1718
+ #~ msgstr ""
1719
+ #~ "Dacă nu ai făcut această cerere, ignoră acest email. Dacă vrei să "
1720
+ #~ "continui:"
1721
+
1722
+ #~ msgid ""
1723
+ #~ "Someone has requested a new password for the following account on %s:"
1724
+ #~ msgstr "Cineva a cerut o parolă nouă pentru următorul cont pentru %s:"
1725
+
1726
+ #~ msgid "We hope to see you again soon."
1727
+ #~ msgstr "Sperăm să te revedem curând."
1728
+
1729
+ #~ msgid ""
1730
+ #~ "Your order on %s has been partially refunded. There are more details "
1731
+ #~ "below for your reference:"
1732
+ #~ msgstr ""
1733
+ #~ "Comanda ta pentru %s a fost rambursată parțial. Mai jos sunt mai multe "
1734
+ #~ "detalii pentru referință:"
1735
+
1736
+ #~ msgid "Thanks!"
1737
+ #~ msgstr "Îți mulțumim!"
1738
+
1739
+ #~ msgid ""
1740
+ #~ "Just to let you know &mdash; your payment has been confirmed, and order #"
1741
+ #~ "%s is now being processed:"
1742
+ #~ msgstr ""
1743
+ #~ "Doar te informez &mdash; plata ta a fost confirmată și comanda #%s este "
1744
+ #~ "procesată acum:"
1745
+
1746
+ #~ msgid "We look forward to fulfilling your order soon."
1747
+ #~ msgstr "De abia așteptăm să-ți onorăm comanda."
1748
+
1749
+ #~ msgid ""
1750
+ #~ "Thanks for your order. It’s on-hold until we confirm that payment has "
1751
+ #~ "been received. In the meantime, here’s a reminder of what you ordered:"
1752
+ #~ msgstr ""
1753
+ #~ "Îți mulțumim pentru comandă. Ea este în așteptare până vom confirma că "
1754
+ #~ "plata a fost primită. Între timp, îți reamintim ceea ce ai comandat:"
1755
+
1756
+ #~ msgid "As a reminder, here are your order details:"
1757
+ #~ msgstr "Îți reamintim, iată detaliile comenzii tale:"
1758
+
1759
+ #~ msgid "The following note has been added to your order:"
1760
+ #~ msgstr "A fost adăugată următoarea notă la comanda ta:"
1761
+
1762
+ #~ msgid "We look forward to seeing you soon."
1763
+ #~ msgstr "De abia așteptăm să te revedem."
1764
+
1765
+ #~ msgid ""
1766
+ #~ "Thanks for creating an account on %1$s. As a reminder, the username you "
1767
+ #~ "chose is %2$s. You can access your account area to view orders, change "
1768
+ #~ "your password, and more at: %3$s"
1769
+ #~ msgstr ""
1770
+ #~ "Îți mulțumim că ai creat un cont pe %1$s. Îți reamintim că ai ales numele "
1771
+ #~ "de utilizator %2$s. Poți accesa zona contului pentru a-ți vedea "
1772
+ #~ "comenzile, pentru a-ți schimba parola și altele la: %3$s"
1773
+
1774
+ #~ msgid "Here are the details of your order placed on %s:"
1775
+ #~ msgstr "Iată detaliile comenzii tale plasată pe %s:"
1776
+
1777
+ #~ msgid ""
1778
+ #~ "An order has been created for you on %1$s. Your invoice is below, with a "
1779
+ #~ "link to make payment when you’re ready: %2$s"
1780
+ #~ msgstr ""
1781
+ #~ "A fost creată o comandă pentru %1$s. Factura ta este mai jos, cu o "
1782
+ #~ "legătură pentru a face plata când vrei: %2$s"
1783
+
1784
+ #~ msgid "Thanks for shopping with us."
1785
+ #~ msgstr "Îți mulțumim că faci cumpărături de la noi."
1786
+
1787
+ #~ msgid "Your %s order has been marked complete on our side."
1788
+ #~ msgstr "Comanda ta %s a fost marcată ca finalizată din partea noastră."
1789
+
1790
+ #~ msgid "Hi %s,"
1791
+ #~ msgstr "Bună %s,"
1792
+
1793
+ #~ msgid "You’ve received the following order from %s:"
1794
+ #~ msgstr "Ai primit următoarea comandă de la %s:"
1795
+
1796
+ #~ msgid ""
1797
+ #~ "Hopefully they’ll be back. Read more about <a href=\"https://docs."
1798
+ #~ "woocommerce.com/document/managing-orders/#section-10\">troubleshooting "
1799
+ #~ "failed payments</a>."
1800
+ #~ msgstr ""
1801
+ #~ "Sperăm că se vor întoarce. Află mai multe despre <a href=\"https://docs."
1802
+ #~ "woocommerce.com/document/managing-orders/#section-10\">depanarea plăților "
1803
+ #~ "eșuate</a>."
1804
+
1805
+ #~ msgid "Thanks for reading."
1806
+ #~ msgstr "Îți mulțumim pentru că ai citit."
1807
+
1808
+ #~ msgid "Alas. Just to let you know &mdash; %1$s has cancelled order #%2$s:"
1809
+ #~ msgstr "Of! Doar te informez &mdash; %1$s a anulat comanda #%2$s:"
1810
+
1811
+ #~ msgid "Enter a different address"
1812
+ #~ msgstr "Introdu o altă adresă"
1813
+
1814
+ #~ msgid "No shipping options were found for %s."
1815
+ #~ msgstr "Nu a fost găsită nicio opțiune de livrare pentru %s."
1816
+
1817
+ #~ msgid "Enter your address to view shipping options."
1818
+ #~ msgstr "Introdu adresa pentru a vedea opțiunile de livrare."
1819
+
1820
+ #~ msgid "This is only an estimate. Prices will be updated during checkout."
1821
+ #~ msgstr ""
1822
+ #~ "Aceasta este doar o estimare. Prețurile vor fi actualizate la finalizarea "
1823
+ #~ "comenzii."
1824
+
1825
+ #~ msgid "Change address"
1826
+ #~ msgstr "Modifică adresa"
1827
+
1828
+ #~ msgid "Estimate for %s."
1829
+ #~ msgstr "Estimează pentru %s."
1830
+
1831
+ #~ msgid "Sort by latest"
1832
+ #~ msgstr "Sortează după cele mai recente"
1833
+
1834
+ #~ msgid "Stock levels increased:"
1835
+ #~ msgstr "Nivelele stocurilor au crescut:"
1836
+
1837
+ #~ msgid "Unable to restore stock for item %s."
1838
+ #~ msgstr "Nu pot restaura stocul pentru elementul %s."
1839
+
1840
+ #~ msgid "Stock levels reduced:"
1841
+ #~ msgstr "Nivelul stocurilor s-au redus:"
1842
+
1843
+ #~ msgid "Unable to reduce stock for item %s."
1844
+ #~ msgstr "Nu pot reduce stocul pentru elementul %s."
1845
+
1846
+ #~ msgid ""
1847
+ #~ "The class attached to the \"woocommerce_queue_class\" does not implement "
1848
+ #~ "the WC_Queue_Interface interface. The default %s class will be used "
1849
+ #~ "instead."
1850
+ #~ msgstr ""
1851
+ #~ "Clasa atașată la „woocommerce_queue_class” nu implementează interfața "
1852
+ #~ "WC_Queue_Interface. În schimb, va fi folosită clasa implicită %s."
1853
+
1854
+ #~ msgid "This function should not be called before plugins_loaded."
1855
+ #~ msgstr "Această funcție nu ar trebui apelată înainte de plugins_loaded."
1856
+
1857
+ #~ msgid "Action Group"
1858
+ #~ msgstr "Grup de acțiuni"
1859
+
1860
+ #~ msgid "No actions found in trash"
1861
+ #~ msgstr "Nicio acțiune găsită la gunoi"
1862
+
1863
+ #~ msgid "No actions found"
1864
+ #~ msgstr "Nicio acțiune găsită"
1865
+
1866
+ #~ msgid "Search Scheduled Actions"
1867
+ #~ msgstr "Caută acțiuni programate"
1868
+
1869
+ #~ msgid "View Action"
1870
+ #~ msgstr "Vezi acțiunea"
1871
+
1872
+ #~ msgid "New Scheduled Action"
1873
+ #~ msgstr "Acțiune programată nouă"
1874
+
1875
+ #~ msgid "Edit Scheduled Action"
1876
+ #~ msgstr "Editează acțiunea programată"
1877
+
1878
+ #~ msgid "Add New Scheduled Action"
1879
+ #~ msgstr "Adaugă acțiune programată nouă"
1880
+
1881
+ #~ msgctxt "Admin menu name"
1882
+ #~ msgid "Scheduled Actions"
1883
+ #~ msgstr "Acțiuni programate"
1884
+
1885
+ #~ msgid "Scheduled Action"
1886
+ #~ msgstr "Acțiune programată"
1887
+
1888
+ #~ msgid "Scheduled actions are hooks triggered on a cetain date and time."
1889
+ #~ msgstr ""
1890
+ #~ "Acțiunile programate sunt cârlige declanșate la o anumită dată și oră."
1891
+
1892
+ #~ msgid "In-Progress <span class=\"count\">(%s)</span>"
1893
+ #~ msgid_plural "In-Progress <span class=\"count\">(%s)</span>"
1894
+ #~ msgstr[0] "În desfășurare <span class=\"count\">(%s)</span>"
1895
+ #~ msgstr[1] "În desfășurare <span class=\"count\">(%s)</span>"
1896
+ #~ msgstr[2] "În desfășurare <span class=\"count\">(%s)</span>"
1897
+
1898
+ #~ msgctxt "post"
1899
+ #~ msgid "In-Progress"
1900
+ #~ msgstr "În desfășurare"
1901
+
1902
+ #~ msgctxt "post"
1903
+ #~ msgid "Failed"
1904
+ #~ msgstr "Eșuat"
1905
+
1906
+ #~ msgid "Invalid action ID. No status found."
1907
+ #~ msgstr "ID acțiune invalid. Nicio stare găsită."
1908
+
1909
+ #~ msgid "Unable to mark failure on action %s. Database error."
1910
+ #~ msgstr "Nu pot marca eșecul pentru acțiunea %s. Eroare la baza de date."
1911
+
1912
+ #~ msgid "Unable to unlock claim on action %s. Database error."
1913
+ #~ msgstr ""
1914
+ #~ "Nu pot debloca revendicarea pentru acțiunea %s. Eroare la baza de date."
1915
+
1916
+ #~ msgid "Unable to unlock claim %s. Database error."
1917
+ #~ msgstr "Nu pot debloca revendicarea %s. Eroare la baza de date."
1918
+
1919
+ #~ msgid "The group \"%s\" does not exist."
1920
+ #~ msgstr "Grupul „%s” nu există."
1921
+
1922
+ #~ msgid "Unable to claim actions. Database error."
1923
+ #~ msgstr "Nu pot să revendic acțiuni. Eroare la baza de date."
1924
+
1925
+ #~ msgid "Unidentified action %s"
1926
+ #~ msgstr "Acțiune %s neidentificată"
1927
+
1928
+ #~ msgid "Unable to save action."
1929
+ #~ msgstr "Nu pot salva acțiunea."
1930
+
1931
+ #~ msgid "Error saving action: %s"
1932
+ #~ msgstr "Eroare la salvarea acțiunii: %s"
1933
+
1934
+ #~ msgid "%d scheduled task completed."
1935
+ #~ msgid_plural "%d scheduled tasks completed."
1936
+ #~ msgstr[0] "%d sarcină programată finalizată."
1937
+ #~ msgstr[1] "%d sarcini programate finalizate."
1938
+ #~ msgstr[2] "%d de sarcini programate finalizate."
1939
+
1940
+ #~ msgid "There was an error running the action scheduler: %s"
1941
+ #~ msgstr "A fost o eroare la rularea planificatorului de acțiuni: %s"
1942
+
1943
+ #~ msgid "%d batch executed."
1944
+ #~ msgid_plural "%d batches executed."
1945
+ #~ msgstr[0] "%d pachet executat."
1946
+ #~ msgstr[1] "%d pachete executate."
1947
+ #~ msgstr[2] "%d de pachete executate."
1948
+
1949
+ #~ msgid "Found %d scheduled task"
1950
+ #~ msgid_plural "Found %d scheduled tasks"
1951
+ #~ msgstr[0] "S-a găsit o sarcină programată"
1952
+ #~ msgstr[1] "S-au găsit %d sarcini programate"
1953
+ #~ msgstr[2] "S-au găsit %d de sarcini programate"
1954
+
1955
+ #~ msgid "Attempting to reduce used memory..."
1956
+ #~ msgstr "Încerc să reduc memoria utilizată..."
1957
+
1958
+ #~ msgid "second"
1959
+ #~ msgid_plural "seconds"
1960
+ #~ msgstr[0] "secundă"
1961
+ #~ msgstr[1] "secunde"
1962
+ #~ msgstr[2] "de secunde"
1963
+
1964
+ #~ msgid "Error processing action %1$s: %2$s"
1965
+ #~ msgstr "Eroare la procesarea acțiunii %1$s: %2$s"
1966
+
1967
+ #~ msgid "Completed processing action %s"
1968
+ #~ msgstr "Procesarea acțiunii %s finalizată"
1969
+
1970
+ #~ msgid "Started processing action %s"
1971
+ #~ msgstr "Procesarea acțiunii %s începută"
1972
+
1973
+ #~ msgid "The claim has been lost. Aborting current batch."
1974
+ #~ msgstr "Revendicarea a fost pierdută. Anulez pachetul curent."
1975
+
1976
+ #~ msgid "Running %d action"
1977
+ #~ msgid_plural "Running %d actions"
1978
+ #~ msgstr[0] "Rulez o acțiune"
1979
+ #~ msgstr[1] "Rulez %d acțiuni"
1980
+ #~ msgstr[2] "Rulez %d de acțiuni"
1981
+
1982
+ #~ msgid "There are too many concurrent batches."
1983
+ #~ msgstr "Există prea multe pachete concurente."
1984
+
1985
+ #~ msgid ""
1986
+ #~ "There are too many concurrent batches, but the run is forced to continue."
1987
+ #~ msgstr ""
1988
+ #~ "Există prea multe pachete concurente, dar rularea este forțată să "
1989
+ #~ "continue."
1990
+
1991
+ #~ msgid "Canceled"
1992
+ #~ msgstr "Anulată"
1993
+
1994
+ #~ msgid "Failed"
1995
+ #~ msgstr "Eșuată"
1996
+
1997
+ #~ msgid "In-progress"
1998
+ #~ msgstr "În desfășurare"
1999
+
2000
+ #~ msgid "Invalid schedule. Cannot save action."
2001
+ #~ msgstr "Programare invalidă. Nu pot salva acțiunea."
2002
+
2003
+ #~ msgid "Every minute"
2004
+ #~ msgstr "În fiecare minut"
2005
+
2006
+ #~ msgid "action ignored"
2007
+ #~ msgstr "acțiune ignorată"
2008
+
2009
+ #~ msgid "action reset"
2010
+ #~ msgstr "resetare acțiune"
2011
+
2012
+ #~ msgid "unexpected shutdown: PHP Fatal error %s in %s on line %s"
2013
+ #~ msgstr "oprire neașteptată: eroare fatală PHP %s în %s pe linia %s"
2014
+
2015
+ #~ msgid "action timed out after %s seconds"
2016
+ #~ msgstr "acțiunea a expirat după %s secunde"
2017
+
2018
+ #~ msgid "action failed: %s"
2019
+ #~ msgstr "acțiune eșuată: %s"
2020
+
2021
+ #~ msgid "action complete"
2022
+ #~ msgstr "acțiune finalizată"
2023
+
2024
+ #~ msgid "action started"
2025
+ #~ msgstr "acțiune începută"
2026
+
2027
+ #~ msgid "action canceled"
2028
+ #~ msgstr "acțiune anulată"
2029
+
2030
+ #~ msgid "action created"
2031
+ #~ msgstr "acțiune creată"
2032
+
2033
+ #~ msgid "Search hook, args and claim ID"
2034
+ #~ msgstr "Caută cârlig, argumente și ID revendicare"
2035
+
2036
+ #~ msgid " (%s)"
2037
+ #~ msgstr " (%s)"
2038
+
2039
+ #~ msgid " (%s ago)"
2040
+ #~ msgstr " (acum %s)"
2041
+
2042
+ #~ msgid "Could not process change for action: \"%s\" (ID: %d). Error: %s"
2043
+ #~ msgstr ""
2044
+ #~ "Nu am putut procesa modificarea pentru acțiunea: „%s” (ID: %d). Eroare: %s"
2045
+
2046
+ #~ msgid "Successfully processed change for action: %s"
2047
+ #~ msgstr "Modificare procesată cu succes pentru acțiunea: %s"
2048
+
2049
+ #~ msgid "Successfully canceled action: %s"
2050
+ #~ msgstr "Acțiune anulată cu succes: %s"
2051
+
2052
+ #~ msgid "Successfully executed action: %s"
2053
+ #~ msgstr "Acțiune executată cu succes: %s"
2054
+
2055
+ #~ msgid ""
2056
+ #~ "Maximum simultaneous batches already in progress (%s queues). No actions "
2057
+ #~ "will be processed until the current batches are complete."
2058
+ #~ msgstr ""
2059
+ #~ "Numărul maxim de pachete simultane este deja în desfășurare (%s "
2060
+ #~ "interogări). Nu va fi procesată nicio acțiune până când pachetele actuale "
2061
+ #~ "nu sunt finalizate."
2062
+
2063
+ #~ msgid "Non-repeating"
2064
+ #~ msgstr "Fără repetare"
2065
+
2066
+ #~ msgid "Every %s"
2067
+ #~ msgstr "La fiecare %s"
2068
+
2069
+ #~ msgid "Now!"
2070
+ #~ msgstr "Acum!"
2071
+
2072
+ #~ msgid "%s second"
2073
+ #~ msgid_plural "%s seconds"
2074
+ #~ msgstr[0] "O secundă"
2075
+ #~ msgstr[1] "%s secunde"
2076
+ #~ msgstr[2] "%s de secunde"
2077
+
2078
+ #~ msgid "%s minute"
2079
+ #~ msgid_plural "%s minutes"
2080
+ #~ msgstr[0] "Un minut"
2081
+ #~ msgstr[1] "%s minute"
2082
+ #~ msgstr[2] "%s de minute"
2083
+
2084
+ #~ msgid "%s hour"
2085
+ #~ msgid_plural "%s hours"
2086
+ #~ msgstr[0] "O oră"
2087
+ #~ msgstr[1] "%s ore"
2088
+ #~ msgstr[2] "%s de ore"
2089
+
2090
+ #~ msgid "%s day"
2091
+ #~ msgid_plural "%s days"
2092
+ #~ msgstr[0] "O zi"
2093
+ #~ msgstr[1] "%s zile"
2094
+ #~ msgstr[2] "%s de zile"
2095
+
2096
+ #~ msgid "%s week"
2097
+ #~ msgid_plural "%s weeks"
2098
+ #~ msgstr[0] "O săptămână"
2099
+ #~ msgstr[1] "%s săptămâni"
2100
+ #~ msgstr[2] "%s de săptămâni"
2101
+
2102
+ #~ msgid "%s month"
2103
+ #~ msgid_plural "%s months"
2104
+ #~ msgstr[0] "O lună"
2105
+ #~ msgstr[1] "%s luni"
2106
+ #~ msgstr[2] "%s de luni"
2107
+
2108
+ #~ msgid "%s year"
2109
+ #~ msgid_plural "%s years"
2110
+ #~ msgstr[0] "Un an"
2111
+ #~ msgstr[1] "%s ani"
2112
+ #~ msgstr[2] "%s de ani"
2113
+
2114
+ #~ msgid "Cancel the action now to avoid it being run in future"
2115
+ #~ msgstr "Anulează acțiunea acum pentru a evita rularea ei în viitor"
2116
+
2117
+ #~ msgid "Process the action now as if it were run as part of a queue"
2118
+ #~ msgstr ""
2119
+ #~ "Procesează acțiunea acum ca și cum ar fi rulată ca parte dintr-o coadă"
2120
+
2121
+ #~ msgid "Run"
2122
+ #~ msgstr "Rulează"
2123
+
2124
+ #~ msgid "Claim ID"
2125
+ #~ msgstr "ID revendicare"
2126
+
2127
+ #~ msgid "Log"
2128
+ #~ msgstr "Jurnal"
2129
+
2130
+ #~ msgid "Scheduled Date"
2131
+ #~ msgstr "Dată programată"
2132
+
2133
+ #~ msgid "Recurrence"
2134
+ #~ msgstr "Recurență"
2135
+
2136
+ #~ msgid "Group"
2137
+ #~ msgstr "Grup"
2138
+
2139
+ #~ msgid "Arguments"
2140
+ #~ msgstr "Argumente"
2141
+
2142
+ #~ msgid "Hook"
2143
+ #~ msgstr "Cârlig"
2144
+
2145
+ #~ msgid ""
2146
+ #~ "Action [%s] has invalid arguments. It cannot be JSON decoded to an array."
2147
+ #~ msgstr ""
2148
+ #~ "Acțiunea [%s] are argumente invalide. JSON nu se poate fi decodat într-un "
2149
+ #~ "tablou."
2150
+
2151
+ #~ msgid "Scheduled Actions"
2152
+ #~ msgstr "Acțiuni programate"
2153
+
2154
+ #~ msgid "Order Failed: #{order_number}"
2155
+ #~ msgstr "Comandă eșuată: #{order_number}"
2156
+
2157
+ #~ msgid "[{site_title}]: Order #{order_number} has failed"
2158
+ #~ msgstr "[{site_title}]: comanda #{order_number} a eșuat"
2159
+
2160
+ #~ msgid "Order Refunded: {order_number}"
2161
+ #~ msgstr "Comandă rambursată: {order_number}"
2162
+
2163
+ #~ msgid "Partial Refund: Order {order_number}"
2164
+ #~ msgstr "Rambursare parțială: comanda {order_number}"
2165
+
2166
+ #~ msgid "Thank you for your payment"
2167
+ #~ msgstr "Îți mulțumim pentru plată"
2168
+
2169
+ #~ msgid "Payment received for your order"
2170
+ #~ msgstr "Am primit plata pentru comanda ta"
2171
+
2172
+ #~ msgid "Invoice for order #{order_number} on {site_title}"
2173
+ #~ msgstr "Factură pentru comanda #{order_number} pentru {site_title}"
2174
+
2175
+ #~ msgid "Thanks for shopping with us"
2176
+ #~ msgstr "Îți mulțumim că faci cumpărături de la noi"
2177
+
2178
+ #~ msgid "Order Cancelled: #{order_number}"
2179
+ #~ msgstr "Comandă anulată: #{order_number}"
2180
+
2181
+ #~ msgid ""
2182
+ #~ "[{site_title}]: {order_billing_full_name} has cancelled order "
2183
+ #~ "#{order_number}"
2184
+ #~ msgstr ""
2185
+ #~ "[{site_title}]: {order_billing_full_name} a anulat comanda #{order_number}"
2186
+
2187
+ #~ msgid "%1$s in %2$s on line %3$s"
2188
+ #~ msgstr "%1$s în %2$s pe linia %3$s"
2189
+
2190
+ #~ msgid "WooCommerce Customer Payment Tokens"
2191
+ #~ msgstr "Tokeni WooCommerce de plată pentru client"
2192
+
2193
+ #~ msgid "WooCommerce Customer Downloads"
2194
+ #~ msgstr "Descărcări client WooCommerce"
2195
+
2196
+ #~ msgid "WooCommerce Customer Orders"
2197
+ #~ msgstr "Comenzi client WooCommerce"
2198
+
2199
+ #~ msgid "WooCommerce Customer Data"
2200
+ #~ msgstr "Date clienți WooCommerce"
2201
+
2202
+ #~ msgid ""
2203
+ #~ "%1$s is not valid. You can look up the correct Eircode <a target=\"_blank"
2204
+ #~ "\" href=\"%2$s\">here</a>."
2205
+ #~ msgstr ""
2206
+ #~ "%1$s nu este valid. Poți găsi Eircode-ul corect <a target=\"_blank\" href="
2207
+ #~ "\"%2$s\">aici</a>."
2208
+
2209
+ #~ msgid ""
2210
+ #~ "Sorry, we do not have enough \"%1$s\" in stock to fulfill your order "
2211
+ #~ "(%2$s available). We apologize for any inconvenience caused."
2212
+ #~ msgstr ""
2213
+ #~ "Regret, stocul pentru „%1$s” nu este suficient pentru a-ți îndeplini "
2214
+ #~ "comanda (%2$s disponibile). Ne cerem scuze pentru eventualele neplăceri "
2215
+ #~ "cauzate."
2216
+
2217
+ #~ msgid "Shipping instance ID."
2218
+ #~ msgstr "ID instanță de livrare."
2219
+
2220
+ #~ msgid "An identifier for the group this setting belongs to."
2221
+ #~ msgstr "Un identificator pentru grupul de care aparține această setare."
2222
+
2223
+ #~ msgid "Attributes totals."
2224
+ #~ msgstr "Total atribute."
2225
+
2226
+ #~ msgid "Tags totals."
2227
+ #~ msgstr "Total etichete."
2228
+
2229
+ #~ msgid "Categories totals."
2230
+ #~ msgstr "Total categorii."
2231
+
2232
+ #~ msgid "Reviews totals."
2233
+ #~ msgstr "Total recenzii."
2234
+
2235
+ #~ msgid "Coupons totals."
2236
+ #~ msgstr "Total cupoane."
2237
+
2238
+ #~ msgid "Customers totals."
2239
+ #~ msgstr "Total clienți."
2240
+
2241
+ #~ msgid "Products totals."
2242
+ #~ msgstr "Total produse."
2243
+
2244
+ #~ msgid "Orders totals."
2245
+ #~ msgstr "Total comenzi."
2246
+
2247
+ #~ msgid "Amount of reviews."
2248
+ #~ msgstr "Număr de recenzii."
2249
+
2250
+ #~ msgid "Review type name."
2251
+ #~ msgstr "Revezi nume tip."
2252
+
2253
+ #~ msgid "Amount of products."
2254
+ #~ msgstr "Număr de produse."
2255
+
2256
+ #~ msgid "Product type name."
2257
+ #~ msgstr "Nume tip de produs."
2258
+
2259
+ #~ msgid "Amount of orders."
2260
+ #~ msgstr "Număr de comenzi."
2261
+
2262
+ #~ msgid "Order status name."
2263
+ #~ msgstr "Nume stare comandă."
2264
+
2265
+ #~ msgid "Amount of customers."
2266
+ #~ msgstr "Număr de clienți."
2267
+
2268
+ #~ msgid "Customer type name."
2269
+ #~ msgstr "Nume tip de client."
2270
+
2271
+ #~ msgid "Non-paying customer"
2272
+ #~ msgstr "Client neplătit"
2273
+
2274
+ #~ msgid "Amount of coupons."
2275
+ #~ msgstr "Număr de cupoane."
2276
+
2277
+ #~ msgid "Coupon type name."
2278
+ #~ msgstr "Nume tip de cupon."
2279
+
2280
+ #~ msgid "Limit result set to products with specified stock status."
2281
+ #~ msgstr ""
2282
+ #~ "Limitează setul de rezultate la produse cu starea stocului specificată."
2283
+
2284
+ #~ msgid "Controls the stock status of the product."
2285
+ #~ msgstr "Controlează starea stocului produsului."
2286
+
2287
+ #~ msgid "File ID."
2288
+ #~ msgstr "ID fișier."
2289
+
2290
+ #~ msgid "Variation status."
2291
+ #~ msgstr "Stare variație."
2292
+
2293
+ #~ msgid "Invalid review ID."
2294
+ #~ msgstr "ID recenzie invalid."
2295
+
2296
+ #~ msgid "Ensure result set excludes reviews assigned to specific user IDs."
2297
+ #~ msgstr ""
2298
+ #~ "Asigură-te că setul de rezultate exclude recenziile atribuite anumitor ID-"
2299
+ #~ "uri de utilizator."
2300
+
2301
+ #~ msgid "Avatar URLs for the object reviewer."
2302
+ #~ msgstr "URL-uri avatar pentru recenzentul de obiecte."
2303
+
2304
+ #~ msgid "Avatar URL with image size of %d pixels."
2305
+ #~ msgstr "URL avatar cu dimensiunea imaginii de %d pixeli."
2306
+
2307
+ #~ msgid "Status of the review."
2308
+ #~ msgstr "Starea recenziei."
2309
+
2310
+ #~ msgid "Unique identifier for the product that the review belongs to."
2311
+ #~ msgstr "Identificator unic pentru produsul căruia îi aparține recenzia."
2312
+
2313
+ #~ msgid "The object cannot be deleted."
2314
+ #~ msgstr "Obiectul nu poate fi șters."
2315
+
2316
+ #~ msgid "The object has already been trashed."
2317
+ #~ msgstr "Obiectul a fost deja aruncat la gunoi."
2318
+
2319
+ #~ msgid "The object does not support trashing. Set '%s' to delete."
2320
+ #~ msgstr "Obiectul nu acceptă mutarea la gunoi. Setează '%s' pentru a șterge."
2321
+
2322
+ #~ msgid "Updating review failed."
2323
+ #~ msgstr "Actualizarea revizuirii a eșuat."
2324
+
2325
+ #~ msgid "Invalid review content."
2326
+ #~ msgstr "Conținut recenzie invalid."
2327
+
2328
+ #~ msgid "Updating review status failed."
2329
+ #~ msgstr "Actualizarea stării recenziei a eșuat."
2330
+
2331
+ #~ msgid "Sorry, you are not allowed to change the comment type."
2332
+ #~ msgstr "Regret, nu ai voie să modifici tipul de comentariu."
2333
+
2334
+ #~ msgid "Product review field exceeds maximum length allowed."
2335
+ #~ msgstr "Câmpul de recenzie a produsului depășește lungimea maximă permisă."
2336
+
2337
+ #~ msgid "Invalid product review content."
2338
+ #~ msgstr "Conținut recenzie produs invalid."
2339
+
2340
+ #~ msgid "Cannot create existing product review."
2341
+ #~ msgstr "Nu se poate crea o recenzie pentru produsul existent."
2342
+
2343
+ #~ msgid "Unique identifier for the product."
2344
+ #~ msgstr "Identificator unic pentru produs."
2345
+
2346
+ #~ msgid "Supported features for this payment gateway."
2347
+ #~ msgstr "Funcționalități acceptate pentru acest gateway de plată."
2348
+
2349
+ #~ msgid ""
2350
+ #~ "If true, this note will be attributed to the current user. If false, the "
2351
+ #~ "note will be attributed to the system."
2352
+ #~ msgstr ""
2353
+ #~ "Dacă este adevărat, această notă va fi atribuită utilizatorului actual. "
2354
+ #~ "Dacă este fals, nota va fi atribuită sistemului."
2355
+
2356
+ #~ msgid "Order note author."
2357
+ #~ msgstr "Notă autor comandă."
2358
+
2359
+ #~ msgid "Full name of currency."
2360
+ #~ msgstr "Nume complet pentru monedă."
2361
+
2362
+ #~ msgid "There are no currencies matching these parameters."
2363
+ #~ msgstr "Nu se potrivește nicio monedă cu acești parametri."
2364
+
2365
+ #~ msgid "ISO4217 currency code."
2366
+ #~ msgstr "Cod monedă ISO 4217."
2367
+
2368
+ #~ msgid "Data resource description."
2369
+ #~ msgstr "Descriere resursă de date."
2370
+
2371
+ #~ msgid "Data resource ID."
2372
+ #~ msgstr "ID resursă de date."
2373
+
2374
+ #~ msgid "List of supported currencies."
2375
+ #~ msgstr "Lista monedelor acceptate."
2376
+
2377
+ #~ msgid "List of supported states in a given country."
2378
+ #~ msgstr "Lista provinciilor (județelor) acceptate într-o anumită țară."
2379
+
2380
+ #~ msgid "List of supported continents, countries, and states."
2381
+ #~ msgstr "Lista continentelor, țărilor și provinciilor (județelor) acceptate."
2382
+
2383
+ #~ msgid "The unit weights are defined in for this country."
2384
+ #~ msgstr ""
2385
+ #~ "Unitățile de măsură pentru greutate sunt definite pentru această țară."
2386
+
2387
+ #~ msgid "Thousands separator for displayed prices in this country."
2388
+ #~ msgstr "Separator pentru mii pentru prețurile afișate în această țară."
2389
+
2390
+ #~ msgid "Full name of state."
2391
+ #~ msgstr "Nume complet pentru provincie (județ)."
2392
+
2393
+ #~ msgid "List of states in this country."
2394
+ #~ msgstr "Lista provinciilor (județelor) din această țară."
2395
+
2396
+ #~ msgid "Number of decimal points shown in displayed prices for this country."
2397
+ #~ msgstr ""
2398
+ #~ "Numărul de zecimale arătate în prețurile afișate pentru această țară."
2399
+
2400
+ #~ msgid "Full name of country."
2401
+ #~ msgstr "Nume complet pentru țară."
2402
+
2403
+ #~ msgid "The unit lengths are defined in for this country."
2404
+ #~ msgstr ""
2405
+ #~ "Unitățile de măsură pentru lungime sunt definite pentru această țară."
2406
+
2407
+ #~ msgid "Decimal separator for displayed prices for this country."
2408
+ #~ msgstr "Separator pentru zeci pentru prețurile afișate în această țară."
2409
+
2410
+ #~ msgid "Currency symbol position for this country."
2411
+ #~ msgstr "Poziția simbolului monedei pentru această țară."
2412
+
2413
+ #~ msgid "Default ISO4127 alpha-3 currency code for the country."
2414
+ #~ msgstr "Codul de monedă implicit ISO 4127, din trei litere, pentru țară."
2415
+
2416
+ #~ msgid "ISO3166 alpha-2 country code."
2417
+ #~ msgstr "Cod țară ISO 3166, din două litere."
2418
+
2419
+ #~ msgid "List of countries on this continent."
2420
+ #~ msgstr "Lista țărilor de pe acest continent."
2421
+
2422
+ #~ msgid "Full name of continent."
2423
+ #~ msgstr "Nume complet pentru continent."
2424
+
2425
+ #~ msgid "There are no locations matching these parameters."
2426
+ #~ msgstr "Nu se potrivește nicio locație cu acești parametri."
2427
+
2428
+ #~ msgid "2 character continent code."
2429
+ #~ msgstr "Cod continent din două caractere."
2430
+
2431
+ #~ msgid "View affected templates"
2432
+ #~ msgstr "Vezi șabloanele afectate"
2433
+
2434
+ #~ msgid ""
2435
+ #~ "If you copied over a template file to change something, then you will "
2436
+ #~ "need to copy the new version of the template and apply your changes again."
2437
+ #~ msgstr ""
2438
+ #~ "Dacă ai copiat peste un fișier șablon pentru a modifica ceva, atunci "
2439
+ #~ "trebuie să copiezi noua versiune a șablonului și să aplici modificările "
2440
+ #~ "din nou."
2441
+
2442
+ #~ msgid ""
2443
+ #~ "Update your theme to the latest version. If no update is available "
2444
+ #~ "contact your theme author asking about compatibility with the current "
2445
+ #~ "WooCommerce version."
2446
+ #~ msgstr ""
2447
+ #~ "Actualizează-ți tema la ultima versiune. Dacă nu este nicio actualizare "
2448
+ #~ "disponibilă contactează autorul temei tale și întreabă-l despre "
2449
+ #~ "compatibilitatea cu versiunea actuală de WooCommerce."
2450
+
2451
+ #~ msgid "Your {site_title} account has been created!"
2452
+ #~ msgstr "Contul tău {site_title} a fost creat!"
2453
+
2454
+ #~ msgid ""
2455
+ #~ "<strong>Your theme (%s) contains outdated copies of some WooCommerce "
2456
+ #~ "template files.</strong> These files may need updating to ensure they are "
2457
+ #~ "compatible with the current version of WooCommerce. Suggestions to fix "
2458
+ #~ "this:"
2459
+ #~ msgstr ""
2460
+ #~ "<strong>Tema ta (%s) conține niște copii ale fișierelor șablon "
2461
+ #~ "WooCommerce învechite.</strong> Este posibil ca aceste fișiere să "
2462
+ #~ "necesite actualizare pentru a se asigura că acestea sunt compatibile cu "
2463
+ #~ "versiunea curentă WooCommerce. Sugestii pentru a repara acest lucru:"
2464
+
2465
+ #~ msgid "Export all categories"
2466
+ #~ msgstr "Exportă toate categoriile"
2467
+
2468
+ #~ msgid "Which product category should be exported?"
2469
+ #~ msgstr "Care categorie de produse ar trebui exportată?"
2470
+
2471
+ #~ msgid ""
2472
+ #~ "This is the attachment ID, or image URL, used for placeholder images in "
2473
+ #~ "the product catalog. Products with no image will use this."
2474
+ #~ msgstr ""
2475
+ #~ "Acesta este ID-ul atașamentului sau adresa URL a imaginii, utilizat "
2476
+ #~ "pentru substituentul imaginilor în catalogul de produse. Produsele fără "
2477
+ #~ "imagine vor folosi acest lucru."
2478
+
2479
+ #~ msgid "Enter attachment ID or URL to an image"
2480
+ #~ msgstr "Introdu ID-ul sau URL-ul atașamentului pentru o imagine"
2481
+
2482
+ #~ msgid "Placeholder image"
2483
+ #~ msgstr "Imagine substituent"
2484
+
2485
+ #~ msgid "The \"%s\" payment method is currently disabled"
2486
+ #~ msgstr "Acum metoda de plată „%s” este dezactivată"
2487
+
2488
+ #~ msgid "The \"%s\" payment method is currently enabled"
2489
+ #~ msgstr "Acum metoda de plată „%s” este activată"
2490
+
2491
+ #~ msgid "Set up the \"%s\" payment method"
2492
+ #~ msgstr "Inițializează metoda de plată „%s”"
2493
+
2494
+ #~ msgid "Manage the \"%s\" payment method"
2495
+ #~ msgstr "Administrează metoda de plată „%s”"
2496
+
2497
+ #~ msgid "Move down"
2498
+ #~ msgstr "Mută în jos"
2499
+
2500
+ #~ msgid "Move the \"%s\" payment method down"
2501
+ #~ msgstr "Mută în jos metoda de plată „%s”"
2502
+
2503
+ #~ msgid "Move up"
2504
+ #~ msgstr "Mută în sus"
2505
+
2506
+ #~ msgid "Move the \"%s\" payment method up"
2507
+ #~ msgstr "Mută în sus metoda de plată „%s”"
2508
+
2509
+ #~ msgid ""
2510
+ #~ "When handling an %s, should access to downloadable files be revoked and "
2511
+ #~ "download logs cleared?"
2512
+ #~ msgstr ""
2513
+ #~ "La manipularea unui %s, ar trebui să fie revocat accesul la fișiere "
2514
+ #~ "descărcabile și să se elimine jurnalele de descărcări?"
2515
+
2516
+ #~ msgid ""
2517
+ #~ "When handling an %s, should personal data within orders be retained or "
2518
+ #~ "removed?"
2519
+ #~ msgstr ""
2520
+ #~ "La manipularea unui %s, ar trebui ca datele personale din cadrul "
2521
+ #~ "comenzilor să fie păstrate sau eliminate?"
2522
+
2523
+ #~ msgid ""
2524
+ #~ "Enter a number to set stock quantity at the variation level. Use a "
2525
+ #~ "variation's 'Manage stock?' check box above to enable/disable stock "
2526
+ #~ "management at the variation level."
2527
+ #~ msgstr ""
2528
+ #~ "Introdu un număr pentru a seta cantitatea stocului la nivel de variație. "
2529
+ #~ "Folosește o bifă „Administrează stocul?” a variației de mai sus pentru a "
2530
+ #~ "activa/dezactiva gestionarea stocurilor la nivel de variație."
2531
+
2532
+ #~ msgid "When product stock reaches this amount you will be notified by email"
2533
+ #~ msgstr ""
2534
+ #~ "Când stocul unui produs ajunge la această cantitate, vei fi notificat "
2535
+ #~ "prin email"
2536
+
2537
+ #~ msgid "Low stock amount"
2538
+ #~ msgstr "Cantitate mică în stoc"
2539
+
2540
+ #~ msgid "Set up PayPal for me using this email:"
2541
+ #~ msgstr "Inițializează PayPal pentru mine folosind acest email:"
2542
+
2543
+ #~ msgid "WooCommerce PayPal Checkout Gateway"
2544
+ #~ msgstr "Gateway finalizare comandă prin PayPal pentru WooCommerce"
2545
+
2546
+ #~ msgid "Set up Stripe for me using this email:"
2547
+ #~ msgstr "Inițializează Stripe pentru mine folosind acest email:"
2548
+
2549
+ #~ msgid "We'll use %1$s for product weight and %2$s for product dimensions."
2550
+ #~ msgstr ""
2551
+ #~ "Vom folosi %1$s pentru greutatea produsului și %2$s pentru dimensiunile "
2552
+ #~ "produsului."
2553
+
2554
+ #~ msgid "ShipStation"
2555
+ #~ msgstr "ShipStation"
2556
+
2557
+ #~ msgid "ShipStation icon"
2558
+ #~ msgstr "Icon ShipStation"
2559
+
2560
+ #~ msgid ""
2561
+ #~ "We recommend using ShipStation to save time at the Post Office by "
2562
+ #~ "printing your shipping labels at home. Try ShipStation free for 30 days."
2563
+ #~ msgstr ""
2564
+ #~ "Îți recomandăm să folosești ShipStation pentru a economisi timp la "
2565
+ #~ "Oficiul poștal imprimându-ți etichetele de transport acasă. Încearcă "
2566
+ #~ "ShipStation gratuit timp de 30 de zile."
2567
+
2568
+ #~ msgid "WooCommerce Services icon"
2569
+ #~ msgstr "Icon servicii WooCommerce"
2570
+
2571
+ #~ msgid ""
2572
+ #~ "We recommend WooCommerce Services & Jetpack. These plugins will save you "
2573
+ #~ "time at the Post Office by enabling you to print your shipping labels at "
2574
+ #~ "home."
2575
+ #~ msgstr ""
2576
+ #~ "Îți recomandăm Servicii WooCommerce & Jetpack. Aceste module îți vor "
2577
+ #~ "economisi timp la Oficiul poștal, permițându-ți să imprimai etichetele de "
2578
+ #~ "expediere la domiciliu."
2579
+
2580
+ #~ msgid "Print shipping labels at home"
2581
+ #~ msgstr "Imprimă etichete de transport la domiciliu"
2582
+
2583
+ #~ msgid ""
2584
+ #~ "A live rate is the exact cost to ship an order, quoted directly from the "
2585
+ #~ "shipping carrier."
2586
+ #~ msgstr ""
2587
+ #~ "O rată live reprezintă costul exact pentru trimiterea unei comenzi, citat "
2588
+ #~ "direct de la purtătorul de marfă."
2589
+
2590
+ #~ msgid ""
2591
+ #~ "If you'd like to offer <span class=\"help_tip\" data-tip=\"%1$s\">live "
2592
+ #~ "rates</span> from a specific carrier (e.g. UPS) you can find a variety of "
2593
+ #~ "extensions available for WooCommerce <a href=\"%2$s\" target=\"_blank"
2594
+ #~ "\">here</a>."
2595
+ #~ msgstr ""
2596
+ #~ "Dacă ți-ar plăcea să oferi <span class=\"help_tip\" data-tip=\"%1$s"
2597
+ #~ "\">rate live</span> de la un anumit purtător (de exemplu UPS) poți găsi o "
2598
+ #~ "varietate de module disponibile pentru WooCommerce <a href=\"%2$s\" "
2599
+ #~ "target=\"_blank\">aici</a>."
2600
+
2601
+ #~ msgid ""
2602
+ #~ "We've created two Shipping Zones - for %s and for the rest of the world. "
2603
+ #~ "Below you can set Flat Rate shipping costs for these Zones or offer Free "
2604
+ #~ "Shipping."
2605
+ #~ msgstr ""
2606
+ #~ "Am creat două Zone de Transport - pentru %s și pentru restul lumii. Mai "
2607
+ #~ "jos poți stabili costuri de expediere pentru aceste zone sau poți oferi "
2608
+ #~ "transport gratuit."
2609
+
2610
+ #~ msgid "Yards"
2611
+ #~ msgstr "Yarzi"
2612
+
2613
+ #~ msgid "Inches"
2614
+ #~ msgstr "Țoli"
2615
+
2616
+ #~ msgid "Millimeters"
2617
+ #~ msgstr "Milimetri"
2618
+
2619
+ #~ msgid "Centimeters"
2620
+ #~ msgstr "Centimetri"
2621
+
2622
+ #~ msgid "Meters"
2623
+ #~ msgstr "Metri"
2624
+
2625
+ #~ msgid "Ounces"
2626
+ #~ msgstr "Uncii"
2627
+
2628
+ #~ msgid "Pounds"
2629
+ #~ msgstr "Livre"
2630
+
2631
+ #~ msgid "Grams"
2632
+ #~ msgstr "Grame"
2633
+
2634
+ #~ msgid "Kilograms"
2635
+ #~ msgstr "Kilograme"
2636
+
2637
+ #~ msgid ""
2638
+ #~ "Stripe and PayPal setup are powered by Jetpack and WooCommerce Services."
2639
+ #~ msgstr ""
2640
+ #~ "Inițializările Stripe și PayPal sunt propulsate prin Jetpack și "
2641
+ #~ "WooCommerce Services."
2642
+
2643
+ #~ msgid "PayPal setup is powered by Jetpack and WooCommerce Services."
2644
+ #~ msgstr ""
2645
+ #~ "Inițializarea PayPal este propulsată prin Jetpack și WooCommerce Services."
2646
+
2647
+ #~ msgid "Stripe setup is powered by Jetpack and WooCommerce Services."
2648
+ #~ msgstr ""
2649
+ #~ "Inițializarea Stripe este propulsată prin Jetpack și WooCommerce Services."
2650
+
2651
+ #~ msgid "Item moved down"
2652
+ #~ msgstr "Element mutat în jos"
2653
+
2654
+ #~ msgid "Item moved up"
2655
+ #~ msgstr "Element mutat în sus"
2656
+
2657
+ #~ msgid "You may need to manually restore the item's stock."
2658
+ #~ msgstr "S-ar putea să fie nevoie să restaurezi manual stocul de produse."
2659
+
2660
+ #~ msgid "Boquer&oacute;n"
2661
+ #~ msgstr "Boquer&oacute;n"
2662
+
2663
+ #~ msgid "Alto Paraguay"
2664
+ #~ msgstr "Alto Paraguay"
2665
+
2666
+ #~ msgid "Presidente Hayes"
2667
+ #~ msgstr "Presidente Hayes"
2668
+
2669
+ #~ msgid "Canindey&uacute;"
2670
+ #~ msgstr "Canindey&uacute;"
2671
+
2672
+ #~ msgid "Amambay"
2673
+ #~ msgstr "Amambay"
2674
+
2675
+ #~ msgid "&Ntilde;eembuc&uacute;"
2676
+ #~ msgstr "&Ntilde;eembuc&uacute;"
2677
+
2678
+ #~ msgid "Alto Paran&aacute;"
2679
+ #~ msgstr "Alto Paran&aacute;"
2680
+
2681
+ #~ msgid "Paraguar&iacute;"
2682
+ #~ msgstr "Paraguar&iacute;"
2683
+
2684
+ #~ msgid "Itap&uacute;a"
2685
+ #~ msgstr "Itap&uacute;a"
2686
+
2687
+ #~ msgid "Caazap&aacute;"
2688
+ #~ msgstr "Caazap&aacute;"
2689
+
2690
+ #~ msgid "Caaguaz&uacute;"
2691
+ #~ msgstr "Caaguaz&uacute;"
2692
+
2693
+ #~ msgid "Guair&aacute;"
2694
+ #~ msgstr "Guair&aacute;"
2695
+
2696
+ #~ msgid "Cordillera"
2697
+ #~ msgstr "Cordillera"
2698
+
2699
+ #~ msgid "San Pedro"
2700
+ #~ msgstr "San Pedro"
2701
+
2702
+ #~ msgid "Concepci&oacute;n"
2703
+ #~ msgstr "Concepci&oacute;n"
2704
+
2705
+ #~ msgid "Sud Sardegna"
2706
+ #~ msgstr "Sardinia de Sud"
2707
+
2708
+ #~ msgid "Asunci&oacute;n"
2709
+ #~ msgstr "Asunci&oacute;n"
2710
+
2711
+ #~ msgid "Apartment, suite, unit etc."
2712
+ #~ msgstr "Apartament, garsonieră, unitate etc."
2713
+
2714
+ #~ msgid "%d API key permanently revoked."
2715
+ #~ msgid_plural "%d API keys permanently revoked."
2716
+ #~ msgstr[0] "O cheie API revocată definitiv."
2717
+ #~ msgstr[1] "%d chei API revocate definitiv."
2718
+ #~ msgstr[2] "%d de chei API revocate definitiv."
2719
+
2720
+ #~ msgid "Cannot set attributes due to invalid parent product."
2721
+ #~ msgstr "Nu pot seta atributele din cauza produsului părinte invalid."
2722
+
2723
+ #~ msgid "Install the WooCommerce Gutenberg Products Block"
2724
+ #~ msgstr "Instalează blocul de produse Gutenberg WooCommerce"
2725
+
2726
+ #~ msgid "Activate the Gutenberg Products Block"
2727
+ #~ msgstr "Activează blocul de produse Gutenberg"
2728
+
2729
+ #~ msgid ""
2730
+ #~ "We noticed you're experimenting with Gutenberg: Try the WooCommerce "
2731
+ #~ "Gutenberg Products Block for a powerful new way to feature products in "
2732
+ #~ "posts."
2733
+ #~ msgstr ""
2734
+ #~ "Am observat că testezi Gutenberg: încearcă blocul de produse Gutenberg "
2735
+ #~ "WooCommerce ca o nouă modalitate puternică de a prezenta produse în "
2736
+ #~ "articole."
2737
+
2738
+ #~ msgid ""
2739
+ #~ "This action cannot be reversed. Are you sure you wish to erase personal "
2740
+ #~ "data from the selected orders?"
2741
+ #~ msgstr ""
2742
+ #~ "Această acțiune nu poate fi anulată. Sigur vrei să ștergi datele "
2743
+ #~ "personale din comenzile selectate?"
2744
+
2745
+ #~ msgctxt "shipping packages"
2746
+ #~ msgid "Shipping %d"
2747
+ #~ msgstr "Livrarea %d"
2748
+
2749
+ #~ msgid "Payer PayPal address"
2750
+ #~ msgstr "Adresă PayPal plătitor"
2751
+
2752
+ #~ msgid "Payer last name"
2753
+ #~ msgstr "Nume plătitor"
2754
+
2755
+ #~ msgid "Payer first name"
2756
+ #~ msgstr "Prenume plătitor"
2757
+
2758
+ #~ msgid "Shipping Address"
2759
+ #~ msgstr "Adresă de livrare"
2760
+
2761
+ #~ msgid "Billing Address"
2762
+ #~ msgstr "Adresă de facturare"
2763
+
2764
+ #~ msgid "Shipping Address 1"
2765
+ #~ msgstr "Adresă de livrare 1"
2766
+
2767
+ #~ msgid "Billing Address 1"
2768
+ #~ msgstr "Adresă de facturare 1"
2769
+
2770
+ #~ msgid "MySQL version string."
2771
+ #~ msgstr "Șir de versiuni MySQL."
2772
+
2773
+ #~ msgid ""
2774
+ #~ "Your CSV needs to include columns in a specific order. %1$sClick here to "
2775
+ #~ "download a sample%2$s."
2776
+ #~ msgstr ""
2777
+ #~ "Fișierul tău CSV trebuie să includă coloane într-o anumită ordine. %1$sDă "
2778
+ #~ "clic aici pentru a descărca o mostră%2$s."
2779
+
2780
+ #~ msgid ""
2781
+ #~ "This will be how your name will be displayed in the account section and "
2782
+ #~ "in reviews"
2783
+ #~ msgstr "Așa va fi afișat numele tău în secțiunea cont și în recenzii"
2784
+
2785
+ #~ msgid "If you have a coupon code, please apply it below."
2786
+ #~ msgstr "Dacă ai un cod de cupon, te rog aplică-l mai jos."
2787
+
2788
+ #~ msgid "terms and conditions"
2789
+ #~ msgstr "termeni și condiții"
2790
+
2791
+ #~ msgid "privacy policy"
2792
+ #~ msgstr "politică de confidențialitate"
2793
+
2794
+ #~ msgid "United States (US) dollar"
2795
+ #~ msgstr "Dolar american (SUA)"
2796
+
2797
+ #~ msgid "eCheck ending in %1$s"
2798
+ #~ msgstr "eCheck se termină în %1$s"
2799
+
2800
+ #~ msgid ""
2801
+ #~ "PayPal allows us to send one address. If you are using PayPal for "
2802
+ #~ "shipping labels you may prefer to send the shipping address rather than "
2803
+ #~ "billing. Turning this option off may prevent PayPal Seller protection "
2804
+ #~ "from applying."
2805
+ #~ msgstr ""
2806
+ #~ "PayPal ne permite să trimitem o singură adresă. Dacă folosești PayPal "
2807
+ #~ "pentru etichete de livrare, poate preferi să trimiți adresa de livrare în "
2808
+ #~ "locul celei de facturare. Dacă dezactivezi această opțiune poți împiedica "
2809
+ #~ "aplicarea protecției vânzătorului PayPal."
2810
+
2811
+ #~ msgid ""
2812
+ #~ "Log PayPal events, such as IPN requests, inside %s Note: this may log "
2813
+ #~ "personal information. We recommend using this for debugging purposes only "
2814
+ #~ "and deleting the logs when finished."
2815
+ #~ msgstr ""
2816
+ #~ "Înregistrează evenimente PayPal, cum ar fi cereri IPN, în %s. Notă: poate "
2817
+ #~ "înregistra și informații personale. Recomandăm folosirea numai în scopuri "
2818
+ #~ "de depanare și ștergerea jurnalelor când ai terminat."
2819
+
2820
+ #~ msgid ""
2821
+ #~ "PayPal Standard redirects customers to PayPal to enter their payment "
2822
+ #~ "information."
2823
+ #~ msgstr ""
2824
+ #~ "PayPal Standard redirecționează clienții la PayPal pentru a le introduce "
2825
+ #~ "informațiile de plată."
2826
+
2827
+ #~ msgid "%1$s &ndash; %2$s"
2828
+ #~ msgstr "%1$s &ndash; %2$s"
2829
+
2830
+ #~ msgid "%1$s (#%2$s)"
2831
+ #~ msgstr "%1$s (#%2$s)"
2832
+
2833
+ #~ msgid "Any &quot;%1$s&quot; method"
2834
+ #~ msgstr "Orice metodă &bdquo;%1$s&rdquo;"
2835
+
2836
+ #~ msgid ""
2837
+ #~ "Take payments in person via checks. This offline gateway can also be "
2838
+ #~ "useful to test purchases."
2839
+ #~ msgstr ""
2840
+ #~ "Acceptă plăți personale prin cecuri. Acest gateway offline poate fi util "
2841
+ #~ "și pentru a testa cumpărăturile."
2842
+
2843
+ #~ msgid "Account details:"
2844
+ #~ msgstr "Detalii cont:"
2845
+
2846
+ #~ msgid ""
2847
+ #~ "Take payments in person via BACS. More commonly known as direct bank/wire "
2848
+ #~ "transfer"
2849
+ #~ msgstr ""
2850
+ #~ "Acceptă plăți personale prin transfer bancar (BACS). Numit frecvent "
2851
+ #~ "transfer bancar direct"
2852
+
2853
+ #~ msgctxt "Comma-separated list of search stopwords in your language"
2854
+ #~ msgid ""
2855
+ #~ "about,an,are,as,at,be,by,com,for,from,how,in,is,it,of,on,or,that,the,this,"
2856
+ #~ "to,was,what,when,where,who,will,with,www"
2857
+ #~ msgstr ""
2858
+ #~ "despre,un,e,ca,la,fii,de,com,pentru,la,cum,în,pe,sau,și,care,acesta,"
2859
+ #~ "aceasta,aceștia,acestea,fost,când,unde,cine,va,cu,www"
2860
+
2861
+ #~ msgid ""
2862
+ #~ "Optionally add some text for the terms checkbox that customers must "
2863
+ #~ "accept."
2864
+ #~ msgstr ""
2865
+ #~ "Opțional, poți adăuga un text pentru bifarea termenilor pe care clienții "
2866
+ #~ "trebuie să-i accepte."
2867
+
2868
+ #~ msgid "%s page"
2869
+ #~ msgstr "Pagină %s"
2870
+
2871
+ #~ msgid "No page set"
2872
+ #~ msgstr "Nicio pagină setată"
2873
+
2874
+ #~ msgid "Highlight required fields with an asterisk"
2875
+ #~ msgstr "Evidențiază câmpurile obligatorii cu un asterisc"
2876
+
2877
+ #~ msgid "I have read and agree to the website %s"
2878
+ #~ msgstr "Am citit și sunt de acord cu %s sitului web"
2879
+
2880
+ #~ msgid "Required"
2881
+ #~ msgstr "Obligatoriu"
2882
+
2883
+ #~ msgid "%s field"
2884
+ #~ msgstr "Câmp %s"
2885
+
2886
+ #~ msgid ""
2887
+ #~ "These options let you change the appearance of the WooCommerce checkout."
2888
+ #~ msgstr ""
2889
+ #~ "Aceste opțiuni îți permit să modifici aspectul finalizării WooCommerce."
2890
+
2891
+ #~ msgid ""
2892
+ #~ "Please see the <a href=\"https://www.paypal.com/us/webapps/mpp/ua/privacy-"
2893
+ #~ "full\">PayPal Privacy Policy</a> for more details."
2894
+ #~ msgstr ""
2895
+ #~ "Te rog vezi <a href=\"https://www.paypal.com/us/webapps/mpp/ua/privacy-"
2896
+ #~ "full\">Politica de confidențialitate PayPal</a> pentru mai multe detalii."
2897
+
2898
+ #~ msgid ""
2899
+ #~ "We accept payments through PayPal. When processing payments, some of your "
2900
+ #~ "data will be passed to PayPal, including information required to process "
2901
+ #~ "or support the payment, such as the purchase total and billing "
2902
+ #~ "information."
2903
+ #~ msgstr ""
2904
+ #~ "Acceptăm plăți prin PayPal. Când procesăm plățile, unele dintre datele "
2905
+ #~ "tale vor fi transmise la PayPal, inclusiv informațiile cerute pentru a "
2906
+ #~ "procesa sau accepta plata, cum ar fi informații despre toate "
2907
+ #~ "cumpărăturile și total facturare."
2908
+
2909
+ #~ msgid ""
2910
+ #~ "In this subsection you should list which third party payment processors "
2911
+ #~ "you’re using to take payments on your store since these may handle "
2912
+ #~ "customer data. We’ve included PayPal as an example, but you should remove "
2913
+ #~ "this if you’re not using PayPal."
2914
+ #~ msgstr ""
2915
+ #~ "În această secțiune ar trebui să afișezi ce procesoare de plată terțe "
2916
+ #~ "folosești pentru a accepta plăți în magazinul tău, deoarece ele pot "
2917
+ #~ "gestiona datele clienților. Am inclus PayPal, ca exemplu, dar ar trebui "
2918
+ #~ "să-l înlături dacă nu-l folosești și să adaugi altele."
2919
+
2920
+ #~ msgid ""
2921
+ #~ "We share information with third parties who help us provide our orders "
2922
+ #~ "and store services to you; for example --"
2923
+ #~ msgstr ""
2924
+ #~ "Partajăm informații cu părți terțe care ne ajută să asigurăm comenzile și "
2925
+ #~ "să stocăm servicii; de exemplu --"
2926
+
2927
+ #~ msgid ""
2928
+ #~ "In this section you should list who you’re sharing data with, and for "
2929
+ #~ "what purpose. This could include, but may not be limited to, analytics, "
2930
+ #~ "marketing, payment gateways, shipping providers, and third party embeds."
2931
+ #~ msgstr ""
2932
+ #~ "În această secțiune ar trebui să menționezi cu cine partajezi datele și "
2933
+ #~ "în ce scop. Aici poți include, dar nu se limitează numai la acestea, "
2934
+ #~ "analitice, marketing, gateway-urile de plată, furnizori pentru livrare și "
2935
+ #~ "înglobări de la terți."
2936
+
2937
+ #~ msgid "What we share with others"
2938
+ #~ msgstr "Ce partajăm cu alții"
2939
+
2940
+ #~ msgid ""
2941
+ #~ "Our team members have access to this information to help fulfill orders, "
2942
+ #~ "process refunds and support you."
2943
+ #~ msgstr ""
2944
+ #~ "Membrii echipei noastre au acces la aceste informații pentru a ajuta la "
2945
+ #~ "onorarea comenzilor, procesarea rambursărilor și pentru a-ți oferi suport."
2946
+
2947
+ #~ msgid ""
2948
+ #~ "Customer information like your name, email address, and billing and "
2949
+ #~ "shipping information."
2950
+ #~ msgstr ""
2951
+ #~ "Informații despre clienți, precum nume, adresă email și informațiile "
2952
+ #~ "despre facturare și livrare."
2953
+
2954
+ #~ msgid ""
2955
+ #~ "Order information like what was purchased, when it was purchased and "
2956
+ #~ "where it should be sent, and"
2957
+ #~ msgstr ""
2958
+ #~ "Informații despre comenzi, precum ce s-a cumpărat, când s-a cumpărat și "
2959
+ #~ "unde au fost trimise cumpărăturile și"
2960
+
2961
+ #~ msgid ""
2962
+ #~ "Members of our team have access to the information you provide us. For "
2963
+ #~ "example, both Administrators and Shop Managers can access:"
2964
+ #~ msgstr ""
2965
+ #~ "Membrii echipei noastre au acces la informațiile pe care ni le oferi. De "
2966
+ #~ "exemplu, atât administratorii cât și managerii de magazine pot accesa:"
2967
+
2968
+ #~ msgid "Who on our team has access"
2969
+ #~ msgstr "Cine are acces din echipa noastră"
2970
+
2971
+ #~ msgid "We will also store comments or reviews, if you choose to leave them."
2972
+ #~ msgstr ""
2973
+ #~ "De asemenea, vom stoca comentarii sau recenzii, dacă alegi să le lași."
2974
+
2975
+ #~ msgid ""
2976
+ #~ "We generally store information about you for as long as we need the "
2977
+ #~ "information for the purposes for which we collect and use it, and we are "
2978
+ #~ "not legally required to continue to keep it. For example, we will store "
2979
+ #~ "order information for XXX years for tax and accounting purposes. This "
2980
+ #~ "includes your name, email address and billing and shipping addresses."
2981
+ #~ msgstr ""
2982
+ #~ "În general, stocăm informații despre tine atât timp cât avem nevoie de "
2983
+ #~ "ele în scopurile pentru care le colectăm și le folosim, dar nu le mai "
2984
+ #~ "păstrăm în continuare dacă nu suntem obligați din punct de vedere legal. "
2985
+ #~ "De exemplu, vom stoca informațiile despre comenzi timp de XX ani, în "
2986
+ #~ "scopuri fiscale și contabile. Ele includ numele, adresa de email și "
2987
+ #~ "adresele de facturare și de livrare."
2988
+
2989
+ #~ msgid ""
2990
+ #~ "If you create an account, we will store your name, address, email and "
2991
+ #~ "phone number, which will be used to populate the checkout for future "
2992
+ #~ "orders."
2993
+ #~ msgstr ""
2994
+ #~ "Dacă creezi un cont, îți vom stoca numele, adresa, emailul și numărul de "
2995
+ #~ "telefon, care vor fi folosite la finalizarea unor comenzi viitoare."
2996
+
2997
+ #~ msgid "Send you marketing messages, if you choose to receive them"
2998
+ #~ msgstr "Îți trimitem mesaje de marketing, dacă alegi să le primești"
2999
+
3000
+ #~ msgid "Improve our store offerings"
3001
+ #~ msgstr "Îmbunătățim ofertele noastre pentru magazin"
3002
+
3003
+ #~ msgid "Comply with any legal obligations we have, such as calculating taxes"
3004
+ #~ msgstr ""
3005
+ #~ "Respectăm toate obligațiile legale pe care le avem, cum ar fi calcularea "
3006
+ #~ "impozitelor (taxelor)"
3007
+
3008
+ #~ msgid "Set up your account for our store"
3009
+ #~ msgstr "Îți inițializăm contul pentru magazinul nostru"
3010
+
3011
+ #~ msgid "Process payments and prevent fraud"
3012
+ #~ msgstr "Procesăm plățile și prevenim fraudele"
3013
+
3014
+ #~ msgid "Respond to your requests, including refunds and complaints"
3015
+ #~ msgstr "Îți răspundem la cereri, inclusiv la rambursări și reclamații"
3016
+
3017
+ #~ msgid "Send you information about your account and order"
3018
+ #~ msgstr "Îți trimitem informații despre contul tău și comanda ta"
3019
+
3020
+ #~ msgid ""
3021
+ #~ "When you purchase from us, we’ll ask you to provide information including "
3022
+ #~ "your name, billing address, shipping address, email address, phone "
3023
+ #~ "number, credit card/payment details and optional account information like "
3024
+ #~ "username and password. We’ll use this information for purposes, such as, "
3025
+ #~ "to:"
3026
+ #~ msgstr ""
3027
+ #~ "Când cumperi de la noi, îți vom cere să furnizezi informații, inclusiv "
3028
+ #~ "numele, adresa de facturare, adresa de livrare, adresa de email, numărul "
3029
+ #~ "de telefon, cardul de credit/detalii de plată și informații opționale "
3030
+ #~ "despre cont, cum ar fi numele de utilizator și parola. Vom folosi aceste "
3031
+ #~ "informații în mai multe scopuri, cum ar fi:"
3032
+
3033
+ #~ msgid ""
3034
+ #~ "Note: you may want to further detail your cookie policy, and link to that "
3035
+ #~ "section from here."
3036
+ #~ msgstr ""
3037
+ #~ "Notă: poate vrei să dai mai multe detalii despre politica folosirii "
3038
+ #~ "cookie-urilor și să arăți aici o legătură la secțiunea respectivă."
3039
+
3040
+ #~ msgid ""
3041
+ #~ "We’ll also use cookies to keep track of cart contents while you’re "
3042
+ #~ "browsing our site."
3043
+ #~ msgstr ""
3044
+ #~ "De asemenea, vom folosi cookie-uri pentru a-ți urmări conținutul coșului "
3045
+ #~ "în timp ce navighezi pe situl nostru"
3046
+
3047
+ #~ msgid ""
3048
+ #~ "Shipping address: we’ll ask you to enter this so we can, for instance, "
3049
+ #~ "estimate shipping before you place an order, and send you the order!"
3050
+ #~ msgstr ""
3051
+ #~ "Adresă de livrare: îți vom cere s-o introduci, astfel putem estima, de "
3052
+ #~ "exemplu, unde trebuie făcută livrarea înainte să plasezi o comandă și să "
3053
+ #~ "ți-o trimitem!"
3054
+
3055
+ #~ msgid ""
3056
+ #~ "Location, IP address and browser type: we’ll use this for purposes like "
3057
+ #~ "estimating taxes and shipping"
3058
+ #~ msgstr ""
3059
+ #~ "Locație, adresă IP și tip de navigator: le vom folosi în diverse scopuri, "
3060
+ #~ "cum ar fi estimarea impozitelor (taxelor) și pentru livrare"
3061
+
3062
+ #~ msgid ""
3063
+ #~ "Products you’ve viewed: we’ll use this to, for example, show you "
3064
+ #~ "products you’ve recently viewed"
3065
+ #~ msgstr ""
3066
+ #~ "Produse pe care le-ai văzut: vom folosi asta a-ți arăta, de exemplu, "
3067
+ #~ "produsele pe care le-ai vizualizat recent"
3068
+
3069
+ #~ msgid "While you visit our site, we’ll track:"
3070
+ #~ msgstr "În timp ce ne vizitezi situl, vom urmări:"
3071
+
3072
+ #~ msgid "What we collect and store"
3073
+ #~ msgstr "Ce colectăm și stocăm"
3074
+
3075
+ #~ msgid ""
3076
+ #~ "We collect information about you during the checkout process on our store."
3077
+ #~ msgstr ""
3078
+ #~ "Colectăm informații despre tine în timpul procesului de finalizare a "
3079
+ #~ "comenzii în magazinul nostru."
3080
+
3081
+ #~ msgid ""
3082
+ #~ "This sample language includes the basics around what personal data your "
3083
+ #~ "store may be collecting, storing and sharing, as well as who may have "
3084
+ #~ "access to that data. Depending on what settings are enabled and which "
3085
+ #~ "additional plugins are used, the specific information shared by your "
3086
+ #~ "store will vary. We recommend consulting with a lawyer when deciding what "
3087
+ #~ "information to disclose on your privacy policy."
3088
+ #~ msgstr ""
3089
+ #~ "Această manieră de exprimare include elementele de bază privind ce date "
3090
+ #~ "personale poate colecta, stoca și partaja magazinul tău, precum și cine "
3091
+ #~ "poate avea acces la aceste date. Informațiile specifice care sunt afișate "
3092
+ #~ "în magazinul tău vor varia în funcție de ce setări sunt activate și ce "
3093
+ #~ "module suplimentare sunt folosite. Recomandăm să consulți un avocat când "
3094
+ #~ "decizi ce informații divulgi în politica ta de confidențialitate."
3095
+
3096
+ #~ msgid "Token"
3097
+ #~ msgstr "Token"
3098
+
3099
+ #~ msgid "Payment Tokens"
3100
+ #~ msgstr "Tokenuri de plată"
3101
+
3102
+ #~ msgid "Access granted"
3103
+ #~ msgstr "Acces permis"
3104
+
3105
+ #~ msgid "Download count"
3106
+ #~ msgstr "Număr de descărcări"
3107
+
3108
+ #~ msgid "User email"
3109
+ #~ msgstr "Email utilizator"
3110
+
3111
+ #~ msgid "Browser User Agent"
3112
+ #~ msgstr "Agent utilizator navigator"
3113
+
3114
+ #~ msgid "Order Number"
3115
+ #~ msgstr "Număr comandă"
3116
+
3117
+ #~ msgid "Items Purchased"
3118
+ #~ msgstr "Elemente cumpărate"
3119
+
3120
+ #~ msgid "Download ID"
3121
+ #~ msgstr "ID descărcare"
3122
+
3123
+ #~ msgid "Access to Purchased Downloads"
3124
+ #~ msgstr "Acces la Descărcări pentru cumpărături"
3125
+
3126
+ #~ msgid "Purchased Downloads"
3127
+ #~ msgstr "Descărcări pentru cumpărături"
3128
+
3129
+ #~ msgid "Customer Data"
3130
+ #~ msgstr "Date clienți"
3131
+
3132
+ #~ msgid "Removed payment token \"%d\""
3133
+ #~ msgstr "Tokenul de plată „%d” a fost înlăturat"
3134
+
3135
+ #~ msgid "Personal data removed."
3136
+ #~ msgstr "Date personale înlăturate."
3137
+
3138
+ #~ msgid "Customer download permissions have been retained."
3139
+ #~ msgstr "Permisiunile de descărcare pentru clienți au fost păstrate."
3140
+
3141
+ #~ msgid "Removed access to downloadable files."
3142
+ #~ msgstr "Accesul la fișierele care pot fi descărcate a fost înlăturat."
3143
+
3144
+ #~ msgid "Personal data within order %s has been retained."
3145
+ #~ msgstr "Datele personale din comanda %s au fost păstrate."
3146
+
3147
+ #~ msgid "Removed personal data from order %s."
3148
+ #~ msgstr "Datele personale din comanda %s au fost înlăturate."
3149
+
3150
+ #~ msgid "Removed customer \"%s\""
3151
+ #~ msgstr "Clientul „%s” a fost înlăturat"
3152
+
3153
+ #~ msgid "Shipping Country"
3154
+ #~ msgstr "Țară de livrare"
3155
+
3156
+ #~ msgid "Shipping State"
3157
+ #~ msgstr "Județ/regiune de livrare"
3158
+
3159
+ #~ msgid "Shipping Postal/Zip Code"
3160
+ #~ msgstr "Cod poștal livrare"
3161
+
3162
+ #~ msgid "Shipping City"
3163
+ #~ msgstr "Oraș de livrare"
3164
+
3165
+ #~ msgid "Shipping Company"
3166
+ #~ msgstr "Companie de livrare"
3167
+
3168
+ #~ msgid "Shipping Last Name"
3169
+ #~ msgstr "Nume de livrare"
3170
+
3171
+ #~ msgid "Shipping First Name"
3172
+ #~ msgstr "Prenume de livrare"
3173
+
3174
+ #~ msgid "Phone Number"
3175
+ #~ msgstr "Număr de telefon"
3176
+
3177
+ #~ msgid "Billing Country"
3178
+ #~ msgstr "Țară pentru facturare"
3179
+
3180
+ #~ msgid "Billing State"
3181
+ #~ msgstr "Județ/regiune pentru facturare"
3182
+
3183
+ #~ msgid "Billing Postal/Zip Code"
3184
+ #~ msgstr "Cod poștal pentru facturare"
3185
+
3186
+ #~ msgid "Billing City"
3187
+ #~ msgstr "Oraș pentru facturare"
3188
+
3189
+ #~ msgid "Billing Company"
3190
+ #~ msgstr "Companie pentru facturare"
3191
+
3192
+ #~ msgid "Billing Last Name"
3193
+ #~ msgstr "Nume pentru facturare"
3194
+
3195
+ #~ msgid "Billing First Name"
3196
+ #~ msgstr "Prenume pentru facturare"
3197
+
3198
+ #~ msgid "Error during status transition."
3199
+ #~ msgstr "Eroare în timpul tranziției la stare."
3200
+
3201
+ #~ msgid "Update status event failed."
3202
+ #~ msgstr "Evenimentul de stare a actualizării eșuat."
3203
+
3204
+ #~ msgid "Error saving order."
3205
+ #~ msgstr "Eroare la salvarea comenzii."
3206
+
3207
+ #~ msgid "Payment complete event failed."
3208
+ #~ msgstr "Evenimentul de finalizare a plății eșuat."
3209
+
3210
+ #~ msgctxt "User role"
3211
+ #~ msgid "Shop manager"
3212
+ #~ msgstr "Manager magazin"
3213
+
3214
+ #~ msgctxt "User role"
3215
+ #~ msgid "Customer"
3216
+ #~ msgstr "Client"
3217
+
3218
+ #~ msgid "optional"
3219
+ #~ msgstr "opțional"
3220
+
3221
+ #~ msgid "Display name"
3222
+ #~ msgstr "Nume afișat"
3223
+
3224
+ #~ msgid ""
3225
+ #~ "Display name cannot be changed to email address due to privacy concern."
3226
+ #~ msgstr ""
3227
+ #~ "Numele afișat nu poate fi modificat în adresa de email din cauza "
3228
+ #~ "protecției de confidențialitate."
3229
+
3230
+ #~ msgctxt "display name"
3231
+ #~ msgid "%1$s %2$s"
3232
+ #~ msgstr "%1$s %2$s"
3233
+
3234
+ #~ msgid "Unable to create order."
3235
+ #~ msgstr "Nu pot crea comanda."
3236
+
3237
+ #~ msgid ""
3238
+ #~ "Please read and accept the terms and conditions to proceed with your "
3239
+ #~ "order."
3240
+ #~ msgstr ""
3241
+ #~ "Te rog citește și acceptă termenii și condițiile pentru a continua cu "
3242
+ #~ "comanda."
3243
+
3244
+ #~ msgid "Unserializing instances of this class is forbidden."
3245
+ #~ msgstr "Anularea serializării instanțelor din această clasă este interzisă."
3246
+
3247
+ #~ msgid "Cloning is forbidden."
3248
+ #~ msgstr "Clonarea este interzisă."
3249
+
3250
+ #~ msgid "Deleted all active sessions, and %d saved carts."
3251
+ #~ msgstr "Am șters toate sesiunile active și %d coșuri salvate."
3252
+
3253
+ #~ msgid "%d permissions deleted"
3254
+ #~ msgstr "%d permisiuni șterse"
3255
+
3256
+ #~ msgid ""
3257
+ #~ "This tool will delete all customer session data from the database, "
3258
+ #~ "including current carts and saved carts in the database."
3259
+ #~ msgstr ""
3260
+ #~ "Această unealtă va șterge din baza de date toate datele sesiunilor "
3261
+ #~ "clienților, inclusiv coșurile curente și cele salvate în baza de date."
3262
+
3263
+ #~ msgid ""
3264
+ #~ "This tool will delete expired download permissions and permissions with 0 "
3265
+ #~ "remaining downloads."
3266
+ #~ msgstr ""
3267
+ #~ "Această unealtă va șterge permisiunile de descărcare expirate și "
3268
+ #~ "permisiunile cu nicio descărcare rămasă."
3269
+
3270
+ #~ msgid "Clean up download permissions"
3271
+ #~ msgstr "Șterge permisiunile de descărcare"
3272
+
3273
+ #~ msgid "Used-up download permissions"
3274
+ #~ msgstr "Permisiuni de descărcare expirate"
3275
+
3276
+ #~ msgid ""
3277
+ #~ "Limit result set to products with a specific attribute. Use the taxonomy "
3278
+ #~ "name/attribute slug."
3279
+ #~ msgstr ""
3280
+ #~ "Limitează setul de rezultate la produse cu un anumit atribut. Folosește "
3281
+ #~ "descriptorul nume/atribut pentru taxonomie."
3282
+
3283
+ #~ msgid "Parent product does not match current variation."
3284
+ #~ msgstr "Produsul părinte nu se potrivește cu variația curentă."
3285
+
3286
+ #~ msgid "If the payment was refunded via the API."
3287
+ #~ msgstr "Dacă plata a fost rambursată prin API."
3288
+
3289
+ #~ msgid "Order total formatted for locale"
3290
+ #~ msgstr "Total comandă formatat pentru locală."
3291
+
3292
+ #~ msgid "Name of the customer for the order"
3293
+ #~ msgstr "Numele clientului pentru comandă"
3294
+
3295
+ #~ msgid "URL to edit the order"
3296
+ #~ msgstr "URL pentru a edita comanda"
3297
+
3298
+ #~ msgid "Blog id of the record on the multisite."
3299
+ #~ msgstr "ID-ul înregistrării blogului pe multi-sit."
3300
+
3301
+ #~ msgid ""
3302
+ #~ "Your store does not appear to be using a secure connection. We highly "
3303
+ #~ "recommend serving your entire website over an HTTPS connection to help "
3304
+ #~ "keep customer data secure. <a href=\"%s\">Learn more here.</a>"
3305
+ #~ msgstr ""
3306
+ #~ "Se pare că magazinul tău nu folosește o conexiune securizată. Recomandăm "
3307
+ #~ "cu prisosință să folosești pe întregul sit web o conexiune HTTPS pentru a "
3308
+ #~ "păstra în siguranță datele despre clienți. <a href=\"%s\">Află mai multe "
3309
+ #~ "aici.</a>"
3310
+
3311
+ #~ msgid ""
3312
+ #~ "%1$s has been removed from your cart because it has since been modified. "
3313
+ #~ "You can add it back to your cart <a href=\"%2$s\">here</a>."
3314
+ #~ msgstr ""
3315
+ #~ "%1$s a fost înlăturat din coșul tău deoarece a fost modificat între timp. "
3316
+ #~ "Îl poți adăuga din nou în coș <a href=\"%2$s\">aici</a>."
3317
+
3318
+ #~ msgid "MaxMind GeoIP database requires at least PHP 5.4."
3319
+ #~ msgstr "Baza de date MaxMind GeoIP necesită cel puțin PHP 5.4."
3320
+
3321
+ #~ msgid "WooCommerce database version"
3322
+ #~ msgstr "Versiune bază de date WooCommerce"
3323
+
3324
+ #~ msgid ""
3325
+ #~ "We recommend using PHP version 7.2 or above for greater performance and "
3326
+ #~ "security."
3327
+ #~ msgstr ""
3328
+ #~ "Recomandăm folosirea versiunii PHP 7.2 sau o versiune ulterioară pentru "
3329
+ #~ "performanțe și o securitate mai bune."
3330
+
3331
+ #~ msgid ""
3332
+ #~ "WooCommerce will run under this version of PHP, however, it has reached "
3333
+ #~ "end of life. We recommend using PHP version 7.2 or above for greater "
3334
+ #~ "performance and security."
3335
+ #~ msgstr ""
3336
+ #~ "WooCommerce va rula sub această versiune de PHP, însă ea este învechită. "
3337
+ #~ "Recomandăm folosirea versiunii PHP 7.2 sau o versiune ulterioară pentru "
3338
+ #~ "performanțe și o securitate mai bune."
3339
+
3340
+ #~ msgid ""
3341
+ #~ "WooCommerce will run under this version of PHP, however, some features "
3342
+ #~ "such as geolocation are not compatible. Support for this version will be "
3343
+ #~ "dropped in the next major release. We recommend using PHP version 7.2 or "
3344
+ #~ "above for greater performance and security."
3345
+ #~ msgstr ""
3346
+ #~ "WooCommerce va rula sub această versiune de PHP, însă unele "
3347
+ #~ "funcționalități, cum ar fi geo-locația, nu sunt compatibile. Suportul "
3348
+ #~ "pentru această versiune va fi retras în următoarea lansare importantă. "
3349
+ #~ "Recomandăm folosirea versiunii PHP 7.2 sau o versiune ulterioară pentru "
3350
+ #~ "performanțe și o securitate mai bune."
3351
+
3352
+ #~ msgid "Displays whether or not WordPress is using an external object cache."
3353
+ #~ msgstr ""
3354
+ #~ "Afișează dacă WordPress folosește sau nu folosește un cache obiect extern."
3355
+
3356
+ #~ msgid "External object cache"
3357
+ #~ msgstr "Cache obiect extern"
3358
+
3359
+ #~ msgid "WordPress cron"
3360
+ #~ msgstr "Cronologie WordPress"
3361
+
3362
+ #~ msgid "WordPress debug mode"
3363
+ #~ msgstr "Mod depanare WordPress"
3364
+
3365
+ #~ msgid "WordPress memory limit"
3366
+ #~ msgstr "Limită de memorie WordPress"
3367
+
3368
+ #~ msgid "WordPress multisite"
3369
+ #~ msgstr "Multi-sit WordPress"
3370
+
3371
+ #~ msgid "%1$s - There is a newer version of WordPress available (%2$s)"
3372
+ #~ msgstr "%1$s - Este disponibilă o versiune mai nouă de WordPress (%2$s)"
3373
+
3374
+ #~ msgid "WordPress version"
3375
+ #~ msgstr "Versiune WordPress"
3376
+
3377
+ #~ msgid "WooCommerce version"
3378
+ #~ msgstr "Versiune WooCommerce"
3379
+
3380
+ #~ msgid "Set up"
3381
+ #~ msgstr "Inițializare"
3382
+
3383
+ #~ msgctxt "Settings tab label"
3384
+ #~ msgid "Payments"
3385
+ #~ msgstr "Plăți"
3386
+
3387
+ #~ msgid "Enable coupons"
3388
+ #~ msgstr "Activează cupoane"
3389
+
3390
+ #~ msgid ""
3391
+ #~ "Rates will be configurable and taxes will be calculated during checkout."
3392
+ #~ msgstr ""
3393
+ #~ "Tarifele vor fi configurabile și taxele vor fi calculate în timpul "
3394
+ #~ "finalizării comenzii."
3395
+
3396
+ #~ msgid "Enable tax rates and calculations"
3397
+ #~ msgstr "Activează cotele de impozitare și calculele"
3398
+
3399
+ #~ msgid "Manage"
3400
+ #~ msgstr "Administrează"
3401
+
3402
+ #~ msgid "Enable the legacy REST API"
3403
+ #~ msgstr "Activează REST API-ul moștenit"
3404
+
3405
+ #~ msgid "Account endpoints"
3406
+ #~ msgstr "Puncte-finale cont"
3407
+
3408
+ #~ msgid "Secure checkout"
3409
+ #~ msgstr "Finalizare securizată"
3410
+
3411
+ #~ msgid "Legacy API"
3412
+ #~ msgstr "API moștenit"
3413
+
3414
+ #~ msgid ""
3415
+ #~ "Retain completed orders for a specified duration before anonymizing the "
3416
+ #~ "personal data within them."
3417
+ #~ msgstr ""
3418
+ #~ "Păstrează comenzile finalizate pentru o durată de timp specificată "
3419
+ #~ "înainte de a face anonime datele personale cuprinse în ele."
3420
+
3421
+ #~ msgid "Retain completed orders"
3422
+ #~ msgstr "Păstrează comenzile finalizate"
3423
+
3424
+ #~ msgid ""
3425
+ #~ "Cancelled orders are unpaid and may have been cancelled by the store "
3426
+ #~ "owner or customer. They will be trashed after the specified duration."
3427
+ #~ msgstr ""
3428
+ #~ "Comenzile anulate sunt cele neachitate și care probabil au fost anulate "
3429
+ #~ "de proprietarul magazinului sau de clienți. Ele vor fi aruncate la gunoi "
3430
+ #~ "după o durată de timp specificată."
3431
+
3432
+ #~ msgid "Retain cancelled orders"
3433
+ #~ msgstr "Păstrează comenzile anulate"
3434
+
3435
+ #~ msgid ""
3436
+ #~ "Failed orders are unpaid and may have been abandoned by the customer. "
3437
+ #~ "They will be trashed after the specified duration."
3438
+ #~ msgstr ""
3439
+ #~ "Comenzile eșuate sunt cele neachitate și care probabil au fost abandonate "
3440
+ #~ "de clienți. Ele vor fi aruncate la gunoi după o durată de timp "
3441
+ #~ "specificată."
3442
+
3443
+ #~ msgid "Retain failed orders"
3444
+ #~ msgstr "Păstrează comenzile eșuate"
3445
+
3446
+ #~ msgid ""
3447
+ #~ "Pending orders are unpaid and may have been abandoned by the customer. "
3448
+ #~ "They will be trashed after the specified duration."
3449
+ #~ msgstr ""
3450
+ #~ "Comenzile în așteptare sunt cele neachitate și care probabil au fost "
3451
+ #~ "abandonate de clienți. Ele vor fi aruncate la gunoi după o durată de timp "
3452
+ #~ "specificată."
3453
+
3454
+ #~ msgid "Retain pending orders "
3455
+ #~ msgstr "Păstrează comenzile în așteptare"
3456
+
3457
+ #~ msgid ""
3458
+ #~ "Inactive accounts are those which have not logged in, or placed an order, "
3459
+ #~ "for the specified duration. They will be deleted. Any orders will be "
3460
+ #~ "converted into guest orders."
3461
+ #~ msgstr ""
3462
+ #~ "Conturile inactive sunt cele care nu s-au mai autentificat sau care nu au "
3463
+ #~ "plasat o comandă pentru o durată de timp specificată. Ele vor fi șterse. "
3464
+ #~ "Toate comenzile vor fi convertite în comenzi clienți."
3465
+
3466
+ #~ msgid "Retain inactive accounts "
3467
+ #~ msgstr "Păstrează conturile inactive"
3468
+
3469
+ #~ msgid ""
3470
+ #~ "Choose how long to retain personal data when it's no longer needed for "
3471
+ #~ "processing. Leave the following options blank to retain this data "
3472
+ #~ "indefinitely."
3473
+ #~ msgstr ""
3474
+ #~ "Alege cât timp să păstrezi datele personale când ele nu mai sunt necesare "
3475
+ #~ "pentru procesare. Lasă următoarele opțiuni necompletate pentru a păstra "
3476
+ #~ "aceste date pe o perioadă nedeterminată."
3477
+
3478
+ #~ msgid "Personal data retention"
3479
+ #~ msgstr "Păstrarea datelor personale"
3480
+
3481
+ #~ msgid ""
3482
+ #~ "Your personal data will be used to process your order, support your "
3483
+ #~ "experience throughout this website, and for other purposes described in "
3484
+ #~ "our %s."
3485
+ #~ msgstr ""
3486
+ #~ "Datele personale vor fi folosite pentru a procesa comanda, pentru a-ți "
3487
+ #~ "susține experiența pe acest sit web și pentru alte scopuri descrise în %s."
3488
+
3489
+ #~ msgid ""
3490
+ #~ "Optionally add some text about your store privacy policy to show during "
3491
+ #~ "checkout."
3492
+ #~ msgstr ""
3493
+ #~ "Opțional, poți adăuga un text despre politica de confidențialitate a "
3494
+ #~ "magazinului pentru a-l arăta în timpul finalizării."
3495
+
3496
+ #~ msgid "Checkout privacy policy"
3497
+ #~ msgstr "Politică de confidențialitate la finalizare"
3498
+
3499
+ #~ msgid ""
3500
+ #~ "Your personal data will be used to support your experience throughout "
3501
+ #~ "this website, to manage access to your account, and for other purposes "
3502
+ #~ "described in our %s."
3503
+ #~ msgstr ""
3504
+ #~ "Datele personale vor fi folosite pentru a-ți susține experiența pe acest "
3505
+ #~ "sit web, pentru a administra accesul la contul tău și pentru alte scopuri "
3506
+ #~ "descrise în %s."
3507
+
3508
+ #~ msgid ""
3509
+ #~ "Optionally add some text about your store privacy policy to show on "
3510
+ #~ "account registration forms."
3511
+ #~ msgstr ""
3512
+ #~ "Opțional, poți adăuga un text despre politica de confidențialitate a "
3513
+ #~ "magazinului pentru a-l arăta în formularele de înregistrare a contului."
3514
+
3515
+ #~ msgid "Registration privacy policy"
3516
+ #~ msgstr "Politică de confidențialitate la înregistrare"
3517
+
3518
+ #~ msgid "Choose a page to act as your privacy policy."
3519
+ #~ msgstr "Alege o pagină care redă politica ta de confidențialitate."
3520
+
3521
+ #~ msgid "Privacy page"
3522
+ #~ msgstr "Pagină de confidențialitate"
3523
+
3524
+ #~ msgid ""
3525
+ #~ "This section controls the display of your website privacy policy. The "
3526
+ #~ "privacy notices below will not show up unless a privacy page is first set."
3527
+ #~ msgstr ""
3528
+ #~ "Această secțiune controlează afișarea politicii de confidențialitate a "
3529
+ #~ "sitului tău web. Informările despre confidențialitate de mai jos nu vor "
3530
+ #~ "apărea decât dacă este setată mai întâi o pagină de confidențialitate."
3531
+
3532
+ #~ msgid "Privacy policy"
3533
+ #~ msgstr "Politică de confidențialitate"
3534
+
3535
+ #~ msgid "Remove access to downloads"
3536
+ #~ msgstr "Înlătură accesul la descărcări"
3537
+
3538
+ #~ msgid "Remove personal data from orders"
3539
+ #~ msgstr "Înlătură datele personale din comenzi"
3540
+
3541
+ #~ msgid "Account erasure requests"
3542
+ #~ msgstr "Cereri ștergere cont"
3543
+
3544
+ #~ msgid "When creating an account, automatically generate an account password"
3545
+ #~ msgstr "La crearea unui cont, generează automat o parolă pentru cont"
3546
+
3547
+ #~ msgid ""
3548
+ #~ "When creating an account, automatically generate a username from the "
3549
+ #~ "customer's email address"
3550
+ #~ msgstr ""
3551
+ #~ "La crearea unui cont, generează automat un nume de utilizator din adresa "
3552
+ #~ "de email a clientului"
3553
+
3554
+ #~ msgid "Allow customers to create an account on the \"My account\" page"
3555
+ #~ msgstr "Permite clienților să-și creeze un cont în pagina „Contul meu”"
3556
+
3557
+ #~ msgid "Allow customers to create an account during checkout"
3558
+ #~ msgstr ""
3559
+ #~ "Permite clienților să-și creeze un cont în timpul finalizării comenzii"
3560
+
3561
+ #~ msgid "Allow customers to log into an existing account during checkout"
3562
+ #~ msgstr ""
3563
+ #~ "Permite clienților să se autentifice într-un cont existent în timpul "
3564
+ #~ "finalizării comenzii."
3565
+
3566
+ #~ msgid "Allow customers to place orders without an account"
3567
+ #~ msgstr "Permite clienților care nu au un cont să plaseze comenzi"
3568
+
3569
+ #~ msgid "Guest checkout"
3570
+ #~ msgstr "Finalizare vizitatori"
3571
+
3572
+ #~ msgid "Accounts &amp; Privacy"
3573
+ #~ msgstr "Conturi și confidențialitate"
3574
+
3575
+ #~ msgid ""
3576
+ #~ "Whitelist of billing emails to check against when an order is placed. "
3577
+ #~ "Separate email addresses with commas. You can also use an asterisk (*) to "
3578
+ #~ "match parts of an email. For example \"*@gmail.com\" would match all "
3579
+ #~ "gmail addresses."
3580
+ #~ msgstr ""
3581
+ #~ "Lista albă a emailurilor de facturare pentru a verifica când este plasată "
3582
+ #~ "o comandă. Separă adresele de email cu virgulă. De asemenea, poți folosi "
3583
+ #~ "un asterisc (*) pentru a grupa unele părți din emailuri. De exemplu, „* "
3584
+ #~ "gmail.com” grupează toate adresele Gmail."
3585
+
3586
+ #~ msgid "Allowed emails"
3587
+ #~ msgstr "Emailuri permise"
3588
+
3589
+ #~ msgid "Filter by registered customer"
3590
+ #~ msgstr "Filtrează după clienți înregistrați"
3591
+
3592
+ #~ msgid "Removed personal data from %d order."
3593
+ #~ msgid_plural "Removed personal data from %d orders."
3594
+ #~ msgstr[0] "Datele personale înlăturate din o comandă."
3595
+ #~ msgstr[1] "Datele personale înlăturate din %d comenzi."
3596
+ #~ msgstr[2] "Datele personale înlăturate din %d de comenzi."
3597
+
3598
+ #~ msgid "Remove personal data"
3599
+ #~ msgstr "Înlătură date personale"
3600
+
3601
+ #~ msgid "Use previous column mapping preferences?"
3602
+ #~ msgstr "Folosești preferințele anterioare de mapare a coloanelor?"
3603
+
3604
+ #~ msgid "View &amp; Customize"
3605
+ #~ msgstr "Vizualizează și personalizează"
3606
+
3607
+ #~ msgid "Visit Dashboard"
3608
+ #~ msgstr "Vizitează Panoul control"
3609
+
3610
+ #~ msgid "You can also:"
3611
+ #~ msgstr "De asemenea, poți:"
3612
+
3613
+ #~ msgid "You're ready to add products to your store."
3614
+ #~ msgstr "Poți să adaugi produse în magazinul tău."
3615
+
3616
+ #~ msgid "Create some products"
3617
+ #~ msgstr "Creează câteva produse"
3618
+
3619
+ #~ msgid "Continue with WooCommerce Services"
3620
+ #~ msgstr "Continuă cu serviciile WooCommerce"
3621
+
3622
+ #~ msgid "Connect your store to activate WooCommerce Services"
3623
+ #~ msgstr "Conectează-ți magazinul pentru a activa serviciile WooCommerce"
3624
+
3625
+ #~ msgid ""
3626
+ #~ "Thanks for using Jetpack! Your store is almost ready: to activate "
3627
+ #~ "services like %s, just connect your store."
3628
+ #~ msgstr ""
3629
+ #~ "Îți mulțumim că folosești Jetpack! Magazinul tău este aproape gata: "
3630
+ #~ "pentru a activa servicii, cum ar fi %s, conectează-ți magazinul."
3631
+
3632
+ #~ msgid "MailChimp for WooCommerce"
3633
+ #~ msgstr "MailChimp pentru WooCommerce"
3634
+
3635
+ #~ msgid "MailChimp icon"
3636
+ #~ msgstr "Icon MailChimp"
3637
+
3638
+ #~ msgid ""
3639
+ #~ "Join the 16 million customers who use MailChimp. Sync list and store data "
3640
+ #~ "to send automated emails, and targeted campaigns."
3641
+ #~ msgstr ""
3642
+ #~ "Alătură-te altor 16 milioane de clienți care folosesc MailChimp. "
3643
+ #~ "Sincronizează lista și datele magazinului pentru a trimite emailuri "
3644
+ #~ "automate și campanii direcționate."
3645
+
3646
+ #~ msgid "MailChimp"
3647
+ #~ msgstr "MailChimp"
3648
+
3649
+ #~ msgid "automated taxes icon"
3650
+ #~ msgstr "icon taxe automate"
3651
+
3652
+ #~ msgid ""
3653
+ #~ "Save time and errors with automated tax calculation and collection at "
3654
+ #~ "checkout. Powered by WooCommerce Services and Jetpack."
3655
+ #~ msgstr ""
3656
+ #~ "Economisești timp și scapi de erori cu calcularea și colectarea automată "
3657
+ #~ "a taxelor la finalizare. Propulsate de Servicii WooCommerce și Jetpack."
3658
+
3659
+ #~ msgid "Storefront icon"
3660
+ #~ msgstr "Icon Storefront"
3661
+
3662
+ #~ msgid ""
3663
+ #~ "Design your store with deep WooCommerce integration. If toggled on, we’ll "
3664
+ #~ "install <a href=\"https://woocommerce.com/storefront/\" target=\"_blank\" "
3665
+ #~ "rel=\"noopener noreferrer\">Storefront</a>, and your current theme <em>"
3666
+ #~ "%s</em> will be deactivated."
3667
+ #~ msgstr ""
3668
+ #~ "Creează-ți magazinul cu o integrare WooCommerce profundă. Dacă este "
3669
+ #~ "activată, vom instala <a href=\"https://woocommerce.com/storefront/\" "
3670
+ #~ "target=\"_blank\" rel=\"noopener noreferrer\">Storefront</a>, iar tema ta "
3671
+ #~ "actuală <em>%s</em> va fi dezactivată."
3672
+
3673
+ #~ msgid "Enhance your store with these recommended features."
3674
+ #~ msgstr "Dezvoltă-ți magazinul cu aceste funcționalități recomandate."
3675
+
3676
+ #~ msgid ""
3677
+ #~ "Select from the list below to enable automated taxes and MailChimp’s best-"
3678
+ #~ "in-class email services — and design your store with our official, free "
3679
+ #~ "WooCommerce theme."
3680
+ #~ msgstr ""
3681
+ #~ "Selectează din lista de mai jos pentru a activa taxele automate și cele "
3682
+ #~ "mai bune servicii de email din clasa MailChimp — și creează-ți magazinul "
3683
+ #~ "cu tema WooCommerce oficială, gratuită."
3684
+
3685
+ #~ msgid "Recommended for All WooCommerce Stores"
3686
+ #~ msgstr "Recomandat pentru toate magazinele WooCommerce"
3687
+
3688
+ #~ msgid ""
3689
+ #~ "The PayFast extension for WooCommerce enables you to accept payments by "
3690
+ #~ "Credit Card and EFT via one of South Africa’s most popular payment "
3691
+ #~ "gateways. No setup fees or monthly subscription costs."
3692
+ #~ msgstr ""
3693
+ #~ "Extensia PayFast pentru WooCommerce îți permite să accepți plăți printr-"
3694
+ #~ "un card de credit și EFT via una dintre cele mai populare gateway-uri de "
3695
+ #~ "plată din Africa de Sud. Fără taxe de instalare sau costuri lunare pentru "
3696
+ #~ "abonament."
3697
+
3698
+ #~ msgid "WooCommerce PayFast Gateway"
3699
+ #~ msgstr "WooCommerce PayFast Gateway"
3700
+
3701
+ #~ msgid ""
3702
+ #~ "The eWAY extension for WooCommerce allows you to take credit card "
3703
+ #~ "payments directly on your store without redirecting your customers to a "
3704
+ #~ "third party site to make payment."
3705
+ #~ msgstr ""
3706
+ #~ "Extensia eWAY pentru WooCommerce îți permite să accepți plăți cu carduri "
3707
+ #~ "de credit direct în magazinul tău, fără a-ți redirecționa clienții la un "
3708
+ #~ "sit terț pentru a face plata."
3709
+
3710
+ #~ msgid "WooCommerce eWAY Gateway"
3711
+ #~ msgstr "WooCommerce eWAY Gateway"
3712
+
3713
+ #~ msgid "WooCommerce Square"
3714
+ #~ msgstr "WooCommerce Square"
3715
+
3716
+ #~ msgid "Klarna Payments for WooCommerce"
3717
+ #~ msgstr "Klarna Payments pentru WooCommerce"
3718
+
3719
+ #~ msgid "Klarna Checkout for WooCommerce"
3720
+ #~ msgstr "Klarna Checkout pentru WooCommerce"
3721
+
3722
+ #~ msgid "WooCommerce Stripe Gateway"
3723
+ #~ msgstr "WooCommerce Stripe Gateway"
3724
+
3725
+ #~ msgid "The following plugins will be installed and activated for you:"
3726
+ #~ msgstr "Vor fi instalate și activate pentru tine următoarele module:"
3727
+
3728
+ #~ msgid "Help WooCommerce improve with usage tracking."
3729
+ #~ msgstr "Ajută ca WooCommerce să-și îmbunătățească urmărirea utilizării."
3730
+
3731
+ #~ msgid "%1$s (%2$s / %3$s)"
3732
+ #~ msgstr "%1$s (%2$s / %3$s)"
3733
+
3734
+ #~ msgid "What currency do you accept payments in?"
3735
+ #~ msgstr "În ce monedă accepți plățile?"
3736
+
3737
+ #~ msgid "Choose a state&hellip;"
3738
+ #~ msgstr "Alege un stat&hellip;"
3739
+
3740
+ #~ msgid "Recommended"
3741
+ #~ msgstr "Recomandat"
3742
+
3743
+ #~ msgid "Year(s)"
3744
+ #~ msgstr "An (ani)"
3745
+
3746
+ #~ msgid "Month(s)"
3747
+ #~ msgstr "Lună (luni)"
3748
+
3749
+ #~ msgid "Week(s)"
3750
+ #~ msgstr "Săptămână (săptămâni)"
3751
+
3752
+ #~ msgid "Day(s)"
3753
+ #~ msgstr "Zi (zile)"
3754
+
3755
+ #~ msgid "You don&#8217;t have permission to do this."
3756
+ #~ msgstr "Nu ai permisiunea de a face asta."
3757
+
3758
+ #~ msgid "Insufficient privileges to import products."
3759
+ #~ msgstr "Drepturi insuficiente pentru a importa produse."
3760
+
3761
+ #~ msgid "Further education"
3762
+ #~ msgstr "Educație continuă"
3763
+
3764
+ #~ msgid ""
3765
+ #~ "If you would like to learn about using WooCommerce from an expert, "
3766
+ #~ "consider a WooCommerce course to further your education."
3767
+ #~ msgstr ""
3768
+ #~ "Dacă vrei să înveți despre utilizarea WooCommerce de la un expert, ai în "
3769
+ #~ "vedere un curs WooCommerce pentru a-ți continua educația."
3770
+
3771
+ #~ msgid "Insufficient privileges to export products."
3772
+ #~ msgstr "Drepturi insuficiente pentru a exporta produse."
3773
+
3774
+ #~ msgid "Loading network orders"
3775
+ #~ msgstr "Încarc comenzile din rețea"
3776
+
3777
+ #~ msgid "WooCommerce network orders"
3778
+ #~ msgstr "Comenzi din rețeaua WooCommerce"
3779
+
3780
+ #~ msgid "You do not have permission to edit API Keys"
3781
+ #~ msgstr "Nu ai permisiunea de a edita chei API"
3782
+
3783
+ #~ msgid "REST API"
3784
+ #~ msgstr "REST API"
3785
+
3786
+ #~ msgid "No keys found."
3787
+ #~ msgstr "Nicio cheie găsită."
3788
+
3789
+ #~ msgid "Return to payments"
3790
+ #~ msgstr "Înapoi la plăți"
3791
+
3792
+ #~ msgid "Yasothon"
3793
+ #~ msgstr "Yasothon"
3794
+
3795
+ #~ msgid "Yala"
3796
+ #~ msgstr "Yala"
3797
+
3798
+ #~ msgid "Uttaradit"
3799
+ #~ msgstr "Uttaradit"
3800
+
3801
+ #~ msgid "Uthai Thani"
3802
+ #~ msgstr "Uthai Thani"
3803
+
3804
+ #~ msgid "Udon Thani"
3805
+ #~ msgstr "Udon Thani"
3806
+
3807
+ #~ msgid "Ubon Ratchathani"
3808
+ #~ msgstr "Ubon Ratchathani"
3809
+
3810
+ #~ msgid "Trat"
3811
+ #~ msgstr "Trat"
3812
+
3813
+ #~ msgid "Trang"
3814
+ #~ msgstr "Trang"
3815
+
3816
+ #~ msgid "Tak"
3817
+ #~ msgstr "Tak"
3818
+
3819
+ #~ msgid "Surin"
3820
+ #~ msgstr "Surin"
3821
+
3822
+ #~ msgid "Surat Thani"
3823
+ #~ msgstr "Surat Thani"
3824
+
3825
+ #~ msgid "Suphan Buri"
3826
+ #~ msgstr "Suphan Buri"
3827
+
3828
+ #~ msgid "Sukhothai"
3829
+ #~ msgstr "Sukhothai"
3830
+
3831
+ #~ msgid "Songkhla"
3832
+ #~ msgstr "Songkhla"
3833
+
3834
+ #~ msgid "Sisaket"
3835
+ #~ msgstr "Sisaket"
3836
+
3837
+ #~ msgid "Sing Buri"
3838
+ #~ msgstr "Sing Buri"
3839
+
3840
+ #~ msgid "Satun"
3841
+ #~ msgstr "Satun"
3842
+
3843
+ #~ msgid "Saraburi"
3844
+ #~ msgstr "Saraburi"
3845
+
3846
+ #~ msgid "Samut Songkhram"
3847
+ #~ msgstr "Samut Songkhram"
3848
+
3849
+ #~ msgid "Samut Sakhon"
3850
+ #~ msgstr "Samut Sakhon"
3851
+
3852
+ #~ msgid "Samut Prakan"
3853
+ #~ msgstr "Samut Prakan"
3854
+
3855
+ #~ msgid "Sakon Nakhon"
3856
+ #~ msgstr "Sakon Nakhon"
3857
+
3858
+ #~ msgid "Sa Kaeo"
3859
+ #~ msgstr "Sa Kaeo"
3860
+
3861
+ #~ msgid "Roi Et"
3862
+ #~ msgstr "Roi Et"
3863
+
3864
+ #~ msgid "Rayong"
3865
+ #~ msgstr "Rayong"
3866
+
3867
+ #~ msgid "Ratchaburi"
3868
+ #~ msgstr "Ratchaburi"
3869
+
3870
+ #~ msgid "Ranong"
3871
+ #~ msgstr "Ranong"
3872
+
3873
+ #~ msgid "Prachuap Khiri Khan"
3874
+ #~ msgstr "Prachuap Khiri Khan"
3875
+
3876
+ #~ msgid "Prachin Buri"
3877
+ #~ msgstr "Prachin Buri"
3878
+
3879
+ #~ msgid "Phuket"
3880
+ #~ msgstr "Phuket"
3881
+
3882
+ #~ msgid "Phrae"
3883
+ #~ msgstr "Phrae"
3884
+
3885
+ #~ msgid "Phitsanulok"
3886
+ #~ msgstr "Phitsanulok"
3887
+
3888
+ #~ msgid "Phichit"
3889
+ #~ msgstr "Phichit"
3890
+
3891
+ #~ msgid "Phetchaburi"
3892
+ #~ msgstr "Phetchaburi"
3893
+
3894
+ #~ msgid "Phetchabun"
3895
+ #~ msgstr "Phetchabun"
3896
+
3897
+ #~ msgid "Phayao"
3898
+ #~ msgstr "Phayao"
3899
+
3900
+ #~ msgid "Phatthalung"
3901
+ #~ msgstr "Phatthalung"
3902
+
3903
+ #~ msgid "Phang Nga"
3904
+ #~ msgstr "Phang Nga"
3905
+
3906
+ #~ msgid "Pattani"
3907
+ #~ msgstr "Pattani"
3908
+
3909
+ #~ msgid "Pathum Thani"
3910
+ #~ msgstr "Pathum Thani"
3911
+
3912
+ #~ msgid "Nonthaburi"
3913
+ #~ msgstr "Nonthaburi"
3914
+
3915
+ #~ msgid "Nong Khai"
3916
+ #~ msgstr "Nong Khai"
3917
+
3918
+ #~ msgid "Nong Bua Lam Phu"
3919
+ #~ msgstr "Nong Bua Lam Phu"
3920
+
3921
+ #~ msgid "Narathiwat"
3922
+ #~ msgstr "Narathiwat"
3923
+
3924
+ #~ msgid "Nan"
3925
+ #~ msgstr "Nan"
3926
+
3927
+ #~ msgid "Nakhon Si Thammarat"
3928
+ #~ msgstr "Nakhon Si Thammarat"
3929
+
3930
+ #~ msgid "Nakhon Sawan"
3931
+ #~ msgstr "Nakhon Sawan"
3932
+
3933
+ #~ msgid "Nakhon Ratchasima"
3934
+ #~ msgstr "Nakhon Ratchasima"
3935
+
3936
+ #~ msgid "Nakhon Phanom"
3937
+ #~ msgstr "Nakhon Phanom"
3938
+
3939
+ #~ msgid "Nakhon Pathom"
3940
+ #~ msgstr "Nakhon Pathom"
3941
+
3942
+ #~ msgid "Nakhon Nayok"
3943
+ #~ msgstr "Nakhon Nayok"
3944
+
3945
+ #~ msgid "Mukdahan"
3946
+ #~ msgstr "Mukdahan"
3947
+
3948
+ #~ msgid "Maha Sarakham"
3949
+ #~ msgstr "Maha Sarakham"
3950
+
3951
+ #~ msgid "Mae Hong Son"
3952
+ #~ msgstr "Mae Hong Son"
3953
+
3954
+ #~ msgid "Lopburi"
3955
+ #~ msgstr "Lopburi"
3956
+
3957
+ #~ msgid "Loei"
3958
+ #~ msgstr "Loei"
3959
+
3960
+ #~ msgid "Lamphun"
3961
+ #~ msgstr "Lamphun"
3962
+
3963
+ #~ msgid "Lampang"
3964
+ #~ msgstr "Lampang"
3965
+
3966
+ #~ msgid "Krabi"
3967
+ #~ msgstr "Krabi"
3968
+
3969
+ #~ msgid "Khon Kaen"
3970
+ #~ msgstr "Khon Kaen"
3971
+
3972
+ #~ msgid "Kanchanaburi"
3973
+ #~ msgstr "Kanchanaburi"
3974
+
3975
+ #~ msgid "Kamphaeng Phet"
3976
+ #~ msgstr "Kamphaeng Phet"
3977
+
3978
+ #~ msgid "Kalasin"
3979
+ #~ msgstr "Kalasin"
3980
+
3981
+ #~ msgid "Chumphon"
3982
+ #~ msgstr "Chumphon"
3983
+
3984
+ #~ msgid "Chonburi"
3985
+ #~ msgstr "Chonburi"
3986
+
3987
+ #~ msgid "Chiang Rai"
3988
+ #~ msgstr "Chiang Rai"
3989
+
3990
+ #~ msgid "Chiang Mai"
3991
+ #~ msgstr "Chiang Mai"
3992
+
3993
+ #~ msgid "Chanthaburi"
3994
+ #~ msgstr "Chanthaburi"
3995
+
3996
+ #~ msgid "Chaiyaphum"
3997
+ #~ msgstr "Chaiyaphum"
3998
+
3999
+ #~ msgid "Chai Nat"
4000
+ #~ msgstr "Chai Nat"
4001
+
4002
+ #~ msgid "Chachoengsao"
4003
+ #~ msgstr "Chachoengsao"
4004
+
4005
+ #~ msgid "Buri Ram"
4006
+ #~ msgstr "Buri Ram"
4007
+
4008
+ #~ msgid "Bueng Kan"
4009
+ #~ msgstr "Bueng Kan"
4010
+
4011
+ #~ msgid "Bangkok"
4012
+ #~ msgstr "Bangkok"
4013
+
4014
+ #~ msgid "Ayutthaya"
4015
+ #~ msgstr "Ayutthaya"
4016
+
4017
+ #~ msgid "Ang Thong"
4018
+ #~ msgstr "Ang Thong"
4019
+
4020
+ #~ msgid "Amnat Charoen"
4021
+ #~ msgstr "Amnat Charoen"
4022
+
4023
+ #~ msgid "Sinoe"
4024
+ #~ msgstr "Sinoe"
4025
+
4026
+ #~ msgid "River Gee"
4027
+ #~ msgstr "River Gee"
4028
+
4029
+ #~ msgid "Rivercess"
4030
+ #~ msgstr "Rivercess"
4031
+
4032
+ #~ msgid "Nimba"
4033
+ #~ msgstr "Nimba"
4034
+
4035
+ #~ msgid "Montserrado"
4036
+ #~ msgstr "Montserrado"
4037
+
4038
+ #~ msgid "Margibi"
4039
+ #~ msgstr "Margibi"
4040
+
4041
+ #~ msgid "Lofa"
4042
+ #~ msgstr "Lofa"
4043
+
4044
+ #~ msgid "Grand Kru"
4045
+ #~ msgstr "Grand Kru"
4046
+
4047
+ #~ msgid "Grand Gedeh"
4048
+ #~ msgstr "Grand Gedeh"
4049
+
4050
+ #~ msgid "Grand Cape Mount"
4051
+ #~ msgstr "Grand Cape Mount"
4052
+
4053
+ #~ msgid "Grand Bassa"
4054
+ #~ msgstr "Grand Bassa"
4055
+
4056
+ #~ msgid "Gbarpolu"
4057
+ #~ msgstr "Gbarpolu"
4058
+
4059
+ #~ msgid "Bong"
4060
+ #~ msgstr "Bong"
4061
+
4062
+ #~ msgid "Bomi"
4063
+ #~ msgstr "Bomi"
4064
+
4065
+ #~ msgid "Jashore"
4066
+ #~ msgstr "Jashore"
4067
+
4068
+ #~ msgid "Chattogram"
4069
+ #~ msgstr "Chattogram"
4070
+
4071
+ #~ msgid "Profile &rarr;"
4072
+ #~ msgstr "Profil &rarr;"
4073
+
4074
+ #~ msgid "Read more about what we collect."
4075
+ #~ msgstr "Citește mai mult despre ceea ce colectăm."
4076
+
4077
+ #~ msgid ""
4078
+ #~ "Gathering usage data allows us to make WooCommerce better &mdash; your "
4079
+ #~ "store will be considered as we evaluate new features, judge the quality "
4080
+ #~ "of an update, or determine if an improvement makes sense. If you would "
4081
+ #~ "rather opt-out, and do not check this box, we will not know this store "
4082
+ #~ "exists and we will not collect any usage data."
4083
+ #~ msgstr ""
4084
+ #~ "Colectarea datelor de utilizare ne permite să facem un WooCommerce mai "
4085
+ #~ "bun &mdash; magazinul tău va fi luat în considerare când evaluăm "
4086
+ #~ "funcționalități noi, apreciem calitatea unei actualizări sau stabilim "
4087
+ #~ "dacă o îmbunătățire are sens. Dacă nu ești de acord și nu bifezi această "
4088
+ #~ "casetă, vom considera acest magazin ca inexistent și nu vom colecta "
4089
+ #~ "niciun fel de date de utilizare."
4090
+
4091
+ #~ msgid "Image size used for products in the catalog."
4092
+ #~ msgstr "Dimensiune imagine folosită pentru produse în catalog."
4093
+
4094
+ #~ msgid ""
4095
+ #~ "After publishing your changes, new image sizes may not be shown until you "
4096
+ #~ "<a href=\"%s\" target=\"_blank\">Regenerate Thumbnails</a>."
4097
+ #~ msgstr ""
4098
+ #~ "După publicarea modificărilor, s-ar putea să nu fie arătate dimensiunile "
4099
+ #~ "noi pentru imagini până când nu <a href=\"%s\" target=\"_blank"
4100
+ #~ "\">regenerezi miniaturile</a>."
4101
+
4102
+ #~ msgid ""
4103
+ #~ "After publishing your changes, new image sizes may not be shown until you "
4104
+ #~ "regenerate thumbnails. You can do this from the <a href=\"%1$s\" target="
4105
+ #~ "\"_blank\">tools section in WooCommerce</a> or by using a plugin such as "
4106
+ #~ "<a href=\"%2$s\" target=\"_blank\">Regenerate Thumbnails</a>."
4107
+ #~ msgstr ""
4108
+ #~ "După publicarea modificărilor, s-ar putea să nu fie arătate dimensiunile "
4109
+ #~ "noi pentru imagini până când nu regenerezi miniaturile. Poți face asta "
4110
+ #~ "din <a href=\"%1$s\" target=\"_blank\">secțiunea instrumente în "
4111
+ #~ "WooCommerce</a> sau folosind un modul, cum ar fi <a href=\"%2$s\" target="
4112
+ #~ "\"_blank\">Regenerează miniaturile</a>."
4113
+
4114
+ #~ msgid ""
4115
+ #~ "After publishing your changes, new image sizes will be generated "
4116
+ #~ "automatically."
4117
+ #~ msgstr ""
4118
+ #~ "După publicarea modificărilor, vor fi generate automat dimensiuni noi "
4119
+ #~ "pentru imagini."
4120
+
4121
+ #~ msgid "Cancelled product image regeneration job."
4122
+ #~ msgstr "Sarcina de regenerare a imaginilor produselor anulată."
4123
+
4124
+ #~ msgid "Thumbnail regeneration has been scheduled to run in the background."
4125
+ #~ msgstr "Regenerarea miniaturilor a fost programată să ruleze în fundal."
4126
+
4127
+ #~ msgid ""
4128
+ #~ "This will regenerate all shop thumbnails to match your theme and/or image "
4129
+ #~ "settings."
4130
+ #~ msgstr ""
4131
+ #~ "Va regenera toate miniaturile magazinului ca să se potrivească cu tema ta "
4132
+ #~ "și/sau setările tale pentru imagini."
4133
+
4134
+ #~ msgid "Regenerate"
4135
+ #~ msgstr "Regenerează"
4136
+
4137
+ #~ msgid "Regenerate shop thumbnails"
4138
+ #~ msgstr "Regenerează miniaturile magazinului"
4139
+
4140
+ #~ msgid ""
4141
+ #~ "Thumbnail regeneration is running in the background. Depending on the "
4142
+ #~ "amount of images in your store this may take a while."
4143
+ #~ msgstr ""
4144
+ #~ "Regenerarea miniaturilor rulează în fundal. În funcție de numărul de "
4145
+ #~ "imagini din magazinul tău, ea poate dura ceva timp."
4146
+
4147
+ #~ msgid "Cancel thumbnail regeneration"
4148
+ #~ msgstr "Anulează regenerarea miniaturii"
4149
+
4150
+ #~ msgid "Change order status to completed"
4151
+ #~ msgstr "Modifică starea comenzii în finalizată"
4152
+
4153
+ #~ msgid "Change order status to processing"
4154
+ #~ msgstr "Modifică starea comenzii în în procesare"
4155
+
4156
+ #~ msgid "Change order status to on-hold"
4157
+ #~ msgstr "Modifică starea comenzii în în așteptare"
4158
+
4159
+ #~ msgid "Edit this order"
4160
+ #~ msgstr "Editează această comandă"
4161
+
4162
+ #~ msgid ""
4163
+ #~ "This is the default category and it cannot be deleted. It will be "
4164
+ #~ "automatically assigned to products with no category."
4165
+ #~ msgstr ""
4166
+ #~ "Aceasta este categoria implicită și nu poate fi ștearsă. Ea va fi "
4167
+ #~ "atribuită automat produselor fără nicio categorie."
4168
+
4169
+ #~ msgid "Make &#8220;%s&#8221; the default category"
4170
+ #~ msgstr "Fă &#8222;%s&#8221; categoria implicită"
4171
+
4172
+ #~ msgid ""
4173
+ #~ "Deleting a category does not delete the products in that category. "
4174
+ #~ "Instead, products that were only assigned to the deleted category are set "
4175
+ #~ "to the category %s."
4176
+ #~ msgstr ""
4177
+ #~ "Ștergerea unei categorii nu șterge și produsele din categoria respectivă. "
4178
+ #~ "În schimb, produsele care au fost atribuite numai la categoria ștearsă "
4179
+ #~ "sunt setate la categoria %s."
4180
+
4181
+ #~ msgid "Every %d Minutes"
4182
+ #~ msgstr "La fiecare %d minute"
4183
+
4184
+ #~ msgid ""
4185
+ #~ "Looking for the store notice setting? It can now be found <a href=\"%s"
4186
+ #~ "\">in the Customizer</a>."
4187
+ #~ msgstr ""
4188
+ #~ "Cauți setarea pentru anunțurile magazinului? Acum poate fi găsită <a href="
4189
+ #~ "\"%s\">în Personalizator</a>."
4190
+
4191
+ #~ msgid "%s quantity"
4192
+ #~ msgstr "Cantitate %s"
4193
+
4194
+ #~ msgid "Sandbox API signature"
4195
+ #~ msgstr "Semnătură API Sandbox"
4196
+
4197
+ #~ msgid "Sandbox API password"
4198
+ #~ msgstr "Parolă API Sandbox"
4199
+
4200
+ #~ msgid "Sandbox API username"
4201
+ #~ msgstr "Nume utilizator API Sandbox"
4202
+
4203
+ #~ msgid "Live API signature"
4204
+ #~ msgstr "Semnătură API live"
4205
+
4206
+ #~ msgid "Live API password"
4207
+ #~ msgstr "Parolă API live"
4208
+
4209
+ #~ msgid "Live API username"
4210
+ #~ msgstr "Nume utilizator API live"
4211
+
4212
+ #~ msgid ""
4213
+ #~ "Send notifications when an IPN is received from PayPal indicating "
4214
+ #~ "refunds, chargebacks and cancellations."
4215
+ #~ msgstr ""
4216
+ #~ "Trimite notificări când un IPN este primit de la PayPal indicând "
4217
+ #~ "rambursări, tranzacții neautorizate și anulări."
4218
+
4219
+ #~ msgid "Enable IPN email notifications"
4220
+ #~ msgstr "Activează notificări IPN prin email"
4221
+
4222
+ #~ msgid "IPN Email Notifications"
4223
+ #~ msgstr "Notificări IPN prin email"
4224
+
4225
+ #~ msgid ""
4226
+ #~ "SANDBOX ENABLED. You can use sandbox testing accounts only. See the <a "
4227
+ #~ "href=\"%s\">PayPal Sandbox Testing Guide</a> for more details."
4228
+ #~ msgstr ""
4229
+ #~ "SANDBOX ACTIVAT. Poți folosi numai conturile de testare sandbox. Vezi <a "
4230
+ #~ "href=\"%s\">Ghidul de testare PayPal Sandbox</a> pentru mai multe detalii."
4231
+
4232
+ #~ msgid "Invalid webhook."
4233
+ #~ msgstr "Cârlig web invalid."
4234
+
4235
+ #~ msgid "Invalid download log: not found."
4236
+ #~ msgstr "Jurnal de descărcare invalid: negăsit."
4237
+
4238
+ #~ msgid "Invalid download log: no ID."
4239
+ #~ msgstr "Jurnal de descărcare invalid: niciun ID."
4240
+
4241
+ #~ msgid "Unable to insert download log entry in database."
4242
+ #~ msgstr "Nu pot insera intrarea jurnalului de descărcare în baza de date."
4243
+
4244
+ #~ msgid ""
4245
+ #~ "Images will display using the aspect ratio in which they were uploaded"
4246
+ #~ msgstr ""
4247
+ #~ "Imaginile se vor afișa folosind raportul de aspect în care au fost "
4248
+ #~ "încărcate"
4249
+
4250
+ #~ msgid "Uncropped"
4251
+ #~ msgstr "Nedecupate"
4252
+
4253
+ #~ msgid "Images will be cropped to a custom aspect ratio"
4254
+ #~ msgstr "Imaginile vor fi decupate într-un raport de aspect personalizat"
4255
+
4256
+ #~ msgid "Images will be cropped into a square"
4257
+ #~ msgstr "Imaginile vor fi decupate într-un pătrat"
4258
+
4259
+ #~ msgid "1:1"
4260
+ #~ msgstr "1:1"
4261
+
4262
+ #~ msgid "Thumbnail cropping"
4263
+ #~ msgstr "Decupare miniatură"
4264
+
4265
+ #~ msgid "Thumbnail width"
4266
+ #~ msgstr "Lățime miniatură"
4267
+
4268
+ #~ msgid ""
4269
+ #~ "Image size used for the main image on single product pages. These images "
4270
+ #~ "will remain uncropped."
4271
+ #~ msgstr ""
4272
+ #~ "Dimensiunea imaginilor folosită pentru imaginea principală în paginile "
4273
+ #~ "produs singular. Aceste imagini vor rămâne nedecupate."
4274
+
4275
+ #~ msgid "Main image width"
4276
+ #~ msgstr "Lățime imagine principală"
4277
+
4278
+ #~ msgid "Product Images"
4279
+ #~ msgstr "Imagini produs"
4280
+
4281
+ #~ msgid "How many rows of products should be shown per page?"
4282
+ #~ msgstr "Câte rânduri de produse ar trebui afișate per pagină?"
4283
+
4284
+ #~ msgid "Rows per page"
4285
+ #~ msgstr "Rânduri per pagină"
4286
+
4287
+ #~ msgid "How many products should be shown per row?"
4288
+ #~ msgstr "Câte produse ar trebui afișate pe un rând?"
4289
+
4290
+ #~ msgid "Products per row"
4291
+ #~ msgstr "Produse pe un rând"
4292
+
4293
+ #~ msgid "How should products be sorted in the catalog by default?"
4294
+ #~ msgstr "Cum ar trebui produsele să fie sortate implicit în catalog?"
4295
+
4296
+ #~ msgid "Choose what to display on product category pages."
4297
+ #~ msgstr "Alege ce să se afișeze în paginile categorie produse."
4298
+
4299
+ #~ msgid "Category display"
4300
+ #~ msgstr "Afișare categorie"
4301
+
4302
+ #~ msgid "Choose what to display on the main shop page."
4303
+ #~ msgstr "Alege ce să se afișeze în pagina principală a magazinului."
4304
+
4305
+ #~ msgid "Product Catalog"
4306
+ #~ msgstr "Catalog de produse"
4307
+
4308
+ #~ msgid "Enable store notice"
4309
+ #~ msgstr "Activează notificare magazin"
4310
+
4311
+ #~ msgid ""
4312
+ #~ "If enabled, this text will be shown site-wide. You can use it to show "
4313
+ #~ "events or promotions to visitors!"
4314
+ #~ msgstr "Dacă este activată, acest text va fi afișat pe întreg situl."
4315
+
4316
+ #~ msgid "Store Notice"
4317
+ #~ msgstr "Notificare magazin"
4318
+
4319
+ #~ msgid "The maximum allowed setting is %d"
4320
+ #~ msgstr "Setarea maximă permisă este de %d"
4321
+
4322
+ #~ msgid "The minimum allowed setting is %d"
4323
+ #~ msgstr "Setarea minimă permisă este de %d"
4324
+
4325
+ #~ msgid "Completed product image regeneration job."
4326
+ #~ msgstr "Sarcină de regenerare pentru imaginea finalizată a produsului."
4327
+
4328
+ #~ msgid "Regenerating images for attachment ID: %s"
4329
+ #~ msgstr "Regenerare imagini pentru ID atașament: %s"
4330
+
4331
+ #~ msgid "Select options for &ldquo;%s&rdquo;"
4332
+ #~ msgstr "Selectează opțiunile pentru &bdquo;%s&rdquo;"
4333
+
4334
+ #~ msgid "Add &ldquo;%s&rdquo; to your cart"
4335
+ #~ msgstr "Adaugă &bdquo;%s&rdquo; în coșul tău"
4336
+
4337
+ #~ msgid "View products in the &ldquo;%s&rdquo; group"
4338
+ #~ msgstr "Vezi produse din grupul &bdquo;%s&rdquo;"
4339
+
4340
+ #~ msgid "Buy &ldquo;%s&rdquo;"
4341
+ #~ msgstr "Cumpără &bdquo;%s&rdquo;"
4342
+
4343
+ #~ msgctxt "Default category slug"
4344
+ #~ msgid "Uncategorized"
4345
+ #~ msgstr "Fără categorie"
4346
+
4347
+ #~ msgid "Invalid permission ID."
4348
+ #~ msgstr "ID permisiune invalidă."
4349
+
4350
+ #~ msgid "Municipality / District"
4351
+ #~ msgstr "Municipalitate/județ"
4352
+
4353
+ #~ msgid "%s is not a valid postcode / ZIP."
4354
+ #~ msgstr "%s nu este un cod poștal / ZIP valid."
4355
+
4356
+ #~ msgid ""
4357
+ #~ "Limit result set to products with specific SKU(s). Use commas to separate."
4358
+ #~ msgstr ""
4359
+ #~ "Limitează setul de rezultate la produse cu un anumit SKU (anumite SKU-"
4360
+ #~ "uri). Folosește virgule pentru a separa."
4361
+
4362
+ #~ msgid "Customer ID does not belong to this site."
4363
+ #~ msgstr "ID-ul clientului nu este din acest sit."
4364
+
4365
+ #~ msgid "Download ID."
4366
+ #~ msgstr "ID descărcare."
4367
+
4368
+ #~ msgid "Search logs"
4369
+ #~ msgstr "Caută jurnale"
4370
+
4371
+ #~ msgid "Enter a search term and press enter"
4372
+ #~ msgstr "Introdu un termen de căutare și apasă pe Enter"
4373
+
4374
+ #~ msgid "Showing search results for: %s"
4375
+ #~ msgstr "Arăt rezultatele căutării pentru: %s"
4376
+
4377
+ #~ msgid ""
4378
+ #~ "Postcodes containing wildcards (e.g. CB23*) or fully numeric ranges (e.g. "
4379
+ #~ "<code>90210...99000</code>) are also supported. Please see the shipping "
4380
+ #~ "zones <a href=\"%s\" target=\"_blank\">documentation</a>) for more "
4381
+ #~ "information."
4382
+ #~ msgstr ""
4383
+ #~ "Sunt acceptate și codurile poștale care conțin metacaractere (de exemplu: "
4384
+ #~ "CB23*) sau intervale numerice complete (de exemplu: <code>90210...99000</"
4385
+ #~ "code>). Pentru mai multe informații, te rog consultă <a href=\"%s\" "
4386
+ #~ "target=\"_blank\">documentația</a> pentru zonele de livrare."
4387
+
4388
+ #~ msgid "Shop pages"
4389
+ #~ msgstr "Pagini magazin"
4390
+
4391
+ #~ msgid ""
4392
+ #~ "Looking for the product display options? They can now be found in the "
4393
+ #~ "Customizer. <a href=\"%s\">Go see them in action here.</a>"
4394
+ #~ msgstr ""
4395
+ #~ "Cauți opțiunile de afișare pentru produse? Acum ele pot fi găsite în "
4396
+ #~ "Personalizator. <a href=\"%s\">Du-te să le vezi în acțiune aici.</a>"
4397
+
4398
+ #~ msgid "No customer downloads found."
4399
+ #~ msgstr "Nicio descărcare client găsită."
4400
+
4401
+ #~ msgid "Filter by IP address"
4402
+ #~ msgstr "Filtrează după adresă IP"
4403
+
4404
+ #~ msgid "Filter by user"
4405
+ #~ msgstr "Filtrează după utilizator"
4406
+
4407
+ #~ msgid "Filter by order"
4408
+ #~ msgstr "Filtrează după comandă"
4409
+
4410
+ #~ msgid "Filter by file"
4411
+ #~ msgstr "Filtrează după fișier"
4412
+
4413
+ #~ msgid "Filter by product"
4414
+ #~ msgstr "Filtrează după produs"
4415
+
4416
+ #~ msgid "Permission ID"
4417
+ #~ msgstr "ID permisiune"
4418
+
4419
+ #~ msgid "File ID"
4420
+ #~ msgstr "ID fișier"
4421
+
4422
+ #~ msgid "Permission #%d not found."
4423
+ #~ msgstr "Permisiunea #%d negăsită"
4424
+
4425
+ #~ msgid "Confirm navigation"
4426
+ #~ msgstr "Confirmă navigarea"
4427
+
4428
+ #~ msgid ""
4429
+ #~ "This report link has expired. %1$sClick here to view the filtered report"
4430
+ #~ "%2$s."
4431
+ #~ msgstr ""
4432
+ #~ "Această legătură la raport a expirat. %1$sDă clic aici pentru a vedea "
4433
+ #~ "raportul filtrat%2$s."
4434
+
4435
+ #~ msgid "Set Status - On backorder"
4436
+ #~ msgstr "Setează starea - precomandă"
4437
+
4438
+ #~ msgid "View report"
4439
+ #~ msgstr "Vezi raport"
4440
+
4441
+ #~ msgid "Copy link"
4442
+ #~ msgstr "Copiază legătura"
4443
+
4444
+ #~ msgid ""
4445
+ #~ "Copying to clipboard failed. You should be able to right-click the button "
4446
+ #~ "and copy."
4447
+ #~ msgstr ""
4448
+ #~ "Copierea în clipbord a eșuat. Ar trebui să poți să dai clic dreapta pe "
4449
+ #~ "buton și să copiezi."
4450
+
4451
+ #~ msgid "Status:"
4452
+ #~ msgstr "Stare:"
4453
+
4454
+ #~ msgid "Date created:"
4455
+ #~ msgstr "Data creării:"
4456
+
4457
+ #~ msgid "Paid on %1$s @ %2$s"
4458
+ #~ msgstr "Plătită pe %1$s @ %2$s"
4459
+
4460
+ #~ msgid "Filter by stock status"
4461
+ #~ msgstr "Filtrează după stare stoc"
4462
+
4463
+ #~ msgid "On backorder"
4464
+ #~ msgstr "Precomandă"
4465
+
4466
+ #~ msgid "Change status: "
4467
+ #~ msgstr "Modifică starea:"
4468
+
4469
+ #~ msgid "Completed"
4470
+ #~ msgstr "Finalizată"
4471
+
4472
+ #~ msgid "On-hold"
4473
+ #~ msgstr "În așteptare"
4474
+
4475
+ #~ msgid "Payment via"
4476
+ #~ msgstr "Plată prin"
4477
+
4478
+ #~ msgid "M j, Y"
4479
+ #~ msgstr "j M Y"
4480
+
4481
+ #~ msgctxt "%s = human-readable time difference"
4482
+ #~ msgid "%s ago"
4483
+ #~ msgstr "Acum %s"
4484
+
4485
+ #~ msgid "Change status to completed"
4486
+ #~ msgstr "Schimbă starea în finalizată"
4487
+
4488
+ #~ msgid "Change status to on-hold"
4489
+ #~ msgstr "Schimbă starea la în așteptare"
4490
+
4491
+ #~ msgid "Change status to processing"
4492
+ #~ msgstr "Schimbă starea la în procesare"
4493
+
4494
+ #~ msgid "Create your first coupon"
4495
+ #~ msgstr "Creează-ți primul cupon"
4496
+
4497
+ #~ msgid ""
4498
+ #~ "Existing products that match by ID or SKU will be updated. Products that "
4499
+ #~ "do not exist will be skipped."
4500
+ #~ msgstr ""
4501
+ #~ "Produsele existente care se potrivesc după ID sau SKU vor fi actualizate. "
4502
+ #~ "Produsele care nu există vor fi sărite."
4503
+
4504
+ #~ msgid ""
4505
+ #~ "<a href=\"%s\">Connect your store</a> to WooCommerce.com to receive "
4506
+ #~ "extensions updates and support."
4507
+ #~ msgstr ""
4508
+ #~ "<a href=\"%s\">Conectează-ți magazinul</a> la WooCommerce.com pentru a "
4509
+ #~ "primi actualizări și suport pentru extensii."
4510
+
4511
+ #~ msgid ""
4512
+ #~ "To receive updates and support for this extension, you need to "
4513
+ #~ "<strong>purchase</strong> a new subscription or consolidate your "
4514
+ #~ "extensions to one connected account by <strong><a href=\"%1$s\" title="
4515
+ #~ "\"Sharing Docs\">sharing</a> or <a href=\"%2$s\" title=\"Transferring Docs"
4516
+ #~ "\">transferring</a></strong> this extension to this connected account."
4517
+ #~ msgstr ""
4518
+ #~ "Pentru a primi actualizări și suport pentru această extensie, trebuie să "
4519
+ #~ "<strong>cumperi</strong> un abonament nou sau să-ți consolidezi "
4520
+ #~ "extensiile într-un singur cont conectat prin <strong><a href=\"%1$s\" "
4521
+ #~ "title=\"Partajarea de documente\">partajarea</a> sau <a href=\"%2$s\" "
4522
+ #~ "title=\"Transferarea de documente\">transferarea</a></strong> acestei "
4523
+ #~ "extensii în acest cont conectat."
4524
+
4525
+ #~ msgid ""
4526
+ #~ "The WooCommerce Helper plugin is no longer needed. <a href=\"%s\">Manage "
4527
+ #~ "subscriptions</a> from the extensions tab instead."
4528
+ #~ msgstr ""
4529
+ #~ "Modulul WooCommerce Helper nu mai este necesar. În schimb, <a href=\"%s"
4530
+ #~ "\">administrează abonamentele</a> din fila extensii."
4531
+
4532
+ #~ msgid "Webhook topic unknown. Please select a valid topic."
4533
+ #~ msgstr "Subiect cârlig web necunoscut. Te rog selectează un subiect valid."
4534
+
4535
+ #~ msgid "Delete \"%s\" permanently"
4536
+ #~ msgstr "Șterge „%s” definitiv"
4537
+
4538
+ #~ msgid "Reasons you'll love Jetpack"
4539
+ #~ msgstr "Motive pentru care vei îndrăgi Jetpack"
4540
+
4541
+ #~ msgid "Continue with Jetpack"
4542
+ #~ msgstr "Continuă cu Jetpack"
4543
+
4544
+ #~ msgid "payment setup"
4545
+ #~ msgstr "inițializare plată"
4546
+
4547
+ #~ msgid "payment setup and automated taxes"
4548
+ #~ msgstr "inițializare plată și taxe automate"
4549
+
4550
+ #~ msgid "Email address to receive payments"
4551
+ #~ msgstr "Adresă de email pentru a primi plăți"
4552
+
4553
+ #~ msgid "Direct payments to email address:"
4554
+ #~ msgstr "Plăți directe la adresa de email:"
4555
+
4556
+ #~ msgid ""
4557
+ #~ "Securely accept credit and debit cards with one low rate, no surprise "
4558
+ #~ "fees (custom rates available). Sell online and in store and track sales "
4559
+ #~ "and inventory in one place. <a href=\"%s\" target=\"_blank\">Learn more "
4560
+ #~ "about Square</a>."
4561
+ #~ msgstr ""
4562
+ #~ "Accepți în siguranță carduri de credit și debit cu o cotă scăzută, fără "
4563
+ #~ "taxe surpriză (sunt disponibile cote personalizate). Vinzi online și din "
4564
+ #~ "magazin și urmărești vânzările și inventarul dintr-un singur loc. <a href="
4565
+ #~ "\"%s\" target=\"_blank\">Află mai multe despre Square</a>."
4566
+
4567
+ #~ msgid ""
4568
+ #~ "Choose the payment that you want, pay now, pay later or slice it. No "
4569
+ #~ "credit card numbers, no passwords, no worries. <a href=\"%s\" target="
4570
+ #~ "\"_blank\">Learn more about Klarna</a>."
4571
+ #~ msgstr ""
4572
+ #~ "Alegi plata pe care o vrei, plătești acum, plătești mai târziu sau o "
4573
+ #~ "eșalonezi. Fără numere de card de credit, fără parole, fără nicio grijă. "
4574
+ #~ "<a href=\"%s\" target=\"_blank\">Află mai multe despre Klarna</a>."
4575
+
4576
+ #~ msgid ""
4577
+ #~ "Full checkout experience with pay now, pay later and slice it. No credit "
4578
+ #~ "card numbers, no passwords, no worries. <a href=\"%s\" target=\"_blank"
4579
+ #~ "\">Learn more about Klarna</a>."
4580
+ #~ msgstr ""
4581
+ #~ "O experiență completă de finalizare cu plătești acum, plătești mai târziu "
4582
+ #~ "sau în rate. Fără numere de card de credit, fără parole, fără nicio "
4583
+ #~ "grijă. <a href=\"%s\" target=\"_blank\">Află mai multe despre Klarna</a>."
4584
+
4585
+ #~ msgid ""
4586
+ #~ "Accept debit and credit cards in 135+ currencies, methods such as Alipay, "
4587
+ #~ "and one-touch checkout with Apple Pay. <a href=\"%s\" target=\"_blank"
4588
+ #~ "\">Learn more</a>."
4589
+ #~ msgstr ""
4590
+ #~ "Accepți carduri de debit și credit în peste 135 de monede, metode precum "
4591
+ #~ "Alipay și finalizare printr-o singură atingere cu Apple Pay. <a href=\"%s"
4592
+ #~ "\" target=\"_blank\">Află mai mult</a>."
4593
+
4594
+ #~ msgid "I will also be selling products or services in person."
4595
+ #~ msgstr "Voi vinde, de asemenea, produse sau servicii în nume propriu."
4596
+
4597
+ #~ msgid "Customer downloads"
4598
+ #~ msgstr "Descărcări clienți"
4599
+
4600
+ #~ msgid "Revision restored."
4601
+ #~ msgstr "Revizie restaurată."
4602
+
4603
+ #~ msgid ""
4604
+ #~ "If you like, you may enter custom structures for your product URLs here. "
4605
+ #~ "For example, using <code>shop</code> would make your product links like "
4606
+ #~ "<code>%sshop/sample-product/</code>. This setting affects product URLs "
4607
+ #~ "only, not things such as product categories."
4608
+ #~ msgstr ""
4609
+ #~ "Dacă vrei, poți introduce aici structuri personalizate pentru URL-urile "
4610
+ #~ "produselor tale. De exemplu, folosind <code>shop</code> ai putea face "
4611
+ #~ "legăturile la produs ca și <code>%sshop/sample-product/</code>. Această "
4612
+ #~ "setare afectează numai URL-urile produselor, nu și alte lucruri cum ar fi "
4613
+ #~ "categorii de produse."
4614
+
4615
+ #~ msgid "Move &#8220;%s&#8221; to the Trash"
4616
+ #~ msgstr "Mută &#8222;%s&#8221; la gunoi"
4617
+
4618
+ #~ msgid ""
4619
+ #~ "Attributes let you define extra product data, such as size or color. You "
4620
+ #~ "can use these attributes in the shop sidebar using the \"layered nav\" "
4621
+ #~ "widgets."
4622
+ #~ msgstr ""
4623
+ #~ "Atributele îți permit să definești date suplimentare despre produs, cum "
4624
+ #~ "ar fi dimensiunea sau culoarea. Poți folosi aceste atribute în bara "
4625
+ #~ "laterală a magazinului utilizând piesele „navigare stratificată”."
4626
+
4627
+ #~ msgid "Determines how this attribute's values are displayed."
4628
+ #~ msgstr "Determină cum sunt afișate valorile acestui atribut."
4629
+
4630
+ #~ msgid ""
4631
+ #~ "This product has produced sales and may be linked to existing orders. Are "
4632
+ #~ "you sure you want to delete it?"
4633
+ #~ msgstr ""
4634
+ #~ "Acest produs a făcut vânzări și poate fi legat de comenzile existente. "
4635
+ #~ "Sigur vrei să-l ștergi?"
4636
+
4637
+ #~ msgid "Read more about &ldquo;%s&rdquo;"
4638
+ #~ msgstr "Citește mai multe despre &bdquo;%s&rdquo;"
4639
+
4640
+ #~ msgid "Simiyu"
4641
+ #~ msgstr "Simiyu"
4642
+
4643
+ #~ msgid "Njombe"
4644
+ #~ msgstr "Njombe"
4645
+
4646
+ #~ msgid "Katavi"
4647
+ #~ msgstr "Katavi"
4648
+
4649
+ #~ msgid "Geita"
4650
+ #~ msgstr "Geita"
4651
+
4652
+ #~ msgid "Manyara"
4653
+ #~ msgstr "Manyara"
4654
+
4655
+ #~ msgid "Tanga"
4656
+ #~ msgstr "Tanga"
4657
+
4658
+ #~ msgid "Tabora"
4659
+ #~ msgstr "Tabora"
4660
+
4661
+ #~ msgid "Singida"
4662
+ #~ msgstr "Singida"
4663
+
4664
+ #~ msgid "Shinyanga"
4665
+ #~ msgstr "Shinyanga"
4666
+
4667
+ #~ msgid "Ruvuma"
4668
+ #~ msgstr "Ruvuma"
4669
+
4670
+ #~ msgid "Rukwa"
4671
+ #~ msgstr "Rukwa"
4672
+
4673
+ #~ msgid "Coast"
4674
+ #~ msgstr "Coast"
4675
+
4676
+ #~ msgid "Mwanza"
4677
+ #~ msgstr "Mwanza"
4678
+
4679
+ #~ msgid "Mtwara"
4680
+ #~ msgstr "Mtwara"
4681
+
4682
+ #~ msgid "Morogoro"
4683
+ #~ msgstr "Morogoro"
4684
+
4685
+ #~ msgid "Zanzibar West"
4686
+ #~ msgstr "Zanzibar Vest"
4687
+
4688
+ #~ msgid "Mbeya"
4689
+ #~ msgstr "Mbeya"
4690
+
4691
+ #~ msgid "Mara"
4692
+ #~ msgstr "Mara"
4693
+
4694
+ #~ msgid "Lindi"
4695
+ #~ msgstr "Lindi"
4696
+
4697
+ #~ msgid "Zanzibar South"
4698
+ #~ msgstr "Zanzibar Sud"
4699
+
4700
+ #~ msgid "Pemba South"
4701
+ #~ msgstr "Pemba Sud"
4702
+
4703
+ #~ msgid "Kilimanjaro"
4704
+ #~ msgstr "Kilimanjaro"
4705
+
4706
+ #~ msgid "Kigoma"
4707
+ #~ msgstr "Kigoma"
4708
+
4709
+ #~ msgid "Zanzibar North"
4710
+ #~ msgstr "Zanzibar Nord"
4711
+
4712
+ #~ msgid "Pemba North"
4713
+ #~ msgstr "Pemba Nord"
4714
+
4715
+ #~ msgid "Kagera"
4716
+ #~ msgstr "Kagera"
4717
+
4718
+ #~ msgid "Iringa"
4719
+ #~ msgstr "Iringa"
4720
+
4721
+ #~ msgid "Dodoma"
4722
+ #~ msgstr "Dodoma"
4723
+
4724
+ #~ msgid "Dar es Salaam"
4725
+ #~ msgstr "Dar es Salaam"
4726
+
4727
+ #~ msgid "Arusha"
4728
+ #~ msgstr "Arusha"
4729
+
4730
+ #~ msgid "V&acirc;lcea"
4731
+ #~ msgstr "Vâlcea"
4732
+
4733
+ #~ msgid "Timi&#537;"
4734
+ #~ msgstr "Timiș"
4735
+
4736
+ #~ msgid "S&#259;laj"
4737
+ #~ msgstr "Sălaj"
4738
+
4739
+ #~ msgid "Neam&#539;"
4740
+ #~ msgstr "Neamț"
4741
+
4742
+ #~ msgid "Mure&#537;"
4743
+ #~ msgstr "Mureș"
4744
+
4745
+ #~ msgid "Mehedin&#539;i"
4746
+ #~ msgstr "Mehedinți"
4747
+
4748
+ #~ msgid "Maramure&#537;"
4749
+ #~ msgstr "Maramureș"
4750
+
4751
+ #~ msgid "Ia&#537;i"
4752
+ #~ msgstr "Iași"
4753
+
4754
+ #~ msgid "Ialomi&#539;a"
4755
+ #~ msgstr "Ialomița"
4756
+
4757
+ #~ msgid "Gala&#539;i"
4758
+ #~ msgstr "Galați"
4759
+
4760
+ #~ msgid "D&acirc;mbovi&#539;a"
4761
+ #~ msgstr "Dâmbovița"
4762
+
4763
+ #~ msgid "Constan&#539;a"
4764
+ #~ msgstr "Constanța"
4765
+
4766
+ #~ msgid "Cara&#537;-Severin"
4767
+ #~ msgstr "Caraș-Severin"
4768
+
4769
+ #~ msgid "Buz&#259;u"
4770
+ #~ msgstr "Buzău"
4771
+
4772
+ #~ msgid "Bucure&#537;ti"
4773
+ #~ msgstr "București"
4774
+
4775
+ #~ msgid "Bra&#537;ov"
4776
+ #~ msgstr "Brașov"
4777
+
4778
+ #~ msgid "Br&#259;ila"
4779
+ #~ msgstr "Brăila"
4780
+
4781
+ #~ msgid "Boto&#537;ani"
4782
+ #~ msgstr "Botoșani"
4783
+
4784
+ #~ msgid "Bistri&#539;a-N&#259;s&#259;ud"
4785
+ #~ msgstr "Bistrița-Năsăud"
4786
+
4787
+ #~ msgid "Bac&#259;u"
4788
+ #~ msgstr "Bacău"
4789
+
4790
+ #~ msgid "Arge&#537;"
4791
+ #~ msgstr "Argeș"
4792
+
4793
+ #~ msgid "Ungheni"
4794
+ #~ msgstr "Ungheni"
4795
+
4796
+ #~ msgid "Telene&#537;ti"
4797
+ #~ msgstr "Telenești"
4798
+
4799
+ #~ msgid "Taraclia"
4800
+ #~ msgstr "Taraclia"
4801
+
4802
+ #~ msgid "&#536;tefan Vod&#259;"
4803
+ #~ msgstr "Ștefan Vodă"
4804
+
4805
+ #~ msgid "&#536;old&#259;ne&#537;ti"
4806
+ #~ msgstr "Șoldănești"
4807
+
4808
+ #~ msgid "Str&#259;&#537;eni"
4809
+ #~ msgstr "Strășeni"
4810
+
4811
+ #~ msgid "Soroca"
4812
+ #~ msgstr "Soroca"
4813
+
4814
+ #~ msgid "S&icirc;ngerei"
4815
+ #~ msgstr "Sângerei"
4816
+
4817
+ #~ msgid "R&icirc;&#537;cani"
4818
+ #~ msgstr "Râșcani"
4819
+
4820
+ #~ msgid "Rezina"
4821
+ #~ msgstr "Rezina"
4822
+
4823
+ #~ msgid "Orhei"
4824
+ #~ msgstr "Orhei"
4825
+
4826
+ #~ msgid "Ocni&#539;a"
4827
+ #~ msgstr "Ocnița"
4828
+
4829
+ #~ msgid "Nisporeni"
4830
+ #~ msgstr "Nisporeni"
4831
+
4832
+ #~ msgid "Leova"
4833
+ #~ msgstr "Leova"
4834
+
4835
+ #~ msgid "Ialoveni"
4836
+ #~ msgstr "Ialoveni"
4837
+
4838
+ #~ msgid "H&icirc;nce&#537;ti"
4839
+ #~ msgstr "Hâncești"
4840
+
4841
+ #~ msgid "Glodeni"
4842
+ #~ msgstr "Glodeni"
4843
+
4844
+ #~ msgid "UTA G&#259;g&#259;uzia"
4845
+ #~ msgstr "UTA Găgăuzia"
4846
+
4847
+ #~ msgid "Flore&#537;ti"
4848
+ #~ msgstr "Florești"
4849
+
4850
+ #~ msgid "F&#259;le&#537;ti"
4851
+ #~ msgstr "Fălești"
4852
+
4853
+ #~ msgid "Edine&#539;"
4854
+ #~ msgstr "Edineț"
4855
+
4856
+ #~ msgid "Dub&#259;sari"
4857
+ #~ msgstr "Dubăsari"
4858
+
4859
+ #~ msgid "Drochia"
4860
+ #~ msgstr "Drochia"
4861
+
4862
+ #~ msgid "Dondu&#537;eni"
4863
+ #~ msgstr "Dondușeni"
4864
+
4865
+ #~ msgid "Criuleni"
4866
+ #~ msgstr "Criuleni"
4867
+
4868
+ #~ msgid "Cimi&#537;lia"
4869
+ #~ msgstr "Cimișlia"
4870
+
4871
+ #~ msgid "C&#259;u&#537;eni"
4872
+ #~ msgstr "Căușeni"
4873
+
4874
+ #~ msgid "C&#259;l&#259;ra&#537;i"
4875
+ #~ msgstr "Călărași"
4876
+
4877
+ #~ msgid "Cantemir"
4878
+ #~ msgstr "Cantemir"
4879
+
4880
+ #~ msgid "Cahul"
4881
+ #~ msgstr "Cahul"
4882
+
4883
+ #~ msgid "Briceni"
4884
+ #~ msgstr "Briceni"
4885
+
4886
+ #~ msgid "Basarabeasca"
4887
+ #~ msgstr "Basarabeasca"
4888
+
4889
+ #~ msgid "Anenii Noi"
4890
+ #~ msgstr "Anenii Noi"
4891
+
4892
+ #~ msgid "B&#259;l&#539;i"
4893
+ #~ msgstr "Bălți"
4894
+
4895
+ #~ msgid "Chi&#537;in&#259;u"
4896
+ #~ msgstr "Chișinău"
4897
+
4898
+ #~ msgid ""
4899
+ #~ "New payment methods can only be added during checkout. Please contact us "
4900
+ #~ "if you require assistance."
4901
+ #~ msgstr ""
4902
+ #~ "Noi metodele de plată nu pot fi adăugate decât la finalizare. Te rog "
4903
+ #~ "contactează-ne dacă ai nevoie de asistență."
4904
+
4905
+ #~ msgid "Belarusian ruble (old)"
4906
+ #~ msgstr "Rublă belarusă (veche)"
4907
+
4908
+ #~ msgid ""
4909
+ #~ "This key is invalid or has already been used. Please reset your password "
4910
+ #~ "again if needed."
4911
+ #~ msgstr ""
4912
+ #~ "Această cheie este invalidă sau a fost deja folosită. Te rog resetează-ți "
4913
+ #~ "parola din nou, dacă este necesar."
4914
+
4915
+ #~ msgid "Customer invoice / Order details"
4916
+ #~ msgstr "Detalii factură/comandă client"
4917
+
4918
+ #~ msgid "End date of sale price, as GMT."
4919
+ #~ msgstr "Data de încheiere a prețului de vânzare, ca GMT."
4920
+
4921
+ #~ msgid "Define if the variation is visible on the product's page."
4922
+ #~ msgstr "Definește dacă variația este vizibilă pe pagina produsului."
4923
+
4924
+ #~ msgid "Email invoice / order details to customer"
4925
+ #~ msgstr "Trimite prin email detalii factură/comandă către client"
4926
+
4927
+ #~ msgid "Recent Viewed Products"
4928
+ #~ msgstr "Produse vizualizate recent"
4929
+
4930
+ #~ msgid "Resend new order notification"
4931
+ #~ msgstr "Retrimite notificarea pentru noua comandă"
4932
+
4933
+ #~ msgid "Order updated and sent."
4934
+ #~ msgstr "Comandă actualizată și trimisă."
4935
+
4936
+ #~ msgid ""
4937
+ #~ "There are no shipping methods available. Please ensure that your address "
4938
+ #~ "has been entered correctly, or contact us if you need any help."
4939
+ #~ msgstr ""
4940
+ #~ "Nu există nicio metodă de livrare disponibilă. Te rog asigură-te că "
4941
+ #~ "adresa ta a fost introdusă corect sau contactează-ne dacă ai nevoie de "
4942
+ #~ "ajutor."
4943
+
4944
+ #~ msgid "Products by Rating"
4945
+ #~ msgstr "Produse după evaluare"
4946
+
4947
+ #~ msgid "A list of your store's top-rated products."
4948
+ #~ msgstr "O listă a produselor cel mai bine evaluate din magazinul tău."
4949
+
4950
+ #~ msgid "Display a list of a customer's recently viewed products."
4951
+ #~ msgstr "Afișează o listă a produselor vizualizate recent de către clienți."
4952
+
4953
+ #~ msgid "Recent Product Reviews"
4954
+ #~ msgstr "Recenzii produs recente"
4955
+
4956
+ #~ msgid "Display a list of recent reviews from your store."
4957
+ #~ msgstr "Afișează o listă a recenziilor recente din magazinul tău."
4958
+
4959
+ #~ msgid "Filter Products by Rating"
4960
+ #~ msgstr "Filtrează produse după evaluare"
4961
+
4962
+ #~ msgid "Display a list of star ratings to filter products in your store."
4963
+ #~ msgstr ""
4964
+ #~ "Afișează o listă a evaluărilor pe stele pentru a filtra produsele din "
4965
+ #~ "magazinul tău."
4966
+
4967
+ #~ msgid "A list of your store's products."
4968
+ #~ msgstr "O listă a produselor din magazinului tău."
4969
+
4970
+ #~ msgid "Product Tag Cloud"
4971
+ #~ msgstr "Nor de etichete produs"
4972
+
4973
+ #~ msgid "A cloud of your most used product tags."
4974
+ #~ msgstr "Un nor cu cele mai folosite etichete de produse."
4975
+
4976
+ #~ msgid "Product Search"
4977
+ #~ msgstr "Căutare produs"
4978
+
4979
+ #~ msgid "A search form for your store."
4980
+ #~ msgstr "Un formular de căutare pentru magazinul tău."
4981
+
4982
+ #~ msgid "Maximum depth"
4983
+ #~ msgstr "Adâncime maximă"
4984
+
4985
+ #~ msgid "Filter Products by Price"
4986
+ #~ msgstr "Filtrează produse după preț"
4987
+
4988
+ #~ msgid "Display a slider to filter products in your store by price."
4989
+ #~ msgstr ""
4990
+ #~ "Afișează un carusel pentru a filtra produsele din magazinul tău după preț."
4991
+
4992
+ #~ msgid "Filter Products by Attribute"
4993
+ #~ msgstr "Filtrează produse după atribut"
4994
+
4995
+ #~ msgid "Display a list of attributes to filter products in your store."
4996
+ #~ msgstr ""
4997
+ #~ "Afișează o listă de atribute pentru a filtra produsele din magazinul tău."
4998
+
4999
+ #~ msgid "Active Product Filters"
5000
+ #~ msgstr "Filtre produs active"
5001
+
5002
+ #~ msgid "Display a list of active product filters."
5003
+ #~ msgstr "Afișează o listă de filtre produs active."
5004
+
5005
+ #~ msgid "Display the customer shopping cart."
5006
+ #~ msgstr "Afișează coșul de cumpărături al clientului."
5007
+
5008
+ #~ msgid "Relevance"
5009
+ #~ msgstr "Relevanță"
5010
+
5011
+ #~ msgid "%1$s should not be called before the %2$s action."
5012
+ #~ msgstr "%1$s nu ar trebui să fie apelat înainte de acțiunea %2$s."
5013
+
5014
+ #~ msgid "The class %1$s provided by %2$s filter must implement %3$s."
5015
+ #~ msgstr "Clasa %1$s furnizată de filtrul %2$s trebuie să implementeze %3$s."
5016
+
5017
+ #~ msgid "Please, provide an attribute name."
5018
+ #~ msgstr "Te rog, furnizează un nume de atribut."
5019
+
5020
+ #~ msgid ""
5021
+ #~ "Sorry, the order could not be found. Please contact us if you are having "
5022
+ #~ "difficulty finding your order details."
5023
+ #~ msgstr ""
5024
+ #~ "Regret, comanda n-a putut fi găsită. Te rog contactează-ne dacă ai "
5025
+ #~ "dificultăți în găsirea detaliilor comenzii."
5026
+
5027
+ #~ msgid "Please enter a valid email address"
5028
+ #~ msgstr "Te rog introdu o adresă de email validă"
5029
+
5030
+ #~ msgid ""
5031
+ #~ "Sorry, \"%s\" is no longer in stock so this order cannot be paid for. We "
5032
+ #~ "apologize for any inconvenience caused."
5033
+ #~ msgstr ""
5034
+ #~ "Regret, „%s” nu mai este în stoc, deci această comandă nu poate fi "
5035
+ #~ "plătită. Ne cerem scuze pentru eventualele neplăceri cauzate."
5036
+
5037
+ #~ msgid "%1$s was called with an invalid level \"%2$s\"."
5038
+ #~ msgstr "%1$s a fost apelat cu un nivel invalid „%2$s”."
5039
+
5040
+ #~ msgid "The provided handler %1$s does not implement %2$s."
5041
+ #~ msgstr "Manipulantul furnizat %1$s nu implementează %2$s."
5042
+
5043
+ #~ msgid "Unable to add payment method to your account."
5044
+ #~ msgstr "Nu pot adăuga metoda de plată la contul tău."
5045
+
5046
+ #~ msgid "Payment method successfully added."
5047
+ #~ msgstr "Metoda de plată adăugată cu succes."
5048
+
5049
+ #~ msgid "Invalid payment gateway."
5050
+ #~ msgstr "Gateway de plată invalid."
5051
+
5052
+ #~ msgid "Sorry, this coupon is not applicable to selected products."
5053
+ #~ msgstr "Regret, acest cupon nu se poate aplica pentru produsele selectate."
5054
+
5055
+ #~ msgid "Invalid discount amount"
5056
+ #~ msgstr "Sumă discount invalidă"
5057
+
5058
+ #~ msgid "Create account password"
5059
+ #~ msgstr "Creează parolă cont"
5060
+
5061
+ #~ msgid "Fee has already been added."
5062
+ #~ msgstr "Taxa a fost deja adăugată."
5063
+
5064
+ #~ msgid "%s fee"
5065
+ #~ msgstr "Taxă %s"
5066
+
5067
+ #~ msgid "%d indexes added"
5068
+ #~ msgstr "%d indexuri adăugate"
5069
+
5070
+ #~ msgid "Reset usage tracking"
5071
+ #~ msgstr "Resetează urmărirea utilizării"
5072
+
5073
+ #~ msgid ""
5074
+ #~ "This option will delete ALL of your tax rates, use with caution. This "
5075
+ #~ "action cannot be reversed."
5076
+ #~ msgstr ""
5077
+ #~ "Această opțiune va șterge TOATE cotele de impozitare, folosește-o cu "
5078
+ #~ "prudență. Această acțiune nu poate fi inversată."
5079
+
5080
+ #~ msgid "Delete tax rates"
5081
+ #~ msgstr "Șterge cote de impozitare"
5082
+
5083
+ #~ msgid "Create pages"
5084
+ #~ msgstr "Creează pagini"
5085
+
5086
+ #~ msgid "Create default WooCommerce pages"
5087
+ #~ msgstr "Creează pagini WooCommerce implicite"
5088
+
5089
+ #~ msgid "Clear customer sessions"
5090
+ #~ msgstr "Șterge sesiuni clienți"
5091
+
5092
+ #~ msgid ""
5093
+ #~ "This tool will add address indexes to orders that do not have them yet. "
5094
+ #~ "This improves order search results."
5095
+ #~ msgstr ""
5096
+ #~ "Acest instrument va adăuga indexuri de adrese la comenzile care nu le au "
5097
+ #~ "încă. El îmbunătățește rezultatele căutării comenzilor."
5098
+
5099
+ #~ msgid "Index orders"
5100
+ #~ msgstr "Indexează comenzi"
5101
+
5102
+ #~ msgid "Order address indexes"
5103
+ #~ msgstr "Indexuri adresă comandă"
5104
+
5105
+ #~ msgid "WooCommerce transients"
5106
+ #~ msgstr "Tranzienți WooCommerce"
5107
+
5108
+ #~ msgctxt "Page setting"
5109
+ #~ msgid "Terms and conditions"
5110
+ #~ msgstr "Termeni și condiții"
5111
+
5112
+ #~ msgid "Not tested with the active version of WooCommerce"
5113
+ #~ msgstr "Netestat cu versiunea activă a WooCommerce"
5114
+
5115
+ #~ msgid "Post Type Counts"
5116
+ #~ msgstr "Tipul de articol contează"
5117
+
5118
+ #~ msgid "Data: %1$.2fMB + Index: %2$.2fMB"
5119
+ #~ msgstr "Dată: %1$.2fMB + index: %2$.2fMB"
5120
+
5121
+ #~ msgid "Database Index Size"
5122
+ #~ msgstr "Dimensiune index bază de date"
5123
+
5124
+ #~ msgid "Database Data Size"
5125
+ #~ msgstr "Dimensiune date bază de date"
5126
+
5127
+ #~ msgid "Total Database Size"
5128
+ #~ msgstr "Dimensiune totală bază de date"
5129
+
5130
+ #~ msgid "%s failed. Contact your hosting provider."
5131
+ #~ msgstr "%s a eșuat. Contactează-ți furnizorul de găzduire."
5132
+
5133
+ #~ msgid ""
5134
+ #~ "Forcing downloads will keep URLs hidden, but some servers may serve large "
5135
+ #~ "files unreliably. If supported, %1$s / %2$s can be used to serve "
5136
+ #~ "downloads instead (server requires %3$s)."
5137
+ #~ msgstr ""
5138
+ #~ "Forțarea descărcărilor va ține URL-urile ascunse, dar unele servere pot "
5139
+ #~ "servi fișiere mari nesigure. Dacă este suportat, %1$s / %2$s poate fi "
5140
+ #~ "folosit pentru a servi descărcări în schimb (serverul necesită %3$s)."
5141
+
5142
+ #~ msgid "The postal code, if any, in which your business is located."
5143
+ #~ msgstr "Codul poștal, dacă există, pentru locul unde este afacerea ta."
5144
+
5145
+ #~ msgid ""
5146
+ #~ "The country and state or province, if any, in which your business is "
5147
+ #~ "located."
5148
+ #~ msgstr ""
5149
+ #~ "Țara și statul sau provincia, dacă există, în care este localizată "
5150
+ #~ "afacerea ta."
5151
+
5152
+ #~ msgid "Country / State"
5153
+ #~ msgstr "Țară / stat"
5154
+
5155
+ #~ msgid "The city in which your business is located."
5156
+ #~ msgstr "Orașul în care este localizată afacerea ta."
5157
+
5158
+ #~ msgid "An additional, optional address line for your business location."
5159
+ #~ msgstr ""
5160
+ #~ "O linie de adresă suplimentară, opțională, pentru locația afacerii tale."
5161
+
5162
+ #~ msgid "The street address for your business location."
5163
+ #~ msgstr "Adresa străzii pentru locația afacerii tale."
5164
+
5165
+ #~ msgid ""
5166
+ #~ "This is where your business is located. Tax rates and shipping rates will "
5167
+ #~ "use this address."
5168
+ #~ msgstr ""
5169
+ #~ "Acesta e locul unde este localizată afacerea ta. Cotele de impozitare și "
5170
+ #~ "tarifele de livrare vor folosi această adresă."
5171
+
5172
+ #~ msgid "Store Address"
5173
+ #~ msgstr "Adresă magazin"
5174
+
5175
+ #~ msgid "Update now"
5176
+ #~ msgstr "Actualizează acum"
5177
+
5178
+ #~ msgid ""
5179
+ #~ "As this is a major update, we strongly recommend creating a backup of "
5180
+ #~ "your site before updating."
5181
+ #~ msgstr ""
5182
+ #~ "Deoarece aceasta este o actualizare majoră, recomandăm cu prisosință "
5183
+ #~ "crearea unei copii de siguranță a sitului înainte de actualizare."
5184
+
5185
+ #~ msgid ""
5186
+ #~ "The following active plugin(s) have not declared compatibility with "
5187
+ #~ "WooCommerce %s yet and should be updated and examined further before you "
5188
+ #~ "proceed:"
5189
+ #~ msgstr ""
5190
+ #~ "Următoarele module active nu au fost încă declarate compatibile cu "
5191
+ #~ "WooCommerce %s și ar trebui actualizate și examinate mai mult înainte de "
5192
+ #~ "a continua:"
5193
+
5194
+ #~ msgid "This is a major update, are you sure you're ready?"
5195
+ #~ msgstr "Aceasta este o actualizare majoră, sigur ești pregătit?"
5196
+
5197
+ #~ msgid "Tested up to WooCommerce version"
5198
+ #~ msgstr "Testat până la versiunea WooCommerce"
5199
+
5200
+ #~ msgid "Plugin"
5201
+ #~ msgstr "Modul"
5202
+
5203
+ #~ msgid "unknown"
5204
+ #~ msgstr "necunoscut"
5205
+
5206
+ #~ msgid ""
5207
+ #~ "<strong>Heads up!</strong> The versions of the following plugins you're "
5208
+ #~ "running haven't been tested with WooCommerce %s. Please update them or "
5209
+ #~ "confirm compatibility before updating WooCommerce, or you may experience "
5210
+ #~ "issues:"
5211
+ #~ msgstr ""
5212
+ #~ "<strong>Atenție!</strong> Versiunile următoarelor module pe care le "
5213
+ #~ "rulezi nu au fost testate cu WooCommerce %s. Te rog actualizează-le și "
5214
+ #~ "confirmă compatibilitatea înainte de a actualiza WooCommerce sau poți "
5215
+ #~ "întâmpina probleme:"
5216
+
5217
+ #~ msgid ""
5218
+ #~ "<strong>Heads up!</strong> The versions of the following plugins you're "
5219
+ #~ "running haven't been tested with the latest version of WooCommerce (%s)."
5220
+ #~ msgstr ""
5221
+ #~ "<strong>Atenție!</strong> Versiunile următoarelor module pe care le "
5222
+ #~ "rulezi nu au fost testate cu cea mai recentă versiune a WooCommerce (%s)."
5223
+
5224
+ #~ msgid "Refund #%1$s - %2$s by %3$s"
5225
+ #~ msgstr "Rambursare #%1$s - %2$s de %3$s"
5226
+
5227
+ #~ msgid "Add shipping"
5228
+ #~ msgstr "Adaugă livrare"
5229
+
5230
+ #~ msgid ""
5231
+ #~ "The stock has not been updated because the value has changed since "
5232
+ #~ "editing. Product %1$d has %2$d units in stock."
5233
+ #~ msgstr ""
5234
+ #~ "Stocul nu a fost actualizat deoarece valoarea s-a schimbat de la editare. "
5235
+ #~ "Produsul %1$d are %2$d unități în stoc."
5236
+
5237
+ #~ msgid "Order details manually sent to customer."
5238
+ #~ msgstr "Detalii comandă trimise manual la client."
5239
+
5240
+ #~ msgid "Position"
5241
+ #~ msgstr "Poziție"
5242
+
5243
+ #~ msgid "Upload a new file"
5244
+ #~ msgstr "Încarcă un nou fișier"
5245
+
5246
+ #~ msgid ""
5247
+ #~ "The file is empty or using a different encoding than UTF-8, please try "
5248
+ #~ "again with a new file."
5249
+ #~ msgstr ""
5250
+ #~ "Fișierul este gol sau se utilizează o altă codificare decât UTF-8, te rog "
5251
+ #~ "încearcă din nou cu un fișier nou."
5252
+
5253
+ #~ msgid "Sort by:"
5254
+ #~ msgstr "Sortează după:"
5255
+
5256
+ #~ msgid ""
5257
+ #~ "Below is a list of extensions available on your WooCommerce.com account. "
5258
+ #~ "To receive extension updates please make sure the extension is installed, "
5259
+ #~ "and its subscription activated and connected to your WooCommerce.com "
5260
+ #~ "account. Extensions can be activated from the <a href=\"%s\">Plugins</a> "
5261
+ #~ "screen."
5262
+ #~ msgstr ""
5263
+ #~ "Mai jos este o listă de extensii disponibile pe contul tău WooCommerce."
5264
+ #~ "com. Pentru a primi actualizări ale extensiei, te rog asigură-te că "
5265
+ #~ "extensia este instalată și că abonamentul este activat și conectat la "
5266
+ #~ "contul tău WooCommerce.com. Extensiile pot fi activate din ecranul <a "
5267
+ #~ "href=\"%s\">Module</a>."
5268
+
5269
+ #~ msgid "Expired"
5270
+ #~ msgstr "Expirat"
5271
+
5272
+ #~ msgid "Expiring Soon"
5273
+ #~ msgstr "Expiră în curând"
5274
+
5275
+ #~ msgid "Update Available"
5276
+ #~ msgstr "Actualizare disponibilă"
5277
+
5278
+ #~ msgid ""
5279
+ #~ "Transfer existing products to your new store — just import a CSV file."
5280
+ #~ msgstr ""
5281
+ #~ "Transferă produsele existente în noul tău magazin — doar imporți un "
5282
+ #~ "fișier CSV."
5283
+
5284
+ #~ msgid ""
5285
+ #~ "If you like %1$s please leave us a %2$s rating. A huge thanks in advance!"
5286
+ #~ msgstr ""
5287
+ #~ "Dacă îți place %1$s, te rog acordă-ne o evaluare de %2$s. Multe mulțumiri "
5288
+ #~ "în avans!"
5289
+
5290
+ #~ msgid "Have an existing store?"
5291
+ #~ msgstr "Ai deja un magazin?"
5292
+
5293
+ #~ msgid "Create a product"
5294
+ #~ msgstr "Creează un produs"
5295
+
5296
+ #~ msgid "Yes please!"
5297
+ #~ msgstr "Da, te rog!"
5298
+
5299
+ #~ msgid ""
5300
+ #~ "We're here for you — get tips, product updates, and inspiration straight "
5301
+ #~ "to your mailbox."
5302
+ #~ msgstr ""
5303
+ #~ "Suntem aici pentru tine — primești sfaturi, actualizări produs și surse "
5304
+ #~ "de inspirație direct prin email."
5305
+
5306
+ #~ msgid "You're ready to start selling!"
5307
+ #~ msgstr "Ești gata să începi vânzarea!"
5308
+
5309
+ #~ msgid ""
5310
+ #~ "Watch our <a href=\"%1$s\" target=\"_blank\">guided tour videos</a> to "
5311
+ #~ "learn more about WooCommerce, and visit WooCommerce.com to learn more "
5312
+ #~ "about <a href=\"%2$s\" target=\"_blank\">getting started</a>."
5313
+ #~ msgstr ""
5314
+ #~ "Uită-te la <a href=\"%1$s\" target=\"_blank\">videourile noastre tur "
5315
+ #~ "ghidat</a> pentru a afla mai multe despre WooCommerce și vizitează "
5316
+ #~ "WooCommerce.com pentru a afla mai mult despre cum <a href=\"%2$s\" target="
5317
+ #~ "\"_blank\">să începi</a>."
5318
+
5319
+ #~ msgid ""
5320
+ #~ "Your site might be on a private network. Jetpack can only connect to "
5321
+ #~ "public sites. Please make sure your site is visible over the internet, "
5322
+ #~ "and then try connecting again 🙏."
5323
+ #~ msgstr ""
5324
+ #~ "Situl poate fi într-o rețea privată. Jetpack se poate conecta numai la "
5325
+ #~ "situri publice. Te rog asigură-te că situl tău este vizibil pe internet "
5326
+ #~ "și apoi încearcă din nou conectarea 🙏."
5327
+
5328
+ #~ msgid ""
5329
+ #~ "Sorry! We couldn't contact Jetpack just now 😭. Please make sure that your "
5330
+ #~ "site is visible over the internet, and that it accepts incoming and "
5331
+ #~ "outgoing requests via curl. You can also try to connect to Jetpack again, "
5332
+ #~ "and if you run into any more issues, please contact support."
5333
+ #~ msgstr ""
5334
+ #~ "Regretăm! N-am putut conecta Jetpack acum 😭. Te rog asigură-te că situl "
5335
+ #~ "tău este vizibil pe internet și că acceptă cereri de intrare și ieșire "
5336
+ #~ "prin curl. De asemenea, poți încerca să te conectezi din nou la Jetpack "
5337
+ #~ "și dacă întâmpini alte probleme, te rog contactează suportul."
5338
+
5339
+ #~ msgid ""
5340
+ #~ "Sorry! We tried, but we couldn't install Jetpack for you 😭. Please go to "
5341
+ #~ "the Plugins tab to install it, and finish setting up your store."
5342
+ #~ msgstr ""
5343
+ #~ "Regretăm! Am încercat, dar n-am putut instala Jetpack pentru tine 😭. Te "
5344
+ #~ "rog du-te la fila Module pentru a-l instala și finalizează-ți "
5345
+ #~ "inițializarea magazinului."
5346
+
5347
+ #~ msgid ""
5348
+ #~ "Sorry! We tried, but we couldn't connect Jetpack just now 😭. Please go to "
5349
+ #~ "the Plugins tab to connect Jetpack, so that you can finish setting up "
5350
+ #~ "your store."
5351
+ #~ msgstr ""
5352
+ #~ "Regretăm! Am încercat, dar n-am putut conecta Jetpack acum 😭. Te rog du-"
5353
+ #~ "te la fila Module pentru a conecta Jetpack, ca să poți să-ți finalizezi "
5354
+ #~ "inițializarea magazinului."
5355
+
5356
+ #~ msgid ""
5357
+ #~ "Share new items on social media the moment they're live in your store."
5358
+ #~ msgstr ""
5359
+ #~ "Partajezi produse noi pe media socială în momentul în care sunt live în "
5360
+ #~ "magazinul tău."
5361
+
5362
+ #~ msgid "Product promotion"
5363
+ #~ msgstr "Promovare produs"
5364
+
5365
+ #~ msgid "Get an alert if your store is down for even a few minutes."
5366
+ #~ msgstr "Primești o alertă în numai câteva minute dacă magazinul tău cade."
5367
+
5368
+ #~ msgid "Store monitoring"
5369
+ #~ msgstr "Monitorizare magazin"
5370
+
5371
+ #~ msgid ""
5372
+ #~ "Get insights on how your store is doing, including total sales, top "
5373
+ #~ "products, and more."
5374
+ #~ msgstr ""
5375
+ #~ "Obții informații despre ce se întâmplă în magazinul tău, inclusiv vânzări "
5376
+ #~ "totale, cele mai bune produsele și multe altele."
5377
+
5378
+ #~ msgid "Store stats"
5379
+ #~ msgstr "Statistici magazin"
5380
+
5381
+ #~ msgid "Protect your store from unauthorized access."
5382
+ #~ msgstr "Îți protejează magazinul împotriva accesului neautorizat."
5383
+
5384
+ #~ msgid "Better security"
5385
+ #~ msgstr "Securitate mai bună"
5386
+
5387
+ #~ msgid "Bonus reasons you'll love Jetpack"
5388
+ #~ msgstr "Motive în plus că vei îndrăgi Jetpack"
5389
+
5390
+ #~ msgid ""
5391
+ #~ "By connecting your site you agree to our fascinating <a href=\"%1$s\" "
5392
+ #~ "target=\"_blank\">Terms of Service</a> and to <a href=\"%2$s\" target="
5393
+ #~ "\"_blank\">share details</a> with WordPress.com"
5394
+ #~ msgstr ""
5395
+ #~ "Prin conectarea sitului tău ești de acord cu fascinanții noștri <a href="
5396
+ #~ "\"%1$s\" target=\"_blank\">termeni de utilizare ai serviciului</a> și să "
5397
+ #~ "<a href=\"%2$s\" target=\"_blank\">partajezi detalii</a> cu WordPress.com"
5398
+
5399
+ #~ msgid "Finish setting up your store"
5400
+ #~ msgstr "Finalizează-ți inițializarea magazinului"
5401
+
5402
+ #~ msgid "Connect your store to Jetpack to enable extra features"
5403
+ #~ msgstr ""
5404
+ #~ "Conectează-ți magazinul la Jetpack pentru a activa funcționalități "
5405
+ #~ "suplimentare"
5406
+
5407
+ #~ msgid "Connect your store to Jetpack"
5408
+ #~ msgstr "Conectează-ți magazinul la Jetpack"
5409
+
5410
+ #~ msgid "Sorry, we couldn't connect your store to Jetpack"
5411
+ #~ msgstr "Regret, nu ți-am putut conecta magazinul la Jetpack"
5412
+
5413
+ #~ msgid "live rates and discounted shipping labels"
5414
+ #~ msgstr "cursuri live și etichete de livrare pentru reduceri"
5415
+
5416
+ #~ msgid "automated taxes"
5417
+ #~ msgstr "taxe automate"
5418
+
5419
+ #~ msgid "automated taxes, live rates and discounted shipping labels"
5420
+ #~ msgstr "taxe automate, cursuri live și etichete de livrare pentru reduceri"
5421
+
5422
+ #~ msgid "payment setup, live rates and discounted shipping labels"
5423
+ #~ msgstr ""
5424
+ #~ "inițializare plată, cursuri live și etichete de livrare pentru reduceri"
5425
+
5426
+ #~ msgid ""
5427
+ #~ "payment setup, automated taxes, live rates and discounted shipping labels"
5428
+ #~ msgstr ""
5429
+ #~ "inițializare plată, taxe automate, cursuri live și etichete de livrare "
5430
+ #~ "pentru reduceri"
5431
+
5432
+ #~ msgid ""
5433
+ #~ "Your store is almost ready! To activate services like %s, just connect "
5434
+ #~ "with Jetpack."
5435
+ #~ msgstr ""
5436
+ #~ "Magazinul tău este aproape gata! Pentru a activa servicii precum %s, doar "
5437
+ #~ "conectează-te cu Jetpack."
5438
+
5439
+ #~ msgid "Automated Taxes"
5440
+ #~ msgstr "Taxe automate"
5441
+
5442
+ #~ msgid "Storefront Theme"
5443
+ #~ msgstr "Temă Storefront"
5444
+
5445
+ #~ msgid "Collect payments from customers offline."
5446
+ #~ msgstr "Colectează plăți de la clienți offline."
5447
+
5448
+ #~ msgid ""
5449
+ #~ "WooCommerce can accept both online and offline payments. <a href=\"%s\" "
5450
+ #~ "target=\"_blank\">Additional payment methods</a> can be installed later."
5451
+ #~ msgstr ""
5452
+ #~ "WooCommerce poate accepta atât plăți online cât și plăți offline. <a href="
5453
+ #~ "\"%s\" target=\"_blank\">Metodele de plată suplimentare</a> pot fi "
5454
+ #~ "instalate mai târziu."
5455
+
5456
+ #~ msgid "PayPal email address:"
5457
+ #~ msgstr "Adresă de email PayPal:"
5458
+
5459
+ #~ msgid "Stripe email address"
5460
+ #~ msgstr "Adresă email Stripe"
5461
+
5462
+ #~ msgid "Stripe email address:"
5463
+ #~ msgstr "Adresă email Stripe:"
5464
+
5465
+ #~ msgid "Shipping Method"
5466
+ #~ msgstr "Metodă de livrare"
5467
+
5468
+ #~ msgid "Shipping Zone"
5469
+ #~ msgstr "Zonă de livrare"
5470
+
5471
+ #~ msgid "Don't charge for shipping."
5472
+ #~ msgstr "Nu taxa livrarea."
5473
+
5474
+ #~ msgid "What would you like to charge for flat rate shipping?"
5475
+ #~ msgstr "Vrei să taxezi forfetar livrarea?"
5476
+
5477
+ #~ msgid "Set a fixed price to cover shipping costs."
5478
+ #~ msgstr "Stabilește un preț fix pentru a acoperi costurile de livrare."
5479
+
5480
+ #~ msgid "Flat Rate"
5481
+ #~ msgstr "Forfetar"
5482
+
5483
+ #~ msgid "Jetpack"
5484
+ #~ msgstr "Jetpack"
5485
+
5486
+ #~ msgid "I plan to sell both physical and digital products"
5487
+ #~ msgstr "Am de gând să vând atât produse fizice cât și produse digitale"
5488
+
5489
+ #~ msgid "I plan to sell digital products"
5490
+ #~ msgstr "Am de gând să vând produse digitale"
5491
+
5492
+ #~ msgid "I plan to sell physical products"
5493
+ #~ msgstr "Am de gând să vând produse fizice"
5494
+
5495
+ #~ msgid "What type of products do you plan to sell?"
5496
+ #~ msgstr "Ce tip de produse ai de gând să vinzi?"
5497
+
5498
+ #~ msgid ""
5499
+ #~ "The following wizard will help you configure your store and get you "
5500
+ #~ "started quickly."
5501
+ #~ msgstr ""
5502
+ #~ "Următorul asistent te va ajuta să-ți configurezi magazinul și să începi "
5503
+ #~ "imediat."
5504
+
5505
+ #~ msgid "Activate"
5506
+ #~ msgstr "Activează"
5507
+
5508
+ #~ msgid "Store setup"
5509
+ #~ msgstr "Inițializare magazin"
5510
+
5511
+ #~ msgid "Terms and Conditions Page"
5512
+ #~ msgstr "Pagină Termeni și condiții"
5513
+
5514
+ #~ msgid "My Account Page"
5515
+ #~ msgstr "Pagină Contul meu"
5516
+
5517
+ #~ msgid "Checkout Page"
5518
+ #~ msgstr "Pagină de finalizare"
5519
+
5520
+ #~ msgid "Cart Page"
5521
+ #~ msgstr "Pagină coș"
5522
+
5523
+ #~ msgid "Coupon scheduled for: %s."
5524
+ #~ msgstr "Cupon programat pentru: %s."
5525
+
5526
+ #~ msgid "Order scheduled for: %s."
5527
+ #~ msgstr "Comandă programată pentru: %s."
5528
+
5529
+ #~ msgid "Extensions %s"
5530
+ #~ msgstr "Extensii %s"
5531
+
5532
+ #~ msgid "Enter a fixed amount or percentage to apply as a fee."
5533
+ #~ msgstr "Introdu o sumă sau un procent fix pentru a-l aplica ca o taxă."
5534
+
5535
+ #~ msgid "Enter a coupon code to apply to this order."
5536
+ #~ msgstr "Introdu un cod de cupon pentru a-l aplica acestei comenzi."
5537
+
5538
+ #~ msgid "Invalid coupon"
5539
+ #~ msgstr "Cupon invalid"
5540
+
5541
+ #~ msgid ""
5542
+ #~ "Generic add/update/get meta methods should not be used for internal meta "
5543
+ #~ "data, including \"%s\". Use getters and setters."
5544
+ #~ msgstr ""
5545
+ #~ "Metodele generice de adăugare/actualizare/obținere meta nu ar trebui să "
5546
+ #~ "fie folosite pentru metadate interne, inclusiv pentru „%s”. Folosește "
5547
+ #~ "metoda „getters and setters”."
5548
+
5549
+ #~ msgid "Yucat&aacute;n"
5550
+ #~ msgstr "Yucat&aacute;n"
5551
+
5552
+ #~ msgid "San Luis Potos&iacute;"
5553
+ #~ msgstr "San Luis Potos&iacute;"
5554
+
5555
+ #~ msgid "Quer&eacute;taro"
5556
+ #~ msgstr "Quer&eacute;taro"
5557
+
5558
+ #~ msgid "Michoac&aacute;n"
5559
+ #~ msgstr "Michoac&aacute;n"
5560
+
5561
+ #~ msgid "Estado de M&eacute;xico"
5562
+ #~ msgstr "Estado de M&eacute;xico"
5563
+
5564
+ #~ msgid "Nuevo Le&oacute;n"
5565
+ #~ msgstr "Nuevo Le&oacute;n"
5566
+
5567
+ #~ msgid "Ciudad de M&eacute;xico"
5568
+ #~ msgstr "Ciudad de M&eacute;xico"
5569
+
5570
+ #~ msgid "Z&uuml;rich"
5571
+ #~ msgstr "Z&uuml;rich"
5572
+
5573
+ #~ msgid "Zug"
5574
+ #~ msgstr "Zug"
5575
+
5576
+ #~ msgid "Vaud"
5577
+ #~ msgstr "Vaud"
5578
+
5579
+ #~ msgid "Valais"
5580
+ #~ msgstr "Valais"
5581
+
5582
+ #~ msgid "Uri"
5583
+ #~ msgstr "Uri"
5584
+
5585
+ #~ msgid "Ticino"
5586
+ #~ msgstr "Ticino"
5587
+
5588
+ #~ msgid "Thurgau"
5589
+ #~ msgstr "Thurgau"
5590
+
5591
+ #~ msgid "St. Gallen"
5592
+ #~ msgstr "St. Gallen"
5593
+
5594
+ #~ msgid "Solothurn"
5595
+ #~ msgstr "Solothurn"
5596
+
5597
+ #~ msgid "Schwyz"
5598
+ #~ msgstr "Schwyz"
5599
+
5600
+ #~ msgid "Schaffhausen"
5601
+ #~ msgstr "Schaffhausen"
5602
+
5603
+ #~ msgid "Obwalden"
5604
+ #~ msgstr "Obwalden"
5605
+
5606
+ #~ msgid "Nidwalden"
5607
+ #~ msgstr "Nidwalden"
5608
+
5609
+ #~ msgid "Neuch&acirc;tel"
5610
+ #~ msgstr "Neuch&acirc;tel"
5611
+
5612
+ #~ msgid "Luzern"
5613
+ #~ msgstr "Lucerna"
5614
+
5615
+ #~ msgid "Jura"
5616
+ #~ msgstr "Jura"
5617
+
5618
+ #~ msgid "Graub&uuml;nden"
5619
+ #~ msgstr "Graub&uuml;nden"
5620
+
5621
+ #~ msgid "Glarus"
5622
+ #~ msgstr "Glarus"
5623
+
5624
+ #~ msgid "Geneva"
5625
+ #~ msgstr "Geneva"
5626
+
5627
+ #~ msgid "Fribourg"
5628
+ #~ msgstr "Fribourg"
5629
+
5630
+ #~ msgid "Bern"
5631
+ #~ msgstr "Berna"
5632
+
5633
+ #~ msgid "Basel-Stadt"
5634
+ #~ msgstr "Basel-Stadt"
5635
+
5636
+ #~ msgid "Basel-Landschaft"
5637
+ #~ msgstr "Basel-Landschaft"
5638
+
5639
+ #~ msgid "Appenzell Innerrhoden"
5640
+ #~ msgstr "Appenzell Innerrhoden"
5641
+
5642
+ #~ msgid "Appenzell Ausserrhoden"
5643
+ #~ msgstr "Appenzell Ausserrhoden"
5644
+
5645
+ #~ msgid "Aargau"
5646
+ #~ msgstr "Aargau"
5647
+
5648
+ #~ msgid "Zaire"
5649
+ #~ msgstr "Zair"
5650
+
5651
+ #~ msgid "Uíge"
5652
+ #~ msgstr "Uíge"
5653
+
5654
+ #~ msgid "Namibe"
5655
+ #~ msgstr "Namibe"
5656
+
5657
+ #~ msgid "Moxico"
5658
+ #~ msgstr "Moxico"
5659
+
5660
+ #~ msgid "Malanje"
5661
+ #~ msgstr "Malanje"
5662
+
5663
+ #~ msgid "Lunda-Sul"
5664
+ #~ msgstr "Lunda-Sul"
5665
+
5666
+ #~ msgid "Lunda-Norte"
5667
+ #~ msgstr "Lunda-Norte"
5668
+
5669
+ #~ msgid "Luanda"
5670
+ #~ msgstr "Luanda"
5671
+
5672
+ #~ msgid "Kwanza-Sul"
5673
+ #~ msgstr "Kwanza-Sul"
5674
+
5675
+ #~ msgid "Kwanza-Norte"
5676
+ #~ msgstr "Kwanza-Norte"
5677
+
5678
+ #~ msgid "Kuando Kubango"
5679
+ #~ msgstr "Kuando Kubango"
5680
+
5681
+ #~ msgid "Huambo"
5682
+ #~ msgstr "Huambo"
5683
+
5684
+ #~ msgid "Cunene"
5685
+ #~ msgstr "Cunene"
5686
+
5687
+ #~ msgid "Cabinda"
5688
+ #~ msgstr "Cabinda"
5689
+
5690
+ #~ msgid "Bié"
5691
+ #~ msgstr "Bié"
5692
+
5693
+ #~ msgid "Benguela"
5694
+ #~ msgstr "Benguela"
5695
+
5696
+ #~ msgid "Bengo"
5697
+ #~ msgstr "Bengo"
5698
+
5699
+ #~ msgid "Unable to use image \"%s\"."
5700
+ #~ msgstr "Nu pot folosi imaginea „%s”."
5701
+
5702
+ #~ msgid ""
5703
+ #~ "The \"locations not covered by your other zones\" zone cannot be updated."
5704
+ #~ msgstr "Zona „Locații neacoperite de alte zone” nu poate fi actualizată."
5705
+
5706
+ #~ msgid ""
5707
+ #~ "Product categories that the coupon will not be applied to, or that cannot "
5708
+ #~ "be in the cart in order for the \"Fixed cart discount\" to be applied."
5709
+ #~ msgstr ""
5710
+ #~ "Categoriile de produse cărora nu li se va aplica cuponul sau care nu pot "
5711
+ #~ "fi incluse în coș pentru a putea fi aplicat „Discount coș fix”."
5712
+
5713
+ #~ msgid ""
5714
+ #~ "Product categories that the coupon will be applied to, or that need to be "
5715
+ #~ "in the cart in order for the \"Fixed cart discount\" to be applied."
5716
+ #~ msgstr ""
5717
+ #~ "Categoriile de produse la care va fi aplicat cuponul sau care trebuie să "
5718
+ #~ "fie în coș pentru a putea fi aplicat „Discount coș fix”."
5719
+
5720
+ #~ msgid ""
5721
+ #~ "Products that the coupon will not be applied to, or that cannot be in the "
5722
+ #~ "cart in order for the \"Fixed cart discount\" to be applied."
5723
+ #~ msgstr ""
5724
+ #~ "Produsele cărora nu li se va aplica cuponul sau care nu pot fi incluse în "
5725
+ #~ "coș pentru a putea fi aplicat „Discount coș fix”."
5726
+
5727
+ #~ msgid ""
5728
+ #~ "Products that the coupon will be applied to, or that need to be in the "
5729
+ #~ "cart in order for the \"Fixed cart discount\" to be applied."
5730
+ #~ msgstr ""
5731
+ #~ "Produsele la care va fi aplicat cuponul sau care trebuie să fie în coș "
5732
+ #~ "pentru a putea fi aplicat „Discount coș fix”."
5733
+
5734
+ #~ msgid "Rated %1$s out of 5 based on %2$s customer rating"
5735
+ #~ msgid_plural "Rated %1$s out of 5 based on %2$s customer ratings"
5736
+ #~ msgstr[0] "Evaluat la %1$s din 5 pe baza unei evaluări a clientului"
5737
+ #~ msgstr[1] "Evaluat la %1$s din 5 pe baza a %2$s evaluări ale clienților"
5738
+ #~ msgstr[2] "Evaluat la %1$s din 5 pe baza a %2$s de evaluări ale clienților"
5739
+
5740
+ #~ msgid "Search results only"
5741
+ #~ msgstr "Numai rezultate căutare"
5742
+
5743
+ #~ msgid "Shop only"
5744
+ #~ msgstr "Numai magazin"
5745
+
5746
+ #~ msgid "Shop and search results"
5747
+ #~ msgstr "Magazin și rezultate căutare"
5748
+
5749
+ #~ msgid ""
5750
+ #~ "This order cannot be paid for. Please contact us if you need assistance."
5751
+ #~ msgstr ""
5752
+ #~ "Această comandă nu poate fi plătită. Te rog contactează-ne dacă ai nevoie "
5753
+ #~ "de asistență."
5754
+
5755
+ #~ msgid "Please log in to your account below to continue to the payment form."
5756
+ #~ msgstr ""
5757
+ #~ "Te rog autentifică-te în cont mai jos pentru a continua cu formularul de "
5758
+ #~ "plată."
5759
+
5760
+ #~ msgid "No matching product exists to update."
5761
+ #~ msgstr "Nu există niciun produs care se potrivește pentru a-l actualiza."
5762
+
5763
+ #~ msgid "A product with this SKU already exists."
5764
+ #~ msgstr "Un produs cu acest SKU există deja."
5765
+
5766
+ #~ msgid "A product with this ID already exists."
5767
+ #~ msgstr "Un produs cu acest ID există deja."
5768
+
5769
+ #~ msgid "SKU %s"
5770
+ #~ msgstr "SKU %s"
5771
+
5772
+ #~ msgid "ID %d"
5773
+ #~ msgstr "ID %d"
5774
+
5775
+ #~ msgid "Not able to attach \"%s\"."
5776
+ #~ msgstr "Nu pot atașa „%s”."
5777
+
5778
+ #~ msgid ""
5779
+ #~ "Variation cannot be imported: Missing parent ID or parent does not exist "
5780
+ #~ "yet."
5781
+ #~ msgstr ""
5782
+ #~ "Variația nu poate fi importată: lipsește ID părinte sau părintele încă nu "
5783
+ #~ "există."
5784
+
5785
+ #~ msgid "Invalid product ID %d."
5786
+ #~ msgstr "ID produs invalid %d."
5787
+
5788
+ #~ msgid "Invalid product type."
5789
+ #~ msgstr "Tip de produs invalid."
5790
+
5791
+ #~ msgid "Invalid customer query."
5792
+ #~ msgstr "Întrebare invalidă a clientului."
5793
+
5794
+ #~ msgid "Add New"
5795
+ #~ msgstr "Adaugă nou"
5796
+
5797
+ #~ msgid "All Products"
5798
+ #~ msgstr "Toate produsele"
5799
+
5800
+ #~ msgid "House number and street name"
5801
+ #~ msgstr "Nume stradă, număr etc."
5802
+
5803
+ #~ msgid ""
5804
+ #~ "API Key generated successfully. Make sure to copy your new keys now as "
5805
+ #~ "the secret key will be hidden once you leave this page."
5806
+ #~ msgstr ""
5807
+ #~ "Cheie API generată cu succes. Asigură-te să copiezi noile chei acum, "
5808
+ #~ "deoarece cheia secretă va fi ascunsă după ce părăsești această pagină."
5809
+
5810
+ #~ msgid "List of upsell products IDs."
5811
+ #~ msgstr "Listă de ID-uri produse upsell."
5812
+
5813
+ #~ msgid "The URL of your %s page (along with the Page ID)."
5814
+ #~ msgstr "URL-ul paginii tale %s (împreună cu ID-ul paginii)."
5815
+
5816
+ #~ msgid "The homepage URL of your site."
5817
+ #~ msgstr "URL-ul primei pagini a sitului tău."
5818
+
5819
+ #~ msgid "Generate CSV"
5820
+ #~ msgstr "Generează CSV"
5821
+
5822
+ #~ msgid "Yes, export all custom meta"
5823
+ #~ msgstr "Da, exportă toate metadatele personalizate"
5824
+
5825
+ #~ msgid "Export custom meta?"
5826
+ #~ msgstr "Exporți metadate personalizate?"
5827
+
5828
+ #~ msgid "Product variations"
5829
+ #~ msgstr "Variații produs"
5830
+
5831
+ #~ msgid "Export all products"
5832
+ #~ msgstr "Exportă toate produsele"
5833
+
5834
+ #~ msgid "Which product types should be exported?"
5835
+ #~ msgstr "Care tip de produs ar trebui exportat?"
5836
+
5837
+ #~ msgid "Export all columns"
5838
+ #~ msgstr "Exportă toate coloanele"
5839
+
5840
+ #~ msgid "Which columns should be exported?"
5841
+ #~ msgstr "Care coloane ar trebui să fie exportate?"
5842
+
5843
+ #~ msgid ""
5844
+ #~ "This tool allows you to generate and download a CSV file containing a "
5845
+ #~ "list of all products."
5846
+ #~ msgstr ""
5847
+ #~ "Acest instrument îți permite să generezi și să descarci un fișier CSV "
5848
+ #~ "care conține o listă a tuturor produselor."
5849
+
5850
+ #~ msgid "Export products to a CSV file"
5851
+ #~ msgstr "Exportă produse într-un fișier CSV"
5852
+
5853
+ #~ msgid "Export Products"
5854
+ #~ msgstr "Exportă produse"
5855
+
5856
+ #~ msgid "Product restored"
5857
+ #~ msgstr "Produs restaurat"
5858
+
5859
+ #~ msgid "Order restored"
5860
+ #~ msgstr "Comandă restaurată"
5861
+
5862
+ #~ msgid "Coupon restored"
5863
+ #~ msgstr "Cupon restaurat"
5864
+
5865
+ #~ msgid "Manage shipping methods"
5866
+ #~ msgstr "Administrează metodele de livrare"
5867
+
5868
+ #~ msgid "Locations not covered by your other zones"
5869
+ #~ msgstr "Locații neacoperite de alte zone"
5870
+
5871
+ #~ msgid "Star ratings should be required, not optional"
5872
+ #~ msgstr "Evaluările pe stele ar trebui să fie cerute, nu opționale"
5873
+
5874
+ #~ msgid "Enable star rating on reviews"
5875
+ #~ msgstr "Activează evaluare pe stele în recenzii"
5876
+
5877
+ #~ msgid "Reviews can only be left by \"verified owners\""
5878
+ #~ msgstr "Recenziile pot fi lăsate de către „proprietarii verificați”"
5879
+
5880
+ #~ msgid "Enable product reviews"
5881
+ #~ msgstr "Activează recenzii produs"
5882
+
5883
+ #~ msgid "Set Status - Out of stock"
5884
+ #~ msgstr "Setează stare - epuizat"
5885
+
5886
+ #~ msgid "Set Status - In stock"
5887
+ #~ msgstr "Setează stare - în stoc"
5888
+
5889
+ #~ msgid "Show advanced options"
5890
+ #~ msgstr "Arată opțiuni avansate"
5891
+
5892
+ #~ msgid "Hide advanced options"
5893
+ #~ msgstr "Ascunde opțiuni avansate"
5894
+
5895
+ #~ msgid "CSV Delimiter"
5896
+ #~ msgstr "Delimitator CSV"
5897
+
5898
+ #~ msgid "Alternatively, enter the path to a CSV file on your server:"
5899
+ #~ msgstr "Alternativ, introdu calea către un fișier CSV pe serverul tău:"
5900
+
5901
+ #~ msgid "Update existing products"
5902
+ #~ msgstr "Actualizează produse existente"
5903
+
5904
+ #~ msgid "Choose a CSV file from your computer:"
5905
+ #~ msgstr "Alege un fișier CSV din computerul tău:"
5906
+
5907
+ #~ msgid ""
5908
+ #~ "This tool allows you to import (or merge) product data to your store from "
5909
+ #~ "a CSV file."
5910
+ #~ msgstr ""
5911
+ #~ "Acest instrument îți permite să imporți (sau să îmbini) datele produsului "
5912
+ #~ "în magazinul tău dintr-un fișier CSV."
5913
+
5914
+ #~ msgid "Your products are now being imported..."
5915
+ #~ msgstr "Produsele tale sunt importate acum..."
5916
+
5917
+ #~ msgid "Importing"
5918
+ #~ msgstr "Fac importul"
5919
+
5920
+ #~ msgid "Run the importer"
5921
+ #~ msgstr "Rulează importatorul"
5922
+
5923
+ #~ msgid "Do not import"
5924
+ #~ msgstr "Nu importa"
5925
+
5926
+ #~ msgid "Sample:"
5927
+ #~ msgstr "Probă:"
5928
+
5929
+ #~ msgid "Map to field"
5930
+ #~ msgstr "Mapează la câmp"
5931
+
5932
+ #~ msgid "Column name"
5933
+ #~ msgstr "Nume coloană"
5934
+
5935
+ #~ msgid ""
5936
+ #~ "Select fields from your CSV file to map against products fields, or to "
5937
+ #~ "ignore during import."
5938
+ #~ msgstr ""
5939
+ #~ "Selectează câmpuri din fișierul tău CSV pentru a le mapa în câmpurile de "
5940
+ #~ "produse sau pentru a le ignora în timpul importului."
5941
+
5942
+ #~ msgid "Map CSV fields to products"
5943
+ #~ msgstr "Mapează câmpuri CSV la produse"
5944
+
5945
+ #~ msgid "Import Products"
5946
+ #~ msgstr "Importă produse"
5947
+
5948
+ #~ msgid "Reason for failure"
5949
+ #~ msgstr "Motiv de eșec"
5950
+
5951
+ #~ msgid "Import complete!"
5952
+ #~ msgstr "Import terminat!"
5953
+
5954
+ #~ msgid "View import log"
5955
+ #~ msgstr "Vezi jurnalul de import"
5956
+
5957
+ #~ msgid "Failed to import %s product"
5958
+ #~ msgid_plural "Failed to import %s products"
5959
+ #~ msgstr[0] "A eșuat importul unui produs"
5960
+ #~ msgstr[1] "A eșuat importul a %s produse"
5961
+ #~ msgstr[2] "A eșuat importul a %s de produse"
5962
+
5963
+ #~ msgid "%s product was skipped"
5964
+ #~ msgid_plural "%s products were skipped"
5965
+ #~ msgstr[0] "%s produs a fost sărit"
5966
+ #~ msgstr[1] "%s produse au fost sărite"
5967
+ #~ msgstr[2] "%s de produse au fost sărite"
5968
+
5969
+ #~ msgid "%s product updated"
5970
+ #~ msgid_plural "%s products updated"
5971
+ #~ msgstr[0] "%s produs actualizat"
5972
+ #~ msgstr[1] "%s produse actualizate"
5973
+ #~ msgstr[2] "%s de produse actualizate"
5974
+
5975
+ #~ msgid "%s product imported"
5976
+ #~ msgid_plural "%s products imported"
5977
+ #~ msgstr[0] "%s produs importat"
5978
+ #~ msgstr[1] "%s produse importate"
5979
+ #~ msgstr[2] "%s de produse importate"
5980
+
5981
+ #~ msgid "Parent SKU"
5982
+ #~ msgstr "SKU părinte"
5983
+
5984
+ #~ msgid "Product Title"
5985
+ #~ msgstr "Titlu produs"
5986
+
5987
+ #~ msgid "Import as meta"
5988
+ #~ msgstr "Importă ca metadate"
5989
+
5990
+ #~ msgid "Default attribute"
5991
+ #~ msgstr "Atribut implicit"
5992
+
5993
+ #~ msgid "Attribute visibility"
5994
+ #~ msgstr "Vizibilitate atribut"
5995
+
5996
+ #~ msgid "Is a global attribute?"
5997
+ #~ msgstr "Este un atribut global?"
5998
+
5999
+ #~ msgid "Attribute value(s)"
6000
+ #~ msgstr "Valoare (valori) atribut"
6001
+
6002
+ #~ msgid "Attribute name"
6003
+ #~ msgstr "Nume atribut"
6004
+
6005
+ #~ msgid "Download URL"
6006
+ #~ msgstr "Descarcă URL"
6007
+
6008
+ #~ msgid "Download name"
6009
+ #~ msgstr "Descarcă nume"
6010
+
6011
+ #~ msgid "External product"
6012
+ #~ msgstr "Produs extern"
6013
+
6014
+ #~ msgctxt "Quantity in stock"
6015
+ #~ msgid "Stock"
6016
+ #~ msgstr "Stoc"
6017
+
6018
+ #~ msgid "Meta: %s"
6019
+ #~ msgstr "Meta: %s"
6020
+
6021
+ #~ msgid "Download %d URL"
6022
+ #~ msgstr "URL descărcare %d"
6023
+
6024
+ #~ msgid "Download %d name"
6025
+ #~ msgstr "Nume descărcare %d"
6026
+
6027
+ #~ msgid "Attribute %d default"
6028
+ #~ msgstr "Atribut %d implicit"
6029
+
6030
+ #~ msgid "Attribute %d global"
6031
+ #~ msgstr "Atribut %d global"
6032
+
6033
+ #~ msgid "Attribute %d visible"
6034
+ #~ msgstr "Vizibilitate atribut %d"
6035
+
6036
+ #~ msgid "Attribute %d value(s)"
6037
+ #~ msgstr "Valoare (valori) atribut %d"
6038
+
6039
+ #~ msgid "Attribute %d name"
6040
+ #~ msgstr "Nume atribut %d"
6041
+
6042
+ #~ msgid "External URL"
6043
+ #~ msgstr "URL extern"
6044
+
6045
+ #~ msgid "Download expiry days"
6046
+ #~ msgstr "Zile de expirare descărcare"
6047
+
6048
+ #~ msgid "Images"
6049
+ #~ msgstr "Imagini"
6050
+
6051
+ #~ msgid "Allow customer reviews?"
6052
+ #~ msgstr "Permiți recenzii de la clienți?"
6053
+
6054
+ #~ msgid "Backorders allowed?"
6055
+ #~ msgstr "Precomenzile sunt permise?"
6056
+
6057
+ #~ msgid "Date sale price ends"
6058
+ #~ msgstr "Dată încheiere promoție"
6059
+
6060
+ #~ msgid "Date sale price starts"
6061
+ #~ msgstr "Dată începere promoție"
6062
+
6063
+ #~ msgid "Short description"
6064
+ #~ msgstr "Descriere scurtă"
6065
+
6066
+ #~ msgid "Visibility in catalog"
6067
+ #~ msgstr "Vizibilitate în catalog"
6068
+
6069
+ #~ msgid "Is featured?"
6070
+ #~ msgstr "Este reprezentativ?"
6071
+
6072
+ #~ msgid "Published"
6073
+ #~ msgstr "Publicat"
6074
+
6075
+ #~ msgid "Please upload or provide the link to a valid CSV file."
6076
+ #~ msgstr "Te rog încarcă sau furnizează legătura către un fișier CSV valid."
6077
+
6078
+ #~ msgid "Invalid file type. The importer supports CSV and TXT file formats."
6079
+ #~ msgstr ""
6080
+ #~ "Tip de fișier invalid. Importatorul suportă formate de fișier CSV și TXT."
6081
+
6082
+ #~ msgid ""
6083
+ #~ "File is empty. Please upload something more substantial. This error could "
6084
+ #~ "also be caused by uploads being disabled in your php.ini or by "
6085
+ #~ "post_max_size being defined as smaller than upload_max_filesize in php."
6086
+ #~ "ini."
6087
+ #~ msgstr ""
6088
+ #~ "Fișierul este gol. Te rog încarcă ceva mai substanțial. Această eroare ar "
6089
+ #~ "putea fi cauzată și de faptul că încărcările sunt dezactivate în php.ini "
6090
+ #~ "sau de post_max_size care este definit ca fiind mai mic decât "
6091
+ #~ "upload_max_filesize în php.ini."
6092
+
6093
+ #~ msgid "Done!"
6094
+ #~ msgstr "Gata!"
6095
+
6096
+ #~ msgid "Column mapping"
6097
+ #~ msgstr "Mapare coloană"
6098
+
6099
+ #~ msgid "Upload CSV file"
6100
+ #~ msgstr "Încarcă fișier CSV"
6101
+
6102
+ #~ msgid "WooCommerce.com Subscriptions %s"
6103
+ #~ msgstr "Abonamente WooCommerce.com %s"
6104
+
6105
+ #~ msgid "Browse Extensions"
6106
+ #~ msgstr "Răsfoiește extensiile"
6107
+
6108
+ #~ msgid "Disconnect"
6109
+ #~ msgstr "Deconectare"
6110
+
6111
+ #~ msgid "My Subscriptions"
6112
+ #~ msgstr "Abonamentele mele"
6113
+
6114
+ #~ msgid "Connected to WooCommerce.com"
6115
+ #~ msgstr "Conectat la WooCommerce.com"
6116
+
6117
+ #~ msgid "Connect"
6118
+ #~ msgstr "Conectează-te"
6119
+
6120
+ #~ msgid "Once connected, your WooCommerce.com purchases will be listed here."
6121
+ #~ msgstr ""
6122
+ #~ "Odată conectat, cumpărăturile tale WooCommerce.com vor fi listate aici."
6123
+
6124
+ #~ msgid ""
6125
+ #~ "Manage your subscriptions, get important product notifications, and "
6126
+ #~ "updates, all from the convenience of your WooCommerce dashboard"
6127
+ #~ msgstr ""
6128
+ #~ "Îți administrezi abonamentele, primești notificări importante despre "
6129
+ #~ "produse și actualizări, toate din confortabilul panou de control al "
6130
+ #~ "WooCommerce"
6131
+
6132
+ #~ msgid ""
6133
+ #~ "<strong>Sorry to see you go</strong>. Feel free to reconnect again using "
6134
+ #~ "the button below."
6135
+ #~ msgstr ""
6136
+ #~ "<strong>Regret că pleci</strong>. Te poți reconecta iar folosind butonul "
6137
+ #~ "de mai jos."
6138
+
6139
+ #~ msgid "Installed Extensions without a Subscription"
6140
+ #~ msgstr "Extensii instalate fără un abonament"
6141
+
6142
+ #~ msgid "Could not find any subscriptions on your WooCommerce.com account"
6143
+ #~ msgstr "N-am putut găsi niciun abonament pe contul tău WooCommerce.com"
6144
+
6145
+ #~ msgid "Inactive"
6146
+ #~ msgstr "Inactiv"
6147
+
6148
+ #~ msgid "Upgrade"
6149
+ #~ msgstr "Actualizează"
6150
+
6151
+ #~ msgid "Shared by %s"
6152
+ #~ msgstr "Partajat de %s"
6153
+
6154
+ #~ msgid "Subscription: Using %1$d of %2$d sites available"
6155
+ #~ msgstr "Abonament: folosirea a %1$d din %2$d situri disponibile"
6156
+
6157
+ #~ msgid "Subscription: Not available - %1$d of %2$d already in use"
6158
+ #~ msgstr "Abonament: indisponibil - sunt deja utilizate %1$d din %2$d"
6159
+
6160
+ #~ msgid "Expires on:"
6161
+ #~ msgstr "Expiră pe:"
6162
+
6163
+ #~ msgid "Expiring soon!"
6164
+ #~ msgstr "Expiră în curând!"
6165
+
6166
+ #~ msgid "Auto renews on:"
6167
+ #~ msgstr "Reînnoiri automate pe:"
6168
+
6169
+ #~ msgid "Expired :("
6170
+ #~ msgstr "Expirat :("
6171
+
6172
+ #~ msgid ""
6173
+ #~ "We've made things simpler and easier to manage moving forward. From now "
6174
+ #~ "on you can manage all your WooCommerce purchases directly from the "
6175
+ #~ "Extensions menu within the WooCommerce plugin itself. <a href=\"%s\">View "
6176
+ #~ "and manage</a> your extensions now."
6177
+ #~ msgstr ""
6178
+ #~ "Am făcut lucrurile mai simple și mai ușor de administrat decât înainte. "
6179
+ #~ "De acum încolo poți administra toate cumpărăturile WooCommerce direct din "
6180
+ #~ "meniul Extensii din chiar modulul WooCommerce. <a href=\"%s"
6181
+ #~ "\">Vizualizează-ți și administrează-ți</a> extensiile acum."
6182
+
6183
+ #~ msgid "Looking for the WooCommerce Helper?"
6184
+ #~ msgstr "Cauți ajutorul de la WooCommerce?"
6185
+
6186
+ #~ msgid ""
6187
+ #~ "Note: You currently have <a href=\"%1$s\">%2$d paid extension</a> which "
6188
+ #~ "should be updated first before updating WooCommerce."
6189
+ #~ msgid_plural ""
6190
+ #~ "Note: You currently have <a href=\"%1$s\">%2$d paid extensions</a> which "
6191
+ #~ "should be updated first before updating WooCommerce."
6192
+ #~ msgstr[0] ""
6193
+ #~ "Notă: Acum ai <a href=\"%1$s\">%2$d extensie plătită</a> care ar trebui "
6194
+ #~ "să fie actualizată înainte de actualizarea WooCommerce."
6195
+ #~ msgstr[1] ""
6196
+ #~ "Notă: Acum ai <a href=\"%1$s\">%2$d extensii plătite</a> care ar trebui "
6197
+ #~ "să fie actualizate înainte de actualizarea WooCommerce."
6198
+ #~ msgstr[2] ""
6199
+ #~ "Notă: Acum ai <a href=\"%1$s\">%2$d de extensii plătite</a> care ar "
6200
+ #~ "trebui să fie actualizate înainte de actualizarea WooCommerce."
6201
+
6202
+ #~ msgid "Authentication and subscription caches refreshed successfully."
6203
+ #~ msgstr "Cache-urile autentificare și abonament reîmprospătate cu succes."
6204
+
6205
+ #~ msgid "You have successfully disconnected your store from WooCommerce.com"
6206
+ #~ msgstr "Ți-am deconectat cu succes magazinul de la WooCommerce.com"
6207
+
6208
+ #~ msgid "You have successfully connected your store to WooCommerce.com"
6209
+ #~ msgstr "Ți-am conectat cu succes magazinul la WooCommerce.com"
6210
+
6211
+ #~ msgid ""
6212
+ #~ "An error has occurred when deactivating the extension %1$s. Please "
6213
+ #~ "proceed to the <a href=\"%2$s\">Plugins screen</a> to deactivate it "
6214
+ #~ "manually."
6215
+ #~ msgstr ""
6216
+ #~ "A apărut o eroare la dezactivarea extensiei %1$s. Te rog du-te la <a href="
6217
+ #~ "\"%2$s\">ecranul Module</a> pentru a o dezactiva manual."
6218
+
6219
+ #~ msgid "The extension %s has been deactivated successfully."
6220
+ #~ msgstr "Extensia %s a fost dezactivată cu succes."
6221
+
6222
+ #~ msgid ""
6223
+ #~ "An error has occurred when deactivating the subscription for %s. Please "
6224
+ #~ "try again later."
6225
+ #~ msgstr ""
6226
+ #~ "A apărut o eroare la dezactivarea abonamentului la %s. Te rog încearcă "
6227
+ #~ "din nou mai târziu."
6228
+
6229
+ #~ msgid ""
6230
+ #~ "Subscription for %1$s deactivated successfully. You will no longer "
6231
+ #~ "receive updates for this product. <a href=\"%2$s\">Click here</a> if you "
6232
+ #~ "wish to deactivate the plugin as well."
6233
+ #~ msgstr ""
6234
+ #~ "Abonamentul la %1$s dezactivat cu succes. Nu vei mai primi actualizări "
6235
+ #~ "pentru acest produs. <a href=\"%2$s\">Dă clic aici</a> dacă vrei să "
6236
+ #~ "dezactivezi și modulul."
6237
+
6238
+ #~ msgid ""
6239
+ #~ "Subscription for %s deactivated successfully. You will no longer receive "
6240
+ #~ "updates for this product."
6241
+ #~ msgstr ""
6242
+ #~ "Abonamentul la %s dezactivat cu succes. Nu vei mai primi actualizări "
6243
+ #~ "pentru acest produs."
6244
+
6245
+ #~ msgid "An error has occurred when activating %s. Please try again later."
6246
+ #~ msgstr ""
6247
+ #~ "A apărut o eroare la activarea %s. Te rog încearcă din nou mai târziu."
6248
+
6249
+ #~ msgid ""
6250
+ #~ "%s activated successfully. You will now receive updates for this product."
6251
+ #~ msgstr ""
6252
+ #~ "%s activat cu succes. Acum vei primi actualizări pentru acest produs."
6253
+
6254
+ #~ msgid ""
6255
+ #~ "Version %s is <strong>available</strong>. To enable this update you need "
6256
+ #~ "to <strong>purchase</strong> a new subscription."
6257
+ #~ msgstr ""
6258
+ #~ "Este <strong>disponibilă</strong> versiunea %s. Pentru a activa această "
6259
+ #~ "actualizare trebuie să <strong>cumperi</strong> un nou abonament."
6260
+
6261
+ #~ msgid ""
6262
+ #~ "This subscription is expiring soon. Please <strong>renew</strong> to "
6263
+ #~ "continue receiving updates and support."
6264
+ #~ msgstr ""
6265
+ #~ "Acest abonament expiră în curând. Te rog <strong>reînnoiește-l</strong> "
6266
+ #~ "pentru a continua să primești actualizări și suport."
6267
+
6268
+ #~ msgid "Enable auto-renew"
6269
+ #~ msgstr "Activează reînnoire automată"
6270
+
6271
+ #~ msgid "Subscription is <strong>expiring</strong> soon."
6272
+ #~ msgstr "Abonamentul va <strong>expira</strong> în curând."
6273
+
6274
+ #~ msgid "Renew"
6275
+ #~ msgstr "Reînnoiește"
6276
+
6277
+ #~ msgid ""
6278
+ #~ "This subscription has expired. Please <strong>renew</strong> to receive "
6279
+ #~ "updates and support."
6280
+ #~ msgstr ""
6281
+ #~ "Acest abonament a expirat. Te rog <strong>reînnoiește-l</strong> pentru a "
6282
+ #~ "primi actualizări și suport."
6283
+
6284
+ #~ msgid ""
6285
+ #~ "This subscription has expired. Contact the owner to <strong>renew</"
6286
+ #~ "strong> the subscription to receive updates and support."
6287
+ #~ msgstr ""
6288
+ #~ "Acest abonament a expirat. Contactează proprietarul pentru <strong>a "
6289
+ #~ "reînnoi</strong> abonamentul ca să primești actualizări și suport."
6290
+
6291
+ #~ msgid ""
6292
+ #~ "To enable this update you need to <strong>purchase</strong> a new "
6293
+ #~ "subscription."
6294
+ #~ msgstr ""
6295
+ #~ "Pentru a activa această actualizare trebuie să <strong>cumperi</strong> "
6296
+ #~ "un nou abonament."
6297
+
6298
+ #~ msgid ""
6299
+ #~ "To enable this update you need to <strong>activate</strong> this "
6300
+ #~ "subscription."
6301
+ #~ msgstr ""
6302
+ #~ "Pentru a activa această actualizare trebuie să <strong>activezi</strong> "
6303
+ #~ "acest abonament."
6304
+
6305
+ #~ msgid "Version %s is <strong>available</strong>."
6306
+ #~ msgstr "Este <strong>disponibilă</strong> versiunea %s."
6307
+
6308
+ #~ msgid "WooCommerce Helper"
6309
+ #~ msgstr "Ajutor de la WooCommerce"
6310
+
6311
+ #~ msgid "Create a new webhook"
6312
+ #~ msgstr "Creează un cârlig web nou"
6313
+
6314
+ #~ msgid ""
6315
+ #~ "Webhooks are event notifications sent to URLs of your choice. They can be "
6316
+ #~ "used to integrate with third-party services which support them."
6317
+ #~ msgstr ""
6318
+ #~ "Cârligele web sunt notificări de eveniment trimise la URL-urile alese de "
6319
+ #~ "tine. Ele pot fi folosite pentru a integra servicii terțe care le suportă."
6320
+
6321
+ #~ msgid "Copy from billing address"
6322
+ #~ msgstr "Copiază din adresa de facturare"
6323
+
6324
+ #~ msgid "Import products from a CSV file"
6325
+ #~ msgstr "Importă produse dintr-un fișier CSV"
6326
+
6327
+ #~ msgid "This is a featured product"
6328
+ #~ msgstr "Acesta este un produs reprezentativ"
6329
+
6330
+ #~ msgid "This setting determines which shop pages products will be listed on."
6331
+ #~ msgstr ""
6332
+ #~ "Această setare determină care produse din paginile magazinului vor fi "
6333
+ #~ "listate."
6334
+
6335
+ #~ msgid "Filter by product type"
6336
+ #~ msgstr "Filtrează după tip de produs"
6337
+
6338
+ #~ msgid "Filter by category"
6339
+ #~ msgstr "Filtrează după categorie"
6340
+
6341
+ #~ msgid "Sorting"
6342
+ #~ msgstr "Sortez"
6343
+
6344
+ #~ msgid "Import <strong>products</strong> to your store via a csv file."
6345
+ #~ msgstr "Importă <strong>produse</strong> în magazin via un fișier CSV."
6346
+
6347
+ #~ msgid "WooCommerce products (CSV)"
6348
+ #~ msgstr "Produse WooCommerce (CSV)"
6349
+
6350
+ #~ msgid "Product Import"
6351
+ #~ msgstr "Import de produse"
6352
+
6353
+ #~ msgid "Product Export"
6354
+ #~ msgstr "Export de produse"
6355
+
6356
+ #~ msgid "Custom Link"
6357
+ #~ msgstr "Legătură personalizată"
6358
+
6359
+ #~ msgid "WooCommerce Endpoint"
6360
+ #~ msgstr "Punct-final WooCommerce"
6361
+
6362
+ #~ msgid "Back to Attributes"
6363
+ #~ msgstr "Înapoi la atribute"
6364
+
6365
+ #~ msgid "Are you sure you want to delete this log?"
6366
+ #~ msgstr "Sigur vrei să ștergi acest jurnal?"
6367
+
6368
+ #~ msgid "Create an API key"
6369
+ #~ msgstr "Creează o cheie API"
6370
+
6371
+ #~ msgid ""
6372
+ #~ "The WooCommerce REST API allows external apps to view and manage store "
6373
+ #~ "data. Access is granted only to those with valid API keys."
6374
+ #~ msgstr ""
6375
+ #~ "REST API WooCommerce permite aplicații externe pentru a vizualiza și "
6376
+ #~ "administra datele magazinului. Accesul este acordat numai celor cu chei "
6377
+ #~ "API valide."
6378
+
6379
+ #~ msgid ""
6380
+ #~ "Display live rates from Canada Post at checkout to make shipping a "
6381
+ #~ "breeze. Powered by WooCommerce Services."
6382
+ #~ msgstr ""
6383
+ #~ "Afișează prețurile curente de la Canada Post la finalizare pentru a face "
6384
+ #~ "livrarea mai ușoară. Propulsată de Servicii WooCommerce."
6385
+
6386
+ #~ msgid "Show Canada Post shipping rates"
6387
+ #~ msgstr "Arată tarife de livrare Canada Post"
6388
+
6389
+ #~ msgid "Free - Install now"
6390
+ #~ msgstr "Gratuit - instalează acum"
6391
+
6392
+ #~ msgid ""
6393
+ #~ "Integrate your store with USPS to buy discounted shipping labels, and "
6394
+ #~ "print them directly from your WooCommerce dashboard. Powered by "
6395
+ #~ "WooCommerce Services."
6396
+ #~ msgstr ""
6397
+ #~ "Integrează-ți magazinul cu USPS pentru a cumpăra etichete de livrare cu "
6398
+ #~ "discount și imprimă-le direct din panoul tău de control WooCommerce. "
6399
+ #~ "Propulsate de Servicii WooCommerce."
6400
+
6401
+ #~ msgid ""
6402
+ #~ "Buy discounted shipping labels — then print them from your dashboard."
6403
+ #~ msgstr ""
6404
+ #~ "Cumpără etichete de livrare cu reducere — apoi imprimă-le din panoul tău "
6405
+ #~ "de control."
6406
+
6407
+ #~ msgid "WooCommerce Services"
6408
+ #~ msgstr "Servicii WooCommerce"
6409
+
6410
+ #~ msgid "Vrancea"
6411
+ #~ msgstr "Vrancea"
6412
+
6413
+ #~ msgid "Vaslui"
6414
+ #~ msgstr "Vaslui"
6415
+
6416
+ #~ msgid "Tulcea"
6417
+ #~ msgstr "Tulcea"
6418
+
6419
+ #~ msgid "Teleorman"
6420
+ #~ msgstr "Teleorman"
6421
+
6422
+ #~ msgid "Suceava"
6423
+ #~ msgstr "Suceava"
6424
+
6425
+ #~ msgid "Sibiu"
6426
+ #~ msgstr "Sibiu"
6427
+
6428
+ #~ msgid "Satu Mare"
6429
+ #~ msgstr "Satu Mare"
6430
+
6431
+ #~ msgid "Prahova"
6432
+ #~ msgstr "Prahova"
6433
+
6434
+ #~ msgid "Olt"
6435
+ #~ msgstr "Olt"
6436
+
6437
+ #~ msgid "Ilfov"
6438
+ #~ msgstr "Ilfov"
6439
+
6440
+ #~ msgid "Hunedoara"
6441
+ #~ msgstr "Hunedoara"
6442
+
6443
+ #~ msgid "Harghita"
6444
+ #~ msgstr "Harghita"
6445
+
6446
+ #~ msgid "Gorj"
6447
+ #~ msgstr "Gorj"
6448
+
6449
+ #~ msgid "Giurgiu"
6450
+ #~ msgstr "Giurgiu"
6451
+
6452
+ #~ msgid "Dolj"
6453
+ #~ msgstr "Dolj"
6454
+
6455
+ #~ msgid "Covasna"
6456
+ #~ msgstr "Covasna"
6457
+
6458
+ #~ msgid "Cluj"
6459
+ #~ msgstr "Cluj"
6460
+
6461
+ #~ msgid "Bihor"
6462
+ #~ msgstr "Bihor"
6463
+
6464
+ #~ msgid "Arad"
6465
+ #~ msgstr "Arad"
6466
+
6467
+ #~ msgid "Alba"
6468
+ #~ msgstr "Alba"
6469
+
6470
+ #~ msgid "Tarija"
6471
+ #~ msgstr "Tarija"
6472
+
6473
+ #~ msgid "Potosí"
6474
+ #~ msgstr "Potosí"
6475
+
6476
+ #~ msgid "Pando"
6477
+ #~ msgstr "Pando"
6478
+
6479
+ #~ msgid "Oruro"
6480
+ #~ msgstr "Oruro"
6481
+
6482
+ #~ msgid "La Paz"
6483
+ #~ msgstr "La Paz"
6484
+
6485
+ #~ msgid "Cochabamba"
6486
+ #~ msgstr "Cochabamba"
6487
+
6488
+ #~ msgid "Beni"
6489
+ #~ msgstr "Beni"
6490
+
6491
+ #~ msgid "Chuquisaca"
6492
+ #~ msgstr "Chuquisaca"
6493
+
6494
+ #~ msgid ""
6495
+ #~ "Are you sure you want to log out? <a href=\"%s\">Confirm and log out</a>"
6496
+ #~ msgstr ""
6497
+ #~ "Sigur vrei să te dezautentifici? <a href=\"%s\">Confirmă și "
6498
+ #~ "dezautentifică-te</a>"
6499
+
6500
+ #~ msgid "Unknown request method."
6501
+ #~ msgstr "Metodă de solicitare necunoscută."
6502
+
6503
+ #~ msgid "Create"
6504
+ #~ msgstr "Creează"
6505
+
6506
+ #~ msgid "Zone ID."
6507
+ #~ msgstr "ID zonă."
6508
+
6509
+ #~ msgid "ID."
6510
+ #~ msgstr "ID."
6511
+
6512
+ #~ msgid "Value (required)"
6513
+ #~ msgstr "Valoare (obligatorie)"
6514
+
6515
+ #~ msgid "Name (required)"
6516
+ #~ msgstr "Nume (obligatoriu)"
6517
+
6518
+ #~ msgid "Recalculate"
6519
+ #~ msgstr "Recalculează"
6520
+
6521
+ #~ msgid ""
6522
+ #~ "Recalculate totals? This will calculate taxes based on the customers "
6523
+ #~ "country (or the store base country) and update totals."
6524
+ #~ msgstr ""
6525
+ #~ "Recalculezi totalurile? Aceasta va calcula taxele pe baza țării "
6526
+ #~ "clienților (sau a țării de bază a magazinului) și va actualiza totalurile."
6527
+
6528
+ #~ msgid "All missing WooCommerce pages successfully installed"
6529
+ #~ msgstr "Toate paginile WooCommerce lipsă s-au instalat cu succes"
6530
+
6531
+ #~ msgid "Terms in the product visibility taxonomy."
6532
+ #~ msgstr "Termeni în taxonomia vizibilitate produs."
6533
+
6534
+ #~ msgid "A list of taxonomy terms used for product visibility."
6535
+ #~ msgstr ""
6536
+ #~ "O listă de termeni din taxonomie folosiți pentru vizibilitate produs."
6537
+
6538
+ #~ msgid "Taxonomies: Product visibility"
6539
+ #~ msgstr "Taxonomii: vizibilitate produs"
6540
+
6541
+ #~ msgid "%s (Copy)"
6542
+ #~ msgstr "%s (Copiază)"
6543
+
6544
+ #~ msgctxt "with first and last result"
6545
+ #~ msgid "Showing the single result"
6546
+ #~ msgid_plural "Showing %1$d&ndash;%2$d of %3$d results"
6547
+ #~ msgstr[0] "Se arată singurul rezultat"
6548
+ #~ msgstr[1] "Se arată %1$d&ndash;%2$d din %3$d rezultate"
6549
+ #~ msgstr[2] "Se arată %1$d&ndash;%2$d din %3$d de rezultate"
6550
+
6551
+ #~ msgid "Invalid product ID"
6552
+ #~ msgstr "ID produs invalid"
6553
+
6554
+ #~ msgid "Sorry, you cannot edit this resource."
6555
+ #~ msgstr "Regret, nu poți edita această resursă."
6556
+
6557
+ #~ msgid "Increase existing price by (fixed amount or %):"
6558
+ #~ msgstr "Crește prețul existent prin (sumă fixă sau %):"
6559
+
6560
+ #~ msgid "Parent theme author URL"
6561
+ #~ msgstr "URL autor temă părinte"
6562
+
6563
+ #~ msgid "Parent theme version"
6564
+ #~ msgstr "Versiune temă părinte"
6565
+
6566
+ #~ msgid "Parent theme name"
6567
+ #~ msgstr "Nume temă părinte"
6568
+
6569
+ #~ msgid "Active plugins"
6570
+ #~ msgstr "Module active"
6571
+
6572
+ #~ msgid "MaxMind GeoIP database"
6573
+ #~ msgstr "Bază de date GeoIP MaxMind"
6574
+
6575
+ #~ msgid "Max upload size"
6576
+ #~ msgstr "Dimensiune maximă de încărcare"
6577
+
6578
+ #~ msgid "MySQL version"
6579
+ #~ msgstr "Versiune MySQL"
6580
+
6581
+ #~ msgid "cURL version"
6582
+ #~ msgstr "Versiune cURL"
6583
+
6584
+ #~ msgid "PHP version"
6585
+ #~ msgstr "Versiune PHP"
6586
+
6587
+ #~ msgid "Server info"
6588
+ #~ msgstr "Informații despre server"
6589
+
6590
+ #~ msgid "Shipping method"
6591
+ #~ msgstr "Metodă de livrare"
6592
+
6593
+ #~ msgid "Customer provided note:"
6594
+ #~ msgstr "Notă furnizată de client:"
6595
+
6596
+ #~ msgid "Number of decimals"
6597
+ #~ msgstr "Număr de zecimale"
6598
+
6599
+ #~ msgid "Thousand separator"
6600
+ #~ msgstr "Separator pentru mii"
6601
+
6602
+ #~ msgid "Currency position"
6603
+ #~ msgstr "Poziție monedă"
6604
+
6605
+ #~ msgid "Automattic"
6606
+ #~ msgstr "Automattic"
6607
+
6608
+ #~ msgid "%1$s review for %2$s"
6609
+ #~ msgid_plural "%1$s reviews for %2$s"
6610
+ #~ msgstr[0] "%1$s recenzie pentru %2$s"
6611
+ #~ msgstr[1] "%1$s recenzii pentru %2$s"
6612
+ #~ msgstr[2] "%1$s de recenzii pentru %2$s"
6613
+
6614
+ #~ msgid "Awaiting product image"
6615
+ #~ msgstr "Imagine produs în așteptare"
6616
+
6617
+ #~ msgid "Next (arrow right)"
6618
+ #~ msgstr "Următor (săgeată dreapta)"
6619
+
6620
+ #~ msgid "Previous (arrow left)"
6621
+ #~ msgstr "Anterior (săgeată stânga)"
6622
+
6623
+ #~ msgid "Zoom in/out"
6624
+ #~ msgstr "Mărește/micșorează"
6625
+
6626
+ #~ msgid "Toggle fullscreen"
6627
+ #~ msgstr "Comută în ecran complet"
6628
+
6629
+ #~ msgid "Share"
6630
+ #~ msgstr "Partajează"
6631
+
6632
+ #~ msgid "Close (Esc)"
6633
+ #~ msgstr "Închide (Esc)"
6634
+
6635
+ #~ msgid "Search products&hellip;"
6636
+ #~ msgstr "Caută produse&hellip;"
6637
+
6638
+ #~ msgid "%1$s ending in %2$s"
6639
+ #~ msgstr "%1$s se termină în %2$s"
6640
+
6641
+ #~ msgid "%1$s for %2$s item"
6642
+ #~ msgid_plural "%1$s for %2$s items"
6643
+ #~ msgstr[0] "%1$s pentru %2$s element"
6644
+ #~ msgstr[1] "%1$s pentru %2$s elemente"
6645
+ #~ msgstr[2] "%1$s pentru %2$s de elemente"
6646
+
6647
+ #~ msgid ""
6648
+ #~ "From your account dashboard you can view your <a href=\"%1$s\">recent "
6649
+ #~ "orders</a>, manage your <a href=\"%2$s\">shipping and billing addresses</"
6650
+ #~ "a>, and <a href=\"%3$s\">edit your password and account details</a>."
6651
+ #~ msgstr ""
6652
+ #~ "În panoul de control al contului tău poți să-ți vezi <a href=\"%1$s"
6653
+ #~ "\">comenzile recente</a>, să-ți administrezi <a href=\"%2$s\">adresele de "
6654
+ #~ "livrare și de facturare</a> și <a href=\"%3$s\">să-ți editezi parola și "
6655
+ #~ "detaliile contului</a>."
6656
+
6657
+ #~ msgid "Hello %1$s (not %1$s? <a href=\"%2$s\">Log out</a>)"
6658
+ #~ msgstr "Bună %1$s (nu ești %1$s? <a href=\"%2$s\">Dezautentifică-te</a>)"
6659
+
6660
+ #~ msgid "(estimated for %s)"
6661
+ #~ msgstr "(estimat la %s)"
6662
+
6663
+ #~ msgid "This will give \"%1$s\" %2$s access which will allow it to:"
6664
+ #~ msgstr "Aceasta îi va da lui \"%1$s\" acces la %2$s care va permite să:"
6665
+
6666
+ #~ msgid "Max %s"
6667
+ #~ msgstr "Maxim %s"
6668
+
6669
+ #~ msgid "Min %s"
6670
+ #~ msgstr "Minim %s"
6671
+
6672
+ #~ msgid ""
6673
+ #~ "The payment gateway for this order does not support automatic refunds."
6674
+ #~ msgstr ""
6675
+ #~ "Gateway-ul de plată pentru această comandă nu suportă rambursări automate."
6676
+
6677
+ #~ msgid "The payment gateway for this order does not exist."
6678
+ #~ msgstr "Gateway-ul de plată pentru această comandă nu există."
6679
+
6680
+ #~ msgid "Invalid refund amount."
6681
+ #~ msgstr "Sumă rambursare invalidă."
6682
+
6683
+ #~ msgctxt "Price range: from-to"
6684
+ #~ msgid "%1$s &ndash; %2$s"
6685
+ #~ msgstr "%1$s &ndash; %2$s"
6686
+
6687
+ #~ msgid "Fixed product discount"
6688
+ #~ msgstr "Discount produs fix"
6689
+
6690
+ #~ msgid "Fixed cart discount"
6691
+ #~ msgstr "Discount coș fix"
6692
+
6693
+ #~ msgid "Percentage discount"
6694
+ #~ msgstr "Discount în procente"
6695
+
6696
+ #~ msgid "Iranian toman"
6697
+ #~ msgstr "Rial iranian"
6698
+
6699
+ #~ msgid "%s does not exist."
6700
+ #~ msgstr "%s nu există."
6701
+
6702
+ #~ msgid "Coupon: %s"
6703
+ #~ msgstr "Cupon: %s"
6704
+
6705
+ #~ msgctxt "shipping packages"
6706
+ #~ msgid "Shipping"
6707
+ #~ msgstr "Livrare"
6708
+
6709
+ #~ msgid "Your password has been reset successfully."
6710
+ #~ msgstr "Parola ta a fost resetată cu succes."
6711
+
6712
+ #~ msgid "Specific countries"
6713
+ #~ msgstr "Anumite țări"
6714
+
6715
+ #~ msgid "Free shipping"
6716
+ #~ msgstr "Livrare gratuită"
6717
+
6718
+ #~ msgid "%1$s ending in %2$s (expires %3$s/%4$s)"
6719
+ #~ msgstr "%1$s se termină în %2$s (expiră în %3$s/%4$s)"
6720
+
6721
+ #~ msgid "This method should not be called before plugins_loaded."
6722
+ #~ msgstr "Această metodă nu ar trebui apelată înainte de plugins_loaded."
6723
+
6724
+ #~ msgid "Visit %s admin area:"
6725
+ #~ msgstr "Vizitează zona de administrare %s:"
6726
+
6727
+ #~ msgid "You have received the following WooCommerce log message:"
6728
+ #~ msgid_plural "You have received the following WooCommerce log messages:"
6729
+ #~ msgstr[0] "Ai primit următorul mesaj jurnal WooCommerce:"
6730
+ #~ msgstr[1] "Ai primit următoarele mesaje jurnal WooCommerce:"
6731
+ #~ msgstr[2] "Ai primit următoarele mesaje jurnal WooCommerce:"
6732
+
6733
+ #~ msgid "[%1$s] %2$s: %3$s WooCommerce log message"
6734
+ #~ msgid_plural "[%1$s] %2$s: %3$s WooCommerce log messages"
6735
+ #~ msgstr[0] "[%1$s] %2$s: %3$s mesaj jurnal WooCommerce"
6736
+ #~ msgstr[1] "[%1$s] %2$s: %3$s mesaje jurnal WooCommerce"
6737
+ #~ msgstr[2] "[%1$s] %2$s: %3$s de mesaj jurnal WooCommerce"
6738
+
6739
+ #~ msgid "Product properties should not be accessed directly."
6740
+ #~ msgstr "Proprietățile produsului nu ar trebuie să fie accesate direct."
6741
+
6742
+ #~ msgid "%1$s - Pre-order for \"%2$s\" (Order #%3$s)"
6743
+ #~ msgstr "%1$s - Pre-comandă pentru \"%2$s\" (Comanda #%3$s)"
6744
+
6745
+ #~ msgid "%1$s - Order #%2$s"
6746
+ #~ msgstr "%1$s - Comandă #%2$s"
6747
+
6748
+ #~ msgid ""
6749
+ #~ "Optionally enter the URL to a 150x50px image displayed as your logo in "
6750
+ #~ "the upper left corner of the PayPal checkout pages."
6751
+ #~ msgstr ""
6752
+ #~ "Opțional, introdu URL-ul unei imagini de 150x50px afișată ca logoul tău "
6753
+ #~ "în colțul din stânga sus al paginilor de finalizare PayPal."
6754
+
6755
+ #~ msgid ""
6756
+ #~ "Optionally enter the name of the page style you wish to use. These are "
6757
+ #~ "defined within your PayPal account. This affects classic PayPal checkout "
6758
+ #~ "screens."
6759
+ #~ msgstr ""
6760
+ #~ "Opțional introdu numele stilului de pagină pe care vrei să-l folosești. "
6761
+ #~ "Ele sunt definite în contul tău PayPal. Acest lucru afectează ecranele "
6762
+ #~ "clasice de finalizare PayPal."
6763
+
6764
+ #~ msgid ""
6765
+ #~ "PayPal sandbox can be used to test payments. Sign up for a <a href=\"%s"
6766
+ #~ "\">developer account</a>."
6767
+ #~ msgstr ""
6768
+ #~ "PayPal Sandbox poate fi folosit pentru a testa plăți. Înregistrează-te "
6769
+ #~ "pentru un <a href=\"%s\">cont de dezvoltator</a>."
6770
+
6771
+ #~ msgid ""
6772
+ #~ "Order #%s has been marked paid by PayPal IPN, but was previously "
6773
+ #~ "cancelled. Admin handling required."
6774
+ #~ msgstr ""
6775
+ #~ "Comanda #%s a fost marcată plătită de PayPal IPN, dar a fost anulată "
6776
+ #~ "anterior. Trebuie gestionată de către administrator."
6777
+
6778
+ #~ msgid "Payment for cancelled order %s received"
6779
+ #~ msgstr "S-a primit plata pentru comanda anulată %s"
6780
+
6781
+ #~ msgid ""
6782
+ #~ "Payment authorized. Change payment status to processing or complete to "
6783
+ #~ "capture funds."
6784
+ #~ msgstr ""
6785
+ #~ "Plată autorizată. Modifică starea plății la procesare sau finalizare "
6786
+ #~ "pentru a captura fonduri."
6787
+
6788
+ #~ msgid "Payment could not captured - Auth ID: %1$s, Status: %2$s"
6789
+ #~ msgstr "Plata nu a putut fi capturată - ID autorizație: %1$s, stare: %2$s"
6790
+
6791
+ #~ msgid "Payment of %1$s was captured - Auth ID: %2$s, Transaction ID: %3$s"
6792
+ #~ msgstr ""
6793
+ #~ "Plata %1$s a fost capturată - ID autorizație: %2$s, ID tranzacție: %3$s"
6794
+
6795
+ #~ msgid "Payment could not captured: %s"
6796
+ #~ msgstr "Plata nu a putut fi capturată: %s"
6797
+
6798
+ #~ msgid "Bank"
6799
+ #~ msgstr "Bancă"
6800
+
6801
+ #~ msgid ""
6802
+ #~ "To override and edit this email template copy %1$s to your theme folder: "
6803
+ #~ "%2$s."
6804
+ #~ msgstr ""
6805
+ #~ "Pentru a contramanda și edita acest șablon de email copiază %1$s în "
6806
+ #~ "dosarul temei tale: %2$s."
6807
+
6808
+ #~ msgid "Invalid payment token."
6809
+ #~ msgstr "Token de plată invalid."
6810
+
6811
+ #~ msgid "Invalid or missing payment token fields."
6812
+ #~ msgstr "Câmpuri token de plată invalide sau lipsă."
6813
+
6814
+ #~ msgid "Invalid download."
6815
+ #~ msgstr "Descărcare invalidă."
6816
+
6817
+ #~ msgid "Invalid customer."
6818
+ #~ msgstr "Client invalid."
6819
+
6820
+ #~ msgid "%1$d updates complete. Database version is %2$s"
6821
+ #~ msgstr "%1$d actualizări finalizate. Versiunea bazei de date este %2$s"
6822
+
6823
+ #~ msgid "Calling update function: %s"
6824
+ #~ msgstr "Apelarea funcției de actualizare: %s"
6825
+
6826
+ #~ msgid "Output just the id when the operation is successful."
6827
+ #~ msgstr "Furnizează doar ID-ul când operațiunea este cu succes."
6828
+
6829
+ #~ msgid "Invalid coupon."
6830
+ #~ msgstr "Cupon invalid."
6831
+
6832
+ #~ msgid "Render response in a particular format."
6833
+ #~ msgstr "Dă răspunsul într-un anumit format."
6834
+
6835
+ #~ msgid "Get the value of an individual field."
6836
+ #~ msgstr "Obții valoarea unui câmp individual."
6837
+
6838
+ #~ msgid "Limit response to specific fields. Defaults to all fields."
6839
+ #~ msgstr ""
6840
+ #~ "Limitează răspunsul la anumite câmpuri. Implicite sunt toate câmpurile."
6841
+
6842
+ #~ msgid "The id for the resource."
6843
+ #~ msgstr "ID-ul pentru resursă."
6844
+
6845
+ #~ msgid "No schema title found for %s, skipping REST command registration."
6846
+ #~ msgstr ""
6847
+ #~ "N-a fost găsit niciun titlu de schemă pentru %s, sărind peste "
6848
+ #~ "înregistrarea comenzii REST."
6849
+
6850
+ #~ msgid ""
6851
+ #~ "Make sure to include the --user flag with an account that has permissions "
6852
+ #~ "for this action."
6853
+ #~ msgstr ""
6854
+ #~ "Asigură-te că incluzi --marcajul utilizatorului cu un cont care are "
6855
+ #~ "permisiuni pentru această acțiune."
6856
+
6857
+ #~ msgid "Updated"
6858
+ #~ msgstr "Actualizat"
6859
+
6860
+ #~ msgid "Deleted"
6861
+ #~ msgstr "Șters"
6862
+
6863
+ #~ msgid "External products cannot be backordered."
6864
+ #~ msgstr "Produsele externe nu pot fi înapoiate."
6865
+
6866
+ #~ msgid "External products cannot be stock managed."
6867
+ #~ msgstr "Produsele externe nu pot fi gestionate în stoc."
6868
+
6869
+ #~ msgctxt "Product Attribute"
6870
+ #~ msgid "Product %s"
6871
+ #~ msgstr "Produs %s"
6872
+
6873
+ #~ msgid "Product shipping classes"
6874
+ #~ msgstr "Clase livrare produs"
6875
+
6876
+ #~ msgid "No tags found"
6877
+ #~ msgstr "Nicio etichetă găsită"
6878
+
6879
+ #~ msgid "Choose from the most used tags"
6880
+ #~ msgstr "Alege dintre cele mai folosite etichete"
6881
+
6882
+ #~ msgid "Add or remove tags"
6883
+ #~ msgstr "Adaugă sau înlătură etichete"
6884
+
6885
+ #~ msgid "Separate tags with commas"
6886
+ #~ msgstr "Separă etichetele cu virgulă"
6887
+
6888
+ #~ msgid "Popular tags"
6889
+ #~ msgstr "Etichete populare"
6890
+
6891
+ #~ msgid "New tag name"
6892
+ #~ msgstr "Nume etichetă nouă"
6893
+
6894
+ #~ msgid "Add new tag"
6895
+ #~ msgstr "Adaugă etichetă nouă"
6896
+
6897
+ #~ msgid "Update tag"
6898
+ #~ msgstr "Actualizează etichetă"
6899
+
6900
+ #~ msgid "Edit tag"
6901
+ #~ msgstr "Editează etichetă"
6902
+
6903
+ #~ msgid "All tags"
6904
+ #~ msgstr "Toate etichetele"
6905
+
6906
+ #~ msgid "Search tags"
6907
+ #~ msgstr "Caută etichete"
6908
+
6909
+ #~ msgid "Tag"
6910
+ #~ msgstr "Etichetă"
6911
+
6912
+ #~ msgid "No categories found"
6913
+ #~ msgstr "Nicio categorie găsită"
6914
+
6915
+ #~ msgid "New category name"
6916
+ #~ msgstr "Nume categorie nouă"
6917
+
6918
+ #~ msgid "Add new category"
6919
+ #~ msgstr "Adaugă categorie nouă"
6920
+
6921
+ #~ msgid "Update category"
6922
+ #~ msgstr "Actualizează categoria"
6923
+
6924
+ #~ msgid "Edit category"
6925
+ #~ msgstr "Editează categoria"
6926
+
6927
+ #~ msgid "Parent category:"
6928
+ #~ msgstr "Categorie părinte:"
6929
+
6930
+ #~ msgid "Parent category"
6931
+ #~ msgstr "Categorie părinte"
6932
+
6933
+ #~ msgid "All categories"
6934
+ #~ msgstr "Toate categoriile"
6935
+
6936
+ #~ msgid "Search categories"
6937
+ #~ msgstr "Caută categorii"
6938
+
6939
+ #~ msgid "Category"
6940
+ #~ msgstr "Categorie"
6941
+
6942
+ #~ msgid "Order status set to %s."
6943
+ #~ msgstr "Stare comandă setată la %s."
6944
+
6945
+ #~ msgid "Invalid tax class"
6946
+ #~ msgstr "Clasă de impozitare invalidă"
6947
+
6948
+ #~ msgid "Invalid variation ID"
6949
+ #~ msgstr "ID variație invalid"
6950
+
6951
+ #~ msgid "Invalid product"
6952
+ #~ msgstr "Produs invalid"
6953
+
6954
+ #~ msgid "Visit premium customer support"
6955
+ #~ msgstr "Vizitează suportul premium pentru client"
6956
+
6957
+ #~ msgid "Error:"
6958
+ #~ msgstr "Eroare:"
6959
+
6960
+ #~ msgid "Invalid value posted for %s"
6961
+ #~ msgstr "Valoare invalidă publicată pentru %s"
6962
+
6963
+ #~ msgid ""
6964
+ #~ "%d item from your previous order is currently unavailable and could not "
6965
+ #~ "be added to your cart."
6966
+ #~ msgid_plural ""
6967
+ #~ "%d items from your previous order are currently unavailable and could not "
6968
+ #~ "be added to your cart."
6969
+ #~ msgstr[0] ""
6970
+ #~ "%d element din comanda anterioară este acum indisponibil și nu a putut fi "
6971
+ #~ "adăugat în coșul tău."
6972
+ #~ msgstr[1] ""
6973
+ #~ "%d elemente din comanda anterioară sunt acum indisponibile și nu au putut "
6974
+ #~ "fi adăugate în coșul tău."
6975
+ #~ msgstr[2] ""
6976
+ #~ "%d de elemente din comanda anterioară sunt acum indisponibile și nu au "
6977
+ #~ "putut fi adăugate în coșul tău."
6978
+
6979
+ #~ msgid "%1$s is low in stock. There are %2$d left."
6980
+ #~ msgstr "%1$s are stoc mic. Sunt %2$d rămase."
6981
+
6982
+ #~ msgid "Invalid data store."
6983
+ #~ msgstr "Stocare de date invalidă."
6984
+
6985
+ #~ msgid "Invalid billing email address"
6986
+ #~ msgstr "Adresă email de facturare invalidă"
6987
+
6988
+ #~ msgid "Invalid role"
6989
+ #~ msgstr "Rol invalid"
6990
+
6991
+ #~ msgid "Invalid email address"
6992
+ #~ msgstr "Adresă email invalidă"
6993
+
6994
+ #~ msgid "Invalid email address restriction"
6995
+ #~ msgstr "Restricție adresă email invalidă"
6996
+
6997
+ #~ msgid "Invalid discount type"
6998
+ #~ msgstr "Tip de discount invalid"
6999
+
7000
+ #~ msgid "Eircode"
7001
+ #~ msgstr "Cod postal"
7002
+
7003
+ #~ msgid "Apartment, suite, unit etc. (optional)"
7004
+ #~ msgstr "Apartament, complex, unitate etc. (opțional)"
7005
+
7006
+ #~ msgid "Street address"
7007
+ #~ msgstr "Stradă"
7008
+
7009
+ #~ msgid "Billing %s"
7010
+ #~ msgstr "Facturare %s"
7011
+
7012
+ #~ msgid "You cannot add another \"%s\" to your cart."
7013
+ #~ msgstr "Nu poți adăuga un alt \"%s\" în coșul tău."
7014
+
7015
+ #~ msgid "View cart"
7016
+ #~ msgstr "Vezi coșul"
7017
+
7018
+ #~ msgid ""
7019
+ #~ "In order for <strong>database caching</strong> to work with WooCommerce "
7020
+ #~ "you must add %1$s to the \"Ignored Query Strings\" option in <a href="
7021
+ #~ "\"%2$s\">W3 Total Cache settings</a>."
7022
+ #~ msgstr ""
7023
+ #~ "Pentru ca să funcționeze <strong>cache bază de date</strong> cu "
7024
+ #~ "WooCommerce trebuie să adaugi %1$s la opțiunea „Șiruri de interogare "
7025
+ #~ "ignorate” în <a href=\"%2$s\">setări W3 Total Cache</a>."
7026
+
7027
+ #~ msgid "%1$s - API %2$s (created on %3$s at %4$s)."
7028
+ #~ msgstr "%1$s - API %2$s (creată pe %3$s la %4$s)."
7029
+
7030
+ #~ msgid "Invalid order"
7031
+ #~ msgstr "Comandă invalidă"
7032
+
7033
+ #~ msgid "The product review cannot be deleted."
7034
+ #~ msgstr "Recenzia produsului nu poate fi ștearsă."
7035
+
7036
+ #~ msgid "The comment has already been trashed."
7037
+ #~ msgstr "Comentariul a fost deja aruncat la gunoi."
7038
+
7039
+ #~ msgid "The product review does not support trashing."
7040
+ #~ msgstr "Recenzia produsului nu suportă aruncarea la gunoi."
7041
+
7042
+ #~ msgid "Invalid product review ID."
7043
+ #~ msgstr "ID recenzie produs invalid."
7044
+
7045
+ #~ msgid "Updating product review failed."
7046
+ #~ msgstr "Actualizarea recenziei produsului a eșuat."
7047
+
7048
+ #~ msgid "Creating product review failed."
7049
+ #~ msgstr "Crearea recenziei produsului a eșuat."
7050
+
7051
+ #~ msgid "Could not update the attribute."
7052
+ #~ msgstr "N-am putut actualiza atributul."
7053
+
7054
+ #~ msgid "The date of the customer last order, as GMT."
7055
+ #~ msgstr "Data ultimei comenzi a clientului, ca GMT."
7056
+
7057
+ #~ msgid "The date the customer was created, as GMT."
7058
+ #~ msgstr "Data la care a fost creat clientul, ca GMT."
7059
+
7060
+ #~ msgid "Invalid resource ID."
7061
+ #~ msgstr "ID resursă invalid."
7062
+
7063
+ #~ msgid "This resource cannot be created."
7064
+ #~ msgstr "Această resursă nu poate fi creată."
7065
+
7066
+ #~ msgid "The date the webhook was last modified, as GMT."
7067
+ #~ msgstr "Data la care cârligul web a fost modificat ultima dată, ca GMT."
7068
+
7069
+ #~ msgid "The date the webhook was created, as GMT."
7070
+ #~ msgstr "Data la care cârligul web a fost creat, ca GMT."
7071
+
7072
+ #~ msgid "The date the webhook delivery was logged, as GMT."
7073
+ #~ msgstr "Data la care a fost autentificată livrarea cârligului web, ca GMT."
7074
+
7075
+ #~ msgid "There was an error calling this tool. There is no callback present."
7076
+ #~ msgstr ""
7077
+ #~ "A apărut o eroare la apelarea acestui instrument. Nu există niciun apel-"
7078
+ #~ "înapoi prezent."
7079
+
7080
+ #~ msgid "Tool ran."
7081
+ #~ msgstr "Rulare instrument."
7082
+
7083
+ #~ msgid "%d orphaned variations deleted"
7084
+ #~ msgstr "%d variații fără părinte șterse"
7085
+
7086
+ #~ msgid "Tool return message."
7087
+ #~ msgstr "Mesaj returnare instrument."
7088
+
7089
+ #~ msgid "Did the tool run successfully?"
7090
+ #~ msgstr "Instrumentul a rulat cu succes?"
7091
+
7092
+ #~ msgid "Tool description."
7093
+ #~ msgstr "Descriere instrument."
7094
+
7095
+ #~ msgid "What running the tool will do."
7096
+ #~ msgstr "Ce va face rularea instrumentului."
7097
+
7098
+ #~ msgid "Tool name."
7099
+ #~ msgstr "Nume instrument."
7100
+
7101
+ #~ msgid "A unique identifier for the tool."
7102
+ #~ msgstr "Un identificator unic pentru instrument."
7103
+
7104
+ #~ msgid "Invalid tool ID."
7105
+ #~ msgstr "ID instrument invalid."
7106
+
7107
+ #~ msgid ""
7108
+ #~ "This tool will install all the missing WooCommerce pages. Pages already "
7109
+ #~ "defined and set up will not be replaced."
7110
+ #~ msgstr ""
7111
+ #~ "Acest instrument va instala toate paginile WooCommerce lipsă. Pagini deja "
7112
+ #~ "definite și inițializate nu vor fi înlocuite."
7113
+
7114
+ #~ msgid "This tool will delete all variations which have no parent."
7115
+ #~ msgstr ""
7116
+ #~ "Acest instrument va șterge toate variațiile care n-au niciun părinte."
7117
+
7118
+ #~ msgid "Delete orphaned variations"
7119
+ #~ msgstr "Șterge variații fără părinte"
7120
+
7121
+ #~ msgid "Orphaned variations"
7122
+ #~ msgstr "Variații fără părinte"
7123
+
7124
+ #~ msgid "WooCommerce pages."
7125
+ #~ msgstr "Pagini WooCommerce."
7126
+
7127
+ #~ msgid "Hide errors from visitors?"
7128
+ #~ msgstr "Ascunzi erorile vizitatorilor?"
7129
+
7130
+ #~ msgid "Currency symbol."
7131
+ #~ msgstr "Simbol monedă."
7132
+
7133
+ #~ msgid "Currency."
7134
+ #~ msgstr "Monedă."
7135
+
7136
+ #~ msgid "SSL forced?"
7137
+ #~ msgstr "SSL forțat?"
7138
+
7139
+ #~ msgid "REST API enabled?"
7140
+ #~ msgstr "REST API activată?"
7141
+
7142
+ #~ msgid "Settings."
7143
+ #~ msgstr "Setări."
7144
+
7145
+ #~ msgid "Template overrides."
7146
+ #~ msgstr "Contramandări șablon."
7147
+
7148
+ #~ msgid "Does this theme have outdated templates?"
7149
+ #~ msgstr "Această temă are șabloane învechite?"
7150
+
7151
+ #~ msgid "Does the theme have a woocommerce.php file?"
7152
+ #~ msgstr "Tema are un fișier woocommerce.php?"
7153
+
7154
+ #~ msgid "Does the theme declare WooCommerce support?"
7155
+ #~ msgstr "Tema declară suport pentru WooCommerce?"
7156
+
7157
+ #~ msgid "Is this theme a child theme?"
7158
+ #~ msgstr "Această temă este o temă copil?"
7159
+
7160
+ #~ msgid "Theme author URL."
7161
+ #~ msgstr "URL autor temă."
7162
+
7163
+ #~ msgid "Latest version of theme."
7164
+ #~ msgstr "Ultima versiune a temei."
7165
+
7166
+ #~ msgid "Theme version."
7167
+ #~ msgstr "Versiune temă."
7168
+
7169
+ #~ msgid "Theme name."
7170
+ #~ msgstr "Nume temă."
7171
+
7172
+ #~ msgid "Theme."
7173
+ #~ msgstr "Temă."
7174
+
7175
+ #~ msgid "Database tables."
7176
+ #~ msgstr "Tabele bază de date."
7177
+
7178
+ #~ msgid "Database prefix."
7179
+ #~ msgstr "Prefix bază de date."
7180
+
7181
+ #~ msgid "Database."
7182
+ #~ msgstr "Bază de date."
7183
+
7184
+ #~ msgid "Remote GET response."
7185
+ #~ msgstr "Răspuns GET la distanță."
7186
+
7187
+ #~ msgid "Remote GET successful?"
7188
+ #~ msgstr "GET la distanță cu succes?"
7189
+
7190
+ #~ msgid "Remote POST response."
7191
+ #~ msgstr "Răspuns POST la distanță."
7192
+
7193
+ #~ msgid "Remote POST successful?"
7194
+ #~ msgstr "POST la distanță cu succes?"
7195
+
7196
+ #~ msgid "Is mbstring enabled?"
7197
+ #~ msgstr "Este mbstring activat?"
7198
+
7199
+ #~ msgid "Geolocation enabled?"
7200
+ #~ msgstr "Geolocație activată?"
7201
+
7202
+ #~ msgid "Taxonomy terms for product/order statuses."
7203
+ #~ msgstr "Termeni taxonomie pentru stări produs/comandă."
7204
+
7205
+ #~ msgid "Security."
7206
+ #~ msgstr "Securitate."
7207
+
7208
+ #~ msgid "Is GZip enabled?"
7209
+ #~ msgstr "Este GZip activat?"
7210
+
7211
+ #~ msgid "Is DomDocument class enabled?"
7212
+ #~ msgstr "Este clasa DomDocument activată?"
7213
+
7214
+ #~ msgid "Is SoapClient class enabled?"
7215
+ #~ msgstr "Este clasa SoapClient activată?"
7216
+
7217
+ #~ msgid "Is fsockopen/cURL enabled?"
7218
+ #~ msgstr "Este fsockopen/cURL activat?"
7219
+
7220
+ #~ msgid "Default timezone."
7221
+ #~ msgstr "Fus orar implicit."
7222
+
7223
+ #~ msgid "Is SUHOSIN installed?"
7224
+ #~ msgstr "Este SUHOSIN instalat?"
7225
+
7226
+ #~ msgid "PHP max input vars."
7227
+ #~ msgstr "Maxim variabile de intrare PHP."
7228
+
7229
+ #~ msgid "PHP max execution time."
7230
+ #~ msgstr "Timp maxim de execuție PHP."
7231
+
7232
+ #~ msgid "PHP post max size."
7233
+ #~ msgstr "Dimensiune maximă articol PHP."
7234
+
7235
+ #~ msgid "WordPress language."
7236
+ #~ msgstr "Limbă WordPress."
7237
+
7238
+ #~ msgid "Are WordPress cron jobs enabled?"
7239
+ #~ msgstr "Sarcinile planificate WordPress sunt activate?"
7240
+
7241
+ #~ msgid "Is WordPress debug mode active?"
7242
+ #~ msgstr "Modul depanare WordPress este activat?"
7243
+
7244
+ #~ msgid "WordPress memory limit."
7245
+ #~ msgstr "Limită de memorie Wordpress."
7246
+
7247
+ #~ msgid "Is WordPress multisite?"
7248
+ #~ msgstr "Este WordPress multi-sit?"
7249
+
7250
+ #~ msgid "WordPress version."
7251
+ #~ msgstr "Versiune WordPress."
7252
+
7253
+ #~ msgid "Is log directory writable?"
7254
+ #~ msgstr "Directorul jurnalului poate fi scris?"
7255
+
7256
+ #~ msgid "Log directory."
7257
+ #~ msgstr "Director jurnal."
7258
+
7259
+ #~ msgid "WooCommerce version."
7260
+ #~ msgstr "Versiune WooCommerce."
7261
+
7262
+ #~ msgid "Site URL."
7263
+ #~ msgstr "URL sit."
7264
+
7265
+ #~ msgid "Home URL."
7266
+ #~ msgstr "URL prima pagină."
7267
+
7268
+ #~ msgid "Environment."
7269
+ #~ msgstr "Mediu."
7270
+
7271
+ #~ msgid "Shipping zone order."
7272
+ #~ msgstr "Ordine zonă de livrare."
7273
+
7274
+ #~ msgid "Shipping zones do not support trashing."
7275
+ #~ msgstr "Zonele de livrare nu suportă aruncarea la gunoi."
7276
+
7277
+ #~ msgid ""
7278
+ #~ "Resource cannot be created. Check to make sure 'order' and 'name' are "
7279
+ #~ "present."
7280
+ #~ msgstr ""
7281
+ #~ "Resursa nu poate fi creată. Verifică să fii sigur că există „comandă” și "
7282
+ #~ "„nume”."
7283
+
7284
+ #~ msgid "Shipping zone name."
7285
+ #~ msgstr "Nume zonă de livrare."
7286
+
7287
+ #~ msgid "Shipping method settings."
7288
+ #~ msgstr "Setări metodă de livrare."
7289
+
7290
+ #~ msgid "Shipping method enabled status."
7291
+ #~ msgstr "Starea activată pentru metodă de livrare."
7292
+
7293
+ #~ msgid "Shipping method sort order."
7294
+ #~ msgstr "Ordine de sortare metodă de livrare."
7295
+
7296
+ #~ msgid "Shipping method customer facing title."
7297
+ #~ msgstr "Titlu metodă de livrare care interacționează direct cu clienții."
7298
+
7299
+ #~ msgid "Shipping method instance ID."
7300
+ #~ msgstr "ID exemplu metodă de livrare."
7301
+
7302
+ #~ msgid "Shipping methods do not support trashing."
7303
+ #~ msgstr "Metodele de livrare nu suportă aruncarea la gunoi."
7304
+
7305
+ #~ msgid "Resource cannot be created."
7306
+ #~ msgstr "Resursa nu poate fi creată."
7307
+
7308
+ #~ msgid "Unique ID for the instance."
7309
+ #~ msgstr "ID unic pentru exemplu."
7310
+
7311
+ #~ msgid "Unique ID for the zone."
7312
+ #~ msgstr "ID unic pentru zonă."
7313
+
7314
+ #~ msgid "Shipping zone location type."
7315
+ #~ msgstr "Tip de locație zonă de livrare."
7316
+
7317
+ #~ msgid "Shipping zone location code."
7318
+ #~ msgstr "Cod locație zonă de livrare."
7319
+
7320
+ #~ msgid "Unique ID for the resource."
7321
+ #~ msgstr "ID unic pentru resursă."
7322
+
7323
+ #~ msgid "Shipping method description."
7324
+ #~ msgstr "Descriere metodă de livrare."
7325
+
7326
+ #~ msgid "Shipping method title."
7327
+ #~ msgstr "Titlu metodă de livrare."
7328
+
7329
+ #~ msgid "Method ID."
7330
+ #~ msgstr "ID metodă."
7331
+
7332
+ #~ msgid "IDs for settings sub groups."
7333
+ #~ msgstr "ID-uri pentru setări subgrupuri."
7334
+
7335
+ #~ msgid "ID of parent grouping."
7336
+ #~ msgstr "ID-ul grupării părinte."
7337
+
7338
+ #~ msgid "A unique identifier that can be used to link settings together."
7339
+ #~ msgstr ""
7340
+ #~ "Un identificator unic care poate fi folosit pentru a lega împreună "
7341
+ #~ "setările."
7342
+
7343
+ #~ msgid "No setting groups have been registered."
7344
+ #~ msgstr "Niciun grup de setări nu a fost înregistrat."
7345
+
7346
+ #~ msgid ""
7347
+ #~ "Array of options (key value pairs) for inputs such as select, "
7348
+ #~ "multiselect, and radio buttons."
7349
+ #~ msgstr ""
7350
+ #~ "Tablou de opțiuni (perechi de valori cheie) pentru intrări, precum "
7351
+ #~ "butoane de selectare, selectare multiplă și radio."
7352
+
7353
+ #~ msgid "Invalid setting."
7354
+ #~ msgstr "Setare invalidă."
7355
+
7356
+ #~ msgid "Invalid setting group."
7357
+ #~ msgstr "Grup de setări invalid."
7358
+
7359
+ #~ msgid "Settings group ID."
7360
+ #~ msgstr "ID grup setări."
7361
+
7362
+ #~ msgid "Limit result set to products based on a maximum price."
7363
+ #~ msgstr "Limitează setul de rezultate la produse bazate pe un preț maxim."
7364
+
7365
+ #~ msgid "Limit result set to products based on a minimum price."
7366
+ #~ msgstr "Limitează setul de rezultate la produse bazate pe un preț minim."
7367
+
7368
+ #~ msgid "Limit result set to products on sale."
7369
+ #~ msgstr "Limitează setul de rezultate la produse de vânzare."
7370
+
7371
+ #~ msgid "Limit result set to products in stock or out of stock."
7372
+ #~ msgstr "Limitează setul de rezultate la produse din stoc sau stoc epuizat."
7373
+
7374
+ #~ msgid "Limit result set to products with a specific tax class."
7375
+ #~ msgstr ""
7376
+ #~ "Limitează setul de rezultate la produsele cu o anumită clasă de taxe."
7377
+
7378
+ #~ msgid "Limit result set to featured products."
7379
+ #~ msgstr "Limitează setul de rezultate la produse reprezentative."
7380
+
7381
+ #~ msgid "List of variations IDs."
7382
+ #~ msgstr "Listă de ID-uri variații."
7383
+
7384
+ #~ msgid "The date the product was last modified, as GMT."
7385
+ #~ msgstr "Data la care produsul a fost modificat ultima dată, ca GMT."
7386
+
7387
+ #~ msgid "The date the product was created, as GMT."
7388
+ #~ msgstr "Data la care produsul a fost creat, ca GMT."
7389
+
7390
+ #~ msgid "Number of days until access to downloadable files expires."
7391
+ #~ msgstr "Numărul de zile până când accesul la fișierele descărcabile expiră."
7392
+
7393
+ #~ msgid "Number of times downloadable files can be downloaded after purchase."
7394
+ #~ msgstr ""
7395
+ #~ "De câte ori fișierele descărcabile pot fi descărcate după cumpărare."
7396
+
7397
+ #~ msgid "End date of sale price, in the site's timezone."
7398
+ #~ msgstr "Data de încheiere a prețului de vânzare, în fusul orar al sitului."
7399
+
7400
+ #~ msgid "Start date of sale price, as GMT."
7401
+ #~ msgstr "Data de începere a prețului de vânzare, ca GMT."
7402
+
7403
+ #~ msgid "Start date of sale price, in the site's timezone."
7404
+ #~ msgstr "Data de începere a prețului de vânzare, în fusul orar al sitului."
7405
+
7406
+ #~ msgid "The date the review was created, as GMT."
7407
+ #~ msgstr "Data la care revizia a fost creată, ca GMT."
7408
+
7409
+ #~ msgid "The content of the review."
7410
+ #~ msgstr "Conținutul recenziei."
7411
+
7412
+ #~ msgid "The date the image was last modified, as GMT."
7413
+ #~ msgstr "Data la care imaginea a fost modificată ultima dată, ca GMT."
7414
+
7415
+ #~ msgid "The date the image was created, as GMT."
7416
+ #~ msgstr "Data la care imaginea a fost creată, ca GMT."
7417
+
7418
+ #~ msgid "Placeholder text to be displayed in text inputs."
7419
+ #~ msgstr "Textul substituent care să fie afișat în intrări text."
7420
+
7421
+ #~ msgid "Additional help text shown to the user about the setting."
7422
+ #~ msgstr "Text ajutor suplimentar despre setare arătat utilizatorului."
7423
+
7424
+ #~ msgid "Default value for the setting."
7425
+ #~ msgstr "Valoare implictă pentru setare."
7426
+
7427
+ #~ msgid "Setting value."
7428
+ #~ msgstr "Valoare setare."
7429
+
7430
+ #~ msgid "Type of setting."
7431
+ #~ msgstr "Tipul de setare."
7432
+
7433
+ #~ msgid "A human readable description for the setting used in interfaces."
7434
+ #~ msgstr ""
7435
+ #~ "O descriere care poate fi citită de oameni pentru setarea folosită în "
7436
+ #~ "interfețe."
7437
+
7438
+ #~ msgid "A human readable label for the setting used in interfaces."
7439
+ #~ msgstr ""
7440
+ #~ "O etichetă care poate fi citită de oameni pentru setarea folosită în "
7441
+ #~ "interfețe."
7442
+
7443
+ #~ msgid "A unique identifier for the setting."
7444
+ #~ msgstr "Un identificator unic pentru setare."
7445
+
7446
+ #~ msgid "Payment gateway settings."
7447
+ #~ msgstr "Setări gateway de plată."
7448
+
7449
+ #~ msgid "Payment gateway method description."
7450
+ #~ msgstr "Descriere metodă gateway de plată."
7451
+
7452
+ #~ msgid "Payment gateway method title."
7453
+ #~ msgstr "Titlu metodă gateway de plată."
7454
+
7455
+ #~ msgid "Payment gateway enabled status."
7456
+ #~ msgstr "Stare activată gateway de plată."
7457
+
7458
+ #~ msgid "Payment gateway sort order."
7459
+ #~ msgstr "Ordine de sortare gateway de plată."
7460
+
7461
+ #~ msgid "Payment gateway description on checkout."
7462
+ #~ msgstr "Descrierea gateway-ului de plată la finalizare."
7463
+
7464
+ #~ msgid "Payment gateway title on checkout."
7465
+ #~ msgstr "Titlu gateway-ului de plată la finalizare."
7466
+
7467
+ #~ msgid "Payment gateway ID."
7468
+ #~ msgstr "ID gateway de plată."
7469
+
7470
+ #~ msgid "The date the order was completed, as GMT."
7471
+ #~ msgstr "Data la care comanda a fost finalizată, ca GMT."
7472
+
7473
+ #~ msgid "The date the order was paid, as GMT."
7474
+ #~ msgstr "Data la care comanda a fost plătită, ca GMT."
7475
+
7476
+ #~ msgid "The date the order was last modified, as GMT."
7477
+ #~ msgstr "Data la care comanda a fost modificată ultima dată, ca GMT."
7478
+
7479
+ #~ msgid "Version of WooCommerce which last updated the order."
7480
+ #~ msgstr "Versiunea WooCommerce care a actualizat ultima comanda."
7481
+
7482
+ #~ msgid "When true, the payment gateway API is used to generate the refund."
7483
+ #~ msgstr ""
7484
+ #~ "Când este adevărat, API gateway-ului de plată este folosit pentru a "
7485
+ #~ "genera rambursarea."
7486
+
7487
+ #~ msgid "User ID of user who created the refund."
7488
+ #~ msgstr "ID-ul utilizatorului care a creat rambursarea."
7489
+
7490
+ #~ msgid "The date the order refund was created, as GMT."
7491
+ #~ msgstr "Data la care a fost creată rambursarea comenzii, ca GMT."
7492
+
7493
+ #~ msgid "Limit result to customers or internal notes."
7494
+ #~ msgstr "Limitează rezultatul la clienți sau note interne."
7495
+
7496
+ #~ msgid ""
7497
+ #~ "If true, the note will be shown to customers and they will be notified. "
7498
+ #~ "If false, the note will be for admin reference only."
7499
+ #~ msgstr ""
7500
+ #~ "Dacă este adevărat, nota va fi arătată clienților și ei vor fi "
7501
+ #~ "notificați. Dacă este fals, nota va fi doar referință pentru "
7502
+ #~ "administrator."
7503
+
7504
+ #~ msgid "The date the order note was created, as GMT."
7505
+ #~ msgstr "Data la care nota comenzii a fost creată, ca GMT."
7506
+
7507
+ #~ msgid "Is the customer a paying customer?"
7508
+ #~ msgstr "Clientul este un client plătitor?"
7509
+
7510
+ #~ msgid "The date the customer was last modified, as GMT."
7511
+ #~ msgstr "Data la care clientul a fost modificat, ca GMT."
7512
+
7513
+ #~ msgid "The date the order was created, as GMT."
7514
+ #~ msgstr "Data la care a fost creată comanda, ca GMT."
7515
+
7516
+ #~ msgid "The date when download access expires, as GMT."
7517
+ #~ msgstr "Data când accesul la descărcare expiră, ca GMT."
7518
+
7519
+ #~ msgid "Meta ID."
7520
+ #~ msgstr "ID meta."
7521
+
7522
+ #~ msgid "Meta data."
7523
+ #~ msgstr "Metadate."
7524
+
7525
+ #~ msgid ""
7526
+ #~ "List of user IDs (or guest email addresses) that have used the coupon."
7527
+ #~ msgstr ""
7528
+ #~ "Lista de ID-uri utilizator (sau adresele de email ale vizitatorilor) care "
7529
+ #~ "au folosit cuponul."
7530
+
7531
+ #~ msgid ""
7532
+ #~ "If true, this coupon will not be applied to items that have sale prices."
7533
+ #~ msgstr ""
7534
+ #~ "Dacă este adevărat, acest cupon nu va fi aplicat elementelor care au "
7535
+ #~ "prețuri de vânzare."
7536
+
7537
+ #~ msgid ""
7538
+ #~ "If true and if the free shipping method requires a coupon, this coupon "
7539
+ #~ "will enable free shipping."
7540
+ #~ msgstr ""
7541
+ #~ "Dacă este adevărat și metoda de livrare gratuită necesită un cupon, acest "
7542
+ #~ "cupon va activa livrarea gratuită."
7543
+
7544
+ #~ msgid "How many times the coupon can be used in total."
7545
+ #~ msgstr "De câte ori cuponul poate fi utilizat în total."
7546
+
7547
+ #~ msgid ""
7548
+ #~ "If true, the coupon can only be used individually. Other applied coupons "
7549
+ #~ "will be removed from the cart."
7550
+ #~ msgstr ""
7551
+ #~ "Dacă este adevărat, cuponul poate fi folosit doar în mod individual. Alte "
7552
+ #~ "cupoane aplicate vor fi înlăturate din coș."
7553
+
7554
+ #~ msgid "The date the coupon expires, as GMT."
7555
+ #~ msgstr "Data la care expiră cuponul, ca GMT."
7556
+
7557
+ #~ msgid "The date the coupon expires, in the site's timezone."
7558
+ #~ msgstr "Data la care expiră cuponul, în fusul orar al sitului."
7559
+
7560
+ #~ msgid "The date the coupon was last modified, as GMT."
7561
+ #~ msgstr "Data la care cuponul a fost modificat ultima dată, ca GMT."
7562
+
7563
+ #~ msgid "The date the coupon was created, as GMT."
7564
+ #~ msgstr "Data la care a fost creat cuponul, ca GMT."
7565
+
7566
+ #~ msgid ""
7567
+ #~ "The amount of discount. Should always be numeric, even if setting a "
7568
+ #~ "percentage."
7569
+ #~ msgstr ""
7570
+ #~ "Valoarea discountului. Ar trebui să fie întotdeauna un număr, chiar dacă "
7571
+ #~ "se setează un procent."
7572
+
7573
+ #~ msgid "Missing OAuth parameter %s"
7574
+ #~ msgid_plural "Missing OAuth parameters %s"
7575
+ #~ msgstr[0] "Lipsește %s parametru OAuth"
7576
+ #~ msgstr[1] "Lipsesc %s parametri OAuth"
7577
+ #~ msgstr[2] "Lipsesc %s de parametri OAuth"
7578
+
7579
+ #~ msgid "From %1$s to %2$s"
7580
+ #~ msgstr "De la %1$s la %2$s"
7581
+
7582
+ #~ msgid ""
7583
+ #~ "<strong>Your theme does not declare WooCommerce support</strong> &#8211; "
7584
+ #~ "Please read our <a href=\"%1$s\" target=\"_blank\">integration</a> guide "
7585
+ #~ "or check out our <a href=\"%2$s\" target=\"_blank\">Storefront</a> theme "
7586
+ #~ "which is totally free to download and designed specifically for use with "
7587
+ #~ "WooCommerce."
7588
+ #~ msgstr ""
7589
+ #~ "<strong>Tema ta nu declară suport pentru WooCommerce</strong> &#8211; Te "
7590
+ #~ "rog citește ghidul nostru de <a href=\"%1$s\" target=\"_blank"
7591
+ #~ "\">integrare</a> sau vezi tema <a href=\"%2$s\" target=\"_blank"
7592
+ #~ "\">Storefront</a> care este complet gratuită la descărcare și proiectată "
7593
+ #~ "special pentru a fi folosită cu WooCommerce."
7594
+
7595
+ #~ msgid "Set to regular price decreased by (fixed amount or %):"
7596
+ #~ msgstr "Setează la prețul obișnuit redus cu (suma fixă sau %):"
7597
+
7598
+ #~ msgid "Decrease existing sale price by (fixed amount or %):"
7599
+ #~ msgstr "Reduce prețul de vânzare existent cu (suma fixă sau %):"
7600
+
7601
+ #~ msgid "Increase existing sale price by (fixed amount or %):"
7602
+ #~ msgstr "Crește prețul de vânzare existent cu (suma fixă sau %):"
7603
+
7604
+ #~ msgid "— No change —"
7605
+ #~ msgstr "— Nicio modificare —"
7606
+
7607
+ #~ msgid "Learn how to update"
7608
+ #~ msgstr "Află cum să actualizezi"
7609
+
7610
+ #~ msgid "Outdated templates"
7611
+ #~ msgstr "Șabloane învechite"
7612
+
7613
+ #~ msgid "%1$s version %2$s is out of date. The core version is %3$s"
7614
+ #~ msgstr "Versiunea %1$s a %2$s este depășită. Versiunea nucleu este %3$s"
7615
+
7616
+ #~ msgid ""
7617
+ #~ "Page visibility should be <a href=\"%s\" target=\"_blank\">public</a>"
7618
+ #~ msgstr ""
7619
+ #~ "Vizibilitatea paginii ar trebui să fie <a href=\"%s\" target=\"_blank"
7620
+ #~ "\">publică</a>"
7621
+
7622
+ #~ msgid "Edit %s page"
7623
+ #~ msgstr "Editează pagina %s"
7624
+
7625
+ #~ msgid "Taxonomies: Product types"
7626
+ #~ msgstr "Taxonomii: tipuri de produs"
7627
+
7628
+ #~ msgid "Error messages should not be shown to visitors."
7629
+ #~ msgstr "Mesajele de eroare n-ar trebui să fie arătate vizitatorilor."
7630
+
7631
+ #~ msgid ""
7632
+ #~ "Error messages can contain sensitive information about your store "
7633
+ #~ "environment. These should be hidden from untrusted visitors."
7634
+ #~ msgstr ""
7635
+ #~ "Mesajele de eroare pot conține informații sensibile despre mediul "
7636
+ #~ "magazinului tău. Acestea ar trebui să fie ascunse vizitatorilor în care "
7637
+ #~ "nu ai încredere."
7638
+
7639
+ #~ msgid "Hide errors from visitors"
7640
+ #~ msgstr "Ascunde erori pentru vizitatori"
7641
+
7642
+ #~ msgid ""
7643
+ #~ "Your store is not using HTTPS. <a href=\"%s\" target=\"_blank\">Learn "
7644
+ #~ "more about HTTPS and SSL Certificates</a>."
7645
+ #~ msgstr ""
7646
+ #~ "Magazinul tău nu folosește HTTPS. <a href=\"%s\" target=\"_blank\">Află "
7647
+ #~ "mai mult despre HTTPS și certificate SSL</a>."
7648
+
7649
+ #~ msgid "Is the connection to your store secure?"
7650
+ #~ msgstr "Conexiunea la magazinul tău este securizată?"
7651
+
7652
+ #~ msgid "Secure connection (HTTPS)"
7653
+ #~ msgstr "Conexiune securizată (HTTPS)"
7654
+
7655
+ #~ msgid "Security"
7656
+ #~ msgstr "Securitate"
7657
+
7658
+ #~ msgid ""
7659
+ #~ "The MaxMind GeoIP Database does not exist - Geolocation will not "
7660
+ #~ "function. You can download and install it manually from %1$s to the path: "
7661
+ #~ "%2$s. Scroll down to \"Downloads\" and download the \"MaxMind DB binary, "
7662
+ #~ "gzipped\" file next to \"GeoLite2 Country\". Please remember to "
7663
+ #~ "uncompress GeoLite2-Country_xxxxxxxx.tar.gz and upload the GeoLite2-"
7664
+ #~ "Country.mmdb file only."
7665
+ #~ msgstr ""
7666
+ #~ "Baza de date MaxMind GeoIP nu există - geo-locația nu va funcționa. O "
7667
+ #~ "poți descărca și instala manual de la %1$s prin calea: %2$s. Derulează în "
7668
+ #~ "jos la „Descărcări” și descarcă fișierul „MaxMind DB binary, gzipped” de "
7669
+ #~ "lângă „GeoLite2 Country”. Te rog nu uita să decomprimi GeoLite2-"
7670
+ #~ "Country_xxxxxxxx.tar.gz și să încarci numai fișierul GeoLite2-Country."
7671
+ #~ "mmdb."
7672
+
7673
+ #~ msgid "How to update your database table prefix"
7674
+ #~ msgstr "Cum actualizezi prefixul tabelului bazei tale de date"
7675
+
7676
+ #~ msgid ""
7677
+ #~ "%1$s - We recommend using a prefix with less than 20 characters. See: %2$s"
7678
+ #~ msgstr ""
7679
+ #~ "%1$s - Recomandăm folosirea unui prefix cu mai puțin de 20 de caractere. "
7680
+ #~ "Vezi: %2$s"
7681
+
7682
+ #~ msgid "Database prefix"
7683
+ #~ msgstr "Prefix bază de date"
7684
+
7685
+ #~ msgid "Multibyte string"
7686
+ #~ msgstr "Șir multi-octet"
7687
+
7688
+ #~ msgid "GZip"
7689
+ #~ msgstr "GZip"
7690
+
7691
+ #~ msgid "DOMDocument"
7692
+ #~ msgstr "DOMDocument"
7693
+
7694
+ #~ msgid "SoapClient"
7695
+ #~ msgstr "SoapClient"
7696
+
7697
+ #~ msgid "fsockopen/cURL"
7698
+ #~ msgstr "fsockopen/cURL"
7699
+
7700
+ #~ msgid "To allow logging, make %1$s writable or define a custom %2$s."
7701
+ #~ msgstr ""
7702
+ #~ "Pentru a permite autentificarea, fă ca %1$s să poată fi scris sau "
7703
+ #~ "definește un %2$s personalizat."
7704
+
7705
+ #~ msgid "Delete log"
7706
+ #~ msgstr "Șterge jurnal"
7707
+
7708
+ #~ msgid "Are you sure you want to clear all logs from the database?"
7709
+ #~ msgstr "Sigur vrei să ștergi toate jurnalele din baza de date?"
7710
+
7711
+ #~ msgid "Flush all logs"
7712
+ #~ msgstr "Golește toate jurnalele"
7713
+
7714
+ #~ msgid "Legacy API v3 (deprecated)"
7715
+ #~ msgstr "Legacy API v3 (învechită)"
7716
+
7717
+ #~ msgid "WP REST API Integration v1"
7718
+ #~ msgstr "Integrare WP REST API v1"
7719
+
7720
+ #~ msgid "WP REST API Integration v2"
7721
+ #~ msgstr "Integrare WP REST API v2"
7722
+
7723
+ #~ msgid "REST API version used in the webhook deliveries."
7724
+ #~ msgstr "Versiunea REST API folosită în livrările cârligului web."
7725
+
7726
+ #~ msgctxt "Pagination"
7727
+ #~ msgid "%1$s of %2$s"
7728
+ #~ msgstr "%1$s din %2$s"
7729
+
7730
+ #~ msgid "Search for a user&hellip;"
7731
+ #~ msgstr "Caută un utilizator&hellip;"
7732
+
7733
+ #~ msgid ""
7734
+ #~ "This zone is <b>optionally</b> used for regions that are not included in "
7735
+ #~ "any other shipping zone."
7736
+ #~ msgstr ""
7737
+ #~ "Această zonă este folosită <b>opțional</b> pentru regiuni care nu sunt "
7738
+ #~ "incluse în nicio altă zonă de livrare."
7739
+
7740
+ #~ msgid ""
7741
+ #~ "WooCommerce will match a customer to a single zone using their shipping "
7742
+ #~ "address and present the shipping methods within that zone to them."
7743
+ #~ msgstr ""
7744
+ #~ "WooCommerce va potrivi un client cu o singură zonă folosind adresa lor de "
7745
+ #~ "livrare expediere și le prezintă metodele de livrare în acea zonă."
7746
+
7747
+ #~ msgid ""
7748
+ #~ "A shipping zone is a geographic region where a certain set of shipping "
7749
+ #~ "methods are offered."
7750
+ #~ msgstr ""
7751
+ #~ "O zonă de livrare este o regiune geografică unde se oferă un anumit set "
7752
+ #~ "de metode de livrare."
7753
+
7754
+ #~ msgid "%s Settings"
7755
+ #~ msgstr "Setări %s"
7756
+
7757
+ #~ msgid ""
7758
+ #~ "These are regions inside this zone. Customers will be matched against "
7759
+ #~ "these regions."
7760
+ #~ msgstr ""
7761
+ #~ "Acestea sunt regiuni în interiorul acestei zone. Clienții vor fi "
7762
+ #~ "încadrați în aceste regiuni."
7763
+
7764
+ #~ msgid "Zone regions"
7765
+ #~ msgstr "Regiuni geografice"
7766
+
7767
+ #~ msgid "This is the name of the zone for your reference."
7768
+ #~ msgstr "Acesta este numele zonei pentru referință."
7769
+
7770
+ #~ msgid ""
7771
+ #~ "Are you sure you want to delete this zone? This action cannot be undone."
7772
+ #~ msgstr ""
7773
+ #~ "Sigur vrei să ștergi această zonă? Această acțiune nu poate fi anulată."
7774
+
7775
+ #~ msgid "Enable debug mode"
7776
+ #~ msgstr "Activează mod depanare"
7777
+
7778
+ #~ msgid "Debug mode"
7779
+ #~ msgstr "Mod depanare"
7780
+
7781
+ #~ msgid "Shipping options"
7782
+ #~ msgstr "Opțiuni livrare"
7783
+
7784
+ #~ msgid "Shipping zones"
7785
+ #~ msgstr "Zone de livrare"
7786
+
7787
+ #~ msgid "Never show quantity remaining in stock"
7788
+ #~ msgstr "Nu arăta niciodată cantitatea rămasă în stoc"
7789
+
7790
+ #~ msgid ""
7791
+ #~ "Only show quantity remaining in stock when low e.g. \"Only 2 left in stock"
7792
+ #~ "\""
7793
+ #~ msgstr ""
7794
+ #~ "Arată cantitatea rămasă în stoc doar când este mică, de exemplu „Doar 2 "
7795
+ #~ "rămase în stoc”"
7796
+
7797
+ #~ msgid "Always show quantity remaining in stock e.g. \"12 in stock\""
7798
+ #~ msgstr ""
7799
+ #~ "Arată întotdeauna cantitatea rămasă în stoc, de exemplu „12 în stoc”"
7800
+
7801
+ #~ msgid "This controls how stock quantities are displayed on the frontend."
7802
+ #~ msgstr ""
7803
+ #~ "Asta controlează cum sunt afișate cantitățile din stoc pe pagina din față "
7804
+ #~ "a sitului."
7805
+
7806
+ #~ msgid ""
7807
+ #~ "When product stock reaches this amount the stock status will change to "
7808
+ #~ "\"out of stock\" and you will be notified via email. This setting does "
7809
+ #~ "not affect existing \"in stock\" products."
7810
+ #~ msgstr ""
7811
+ #~ "Când stocul de produse ajunge la această cantitate starea stocului se va "
7812
+ #~ "modifica în „stoc epuizat” și vei fi notificat prin email. Această setare "
7813
+ #~ "nu afectează produsele existente „în stoc”."
7814
+
7815
+ #~ msgid ""
7816
+ #~ "When product stock reaches this amount you will be notified via email."
7817
+ #~ msgstr ""
7818
+ #~ "Când stocul de produse ajunge la această cantitate vei fi notificat prin "
7819
+ #~ "email."
7820
+
7821
+ #~ msgid "The main body text color. Default %s."
7822
+ #~ msgstr "Culoare text corp principal. Implicit %s."
7823
+
7824
+ #~ msgid "The main body background color. Default %s."
7825
+ #~ msgstr "Culoare fundal corp principal. Implicit %s."
7826
+
7827
+ #~ msgid "The background color for WooCommerce email templates. Default %s."
7828
+ #~ msgstr ""
7829
+ #~ "Culoarea fundalului pentru șabloanele de email WooCommerce. Implicit %s."
7830
+
7831
+ #~ msgid "The base color for WooCommerce email templates. Default %s."
7832
+ #~ msgstr ""
7833
+ #~ "Culoarea de bază pentru șabloanele de email WooCommerce. Implicit %s."
7834
+
7835
+ #~ msgid "Page contents: [%s]"
7836
+ #~ msgstr "Conținuturi pagină: [%s]"
7837
+
7838
+ #~ msgid "Choose a product to view stats"
7839
+ #~ msgstr "Alege un produs pentru a vedea statisticile"
7840
+
7841
+ #~ msgid "%1$s refunded %2$d order (%3$d item)"
7842
+ #~ msgid_plural "%1$s refunded %2$d orders (%3$d items)"
7843
+ #~ msgstr[0] "%1$s rambursat din %2$d comandă (%3$d element)"
7844
+ #~ msgstr[1] "%1$s rambursate din %2$d comenzi (%3$d elemente)"
7845
+ #~ msgstr[2] "%1$s rambursate din %2$d de comenzi (%3$d de elemente)"
7846
+
7847
+ #~ msgid "Choose a category to view stats"
7848
+ #~ msgstr "Alege o categorie pentru a vedea statisticile"
7849
+
7850
+ #~ msgid "%1$s sales in %2$s"
7851
+ #~ msgstr "%1$s vânzări din %2$s"
7852
+
7853
+ #~ msgid "Add file"
7854
+ #~ msgstr "Adaugă fișier"
7855
+
7856
+ #~ msgid "Enter an optional description for this variation."
7857
+ #~ msgstr "Introdu o descriere opțională pentru această variație."
7858
+
7859
+ #~ msgid "Length x width x height in decimal form"
7860
+ #~ msgstr "Lungime x lățime x înălțime în formă zecimală"
7861
+
7862
+ #~ msgid "Weight (%s)"
7863
+ #~ msgstr "Greutate (%s)"
7864
+
7865
+ #~ msgid "Sale price (%s)"
7866
+ #~ msgstr "Preț de vânzare (%s)"
7867
+
7868
+ #~ msgid "Regular price (%s)"
7869
+ #~ msgstr "Preț obișnuit (%s)"
7870
+
7871
+ #~ msgid "Any %s&hellip;"
7872
+ #~ msgstr "Oricare %s&hellip;"
7873
+
7874
+ #~ msgid "No default %s&hellip;"
7875
+ #~ msgstr "Nimic implicit %s&hellip;"
7876
+
7877
+ #~ msgid "Dimensions (%s)"
7878
+ #~ msgstr "Dimensiuni (%s)"
7879
+
7880
+ #~ msgid "This lets you choose which products are part of this group."
7881
+ #~ msgstr "Aceasta îți permite să alegi care produse fac parte din acest grup."
7882
+
7883
+ #~ msgid "Grouped products"
7884
+ #~ msgstr "Produse grupate"
7885
+
7886
+ #~ msgid "Refund #%1$s - %2$s"
7887
+ #~ msgstr "RAmbursare #%1$s - %2$s"
7888
+
7889
+ #~ msgid "Refund %s manually"
7890
+ #~ msgstr "Rambursează %s manual"
7891
+
7892
+ #~ msgid "Refund %1$s via %2$s"
7893
+ #~ msgstr "Rambursează %1$s prin %2$s"
7894
+
7895
+ #~ msgid "Coupon(s)"
7896
+ #~ msgstr "Cupon (cupoane)"
7897
+
7898
+ #~ msgid "%s (No longer exists)"
7899
+ #~ msgstr "%s (nu mai există)"
7900
+
7901
+ #~ msgid "Note type"
7902
+ #~ msgstr "Tip de notă"
7903
+
7904
+ #~ msgid "Copy billing address"
7905
+ #~ msgstr "Copiază adresa de facturare"
7906
+
7907
+ #~ msgid "Address:"
7908
+ #~ msgstr "Adresă:"
7909
+
7910
+ #~ msgid "View other orders &rarr;"
7911
+ #~ msgstr "Vezi alte comenzi &rarr;"
7912
+
7913
+ #~ msgid "Customer payment page &rarr;"
7914
+ #~ msgstr "Pagină de plată client &rarr;"
7915
+
7916
+ #~ msgid "Customer IP: %s"
7917
+ #~ msgstr "IP client: %s"
7918
+
7919
+ #~ msgid "%1$s #%2$s details"
7920
+ #~ msgstr "Detalii %1$s #%2$s"
7921
+
7922
+ #~ msgid "Apply to all qualifying items in cart"
7923
+ #~ msgstr "Aplică pentru toate elementele eligibile din coș"
7924
+
7925
+ #~ msgid "Unlimited usage"
7926
+ #~ msgstr "Utilizare nelimitată"
7927
+
7928
+ #~ msgid "Import complete - imported %s tax rates."
7929
+ #~ msgstr "Import finalizat - s-au importat %s cote de impozitare."
7930
+
7931
+ #~ msgid "Tool does not exist."
7932
+ #~ msgstr "Instrumentul nu există."
7933
+
7934
+ #~ msgid ""
7935
+ #~ "Safe and secure payments using credit cards or your customer's PayPal "
7936
+ #~ "account. <a href=\"%s\" target=\"_blank\">Learn more</a>."
7937
+ #~ msgstr ""
7938
+ #~ "Plăți sigure și securizate folosind carduri de credit sau contul tău de "
7939
+ #~ "client PayPal. <a href=\"%s\" target=\"_blank\">Află mai mult</a>."
7940
+
7941
+ #~ msgid "%1$s (%2$s)"
7942
+ #~ msgstr "%1$s (%2$s)"
7943
+
7944
+ #~ msgid "Address line 1"
7945
+ #~ msgstr "Prima linie a adresei"
7946
+
7947
+ #~ msgid ""
7948
+ #~ "This is the WooCommerce shop page. The shop page is a special archive "
7949
+ #~ "that lists your products. <a href=\"%s\">You can read more about this "
7950
+ #~ "here</a>."
7951
+ #~ msgstr ""
7952
+ #~ "Aceasta este pagina magazinului WooCommerce. Pagina magazinului este o "
7953
+ #~ "arhivă specială care listează produsele tale. <a href=\"%s\">Poți citi "
7954
+ #~ "mai mult despre asta aici</a>."
7955
+
7956
+ #~ msgid "%1$s (#%2$s &ndash; %3$s)"
7957
+ #~ msgstr "%1$s (#%2$s &ndash; %3$s)"
7958
+
7959
+ #~ msgid "%1$s / %2$s"
7960
+ #~ msgstr "%1$s / %2$s"
7961
+
7962
+ #~ msgid "All sources"
7963
+ #~ msgstr "Toate sursele"
7964
+
7965
+ #~ msgid "Filter by source"
7966
+ #~ msgstr "Filtrează după sursă"
7967
+
7968
+ #~ msgid "Source"
7969
+ #~ msgstr "Sursă"
7970
+
7971
+ #~ msgid "Message"
7972
+ #~ msgstr "Mesaj"
7973
+
7974
+ #~ msgid "Level"
7975
+ #~ msgstr "Nivel"
7976
+
7977
+ #~ msgid "Timestamp"
7978
+ #~ msgstr "Datare"
7979
+
7980
+ #~ msgid "All levels"
7981
+ #~ msgstr "Toate nivelurile"
7982
+
7983
+ #~ msgid "Filter by level"
7984
+ #~ msgstr "Filtrează după nivel"
7985
+
7986
+ #~ msgid "Debug"
7987
+ #~ msgstr "Depanare"
7988
+
7989
+ #~ msgid "Info"
7990
+ #~ msgstr "Informații"
7991
+
7992
+ #~ msgid "Notice"
7993
+ #~ msgstr "Observație"
7994
+
7995
+ #~ msgid "Warning"
7996
+ #~ msgstr "Avertizare"
7997
+
7998
+ #~ msgid "Critical"
7999
+ #~ msgstr "Critic"
8000
+
8001
+ #~ msgid "Alert"
8002
+ #~ msgstr "Alertă"
8003
+
8004
+ #~ msgid "Emergency"
8005
+ #~ msgstr "Urgență"
8006
+
8007
+ #~ msgid "WooCommerce helpdesk"
8008
+ #~ msgstr "Serviciu de informare și suport WooCommerce"
8009
+
8010
+ #~ msgid "System status"
8011
+ #~ msgstr "Stare sistem"
8012
+
8013
+ #~ msgid "reviewed by %s"
8014
+ #~ msgstr "revizuit de %s"
8015
+
8016
+ #~ msgid "%s out of 5"
8017
+ #~ msgstr "%s din 5"
8018
+
8019
+ #~ msgid "%s net sales this month"
8020
+ #~ msgstr "%s vânzări nete în această lună"
8021
+
8022
+ #~ msgid "(Public)"
8023
+ #~ msgstr "(Public)"
8024
+
8025
+ #~ msgid "Enable archives?"
8026
+ #~ msgstr "Activezi arhivele?"
8027
+
8028
+ #~ msgid "%1$s at %2$s"
8029
+ #~ msgstr "%1$s la %2$s"
8030
+
8031
+ #~ msgid "Shipping is disabled."
8032
+ #~ msgstr "Livrarea este dezactivată."
8033
+
8034
+ #~ msgid ""
8035
+ #~ "To manipulate product variations you should use the /products/&lt;"
8036
+ #~ "product_id&gt;/variations/&lt;id&gt; endpoint."
8037
+ #~ msgstr ""
8038
+ #~ "Pentru a manipula variațiile de produs ar trebui să folosești punctul-"
8039
+ #~ "final /products/&lt;product_id&gt;/variations/&lt;id&gt;."
8040
+
8041
+ #~ msgid "Method '%s' not implemented. Must be overridden in subclass."
8042
+ #~ msgstr ""
8043
+ #~ "Metoda '%s' nu este implementată. Trebuie să fie contramandată în sub-"
8044
+ #~ "clasă."
8045
+
8046
+ #~ msgid "An invalid setting value was passed."
8047
+ #~ msgstr "A fost trecută o valoare de setare invalidă."
8048
+
8049
+ #~ msgid "Invalid product tax status."
8050
+ #~ msgstr "Stare taxă produs invalidă."
8051
+
8052
+ #~ msgid "Invalid or duplicated SKU."
8053
+ #~ msgstr "SKU invalid sau duplicat."
8054
+
8055
+ #~ msgid "Invalid catalog visibility option."
8056
+ #~ msgstr "Opțiune vizibilitate catalog invalidă."
8057
+
8058
+ #~ msgid "Invalid currency code"
8059
+ #~ msgstr "Cod valută invalid"
8060
+
8061
+ #~ msgid "Invalid parent ID"
8062
+ #~ msgstr "ID părinte invalid."
8063
+
8064
+ #~ msgid "Sindh"
8065
+ #~ msgstr "Sindh"
8066
+
8067
+ #~ msgid "Khyber Pakhtunkhwa"
8068
+ #~ msgstr "Khyber Pakhtunkhwa"
8069
+
8070
+ #~ msgid "Islamabad Capital Territory"
8071
+ #~ msgstr "Islamabad Capital Territory"
8072
+
8073
+ #~ msgid "Gilgit Baltistan"
8074
+ #~ msgstr "Gilgit Baltistan"
8075
+
8076
+ #~ msgid "FATA"
8077
+ #~ msgstr "FATA"
8078
+
8079
+ #~ msgid "Balochistan"
8080
+ #~ msgstr "Balochistan"
8081
+
8082
+ #~ msgid "Azad Kashmir"
8083
+ #~ msgstr "Azad Kashmir"
8084
+
8085
+ #~ msgid "Zamfara"
8086
+ #~ msgstr "Zamfara"
8087
+
8088
+ #~ msgid "Yobe"
8089
+ #~ msgstr "Yobe"
8090
+
8091
+ #~ msgid "Taraba"
8092
+ #~ msgstr "Taraba"
8093
+
8094
+ #~ msgid "Sokoto"
8095
+ #~ msgstr "Sokoto"
8096
+
8097
+ #~ msgid "Rivers"
8098
+ #~ msgstr "Rivers"
8099
+
8100
+ #~ msgid "Plateau"
8101
+ #~ msgstr "Plateau"
8102
+
8103
+ #~ msgid "Oyo"
8104
+ #~ msgstr "Oyo"
8105
+
8106
+ #~ msgid "Osun"
8107
+ #~ msgstr "Osun"
8108
+
8109
+ #~ msgid "Ondo"
8110
+ #~ msgstr "Ondo"
8111
+
8112
+ #~ msgid "Ogun"
8113
+ #~ msgstr "Ogun"
8114
+
8115
+ #~ msgid "Nasarawa"
8116
+ #~ msgstr "Nasarawa"
8117
+
8118
+ #~ msgid "Lagos"
8119
+ #~ msgstr "Lagos"
8120
+
8121
+ #~ msgid "Kwara"
8122
+ #~ msgstr "Kwara"
8123
+
8124
+ #~ msgid "Kogi"
8125
+ #~ msgstr "Kogi"
8126
+
8127
+ #~ msgid "Kebbi"
8128
+ #~ msgstr "Kebbi"
8129
+
8130
+ #~ msgid "Katsina"
8131
+ #~ msgstr "Katsina"
8132
+
8133
+ #~ msgid "Kano"
8134
+ #~ msgstr "Kano"
8135
+
8136
+ #~ msgid "Kaduna"
8137
+ #~ msgstr "Kaduna"
8138
+
8139
+ #~ msgid "Jigawa"
8140
+ #~ msgstr "Jigawa"
8141
+
8142
+ #~ msgid "Imo"
8143
+ #~ msgstr "Imo"
8144
+
8145
+ #~ msgid "Gombe"
8146
+ #~ msgstr "Gombe"
8147
+
8148
+ #~ msgid "Enugu"
8149
+ #~ msgstr "Enugu"
8150
+
8151
+ #~ msgid "Ekiti"
8152
+ #~ msgstr "Ekiti"
8153
+
8154
+ #~ msgid "Edo"
8155
+ #~ msgstr "Edo"
8156
+
8157
+ #~ msgid "Ebonyi"
8158
+ #~ msgstr "Ebonyi"
8159
+
8160
+ #~ msgid "Delta"
8161
+ #~ msgstr "Delta"
8162
+
8163
+ #~ msgid "Cross River"
8164
+ #~ msgstr "Cross River"
8165
+
8166
+ #~ msgid "Borno"
8167
+ #~ msgstr "Borno"
8168
+
8169
+ #~ msgid "Benue"
8170
+ #~ msgstr "Benue"
8171
+
8172
+ #~ msgid "Bayelsa"
8173
+ #~ msgstr "Bayelsa"
8174
+
8175
+ #~ msgid "Bauchi"
8176
+ #~ msgstr "Bauchi"
8177
+
8178
+ #~ msgid "Anambra"
8179
+ #~ msgstr "Anambra"
8180
+
8181
+ #~ msgid "Akwa Ibom"
8182
+ #~ msgstr "Akwa Ibom"
8183
+
8184
+ #~ msgid "Adamawa"
8185
+ #~ msgstr "Adamawa"
8186
+
8187
+ #~ msgid "Abuja"
8188
+ #~ msgstr "Abuja"
8189
+
8190
+ #~ msgid "Abia"
8191
+ #~ msgstr "Abia"
8192
+
8193
+ #~ msgid "L'Aquila"
8194
+ #~ msgstr "L'Aquila"
8195
+
8196
+ #~ msgid "Wexford"
8197
+ #~ msgstr "Wexford"
8198
+
8199
+ #~ msgid "Wicklow"
8200
+ #~ msgstr "Wicklow"
8201
+
8202
+ #~ msgid "Westmeath"
8203
+ #~ msgstr "Westmeath"
8204
+
8205
+ #~ msgid "Waterford"
8206
+ #~ msgstr "Waterford"
8207
+
8208
+ #~ msgid "Tipperary"
8209
+ #~ msgstr "Tipperary"
8210
+
8211
+ #~ msgid "Sligo"
8212
+ #~ msgstr "Sligo"
8213
+
8214
+ #~ msgid "Roscommon"
8215
+ #~ msgstr "Roscommon"
8216
+
8217
+ #~ msgid "Offaly"
8218
+ #~ msgstr "Offaly"
8219
+
8220
+ #~ msgid "Mayo"
8221
+ #~ msgstr "Mayo"
8222
+
8223
+ #~ msgid "Monaghan"
8224
+ #~ msgstr "Monaghan"
8225
+
8226
+ #~ msgid "Meath"
8227
+ #~ msgstr "Meath"
8228
+
8229
+ #~ msgid "Laois"
8230
+ #~ msgstr "Laois"
8231
+
8232
+ #~ msgid "Leitrim"
8233
+ #~ msgstr "Leitrim"
8234
+
8235
+ #~ msgid "Limerick"
8236
+ #~ msgstr "Limerick"
8237
+
8238
+ #~ msgid "Louth"
8239
+ #~ msgstr "Louth"
8240
+
8241
+ #~ msgid "Longford"
8242
+ #~ msgstr "Longford"
8243
+
8244
+ #~ msgid "Kerry"
8245
+ #~ msgstr "Kerry"
8246
+
8247
+ #~ msgid "Kilkenny"
8248
+ #~ msgstr "Kilkenny"
8249
+
8250
+ #~ msgid "Kildare"
8251
+ #~ msgstr "Kildare"
8252
+
8253
+ #~ msgid "Galway"
8254
+ #~ msgstr "Galway"
8255
+
8256
+ #~ msgid "Dublin"
8257
+ #~ msgstr "Dublin"
8258
+
8259
+ #~ msgid "Donegal"
8260
+ #~ msgstr "Donegal"
8261
+
8262
+ #~ msgid "Carlow"
8263
+ #~ msgstr "Carlow"
8264
+
8265
+ #~ msgid "Cavan"
8266
+ #~ msgstr "Cavan"
8267
+
8268
+ #~ msgid "Cork"
8269
+ #~ msgstr "Cork"
8270
+
8271
+ #~ msgid "Clare"
8272
+ #~ msgstr "Clare"
8273
+
8274
+ #~ msgid "Ireland"
8275
+ #~ msgstr "Irlanda"
8276
+
8277
+ #~ msgid "Webhook delivery URL."
8278
+ #~ msgstr "URL livrare cârlig web."
8279
+
8280
+ #~ msgid "Unique identifier for the webhook."
8281
+ #~ msgstr "Identificator unic pentru cârlig web."
8282
+
8283
+ #~ msgid "Unique slug for the resource."
8284
+ #~ msgstr "Descriptor unic pentru resursă."
8285
+
8286
+ #~ msgid "Email of the reviewer."
8287
+ #~ msgstr "Emailul recenzentului."
8288
+
8289
+ #~ msgid "Name of the reviewer."
8290
+ #~ msgstr "Numele recenzentului."
8291
+
8292
+ #~ msgid "Review content."
8293
+ #~ msgstr "Conținut recenzie."
8294
+
8295
+ #~ msgid "Unique identifier for the variation."
8296
+ #~ msgstr "Identificator unic pentru variație"
8297
+
8298
+ #~ msgid "Unique identifier for the variable product."
8299
+ #~ msgstr "Identificator unic pentru produsul variabil."
8300
+
8301
+ #~ msgid "Unique identifier for the attribute of the terms."
8302
+ #~ msgstr "Identificator unic pentru atributul termenilor."
8303
+
8304
+ #~ msgid "Order note content."
8305
+ #~ msgstr "Conținut notă comandă."
8306
+
8307
+ #~ msgid "The order ID."
8308
+ #~ msgstr "ID-ul comenzii."
8309
+
8310
+ #~ msgid "Limit result set to specific IDs."
8311
+ #~ msgstr "Limitează setul de rezultate la ID-uri specifice."
8312
+
8313
+ #~ msgid "ID to reassign posts to."
8314
+ #~ msgstr "ID pentru a reatribui articole."
8315
+
8316
+ #~ msgid "New user password."
8317
+ #~ msgstr "Parolă utilizator nou."
8318
+
8319
+ #~ msgid "New user username."
8320
+ #~ msgstr "Nume de utilizator utilizator nou."
8321
+
8322
+ #~ msgid "New user email address."
8323
+ #~ msgstr "Adresă email utilizator nou."
8324
+
8325
+ #~ msgid "Name for the resource."
8326
+ #~ msgstr "Nume pentru resursă."
8327
+
8328
+ #~ msgid "Ensure result set excludes specific IDs."
8329
+ #~ msgstr "Asigură-te că setul de rezultate exclude ID-urile specifice."
8330
+
8331
+ #~ msgid "#%s is an invalid image ID."
8332
+ #~ msgstr "#%s este un ID imagine invalid."
8333
+
8334
+ #~ msgid "WooCommerce extensions"
8335
+ #~ msgstr "Extensii WooCommerce"
8336
+
8337
+ #~ msgid "Installed"
8338
+ #~ msgstr "Instalate"
8339
+
8340
+ #~ msgid "https://woocommerce.com"
8341
+ #~ msgstr "https://woocommerce.com"
8342
+
8343
+ #~ msgid ""
8344
+ #~ "Force SSL (HTTPS) on the checkout pages (<a href=\"%s\" target=\"_blank"
8345
+ #~ "\">an SSL Certificate is required</a>)."
8346
+ #~ msgstr ""
8347
+ #~ "Impune SSL (HTTPS) pe paginile de finalizare (<a href=\"%s\" target="
8348
+ #~ "\"_blank\">este necesar un certificat SSL</a>)."
8349
+
8350
+ #~ msgid "Invalid image type."
8351
+ #~ msgstr "Tip de imagine invalid."
8352
+
8353
+ #~ msgid "https://woocommerce.com/"
8354
+ #~ msgstr "https://woocommerce.com/"
8355
+
8356
+ #~ msgid "If the variation is visible."
8357
+ #~ msgstr "Dacă variația este vizibilă."
8358
+
8359
+ #~ msgid "Everywhere"
8360
+ #~ msgstr "Peste tot"
8361
+
8362
+ #~ msgid "Error: %s."
8363
+ #~ msgstr "Eroare: %s."
8364
+
8365
+ #~ msgid ""
8366
+ #~ "Enable shipping debug mode to show matching shipping zones and to bypass "
8367
+ #~ "shipping rate cache."
8368
+ #~ msgstr ""
8369
+ #~ "Activează mod de depanare livrare pentru a arăta zonele de livrare care "
8370
+ #~ "se potrivesc și pentru a evita cache-ul ratei de livrare."
8371
+
8372
+ #~ msgid ""
8373
+ #~ "Choose the shipping method you wish to add. Only shipping methods which "
8374
+ #~ "support zones are listed."
8375
+ #~ msgstr ""
8376
+ #~ "Alege metoda de livrare pe care vrei s-o adaugi. Numai metodele de "
8377
+ #~ "livrare care suportă zone sunt listate."
8378
+
8379
+ #~ msgid "No shipping methods offered to this zone."
8380
+ #~ msgstr "Nicio metodă de livrare oferită în această zonă."
8381
+
8382
+ #~ msgid ""
8383
+ #~ "Endpoints are appended to your page URLs to handle specific actions on "
8384
+ #~ "the accounts pages. They should be unique and can be left blank to "
8385
+ #~ "disable the endpoint."
8386
+ #~ msgstr ""
8387
+ #~ "Puncte-finale sunt adăugate la URL-urile paginilor tale să manevreze "
8388
+ #~ "acțiuni specifice pe paginile conturilor. Ele ar trebui să fie unice și "
8389
+ #~ "pot fi lăsate necompletate pentru a dezactiva punctul-final."
8390
+
8391
+ #~ msgid "North Korean won"
8392
+ #~ msgstr "Won Nord-corean"
8393
+
8394
+ #~ msgid ""
8395
+ #~ "Use <code>[qty]</code> for the number of items, <br/><code>[cost]</code> "
8396
+ #~ "for the total cost of items, and <code>[fee percent=\"10\" min_fee=\"20\" "
8397
+ #~ "max_fee=\"\"]</code> for percentage based fees."
8398
+ #~ msgstr ""
8399
+ #~ "Folosește <code>[qty]</code> pentru numărul de elemente, <br/"
8400
+ #~ "><code>[cost]</code> pentru costul total al elementelor și <code>[fee "
8401
+ #~ "percent=\"10\" min_fee=\"20\" max_fee=\"\"]</code> pentru taxele bazate "
8402
+ #~ "pe procente."
8403
+
8404
+ #~ msgid "Taking a while? Click here to run it now."
8405
+ #~ msgstr "Durează ceva mai mult? Click aici pentru a rula acum."
8406
+
8407
+ #~ msgid "Endpoint for the \"My account &rarr; Downloads\" page."
8408
+ #~ msgstr "Punct-final pentru pagina \"Contul meu &rarr; Descărcări\"."
8409
+
8410
+ #~ msgid "Endpoint for the \"My account &rarr; Orders\" page."
8411
+ #~ msgstr "Punct-final pentru pagina \"Contul meu &rarr; Comenzi\"."
8412
+
8413
+ #~ msgid "Order #%1$s was placed on %2$s and is currently %3$s."
8414
+ #~ msgstr "Comanda #%1$s a fost plasată pe %2$s și acum este %3$s."
8415
+
8416
+ #~ msgid "No saved methods found."
8417
+ #~ msgstr "Nu s-au găsit metode salvate."
8418
+
8419
+ #~ msgid "No order has been made yet."
8420
+ #~ msgstr "Încă nu a fost făcută nicio comandă."
8421
+
8422
+ #~ msgid "Next"
8423
+ #~ msgstr "Următorul"
8424
+
8425
+ #~ msgid "Previous"
8426
+ #~ msgstr "Anterior"
8427
+
8428
+ #~ msgid ""
8429
+ #~ "A password reset email has been sent to the email address on file for "
8430
+ #~ "your account, but may take several minutes to show up in your inbox. "
8431
+ #~ "Please wait at least 10 minutes before attempting another reset."
8432
+ #~ msgstr ""
8433
+ #~ "A fost trimis un email pentru resetarea parolei la adresa ta email cu "
8434
+ #~ "privire la fișierul pentru contul propriu, dar poate dura câteva minute "
8435
+ #~ "până să apară. Te rog așteaptă cel puțin 10 minute înainte de a încerca o "
8436
+ #~ "altă resetare."
8437
+
8438
+ #~ msgid "Password reset email has been sent."
8439
+ #~ msgstr "A fost trimis un email pentru resetarea parolei."
8440
+
8441
+ #~ msgid "No downloads available yet."
8442
+ #~ msgstr "Nu sunt descărcări disponibile încă."
8443
+
8444
+ #~ msgid "Go shop"
8445
+ #~ msgstr "Du-te la magazin"
8446
+
8447
+ #~ msgid "&infin;"
8448
+ #~ msgstr "&infin;"
8449
+
8450
+ #~ msgid "%s product"
8451
+ #~ msgstr "%s produse"
8452
+
8453
+ #~ msgid "Checkout is not available whilst your cart is empty."
8454
+ #~ msgstr "Plata nu este disponibilă cât timp coșul tău este gol."
8455
+
8456
+ #~ msgid "%1$s is not of type %2$s"
8457
+ #~ msgstr "%1$s nu este de tipul %2$s"
8458
+
8459
+ #~ msgid "Zero size file downloaded."
8460
+ #~ msgstr "Fișier de dimensiune zero descărcat."
8461
+
8462
+ #~ msgid "Error getting remote image %s."
8463
+ #~ msgstr "Eroare la obținerea imaginii la distanță %s."
8464
+
8465
+ #~ msgid "Invalid URL %s."
8466
+ #~ msgstr "URL %s invalid."
8467
+
8468
+ #~ msgid "JCB"
8469
+ #~ msgstr "JCB"
8470
+
8471
+ #~ msgid "Diners"
8472
+ #~ msgstr "Diners"
8473
+
8474
+ #~ msgid "American Express"
8475
+ #~ msgstr "American Express"
8476
+
8477
+ #~ msgid "Discover"
8478
+ #~ msgstr "Discover"
8479
+
8480
+ #~ msgid "Visa"
8481
+ #~ msgstr "Visa"
8482
+
8483
+ #~ msgid "MasterCard"
8484
+ #~ msgstr "MasterCard"
8485
+
8486
+ #~ msgid "Zambian kwacha"
8487
+ #~ msgstr "Zambian kwacha"
8488
+
8489
+ #~ msgid "Yemeni rial"
8490
+ #~ msgstr "Ryal yemenit"
8491
+
8492
+ #~ msgid "CFP franc"
8493
+ #~ msgstr "Franc CFP"
8494
+
8495
+ #~ msgid "West African CFA franc"
8496
+ #~ msgstr "Franc CFA vest-african"
8497
+
8498
+ #~ msgid "East Caribbean dollar"
8499
+ #~ msgstr "Dolar Insulele Caraibe de Est"
8500
+
8501
+ #~ msgid "Central African CFA franc"
8502
+ #~ msgstr " Franc CFA"
8503
+
8504
+ #~ msgid "Samoan t&#x101;l&#x101;"
8505
+ #~ msgstr "Tala samoan"
8506
+
8507
+ #~ msgid "Vanuatu vatu"
8508
+ #~ msgstr "Vatu"
8509
+
8510
+ #~ msgid "Vietnamese &#x111;&#x1ed3;ng"
8511
+ #~ msgstr "Dong vietnamez"
8512
+
8513
+ #~ msgid "Venezuelan bol&iacute;var"
8514
+ #~ msgstr "Bolívar venezuelan"
8515
+
8516
+ #~ msgid "Uzbekistani som"
8517
+ #~ msgstr "Som uzbec"
8518
+
8519
+ #~ msgid "Uruguayan peso"
8520
+ #~ msgstr "Peso uruguayan"
8521
+
8522
+ #~ msgid "Ugandan shilling"
8523
+ #~ msgstr "Șiling ugandez"
8524
+
8525
+ #~ msgid "Tanzanian shilling"
8526
+ #~ msgstr "Șiling tanzan"
8527
+
8528
+ #~ msgid "New Taiwan dollar"
8529
+ #~ msgstr "Dolar taiwanez"
8530
+
8531
+ #~ msgid "Trinidad and Tobago dollar"
8532
+ #~ msgstr "Dolar Trinidad Tobago"
8533
+
8534
+ #~ msgid "Tongan pa&#x2bb;anga"
8535
+ #~ msgstr "Dolar (Paʻanga) Tongan"
8536
+
8537
+ #~ msgid "Tunisian dinar"
8538
+ #~ msgstr "Dinar tunisian"
8539
+
8540
+ #~ msgid "Turkmenistan manat"
8541
+ #~ msgstr "Manat turkmen"
8542
+
8543
+ #~ msgid "Tajikistani somoni"
8544
+ #~ msgstr "Somoni tadjik"
8545
+
8546
+ #~ msgid "Swazi lilangeni"
8547
+ #~ msgstr "Lilangeni"
8548
+
8549
+ #~ msgid "Syrian pound"
8550
+ #~ msgstr "Liră siriană"
8551
+
8552
+ #~ msgid "S&atilde;o Tom&eacute; and Pr&iacute;ncipe dobra"
8553
+ #~ msgstr "Dobra"
8554
+
8555
+ #~ msgid "South Sudanese pound"
8556
+ #~ msgstr "Liră sud-sudaneză"
8557
+
8558
+ #~ msgid "Surinamese dollar"
8559
+ #~ msgstr "Dolar surinamez"
8560
+
8561
+ #~ msgid "Somali shilling"
8562
+ #~ msgstr "Șiling somalez"
8563
+
8564
+ #~ msgid "Sierra Leonean leone"
8565
+ #~ msgstr "Leone"
8566
+
8567
+ #~ msgid "Saint Helena pound"
8568
+ #~ msgstr "Liră din Sfânta Elena"
8569
+
8570
+ #~ msgid "Sudanese pound"
8571
+ #~ msgstr "Liră sudaneză"
8572
+
8573
+ #~ msgid "Seychellois rupee"
8574
+ #~ msgstr "Rupie seychelleză"
8575
+
8576
+ #~ msgid "Solomon Islands dollar"
8577
+ #~ msgstr "Dolar solomonian"
8578
+
8579
+ #~ msgid "Rwandan franc"
8580
+ #~ msgstr "Franc rwandez"
8581
+
8582
+ #~ msgid "Serbian dinar"
8583
+ #~ msgstr "Dinar sârbesc"
8584
+
8585
+ #~ msgid "Qatari riyal"
8586
+ #~ msgstr "Rial qatarian"
8587
+
8588
+ #~ msgid "Paraguayan guaran&iacute;"
8589
+ #~ msgstr "Guaraní"
8590
+
8591
+ #~ msgid "Transnistrian ruble"
8592
+ #~ msgstr "Rublă transnistreană"
8593
+
8594
+ #~ msgid "Polish z&#x142;oty"
8595
+ #~ msgstr "Zlot polonez"
8596
+
8597
+ #~ msgid "Papua New Guinean kina"
8598
+ #~ msgstr "Kina"
8599
+
8600
+ #~ msgid "Peruvian nuevo sol"
8601
+ #~ msgstr "Nuevo Sol peruan"
8602
+
8603
+ #~ msgid "Panamanian balboa"
8604
+ #~ msgstr "Balboa"
8605
+
8606
+ #~ msgid "Omani rial"
8607
+ #~ msgstr "Rial omanez"
8608
+
8609
+ #~ msgid "Nepalese rupee"
8610
+ #~ msgstr "Rupie nepaleză"
8611
+
8612
+ #~ msgid "Nicaraguan c&oacute;rdoba"
8613
+ #~ msgstr "Córdoba"
8614
+
8615
+ #~ msgid "Namibian dollar"
8616
+ #~ msgstr "Dolar namibian"
8617
+
8618
+ #~ msgid "Mozambican metical"
8619
+ #~ msgstr "Metical mozambican"
8620
+
8621
+ #~ msgid "Malawian kwacha"
8622
+ #~ msgstr "Kwacha malawian"
8623
+
8624
+ #~ msgid "Maldivian rufiyaa"
8625
+ #~ msgstr "Rufiyaa"
8626
+
8627
+ #~ msgid "Mauritian rupee"
8628
+ #~ msgstr "Rupie mauritiană"
8629
+
8630
+ #~ msgid "Mauritanian ouguiya"
8631
+ #~ msgstr "Ouguiya"
8632
+
8633
+ #~ msgid "Macanese pataca"
8634
+ #~ msgstr "Pataca"
8635
+
8636
+ #~ msgid "Mongolian t&ouml;gr&ouml;g"
8637
+ #~ msgstr "Tugrik"
8638
+
8639
+ #~ msgid "Burmese kyat"
8640
+ #~ msgstr "Kyat"
8641
+
8642
+ #~ msgid "Macedonian denar"
8643
+ #~ msgstr "Denar macedonean"
8644
+
8645
+ #~ msgid "Malagasy ariary"
8646
+ #~ msgstr "Ariary malgaș"
8647
+
8648
+ #~ msgid "Moldovan leu"
8649
+ #~ msgstr "Leu moldovenesc"
8650
+
8651
+ #~ msgid "Moroccan dirham"
8652
+ #~ msgstr "Dirham marocan"
8653
+
8654
+ #~ msgid "Libyan dinar"
8655
+ #~ msgstr "Dinar libian"
8656
+
8657
+ #~ msgid "Lesotho loti"
8658
+ #~ msgstr "Loti"
8659
+
8660
+ #~ msgid "Liberian dollar"
8661
+ #~ msgstr "Dolar liberian"
8662
+
8663
+ #~ msgid "Sri Lankan rupee"
8664
+ #~ msgstr "Rupie srilankeză"
8665
+
8666
+ #~ msgid "Lebanese pound"
8667
+ #~ msgstr "Liră libaneză"
8668
+
8669
+ #~ msgid "Kazakhstani tenge"
8670
+ #~ msgstr "Tenge"
8671
+
8672
+ #~ msgid "Cayman Islands dollar"
8673
+ #~ msgstr "Dolar din Insulele Cayman"
8674
+
8675
+ #~ msgid "Kuwaiti dinar"
8676
+ #~ msgstr "Dinar kuweitian"
8677
+
8678
+ #~ msgid "Comorian franc"
8679
+ #~ msgstr "Franc comorian"
8680
+
8681
+ #~ msgid "Cambodian riel"
8682
+ #~ msgstr "Riel cambodgian"
8683
+
8684
+ #~ msgid "Kyrgyzstani som"
8685
+ #~ msgstr "Som kîrgîz"
8686
+
8687
+ #~ msgid "Jordanian dinar"
8688
+ #~ msgstr "Dinar iordanian"
8689
+
8690
+ #~ msgid "Jamaican dollar"
8691
+ #~ msgstr "Dolar jamaican"
8692
+
8693
+ #~ msgid "Jersey pound"
8694
+ #~ msgstr "Liră din Jersey"
8695
+
8696
+ #~ msgid "Icelandic kr&oacute;na"
8697
+ #~ msgstr "Coroană islandeză"
8698
+
8699
+ #~ msgid "Iranian rial"
8700
+ #~ msgstr "Rial iranian"
8701
+
8702
+ #~ msgid "Iraqi dinar"
8703
+ #~ msgstr "Dinar irakian"
8704
+
8705
+ #~ msgid "Manx pound"
8706
+ #~ msgstr "Liră din Insula Man"
8707
+
8708
+ #~ msgid "Israeli new shekel"
8709
+ #~ msgstr "Shekel"
8710
+
8711
+ #~ msgid "Haitian gourde"
8712
+ #~ msgstr "Gourde"
8713
+
8714
+ #~ msgid "Honduran lempira"
8715
+ #~ msgstr "Lempira"
8716
+
8717
+ #~ msgid "Guyanese dollar"
8718
+ #~ msgstr "Dolar guyanez"
8719
+
8720
+ #~ msgid "Guatemalan quetzal"
8721
+ #~ msgstr "Quetzal"
8722
+
8723
+ #~ msgid "Guinean franc"
8724
+ #~ msgstr "Franc de Guineea"
8725
+
8726
+ #~ msgid "Gambian dalasi"
8727
+ #~ msgstr "Dalasi"
8728
+
8729
+ #~ msgid "Gibraltar pound"
8730
+ #~ msgstr "Liră din Gibraltar"
8731
+
8732
+ #~ msgid "Ghana cedi"
8733
+ #~ msgstr "Cedi ghanez"
8734
+
8735
+ #~ msgid "Guernsey pound"
8736
+ #~ msgstr "Liră din Guernsey"
8737
+
8738
+ #~ msgid "Georgian lari"
8739
+ #~ msgstr "Lari"
8740
+
8741
+ #~ msgid "Falkland Islands pound"
8742
+ #~ msgstr "Liră din Insulele Falkland"
8743
+
8744
+ #~ msgid "Fijian dollar"
8745
+ #~ msgstr "Dolar fijian"
8746
+
8747
+ #~ msgid "Euro"
8748
+ #~ msgstr "Euro"
8749
+
8750
+ #~ msgid "Ethiopian birr"
8751
+ #~ msgstr "Birr"
8752
+
8753
+ #~ msgid "Eritrean nakfa"
8754
+ #~ msgstr "Nakfa"
8755
+
8756
+ #~ msgid "Algerian dinar"
8757
+ #~ msgstr "Dinar algerian"
8758
+
8759
+ #~ msgid "Djiboutian franc"
8760
+ #~ msgstr "Franc djiboutian"
8761
+
8762
+ #~ msgid "Cape Verdean escudo"
8763
+ #~ msgstr "Escudo din Republica Capului Verde"
8764
+
8765
+ #~ msgid "Cuban peso"
8766
+ #~ msgstr "Peso cubanez"
8767
+
8768
+ #~ msgid "Cuban convertible peso"
8769
+ #~ msgstr "Peso convertibil cubanez"
8770
+
8771
+ #~ msgid "Costa Rican col&oacute;n"
8772
+ #~ msgstr "Colón costarican"
8773
+
8774
+ #~ msgid "Congolese franc"
8775
+ #~ msgstr "Franc congolez"
8776
+
8777
+ #~ msgid "Belize dollar"
8778
+ #~ msgstr "Dolar din Belize"
8779
+
8780
+ #~ msgid "Belarusian ruble"
8781
+ #~ msgstr "Rublă belarusă"
8782
+
8783
+ #~ msgid "Botswana pula"
8784
+ #~ msgstr "Pula botswaneză"
8785
+
8786
+ #~ msgid "Bhutanese ngultrum"
8787
+ #~ msgstr "Ngultrum"
8788
+
8789
+ #~ msgid "Bitcoin"
8790
+ #~ msgstr "Bitcoin"
8791
+
8792
+ #~ msgid "Bahamian dollar"
8793
+ #~ msgstr "Dolar din Bahamas"
8794
+
8795
+ #~ msgid "Bolivian boliviano"
8796
+ #~ msgstr "Boliviano"
8797
+
8798
+ #~ msgid "Brunei dollar"
8799
+ #~ msgstr "Dolar din Brunei"
8800
+
8801
+ #~ msgid "Bermudian dollar"
8802
+ #~ msgstr "Dolar din Bermuda"
8803
+
8804
+ #~ msgid "Burundian franc"
8805
+ #~ msgstr "Franc burundez"
8806
+
8807
+ #~ msgid "Bahraini dinar"
8808
+ #~ msgstr "Dinar din Bahrain"
8809
+
8810
+ #~ msgid "Barbadian dollar"
8811
+ #~ msgstr "Dolar din Barbados"
8812
+
8813
+ #~ msgid "Bosnia and Herzegovina convertible mark"
8814
+ #~ msgstr "Marcă bosniacă convertibilă"
8815
+
8816
+ #~ msgid "Azerbaijani manat"
8817
+ #~ msgstr "Manat azer"
8818
+
8819
+ #~ msgid "Aruban florin"
8820
+ #~ msgstr "Florin arubez"
8821
+
8822
+ #~ msgid "Angolan kwanza"
8823
+ #~ msgstr "Kwanza"
8824
+
8825
+ #~ msgid "Netherlands Antillean guilder"
8826
+ #~ msgstr "Gulden Antilele Olandeze"
8827
+
8828
+ #~ msgid "Armenian dram"
8829
+ #~ msgstr "Dram"
8830
+
8831
+ #~ msgid "Albanian lek"
8832
+ #~ msgstr "Lek"
8833
+
8834
+ #~ msgid "Afghan afghani"
8835
+ #~ msgstr "Afgani"
8836
+
8837
+ #~ msgid "Make default"
8838
+ #~ msgstr "Fă-l implicit"
8839
+
8840
+ #~ msgid "Expires"
8841
+ #~ msgstr "Expiră"
8842
+
8843
+ #~ msgid "File"
8844
+ #~ msgstr "Fișier"
8845
+
8846
+ #~ msgid "Dashboard"
8847
+ #~ msgstr "Panou control"
8848
+
8849
+ #~ msgid "The date you provided is invalid."
8850
+ #~ msgstr "Data pe care ai furnizat-o este invalidă."
8851
+
8852
+ #~ msgid "Limit results to those matching a string."
8853
+ #~ msgstr "Limitează rezultatele la cele care se potrivesc unui șir."
8854
+
8855
+ #~ msgid "Maximum number of items to be returned in result set."
8856
+ #~ msgstr ""
8857
+ #~ "Număr maxim de elemente care să fie returnate în setul de rezultate."
8858
+
8859
+ #~ msgid "Current page of the collection."
8860
+ #~ msgstr "Pagina actuală a colecției."
8861
+
8862
+ #~ msgid "Optional cost for local pickup."
8863
+ #~ msgstr "Cost optional pentru preluare locală."
8864
+
8865
+ #~ msgid ""
8866
+ #~ "Allow customers to pick up orders themselves. By default, when using "
8867
+ #~ "local pickup store base taxes will apply regardless of customer address."
8868
+ #~ msgstr ""
8869
+ #~ "Permite clienților să-și ridice comenzile ei înșiși. Implicit, când se "
8870
+ #~ "folosește preluarea locală taxele de bază ale magazinului se vor aplica "
8871
+ #~ "indiferent de adresa clientului."
8872
+
8873
+ #~ msgid "Local pickup (legacy)"
8874
+ #~ msgstr "Preluare locală (moștenire)"
8875
+
8876
+ #~ msgid "Local delivery (legacy)"
8877
+ #~ msgstr "Livrare locală (moștenire)"
8878
+
8879
+ #~ msgid "International flat rate (legacy)"
8880
+ #~ msgstr "Forfetar internațional (moștenire)"
8881
+
8882
+ #~ msgid "Free shipping (legacy)"
8883
+ #~ msgstr "Livrare gratuită (moștenire)"
8884
+
8885
+ #~ msgid "Once disabled, this legacy method will no longer be available."
8886
+ #~ msgstr ""
8887
+ #~ "Odată dezactivată, această metodă moștenită nu va mai fi disponibilă."
8888
+
8889
+ #~ msgid ""
8890
+ #~ "This method is deprecated in 2.6.0 and will be removed in future versions "
8891
+ #~ "- we recommend disabling it and instead setting up a new rate within your "
8892
+ #~ "<a href=\"%s\">Shipping zones</a>."
8893
+ #~ msgstr ""
8894
+ #~ "Această metodă este învechită în 2.6.0 și o vom elimina în versiunile "
8895
+ #~ "viitoare - recomandăm s-o dezactivezi și să inițializezi în schimb o rată "
8896
+ #~ "nouă în <a href=\"%s\">zonele de livrare</a>."
8897
+
8898
+ #~ msgid "Flat rate (legacy)"
8899
+ #~ msgstr "Forfetar (moștenire)"
8900
+
8901
+ #~ msgid "A minimum order amount"
8902
+ #~ msgstr "O valoare minimă pentru comandă"
8903
+
8904
+ #~ msgid ""
8905
+ #~ "Free shipping is a special method which can be triggered with coupons and "
8906
+ #~ "minimum spends."
8907
+ #~ msgstr ""
8908
+ #~ "Livrarea gratuită este o metodă specială care poate fi declanșată cu "
8909
+ #~ "cupoane și cheltuieli minime."
8910
+
8911
+ #~ msgid "Lets you charge a fixed rate for shipping."
8912
+ #~ msgstr "Îți permite să percepi o rată fixă pentru livrare."
8913
+
8914
+ #~ msgid "eCheck"
8915
+ #~ msgstr "eCheck"
8916
+
8917
+ #~ msgid "Every %d minutes"
8918
+ #~ msgstr "La fiecare %d minute"
8919
+
8920
+ #~ msgid "There was a problem adding this card."
8921
+ #~ msgstr "A apărut o problemă la adăugarea acestui card."
8922
+
8923
+ #~ msgid "Use a new card"
8924
+ #~ msgstr "Folosește un card nou"
8925
+
8926
+ #~ msgctxt "Check payment method"
8927
+ #~ msgid "Awaiting check payment"
8928
+ #~ msgstr "Se așteaptă verificarea plății"
8929
+
8930
+ #~ msgid "Return to emails"
8931
+ #~ msgstr "Înapoi la emailuri"
8932
+
8933
+ #~ msgid ""
8934
+ #~ "This is an order notification sent to customers containing order details "
8935
+ #~ "after an order is placed on-hold."
8936
+ #~ msgstr ""
8937
+ #~ "Aceasta este o notificare pentru comandă trimisă clienților, care conține "
8938
+ #~ "detaliile comenzii după plasarea ei în așteptare."
8939
+
8940
+ #~ msgid "Order on-hold"
8941
+ #~ msgstr "Comandă în așteptare"
8942
+
8943
+ #~ msgid "%s and %d other region"
8944
+ #~ msgid_plural "%s and %d other regions"
8945
+ #~ msgstr[0] "%s și %d altă regiune"
8946
+ #~ msgstr[1] "%s și %d alte regiuni"
8947
+ #~ msgstr[2] "%s și %d alte regiuni"
8948
+
8949
+ #~ msgid "Zone"
8950
+ #~ msgstr "Zonă"
8951
+
8952
+ #~ msgid "Orders (page %d)"
8953
+ #~ msgstr "Comenzi (pagina %d)"
8954
+
8955
+ #~ msgid "Coupons list"
8956
+ #~ msgstr "Listă cupoane"
8957
+
8958
+ #~ msgid "Coupons navigation"
8959
+ #~ msgstr "Navigare în cupoane"
8960
+
8961
+ #~ msgid "Filter coupons"
8962
+ #~ msgstr "Filtrează cupoane"
8963
+
8964
+ #~ msgid "Orders list"
8965
+ #~ msgstr "Listă comenzi"
8966
+
8967
+ #~ msgid "Orders navigation"
8968
+ #~ msgstr "Navigare în comenzi"
8969
+
8970
+ #~ msgid "Filter orders"
8971
+ #~ msgstr "Filtrează comenzi"
8972
+
8973
+ #~ msgid "Products list"
8974
+ #~ msgstr "Listă produse"
8975
+
8976
+ #~ msgid "Products navigation"
8977
+ #~ msgstr "Navigare în produse"
8978
+
8979
+ #~ msgid "Filter products"
8980
+ #~ msgstr "Filtrează produse"
8981
+
8982
+ #~ msgid "Uploaded to this product"
8983
+ #~ msgstr "Încărcat în acest produs"
8984
+
8985
+ #~ msgid "Insert into product"
8986
+ #~ msgstr "Inserează în produs"
8987
+
8988
+ #~ msgid "No &quot;%s&quot; found"
8989
+ #~ msgstr "Niciun &quot;%s&quot; găsit"
8990
+
8991
+ #~ msgid ""
8992
+ #~ "%1$s was installed but could not be activated. <a href=\"%2$s\">Please "
8993
+ #~ "activate it manually by clicking here.</a>"
8994
+ #~ msgstr ""
8995
+ #~ "%1$s a fost instalat, dar nu a putut fi activat. <a href=\"%2$s\">Te rog "
8996
+ #~ "activează-l manual dând clic aici.</a>"
8997
+
8998
+ #~ msgid ""
8999
+ #~ "%1$s could not be installed (%2$s). <a href=\"%3$s\">Please install it "
9000
+ #~ "manually by clicking here.</a>"
9001
+ #~ msgstr ""
9002
+ #~ "%1$s nu a putut fi instalat (%2$s). <a href=\"%3$s\">Te rog instalează "
9003
+ #~ "manual dând clic aici.</a>"
9004
+
9005
+ #~ msgid "Undo?"
9006
+ #~ msgstr "Revii?"
9007
+
9008
+ #~ msgid "This payment method was successfully set as your default."
9009
+ #~ msgstr "Această metodă de plată a fost setată cu succes ca implicită."
9010
+
9011
+ #~ msgid "Payment method deleted."
9012
+ #~ msgstr "Metodă de plată ștearsă."
9013
+
9014
+ #~ msgid "Go to shop"
9015
+ #~ msgstr "Du-te la magazin"
9016
+
9017
+ #~ msgid ""
9018
+ #~ "No shipping method has been selected. Please double check your address, "
9019
+ #~ "or contact us if you need any help."
9020
+ #~ msgstr ""
9021
+ #~ "Nu a fost selectată nicio metodă de livrare. Te rog verifică-ți adresa "
9022
+ #~ "sau contactează-ne dacă ai nevoie de ajutor."
9023
+
9024
+ #~ msgid "Please enter an address to continue."
9025
+ #~ msgstr "Te rog introdu o adresă pentru a continua."
9026
+
9027
+ #~ msgid "Return to shop"
9028
+ #~ msgstr "Înapoi la magazin"
9029
+
9030
+ #~ msgid "Limit result set to webhooks assigned a specific status."
9031
+ #~ msgstr ""
9032
+ #~ "Limitează setul de rezultate la cârlige web atribuite unei anumite stări."
9033
+
9034
+ #~ msgid "The date the webhook was last modified, in the site's timezone."
9035
+ #~ msgstr ""
9036
+ #~ "Data la care cârligul web a fost modificat ultima dată, în fusul orar al "
9037
+ #~ "sitului."
9038
+
9039
+ #~ msgid "The date the webhook was created, in the site's timezone."
9040
+ #~ msgstr "Data la care cârligul web a fost creat, în fusul orar al sitului."
9041
+
9042
+ #~ msgid ""
9043
+ #~ "Secret key used to generate a hash of the delivered webhook and provided "
9044
+ #~ "in the request headers. This will default to a MD5 hash from the current "
9045
+ #~ "user's ID|username if not provided."
9046
+ #~ msgstr ""
9047
+ #~ "Cheia secretă folosită pentru a genera un hash pentru cârligul web livrat "
9048
+ #~ "și furnizat în anteturile cererii. Acestă cheie va fi un hash MD5 generat "
9049
+ #~ "din ID-ul utilizatorului | numele utilizatorului curent dacă nu este "
9050
+ #~ "furnizat."
9051
+
9052
+ #~ msgid "The URL where the webhook payload is delivered."
9053
+ #~ msgstr "URL-ul unde sarcina de plată a cârligului web este livrată."
9054
+
9055
+ #~ msgid "WooCommerce action names associated with the webhook."
9056
+ #~ msgstr "Nume acțiune WooCommerce asociată cu cârligul web."
9057
+
9058
+ #~ msgid "Webhook event."
9059
+ #~ msgstr "Eveniment cârlig web."
9060
+
9061
+ #~ msgid "Webhook resource."
9062
+ #~ msgstr "Resursă cârlig web."
9063
+
9064
+ #~ msgid "Webhook topic."
9065
+ #~ msgstr "Subiect cârlig web."
9066
+
9067
+ #~ msgid "Webhook status."
9068
+ #~ msgstr "Stare cârlig web."
9069
+
9070
+ #~ msgid "A friendly name for the webhook."
9071
+ #~ msgstr "Un nume prietenos pentru cârligul web."
9072
+
9073
+ #~ msgid "Webhook topic must be valid."
9074
+ #~ msgstr "Subiectul cârligului web trebuie să fie valid."
9075
+
9076
+ #~ msgid ""
9077
+ #~ "Webhook delivery URL must be a valid URL starting with http:// or "
9078
+ #~ "https://."
9079
+ #~ msgstr ""
9080
+ #~ "URL-ul de livrare al cârligului web trebuie să fie un URL valid care "
9081
+ #~ "începe cu http:// sau https://."
9082
+
9083
+ #~ msgid "Webhook topic is required and must be valid."
9084
+ #~ msgstr "Subiectul cârligului web este obligatoriu și trebuie să fie valid."
9085
+
9086
+ #~ msgid "The date the webhook delivery was logged, in the site's timezone."
9087
+ #~ msgstr ""
9088
+ #~ "Data la care livrarea cârligului web a fost autentificată, în fusul orar "
9089
+ #~ "al sitului."
9090
+
9091
+ #~ msgid "The response body from the receiving server."
9092
+ #~ msgstr "Corpul răspunsului de la serverul de primire."
9093
+
9094
+ #~ msgid "Array of the response headers from the receiving server."
9095
+ #~ msgstr "Matricea anteturilor de răspuns de la serverul de primire."
9096
+
9097
+ #~ msgid "The HTTP response message from the receiving server."
9098
+ #~ msgstr "Mesajul de răspuns HTTP de la serverul de primire."
9099
+
9100
+ #~ msgid "The HTTP response code from the receiving server."
9101
+ #~ msgstr "Codul de răspuns HTTP de la serverul de primire."
9102
+
9103
+ #~ msgid "Request body."
9104
+ #~ msgstr "Corp cerere."
9105
+
9106
+ #~ msgid "Request headers."
9107
+ #~ msgstr "Antete cerere."
9108
+
9109
+ #~ msgid "The URL where the webhook was delivered."
9110
+ #~ msgstr "URL-ul unde cârligul web a fost livrat."
9111
+
9112
+ #~ msgid ""
9113
+ #~ "A friendly summary of the response including the HTTP response code, "
9114
+ #~ "message, and body."
9115
+ #~ msgstr ""
9116
+ #~ "Un rezumat prietenos al răspunsului, inclusiv codul de răspuns HTTP, "
9117
+ #~ "mesajul și corpul."
9118
+
9119
+ #~ msgid "The delivery duration, in seconds."
9120
+ #~ msgstr "Durata de livrare, în secunde."
9121
+
9122
+ #~ msgid "Invalid webhook ID."
9123
+ #~ msgstr "ID cârligul web invalid."
9124
+
9125
+ #~ msgid "Sort by tax class."
9126
+ #~ msgstr "Sortează după clasă de impozitare."
9127
+
9128
+ #~ msgid "Indicates the order that will appear in queries."
9129
+ #~ msgstr "Indică ordinea în care vor apărea în interogări."
9130
+
9131
+ #~ msgid "Whether or not this tax rate also gets applied to shipping."
9132
+ #~ msgstr ""
9133
+ #~ "Oricum această cotă de impozitare se aplică, de asemenea, la livrare."
9134
+
9135
+ #~ msgid "Whether or not this is a compound rate."
9136
+ #~ msgstr "Oricum acesta este o rată compusă."
9137
+
9138
+ #~ msgid "Tax priority."
9139
+ #~ msgstr "Prioritate taxă."
9140
+
9141
+ #~ msgid "Tax rate name."
9142
+ #~ msgstr "Nume cotă de impozitare."
9143
+
9144
+ #~ msgid "Tax rate."
9145
+ #~ msgstr "Cotă de impozitare."
9146
+
9147
+ #~ msgid "Postcode / ZIP."
9148
+ #~ msgstr "Cod poștal / ZIP."
9149
+
9150
+ #~ msgid "State code."
9151
+ #~ msgstr "Cod județ/regiune."
9152
+
9153
+ #~ msgid "Country ISO 3166 code."
9154
+ #~ msgstr "Cod ISO 3166 pentru țară"
9155
+
9156
+ #~ msgid "Tax class name."
9157
+ #~ msgstr "Nume clasă de impozitare."
9158
+
9159
+ #~ msgid "Taxes do not support trashing."
9160
+ #~ msgstr "Taxele nu suportă aruncarea la gunoi."
9161
+
9162
+ #~ msgid "A human-readable description of the resource."
9163
+ #~ msgstr "O descriere lizibilă a resursei."
9164
+
9165
+ #~ msgid "An alphanumeric identifier for the resource."
9166
+ #~ msgstr "Un identificator alfanumeric pentru resursă."
9167
+
9168
+ #~ msgid "List of top sellers products."
9169
+ #~ msgstr "Lista celor mai vândute produse."
9170
+
9171
+ #~ msgid "List of sales reports."
9172
+ #~ msgstr "Rapoarte listă de vânzări."
9173
+
9174
+ #~ msgid "Total number of purchases."
9175
+ #~ msgstr "Număr total de cumpărături."
9176
+
9177
+ #~ msgid ""
9178
+ #~ "Return sales for a specific end date, the date need to be in the %s "
9179
+ #~ "format."
9180
+ #~ msgstr ""
9181
+ #~ "Vânzări returnate pentru o dată de încheiere specifică, data trebuie să "
9182
+ #~ "fie în formatul %s."
9183
+
9184
+ #~ msgid ""
9185
+ #~ "Return sales for a specific start date, the date need to be in the %s "
9186
+ #~ "format."
9187
+ #~ msgstr ""
9188
+ #~ "Vânzări returnate pentru o dată de începere specifică, data trebuie să "
9189
+ #~ "fie în formatul %s."
9190
+
9191
+ #~ msgid "Report period."
9192
+ #~ msgstr "Perioadă raport."
9193
+
9194
+ #~ msgid "Totals."
9195
+ #~ msgstr "Totaluri."
9196
+
9197
+ #~ msgid "Group type."
9198
+ #~ msgstr "Tip de grup."
9199
+
9200
+ #~ msgid "Total of coupons used."
9201
+ #~ msgstr "Totalul cupoanelor folosite."
9202
+
9203
+ #~ msgid "Total of refunded orders."
9204
+ #~ msgstr "Totalul comenzilor rambursate."
9205
+
9206
+ #~ msgid "Total charged for shipping."
9207
+ #~ msgstr "Total perceput pentru livrare."
9208
+
9209
+ #~ msgid "Total charged for taxes."
9210
+ #~ msgstr "Total perceput pentru taxe."
9211
+
9212
+ #~ msgid "Total of items purchased."
9213
+ #~ msgstr "Totalul elementelor cumpărate."
9214
+
9215
+ #~ msgid "Total of orders placed."
9216
+ #~ msgstr "Totalul comenzilor plasate."
9217
+
9218
+ #~ msgid "Average net daily sales."
9219
+ #~ msgstr "Media vânzărilor zilnice nete."
9220
+
9221
+ #~ msgid "Net sales in the period."
9222
+ #~ msgstr "Vânzări nete în perioada."
9223
+
9224
+ #~ msgid "Gross sales in the period."
9225
+ #~ msgstr "Vânzări brute în perioada."
9226
+
9227
+ #~ msgid "Limit result set to products with a specific SKU."
9228
+ #~ msgstr "Limitează setul de rezultate la produse cu un anumit SKU."
9229
+
9230
+ #~ msgid ""
9231
+ #~ "Limit result set to products with a specific attribute term ID (required "
9232
+ #~ "an assigned attribute)."
9233
+ #~ msgstr ""
9234
+ #~ "Limitează setul de rezultate la produse cu un anumit ID termen (necesită "
9235
+ #~ "un atribut atribuit)."
9236
+
9237
+ #~ msgid "Limit result set to products with a specific attribute."
9238
+ #~ msgstr "Limitează setul de rezultate la produse cu un anumit atribut."
9239
+
9240
+ #~ msgid "Limit result set to products assigned a specific shipping class ID."
9241
+ #~ msgstr ""
9242
+ #~ "Limitează setul de rezultate la produse atribuite unui anumit ID clasă de "
9243
+ #~ "livrare."
9244
+
9245
+ #~ msgid "Limit result set to products assigned a specific tag ID."
9246
+ #~ msgstr ""
9247
+ #~ "Limitează setul de rezultate la produse atribuite unui anumit ID etichetă."
9248
+
9249
+ #~ msgid "Limit result set to products assigned a specific category ID."
9250
+ #~ msgstr ""
9251
+ #~ "Limitează setul de rezultate la produse atribuite unui anumit ID "
9252
+ #~ "categorie."
9253
+
9254
+ #~ msgid "Limit result set to products assigned a specific type."
9255
+ #~ msgstr "Limitează setul de rezultate la produse atribuite unui anumit tip."
9256
+
9257
+ #~ msgid "Limit result set to products assigned a specific status."
9258
+ #~ msgstr ""
9259
+ #~ "Limitează setul de rezultate la produse atribuite unei anumite stări."
9260
+
9261
+ #~ msgid "Limit result set to products with a specific slug."
9262
+ #~ msgstr "Limitează setul de rezultate la produse cu un anumit descriptor."
9263
+
9264
+ #~ msgid "Menu order, used to custom sort products."
9265
+ #~ msgstr "Ordine meniu, folosită pentru sortarea personalizată a produselor."
9266
+
9267
+ #~ msgid "List of grouped products ID."
9268
+ #~ msgstr "Lista ID-urilor produselor grupate."
9269
+
9270
+ #~ msgid "Variation image data."
9271
+ #~ msgstr "Dată imagine variație."
9272
+
9273
+ #~ msgid "Variation height (%s)."
9274
+ #~ msgstr "Variație înălțime (%s)."
9275
+
9276
+ #~ msgid "Variation width (%s)."
9277
+ #~ msgstr "Variație lățime (%s)."
9278
+
9279
+ #~ msgid "Variation length (%s)."
9280
+ #~ msgstr "Variație lungime (%s)."
9281
+
9282
+ #~ msgid "Variation dimensions."
9283
+ #~ msgstr "Variație dimensiuni."
9284
+
9285
+ #~ msgid "Variation weight (%s)."
9286
+ #~ msgstr "Variație greutate (%s)."
9287
+
9288
+ #~ msgid "Shows if the variation is on backordered."
9289
+ #~ msgstr "Arată dacă variația este precomandată."
9290
+
9291
+ #~ msgid ""
9292
+ #~ "Controls whether or not the variation is listed as \"in stock\" or \"out "
9293
+ #~ "of stock\" on the frontend."
9294
+ #~ msgstr ""
9295
+ #~ "Controlează dacă variația este listată sau nu ca \"în stoc\" sau \"stoc "
9296
+ #~ "epuizat\" în partea din față a sitului."
9297
+
9298
+ #~ msgid "Stock management at variation level."
9299
+ #~ msgstr "Management stocuri la nivel de variație."
9300
+
9301
+ #~ msgid "If the variation is downloadable."
9302
+ #~ msgstr "Dacă variația este descărcabilă."
9303
+
9304
+ #~ msgid "If the variation is virtual."
9305
+ #~ msgstr "Dacă variația este virtuală."
9306
+
9307
+ #~ msgid "Shows if the variation can be bought."
9308
+ #~ msgstr "Arată dacă variația poate fi cumpărată."
9309
+
9310
+ #~ msgid "Shows if the variation is on sale."
9311
+ #~ msgstr "Arată dacă variația este de vânzare."
9312
+
9313
+ #~ msgid "Variation sale price."
9314
+ #~ msgstr "Variație preț de vânzare."
9315
+
9316
+ #~ msgid "Variation regular price."
9317
+ #~ msgstr "Variație preț obișnuit."
9318
+
9319
+ #~ msgid "Current variation price."
9320
+ #~ msgstr "Variație de preț actuală."
9321
+
9322
+ #~ msgid "Variation URL."
9323
+ #~ msgstr "URL variație."
9324
+
9325
+ #~ msgid "The date the variation was last modified, in the site's timezone."
9326
+ #~ msgstr ""
9327
+ #~ "Data la care a fost modificată ultima dată variația, în fusul orar al "
9328
+ #~ "sitului."
9329
+
9330
+ #~ msgid "The date the variation was created, in the site's timezone."
9331
+ #~ msgstr "Data la care a fost creată variația, în fusul orar al sitului."
9332
+
9333
+ #~ msgid "Variation ID."
9334
+ #~ msgstr "ID variație."
9335
+
9336
+ #~ msgid "List of variations."
9337
+ #~ msgstr "Lista variațiilor."
9338
+
9339
+ #~ msgid "Selected attribute term name."
9340
+ #~ msgstr "Nume termen atribut selectat."
9341
+
9342
+ #~ msgid "Defaults variation attributes."
9343
+ #~ msgstr "Atribute variație implicite."
9344
+
9345
+ #~ msgid "List of available term names of the attribute."
9346
+ #~ msgstr "Lista numelor termenilor disponibili ale atributului."
9347
+
9348
+ #~ msgid "Define if the attribute can be used as variation."
9349
+ #~ msgstr "Definește dacă atributul poate fi folosit ca variație."
9350
+
9351
+ #~ msgid ""
9352
+ #~ "Define if the attribute is visible on the \"Additional information\" tab "
9353
+ #~ "in the product's page."
9354
+ #~ msgstr ""
9355
+ #~ "Definește dacă atributul este vizibil în fila \"Informații suplimentare\" "
9356
+ #~ "în pagina produsului."
9357
+
9358
+ #~ msgid "Attribute position."
9359
+ #~ msgstr "Poziție atribut."
9360
+
9361
+ #~ msgid "Attribute ID."
9362
+ #~ msgstr "ID atribut."
9363
+
9364
+ #~ msgid "List of attributes."
9365
+ #~ msgstr "Lista atributelor."
9366
+
9367
+ #~ msgid "Image position. 0 means that the image is featured."
9368
+ #~ msgstr "Poziție imagine. 0 înseamnă că imaginea este reprezentativă."
9369
+
9370
+ #~ msgid "List of images."
9371
+ #~ msgstr "Lista imaginilor."
9372
+
9373
+ #~ msgid "Tag slug."
9374
+ #~ msgstr "Descriptor etichetă."
9375
+
9376
+ #~ msgid "Tag ID."
9377
+ #~ msgstr "ID etichetă."
9378
+
9379
+ #~ msgid "List of tags."
9380
+ #~ msgstr "Lista etichetelor."
9381
+
9382
+ #~ msgid "Category slug."
9383
+ #~ msgstr "Descriptor categorie."
9384
+
9385
+ #~ msgid "Category ID."
9386
+ #~ msgstr "ID categorie."
9387
+
9388
+ #~ msgid "List of categories."
9389
+ #~ msgstr "Lista categoriilor."
9390
+
9391
+ #~ msgid "Optional note to send the customer after purchase."
9392
+ #~ msgstr "Notă opțională de trimis clientului după cumpărare."
9393
+
9394
+ #~ msgid "Product parent ID."
9395
+ #~ msgstr "ID părinte produs."
9396
+
9397
+ #~ msgid "List of cross-sell products IDs."
9398
+ #~ msgstr "Lista ID-urilor produselor cu vânzare încrucișată."
9399
+
9400
+ #~ msgid "List of up-sell products IDs."
9401
+ #~ msgstr "Listă de ID-uri produse up-sell."
9402
+
9403
+ #~ msgid "List of related products IDs."
9404
+ #~ msgstr "Lista de ID-uri a produselor similare."
9405
+
9406
+ #~ msgid "Amount of reviews that the product have."
9407
+ #~ msgstr "Numărul de recenzii pe care produsul le are."
9408
+
9409
+ #~ msgid "Reviews average rating."
9410
+ #~ msgstr "Evaluare medie prin recenzii."
9411
+
9412
+ #~ msgid "Allow reviews."
9413
+ #~ msgstr "Permite recenzii."
9414
+
9415
+ #~ msgid "Shipping class ID."
9416
+ #~ msgstr "ID clasă de livrare."
9417
+
9418
+ #~ msgid "Shipping class slug."
9419
+ #~ msgstr "Descriptor clasă de livrare."
9420
+
9421
+ #~ msgid "Shows whether or not the product shipping is taxable."
9422
+ #~ msgstr "Arată dacă livrarea produsului este sau nu este impozabilă."
9423
+
9424
+ #~ msgid "Shows if the product need to be shipped."
9425
+ #~ msgstr "Arată dacă produsul trebuie să fie livrat."
9426
+
9427
+ #~ msgid "Product height (%s)."
9428
+ #~ msgstr "Înălțime produs (%s)."
9429
+
9430
+ #~ msgid "Product width (%s)."
9431
+ #~ msgstr "Lățime produs (%s)."
9432
+
9433
+ #~ msgid "Product length (%s)."
9434
+ #~ msgstr "Lungime produs (%s)."
9435
+
9436
+ #~ msgid "Product dimensions."
9437
+ #~ msgstr "Dimensiuni produs."
9438
+
9439
+ #~ msgid "Product weight (%s)."
9440
+ #~ msgstr "Greutate produs (%s)."
9441
+
9442
+ #~ msgid "Allow one item to be bought in a single order."
9443
+ #~ msgstr "Permite un singur element să fie cumpărat printr-o singură comandă."
9444
+
9445
+ #~ msgid "Shows if the product is on backordered."
9446
+ #~ msgstr "Arată dacă produsul este precomandat."
9447
+
9448
+ #~ msgid "Shows if backorders are allowed."
9449
+ #~ msgstr "Arată dacă precomenzile sunt permise."
9450
+
9451
+ #~ msgid "If managing stock, this controls if backorders are allowed."
9452
+ #~ msgstr ""
9453
+ #~ "Dacă se gestionează stocul, acest lucru controlează dacă precomenzile "
9454
+ #~ "sunt permise."
9455
+
9456
+ #~ msgid "Stock quantity."
9457
+ #~ msgstr "Cantitate în stoc."
9458
+
9459
+ #~ msgid "Stock management at product level."
9460
+ #~ msgstr "Management stocuri la nivel de produs."
9461
+
9462
+ #~ msgid "Tax status."
9463
+ #~ msgstr "Stare taxă."
9464
+
9465
+ #~ msgid "Product external button text. Only for external products."
9466
+ #~ msgstr "Text buton produs extern. Numai pentru produsele externe."
9467
+
9468
+ #~ msgid "Product external URL. Only for external products."
9469
+ #~ msgstr "URL produs extern. Numai pentru produsele externe."
9470
+
9471
+ #~ msgid "Download type, this controls the schema on the front-end."
9472
+ #~ msgstr ""
9473
+ #~ "Tip de descărcare, acest lucru controlează schema din partea din față a "
9474
+ #~ "sitului."
9475
+
9476
+ #~ msgid "List of downloadable files."
9477
+ #~ msgstr "Lista fișierelor care pot fi descărcate."
9478
+
9479
+ #~ msgid "If the product is downloadable."
9480
+ #~ msgstr "Dacă produsul este descărcabil."
9481
+
9482
+ #~ msgid "If the product is virtual."
9483
+ #~ msgstr "Dacă produsul este virtual."
9484
+
9485
+ #~ msgid "Amount of sales."
9486
+ #~ msgstr "Valoarea vânzărilor."
9487
+
9488
+ #~ msgid "Shows if the product can be bought."
9489
+ #~ msgstr "Arată dacă produsul poate fi cumpărat."
9490
+
9491
+ #~ msgid "Shows if the product is on sale."
9492
+ #~ msgstr "Arată dacă produsul este de vânzare."
9493
+
9494
+ #~ msgid "Price formatted in HTML."
9495
+ #~ msgstr "Preț formatat în HTML."
9496
+
9497
+ #~ msgid "End date of sale price."
9498
+ #~ msgstr "Data de încheiere a prețului de vânzare."
9499
+
9500
+ #~ msgid "Start date of sale price."
9501
+ #~ msgstr "Data de început a prețului de vânzare."
9502
+
9503
+ #~ msgid "Product sale price."
9504
+ #~ msgstr "Preț de vânzare produs."
9505
+
9506
+ #~ msgid "Product regular price."
9507
+ #~ msgstr "Preț obișnuit produs."
9508
+
9509
+ #~ msgid "Current product price."
9510
+ #~ msgstr "Preț actual produs."
9511
+
9512
+ #~ msgid "Unique identifier."
9513
+ #~ msgstr "Identificator unic."
9514
+
9515
+ #~ msgid "Product short description."
9516
+ #~ msgstr "Descriere scurtă produs."
9517
+
9518
+ #~ msgid "Product description."
9519
+ #~ msgstr "Descriere produs."
9520
+
9521
+ #~ msgid "Catalog visibility."
9522
+ #~ msgstr "Vizibilitate catalog."
9523
+
9524
+ #~ msgid "Featured product."
9525
+ #~ msgstr "Produs reprezentativ."
9526
+
9527
+ #~ msgid "Product status (post status)."
9528
+ #~ msgstr "Stare produs (stare articol)."
9529
+
9530
+ #~ msgid "Product type."
9531
+ #~ msgstr "Tip de produs."
9532
+
9533
+ #~ msgid "The date the product was last modified, in the site's timezone."
9534
+ #~ msgstr ""
9535
+ #~ "Data la care produsul a fost modificat ultima dată, în fusul orar al "
9536
+ #~ "sitului."
9537
+
9538
+ #~ msgid "The date the product was created, in the site's timezone."
9539
+ #~ msgstr "Data la care a fost creat produsul, în fusul orar al sitului."
9540
+
9541
+ #~ msgid "Product URL."
9542
+ #~ msgstr "URL produs."
9543
+
9544
+ #~ msgid "Product slug."
9545
+ #~ msgstr "Descriptor produs."
9546
+
9547
+ #~ msgid "The SKU already exists on another product."
9548
+ #~ msgstr "Acest SKU există deja la alt produs."
9549
+
9550
+ #~ msgid "Tag name."
9551
+ #~ msgstr "Nume etichetă."
9552
+
9553
+ #~ msgid "Shipping class name."
9554
+ #~ msgstr "Nume clasă de livrare."
9555
+
9556
+ #~ msgid "Shows if the reviewer bought the product or not."
9557
+ #~ msgstr "Arată dacă recenzentul a cumpărat sau nu a cumpărat produsul."
9558
+
9559
+ #~ msgid "Reviewer name."
9560
+ #~ msgstr "Nume recenzent."
9561
+
9562
+ #~ msgid "Review rating (0 to 5)."
9563
+ #~ msgstr "Evaluare recenzie (de la 0 la 5)."
9564
+
9565
+ #~ msgid "The date the review was created, in the site's timezone."
9566
+ #~ msgstr "Data la care recenzia a fost creată, în fusul orar al sitului."
9567
+
9568
+ #~ msgid "Invalid product."
9569
+ #~ msgstr "Produs invalid."
9570
+
9571
+ #~ msgid "Image alternative text."
9572
+ #~ msgstr "Text alternativ imagine."
9573
+
9574
+ #~ msgid "Image name."
9575
+ #~ msgstr "Nume imagine."
9576
+
9577
+ #~ msgid "Image URL."
9578
+ #~ msgstr "URL imagine."
9579
+
9580
+ #~ msgid "The date the image was last modified, in the site's timezone."
9581
+ #~ msgstr ""
9582
+ #~ "Data la care a fost modificată ultima dată imaginea, în fusul orar al "
9583
+ #~ "sitului."
9584
+
9585
+ #~ msgid "The date the image was created, in the site's timezone."
9586
+ #~ msgstr "Data la care a fost creată imaginea, în fusul orar al sitului."
9587
+
9588
+ #~ msgid "Image ID."
9589
+ #~ msgstr "ID imagine."
9590
+
9591
+ #~ msgid "Category archive display type."
9592
+ #~ msgstr "Tip de afișare arhivă categorie."
9593
+
9594
+ #~ msgid "The ID for the parent of the resource."
9595
+ #~ msgstr "ID-ul pentru părintele resursei."
9596
+
9597
+ #~ msgid "Category name."
9598
+ #~ msgstr "Nume categorie."
9599
+
9600
+ #~ msgid "Enable/Disable attribute archives."
9601
+ #~ msgstr "Activează/dezactivează arhive atribut."
9602
+
9603
+ #~ msgid "Default sort order."
9604
+ #~ msgstr "Ordine de sortare implicită."
9605
+
9606
+ #~ msgid "Type of attribute."
9607
+ #~ msgstr "Tipul de atribut."
9608
+
9609
+ #~ msgid "Attribute name."
9610
+ #~ msgstr "Nume atribut."
9611
+
9612
+ #~ msgid "Number of published products for the resource."
9613
+ #~ msgstr "Număr de produse publicate pentru resursă."
9614
+
9615
+ #~ msgid "Menu order, used to custom sort the resource."
9616
+ #~ msgstr "Ordine meniu, folosită pentru sortarea personalizată a resursei."
9617
+
9618
+ #~ msgid "HTML description of the resource."
9619
+ #~ msgstr "Descrierea HTML a resursei."
9620
+
9621
+ #~ msgid "An alphanumeric identifier for the resource unique to its type."
9622
+ #~ msgstr "Un identificator alfanumeric pentru resursa unică de tipul acesta."
9623
+
9624
+ #~ msgid "Term name."
9625
+ #~ msgstr "Nume termen."
9626
+
9627
+ #~ msgid "Limit result set to orders assigned a specific product."
9628
+ #~ msgstr ""
9629
+ #~ "Limitează setul de rezultate la comenzi atribuite unui anumit produs."
9630
+
9631
+ #~ msgid "Limit result set to orders assigned a specific customer."
9632
+ #~ msgstr ""
9633
+ #~ "Limitează setul de rezultate la comenzi atribuite unui anumit client."
9634
+
9635
+ #~ msgid "Limit result set to orders assigned a specific status."
9636
+ #~ msgstr ""
9637
+ #~ "Limitează setul de rezultate la comenzi atribuite unei anumite stări."
9638
+
9639
+ #~ msgid "Refund total."
9640
+ #~ msgstr "Total rambursare."
9641
+
9642
+ #~ msgid "Refund reason."
9643
+ #~ msgstr "Motiv rambursare."
9644
+
9645
+ #~ msgid "Refund ID."
9646
+ #~ msgstr "ID rambursare"
9647
+
9648
+ #~ msgid "List of refunds."
9649
+ #~ msgstr "Listă a rambursărilor."
9650
+
9651
+ #~ msgid "Discount total tax."
9652
+ #~ msgstr "Taxă totală discount."
9653
+
9654
+ #~ msgid "Discount total."
9655
+ #~ msgstr "Total discount."
9656
+
9657
+ #~ msgid "Coupons line data."
9658
+ #~ msgstr "Date linie de cupoane."
9659
+
9660
+ #~ msgid "Tax status of fee."
9661
+ #~ msgstr "Stare impozit pentru taxă."
9662
+
9663
+ #~ msgid "Tax class of fee."
9664
+ #~ msgstr "Clasă de impozitare a taxei."
9665
+
9666
+ #~ msgid "Fee name."
9667
+ #~ msgstr "Nume taxă."
9668
+
9669
+ #~ msgid "Fee lines data."
9670
+ #~ msgstr "Dată linii taxă."
9671
+
9672
+ #~ msgid "Shipping method ID."
9673
+ #~ msgstr "ID metodă de livrare."
9674
+
9675
+ #~ msgid "Shipping method name."
9676
+ #~ msgstr "Nume metodă de livrare."
9677
+
9678
+ #~ msgid "Shipping lines data."
9679
+ #~ msgstr "Date linii de livrare."
9680
+
9681
+ #~ msgid "Shipping tax total."
9682
+ #~ msgstr "Total taxe de livrare."
9683
+
9684
+ #~ msgid "Tax total (not including shipping taxes)."
9685
+ #~ msgstr "Total taxe (nu include taxe de livrare)."
9686
+
9687
+ #~ msgid "Show if is a compound tax rate."
9688
+ #~ msgstr "Arată dacă este o cotă de impozitare compusă."
9689
+
9690
+ #~ msgid "Tax rate label."
9691
+ #~ msgstr "Etichetă cotă de impozitare."
9692
+
9693
+ #~ msgid "Tax rate code."
9694
+ #~ msgstr "Cod cotă de impozitare."
9695
+
9696
+ #~ msgid "Tax lines data."
9697
+ #~ msgstr "Date linii de taxă."
9698
+
9699
+ #~ msgid "MD5 hash of cart items to ensure orders are not modified."
9700
+ #~ msgstr ""
9701
+ #~ "Hașul MD5 al elementelor din coș pentru a asigura că nu sunt modificate "
9702
+ #~ "comenzile."
9703
+
9704
+ #~ msgid "The date the order was paid, in the site's timezone."
9705
+ #~ msgstr "Data la care comanda a fost plătită, în fusul orar al sitului."
9706
+
9707
+ #~ msgid "The date the order was completed, in the site's timezone."
9708
+ #~ msgstr "Data la care comanda a fost finalizată, în fusul orar al sitului."
9709
+
9710
+ #~ msgid "Note left by customer during checkout."
9711
+ #~ msgstr "Notă lăsată de client în timpul finalizării."
9712
+
9713
+ #~ msgid "Shows where the order was created."
9714
+ #~ msgstr "Arată unde a fost creată comanda."
9715
+
9716
+ #~ msgid "User agent of the customer."
9717
+ #~ msgstr "Agent utilizator al clientului."
9718
+
9719
+ #~ msgid "Customer's IP address."
9720
+ #~ msgstr "Adresă IP client."
9721
+
9722
+ #~ msgid "Unique transaction ID."
9723
+ #~ msgstr "ID tranzacție unică."
9724
+
9725
+ #~ msgid ""
9726
+ #~ "Define if the order is paid. It will set the status to processing and "
9727
+ #~ "reduce stock items."
9728
+ #~ msgstr ""
9729
+ #~ "Definește dacă comanda este plătită. Va seta starea procesării și va "
9730
+ #~ "reduce elementele din stoc."
9731
+
9732
+ #~ msgid "Payment method title."
9733
+ #~ msgstr "Titlu metodă de plată."
9734
+
9735
+ #~ msgid "Payment method ID."
9736
+ #~ msgstr "ID metodă de plată."
9737
+
9738
+ #~ msgid "Shipping address."
9739
+ #~ msgstr "Adresă de livrare."
9740
+
9741
+ #~ msgid "Country code in ISO 3166-1 alpha-2 format."
9742
+ #~ msgstr "Cod de țară în format ISO 3166-1 alpha-2."
9743
+
9744
+ #~ msgid "Billing address."
9745
+ #~ msgstr "Adresă de facturare."
9746
+
9747
+ #~ msgid "Sum of all taxes."
9748
+ #~ msgstr "Suma tuturor taxelor."
9749
+
9750
+ #~ msgid "Grand total."
9751
+ #~ msgstr "Total general."
9752
+
9753
+ #~ msgid "Sum of line item taxes only."
9754
+ #~ msgstr "Doar suma taxelor elementelor de linie."
9755
+
9756
+ #~ msgid "Total shipping tax amount for the order."
9757
+ #~ msgstr "Valoare totală taxă de livrare pentru comandă."
9758
+
9759
+ #~ msgid "Total shipping amount for the order."
9760
+ #~ msgstr "Valoare totală de livrare pentru comandă."
9761
+
9762
+ #~ msgid "Total discount tax amount for the order."
9763
+ #~ msgstr "Valoare totală taxă discount pentru comandă."
9764
+
9765
+ #~ msgid "Total discount amount for the order."
9766
+ #~ msgstr "Valoare totală discount pentru comandă."
9767
+
9768
+ #~ msgid "User ID who owns the order. 0 for guests."
9769
+ #~ msgstr ""
9770
+ #~ "ID-ul utilizatorului căruia îi aparține comanda. 0 pentru vizitatori."
9771
+
9772
+ #~ msgid "The date the order was last modified, in the site's timezone."
9773
+ #~ msgstr ""
9774
+ #~ "Data la care comanda a fost modificată ultima dată, în fusul orar al "
9775
+ #~ "sitului."
9776
+
9777
+ #~ msgid "The date the order was created, in the site's timezone."
9778
+ #~ msgstr "Data la care comanda a fost creată, în fusul orar al sitului."
9779
+
9780
+ #~ msgid "True the prices included tax during checkout."
9781
+ #~ msgstr "Adevărat că prețurile includ taxe în timpul finalizării."
9782
+
9783
+ #~ msgid "Currency the order was created with, in ISO format."
9784
+ #~ msgstr "Moneda cu care a fost creată comanda, în format ISO."
9785
+
9786
+ #~ msgid "Order status."
9787
+ #~ msgstr "Stare comandă."
9788
+
9789
+ #~ msgid "Parent order ID."
9790
+ #~ msgstr "ID comandă părinte."
9791
+
9792
+ #~ msgid "Order item ID provided is not associated with order."
9793
+ #~ msgstr "ID-ul produsului din comandă furnizat nu este asociat cu comanda."
9794
+
9795
+ #~ msgid "Cannot update coupon, try again."
9796
+ #~ msgstr "Nu pot actualiza cuponul, încearcă din nou."
9797
+
9798
+ #~ msgid "Coupon code is required."
9799
+ #~ msgstr "Codul cuponului este obligatoriu."
9800
+
9801
+ #~ msgid "Cannot update fee, try again."
9802
+ #~ msgstr "Nu se poate actualiza taxa, încearcă din nou."
9803
+
9804
+ #~ msgid "Fee tax class is required when fee is taxable."
9805
+ #~ msgstr ""
9806
+ #~ "Clasa de impozitare pentru taxă este obligatorie când taxa este "
9807
+ #~ "impozabilă."
9808
+
9809
+ #~ msgid "Fee name is required."
9810
+ #~ msgstr "Numele taxei este obligatoriu."
9811
+
9812
+ #~ msgid "Cannot update shipping method, try again."
9813
+ #~ msgstr "Nu pot actualiza metoda de livrare, încearcă din nou."
9814
+
9815
+ #~ msgid "Shipping method ID is required."
9816
+ #~ msgstr "ID metodă de livrare este obligatoriu."
9817
+
9818
+ #~ msgid "Shipping total must be a positive amount."
9819
+ #~ msgstr "Totalul livrărilor trebuie să fie un număr pozitiv."
9820
+
9821
+ #~ msgid "Cannot create line item, try again."
9822
+ #~ msgstr "Nu pot crea linia produsului, încearcă din nou."
9823
+
9824
+ #~ msgid "Product quantity is required."
9825
+ #~ msgstr "Cantitatea de produse este obligatorie."
9826
+
9827
+ #~ msgid "Product quantity must be a positive float."
9828
+ #~ msgstr "Cantitatea produsului trebuie să fie un un număr pozitiv."
9829
+
9830
+ #~ msgid "Product is invalid."
9831
+ #~ msgstr "Produsul este invalid."
9832
+
9833
+ #~ msgid "Product ID or SKU is required."
9834
+ #~ msgstr "ID produs sau SKU sunt obligatorii."
9835
+
9836
+ #~ msgid "Customer ID is invalid."
9837
+ #~ msgstr "ID-ul comandă este invalid."
9838
+
9839
+ #~ msgid "Number of decimal points to use in each resource."
9840
+ #~ msgstr "Număr de zecimale de folosit în fiecare resursă."
9841
+
9842
+ #~ msgid "Meta value."
9843
+ #~ msgstr "Valoare meta."
9844
+
9845
+ #~ msgid "Meta label."
9846
+ #~ msgstr "Etichetă meta."
9847
+
9848
+ #~ msgid "Meta key."
9849
+ #~ msgstr "Cheie meta."
9850
+
9851
+ #~ msgid "Line item meta data."
9852
+ #~ msgstr "Metadate element de linie."
9853
+
9854
+ #~ msgid "Tax subtotal."
9855
+ #~ msgstr "Sub-total taxe."
9856
+
9857
+ #~ msgid "Tax total."
9858
+ #~ msgstr "Total taxe."
9859
+
9860
+ #~ msgid "Line taxes."
9861
+ #~ msgstr "Linie impozite."
9862
+
9863
+ #~ msgid "Line total tax (after discounts)."
9864
+ #~ msgstr "Linie pentru total taxe (după discounturi)."
9865
+
9866
+ #~ msgid "Line total (after discounts)."
9867
+ #~ msgstr "Linie pentru total (după discounturi)."
9868
+
9869
+ #~ msgid "Line subtotal tax (before discounts)."
9870
+ #~ msgstr "Linie pentru sub-total taxe (înainte de discounturi)."
9871
+
9872
+ #~ msgid "Line subtotal (before discounts)."
9873
+ #~ msgstr "Linie pentru sub-total (înainte de discounturi)."
9874
+
9875
+ #~ msgid "Product price."
9876
+ #~ msgstr "Preț produs."
9877
+
9878
+ #~ msgid "Tax class of product."
9879
+ #~ msgstr "Clasă de impozitare a produsului."
9880
+
9881
+ #~ msgid "Quantity ordered."
9882
+ #~ msgstr "Cantitate comandată."
9883
+
9884
+ #~ msgid "Variation ID, if applicable."
9885
+ #~ msgstr "ID variație, dacă este cazul."
9886
+
9887
+ #~ msgid "Product name."
9888
+ #~ msgstr "Nume produs."
9889
+
9890
+ #~ msgid "Item ID."
9891
+ #~ msgstr "ID element."
9892
+
9893
+ #~ msgid "Line items data."
9894
+ #~ msgstr "Date elementele de linie."
9895
+
9896
+ #~ msgid "Reason for refund."
9897
+ #~ msgstr "Motiv pentru rambursare."
9898
+
9899
+ #~ msgid "Refund amount."
9900
+ #~ msgstr "Valoare rambursare."
9901
+
9902
+ #~ msgid "The date the order refund was created, in the site's timezone."
9903
+ #~ msgstr ""
9904
+ #~ "Data la care rambursarea comenzii a fost creată, în fusul orar al sitului."
9905
+
9906
+ #~ msgid ""
9907
+ #~ "An error occurred while attempting to create the refund using the payment "
9908
+ #~ "gateway API."
9909
+ #~ msgstr ""
9910
+ #~ "A apărut o eroare în timpul încercării de a crea rambursarea folosind API-"
9911
+ #~ "ul gateway-ului de plată."
9912
+
9913
+ #~ msgid "Cannot create order refund, please try again."
9914
+ #~ msgstr "Nu pot crea rambursarea comenzii, te rog încearcă din nou."
9915
+
9916
+ #~ msgid "Refund amount must be greater than zero."
9917
+ #~ msgstr "Valoarea rambursării trebuie să fie mai mare decât zero."
9918
+
9919
+ #~ msgid "Order is invalid"
9920
+ #~ msgstr "Comanda este invalidă."
9921
+
9922
+ #~ msgid "Invalid order refund ID."
9923
+ #~ msgstr "ID rambursare comandă invalid."
9924
+
9925
+ #~ msgid "Invalid order ID."
9926
+ #~ msgstr "ID comandă invalid."
9927
+
9928
+ #~ msgid ""
9929
+ #~ "Shows/define if the note is only for reference or for the customer (the "
9930
+ #~ "user will be notified)."
9931
+ #~ msgstr ""
9932
+ #~ "Arată/definește dacă nota este numai pentru referință sau pentru client "
9933
+ #~ "(utilizatorul va fi notificat)."
9934
+
9935
+ #~ msgid "Order note."
9936
+ #~ msgstr "Notă comandă."
9937
+
9938
+ #~ msgid "The date the order note was created, in the site's timezone."
9939
+ #~ msgstr "Data la care nota comenzii a fost creată, în fusul orar al sitului."
9940
+
9941
+ #~ msgid "Webhooks do not support trashing."
9942
+ #~ msgstr "Cârligele web nu suportă aruncarea la gunoi."
9943
+
9944
+ #~ msgid "Cannot create order note, please try again."
9945
+ #~ msgstr "Nu pot crea notă comandă, te rog încearcă din nou."
9946
+
9947
+ #~ msgid "Invalid order item."
9948
+ #~ msgstr "Element comandă invalid."
9949
+
9950
+ #~ msgid "Limit result set to resources with a specific role."
9951
+ #~ msgstr "Limitează setul de rezultate la resurse cu un rol specific."
9952
+
9953
+ #~ msgid "Limit result set to resources with a specific email."
9954
+ #~ msgstr "Limitează setul de rezultate la resurse cu un anumit email."
9955
+
9956
+ #~ msgid "List of shipping address data."
9957
+ #~ msgstr "Lista datelor adresei de livrare."
9958
+
9959
+ #~ msgid "Phone number."
9960
+ #~ msgstr "Număr de telefon."
9961
+
9962
+ #~ msgid "Email address."
9963
+ #~ msgstr "Adresă email."
9964
+
9965
+ #~ msgid "ISO code of the country."
9966
+ #~ msgstr "Codul ISO al țării."
9967
+
9968
+ #~ msgid "Postal code."
9969
+ #~ msgstr "Cod poștal."
9970
+
9971
+ #~ msgid "ISO code or name of the state, province or district."
9972
+ #~ msgstr "Cod ISO sau nume județ, regiune sau district."
9973
+
9974
+ #~ msgid "City name."
9975
+ #~ msgstr "Nume oraș."
9976
+
9977
+ #~ msgid "Address line 2."
9978
+ #~ msgstr "A doua linie a adresei."
9979
+
9980
+ #~ msgid "Address line 1."
9981
+ #~ msgstr "Prima linie a adresei."
9982
+
9983
+ #~ msgid "Company name."
9984
+ #~ msgstr "Nume companie."
9985
+
9986
+ #~ msgid "Last name."
9987
+ #~ msgstr "Nume."
9988
+
9989
+ #~ msgid "First name."
9990
+ #~ msgstr "Prenume."
9991
+
9992
+ #~ msgid "List of billing address data."
9993
+ #~ msgstr "Lista datelor adresei de facturare."
9994
+
9995
+ #~ msgid "Avatar URL."
9996
+ #~ msgstr "URL Avatar."
9997
+
9998
+ #~ msgid "Total amount spent."
9999
+ #~ msgstr "Sumă totală cheltuită."
10000
+
10001
+ #~ msgid "Quantity of orders made by the customer."
10002
+ #~ msgstr "Numărul comenzilor făcute de client."
10003
+
10004
+ #~ msgid "Last order ID."
10005
+ #~ msgstr "ID ultima comandă."
10006
+
10007
+ #~ msgid "Last order data."
10008
+ #~ msgstr "Data ultimei comenzi."
10009
+
10010
+ #~ msgid "Customer password."
10011
+ #~ msgstr "Parolă client."
10012
+
10013
+ #~ msgid "Customer login name."
10014
+ #~ msgstr "Nume autentificare client."
10015
+
10016
+ #~ msgid "Customer last name."
10017
+ #~ msgstr "Nume client."
10018
+
10019
+ #~ msgid "Customer first name."
10020
+ #~ msgstr "Prenume client."
10021
+
10022
+ #~ msgid "The email address for the customer."
10023
+ #~ msgstr "Adresa email a clientului."
10024
+
10025
+ #~ msgid "The date the customer was last modified, in the site's timezone."
10026
+ #~ msgstr ""
10027
+ #~ "Data la care clientul a fost modificat ultima dată, în fusul orar al "
10028
+ #~ "sitului."
10029
+
10030
+ #~ msgid "The date the customer was created, in the site's timezone."
10031
+ #~ msgstr "Data la care clientul a fost creat, în fusul orar al sitului."
10032
+
10033
+ #~ msgid "Unique identifier for the resource."
10034
+ #~ msgstr "Identificator unic pentru resursă."
10035
+
10036
+ #~ msgid "Invalid resource id for reassignment."
10037
+ #~ msgstr "ID resursă invalid pentru realocare."
10038
+
10039
+ #~ msgid "Customers do not support trashing."
10040
+ #~ msgstr "Clienții nu suportă distrugerea."
10041
+
10042
+ #~ msgid "Username isn't editable."
10043
+ #~ msgstr "Numele utilizator nu este editabil."
10044
+
10045
+ #~ msgid "Email address is invalid."
10046
+ #~ msgstr "Adresa email este invalidă."
10047
+
10048
+ #~ msgid "Invalid resource id."
10049
+ #~ msgstr "ID resursă invalid."
10050
+
10051
+ #~ msgid "Cannot create existing resource."
10052
+ #~ msgstr "Nu pot crea resursa existentă."
10053
+
10054
+ #~ msgid "File URL."
10055
+ #~ msgstr "URL fișier."
10056
+
10057
+ #~ msgid "File name."
10058
+ #~ msgstr "Nume fișier."
10059
+
10060
+ #~ msgid "File details."
10061
+ #~ msgstr "Detalii fișier."
10062
+
10063
+ #~ msgid "The date when download access expires, in the site's timezone."
10064
+ #~ msgstr ""
10065
+ #~ "Data la care expiră accesul la descărcare, în fusul orar al sitului."
10066
+
10067
+ #~ msgid "Number of downloads remaining."
10068
+ #~ msgstr "Numărul de descărcări rămase."
10069
+
10070
+ #~ msgid "Order key."
10071
+ #~ msgstr "Cheie comandă."
10072
+
10073
+ #~ msgid "Order ID."
10074
+ #~ msgstr "ID comandă."
10075
+
10076
+ #~ msgid "Downloadable file name."
10077
+ #~ msgstr "Nume fișier descărcabil."
10078
+
10079
+ #~ msgid "Downloadable product ID."
10080
+ #~ msgstr "ID produs descărcabil."
10081
+
10082
+ #~ msgid "Download ID (MD5)."
10083
+ #~ msgstr "Descarcă ID (MD5)."
10084
+
10085
+ #~ msgid "Download file URL."
10086
+ #~ msgstr "Descarcă URL fișier."
10087
+
10088
+ #~ msgid "Limit result set to resources with a specific code."
10089
+ #~ msgstr "Limitează setul de rezultate la resurse cu un anumit cod."
10090
+
10091
+ #~ msgid "List of email addresses that can use this coupon."
10092
+ #~ msgstr "Lista adreselor email care pot folosi acest cupon."
10093
+
10094
+ #~ msgid "Maximum order amount allowed when using the coupon."
10095
+ #~ msgstr "Suma maximă permisă a comenzii când se folosește cuponul."
10096
+
10097
+ #~ msgid ""
10098
+ #~ "Minimum order amount that needs to be in the cart before coupon applies."
10099
+ #~ msgstr ""
10100
+ #~ "Suma minimă a comenzii care trebuie să fie în coș înainte de aplicarea "
10101
+ #~ "cuponului."
10102
+
10103
+ #~ msgid "List of category IDs the coupon does not apply to."
10104
+ #~ msgstr "Lista ID-urilor de categorie pentru care nu se aplică cuponul."
10105
+
10106
+ #~ msgid "List of category IDs the coupon applies to."
10107
+ #~ msgstr "Lista ID-urilor de categorie pentru care se aplică cuponul."
10108
+
10109
+ #~ msgid "Max number of items in the cart the coupon can be applied to."
10110
+ #~ msgstr ""
10111
+ #~ "Număr maxim de elemente din coș pentru care cuponul poate fi aplicat."
10112
+
10113
+ #~ msgid "How many times the coupon can be used per customer."
10114
+ #~ msgstr "De câte ori cuponul poate fi folosit de client."
10115
+
10116
+ #~ msgid "List of product IDs the coupon cannot be used on."
10117
+ #~ msgstr "Lista ID-urilor de produs pentru care nu poate fi folosit cuponul."
10118
+
10119
+ #~ msgid "List of product IDs the coupon can be used on."
10120
+ #~ msgstr "Lista ID-urilor de produs pentru care poate fi folosit cuponul."
10121
+
10122
+ #~ msgid "Number of times the coupon has been used already."
10123
+ #~ msgstr "De câte ori cuponului a fost folosit deja."
10124
+
10125
+ #~ msgid "UTC DateTime when the coupon expires."
10126
+ #~ msgstr "Data și ora UTC când expiră cuponul."
10127
+
10128
+ #~ msgid "Determines the type of discount that will be applied."
10129
+ #~ msgstr "Determină tipul de discount care va fi aplicat."
10130
+
10131
+ #~ msgid "Coupon description."
10132
+ #~ msgstr "Descriere cupon."
10133
+
10134
+ #~ msgid "The date the coupon was last modified, in the site's timezone."
10135
+ #~ msgstr ""
10136
+ #~ "Data la care cuponul a fost modificat ultima dată, în fusul orar al "
10137
+ #~ "sitului."
10138
+
10139
+ #~ msgid "The date the coupon was created, in the site's timezone."
10140
+ #~ msgstr "Data la care cuponul a fost creat, în fusul orar al sitului."
10141
+
10142
+ #~ msgid "Coupon code."
10143
+ #~ msgstr "Cod cupon."
10144
+
10145
+ #~ msgid "Unique identifier for the object."
10146
+ #~ msgstr "Identificator unic pentru obiect."
10147
+
10148
+ #~ msgid "The coupon code cannot be empty."
10149
+ #~ msgstr "Codul cuponului nu poate fi gol."
10150
+
10151
+ #~ msgid "Whether to bypass trash and force deletion."
10152
+ #~ msgstr "Fie pentru a evita aruncarea la gunoi și a forța ștergerea."
10153
+
10154
+ #~ msgid "The API key provided does not have write permissions."
10155
+ #~ msgstr "Cheia API furnizată nu are permisiuni de scriere."
10156
+
10157
+ #~ msgid "The API key provided does not have read permissions."
10158
+ #~ msgstr "Cheia API furnizată nu are permisiuni de citire."
10159
+
10160
+ #~ msgid "Invalid nonce - nonce has already been used."
10161
+ #~ msgstr "Nunic invalid - nunicul a fost deja folosit."
10162
+
10163
+ #~ msgid "Invalid timestamp."
10164
+ #~ msgstr "Datare invalidă."
10165
+
10166
+ #~ msgid "Invalid signature - provided signature does not match."
10167
+ #~ msgstr "Semnătură invalidă - semnătura furnizată nu se potrivește."
10168
+
10169
+ #~ msgid "Invalid signature - signature method is invalid."
10170
+ #~ msgstr "Semnătură invalidă - metoda de semnătură este invalidă."
10171
+
10172
+ #~ msgid "Invalid signature - failed to sort parameters."
10173
+ #~ msgstr "Semnătură invalidă - sortarea parametrilor a eșuat."
10174
+
10175
+ #~ msgid "Consumer Secret is invalid."
10176
+ #~ msgstr "Secretul client este invalid."
10177
+
10178
+ #~ msgid "Consumer key is invalid."
10179
+ #~ msgstr "Cheia client este invalidă."
10180
+
10181
+ #~ msgid "Your database is being updated in the background."
10182
+ #~ msgstr "Baza ta de date este actualizată în fundal."
10183
+
10184
+ #~ msgid "We need to update your store database to the latest version."
10185
+ #~ msgstr ""
10186
+ #~ "Trebuie să-ți actualizăm baza de date a magazinului la ultima versiune."
10187
+
10188
+ #~ msgid "WooCommerce data update"
10189
+ #~ msgstr "Actualizare date WooCommerce"
10190
+
10191
+ #~ msgid "Install our new Simplify Commerce plugin"
10192
+ #~ msgstr "Instalează noul nostru modul Simplify Commerce"
10193
+
10194
+ #~ msgid ""
10195
+ #~ "<strong>The Simplify Commerce payment gateway is deprecated</strong> "
10196
+ #~ "&#8211; Please install our new free Simplify Commerce plugin from "
10197
+ #~ "WordPress.org. Simplify Commerce will be removed from WooCommerce core in "
10198
+ #~ "a future update."
10199
+ #~ msgstr ""
10200
+ #~ "<strong>Gateway-ul de plată Simplify Commerce este învechit</strong> "
10201
+ #~ "&#8211; Te rog instalează noul nostru modul gratuit Simplify Commerce din "
10202
+ #~ "WordPress.org. Simplify Commerce va fi înlăturat din nucleul WooCommerce "
10203
+ #~ "într-o actualizare viitoare."
10204
+
10205
+ #~ msgid ""
10206
+ #~ "Customers will not be able to purchase physical goods from your store "
10207
+ #~ "until a shipping method is available."
10208
+ #~ msgstr ""
10209
+ #~ "Clienții care nu vor putea să cumpere bunuri fizice din magazinul tău "
10210
+ #~ "până ce o metodă de livrare este disponibilă."
10211
+
10212
+ #~ msgid ""
10213
+ #~ "Shipping is currently enabled, but you have not added any shipping "
10214
+ #~ "methods to your shipping zones."
10215
+ #~ msgstr ""
10216
+ #~ "Livrarea este acum activată, dar nu ai adăugat nicio metodă de livrare "
10217
+ #~ "pentru zonele tale de livrare."
10218
+
10219
+ #~ msgid "Add shipping methods &amp; zones"
10220
+ #~ msgstr "Adaugă metode și zone de livrare"
10221
+
10222
+ #~ msgid "Learn more about shipping zones"
10223
+ #~ msgstr "Află mai multe despre zone de livrare"
10224
+
10225
+ #~ msgid "Setup shipping zones"
10226
+ #~ msgstr "Inițializează zone de livrare"
10227
+
10228
+ #~ msgid ""
10229
+ #~ "Legacy shipping methods (flat rate, international flat rate, local pickup "
10230
+ #~ "and delivery, and free shipping) are deprecated but will continue to work "
10231
+ #~ "as normal for now. <b><em>They will be removed in future versions of "
10232
+ #~ "WooCommerce</em></b>. We recommend disabling these and setting up new "
10233
+ #~ "rates within shipping zones as soon as possible."
10234
+ #~ msgstr ""
10235
+ #~ "Metodele de livrare moștenite (forfetar, forfetar internațional, preluare "
10236
+ #~ "locală, livrare locală și livrare gratuită) sunt învechite, dar vor "
10237
+ #~ "continua să funcționeze în mod normal deocamdată. <b><em>Ele vor fi "
10238
+ #~ "eliminate în versiunile viitoare ale WooCommerce</em></b>. Recomandăm să "
10239
+ #~ "le dezactivezi și să inițializezi rate noi în zonele de livrare cât mai "
10240
+ #~ "repede posibil."
10241
+
10242
+ #~ msgid ""
10243
+ #~ "a group of regions that can be assigned different shipping methods and "
10244
+ #~ "rates."
10245
+ #~ msgstr ""
10246
+ #~ "un grup de regiuni care poate fi atribuit diferitelor metode de livrare "
10247
+ #~ "și rate."
10248
+
10249
+ #~ msgid "New:"
10250
+ #~ msgstr "Nou:"
10251
+
10252
+ #~ msgid "Dismiss"
10253
+ #~ msgstr "Refuză"
10254
+
10255
+ #~ msgid ""
10256
+ #~ "Your theme has a woocommerce.php file, you will not be able to override "
10257
+ #~ "the woocommerce/archive-product.php custom template since woocommerce.php "
10258
+ #~ "has priority over archive-product.php. This is intended to prevent "
10259
+ #~ "display issues."
10260
+ #~ msgstr ""
10261
+ #~ "Tema ta are un fișier woocommerce.php, nu vei putea să contramandezi "
10262
+ #~ "șablonul personalizat woocommerce/archive-product.php deoarece "
10263
+ #~ "woocommerce.php are prioritate față de archive-product.php. Acest lucru "
10264
+ #~ "are ca scop prevenirea problemelor de afișare."
10265
+
10266
+ #~ msgid "Archive template"
10267
+ #~ msgstr "Șablon arhivă"
10268
+
10269
+ #~ msgid "Page ID is set, but the page does not exist"
10270
+ #~ msgstr "ID pagină este setat, dar pagina nu există"
10271
+
10272
+ #~ msgid "The GeoIP database from MaxMind is used to geolocate customers."
10273
+ #~ msgstr ""
10274
+ #~ "Baza de date GeoIP de la MaxMind este folosită pentru geo-localizarea "
10275
+ #~ "clienților."
10276
+
10277
+ #~ msgid "MaxMind GeoIP database."
10278
+ #~ msgstr "Bază de date MaxMind GeoIP."
10279
+
10280
+ #~ msgid ""
10281
+ #~ "Your server does not support the %s function - this is required to use "
10282
+ #~ "the GeoIP database from MaxMind."
10283
+ #~ msgstr ""
10284
+ #~ "Serverul tău nu suportă funcția %s - acest lucru este necesar pentru a "
10285
+ #~ "utiliza baza de date GeoIP de la MaxMind."
10286
+
10287
+ #~ msgid "WordPress requirements"
10288
+ #~ msgstr "Cerințe WordPress"
10289
+
10290
+ #~ msgid "The version of cURL installed on your server."
10291
+ #~ msgstr "Versiunea cURL instalată pe server tău."
10292
+
10293
+ #~ msgid "cURL version."
10294
+ #~ msgstr "Versiune cURL."
10295
+
10296
+ #~ msgid "Displays whether or not WP Cron Jobs are enabled."
10297
+ #~ msgstr "Afișează dacă sarcinile planificate WP sunt sau nu sunt activate."
10298
+
10299
+ #~ msgid ""
10300
+ #~ "The secret key is used to generate a hash of the delivered webhook and "
10301
+ #~ "provided in the request headers."
10302
+ #~ msgstr ""
10303
+ #~ "Cheia secretă este folosită pentru a genera un hash pentru cârligul web "
10304
+ #~ "livrat și furnizat în anteturile cererii."
10305
+
10306
+ #~ msgid ""
10307
+ #~ "Postcode for this rule. Semi-colon (;) separate multiple values. Leave "
10308
+ #~ "blank to apply to all areas. Wildcards (*) and ranges for numeric "
10309
+ #~ "postcodes (e.g. 12345...12350) can also be used."
10310
+ #~ msgstr ""
10311
+ #~ "Cod poștal pentru această regulă. Punct și virgulă (;) separă mai multe "
10312
+ #~ "valori. Lasă necompletat ca să se aplice tuturor zonelor. Metacaracterele "
10313
+ #~ "(*) și intervalele de coduri poștale numerice (de exemplu, 12345...12350) "
10314
+ #~ "pot fi, de asemenea, folosite."
10315
+
10316
+ #~ msgid "List 1 postcode per line"
10317
+ #~ msgstr "Listează 1 cod poștal per linie"
10318
+
10319
+ #~ msgid "Limit to specific ZIP/postcodes"
10320
+ #~ msgstr "Limitează la ZIP/coduri poștale specifice"
10321
+
10322
+ #~ msgid "Select regions within this zone"
10323
+ #~ msgstr "Selectează regiunile din această zonă"
10324
+
10325
+ #~ msgid ""
10326
+ #~ "Add as many zones as you need &ndash; customers will only see the methods "
10327
+ #~ "available for their address."
10328
+ #~ msgstr ""
10329
+ #~ "Adaugă cât de multe zone dorești & ndash; clienții vor vedea numai "
10330
+ #~ "metodele disponibile pentru adresa lor."
10331
+
10332
+ #~ msgid "Europe zone = Any country in Europe = Flat rate shipping"
10333
+ #~ msgstr "Zona Europa = Orice țară din Europa = Livrare forfetară"
10334
+
10335
+ #~ msgid "US domestic zone = All US states = Flat rate shipping"
10336
+ #~ msgstr "Zona internă SUA = Toate statele din SUA = Livrare forfetară"
10337
+
10338
+ #~ msgid "Local zone = California ZIP 90210 = Local pickup"
10339
+ #~ msgstr "Zonă locală = California ZIP 90210 = Preluare locală"
10340
+
10341
+ #~ msgid "For example:"
10342
+ #~ msgstr "De exemplu:"
10343
+
10344
+ #~ msgid "Add shipping zone"
10345
+ #~ msgstr "Adaugă zonă de livrare"
10346
+
10347
+ #~ msgid "Region(s)"
10348
+ #~ msgstr "Regiune(i)"
10349
+
10350
+ #~ msgid "Zone name"
10351
+ #~ msgstr "Nume zonă"
10352
+
10353
+ #~ msgid ""
10354
+ #~ "Drag and drop to re-order your custom zones. This is the order in which "
10355
+ #~ "they will be matched against the customer address."
10356
+ #~ msgstr ""
10357
+ #~ "Trage și plasează pentru a-ți reordona zonele personalizate. Aceasta este "
10358
+ #~ "ordinea în care ele vor fi potrivite cu adresa clientului."
10359
+
10360
+ #~ msgid ""
10361
+ #~ "A shipping zone is a geographic region where a certain set of shipping "
10362
+ #~ "methods and rates apply."
10363
+ #~ msgstr ""
10364
+ #~ "O zonă de livrare este o regiune geografică în care se aplică un anumit "
10365
+ #~ "set de metode de livrare și rate."
10366
+
10367
+ #~ msgid "Close modal panel"
10368
+ #~ msgstr "Închide panoul modal"
10369
+
10370
+ #~ msgid ""
10371
+ #~ "You can add multiple shipping methods within this zone. Only customers "
10372
+ #~ "within the zone will see them."
10373
+ #~ msgstr ""
10374
+ #~ "Poți adăuga mai multe metode de livrare în cadrul acestei zone. Numai "
10375
+ #~ "clienții din zona le vor vedea."
10376
+
10377
+ #~ msgid "Add shipping method"
10378
+ #~ msgstr "Adaugă metodă de livrare"
10379
+
10380
+ #~ msgid ""
10381
+ #~ "The following shipping methods apply to customers with shipping addresses "
10382
+ #~ "within this zone."
10383
+ #~ msgstr ""
10384
+ #~ "Următoarele metode de livrare se aplică clienților cu adrese de livrare "
10385
+ #~ "în cadrul acestei zone."
10386
+
10387
+ #~ msgid "Description for your reference"
10388
+ #~ msgstr "Descriere pentru referința ta"
10389
+
10390
+ #~ msgid "Cancel changes"
10391
+ #~ msgstr "Anulează modificările"
10392
+
10393
+ #~ msgid "Shipping class name"
10394
+ #~ msgstr "Nume clasă de livrare"
10395
+
10396
+ #~ msgid "No shipping classes have been created."
10397
+ #~ msgstr "Nicio clasă de livrare nu a fost creată."
10398
+
10399
+ #~ msgid "Add shipping class"
10400
+ #~ msgstr "Adaugă clasă de livrare"
10401
+
10402
+ #~ msgid "Save shipping classes"
10403
+ #~ msgstr "Salvează clase de livrare"
10404
+
10405
+ #~ msgid ""
10406
+ #~ "Shipping classes can be used to group products of similar type and can be "
10407
+ #~ "used by some Shipping Methods (such as \"Flat rate shipping\") to provide "
10408
+ #~ "different rates to different classes of product."
10409
+ #~ msgstr ""
10410
+ #~ "Clasele de livrare pot fi folosite pentru a grupa produsele de tipuri "
10411
+ #~ "similare și pot fi folosite de unele metode de livrare (precum livrare "
10412
+ #~ "forfetară) pentru a oferi rate diferite pentru clase diferite de produse."
10413
+
10414
+ #~ msgid "Product count"
10415
+ #~ msgstr "Număr de produse"
10416
+
10417
+ #~ msgid "Edit failed. Please try again."
10418
+ #~ msgstr "Editarea a eșuat. Te rog încearcă din nou."
10419
+
10420
+ #~ msgid "This shipping method does not have any settings to configure."
10421
+ #~ msgstr "Această metodă de livrare nu are nici o setare pentru configurare."
10422
+
10423
+ #~ msgid "Shipping method could not be added. Please retry."
10424
+ #~ msgstr "Metoda de livrare nu a putut fi adăugată. Te rog reîncearcă."
10425
+
10426
+ #~ msgid "Your changes were not saved. Please retry."
10427
+ #~ msgstr "Modificările tale nu au fost salvate. Te rog reîncearcă."
10428
+
10429
+ #~ msgid ""
10430
+ #~ "Do you wish to save your changes first? Your changed data will be "
10431
+ #~ "discarded if you choose to cancel."
10432
+ #~ msgstr ""
10433
+ #~ "Vrei să salvezi modificările mai întâi? Datele tale modificate vor fi "
10434
+ #~ "ignorate dacă alegi să anulezi."
10435
+
10436
+ #~ msgid "Zone does not exist!"
10437
+ #~ msgstr "Zona nu există!"
10438
+
10439
+ #~ msgid "Force shipping to the customer billing address"
10440
+ #~ msgstr "Forțează livrarea la adresa de facturare client"
10441
+
10442
+ #~ msgid "Default to customer billing address"
10443
+ #~ msgstr "Implicit pentru adresă de facturare client"
10444
+
10445
+ #~ msgid "Default to customer shipping address"
10446
+ #~ msgstr "Implicit pentru adresă de livrare client"
10447
+
10448
+ #~ msgid "Calculations"
10449
+ #~ msgstr "Calcule"
10450
+
10451
+ #~ msgid "Show subcategories &amp; products"
10452
+ #~ msgstr "Arată subcategorii și produse"
10453
+
10454
+ #~ msgid "Show categories &amp; products"
10455
+ #~ msgstr "Arată categorii și produse"
10456
+
10457
+ #~ msgid "Show categories"
10458
+ #~ msgstr "Arată categorii"
10459
+
10460
+ #~ msgid "No location by default"
10461
+ #~ msgstr "Nicio locație implicită"
10462
+
10463
+ #~ msgid ""
10464
+ #~ "This option determines a customers default location. The MaxMind GeoLite "
10465
+ #~ "Database will be periodically downloaded to your wp-content directory if "
10466
+ #~ "using geolocation."
10467
+ #~ msgstr ""
10468
+ #~ "Această opțiune determină o locație clienți implicită. Baza de date "
10469
+ #~ "GeoLite MaxMind va fi descărcată periodic în directorul wp-content dacă "
10470
+ #~ "folosești geo-localizarea."
10471
+
10472
+ #~ msgid "Default customer location"
10473
+ #~ msgstr "Locație client implicită"
10474
+
10475
+ #~ msgid "Ship to specific countries"
10476
+ #~ msgstr "Livrează în anumite țări"
10477
+
10478
+ #~ msgid "Disable shipping &amp; shipping calculations"
10479
+ #~ msgstr "Dezactivează livrare și calcule de livrare"
10480
+
10481
+ #~ msgid "Shipping location(s)"
10482
+ #~ msgstr "Locație(i) de livrare"
10483
+
10484
+ #~ msgid "Sell to specific countries"
10485
+ #~ msgstr "Vinde în anumite țări"
10486
+
10487
+ #~ msgid "Sell to all countries, except for&hellip;"
10488
+ #~ msgstr "Vinde în toate țările, cu excepția&hellip;"
10489
+
10490
+ #~ msgid "Endpoint for the setting a default payment method page."
10491
+ #~ msgstr "Punct-final pentru setarea unei pagini metodă de plată implicită."
10492
+
10493
+ #~ msgid "Set default payment method"
10494
+ #~ msgstr "Setează metoda de plată implicită"
10495
+
10496
+ #~ msgid "Endpoint for the delete payment method page."
10497
+ #~ msgstr "Punct-final pentru ștergerea paginii metodă de plată."
10498
+
10499
+ #~ msgid "Delete payment method"
10500
+ #~ msgstr "Șterge metoda de plată"
10501
+
10502
+ #~ msgid "Endpoint for the \"My account &rarr; Payment methods\" page."
10503
+ #~ msgstr "Punct-final pentru pagina \"Contul meu &rarr; Metode de plată\"."
10504
+
10505
+ #~ msgid "Payment methods"
10506
+ #~ msgstr "Metode de plată"
10507
+
10508
+ #~ msgid "Note: the refund reason will be visible by the customer."
10509
+ #~ msgstr "Notă: motivul rambursării va fi vizibil pentru client."
10510
+
10511
+ #~ msgid "This order is no longer editable."
10512
+ #~ msgstr "Această comandă nu mai este editabilă."
10513
+
10514
+ #~ msgid "Add item(s)"
10515
+ #~ msgstr "Adaugă element(e)"
10516
+
10517
+ #~ msgid "Edit item"
10518
+ #~ msgstr "Editează elementul"
10519
+
10520
+ #~ msgid "Pre-discount:"
10521
+ #~ msgstr "Pre-discount:"
10522
+
10523
+ #~ msgid "Customer download link"
10524
+ #~ msgstr "Legătură descărcare client"
10525
+
10526
+ #~ msgid "Stock quantity"
10527
+ #~ msgstr "Cantitate în stoc"
10528
+
10529
+ #~ msgid "Tax status"
10530
+ #~ msgstr "Stare taxă"
10531
+
10532
+ #~ msgid "A simple offline gateway that lets you accept cash on delivery."
10533
+ #~ msgstr ""
10534
+ #~ "Un gateway offline simplu care îți permite să accepți bani numerar la "
10535
+ #~ "livrare."
10536
+
10537
+ #~ msgid "A simple offline gateway that lets you accept BACS payment."
10538
+ #~ msgstr "Un gateway offline simplu care îți permite să accepți plata BACS."
10539
+
10540
+ #~ msgid ""
10541
+ #~ "A simple offline gateway that lets you accept a check as method of "
10542
+ #~ "payment."
10543
+ #~ msgstr ""
10544
+ #~ "Un gateway offline simplu care îți permite să accepți un cec ca metodă de "
10545
+ #~ "plată."
10546
+
10547
+ #~ msgctxt "Check payment method"
10548
+ #~ msgid "Check payments"
10549
+ #~ msgstr "Verifică plăți"
10550
+
10551
+ #~ msgid "Accept payments via PayPal using account balance or credit card."
10552
+ #~ msgstr ""
10553
+ #~ "Acceptă plăți prin PayPal folosind soldul contului sau card de credit."
10554
+
10555
+ #~ msgid "Ready to start selling something awesome?"
10556
+ #~ msgstr "Ești pregătit să vinzi ceva minunat?"
10557
+
10558
+ #~ msgid "Learn more about coupons"
10559
+ #~ msgstr "Află mai multe despre cupoane"
10560
+
10561
+ #~ msgid ""
10562
+ #~ "Coupons are a great way to offer discounts and rewards to your customers. "
10563
+ #~ "They will appear here once created."
10564
+ #~ msgstr ""
10565
+ #~ "Cupoane sunt o modalitate foarte bună de a oferi discounturi și "
10566
+ #~ "recompense clienților tăi. Ele vor apărea aici odată create."
10567
+
10568
+ #~ msgid "Learn more about orders"
10569
+ #~ msgstr "Află mai multe despre comenzi"
10570
+
10571
+ #~ msgid "When you receive a new order, it will appear here."
10572
+ #~ msgstr "Când primești o comandă, va apare aici."
10573
+
10574
+ #~ msgid "Community forum"
10575
+ #~ msgstr "Forum comunitate"
10576
+
10577
+ #~ msgid ""
10578
+ #~ "For further assistance with WooCommerce core you can use the <a href="
10579
+ #~ "\"%1$s\">community forum</a>. If you need help with premium extensions "
10580
+ #~ "sold by WooCommerce, please <a href=\"%2$s\">use our helpdesk</a>."
10581
+ #~ msgstr ""
10582
+ #~ "Pentru asistență suplimentară cu nucleul WooCommerce poți folosi <a href="
10583
+ #~ "\"%1$s\">forumul pentru comunitate</a>. Dacă ai nevoie de ajutor pentru "
10584
+ #~ "suplimentele premium vândute de WooThemes, te rog <a href=\"%2$s"
10585
+ #~ "\">folosește biroul nostru de asistență</a>."
10586
+
10587
+ #~ msgid "Help &amp; Support"
10588
+ #~ msgstr "Ajutor și suport"
10589
+
10590
+ #~ msgid "Bank transfer (BACS) payments"
10591
+ #~ msgstr "Plăți prin transfer bancar (BACS)"
10592
+
10593
+ #~ msgid ""
10594
+ #~ "Are you sure you wish to delete this note? This action cannot be undone."
10595
+ #~ msgstr ""
10596
+ #~ "Sigur vrei să ștergi această notă? Această acțiune nu poate fi anulată."
10597
+
10598
+ #~ msgid "Items"
10599
+ #~ msgstr "Elemente"
10600
+
10601
+ #~ msgid "Limit result set to resources with a specific slug."
10602
+ #~ msgstr "Limitează setul de rezultate la resurse cu un anumit descriptor."
10603
+
10604
+ #~ msgid "Limit result set to resources assigned to a specific product."
10605
+ #~ msgstr ""
10606
+ #~ "Limitează setul de rezultate la resurse atribuite unui anumit produs."
10607
+
10608
+ #~ msgid "Limit result set to resources assigned to a specific parent."
10609
+ #~ msgstr ""
10610
+ #~ "Limitează setul de rezultate la resurse atribuite unui anumit părinte."
10611
+
10612
+ #~ msgid "Whether to hide resources not assigned to any products."
10613
+ #~ msgstr "Fie pentru a ascunde resursele neatribuite niciunui produs."
10614
+
10615
+ #~ msgid "Sort collection by resource attribute."
10616
+ #~ msgstr "Sortează colecția după atribut resursă."
10617
+
10618
+ #~ msgid "The resource cannot be deleted."
10619
+ #~ msgstr "Resursa nu poate fi ștearsă."
10620
+
10621
+ #~ msgid "Resource does not support trashing."
10622
+ #~ msgstr "Resursa nu suportă aruncarea la gunoi."
10623
+
10624
+ #~ msgid "Can not set resource parent, taxonomy is not hierarchical."
10625
+ #~ msgstr "Nu pot seta părinte resursă, taxonomia nu este ierarhică."
10626
+
10627
+ #~ msgid "Resource does not exist."
10628
+ #~ msgstr "Resursa nu există."
10629
+
10630
+ #~ msgid "Taxonomy does not exist."
10631
+ #~ msgstr "Taxonomia nu există."
10632
+
10633
+ #~ msgid "Sorry, you cannot delete this resource."
10634
+ #~ msgstr "Regret, nu poți șterge această resursă."
10635
+
10636
+ #~ msgid "Sorry, you cannot update resource."
10637
+ #~ msgstr "Regret, nu poți actualiza resursa."
10638
+
10639
+ #~ msgid "Sorry, you cannot create new resource."
10640
+ #~ msgstr "Regret, nu poți crea o resursă nouă."
10641
+
10642
+ #~ msgid "Required to be true, as resource does not support trashing."
10643
+ #~ msgstr ""
10644
+ #~ "Este necesar ca să fie adevărat, deoarece resursa nu suportă aruncarea la "
10645
+ #~ "gunoi."
10646
+
10647
+ #~ msgid ""
10648
+ #~ "Use WP Query arguments to modify the response; private query vars require "
10649
+ #~ "appropriate authorization."
10650
+ #~ msgstr ""
10651
+ #~ "Folosește argumente WP Query pentru a modifica răspunsul; variabilele de "
10652
+ #~ "interogare privată necesită autorizare corespunzătoare."
10653
+
10654
+ #~ msgid ""
10655
+ #~ "Limit result set to all items except those of a particular parent ID."
10656
+ #~ msgstr ""
10657
+ #~ "Limitează setul de rezultate la toate elementele cu excepția celor cu un "
10658
+ #~ "anumit ID părinte."
10659
+
10660
+ #~ msgid "Limit result set to those of particular parent IDs."
10661
+ #~ msgstr "Limitează setul de rezultate la cele cu anumite ID-uri părinte."
10662
+
10663
+ #~ msgid "Sort collection by object attribute."
10664
+ #~ msgstr "Sortează colecția după atribut obiect."
10665
+
10666
+ #~ msgid "Order sort attribute ascending or descending."
10667
+ #~ msgstr "Ordonează sortarea atributelor ascendent sau descendent."
10668
+
10669
+ #~ msgid "Offset the result set by a specific number of items."
10670
+ #~ msgstr "Compensează setul de rezultate după un anumit număr de elemente."
10671
+
10672
+ #~ msgid "Limit result set to specific ids."
10673
+ #~ msgstr "Limitează setul de rezultate la anumite ID-uri."
10674
+
10675
+ #~ msgid "Ensure result set excludes specific ids."
10676
+ #~ msgstr "Asigură-te că setul de rezultate exclude ID-urile specifice."
10677
+
10678
+ #~ msgid ""
10679
+ #~ "Limit response to resources published before a given ISO8601 compliant "
10680
+ #~ "date."
10681
+ #~ msgstr ""
10682
+ #~ "Limitează răspunsul pentru resursele publicate înainte de o anumită dată "
10683
+ #~ "conformă cu ISO 8601."
10684
+
10685
+ #~ msgid ""
10686
+ #~ "Limit response to resources published after a given ISO8601 compliant "
10687
+ #~ "date."
10688
+ #~ msgstr ""
10689
+ #~ "Limitează răspunsul pentru resursele publicate după o anumită dată "
10690
+ #~ "conformă cu ISO 8601."
10691
+
10692
+ #~ msgid "The %s cannot be deleted."
10693
+ #~ msgstr "%s nu poate fi șters."
10694
+
10695
+ #~ msgid "The %s has already been deleted."
10696
+ #~ msgstr "%s a fost deja ștearsă."
10697
+
10698
+ #~ msgid "The %s does not support trashing."
10699
+ #~ msgstr "%s nu suportă aruncarea la gunoi."
10700
+
10701
+ #~ msgid "Sorry, you are not allowed to delete %s."
10702
+ #~ msgstr "Regret, nu ai dreptul de a șterge %s."
10703
+
10704
+ #~ msgid "Invalid post ID."
10705
+ #~ msgstr "ID articol invalid."
10706
+
10707
+ #~ msgid "ID is invalid."
10708
+ #~ msgstr "ID-ul este invalid."
10709
+
10710
+ #~ msgid "Cannot create existing %s."
10711
+ #~ msgstr "Nu pot crea %s existentă."
10712
+
10713
+ #~ msgid "Invalid ID."
10714
+ #~ msgstr "ID invalid."
10715
+
10716
+ #~ msgid "Sorry, you are not allowed to batch manipulate this resource."
10717
+ #~ msgstr "Regret, nu ai voie să manipulezi această resursă."
10718
+
10719
+ #~ msgid "Sorry, you are not allowed to delete this resource."
10720
+ #~ msgstr "Regret, nu ai dreptul de a șterge această resursă."
10721
+
10722
+ #~ msgid "Sorry, you are not allowed to edit this resource."
10723
+ #~ msgstr "Regret, nu ai dreptul de a edita această resursă."
10724
+
10725
+ #~ msgid "Sorry, you cannot view this resource."
10726
+ #~ msgstr "Regret, nu poți vedea această resursă."
10727
+
10728
+ #~ msgid "Sorry, you are not allowed to create resources."
10729
+ #~ msgstr "Regret, nu ai dreptul de a crea resurse."
10730
+
10731
+ #~ msgid "Sorry, you cannot list resources."
10732
+ #~ msgstr "Regret, nu poți lista resursele."
10733
+
10734
+ #~ msgid "List of delete resources."
10735
+ #~ msgstr "Lista resurselor șterse."
10736
+
10737
+ #~ msgid "List of updated resources."
10738
+ #~ msgstr "Lista resurselor actualizate."
10739
+
10740
+ #~ msgid "List of created resources."
10741
+ #~ msgstr "Lista resurselor create."
10742
+
10743
+ #~ msgid "Unable to accept more than %s items for this request."
10744
+ #~ msgstr ""
10745
+ #~ "Nu se pot accepta mai mult de %s elemente pentru această solicitare."
10746
+
10747
+ #~ msgid "Save to account"
10748
+ #~ msgstr "Salvează în cont"
10749
+
10750
+ #~ msgctxt "Canadian Tax Rates"
10751
+ #~ msgid "GST"
10752
+ #~ msgstr "GST"
10753
+
10754
+ #~ msgctxt "Canadian Tax Rates"
10755
+ #~ msgid "HST"
10756
+ #~ msgstr "HST"
10757
+
10758
+ #~ msgctxt "Canadian Tax Rates"
10759
+ #~ msgid "QST"
10760
+ #~ msgstr "QST"
10761
+
10762
+ #~ msgctxt "Canadian Tax Rates"
10763
+ #~ msgid "PST"
10764
+ #~ msgstr "PST"
10765
+
10766
+ #~ msgid "Samoa"
10767
+ #~ msgstr "Samoa"
10768
+
10769
+ #~ msgid "United States (US) Virgin Islands"
10770
+ #~ msgstr "Insulele Virgine Americane"
10771
+
10772
+ #~ msgid "United States (US) Minor Outlying Islands"
10773
+ #~ msgstr "Insulele Minore Îndepărtate ale Statelor Unite"
10774
+
10775
+ #~ msgid "South America"
10776
+ #~ msgstr "America de Sud"
10777
+
10778
+ #~ msgid "Oceania"
10779
+ #~ msgstr "Oceania"
10780
+
10781
+ #~ msgid "North America"
10782
+ #~ msgstr "America de Nord"
10783
+
10784
+ #~ msgid "Europe"
10785
+ #~ msgstr "Europa"
10786
+
10787
+ #~ msgid "Asia"
10788
+ #~ msgstr "Asia"
10789
+
10790
+ #~ msgid "Africa"
10791
+ #~ msgstr "Africa"
10792
+
10793
+ #~ msgid "Copying to clipboard failed. Please press Ctrl/Cmd+C to copy."
10794
+ #~ msgstr ""
10795
+ #~ "Copierea în clipboard a eșuat. Te rog sa apeși Ctrl/Cmd+C pentru a copia."
10796
+
10797
+ #~ msgid "Saudi riyal"
10798
+ #~ msgstr "Rial saudit"
10799
+
10800
+ #~ msgid "Please enter a stronger password."
10801
+ #~ msgstr "Te rog introdu o parolă puternică."
10802
+
10803
+ #~ msgid "Payment for order %s refunded"
10804
+ #~ msgstr "Plata pentru comanda %s a fost rambursată"
10805
+
10806
+ #~ msgid ""
10807
+ #~ "Cancelled order emails are sent to chosen recipient(s) when orders have "
10808
+ #~ "been marked cancelled (if they were previously processing or on-hold)."
10809
+ #~ msgstr ""
10810
+ #~ "Emailuri de anulare a comenzii sunt trimise către anumiți destinatari "
10811
+ #~ "când comenzile au fost marcate ca anulate (dacă au fost procesare "
10812
+ #~ "anterior sau în așteptare)."
10813
+
10814
+ #~ msgid "Be the first to review &ldquo;%s&rdquo;"
10815
+ #~ msgstr "Fii primul care adaugi o recenzie la &bdquo;%s&rdquo;"
10816
+
10817
+ #~ msgid "Clear"
10818
+ #~ msgstr "Golește"
10819
+
10820
+ #~ msgid ""
10821
+ #~ "Unfortunately your order cannot be processed as the originating bank/"
10822
+ #~ "merchant has declined your transaction. Please attempt your purchase "
10823
+ #~ "again."
10824
+ #~ msgstr ""
10825
+ #~ "Din păcate comanda nu poate fi procesată deoarece banca de origine/"
10826
+ #~ "comerciantul a refuzat tranzacția ta. Te rog încearcă din nou să faci "
10827
+ #~ "cumpărătura."
10828
+
10829
+ #~ msgid "Hide empty categories"
10830
+ #~ msgstr "Ascunde categoriile goale"
10831
+
10832
+ #~ msgid "Pakistani rupee"
10833
+ #~ msgstr "Rupie pakistaneză"
10834
+
10835
+ #~ msgid "Kenyan shilling"
10836
+ #~ msgstr "Șiling kenyan"
10837
+
10838
+ #~ msgid "(includes %s)"
10839
+ #~ msgstr "(include %s)"
10840
+
10841
+ #~ msgid "estimated for %s"
10842
+ #~ msgstr "estimat pentru %s"
10843
+
10844
+ #~ msgid "Invalid product ID."
10845
+ #~ msgstr "ID produs invalid"
10846
+
10847
+ #~ msgid "Error: Delivery URL returned response code: %s"
10848
+ #~ msgstr "Eroare: URL-ul livrare a returnat codul: %s"
10849
+
10850
+ #~ msgid "Error: Delivery URL cannot be reached: %s"
10851
+ #~ msgstr "Eroare: URL-ul livrare nu poate fi accesat: %s"
10852
+
10853
+ #~ msgid ""
10854
+ #~ "WooCommerce data update complete. Thank you for updating to the latest "
10855
+ #~ "version!"
10856
+ #~ msgstr ""
10857
+ #~ "Actualizarea datelor WooCommerce a fost finalizată. Iți mulțumim pentru "
10858
+ #~ "actualizarea la ultima versiune!"
10859
+
10860
+ #~ msgid ""
10861
+ #~ "Please select some product options before adding this product to your "
10862
+ #~ "cart."
10863
+ #~ msgstr ""
10864
+ #~ "Te rog selectează câteva opțiuni pentru produs înainte de a-l adăuga în "
10865
+ #~ "coșul tău."
10866
+
10867
+ #~ msgid "ZIP"
10868
+ #~ msgstr "ZIP"
10869
+
10870
+ #~ msgid "State / Zone"
10871
+ #~ msgstr "Țara / Zona"
10872
+
10873
+ #~ msgid "You do not have permission to read the tax classes count"
10874
+ #~ msgstr "Nu ai permisiunea să citești numărul claselor de impozitare"
10875
+
10876
+ #~ msgid "Could not delete the tax class"
10877
+ #~ msgstr "N-am putut șterge clasa de impozitare"
10878
+
10879
+ #~ msgid "You do not have permission to delete tax classes"
10880
+ #~ msgstr "Nu ai permisiunea să ștergi clasele de impozitare"
10881
+
10882
+ #~ msgid "Tax class already exists"
10883
+ #~ msgstr "Clasa de impozitare deja există"
10884
+
10885
+ #~ msgid "You do not have permission to create tax classes"
10886
+ #~ msgstr "Nu ai permisiunea să creezi clase de impozitare"
10887
+
10888
+ #~ msgid "Standard rate"
10889
+ #~ msgstr "Rată standard"
10890
+
10891
+ #~ msgid "You do not have permission to read tax classes"
10892
+ #~ msgstr "Nu ai permisiunea să citești clasele de impozitare"
10893
+
10894
+ #~ msgid "You do not have permission to read the taxes count"
10895
+ #~ msgstr "Nu ai permisiunea să citești numărul taxelor"
10896
+
10897
+ #~ msgid "Could not delete the tax rate"
10898
+ #~ msgstr "Nu s-a putut șterge rata de impozitare"
10899
+
10900
+ #~ msgid "You do not have permission to delete tax rates"
10901
+ #~ msgstr "Nu ai permisiunea să ștergi cotele de impozitare"
10902
+
10903
+ #~ msgid "You do not have permission to edit tax rates"
10904
+ #~ msgstr "Nu ai permisiunea să editezi cotele de impozitare"
10905
+
10906
+ #~ msgid "You do not have permission to create tax rates"
10907
+ #~ msgstr "Nu ai permisiunea să creezi cote de impozitare"
10908
+
10909
+ #~ msgid "A tax rate with the provided ID could not be found"
10910
+ #~ msgstr "Nu s-a putut găsi o rată de impozitare cu ID-ul oferit"
10911
+
10912
+ #~ msgid "You do not have permission to read tax rate"
10913
+ #~ msgstr "Nu ai permisiunea să citești rata de impozitare"
10914
+
10915
+ #~ msgid "Could not delete the shipping class"
10916
+ #~ msgstr "Nu s-a putut șterge clasa de livrare"
10917
+
10918
+ #~ msgid "You do not have permission to delete product shipping classes"
10919
+ #~ msgstr "Nu ai permisiunea să stergi clasele de livrare ale produsului"
10920
+
10921
+ #~ msgid "Could not edit the shipping class"
10922
+ #~ msgstr "Nu s-a putut edita clasa de livrare"
10923
+
10924
+ #~ msgid "You do not have permission to edit product shipping classes"
10925
+ #~ msgstr "Nu ai permisiunea să editezi clasele de livrare ale produsului"
10926
+
10927
+ #~ msgid "Product shipping class parent is invalid"
10928
+ #~ msgstr "Clasa părinte de livrare a produsului este invalidă"
10929
+
10930
+ #~ msgid "You do not have permission to create product shipping classes"
10931
+ #~ msgstr "Nu ai permisiunea să creezi clase de livrare ale produsului"
10932
+
10933
+ #~ msgid "A product shipping class with the provided ID could not be found"
10934
+ #~ msgstr "Nu s-a putut găsi o clasă de livrare a produsului cu ID-ul furnizat"
10935
+
10936
+ #~ msgid "Invalid product shipping class ID"
10937
+ #~ msgstr "ID-ul clasei de livrare al produsului este invalid"
10938
+
10939
+ #~ msgid "You do not have permission to read product shipping classes"
10940
+ #~ msgstr "Nu ai permisiunea să citești clasele de livrare ale produsului"
10941
+
10942
+ #~ msgid "You do not have permission to delete product attribute terms"
10943
+ #~ msgstr "Nu ai permisiunea să ștergi termenii atributului de produs"
10944
+
10945
+ #~ msgid "A product attribute term with the provided ID could not be found"
10946
+ #~ msgstr ""
10947
+ #~ "Un termen al atributului de produs cu ID-ul oferit nu a putut fi găsit"
10948
+
10949
+ #~ msgid "You do not have permission to read product attribute terms"
10950
+ #~ msgstr "Nu ai permisiunea să citești termenii atributului de produs"
10951
+
10952
+ #~ msgid "Could not delete the tag"
10953
+ #~ msgstr "Eticheta nu s-a putut șterge"
10954
+
10955
+ #~ msgid "You do not have permission to delete product tag"
10956
+ #~ msgstr "Nu ai permisiunea să ștergi eticheta de produs"
10957
+
10958
+ #~ msgid "Could not edit the tag"
10959
+ #~ msgstr "Eticheta nu s-a putut edita"
10960
+
10961
+ #~ msgid "You do not have permission to edit product tags"
10962
+ #~ msgstr "Nu ai permisiunea să editezi etichetele de produs"
10963
+
10964
+ #~ msgid "You do not have permission to create product tags"
10965
+ #~ msgstr "Nu ai permisiunea să creezi etichete de produs"
10966
+
10967
+ #~ msgid "A product tag with the provided ID could not be found"
10968
+ #~ msgstr "Nu s-a găsit nicio etichetă de produs cu ID-ul dat"
10969
+
10970
+ #~ msgid "Invalid product tag ID"
10971
+ #~ msgstr "ID etichetă de produs invalid"
10972
+
10973
+ #~ msgid "You do not have permission to read product tags"
10974
+ #~ msgstr "Nu ai permisiunea să citești etichete de produs"
10975
+
10976
+ #~ msgid "Could not delete the category"
10977
+ #~ msgstr "Categoria nu s-a putut șterge"
10978
+
10979
+ #~ msgid "You do not have permission to delete product category"
10980
+ #~ msgstr "Nu ai permisiunea să ștergi o categorie de produs"
10981
+
10982
+ #~ msgid "Could not edit the category"
10983
+ #~ msgstr "Categoria nu s-a putut edita"
10984
+
10985
+ #~ msgid "You do not have permission to edit product categories"
10986
+ #~ msgstr "Nu ai permisiunea să editezi o categorie de produs"
10987
+
10988
+ #~ msgid "Product category parent is invalid"
10989
+ #~ msgstr "Categoria părintele produse este invalidă"
10990
+
10991
+ #~ msgid "You do not have permission to create product categories"
10992
+ #~ msgstr "Nu ai permisiunea de a crea categorii produse"
10993
+
10994
+ #~ msgid ""
10995
+ #~ "Your server does not support the %s functions - this is required for "
10996
+ #~ "better character encoding. Some fallbacks will be used instead for it."
10997
+ #~ msgstr ""
10998
+ #~ "Serverul tău nu suportă funcțiile %s - acest lucru este necesar pentru "
10999
+ #~ "codificarea mai bună a caracterelor. Unele rezerve vor fi folosite în "
11000
+ #~ "locul lor."
11001
+
11002
+ #~ msgid ""
11003
+ #~ "Multibyte String (mbstring) is used to convert character encoding, like "
11004
+ #~ "for emails or converting characters to lowercase."
11005
+ #~ msgstr ""
11006
+ #~ "Multibyte String (mbstring) este folosit pentru a converti codificarea "
11007
+ #~ "caracterelor, cum ar fi pentru emailuri sau convertirea caracterelor în "
11008
+ #~ "minuscule."
11009
+
11010
+ #~ msgid ""
11011
+ #~ "Your server does not have the %s class enabled - some gateway plugins "
11012
+ #~ "which use SOAP may not work as expected."
11013
+ #~ msgstr ""
11014
+ #~ "Serverul tău nu are clasa %s activată - unele module gateway ce folosesc "
11015
+ #~ "SOAP s-ar putea să nu funcționeze conform așteptărilor."
11016
+
11017
+ #~ msgid "How to update your PHP version"
11018
+ #~ msgstr "Cum să-ți actualizezi versiunea de PHP"
11019
+
11020
+ #~ msgid "%1$s - We recommend a minimum MySQL version of 5.6. See: %2$s"
11021
+ #~ msgstr ""
11022
+ #~ "%1$s - Versiunea minimă recomandată pentru MySQL este 5.6. Vezi: %2$s"
11023
+
11024
+ #~ msgid "Increasing memory allocated to PHP"
11025
+ #~ msgstr "Suplimentare memorie alocată pentru PHP"
11026
+
11027
+ #~ msgid "%1$s - We recommend setting memory to at least 64MB. See: %2$s"
11028
+ #~ msgstr "%1$s - Recomandăm setarea memoriei la cel puțin 64 MO. Vezi: %2$s"
11029
+
11030
+ #~ msgid "Last page"
11031
+ #~ msgstr "Ultima pagină"
11032
+
11033
+ #~ msgid "Previous page"
11034
+ #~ msgstr "Pagina anterioară"
11035
+
11036
+ #~ msgid "First page"
11037
+ #~ msgstr "Prima pagină"
11038
+
11039
+ #~ msgid "No matching tax rates found."
11040
+ #~ msgstr "Nu s-au găsit cote de impozitare care se potrivesc."
11041
+
11042
+ #~ msgid "Tax rate ID: %s"
11043
+ #~ msgstr "ID rată de impozitare: %s"
11044
+
11045
+ #~ msgid "Loading&hellip;"
11046
+ #~ msgstr "Se încarcă&hellip;"
11047
+
11048
+ #~ msgid "\"%s\" tax rates"
11049
+ #~ msgstr "Cote de impozitare „%s”"
11050
+
11051
+ #~ msgid "Search&hellip;"
11052
+ #~ msgstr "Caută&hellip;"
11053
+
11054
+ #~ msgid ""
11055
+ #~ "Your changed data will be lost if you leave this page without saving."
11056
+ #~ msgstr ""
11057
+ #~ "Datele tale modificate vor fi pierdute dacă părăsești această pagină fără "
11058
+ #~ "salvare."
11059
+
11060
+ #~ msgid "Manual"
11061
+ #~ msgstr "Manual"
11062
+
11063
+ #~ msgid "Manually sent"
11064
+ #~ msgstr "Trimitere manuală"
11065
+
11066
+ #~ msgid ""
11067
+ #~ "URL to an image you want to show in the email header. Upload images using "
11068
+ #~ "the media uploader (Admin > Media)."
11069
+ #~ msgstr ""
11070
+ #~ "URL-ul unei imagini care vrei să apară în antetul emailului. Încarcă "
11071
+ #~ "imagini folosind încărcătorul media (Administrare > Media)."
11072
+
11073
+ #~ msgid ""
11074
+ #~ "This section lets you customize the WooCommerce emails. <a href=\"%s\" "
11075
+ #~ "target=\"_blank\">Click here to preview your email template</a>."
11076
+ #~ msgstr ""
11077
+ #~ "Această secțiune îți dă voie să personalizezi emailurile WooCommerce. <a "
11078
+ #~ "href=\"%s\" target=\"_blank\">Dă clic aici pentru a-ți previzualiza "
11079
+ #~ "șablonul de email</a>."
11080
+
11081
+ #~ msgid "How the sender email appears in outgoing WooCommerce emails."
11082
+ #~ msgstr ""
11083
+ #~ "Cum apare emailul expeditorului în emailurile WooCommerce expediate."
11084
+
11085
+ #~ msgid "\"From\" address"
11086
+ #~ msgstr "Adresă \"De la\""
11087
+
11088
+ #~ msgid "How the sender name appears in outgoing WooCommerce emails."
11089
+ #~ msgstr "Cum apare numele expeditorului în emailurile WooCommerce expediate."
11090
+
11091
+ #~ msgid ""
11092
+ #~ "Email notifications sent from WooCommerce are listed below. Click on an "
11093
+ #~ "email to configure it."
11094
+ #~ msgstr ""
11095
+ #~ "Notificările prin email trimise de la WooCommerce sunt înscrise mai jos. "
11096
+ #~ "Dă clic pe un email pentru a-l configura."
11097
+
11098
+ #~ msgid "Email notifications"
11099
+ #~ msgstr "Notificări prin email"
11100
+
11101
+ #~ msgid "Average gross sales amount"
11102
+ #~ msgstr "Suma medie a vânzărilor brute"
11103
+
11104
+ #~ msgid "%s average gross monthly sales"
11105
+ #~ msgstr "Media vânzărilor lunare brute %s"
11106
+
11107
+ #~ msgid "%s average gross daily sales"
11108
+ #~ msgstr "Media vânzărilor zilnice brute %s"
11109
+
11110
+ #~ msgid "Product permalinks"
11111
+ #~ msgstr "Legături permanente produs"
11112
+
11113
+ #~ msgid ""
11114
+ #~ "If you need to access the setup wizard again, please click on the button "
11115
+ #~ "below."
11116
+ #~ msgstr ""
11117
+ #~ "Dacă e nevoie să accesezi din nou expertul de inițializare, te rog dă "
11118
+ #~ "clic pe butonul de mai jos."
11119
+
11120
+ #~ msgid "Setup wizard"
11121
+ #~ msgstr "Asistent de inițializare"
11122
+
11123
+ #~ msgid "View more Storefront child themes"
11124
+ #~ msgstr "Vezi mai multe teme copil Storefront"
11125
+
11126
+ #~ msgid "Need a fresh look? Try Storefront child themes"
11127
+ #~ msgstr ""
11128
+ #~ "Ai nevoie de un aspect proaspăt? Încearcă temele-copil ale Storefront"
11129
+
11130
+ #~ msgid "Seti"
11131
+ #~ msgstr "Seti"
11132
+
11133
+ #~ msgid "Sagarmatha"
11134
+ #~ msgstr "Sagarmatha"
11135
+
11136
+ #~ msgid "Rapti"
11137
+ #~ msgstr "Rapti"
11138
+
11139
+ #~ msgid "Narayani"
11140
+ #~ msgstr "Narayani"
11141
+
11142
+ #~ msgid "Mechi"
11143
+ #~ msgstr "Mechi"
11144
+
11145
+ #~ msgid "Mahakali"
11146
+ #~ msgstr "Mahakali"
11147
+
11148
+ #~ msgid "Lumbini"
11149
+ #~ msgstr "Lumbini"
11150
+
11151
+ #~ msgid "Koshi"
11152
+ #~ msgstr "Koshi"
11153
+
11154
+ #~ msgid "Karnali"
11155
+ #~ msgstr "Karnali"
11156
+
11157
+ #~ msgid "Janakpur"
11158
+ #~ msgstr "Janakpur"
11159
+
11160
+ #~ msgid "Gandaki"
11161
+ #~ msgstr "Gandaki"
11162
+
11163
+ #~ msgid "Bheri"
11164
+ #~ msgstr "Bheri"
11165
+
11166
+ #~ msgid "Dhaulagiri"
11167
+ #~ msgstr "Dhaulagiri"
11168
+
11169
+ #~ msgid "Penang (Pulau Pinang)"
11170
+ #~ msgstr "Penang (Pulau Pinang)"
11171
+
11172
+ #~ msgid "Malacca (Melaka)"
11173
+ #~ msgstr "Malacca (Melaka)"
11174
+
11175
+ #~ msgid "Labuan"
11176
+ #~ msgstr "Labuan"
11177
+
11178
+ #~ msgid "Bagmati"
11179
+ #~ msgstr "Bagmati"
11180
+
11181
+ #~ msgid "Kuala Lumpur"
11182
+ #~ msgstr "Kuala Lumpur"
11183
+
11184
+ #~ msgid "Putrajaya"
11185
+ #~ msgstr "Putrajaya"
11186
+
11187
+ #~ msgid "Buy now"
11188
+ #~ msgstr "Cumpără acum"
11189
+
11190
+ #~ msgctxt "shop_order post type singular name"
11191
+ #~ msgid "Order"
11192
+ #~ msgstr "Comandă"
11193
+
11194
+ #~ msgid "Monthly"
11195
+ #~ msgstr "Lunar"
11196
+
11197
+ #~ msgid "%s removed."
11198
+ #~ msgstr "%s s-a înlăturat."
11199
+
11200
+ #~ msgid ""
11201
+ #~ "Enter recipients (comma separated) that will receive this notification."
11202
+ #~ msgstr ""
11203
+ #~ "Adaugă recipienți (separați prin virgulă) care vor primi această "
11204
+ #~ "notificare."
11205
+
11206
+ #~ msgid "Drag and drop, or click to set admin variation order"
11207
+ #~ msgstr ""
11208
+ #~ "Trage și plasează sau dă clic pentru a seta ordinea de variație din "
11209
+ #~ "administrare"
11210
+
11211
+ #~ msgid ""
11212
+ #~ "Before you can add a variation you need to add some variation attributes "
11213
+ #~ "on the <strong>Attributes</strong> tab."
11214
+ #~ msgstr ""
11215
+ #~ "Înainte să poți adăuga o variație, trebuie să adaugi câteva atribute de "
11216
+ #~ "variație pe fila <strong>Atribute</strong>."
11217
+
11218
+ #~ msgid "via %s"
11219
+ #~ msgstr "prin %s"
11220
+
11221
+ #~ msgid "An eCommerce toolkit that helps you sell anything. Beautifully."
11222
+ #~ msgstr ""
11223
+ #~ "Un set de instrumente eCommerce care te ajută să vinzi orice. Minunat."
11224
+
11225
+ #~ msgid ""
11226
+ #~ "Only logged in customers who have purchased this product may leave a "
11227
+ #~ "review."
11228
+ #~ msgstr ""
11229
+ #~ "Numai clienți autentificați care au cumpărat acest produs pot scrie o "
11230
+ #~ "recenzie."
11231
+
11232
+ #~ msgid "Your review"
11233
+ #~ msgstr "Recenzia ta"
11234
+
11235
+ #~ msgid "Very poor"
11236
+ #~ msgstr "Foarte slab"
11237
+
11238
+ #~ msgid "Not that bad"
11239
+ #~ msgstr "Nu-i rău"
11240
+
11241
+ #~ msgid "Average"
11242
+ #~ msgstr "Potrivit"
11243
+
11244
+ #~ msgid "Good"
11245
+ #~ msgstr "Bun"
11246
+
11247
+ #~ msgid "Perfect"
11248
+ #~ msgstr "Perfect"
11249
+
11250
+ #~ msgid "Rate&hellip;"
11251
+ #~ msgstr "Notează&hellip;"
11252
+
11253
+ #~ msgid "Your rating"
11254
+ #~ msgstr "Evaluarea ta"
11255
+
11256
+ #~ msgid "You must be <a href=\"%s\">logged in</a> to post a review."
11257
+ #~ msgstr ""
11258
+ #~ "Trebuie să fii <a href=\"%s\">autentificat</a> pentru a publica o "
11259
+ #~ "recenzie."
11260
+
11261
+ #~ msgid "Submit"
11262
+ #~ msgstr "Trimite"
11263
+
11264
+ #~ msgid "Leave a Reply to %s"
11265
+ #~ msgstr "Lasă un răspuns pentru %s"
11266
+
11267
+ #~ msgid "Add a review"
11268
+ #~ msgstr "Adaugă un comentariu"
11269
+
11270
+ #~ msgid "There are no reviews yet."
11271
+ #~ msgstr "Nu există încă recenzii."
11272
+
11273
+ #~ msgid "You may also like&hellip;"
11274
+ #~ msgstr "Ați putea dori, de asemenea&hellip;"
11275
+
11276
+ #~ msgid "verified owner"
11277
+ #~ msgstr "proprietar verificat"
11278
+
11279
+ #~ msgid "Your review is awaiting approval"
11280
+ #~ msgstr "Recenzia ta așteaptă aprobare"
11281
+
11282
+ #~ msgid "Related products"
11283
+ #~ msgstr "Produse similare"
11284
+
11285
+ #~ msgid "%s customer review"
11286
+ #~ msgid_plural "%s customer reviews"
11287
+ #~ msgstr[0] "%s recenzie client"
11288
+ #~ msgstr[1] "%s recenzii clienți"
11289
+ #~ msgstr[2] "%s de recenzii clienți"
11290
+
11291
+ #~ msgid "Tag:"
11292
+ #~ msgid_plural "Tags:"
11293
+ #~ msgstr[0] "Etichetă:"
11294
+ #~ msgstr[1] "Etichete:"
11295
+ #~ msgstr[2] "Etichete:"
11296
+
11297
+ #~ msgid "Category:"
11298
+ #~ msgid_plural "Categories:"
11299
+ #~ msgstr[0] "Categorie:"
11300
+ #~ msgstr[1] "Categorii:"
11301
+ #~ msgstr[2] "Categorii:"
11302
+
11303
+ #~ msgid "SKU:"
11304
+ #~ msgstr "Cod Produs:"
11305
+
11306
+ #~ msgid "This product is currently out of stock and unavailable."
11307
+ #~ msgstr "Acest produs nu este prezent în stoc și este indisponibil."
11308
+
11309
+ #~ msgctxt "submit button"
11310
+ #~ msgid "Search"
11311
+ #~ msgstr "Cautare"
11312
+
11313
+ #~ msgid "Search for:"
11314
+ #~ msgstr "Caută:"
11315
+
11316
+ #~ msgid "Email:"
11317
+ #~ msgstr "Email:"
11318
+
11319
+ #~ msgid "Order again"
11320
+ #~ msgstr "Comandă din nou"
11321
+
11322
+ #~ msgid "Track"
11323
+ #~ msgstr "Urmărește"
11324
+
11325
+ #~ msgid "Email you used during checkout."
11326
+ #~ msgstr "Emailul pe care l-ai folosit în timpul finalizării."
11327
+
11328
+ #~ msgid "Billing email"
11329
+ #~ msgstr "Email facturare"
11330
+
11331
+ #~ msgid "Found in your order confirmation email."
11332
+ #~ msgstr "Se află în emailul de confirmare a comenzii."
11333
+
11334
+ #~ msgid "Order ID"
11335
+ #~ msgstr "ID comandă"
11336
+
11337
+ #~ msgid ""
11338
+ #~ "To track your order please enter your Order ID in the box below and press "
11339
+ #~ "the \"Track\" button. This was given to you on your receipt and in the "
11340
+ #~ "confirmation email you should have received."
11341
+ #~ msgstr ""
11342
+ #~ "Pentru a-ți urmări comanda, te rog introdu ID-ul comenzii tale în caseta "
11343
+ #~ "de mai jos și apasă butonul „Urmărește”. ID-ul este trecut în chitanță și "
11344
+ #~ "în emailul de confirmare pe care l-ai primit."
11345
+
11346
+ #~ msgid "l jS \\o\\f F Y, h:ia"
11347
+ #~ msgstr "l jS \\o\\f F Y, h:ia"
11348
+
11349
+ #~ msgid "Order updates"
11350
+ #~ msgstr "Actualizări comandă"
11351
+
11352
+ #~ msgid "Order number."
11353
+ #~ msgstr "Număr comandă."
11354
+
11355
+ #~ msgid "Recent orders"
11356
+ #~ msgstr "Comenzi recente"
11357
+
11358
+ #~ msgid "%s download remaining"
11359
+ #~ msgid_plural "%s downloads remaining"
11360
+ #~ msgstr[0] "%s descărcare rămasă"
11361
+ #~ msgstr[1] "%s descărcări rămase"
11362
+ #~ msgstr[2] "%s descărcări rămase"
11363
+
11364
+ #~ msgid "Available downloads"
11365
+ #~ msgstr "Descărcări disponibile"
11366
+
11367
+ #~ msgid "You have not set up this type of address yet."
11368
+ #~ msgstr "Încă nu ai setat acest tip de adresă."
11369
+
11370
+ #~ msgid ""
11371
+ #~ "The following addresses will be used on the checkout page by default."
11372
+ #~ msgstr "Următoarele adrese vor fi utilizate implicit în pagina de plată."
11373
+
11374
+ #~ msgid "IP Address"
11375
+ #~ msgstr "Adresă IP"
11376
+
11377
+ #~ msgid "Re-enter new password"
11378
+ #~ msgstr "Re-introduceti noua parolă."
11379
+
11380
+ #~ msgid "New password"
11381
+ #~ msgstr "Parola Nouă"
11382
+
11383
+ #~ msgid "Enter a new password below."
11384
+ #~ msgstr "Introduceți o parolă nouă mai jos."
11385
+
11386
+ #~ msgid ""
11387
+ #~ "Lost your password? Please enter your username or email address. You will "
11388
+ #~ "receive a link to create a new password via email."
11389
+ #~ msgstr ""
11390
+ #~ "V-aţi uitat parola? Vă rugăm să introduceţi numele de utilizator sau "
11391
+ #~ "adresa de e-mail folosită la înregistrare. O să primiţi link-ul pentru "
11392
+ #~ "resetarea parolei pe adresa de e-mail respectivă."
11393
+
11394
+ #~ msgid "Register"
11395
+ #~ msgstr "Înregistrare"
11396
+
11397
+ #~ msgid "Save address"
11398
+ #~ msgstr "Salvează adresă"
11399
+
11400
+ #~ msgid "Shipping Address 2"
11401
+ #~ msgstr "Adresă de livrare 2"
11402
+
11403
+ #~ msgid "Billing Address 2"
11404
+ #~ msgstr "Adresă de facturare 2"
11405
+
11406
+ #~ msgid "Confirm new password"
11407
+ #~ msgstr "Confirmă noua parolă"
11408
+
11409
+ #~ msgid "New password (leave blank to leave unchanged)"
11410
+ #~ msgstr "Parolă nouă (lasă gol pentru a rămâne neschimbată)"
11411
+
11412
+ #~ msgid "Current password (leave blank to leave unchanged)"
11413
+ #~ msgstr "Parolă actuală (lasă gol pentru a rămâne neschimbată)"
11414
+
11415
+ #~ msgid "Password change"
11416
+ #~ msgstr "Schimbare parolă"
11417
+
11418
+ #~ msgid "Email address"
11419
+ #~ msgstr "Adresă email"
11420
+
11421
+ #~ msgid "Sale!"
11422
+ #~ msgstr "Reducere!"
11423
+
11424
+ #~ msgid "Showing the single result"
11425
+ #~ msgid_plural "Showing all %d results"
11426
+ #~ msgstr[0] "Se arată singurul rezultat"
11427
+ #~ msgstr[1] "Se arată toate cele %d rezultate"
11428
+ #~ msgstr[2] "Se arată toate cele %d de rezultate"
11429
+
11430
+ #~ msgid "No products were found matching your selection."
11431
+ #~ msgstr ""
11432
+ #~ "Nu au fost găsite produse care să corespundă criteriilor selectate de dvs."
11433
+
11434
+ #~ msgctxt "Product quantity input tooltip"
11435
+ #~ msgid "Qty"
11436
+ #~ msgstr "Cantitate"
11437
+
11438
+ #~ msgid "Lost your password?"
11439
+ #~ msgstr "Ți-ai pierdut parola?"
11440
+
11441
+ #~ msgid "Remember me"
11442
+ #~ msgstr "Ține-mă minte"
11443
+
11444
+ #~ msgid "Username or email"
11445
+ #~ msgstr "Nume utilizator sau email"
11446
+
11447
+ #~ msgid "View order: %s"
11448
+ #~ msgstr "Vezi comenzile: %s"
11449
+
11450
+ #~ msgid "Username: %s"
11451
+ #~ msgstr "Nume utilizator: %s"
11452
+
11453
+ #~ msgid "Thank you. Your order has been received."
11454
+ #~ msgstr "Mulțumesc. Comanda ta a fost primită."
11455
+
11456
+ #~ msgid "Update totals"
11457
+ #~ msgstr "Actualizează Totaluri"
11458
+
11459
+ #~ msgid ""
11460
+ #~ "Since your browser does not support JavaScript, or it is disabled, please "
11461
+ #~ "ensure you click the <em>Update Totals</em> button before placing your "
11462
+ #~ "order. You may be charged more than the amount stated above if you fail "
11463
+ #~ "to do so."
11464
+ #~ msgstr ""
11465
+ #~ "Având în vedere că browser-ul dvs. nu suportă JavaScript sau cel mai "
11466
+ #~ "probabil JavaScript-ul este dezactivat, vă rugăm să apăsați butonul "
11467
+ #~ "<em>Actualizare Totaluri</em> înainte de plasa comanda. Există riscul să "
11468
+ #~ "vi se factureze mai mult decât ar trebui dacă uitați să apăsați butonul "
11469
+ #~ "<em>Actualizare Totaluri</em>."
11470
+
11471
+ #~ msgid ""
11472
+ #~ "Sorry, it seems that there are no available payment methods for your "
11473
+ #~ "state. Please contact us if you require assistance or wish to make "
11474
+ #~ "alternate arrangements."
11475
+ #~ msgstr ""
11476
+ #~ "Ne pare rău dar se pare că nu există metode de plată activate pentru "
11477
+ #~ "statul dvs. Vă rugăm să ne contactați dacă aveți nevoie de mai multe "
11478
+ #~ "informații"
11479
+
11480
+ #~ msgid "Please fill in your details above to see available payment methods."
11481
+ #~ msgstr ""
11482
+ #~ "Te rog completează detaliile mai sus pentru a vedea metodele de plată "
11483
+ #~ "disponibile."
11484
+
11485
+ #~ msgid "Ship to a different address?"
11486
+ #~ msgstr "Livrare la o altă adresă?"
11487
+
11488
+ #~ msgid "Pay for order"
11489
+ #~ msgstr "Plătește pentru comandă"
11490
+
11491
+ #~ msgid ""
11492
+ #~ "Sorry, it seems that there are no available payment methods for your "
11493
+ #~ "location. Please contact us if you require assistance or wish to make "
11494
+ #~ "alternate arrangements."
11495
+ #~ msgstr ""
11496
+ #~ "Ne pare rău dar se pare că nu există metode de acceptare a plății în "
11497
+ #~ "locația dvs. Vă rugăm să ne contactați dacă aveți nevoie de mai multe "
11498
+ #~ "informații."
11499
+
11500
+ #~ msgid "Payment"
11501
+ #~ msgstr "Plată"
11502
+
11503
+ #~ msgid ""
11504
+ #~ "If you have shopped with us before, please enter your details below. If "
11505
+ #~ "you are a new customer, please proceed to the Billing &amp; Shipping "
11506
+ #~ "section."
11507
+ #~ msgstr ""
11508
+ #~ "Dacă ai făcut cumpărături de la noi mai înainte, te rog să-ți introduci "
11509
+ #~ "detaliile mai jos. Dacă ești un client nou, te rog să continui la "
11510
+ #~ "secțiunea Facturare și livrare."
11511
+
11512
+ #~ msgid "Click here to login"
11513
+ #~ msgstr "Dă clic aici pentru a te autentifica."
11514
+
11515
+ #~ msgid "Returning customer?"
11516
+ #~ msgstr "Client existent?"
11517
+
11518
+ #~ msgid "Click here to enter your code"
11519
+ #~ msgstr "Dă clic aici pentru a-ți introduce codul"
11520
+
11521
+ #~ msgid "Have a coupon?"
11522
+ #~ msgstr "Ai un cupon?"
11523
+
11524
+ #~ msgid "You must be logged in to checkout."
11525
+ #~ msgstr "Trebuie să fii autentificat pentru a finaliza."
11526
+
11527
+ #~ msgid "Create an account?"
11528
+ #~ msgstr "Creezi un cont?"
11529
+
11530
+ #~ msgid "Billing &amp; Shipping"
11531
+ #~ msgstr "Facturare și livrare"
11532
+
11533
+ #~ msgid "Return to cart"
11534
+ #~ msgstr "Înapoi la coș"
11535
+
11536
+ #~ msgid ""
11537
+ #~ "There are some issues with the items in your cart. Please go back to the "
11538
+ #~ "cart page and resolve these issues before checking out."
11539
+ #~ msgstr ""
11540
+ #~ "Sunt câteva probleme cu produsele din coșul tău. Te rog mergi înapoi la "
11541
+ #~ "pagina coșului și remediază aceste probleme înainte de finalizarea "
11542
+ #~ "comenzii."
11543
+
11544
+ #~ msgid "Calculate shipping"
11545
+ #~ msgstr "Calculează livrare"
11546
+
11547
+ #~ msgid "Proceed to checkout"
11548
+ #~ msgstr "Continuă cu finalizarea"
11549
+
11550
+ #~ msgid "Checkout"
11551
+ #~ msgstr "Finalizare"
11552
+
11553
+ #~ msgid "No products in the cart."
11554
+ #~ msgstr "Niciun produs în coș."
11555
+
11556
+ #~ msgid "You may be interested in&hellip;"
11557
+ #~ msgstr "Ai mai putea fi interesat de:"
11558
+
11559
+ #~ msgid "Update cart"
11560
+ #~ msgstr "Actualizează coșul"
11561
+
11562
+ #~ msgid "Apply coupon"
11563
+ #~ msgstr "Aplică cuponul"
11564
+
11565
+ #~ msgid "Remove this item"
11566
+ #~ msgstr "Înlătură acest element"
11567
+
11568
+ #~ msgid "Subtotal"
11569
+ #~ msgstr "Sub-total"
11570
+
11571
+ #~ msgid "Cart totals"
11572
+ #~ msgstr "Total coș"
11573
+
11574
+ #~ msgid "Shipping %s"
11575
+ #~ msgstr "Livrare %s"
11576
+
11577
+ #~ msgid "Your cart is currently empty."
11578
+ #~ msgstr "Coșul tău este în prezent gol."
11579
+
11580
+ #~ msgid "Application authentication request"
11581
+ #~ msgstr "Cerere de autentificare în aplicație"
11582
+
11583
+ #~ msgid "Password"
11584
+ #~ msgstr "Parolă"
11585
+
11586
+ #~ msgid "Username or email address"
11587
+ #~ msgstr "Nume utilizator sau adresă email"
11588
+
11589
+ #~ msgid ""
11590
+ #~ "To connect to %1$s you need to be logged in. Log in to your store below, "
11591
+ #~ "or <a href=\"%2$s\">cancel and return to %1$s</a>"
11592
+ #~ msgstr ""
11593
+ #~ "Pentru a te conecta la %1$s trebuie să fii autentificat. Autentifică-te "
11594
+ #~ "în magazin mai jos sau <a href=\"%2$s\">anulează și întoarce-te la %1$s</"
11595
+ #~ "a>"
11596
+
11597
+ #~ msgid "Deny"
11598
+ #~ msgstr "Respinge"
11599
+
11600
+ #~ msgid "Approve"
11601
+ #~ msgstr "Aprobare"
11602
+
11603
+ #~ msgid "Logged in as %s"
11604
+ #~ msgstr "Autentificat ca %s"
11605
+
11606
+ #~ msgid "%s would like to connect to your store"
11607
+ #~ msgstr "%s ar vrea să se conecteze cu magazinul tău"
11608
+
11609
+ #~ msgid "Top rated products"
11610
+ #~ msgstr "Primele produse după evaluări"
11611
+
11612
+ #~ msgid "Recently Viewed Products"
11613
+ #~ msgstr "Produse vizualizate recent"
11614
+
11615
+ #~ msgid "Number of reviews to show"
11616
+ #~ msgstr "Numărul recenziilor care va fi afișat"
11617
+
11618
+ #~ msgid "Recent reviews"
11619
+ #~ msgstr "Recenzii recente"
11620
+
11621
+ #~ msgid "Show hidden products"
11622
+ #~ msgstr "Afișează produsele ascunse"
11623
+
11624
+ #~ msgid "Hide free products"
11625
+ #~ msgstr "Ascunde produsele gratuite"
11626
+
11627
+ #~ msgid "DESC"
11628
+ #~ msgstr "DESCRESCĂTOR"
11629
+
11630
+ #~ msgid "ASC"
11631
+ #~ msgstr "CRESCĂTOR"
11632
+
11633
+ #~ msgctxt "Sorting order"
11634
+ #~ msgid "Order"
11635
+ #~ msgstr "Comandă"
11636
+
11637
+ #~ msgid "Sales"
11638
+ #~ msgstr "Vânzări"
11639
+
11640
+ #~ msgid "Random"
11641
+ #~ msgstr "Aleatoriu"
11642
+
11643
+ #~ msgid "On-sale products"
11644
+ #~ msgstr "Produse de vânzare"
11645
+
11646
+ #~ msgid "Featured products"
11647
+ #~ msgstr "Produse reprezentative"
11648
+
11649
+ #~ msgid "All products"
11650
+ #~ msgstr "Toate produsele"
11651
+
11652
+ #~ msgid "Number of products to show"
11653
+ #~ msgstr "Numărul produselor care vor fi afișate"
11654
+
11655
+ #~ msgid "No product categories exist."
11656
+ #~ msgstr "Nu există nici o categorie de produs."
11657
+
11658
+ #~ msgid "Only show children of the current category"
11659
+ #~ msgstr "Arată numai subcategoriile din categoria curentă"
11660
+
11661
+ #~ msgid "Show hierarchy"
11662
+ #~ msgstr "Afișează ierarhie"
11663
+
11664
+ #~ msgid "Show product counts"
11665
+ #~ msgstr "Afișează numărul de produse"
11666
+
11667
+ #~ msgid "Show as dropdown"
11668
+ #~ msgstr "Arată ca listă verticală"
11669
+
11670
+ #~ msgid "Category order"
11671
+ #~ msgstr "Ordine categorii"
11672
+
11673
+ #~ msgid "A list or dropdown of product categories."
11674
+ #~ msgstr "O listă cu selector de categorii de produse."
11675
+
11676
+ #~ msgid "Price:"
11677
+ #~ msgstr "Preț:"
11678
+
11679
+ #~ msgid "Filter"
11680
+ #~ msgstr "Filtrează"
11681
+
11682
+ #~ msgid "Max price"
11683
+ #~ msgstr "Preț Maxim"
11684
+
11685
+ #~ msgid "Min price"
11686
+ #~ msgstr "Preț Minim"
11687
+
11688
+ #~ msgid "Filter by price"
11689
+ #~ msgstr "Filtrează după preț"
11690
+
11691
+ #~ msgid "Any %s"
11692
+ #~ msgstr "Orice %s"
11693
+
11694
+ #~ msgid "OR"
11695
+ #~ msgstr "SAU"
11696
+
11697
+ #~ msgid "AND"
11698
+ #~ msgstr "ȘI"
11699
+
11700
+ #~ msgid "Query type"
11701
+ #~ msgstr "Mod interogare"
11702
+
11703
+ #~ msgid "Dropdown"
11704
+ #~ msgstr "Listă derulantă"
11705
+
11706
+ #~ msgid "List"
11707
+ #~ msgstr "Listă"
11708
+
11709
+ #~ msgid "Attribute"
11710
+ #~ msgstr "Atribut"
11711
+
11712
+ #~ msgid "Filter by"
11713
+ #~ msgstr "Filtrează după"
11714
+
11715
+ #~ msgid "Remove filter"
11716
+ #~ msgstr "Șterge filtru"
11717
+
11718
+ #~ msgid "Active filters"
11719
+ #~ msgstr "Filtre active"
11720
+
11721
+ #~ msgid "Hide if cart is empty"
11722
+ #~ msgstr "Ascunde în cazul în care Coșul este gol"
11723
+
11724
+ #~ msgid "Cart"
11725
+ #~ msgstr "Coș"
11726
+
11727
+ #~ msgid "Disabled"
11728
+ #~ msgstr "Dezactivat"
11729
+
11730
+ #~ msgid "Paused"
11731
+ #~ msgstr "Întrerupt"
11732
+
11733
+ #~ msgid "Active"
11734
+ #~ msgstr "Activ"
11735
+
11736
+ #~ msgid ""
11737
+ #~ "Couldn&#8217;t register you&hellip; please contact us if you continue to "
11738
+ #~ "have problems."
11739
+ #~ msgstr ""
11740
+ #~ "Nu te putem înregistra&hellip; Mai încearcă odată, nu ezita să ne "
11741
+ #~ "contactezi dacă problemele continuă."
11742
+
11743
+ #~ msgid "Please enter an account password."
11744
+ #~ msgstr "Vă rugăm introduceți o parolă pentru cont."
11745
+
11746
+ #~ msgid ""
11747
+ #~ "An account is already registered with that username. Please choose "
11748
+ #~ "another."
11749
+ #~ msgstr ""
11750
+ #~ "Există deja un cont înregistrat cu acest nume utilizator. Alegeți altul."
11751
+
11752
+ #~ msgid "Please enter a valid account username."
11753
+ #~ msgstr "Te rog introdu un nume utilizator cu cont valid."
11754
+
11755
+ #~ msgid ""
11756
+ #~ "An account is already registered with your email address. Please log in."
11757
+ #~ msgstr ""
11758
+ #~ "Există deja un cont înregistrat cu această adresă de email. Te rog "
11759
+ #~ "autentifică-te."
11760
+
11761
+ #~ msgid "Select a category"
11762
+ #~ msgstr "Selectează o categorie"
11763
+
11764
+ #~ msgid "Choose an option"
11765
+ #~ msgstr "Alegeți o opțiune"
11766
+
11767
+ #~ msgid "Select a state&hellip;"
11768
+ #~ msgstr "Selectează Stat&hellip;"
11769
+
11770
+ #~ msgid "Update country"
11771
+ #~ msgstr "Actualizează țara"
11772
+
11773
+ #~ msgid "Place order"
11774
+ #~ msgstr "Plasează comanda"
11775
+
11776
+ #~ msgctxt "breadcrumb"
11777
+ #~ msgid "Home"
11778
+ #~ msgstr "Acasă"
11779
+
11780
+ #~ msgid "Reviews (%d)"
11781
+ #~ msgstr "Recenzii (%d)"
11782
+
11783
+ #~ msgid "Sort by price: high to low"
11784
+ #~ msgstr "Sortează după preț: de la mare la mic"
11785
+
11786
+ #~ msgid "Sort by price: low to high"
11787
+ #~ msgstr "Sortează după preț: de la mic la mare"
11788
+
11789
+ #~ msgid "Sort by average rating"
11790
+ #~ msgstr "Sortează după evaluarea medie"
11791
+
11792
+ #~ msgid "Sort by popularity"
11793
+ #~ msgstr "Sortează după popularitate"
11794
+
11795
+ #~ msgid "Default sorting"
11796
+ #~ msgstr "Sortare implicită"
11797
+
11798
+ #~ msgid "&nbsp;&ndash; Page %s"
11799
+ #~ msgstr "&nbsp;&ndash; Pagina %s"
11800
+
11801
+ #~ msgid "Search results: &ldquo;%s&rdquo;"
11802
+ #~ msgstr "Rezultatele căutării: &bdquo;%s&rdquo;"
11803
+
11804
+ #~ msgctxt "slug"
11805
+ #~ msgid "uncategorized"
11806
+ #~ msgstr "fara-categorie"
11807
+
11808
+ #~ msgctxt "edit-address-slug"
11809
+ #~ msgid "shipping"
11810
+ #~ msgstr "livrare"
11811
+
11812
+ #~ msgctxt "edit-address-slug"
11813
+ #~ msgid "billing"
11814
+ #~ msgstr "Facturare"
11815
+
11816
+ #~ msgid "Refund &ndash; %s"
11817
+ #~ msgstr "Rambursare &ndash; %s"
11818
+
11819
+ #~ msgid "Unpaid order cancelled - time limit reached."
11820
+ #~ msgstr ""
11821
+ #~ "Comenzile neachitate au fost anulate - Limita de timp în care se putea "
11822
+ #~ "efectua plata a fost atinsă."
11823
+
11824
+ #~ msgid "This function should not be called before woocommerce_init."
11825
+ #~ msgstr ""
11826
+ #~ "Această funcție nu ar trebui să fie apelată înainte de woocommerce_init."
11827
+
11828
+ #~ msgid "Egyptian pound"
11829
+ #~ msgstr "Liră egipteană"
11830
+
11831
+ #~ msgid "Ukrainian hryvnia"
11832
+ #~ msgstr "Grivnă ucrainiană"
11833
+
11834
+ #~ msgid "Turkish lira"
11835
+ #~ msgstr "Liră turcească"
11836
+
11837
+ #~ msgid "Thai baht"
11838
+ #~ msgstr "Baht thailandez"
11839
+
11840
+ #~ msgid "Swiss franc"
11841
+ #~ msgstr "Franc elvețian"
11842
+
11843
+ #~ msgid "Swedish krona"
11844
+ #~ msgstr "Coroană suedeză"
11845
+
11846
+ #~ msgid "South African rand"
11847
+ #~ msgstr "Rand sud-african"
11848
+
11849
+ #~ msgid "Singapore dollar"
11850
+ #~ msgstr "Dolar singaporez"
11851
+
11852
+ #~ msgid "Russian ruble"
11853
+ #~ msgstr "Rublă rusească"
11854
+
11855
+ #~ msgid "Romanian leu"
11856
+ #~ msgstr "Leu românesc"
11857
+
11858
+ #~ msgid "Pound sterling"
11859
+ #~ msgstr "Liră sterlină"
11860
+
11861
+ #~ msgid "Philippine peso"
11862
+ #~ msgstr "Peso filipinez"
11863
+
11864
+ #~ msgid "New Zealand dollar"
11865
+ #~ msgstr "Dolar neozeelandez"
11866
+
11867
+ #~ msgid "Norwegian krone"
11868
+ #~ msgstr "Coroană norvegiană"
11869
+
11870
+ #~ msgid "Nigerian naira"
11871
+ #~ msgstr "Naira nigeriană"
11872
+
11873
+ #~ msgid "Mexican peso"
11874
+ #~ msgstr "Peso mexican"
11875
+
11876
+ #~ msgid "Malaysian ringgit"
11877
+ #~ msgstr "Ringgit"
11878
+
11879
+ #~ msgid "South Korean won"
11880
+ #~ msgstr "Won sud-coreean"
11881
+
11882
+ #~ msgid "Lao kip"
11883
+ #~ msgstr "Kip laoțian"
11884
+
11885
+ #~ msgid "Japanese yen"
11886
+ #~ msgstr "Yen japonez"
11887
+
11888
+ #~ msgid "Indian rupee"
11889
+ #~ msgstr "Rupie indiană"
11890
+
11891
+ #~ msgid "Indonesian rupiah"
11892
+ #~ msgstr "Rupie indoneziană"
11893
+
11894
+ #~ msgid "Hungarian forint"
11895
+ #~ msgstr "Forint"
11896
+
11897
+ #~ msgid "Croatian kuna"
11898
+ #~ msgstr "Kuna"
11899
+
11900
+ #~ msgid "Hong Kong dollar"
11901
+ #~ msgstr "Dolar Hong Kong"
11902
+
11903
+ #~ msgid "Dominican peso"
11904
+ #~ msgstr "Peso dominican"
11905
+
11906
+ #~ msgid "Danish krone"
11907
+ #~ msgstr "Coroană daneză"
11908
+
11909
+ #~ msgid "Czech koruna"
11910
+ #~ msgstr "Coroană cehă"
11911
+
11912
+ #~ msgid "Colombian peso"
11913
+ #~ msgstr "Peso columbian"
11914
+
11915
+ #~ msgid "Chinese yuan"
11916
+ #~ msgstr "Yuan renminbi"
11917
+
11918
+ #~ msgid "Chilean peso"
11919
+ #~ msgstr "Peso chilian"
11920
+
11921
+ #~ msgid "Canadian dollar"
11922
+ #~ msgstr "Dolar canadian"
11923
+
11924
+ #~ msgid "Bulgarian lev"
11925
+ #~ msgstr "Leva"
11926
+
11927
+ #~ msgid "Brazilian real"
11928
+ #~ msgstr "Real brazilian"
11929
+
11930
+ #~ msgid "Bangladeshi taka"
11931
+ #~ msgstr "Taka"
11932
+
11933
+ #~ msgid "Australian dollar"
11934
+ #~ msgstr "Dolar australian"
11935
+
11936
+ #~ msgid "Argentine peso"
11937
+ #~ msgstr "Peso argentinian"
11938
+
11939
+ #~ msgid "United Arab Emirates dirham"
11940
+ #~ msgstr "Dirham EAU"
11941
+
11942
+ #~ msgctxt "Order date parsed by strftime"
11943
+ #~ msgid "%b %d, %Y @ %I:%M %p"
11944
+ #~ msgstr "%b %d, %Y @ %I:%M %p"
11945
+
11946
+ #~ msgid "Order &ndash; %s"
11947
+ #~ msgstr "Comanda &ndash; %s"
11948
+
11949
+ #~ msgid "[Remove]"
11950
+ #~ msgstr "[Șterge]"
11951
+
11952
+ #~ msgid "Free shipping coupon"
11953
+ #~ msgstr "Cupon Livrare Gratuită"
11954
+
11955
+ #~ msgid "Coupon:"
11956
+ #~ msgstr "Cupon:"
11957
+
11958
+ #~ msgid "and"
11959
+ #~ msgstr "și"
11960
+
11961
+ #~ msgctxt "Item name in quotes"
11962
+ #~ msgid "&ldquo;%s&rdquo;"
11963
+ #~ msgstr "&ldquo;%s&rdquo;"
11964
+
11965
+ #~ msgid "%s has been added to your cart."
11966
+ #~ msgid_plural "%s have been added to your cart."
11967
+ #~ msgstr[0] "%s a fost adăugat în coș."
11968
+ #~ msgstr[1] "%s au fost adăugate în coș."
11969
+ #~ msgstr[2] "%s au fost adăugate în coș."
11970
+
11971
+ #~ msgid "This product is protected and cannot be purchased."
11972
+ #~ msgstr "Acest produs este protejat și nu poate fi achiziționat."
11973
+
11974
+ #~ msgid "Select"
11975
+ #~ msgstr "Selectează"
11976
+
11977
+ #~ msgid "Order fully refunded"
11978
+ #~ msgstr "Comandă rambursată integral"
11979
+
11980
+ #~ msgid "Please enter a valid order ID"
11981
+ #~ msgstr "Vă rugăm introduceți un ID (Cod Identificare) comandă valid"
11982
+
11983
+ #~ msgid "Use a new payment method"
11984
+ #~ msgstr "Folosește o metodă nouă de plată."
11985
+
11986
+ #~ msgid "Password reset is not allowed for this user"
11987
+ #~ msgstr ""
11988
+ #~ "Ne pare rău,dar din păcate, resetarea parolei nu este permisă pentru "
11989
+ #~ "acest utilizator."
11990
+
11991
+ #~ msgid "Invalid username or email."
11992
+ #~ msgstr "Nume utilizator sau email invalid."
11993
+
11994
+ #~ msgid "Enter a username or email address."
11995
+ #~ msgstr "Introdu un nume de utilizator sau o adresă de email."
11996
+
11997
+ #~ msgid "Log in"
11998
+ #~ msgstr "Autentificare"
11999
+
12000
+ #~ msgid ""
12001
+ #~ "The order totals have been updated. Please confirm your order by pressing "
12002
+ #~ "the \"Place order\" button at the bottom of the page."
12003
+ #~ msgstr ""
12004
+ #~ "Totalul comenzii a fost actualizat. Te rog confirmă-ți comanda prin "
12005
+ #~ "apăsarea butonului \"Plasare comandă\" de la sfârșitul paginii."
12006
+
12007
+ #~ msgid "Date:"
12008
+ #~ msgstr "Dată:"
12009
+
12010
+ #~ msgid "Sorry, this order is invalid and cannot be paid for."
12011
+ #~ msgstr "Regret, această comandă este invalidă și nu poate fi plătită."
12012
+
12013
+ #~ msgid ""
12014
+ #~ "This order&rsquo;s status is &ldquo;%s&rdquo;&mdash;it cannot be paid "
12015
+ #~ "for. Please contact us if you need assistance."
12016
+ #~ msgstr ""
12017
+ #~ "Statutul acestei comenzi este &ldquo;%s&rdquo;&mdash; si nu poate fi "
12018
+ #~ "plătită. Vă rugăm să ne contactați dacă aveți nevoie de asistență."
12019
+
12020
+ #~ msgid "My account"
12021
+ #~ msgstr "Contul meu"
12022
+
12023
+ #~ msgid "Shipping costs updated."
12024
+ #~ msgstr "Costuri de livrare actualizate."
12025
+
12026
+ #~ msgid "What ZIP/post codes are available for local pickup?"
12027
+ #~ msgstr "Ce coduri poștale/ZIP sunt disponibile pentru preluare locală?"
12028
+
12029
+ #~ msgid ""
12030
+ #~ "Separate codes with a comma. Accepts wildcards, e.g. <code>P*</code> will "
12031
+ #~ "match a postcode of PE30. Also accepts a pattern, e.g. <code>NG1___</"
12032
+ #~ "code> would match NG1 1AA but not NG10 1AA"
12033
+ #~ msgstr ""
12034
+ #~ "Codurile separate cu o virgulă. Acceptă metacaractere, de exemplu, "
12035
+ #~ "<code>P*</code> se va potrivi cu un cod poștal ca PE30. De asemenea, "
12036
+ #~ "acceptă un model, de exemplu, <code>NG1 ___</code> se potriveste NG1 1AA "
12037
+ #~ "dar nu NG10 1AA"
12038
+
12039
+ #~ msgid "What ZIP/post codes are available for local delivery?"
12040
+ #~ msgstr "Ce coduri poștale/ZIP sunt disponibile pentru livrare locală?"
12041
+
12042
+ #~ msgid "Allowed ZIP/post codes"
12043
+ #~ msgstr "Coduri poștale/ZIP acceptate"
12044
+
12045
+ #~ msgid ""
12046
+ #~ "What fee do you want to charge for local delivery, disregarded if you "
12047
+ #~ "choose free. Leave blank to disable."
12048
+ #~ msgstr ""
12049
+ #~ "Ce taxă vrei să ceri pentru livrare locală, ignorând faptul dacă alegi "
12050
+ #~ "gratuit. Lasă necompletat pentru a dezactiva."
12051
+
12052
+ #~ msgid "Delivery fee"
12053
+ #~ msgstr "Taxă de livrare"
12054
+
12055
+ #~ msgid "Fixed amount per product"
12056
+ #~ msgstr "Sumă fixă per produs"
12057
+
12058
+ #~ msgid "Percentage of cart total"
12059
+ #~ msgstr "Procent din total coș"
12060
+
12061
+ #~ msgid "Fixed amount"
12062
+ #~ msgstr "Sumă Fixă"
12063
+
12064
+ #~ msgid "How to calculate delivery charges"
12065
+ #~ msgstr "Cum se calculează costurile de livrare"
12066
+
12067
+ #~ msgid "Fee type"
12068
+ #~ msgstr "Tip de taxă"
12069
+
12070
+ #~ msgid "Enable"
12071
+ #~ msgstr "Activează"
12072
+
12073
+ #~ msgid "Excluding selected countries"
12074
+ #~ msgstr "Excluzând țările selectate"
12075
+
12076
+ #~ msgid "Selected countries"
12077
+ #~ msgstr "Țări selectate"
12078
+
12079
+ #~ msgid ""
12080
+ #~ "Users will need to spend this amount to get free shipping (if enabled "
12081
+ #~ "above)."
12082
+ #~ msgstr ""
12083
+ #~ "Pentru a beneficia de Livrare Gratuită, vizitatorii trebuie să aibă o "
12084
+ #~ "comandă cu această valoare minimă (dacă este activată mai sus)."
12085
+
12086
+ #~ msgid "Minimum order amount"
12087
+ #~ msgstr "Sumă minimă comandă"
12088
+
12089
+ #~ msgid "A minimum order amount AND a coupon"
12090
+ #~ msgstr "O Valoare minimă a Comenzii (definită mai jos) ȘI cupon"
12091
+
12092
+ #~ msgid "A minimum order amount OR a coupon"
12093
+ #~ msgstr "O Valoare minimă a Comenzii (definită mai jos) SAU cupon"
12094
+
12095
+ #~ msgid "A valid free shipping coupon"
12096
+ #~ msgstr "Cupon Valid pentru Livrare Gratuită"
12097
+
12098
+ #~ msgid "Free shipping requires..."
12099
+ #~ msgstr "Necesită livrare gratuită..."
12100
+
12101
+ #~ msgid "Method availability"
12102
+ #~ msgstr "Disponibilitate metodă"
12103
+
12104
+ #~ msgid ""
12105
+ #~ "Option name | Additional cost [+- Percents%] | Per cost type (order, "
12106
+ #~ "class, or item)"
12107
+ #~ msgstr ""
12108
+ #~ "Nume opțiune | Cost suplimentar [+ - Procente%] | Per tip de cost "
12109
+ #~ "(comandă, clasă sau element)"
12110
+
12111
+ #~ msgid ""
12112
+ #~ "One per line: Option name | Additional cost [+- Percents] | Per cost type "
12113
+ #~ "(order, class, or item) Example: <code>Priority mail | 6.95 [+ 0.2%] | "
12114
+ #~ "order</code>."
12115
+ #~ msgstr ""
12116
+ #~ "Unul pe linie: Nume opțiune | Cost suplimentar [+ - Procente] | Per tip "
12117
+ #~ "de cost (comandă, clasă sau element) Exemplu: <code>PRIORIPOST | 6,95 [+ "
12118
+ #~ "0,2%] | comandă</code>."
12119
+
12120
+ #~ msgid ""
12121
+ #~ "These rates are extra shipping options with additional costs (based on "
12122
+ #~ "the flat rate)."
12123
+ #~ msgstr ""
12124
+ #~ "Aceste rate sunt opțiuni suplimentare de livrare cu costuri adiționale "
12125
+ #~ "(pe baza ratei globale)."
12126
+
12127
+ #~ msgid "Additional rates"
12128
+ #~ msgstr "Rate suplimentare"
12129
+
12130
+ #~ msgid "Per order: Charge shipping for the most expensive shipping class"
12131
+ #~ msgstr ""
12132
+ #~ "Per comandă: taxează livrarea pentru cea mai scumpă clasă de livrare"
12133
+
12134
+ #~ msgid "Per class: Charge shipping for each shipping class individually"
12135
+ #~ msgstr "Per clasă: taxează livrarea pentru fiecare clasă de livrare separat"
12136
+
12137
+ #~ msgid "Calculation type"
12138
+ #~ msgstr "Tip de calcul"
12139
+
12140
+ #~ msgid "No shipping class cost"
12141
+ #~ msgstr "Fără cost pentru clasă de livrare"
12142
+
12143
+ #~ msgid "\"%s\" shipping class cost"
12144
+ #~ msgstr "Cost clasă de livrare \"%s\""
12145
+
12146
+ #~ msgid ""
12147
+ #~ "These costs can optionally be added based on the <a href=\"%s\">product "
12148
+ #~ "shipping class</a>."
12149
+ #~ msgstr ""
12150
+ #~ "Aceste costuri pot fi adăugate opțional bazate pe <a href=\"%s\">clasa de "
12151
+ #~ "livrare a produsului</a>."
12152
+
12153
+ #~ msgid "Shipping class costs"
12154
+ #~ msgstr "Costuri clasă de livrare"
12155
+
12156
+ #~ msgid "Select some countries"
12157
+ #~ msgstr "Selectează câteva țări"
12158
+
12159
+ #~ msgid "All allowed countries"
12160
+ #~ msgstr "Toate țările permise"
12161
+
12162
+ #~ msgid "Availability"
12163
+ #~ msgstr "Disponibilitate"
12164
+
12165
+ #~ msgid "Method title"
12166
+ #~ msgstr "Titlu metodă"
12167
+
12168
+ #~ msgid ""
12169
+ #~ "Supports the following placeholders: <code>[qty]</code> = number of "
12170
+ #~ "items, <code>[cost]</code> = cost of items, <code>[fee percent=\"10\" "
12171
+ #~ "min_fee=\"20\"]</code> = Percentage based fee."
12172
+ #~ msgstr ""
12173
+ #~ "Suportă următorii substituenți: <code>[qty]</code> = număr de elemente, "
12174
+ #~ "<code>[cost]</code> = cost al elementelor, <code>[fee percent=\"10\" "
12175
+ #~ "min_fee=\"20\"]</code> = taxă bazată pe procente."
12176
+
12177
+ #~ msgid "Enter a cost (excl. tax) or sum, e.g. <code>10.00 * [qty]</code>."
12178
+ #~ msgstr ""
12179
+ #~ "Introdu un cost (exclusiv taxă) sau o sumă, de exemplu <code>10.00 * "
12180
+ #~ "[qty]</code>."
12181
+
12182
+ #~ msgid "Flat rate"
12183
+ #~ msgstr "Forfetar"
12184
+
12185
+ #~ msgid "Refund was declined."
12186
+ #~ msgstr "Rambursarea a fost refuzată."
12187
+
12188
+ #~ msgid "Cancel order &amp; restore cart"
12189
+ #~ msgstr "Anulare comandă și restaurare coș"
12190
+
12191
+ #~ msgid "Pay now"
12192
+ #~ msgstr "Plătește acum"
12193
+
12194
+ #~ msgid ""
12195
+ #~ "Thank you for your order, please click the button below to pay with "
12196
+ #~ "credit card using Simplify Commerce by MasterCard."
12197
+ #~ msgstr ""
12198
+ #~ "Îți mulțumim pentru comandă, te rog dă clic pe butonul de mai jos pentru "
12199
+ #~ "a plăti cu cardul de credit folosind Simplify Commerce de la MasterCard."
12200
+
12201
+ #~ msgid "is invalid"
12202
+ #~ msgstr "este invalid"
12203
+
12204
+ #~ msgid "Expiry year"
12205
+ #~ msgstr "An expirare"
12206
+
12207
+ #~ msgid "Expiry month"
12208
+ #~ msgstr "Lună expirare"
12209
+
12210
+ #~ msgid "TEST MODE ENABLED. Use a test card: %s"
12211
+ #~ msgstr "MOD TEST ACTIVAT. Utilizeaza cardul de test: %s"
12212
+
12213
+ #~ msgid "Private key"
12214
+ #~ msgstr "Cheie privată"
12215
+
12216
+ #~ msgid "Public key"
12217
+ #~ msgstr "Cheie publică"
12218
+
12219
+ #~ msgid "Sandbox private key"
12220
+ #~ msgstr "Cheie privată sandbox"
12221
+
12222
+ #~ msgid "Get your API keys from your Simplify account: Settings > API Keys."
12223
+ #~ msgstr "Obtineti cheile API din contul dvs. Simplify: Setări> Chei API."
12224
+
12225
+ #~ msgid "Sandbox public key"
12226
+ #~ msgstr "Cheie publică sandbox"
12227
+
12228
+ #~ msgid ""
12229
+ #~ "Place the payment gateway in sandbox mode using sandbox API keys (real "
12230
+ #~ "payments will not be taken)."
12231
+ #~ msgstr ""
12232
+ #~ "Mutați gateway-ul de plată în modul de testare folosind codurile API de "
12233
+ #~ "testare (nu vor fi procesate plăți reale)."
12234
+
12235
+ #~ msgid "Enable sandbox mode"
12236
+ #~ msgstr "Activează mod sandbox"
12237
+
12238
+ #~ msgid "Sandbox"
12239
+ #~ msgstr "Testare"
12240
+
12241
+ #~ msgid "Set the color of the buttons and titles on the modal dialog."
12242
+ #~ msgstr "Setați culoarea butoanelor și titlurile din dialogul modal."
12243
+
12244
+ #~ msgid "Modal color"
12245
+ #~ msgstr "Culoare modală"
12246
+
12247
+ #~ msgid "Hosted Payments"
12248
+ #~ msgstr "Plaţi Găzduite"
12249
+
12250
+ #~ msgid ""
12251
+ #~ "Standard will display the credit card fields on your store (SSL "
12252
+ #~ "required). %1$s Hosted Payments will display a Simplify Commerce modal "
12253
+ #~ "dialog on your store (if SSL) or will redirect the customer to Simplify "
12254
+ #~ "Commerce hosted page (if not SSL). %1$s Note: Hosted Payments need a new "
12255
+ #~ "API Key pair with the hosted payments flag selected. %2$sFor more details "
12256
+ #~ "check the Simplify Commerce docs%3$s."
12257
+ #~ msgstr ""
12258
+ #~ "Standard va afișa câmpurile cardurilor de credit în magazinul tău "
12259
+ #~ "(necesită SSL). Plățile găzduite %1$s vor afișa un dialog modal Simplify "
12260
+ #~ "Commerce în magazinul tău (dacă ai SSL) sau vor redirecționa clientul la "
12261
+ #~ "pagina găzduită Simplify Commerce (dacă nu ai SSL). Notă %1$s: Plățile "
12262
+ #~ "găzduite au nevoie de o nouă pereche de chei API cu steagul plăților "
12263
+ #~ "găzduite selectat. %2$sPentru mai multe detalii verifică documentele "
12264
+ #~ "Simplify Commerce%3$s."
12265
+
12266
+ #~ msgid "Enable Hosted Payments"
12267
+ #~ msgstr "Activează Plaţi Găzduite"
12268
+
12269
+ #~ msgid "Payment mode"
12270
+ #~ msgstr "Mod de plată"
12271
+
12272
+ #~ msgid "Credit card"
12273
+ #~ msgstr "Card de credit"
12274
+
12275
+ #~ msgid "Enable Simplify Commerce"
12276
+ #~ msgstr "Activează Simplify Commerce"
12277
+
12278
+ #~ msgid ""
12279
+ #~ "Simplify Commerce is enabled, but the <a href=\"%s\">force SSL option</a> "
12280
+ #~ "is disabled; your checkout may not be secure! Please enable SSL and "
12281
+ #~ "ensure your server has a valid SSL certificate - Simplify Commerce will "
12282
+ #~ "only work in sandbox mode."
12283
+ #~ msgstr ""
12284
+ #~ "Simplify Commerce este activată, dar <a href=\"%s\"> opțiunea impunere "
12285
+ #~ "SSL</a> este dezactivată; finalizarea poate să nu fie sigură! Te rog "
12286
+ #~ "activează SSL-ul și asigură-te că serverul tău are un certificat SSL "
12287
+ #~ "valid - Simplify Commerce va funcționa doar în modul de testare."
12288
+
12289
+ #~ msgid "Simplify Commerce Error: Please enter your public and private keys"
12290
+ #~ msgstr ""
12291
+ #~ "Eroare Simplify Commerce: te rog să introduci cheia publică și privată"
12292
+
12293
+ #~ msgid ""
12294
+ #~ "Simplify Commerce Error: Simplify commerce requires PHP 5.3 and above. "
12295
+ #~ "You are using version %s."
12296
+ #~ msgstr ""
12297
+ #~ "Eroare Simplify Commerce: Simplify commerce necesită PHP 5.3 și mai sus. "
12298
+ #~ "Utilizați versiunea %s."
12299
+
12300
+ #~ msgid "Sign up for Simplify Commerce"
12301
+ #~ msgstr "Înregistrează-te pentru Simplify Commerce"
12302
+
12303
+ #~ msgid ""
12304
+ #~ "Simplify Commerce is your merchant account and payment gateway all rolled "
12305
+ #~ "into one. Choose Simplify Commerce as your WooCommerce payment gateway to "
12306
+ #~ "get access to your money quickly with a powerful, secure payment engine "
12307
+ #~ "backed by MasterCard."
12308
+ #~ msgstr ""
12309
+ #~ "Simplify Commerce este contul dvs. de comerciant și gateway-ul de plată, "
12310
+ #~ "toate la un loc. Alege Simplify Commerce ca gateway-ul de plată "
12311
+ #~ "WooCommerce pentru a avea acces la banii rapid, cu un motor puternic de "
12312
+ #~ "plată, securizat susținută de MasterCard."
12313
+
12314
+ #~ msgid "Getting started"
12315
+ #~ msgstr "Primii pași"
12316
+
12317
+ #~ msgid "Simplify Commerce by MasterCard"
12318
+ #~ msgstr "Simplify Commerce de la Mastercard"
12319
+
12320
+ #~ msgid ""
12321
+ #~ "Take payments via Simplify Commerce - uses simplify.js to create card "
12322
+ #~ "tokens and the Simplify Commerce SDK. Requires SSL when sandbox is "
12323
+ #~ "disabled."
12324
+ #~ msgstr ""
12325
+ #~ "Acceptă plăți prin Simplify Commerce - folosește simplify.js pentru a "
12326
+ #~ "crea tokenuri de carduri și SDK-ul Simplify Commerce. Necesită SSL când "
12327
+ #~ "sandbox este dezactivat."
12328
+
12329
+ #~ msgid "Payment was declined by Simplify Commerce."
12330
+ #~ msgstr "Plata a fost refuzată de către sistemul simplificat de plata"
12331
+
12332
+ #~ msgid "Payment was declined - the customer need to try another card."
12333
+ #~ msgstr ""
12334
+ #~ "Plata a fost refuzată - clientul este solicitat să încerce cu un alt card."
12335
+
12336
+ #~ msgid "[Order #%s]"
12337
+ #~ msgstr "[Comanda #%s]"
12338
+
12339
+ #~ msgid "Simplify Transaction Failed (%s)"
12340
+ #~ msgstr "Tranzacția prin aplicația Simplify a eșuat (%s)"
12341
+
12342
+ #~ msgid "Payment was declined - please try another card."
12343
+ #~ msgstr "Plata a fost refuzată - te rog să încerci cu un alt card."
12344
+
12345
+ #~ msgid "Simplify payment declined"
12346
+ #~ msgstr "Aplicația Simplify refuză plata"
12347
+
12348
+ #~ msgid "Simplify payment approved (ID: %1$s, Auth Code: %2$s)"
12349
+ #~ msgstr "Plată prin Simplify aprobată (ID: %1$s, cod autorizare: %2$s)"
12350
+
12351
+ #~ msgid "Simplify payment error: %s."
12352
+ #~ msgstr "Eroare plată prin Simplify: %s."
12353
+
12354
+ #~ msgid "Customer not found."
12355
+ #~ msgstr "Client negăsit."
12356
+
12357
+ #~ msgid ""
12358
+ #~ "Sorry, the minimum allowed order total is 0.50 to use this payment method."
12359
+ #~ msgstr ""
12360
+ #~ "Ne pare rău dar minimul alocat pentru o comandă este 0.50 utilizând "
12361
+ #~ "această metodă de plată."
12362
+
12363
+ #~ msgid "Error creating user in Simplify Commerce."
12364
+ #~ msgstr "Eroare creare utilizator in aplicația Simplify Commerce."
12365
+
12366
+ #~ msgid ""
12367
+ #~ "Developers: Please make sure that you are including jQuery and there are "
12368
+ #~ "no JavaScript errors on the page."
12369
+ #~ msgstr ""
12370
+ #~ "Dezvoltatori: Te rog asigură-te că incluzi jQuery și că nu există erori "
12371
+ #~ "JavaScript în pagină."
12372
+
12373
+ #~ msgid ""
12374
+ #~ "Please make sure your card details have been entered correctly and that "
12375
+ #~ "your browser supports JavaScript."
12376
+ #~ msgstr ""
12377
+ #~ "Te rog să te asiguri că detaliile cardului au fost introduse corect și că "
12378
+ #~ "browserul tău suportă JavaScript."
12379
+
12380
+ #~ msgid "Get your API credentials from PayPal."
12381
+ #~ msgstr "Obtine date de acces la API de la PayPal"
12382
+
12383
+ #~ msgid ""
12384
+ #~ "Enter your PayPal API credentials to process refunds via PayPal. Learn "
12385
+ #~ "how to access your <a href=\"%s\">PayPal API Credentials</a>."
12386
+ #~ msgstr ""
12387
+ #~ "Introdu datele tale de conectare la API PayPal pentru a procesa "
12388
+ #~ "rambursările via PayPal. Află cum poți accesa <a href=\"%s\">datele tale "
12389
+ #~ "de conectare API PayPal</a>."
12390
+
12391
+ #~ msgid "API credentials"
12392
+ #~ msgstr "Date de conectare API"
12393
+
12394
+ #~ msgid "Page style"
12395
+ #~ msgstr "Stil pagină"
12396
+
12397
+ #~ msgid "Authorize"
12398
+ #~ msgstr "Autorizează"
12399
+
12400
+ #~ msgid "Capture"
12401
+ #~ msgstr "Plată imediată"
12402
+
12403
+ #~ msgid ""
12404
+ #~ "Choose whether you wish to capture funds immediately or authorize payment "
12405
+ #~ "only."
12406
+ #~ msgstr ""
12407
+ #~ "Alege dacă dorești să se efectueze plata imediat sau să doar autorizezi "
12408
+ #~ "suma de plată."
12409
+
12410
+ #~ msgid "Payment action"
12411
+ #~ msgstr "Acțiune plată"
12412
+
12413
+ #~ msgid ""
12414
+ #~ "PayPal verifies addresses therefore this setting can cause errors (we "
12415
+ #~ "recommend keeping it disabled)."
12416
+ #~ msgstr ""
12417
+ #~ "PayPal verifică adresele, de aceea aceasă setare poate cauza erori, "
12418
+ #~ "recomandăm să o păstrați dezactivată."
12419
+
12420
+ #~ msgid ""
12421
+ #~ "Enable \"address_override\" to prevent address information from being "
12422
+ #~ "changed."
12423
+ #~ msgstr ""
12424
+ #~ "Activează \"suprascriere_adresa\" pentru a preveni modificarea "
12425
+ #~ "informației."
12426
+
12427
+ #~ msgid "Send shipping details to PayPal instead of billing."
12428
+ #~ msgstr ""
12429
+ #~ "În locul informațiilor de facturare, trimite informațiile de livrare."
12430
+
12431
+ #~ msgid ""
12432
+ #~ "Please enter a prefix for your invoice numbers. If you use your PayPal "
12433
+ #~ "account for multiple stores ensure this prefix is unique as PayPal will "
12434
+ #~ "not allow orders with the same invoice number."
12435
+ #~ msgstr ""
12436
+ #~ "Vă rugăm să introduceți un prefix pentru numerele de facturi. Dacă "
12437
+ #~ "utilizați contul dvs. de PayPal pentru mai multe magazine, asigurați-vă "
12438
+ #~ "că acest prefix este unic, deoarece PayPal nu va permite comenzi cu "
12439
+ #~ "același număr al facturii."
12440
+
12441
+ #~ msgid "Invoice prefix"
12442
+ #~ msgstr "Prefix factură"
12443
+
12444
+ #~ msgid ""
12445
+ #~ "Optionally enable \"Payment Data Transfer\" (Profile > Profile and "
12446
+ #~ "Settings > My Selling Tools > Website Preferences) and then copy your "
12447
+ #~ "identity token here. This will allow payments to be verified without the "
12448
+ #~ "need for PayPal IPN."
12449
+ #~ msgstr ""
12450
+ #~ "Opțional, activează \"Plată prin transfer de date\" (Profile > Profile "
12451
+ #~ "and Settings > My Selling Tools > Website Preferences) și apoi copiază-ți "
12452
+ #~ "token-ul de identificare aici. Va permite ca plățile să fie verificate "
12453
+ #~ "fără a avea nevoie de IPN PayPal."
12454
+
12455
+ #~ msgid "PayPal identity token"
12456
+ #~ msgstr "Token de identitate PayPal"
12457
+
12458
+ #~ msgid ""
12459
+ #~ "If your main PayPal email differs from the PayPal email entered above, "
12460
+ #~ "input your main receiver email for your PayPal account here. This is used "
12461
+ #~ "to validate IPN requests."
12462
+ #~ msgstr ""
12463
+ #~ "În cazul în care adresa de e-mail principală a contului PayPal diferă de "
12464
+ #~ "e-mail PayPal introdus mai sus, introduceti adresa de e-mail principală "
12465
+ #~ "pentru primit a contul dvs. PayPal aici. Acesta este utilizată pentru a "
12466
+ #~ "valida cererile IPN."
12467
+
12468
+ #~ msgid "Receiver email"
12469
+ #~ msgstr "Email destinatar"
12470
+
12471
+ #~ msgid "Advanced options"
12472
+ #~ msgstr "Opțiuni avansate"
12473
+
12474
+ #~ msgid "Enable logging"
12475
+ #~ msgstr "Activează jurnalizarea"
12476
+
12477
+ #~ msgid "Debug log"
12478
+ #~ msgstr "Jurnal depanare"
12479
+
12480
+ #~ msgid "Enable PayPal sandbox"
12481
+ #~ msgstr "Activează PayPal sandbox"
12482
+
12483
+ #~ msgid "PayPal sandbox"
12484
+ #~ msgstr "PayPal Sandbox"
12485
+
12486
+ #~ msgid ""
12487
+ #~ "Please enter your PayPal email address; this is needed in order to take "
12488
+ #~ "payment."
12489
+ #~ msgstr ""
12490
+ #~ "Adresa de email cu care a fost creat contul de PayPal; Această adresă de "
12491
+ #~ "email este necesară pentru ca plățile să fie procesate direct în contul "
12492
+ #~ "tău de PayPal."
12493
+
12494
+ #~ msgid "PayPal email"
12495
+ #~ msgstr "Email PayPal"
12496
+
12497
+ #~ msgid ""
12498
+ #~ "Pay via PayPal; you can pay with your credit card if you don't have a "
12499
+ #~ "PayPal account."
12500
+ #~ msgstr ""
12501
+ #~ "Plătește prin PayPal; Nu poți plăti cu cardul tău de credit dacă nu ai un "
12502
+ #~ "cont PayPal."
12503
+
12504
+ #~ msgid "This controls the description which the user sees during checkout."
12505
+ #~ msgstr ""
12506
+ #~ "Asta controlează descrierea pe care utilizatorul o vede în timpul "
12507
+ #~ "finalizării."
12508
+
12509
+ #~ msgid "Enable PayPal Standard"
12510
+ #~ msgstr "Activează PayPal Standard"
12511
+
12512
+ #~ msgid "Shipping via %s"
12513
+ #~ msgstr "Expediere prin intermediul %s"
12514
+
12515
+ #~ msgid "PDT payment completed"
12516
+ #~ msgstr "Plată PDT finalizată"
12517
+
12518
+ #~ msgid "Validation error: PayPal amounts do not match (amt %s)."
12519
+ #~ msgstr "Eroare de validare: Sumele PayPal nu se potrivesc (sumă %s)."
12520
+
12521
+ #~ msgid ""
12522
+ #~ "Order #%1$s has had a reversal cancelled. Please check the status of "
12523
+ #~ "payment and update the order status accordingly here: %2$s"
12524
+ #~ msgstr ""
12525
+ #~ "Comanda #%1$s a avut o inversare anulată. Te rog verifică starea plații "
12526
+ #~ "și actualizează corespunzător starea comenzii aici: %2$s"
12527
+
12528
+ #~ msgid "Reversal cancelled for order #%s"
12529
+ #~ msgstr "Inversare anulată pentru comanda #%s"
12530
+
12531
+ #~ msgid ""
12532
+ #~ "Order #%1$s has been marked on-hold due to a reversal - PayPal reason "
12533
+ #~ "code: %2$s"
12534
+ #~ msgstr ""
12535
+ #~ "Comanda #%1$s a fost marcată în așteptare din cauza unei inversări - cod "
12536
+ #~ "motiv PayPal: %2$s"
12537
+
12538
+ #~ msgid "Payment for order %s reversed"
12539
+ #~ msgstr "Plata pentru comanda %s a fost inversată"
12540
+
12541
+ #~ msgid "Order #%1$s has been marked as refunded - PayPal reason code: %2$s"
12542
+ #~ msgstr "Comanda #%1$s a fost marcată ca rambursată - cod motiv PayPal: %2$s"
12543
+
12544
+ #~ msgid "Payment %s via IPN."
12545
+ #~ msgstr "Plata %s prin IPN"
12546
+
12547
+ #~ msgid "Payment pending (%s)."
12548
+ #~ msgstr "Plată în așteptare (%s)."
12549
+
12550
+ #~ msgid "IPN payment completed"
12551
+ #~ msgstr "Plată IPN finalizată"
12552
+
12553
+ #~ msgid ""
12554
+ #~ "Validation error: PayPal IPN response from a different email address (%s)."
12555
+ #~ msgstr ""
12556
+ #~ "Eroare în timpul Validării: Răspunul PayPal IPN este de la o adresă de "
12557
+ #~ "email diferită (%s)."
12558
+
12559
+ #~ msgid "Validation error: PayPal amounts do not match (gross %s)."
12560
+ #~ msgstr ""
12561
+ #~ "Eroare în timpul Validării: Sumele PayPal nu se potrivesc (brut %s )."
12562
+
12563
+ #~ msgid "Validation error: PayPal currencies do not match (code %s)."
12564
+ #~ msgstr "Eroare de validare: monedele PayPal nu corespund (cod %s)."
12565
+
12566
+ #~ msgid "Refunded %1$s - Refund ID: %2$s"
12567
+ #~ msgstr "%1$s rambursată - ID rambursare: %2$s"
12568
+
12569
+ #~ msgid "PayPal does not support your store currency."
12570
+ #~ msgstr "PayPal nu suportă moneda setată implicit pentru magazinul tău."
12571
+
12572
+ #~ msgid "Gateway disabled"
12573
+ #~ msgstr "Gateway dezactivat"
12574
+
12575
+ #~ msgid "What is PayPal?"
12576
+ #~ msgstr "Ce este PayPal ?"
12577
+
12578
+ #~ msgid "PayPal acceptance mark"
12579
+ #~ msgstr "Marcă de acceptare PayPal"
12580
+
12581
+ #~ msgid "PayPal"
12582
+ #~ msgstr "PayPal"
12583
+
12584
+ #~ msgid "Proceed to PayPal"
12585
+ #~ msgstr "Continuă cu PayPal"
12586
+
12587
+ #~ msgid "Payment to be made upon delivery."
12588
+ #~ msgstr "Plata va fi efectuată la livrarea comenzii."
12589
+
12590
+ #~ msgid "Accept COD if the order is virtual"
12591
+ #~ msgstr "Acceptă COD dacă comanda este virtuală"
12592
+
12593
+ #~ msgid "Accept for virtual orders"
12594
+ #~ msgstr "Acceptă pentru comenzi virtuale"
12595
+
12596
+ #~ msgid "Select shipping methods"
12597
+ #~ msgstr "Selectează modalitatea de expediere"
12598
+
12599
+ #~ msgid ""
12600
+ #~ "If COD is only available for certain methods, set it up here. Leave blank "
12601
+ #~ "to enable for all methods."
12602
+ #~ msgstr ""
12603
+ #~ "Dacă această metodă (Plată Ramburs) este disponilbilă numai pentru "
12604
+ #~ "anumite metode de livrare, introduceţi-le aici. Lăsaţi gol pentru a "
12605
+ #~ "activa pentru toate metodele."
12606
+
12607
+ #~ msgid "Enable for shipping methods"
12608
+ #~ msgstr "Activează pentru Metodele de Livrare"
12609
+
12610
+ #~ msgid "Instructions that will be added to the thank you page."
12611
+ #~ msgstr "Instrucțiunile vor fi adăugate pe pagina MULŢUMIM."
12612
+
12613
+ #~ msgid "Pay with cash upon delivery."
12614
+ #~ msgstr "Plătește cu numerar la livrare."
12615
+
12616
+ #~ msgid ""
12617
+ #~ "Payment method description that the customer will see on your website."
12618
+ #~ msgstr "Descrierea metodei de plată pe care clientul o vede pe site."
12619
+
12620
+ #~ msgid "Have your customers pay with cash (or by other means) upon delivery."
12621
+ #~ msgstr "Clienții plătesc numerar, la livrare."
12622
+
12623
+ #~ msgid ""
12624
+ #~ "Please send a check to Store Name, Store Street, Store Town, Store "
12625
+ #~ "State / County, Store Postcode."
12626
+ #~ msgstr ""
12627
+ #~ "Te rog trimite un cec către Nume magazin, Stradă magazin, Oraș magazin, "
12628
+ #~ "Județ/regiune magazin, Cod poștal magazin."
12629
+
12630
+ #~ msgid "Enable check payments"
12631
+ #~ msgstr "Activează plăți cu cec"
12632
+
12633
+ #~ msgid "Branch code"
12634
+ #~ msgstr "Cod sucursală"
12635
+
12636
+ #~ msgid "Routing number"
12637
+ #~ msgstr "Număr de rutare"
12638
+
12639
+ #~ msgid "Bank code"
12640
+ #~ msgstr "Cod bancă"
12641
+
12642
+ #~ msgid "Branch sort"
12643
+ #~ msgstr "Sortare sucursală"
12644
+
12645
+ #~ msgid "IFSC"
12646
+ #~ msgstr "IFSC"
12647
+
12648
+ #~ msgid "Bank transit number"
12649
+ #~ msgstr "Număr de tranzit al băncii"
12650
+
12651
+ #~ msgid "BSB"
12652
+ #~ msgstr "BSB"
12653
+
12654
+ #~ msgid "Awaiting BACS payment"
12655
+ #~ msgstr "Așteaptă plata prin transfer bancar (BACS)"
12656
+
12657
+ #~ msgid "BIC"
12658
+ #~ msgstr "BIC"
12659
+
12660
+ #~ msgid "Our bank details"
12661
+ #~ msgstr "Detaliile noastre bancare"
12662
+
12663
+ #~ msgid "Remove selected account(s)"
12664
+ #~ msgstr "Șterge contul/conturile selectate"
12665
+
12666
+ #~ msgid "+ Add account"
12667
+ #~ msgstr "+ Adaugă cont"
12668
+
12669
+ #~ msgid "BIC / Swift"
12670
+ #~ msgstr "BIC / Swift"
12671
+
12672
+ #~ msgid "IBAN"
12673
+ #~ msgstr "IBAN"
12674
+
12675
+ #~ msgid "Bank name"
12676
+ #~ msgstr "Nume bancă"
12677
+
12678
+ #~ msgid "Account number"
12679
+ #~ msgstr "Număr cont"
12680
+
12681
+ #~ msgid "Account name"
12682
+ #~ msgstr "Nume cont"
12683
+
12684
+ #~ msgid "Account details"
12685
+ #~ msgstr "Detalii cont"
12686
+
12687
+ #~ msgid "Sort code"
12688
+ #~ msgstr "Sortează cod"
12689
+
12690
+ #~ msgid "Instructions that will be added to the thank you page and emails."
12691
+ #~ msgstr ""
12692
+ #~ "Instrucțiuni ce vor fi adăugate pe pagina de comandă finalizată și în e-"
12693
+ #~ "mailuri."
12694
+
12695
+ #~ msgid "Instructions"
12696
+ #~ msgstr "Instrucțiuni"
12697
+
12698
+ #~ msgid ""
12699
+ #~ "Make your payment directly into our bank account. Please use your Order "
12700
+ #~ "ID as the payment reference. Your order will not be shipped until the "
12701
+ #~ "funds have cleared in our account."
12702
+ #~ msgstr ""
12703
+ #~ "Fă plata direct în contul nostru bancar. Te rog folosește ID-ul comenzii "
12704
+ #~ "tale ca referință de plată. Comanda nu va fi livrată până când fondurile "
12705
+ #~ "nu vor fi vărsate în contul nostru."
12706
+
12707
+ #~ msgid ""
12708
+ #~ "Payment method description that the customer will see on your checkout."
12709
+ #~ msgstr ""
12710
+ #~ "Descrierea metodei de plată pe care clientul o va vedea la finalizarea ta."
12711
+
12712
+ #~ msgid "Direct bank transfer"
12713
+ #~ msgstr "Transfer bancar direct"
12714
+
12715
+ #~ msgid "This controls the title which the user sees during checkout."
12716
+ #~ msgstr ""
12717
+ #~ "Asta controlează titlul pe care utilizatorul îl vede în timpul "
12718
+ #~ "finalizării."
12719
+
12720
+ #~ msgid "Enable bank transfer"
12721
+ #~ msgstr "Activează transfer bancar"
12722
+
12723
+ #~ msgid "Hide template"
12724
+ #~ msgstr "Ascunde șablon"
12725
+
12726
+ #~ msgid "View template"
12727
+ #~ msgstr "Vezi șablonul"
12728
+
12729
+ #~ msgid "File was not found."
12730
+ #~ msgstr "Fișierul nu a fost găsit."
12731
+
12732
+ #~ msgid "Copy file to theme"
12733
+ #~ msgstr "Copiază fișierul în temă"
12734
+
12735
+ #~ msgid ""
12736
+ #~ "This template has been overridden by your theme and can be found in: %s."
12737
+ #~ msgstr ""
12738
+ #~ "Acest șablon a fost contramandat de tema ta și poate fi găsit în: %s."
12739
+
12740
+ #~ msgid "Delete template file"
12741
+ #~ msgstr "Șterge fișierul șablon"
12742
+
12743
+ #~ msgid "Plain text template"
12744
+ #~ msgstr "Șablon text simplu"
12745
+
12746
+ #~ msgid "HTML template"
12747
+ #~ msgstr "Șablon HTML"
12748
+
12749
+ #~ msgid "Template file deleted from theme."
12750
+ #~ msgstr "Fișier șablon șters din temă."
12751
+
12752
+ #~ msgid "Template file copied to theme."
12753
+ #~ msgstr "Fișier șablon copiat în directorul temei."
12754
+
12755
+ #~ msgid "Could not write to template file."
12756
+ #~ msgstr "Nu am putut scrie în fișierul șablon."
12757
+
12758
+ #~ msgid "Multipart"
12759
+ #~ msgstr "Mai multe părţi"
12760
+
12761
+ #~ msgid "HTML"
12762
+ #~ msgstr "HTML"
12763
+
12764
+ #~ msgid "Plain text"
12765
+ #~ msgstr "Text simplu"
12766
+
12767
+ #~ msgid ""
12768
+ #~ "New order emails are sent to chosen recipient(s) when a new order is "
12769
+ #~ "received."
12770
+ #~ msgstr ""
12771
+ #~ "Emailuri pentru comandă nouă sunt trimise la destinatar(i) atunci când o "
12772
+ #~ "comandă nouă este primită."
12773
+
12774
+ #~ msgid "New order"
12775
+ #~ msgstr "Comandă nouă"
12776
+
12777
+ #~ msgid ""
12778
+ #~ "Customer \"reset password\" emails are sent when customers reset their "
12779
+ #~ "passwords."
12780
+ #~ msgstr ""
12781
+ #~ "Emailurile \"Resetare Parola\" sunt trimise atunci când un client își "
12782
+ #~ "resetează parola."
12783
+
12784
+ #~ msgid "Reset password"
12785
+ #~ msgstr "Resetează parola"
12786
+
12787
+ #~ msgid ""
12788
+ #~ "Order refunded emails are sent to customers when their orders are "
12789
+ #~ "refunded."
12790
+ #~ msgstr ""
12791
+ #~ "Emailurile de comandă rambursată sunt trimise clienților când comenzile "
12792
+ #~ "lor sunt rambursate."
12793
+
12794
+ #~ msgid "Refunded order"
12795
+ #~ msgstr "Comandă rambursată"
12796
+
12797
+ #~ msgid ""
12798
+ #~ "This is an order notification sent to customers containing order details "
12799
+ #~ "after payment."
12800
+ #~ msgstr ""
12801
+ #~ "Aceasta este o notificare pentru comandă trimisă clienților, care conține "
12802
+ #~ "detalii asupra comenzii după efectuarea plății."
12803
+
12804
+ #~ msgid "Processing order"
12805
+ #~ msgstr "Comandă în procesare"
12806
+
12807
+ #~ msgid "Customer note emails are sent when you add a note to an order."
12808
+ #~ msgstr ""
12809
+ #~ "Emailurile pentru Notițe Client - sunt trimise atunci când adaugi o "
12810
+ #~ "notită la o comandă"
12811
+
12812
+ #~ msgid "Customer note"
12813
+ #~ msgstr "Mențiune Client"
12814
+
12815
+ #~ msgid ""
12816
+ #~ "Customer \"new account\" emails are sent to the customer when a customer "
12817
+ #~ "signs up via checkout or account pages."
12818
+ #~ msgstr ""
12819
+ #~ "Emailurile de \"client nou\" sunt trimise acestuia atunci când el se "
12820
+ #~ "înregistrează via paginile de finalizare sau a celor de cont."
12821
+
12822
+ #~ msgid "New account"
12823
+ #~ msgstr "Cont Nou"
12824
+
12825
+ #~ msgid ""
12826
+ #~ "Customer invoice emails can be sent to customers containing their order "
12827
+ #~ "information and payment links."
12828
+ #~ msgstr ""
12829
+ #~ "Emailurile \"Factura Client\" sunt trimise catre client atunci cand "
12830
+ #~ "plaseaza o comanda si includ detaliile comenzii și un link-uri pentru "
12831
+ #~ "plata acesteia."
12832
+
12833
+ #~ msgid ""
12834
+ #~ "Order complete emails are sent to customers when their orders are marked "
12835
+ #~ "completed and usually indicate that their orders have been shipped."
12836
+ #~ msgstr ""
12837
+ #~ "E-mailuri \"Comandă completă\" sunt trimise către client atunci când "
12838
+ #~ "comanda este marcată ca completă / finalizată și de obicei înseamnă că "
12839
+ #~ "articolele din comandă au fost expediate."
12840
+
12841
+ #~ msgid "Completed order"
12842
+ #~ msgstr "Comandă finalizată"
12843
+
12844
+ #~ msgid "Choose which format of email to send."
12845
+ #~ msgstr "Alege formatul de email pentru trimitere."
12846
+
12847
+ #~ msgid "Enable this email notification"
12848
+ #~ msgstr "Activează această notificare prin email"
12849
+
12850
+ #~ msgid "Enable/Disable"
12851
+ #~ msgstr "Activare/dezactivare"
12852
+
12853
+ #~ msgid ""
12854
+ #~ "Failed order emails are sent to chosen recipient(s) when orders have been "
12855
+ #~ "marked failed (if they were previously processing or on-hold)."
12856
+ #~ msgstr ""
12857
+ #~ "Emailurile comenzii eșuate sunt trimise către destinatarul ales/"
12858
+ #~ "destinatarii aleși atunci când comenzile au fost marcate ca eșuate (dacă "
12859
+ #~ "au fost în prealabil prelucrate sau în așteptare)."
12860
+
12861
+ #~ msgid "Select options"
12862
+ #~ msgstr "Selectează opțiuni"
12863
+
12864
+ #~ msgid "Failed <span class=\"count\">(%s)</span>"
12865
+ #~ msgid_plural "Failed <span class=\"count\">(%s)</span>"
12866
+ #~ msgstr[0] "Eșuate <span class=\"count\">(%s)</span>"
12867
+ #~ msgstr[1] "Eșuate <span class=\"count\">(%s)</span>"
12868
+ #~ msgstr[2] "Eșuate <span class=\"count\">(%s)</span>"
12869
+
12870
+ #~ msgctxt "Order status"
12871
+ #~ msgid "Failed"
12872
+ #~ msgstr "Eșuată"
12873
+
12874
+ #~ msgid "Refunded <span class=\"count\">(%s)</span>"
12875
+ #~ msgid_plural "Refunded <span class=\"count\">(%s)</span>"
12876
+ #~ msgstr[0] "Rambursată <span class=\"count\">(%s)</span>"
12877
+ #~ msgstr[1] "Rambursate <span class=\"count\">(%s)</span>"
12878
+ #~ msgstr[2] "Rambursate <span class=\"count\">(%s)</span>"
12879
+
12880
+ #~ msgctxt "Order status"
12881
+ #~ msgid "Refunded"
12882
+ #~ msgstr "Rambursată"
12883
+
12884
+ #~ msgid "Cancelled <span class=\"count\">(%s)</span>"
12885
+ #~ msgid_plural "Cancelled <span class=\"count\">(%s)</span>"
12886
+ #~ msgstr[0] "Anulate <span class=\"count\">(%s)</span>"
12887
+ #~ msgstr[1] "Anulate <span class=\"count\">(%s)</span>"
12888
+ #~ msgstr[2] "Anulate <span class=\"count\">(%s)</span>"
12889
+
12890
+ #~ msgid "Completed <span class=\"count\">(%s)</span>"
12891
+ #~ msgid_plural "Completed <span class=\"count\">(%s)</span>"
12892
+ #~ msgstr[0] "Finalizate <span class=\"count\">(%s)</span>"
12893
+ #~ msgstr[1] "Finalizate <span class=\"count\">(%s)</span>"
12894
+ #~ msgstr[2] "Finalizate <span class=\"count\">(%s)</span>"
12895
+
12896
+ #~ msgctxt "Order status"
12897
+ #~ msgid "Completed"
12898
+ #~ msgstr "Finalizată"
12899
+
12900
+ #~ msgid "On hold <span class=\"count\">(%s)</span>"
12901
+ #~ msgid_plural "On hold <span class=\"count\">(%s)</span>"
12902
+ #~ msgstr[0] "În așteptare <span class=\"count\">(%s)</span>"
12903
+ #~ msgstr[1] "În așteptare <span class=\"count\">(%s)</span>"
12904
+ #~ msgstr[2] "În așteptare <span class=\"count\">(%s)</span>"
12905
+
12906
+ #~ msgctxt "Order status"
12907
+ #~ msgid "On hold"
12908
+ #~ msgstr "În așteptare"
12909
+
12910
+ #~ msgid "Processing <span class=\"count\">(%s)</span>"
12911
+ #~ msgid_plural "Processing <span class=\"count\">(%s)</span>"
12912
+ #~ msgstr[0] "În procesare <span class=\"count\">(%s)</span>"
12913
+ #~ msgstr[1] "În procesare <span class=\"count\">(%s)</span>"
12914
+ #~ msgstr[2] "În procesare <span class=\"count\">(%s)</span>"
12915
+
12916
+ #~ msgctxt "Order status"
12917
+ #~ msgid "Processing"
12918
+ #~ msgstr "În procesare"
12919
+
12920
+ #~ msgid "Pending payment <span class=\"count\">(%s)</span>"
12921
+ #~ msgid_plural "Pending payment <span class=\"count\">(%s)</span>"
12922
+ #~ msgstr[0] "Plăți în așteptare <span class=\"count\">(%s)</span>"
12923
+ #~ msgstr[1] "Plăți în așteptare <span class=\"count\">(%s)</span>"
12924
+ #~ msgstr[2] "Plăți în așteptare <span class=\"count\">(%s)</span>"
12925
+
12926
+ #~ msgctxt "Order status"
12927
+ #~ msgid "Pending payment"
12928
+ #~ msgstr "Plată în așteptare"
12929
+
12930
+ #~ msgid "No webhooks found."
12931
+ #~ msgstr "Niciun cârlig web găsit."
12932
+
12933
+ #~ msgid ""
12934
+ #~ "This is where you can add new coupons that customers can use in your "
12935
+ #~ "store."
12936
+ #~ msgstr ""
12937
+ #~ "De aici se pot adăuga cupoane ce pot fi utilizate de clienții magazinului."
12938
+
12939
+ #~ msgid "Parent coupon"
12940
+ #~ msgstr "Cupon părinte"
12941
+
12942
+ #~ msgid "No coupons found in trash"
12943
+ #~ msgstr "Niciun cupon găsit la gunoi"
12944
+
12945
+ #~ msgid "No coupons found"
12946
+ #~ msgstr "Niciun cupon găsit"
12947
+
12948
+ #~ msgid "Search coupons"
12949
+ #~ msgstr "Caută cupoane"
12950
+
12951
+ #~ msgid "View coupon"
12952
+ #~ msgstr "Vizualizare cupon"
12953
+
12954
+ #~ msgid "New coupon"
12955
+ #~ msgstr "Cupon nou"
12956
+
12957
+ #~ msgid "Edit coupon"
12958
+ #~ msgstr "Editează cupon"
12959
+
12960
+ #~ msgid "Add new coupon"
12961
+ #~ msgstr "Adaugă cupon nou"
12962
+
12963
+ #~ msgid "Add coupon"
12964
+ #~ msgstr "Adaugă cupon"
12965
+
12966
+ #~ msgctxt "Admin menu name"
12967
+ #~ msgid "Coupons"
12968
+ #~ msgstr "Cupoane"
12969
+
12970
+ #~ msgid "Coupon"
12971
+ #~ msgstr "Cupon"
12972
+
12973
+ #~ msgid "Refunds"
12974
+ #~ msgstr "Rambursări"
12975
+
12976
+ #~ msgid "This is where store orders are stored."
12977
+ #~ msgstr "Aici sunt stocate Comenzile Magazinului"
12978
+
12979
+ #~ msgid "Parent orders"
12980
+ #~ msgstr "Comenzi părinte"
12981
+
12982
+ #~ msgid "No orders found in trash"
12983
+ #~ msgstr "Nicio comandă găsită la gunoi"
12984
+
12985
+ #~ msgid "No orders found"
12986
+ #~ msgstr "Nicio comandă găsită"
12987
+
12988
+ #~ msgid "Search orders"
12989
+ #~ msgstr "Caută comenzi"
12990
+
12991
+ #~ msgid "Edit order"
12992
+ #~ msgstr "Editează comanda"
12993
+
12994
+ #~ msgid "Add new order"
12995
+ #~ msgstr "Adaugă comandă nouă"
12996
+
12997
+ #~ msgid "Add order"
12998
+ #~ msgstr "Adaugă comandă"
12999
+
13000
+ #~ msgid "This is where you can add new products to your store."
13001
+ #~ msgstr "De aici poți adăuga produse noi pentru magazin."
13002
+
13003
+ #~ msgid "Use as product image"
13004
+ #~ msgstr "Folosește ca imagine produs"
13005
+
13006
+ #~ msgid "Remove product image"
13007
+ #~ msgstr "Înlătură imagine produs"
13008
+
13009
+ #~ msgid "Set product image"
13010
+ #~ msgstr "Setează imagine produs"
13011
+
13012
+ #~ msgid "Product image"
13013
+ #~ msgstr "Imagine produs"
13014
+
13015
+ #~ msgid "Parent product"
13016
+ #~ msgstr "Produs părinte"
13017
+
13018
+ #~ msgid "No products found in trash"
13019
+ #~ msgstr "Niciun produs găsit la gunoi"
13020
+
13021
+ #~ msgid "No products found"
13022
+ #~ msgstr "Niciun produs găsit"
13023
+
13024
+ #~ msgid "Search products"
13025
+ #~ msgstr "Caută produse"
13026
+
13027
+ #~ msgid "View product"
13028
+ #~ msgstr "Vizualizează produs"
13029
+
13030
+ #~ msgid "New product"
13031
+ #~ msgstr "Produs nou"
13032
+
13033
+ #~ msgid "Edit product"
13034
+ #~ msgstr "Editează produsul"
13035
+
13036
+ #~ msgid "Add new product"
13037
+ #~ msgstr "Adaugă produs nou"
13038
+
13039
+ #~ msgctxt "Admin menu name"
13040
+ #~ msgid "Products"
13041
+ #~ msgstr "Produse"
13042
+
13043
+ #~ msgid "New %s"
13044
+ #~ msgstr "%s nou"
13045
+
13046
+ #~ msgid "Add new %s"
13047
+ #~ msgstr "Adaugă %s nou"
13048
+
13049
+ #~ msgid "Update %s"
13050
+ #~ msgstr "Actualizează %s"
13051
+
13052
+ #~ msgid "Edit %s"
13053
+ #~ msgstr "Editează %s"
13054
+
13055
+ #~ msgid "Parent %s:"
13056
+ #~ msgstr "%s părinte:"
13057
+
13058
+ #~ msgid "Parent %s"
13059
+ #~ msgstr "Părinte %s"
13060
+
13061
+ #~ msgid "All %s"
13062
+ #~ msgstr "Toate %s"
13063
+
13064
+ #~ msgid "Search %s"
13065
+ #~ msgstr "Caută %s"
13066
+
13067
+ #~ msgid "New shipping class Name"
13068
+ #~ msgstr "Nume clasă de livrare nouă"
13069
+
13070
+ #~ msgid "Add new shipping class"
13071
+ #~ msgstr "Adaugă clasă de livrare nouă"
13072
+
13073
+ #~ msgid "Update shipping class"
13074
+ #~ msgstr "Actualizare clasă de livrare"
13075
+
13076
+ #~ msgid "Edit shipping class"
13077
+ #~ msgstr "Editare clasă de livrare"
13078
+
13079
+ #~ msgid "Parent shipping class:"
13080
+ #~ msgstr "Clasă de livrare părinte:"
13081
+
13082
+ #~ msgid "Parent shipping class"
13083
+ #~ msgstr "Clasă de livrare părinte"
13084
+
13085
+ #~ msgid "All shipping classes"
13086
+ #~ msgstr "Toate clasele de livrare"
13087
+
13088
+ #~ msgid "Search shipping classes"
13089
+ #~ msgstr "Caută clase de livrare"
13090
+
13091
+ #~ msgctxt "Admin menu name"
13092
+ #~ msgid "Shipping classes"
13093
+ #~ msgstr "Clase de livrare"
13094
+
13095
+ #~ msgctxt "Admin menu name"
13096
+ #~ msgid "Tags"
13097
+ #~ msgstr "Etichete"
13098
+
13099
+ #~ msgid "Product tags"
13100
+ #~ msgstr "Etichete produs"
13101
+
13102
+ #~ msgctxt "Admin menu name"
13103
+ #~ msgid "Categories"
13104
+ #~ msgstr "Categorii"
13105
+
13106
+ #~ msgid "Premium support"
13107
+ #~ msgstr "Suport premium"
13108
+
13109
+ #~ msgid "API docs"
13110
+ #~ msgstr "Documente API"
13111
+
13112
+ #~ msgid "View WooCommerce API docs"
13113
+ #~ msgstr "Vezi documente API WooCommerce"
13114
+
13115
+ #~ msgid "View WooCommerce documentation"
13116
+ #~ msgstr "Vezi documentație WooCommerce"
13117
+
13118
+ #~ msgctxt "Page slug"
13119
+ #~ msgid "my-account"
13120
+ #~ msgstr "contul-meu"
13121
+
13122
+ #~ msgctxt "Page slug"
13123
+ #~ msgid "checkout"
13124
+ #~ msgstr "finalizare"
13125
+
13126
+ #~ msgctxt "Page slug"
13127
+ #~ msgid "cart"
13128
+ #~ msgstr "coș"
13129
+
13130
+ #~ msgctxt "Page slug"
13131
+ #~ msgid "shop"
13132
+ #~ msgstr "magazin"
13133
+
13134
+ #~ msgid ""
13135
+ #~ "Sorry, this product is unavailable. Please choose a different combination."
13136
+ #~ msgstr ""
13137
+ #~ "Ne pare rău, acest produs nu este disponibil. Te rugăm să alegi o altă "
13138
+ #~ "combinație."
13139
+
13140
+ #~ msgid ""
13141
+ #~ "Sorry, no products matched your selection. Please choose a different "
13142
+ #~ "combination."
13143
+ #~ msgstr ""
13144
+ #~ "Ne pare rău, dar nu avem produse care sa corespundă criteriilor dvs. Vă "
13145
+ #~ "rugăm încercați o altă combinație."
13146
+
13147
+ #~ msgid "required"
13148
+ #~ msgstr "obligatoriu"
13149
+
13150
+ #~ msgid "Error processing checkout. Please try again."
13151
+ #~ msgstr "Eroare de procesare la finalizare. Te rog încearcă din nou."
13152
+
13153
+ #~ msgid "Please select a rating"
13154
+ #~ msgstr "Vă rugăm selectați o notă"
13155
+
13156
+ #~ msgid "Passwords do not match."
13157
+ #~ msgstr "Parolele nu sunt identice."
13158
+
13159
+ #~ msgid "Please enter your password."
13160
+ #~ msgstr "Vă rugăm introduceți parola."
13161
+
13162
+ #~ msgid "Username is required."
13163
+ #~ msgstr "Numele de utilizator este necesar."
13164
+
13165
+ #~ msgid "Error"
13166
+ #~ msgstr "Eroare"
13167
+
13168
+ #~ msgid "Please choose product options&hellip;"
13169
+ #~ msgstr "Vă rugăm selectați opțiunile produsului &hellip;"
13170
+
13171
+ #~ msgid "%s is a required field"
13172
+ #~ msgid_plural "%s are required fields"
13173
+ #~ msgstr[0] "% este un câmp obligatoriu"
13174
+ #~ msgstr[1] "% sunt câmpuri obligatorii"
13175
+ #~ msgstr[2] "% sunt câmpuri obligatorii"
13176
+
13177
+ #~ msgid "Please choose a product to add to your cart&hellip;"
13178
+ #~ msgstr "Vă rugăm selectați un produs pentru a-l adăuga în coș &hellip;"
13179
+
13180
+ #~ msgid ""
13181
+ #~ "Please choose the quantity of items you wish to add to your cart&hellip;"
13182
+ #~ msgstr ""
13183
+ #~ "Vă rugăm să alegeţi cantitatea de produse pe care doriți să le adăugați "
13184
+ #~ "în coş&hellip;"
13185
+
13186
+ #~ msgid ""
13187
+ #~ "Your order can no longer be cancelled. Please contact us if you need "
13188
+ #~ "assistance."
13189
+ #~ msgstr ""
13190
+ #~ "Comanda dvs. nu mai poate fi anulată. Vă rugăm să ne contactați dacă "
13191
+ #~ "aveți nevoie de ajutor."
13192
+
13193
+ #~ msgid "Your order was cancelled."
13194
+ #~ msgstr "Comanda dvs. a fost anulată."
13195
+
13196
+ #~ msgid "Order cancelled by customer."
13197
+ #~ msgstr "Comandă anulată de către client."
13198
+
13199
+ #~ msgid "The cart has been filled with the items from your previous order."
13200
+ #~ msgstr "Coșul de Cumpărături a fost umplut cu produse comandate anterior."
13201
+
13202
+ #~ msgid "Cart updated."
13203
+ #~ msgstr "Coș actualizat."
13204
+
13205
+ #~ msgid "You can only have 1 %s in your cart."
13206
+ #~ msgstr "Poți avea numai 1 %s în coș."
13207
+
13208
+ #~ msgid "Account details changed successfully."
13209
+ #~ msgstr "Detaliile contului au fost schimbate cu succes."
13210
+
13211
+ #~ msgid "New passwords do not match."
13212
+ #~ msgstr "Parola nouă nu se potrivește."
13213
+
13214
+ #~ msgid "Please re-enter your password."
13215
+ #~ msgstr "Vă rugăm să reintroduceți parola dvs."
13216
+
13217
+ #~ msgid "Please enter your current password."
13218
+ #~ msgstr "Vă rugăm introduceți parola actuală."
13219
+
13220
+ #~ msgid "Please fill out all password fields."
13221
+ #~ msgstr "Vă rugăm să completați toate câmpurile de parolă."
13222
+
13223
+ #~ msgid "Your current password is incorrect."
13224
+ #~ msgstr "Parola actuală este incorectă."
13225
+
13226
+ #~ msgid "This email address is already registered."
13227
+ #~ msgstr "Această adresă de e-mail este deja înregistrată."
13228
+
13229
+ #~ msgid "Please provide a valid email address."
13230
+ #~ msgstr "Te rog introdu o adresă email validă."
13231
+
13232
+ #~ msgid "Address changed successfully."
13233
+ #~ msgstr "Adresa a fost schimbată cu succes"
13234
+
13235
+ #~ msgid "%1$s units of %2$s have been backordered in order #%3$s."
13236
+ #~ msgstr "%1$s bucăți din %2$s au fost precomandate în comanda #%3$s."
13237
+
13238
+ #~ msgid "Product backorder"
13239
+ #~ msgstr "Precomandă produs"
13240
+
13241
+ #~ msgid "%s is out of stock."
13242
+ #~ msgstr "%s nu mai este pe stoc."
13243
+
13244
+ #~ msgid "Product out of stock"
13245
+ #~ msgstr "Produs cu stoc epuizat"
13246
+
13247
+ #~ msgid "Product low in stock"
13248
+ #~ msgstr "Produs cu stoc redus"
13249
+
13250
+ #~ msgid "Note"
13251
+ #~ msgstr "Notiță"
13252
+
13253
+ #~ msgid "File not found"
13254
+ #~ msgstr "Fișierul nu a fost găsit"
13255
+
13256
+ #~ msgid "No file defined"
13257
+ #~ msgstr "Nici un fișier definit"
13258
+
13259
+ #~ msgid "This is not your download link."
13260
+ #~ msgstr "Acesta nu este link-ul tău pentru descărcări."
13261
+
13262
+ #~ msgid "Log in to Download Files"
13263
+ #~ msgstr "Autentificați-vă pentru a descărca Fișierele"
13264
+
13265
+ #~ msgid "Login"
13266
+ #~ msgstr "Autentificare"
13267
+
13268
+ #~ msgid "You must be logged in to download files."
13269
+ #~ msgstr "Trebuie să fi autentificat pentru a descărca fișiere."
13270
+
13271
+ #~ msgid "Sorry, this download has expired"
13272
+ #~ msgstr "Ne pare rău acest fișier descărcabil nu mai este disponibil"
13273
+
13274
+ #~ msgid "Sorry, you have reached your download limit for this file"
13275
+ #~ msgstr ""
13276
+ #~ "Ne pare rău ai atins limita permisă de descărcări pentru acest fișier."
13277
+
13278
+ #~ msgid "Invalid order."
13279
+ #~ msgstr "Comandă invalidă."
13280
+
13281
+ #~ msgid "Invalid download link."
13282
+ #~ msgstr "Acesta nu este link-ul tău pentru descărcări."
13283
+
13284
+ #~ msgid "Please enter a coupon code."
13285
+ #~ msgstr "Vă rugăm introduceți un cod de promoție."
13286
+
13287
+ #~ msgid "Coupon does not exist!"
13288
+ #~ msgstr "Codul Promoțional nu există!"
13289
+
13290
+ #~ msgid "Sorry, this coupon is not valid for sale items."
13291
+ #~ msgstr "Regret, acest cupon nu este valabil pentru elemente de vânzare."
13292
+
13293
+ #~ msgid "Sorry, this coupon is not applicable to the categories: %s."
13294
+ #~ msgstr "Scuze, acest cupon nu poate fi aplicat acestor categorii: %s."
13295
+
13296
+ #~ msgid "Sorry, this coupon is not applicable to the products: %s."
13297
+ #~ msgstr "Scuze, acest cupon nu poate fi folosit cu acest produs: %s."
13298
+
13299
+ #~ msgid "Sorry, this coupon is not applicable to your cart contents."
13300
+ #~ msgstr "Regret, acest cupon nu se aplică pentru conținutul coșului tău."
13301
+
13302
+ #~ msgid "The maximum spend for this coupon is %s."
13303
+ #~ msgstr "Cheltuiala maximă pentru acest cupon este %s."
13304
+
13305
+ #~ msgid "The minimum spend for this coupon is %s."
13306
+ #~ msgstr "Valoarea minimă a facturii pentru a utiliza acest cupon este de %s."
13307
+
13308
+ #~ msgid "This coupon has expired."
13309
+ #~ msgstr "Acest cupon a expirat."
13310
+
13311
+ #~ msgid "Coupon usage limit has been reached."
13312
+ #~ msgstr "Limita de utilizare a Codului Promoțional a fost atinsă."
13313
+
13314
+ #~ msgid ""
13315
+ #~ "Sorry, coupon \"%s\" has already been applied and cannot be used in "
13316
+ #~ "conjunction with other coupons."
13317
+ #~ msgstr ""
13318
+ #~ "Ne pare rău, dar cuponul \"%s\" a fost deja folosit și nu poate fi "
13319
+ #~ "folosit împreună cu alte cupoane"
13320
+
13321
+ #~ msgid "Coupon code already applied!"
13322
+ #~ msgstr "Codul Promoțional a fost deja aplicat!"
13323
+
13324
+ #~ msgid ""
13325
+ #~ "Sorry, it seems the coupon \"%s\" is not yours - it has now been removed "
13326
+ #~ "from your order."
13327
+ #~ msgstr ""
13328
+ #~ "Ne pare rău, cuponul \"%s\" nu vă aparține - a fost eliminat din comanda "
13329
+ #~ "dvs."
13330
+
13331
+ #~ msgid ""
13332
+ #~ "Sorry, it seems the coupon \"%s\" is invalid - it has now been removed "
13333
+ #~ "from your order."
13334
+ #~ msgstr ""
13335
+ #~ "Ne pare rău, cuponul \"%s\" este invalid - a fost eliminat din comanda "
13336
+ #~ "dvs."
13337
+
13338
+ #~ msgid "Coupon \"%s\" does not exist!"
13339
+ #~ msgstr "Cuponul \"%s\" nu există!"
13340
+
13341
+ #~ msgid "Coupon is not valid."
13342
+ #~ msgstr "Codul Promoțional nu este valid."
13343
+
13344
+ #~ msgid "Coupon code removed successfully."
13345
+ #~ msgstr "Codul promoțional a fost eliminat cu succes."
13346
+
13347
+ #~ msgid "Coupon code applied successfully."
13348
+ #~ msgstr "Codul Promoțional a fost aplicat cu succes."
13349
+
13350
+ #~ msgid "Email Address"
13351
+ #~ msgstr "Adresă email"
13352
+
13353
+ #~ msgid "Municipality"
13354
+ #~ msgstr "Municipalitate"
13355
+
13356
+ #~ msgid "Prefecture"
13357
+ #~ msgstr "Zonă"
13358
+
13359
+ #~ msgid "County"
13360
+ #~ msgstr "Județ"
13361
+
13362
+ #~ msgid "Town / District"
13363
+ #~ msgstr "Oraș / Sector"
13364
+
13365
+ #~ msgid "Region"
13366
+ #~ msgstr "Regiune"
13367
+
13368
+ #~ msgid "Canton"
13369
+ #~ msgstr "Canton"
13370
+
13371
+ #~ msgid "Province"
13372
+ #~ msgstr "Provincie"
13373
+
13374
+ #~ msgid "District"
13375
+ #~ msgstr "Județ"
13376
+
13377
+ #~ msgid "Suburb"
13378
+ #~ msgstr "Cartier"
13379
+
13380
+ #~ msgid "Postcode / ZIP"
13381
+ #~ msgstr "Cod poștal"
13382
+
13383
+ #~ msgid "State / County"
13384
+ #~ msgstr "Stat / Județ"
13385
+
13386
+ #~ msgid "Town / City"
13387
+ #~ msgstr "Oraș"
13388
+
13389
+ #~ msgid "Company name"
13390
+ #~ msgstr "Nume companie"
13391
+
13392
+ #~ msgid "(ex. tax)"
13393
+ #~ msgstr "(exclude taxe)"
13394
+
13395
+ #~ msgid "(ex. VAT)"
13396
+ #~ msgstr "(exclude TVA)"
13397
+
13398
+ #~ msgid "(incl. tax)"
13399
+ #~ msgstr "(include Taxe)"
13400
+
13401
+ #~ msgid "(incl. VAT)"
13402
+ #~ msgstr "(include TVA)"
13403
+
13404
+ #~ msgid "VAT"
13405
+ #~ msgstr "TVA"
13406
+
13407
+ #~ msgid "the"
13408
+ #~ msgstr "the"
13409
+
13410
+ #~ msgid "to"
13411
+ #~ msgstr "la"
13412
+
13413
+ #~ msgid "to the"
13414
+ #~ msgstr "către (?)"
13415
+
13416
+ #~ msgid "Please rate the product."
13417
+ #~ msgstr "Vă rugăm evaluați produsul."
13418
+
13419
+ #~ msgid "Invalid payment method."
13420
+ #~ msgstr "Metodă de plată invalidă."
13421
+
13422
+ #~ msgid "Invalid shipping method!"
13423
+ #~ msgstr "Metodă de livrare invalidă!"
13424
+
13425
+ #~ msgid ""
13426
+ #~ "Unfortunately <strong>we do not ship %s</strong>. Please enter an "
13427
+ #~ "alternative shipping address."
13428
+ #~ msgstr ""
13429
+ #~ "Din păcate <strong>noi nu livrăm %s</strong>. Te rog introdu o adresă "
13430
+ #~ "alternativă de livrare."
13431
+
13432
+ #~ msgid "%1$s is not valid. Please enter one of the following: %2$s"
13433
+ #~ msgstr "%1$s nu este valid. Te rog introdu unul din următoarele: %2$s"
13434
+
13435
+ #~ msgid "%s is not a valid email address."
13436
+ #~ msgstr "%s nu este o adresă de email validă."
13437
+
13438
+ #~ msgid "%s is not a valid phone number."
13439
+ #~ msgstr "%s nu este un număr de telefon valid."
13440
+
13441
+ #~ msgid "Please enter a valid postcode / ZIP."
13442
+ #~ msgstr "Te rog introdu un cod poștal / ZIP valid."
13443
+
13444
+ #~ msgid "%s is a required field."
13445
+ #~ msgstr "%s este un câmp obligatoriu."
13446
+
13447
+ #~ msgid ""
13448
+ #~ "Sorry, your session has expired. <a href=\"%s\" class=\"wc-backward"
13449
+ #~ "\">Return to shop</a>"
13450
+ #~ msgstr ""
13451
+ #~ "Regret, sesiunea ta a expirat. <a href=\"%s\" class=\"wc-backward"
13452
+ #~ "\">Înapoi la magazin</a>"
13453
+
13454
+ #~ msgid "We were unable to process your order, please try again."
13455
+ #~ msgstr "N-am putut să-ți procesăm comanda, te rog încearcă din nou."
13456
+
13457
+ #~ msgid "Notes about your order, e.g. special notes for delivery."
13458
+ #~ msgstr ""
13459
+ #~ "Observații despre comanda ta, de exemplu: anumite detalii pentru livrare."
13460
+
13461
+ #~ msgid "Account username"
13462
+ #~ msgstr "Nume utilizator cont"
13463
+
13464
+ #~ msgid ""
13465
+ #~ "You cannot add that amount to the cart &mdash; we have %1$s in stock and "
13466
+ #~ "you already have %2$s in your cart."
13467
+ #~ msgstr ""
13468
+ #~ "Nu poți adăuga acea cantitate în coș &mdash; avem %1$s în stoc și ai deja "
13469
+ #~ "%2$s în coșul tău."
13470
+
13471
+ #~ msgid ""
13472
+ #~ "You cannot add that amount of &quot;%1$s&quot; to the cart because there "
13473
+ #~ "is not enough stock (%2$s remaining)."
13474
+ #~ msgstr ""
13475
+ #~ "Nu poți adăuga acea cantitate de &quot;%1$s&quot; în coș, deoarece stocul "
13476
+ #~ "este mai mic (%2$s rămase)."
13477
+
13478
+ #~ msgid ""
13479
+ #~ "You cannot add &quot;%s&quot; to the cart because the product is out of "
13480
+ #~ "stock."
13481
+ #~ msgstr ""
13482
+ #~ "Nu poți adăuga &quot;%s&quot; în coș deoarece produsul nu mai este în "
13483
+ #~ "stoc."
13484
+
13485
+ #~ msgid "Sorry, this product cannot be purchased."
13486
+ #~ msgstr "Ne pare rău, acest produs nu poate fi achiziționat."
13487
+
13488
+ #~ msgid "Get cart should not be called before the wp_loaded action."
13489
+ #~ msgstr "Get cart nu ar trebui să fie apelată înainte de acțiunea wp_loaded."
13490
+
13491
+ #~ msgid ""
13492
+ #~ "Sorry, \"%s\" is not in stock. Please edit your cart and try again. We "
13493
+ #~ "apologize for any inconvenience caused."
13494
+ #~ msgstr ""
13495
+ #~ "Regret, \"%s\" nu este în stoc. Te rog editează-ți coșul și încearcă din "
13496
+ #~ "nou. Ne cerem scuze pentru orice neplăcere cauzată."
13497
+
13498
+ #~ msgid "An item which is no longer available was removed from your cart."
13499
+ #~ msgstr "Un articol care nu mai este disponibil a fost șters din coșul dvs."
13500
+
13501
+ #~ msgid ""
13502
+ #~ "%s has been removed from your cart because it can no longer be purchased. "
13503
+ #~ "Please contact us if you need assistance."
13504
+ #~ msgstr ""
13505
+ #~ "%s a fost eliminat din coșul dvs., deoarece acesta nu mai poate fi "
13506
+ #~ "achiziționat. Vă rugăm să ne contactați dacă aveți nevoie de ajutor."
13507
+
13508
+ #~ msgid "Page %d"
13509
+ #~ msgstr "Pagina %d"
13510
+
13511
+ #~ msgid "Search results for &ldquo;%s&rdquo;"
13512
+ #~ msgstr "Rezultatele căutării pentru &bdquo;%s&rdquo;"
13513
+
13514
+ #~ msgid "Author: %s"
13515
+ #~ msgstr "Autor: %s"
13516
+
13517
+ #~ msgid "Posts tagged &ldquo;%s&rdquo;"
13518
+ #~ msgstr "Articole etichetate &bdquo;%s&rdquo;"
13519
+
13520
+ #~ msgid "Products tagged &ldquo;%s&rdquo;"
13521
+ #~ msgstr "Produse etichetate &ldquo;%s&rdquo;"
13522
+
13523
+ #~ msgid "Error 404"
13524
+ #~ msgstr "Eroare 404"
13525
+
13526
+ #~ msgid "Access denied"
13527
+ #~ msgstr "Acces refuzat"
13528
+
13529
+ #~ msgid "You do not have permission to access this page"
13530
+ #~ msgstr "Nu ai permisiunea să accesezi această pagină"
13531
+
13532
+ #~ msgid "Invalid nonce verification"
13533
+ #~ msgstr "Verificare nunic invalid"
13534
+
13535
+ #~ msgid ""
13536
+ #~ "An error occurred in the request and at the time were unable to send the "
13537
+ #~ "consumer data"
13538
+ #~ msgstr ""
13539
+ #~ "A apărut o eroare în solicitare și atunci nu am putut să trimitem datele "
13540
+ #~ "clientului"
13541
+
13542
+ #~ msgid "The callback_url needs to be over SSL"
13543
+ #~ msgstr "callback_url trebuie să fie peste SSL"
13544
+
13545
+ #~ msgid "The %s is not a valid URL"
13546
+ #~ msgstr "%s nu este un URL valid"
13547
+
13548
+ #~ msgid "Invalid scope %s"
13549
+ #~ msgstr "Domeniu %s invalid"
13550
+
13551
+ #~ msgid "View and manage products"
13552
+ #~ msgstr "Vizualizare și administrare produse"
13553
+
13554
+ #~ msgid "View and manage orders and sales reports"
13555
+ #~ msgstr "Vizualizare și administrare comenzi și rapoarte de vânzări"
13556
+
13557
+ #~ msgid "View and manage customers"
13558
+ #~ msgstr "Vizualizare și administrare clienți"
13559
+
13560
+ #~ msgid "View and manage coupons"
13561
+ #~ msgstr "Vizualizare și administrare cupoane"
13562
+
13563
+ #~ msgid "Create products"
13564
+ #~ msgstr "Creare produse"
13565
+
13566
+ #~ msgid "Create orders"
13567
+ #~ msgstr "Creare comenzi"
13568
+
13569
+ #~ msgid "Create customers"
13570
+ #~ msgstr "Creare clienți"
13571
+
13572
+ #~ msgid "Create coupons"
13573
+ #~ msgstr "Creare cupoane"
13574
+
13575
+ #~ msgid "Create webhooks"
13576
+ #~ msgstr "Creează cârlige web"
13577
+
13578
+ #~ msgid "View products"
13579
+ #~ msgstr "Vezi produse"
13580
+
13581
+ #~ msgid "View orders and sales reports"
13582
+ #~ msgstr "Vizualizare comenzi și rapoarte de vânzări"
13583
+
13584
+ #~ msgid "View customers"
13585
+ #~ msgstr "Vezi clienţi"
13586
+
13587
+ #~ msgid "View coupons"
13588
+ #~ msgstr "Vezi cupoane"
13589
+
13590
+ #~ msgid "Dismiss this notice."
13591
+ #~ msgstr "Ignoră această notificare."
13592
+
13593
+ #~ msgid "API Key updated successfully."
13594
+ #~ msgstr "Cheie API actualizată cu succes."
13595
+
13596
+ #~ msgid "Permissions is missing."
13597
+ #~ msgstr "Permisiunile lipsesc."
13598
+
13599
+ #~ msgid "User is missing."
13600
+ #~ msgstr "Utilizatorul lipsește."
13601
+
13602
+ #~ msgid "Description is missing."
13603
+ #~ msgstr "Descrierea lipsește."
13604
+
13605
+ #~ msgid "Refund failed."
13606
+ #~ msgstr "Rambursare eșuată."
13607
+
13608
+ #~ msgid "Invalid refund amount"
13609
+ #~ msgstr "Sumă rambursare invalidă"
13610
+
13611
+ #~ msgid "Item #%1$s stock increased from %2$s to %3$s."
13612
+ #~ msgstr "Stocul elementului #%1$s a fost crescut de la %2$s la %3$s."
13613
+
13614
+ #~ msgid "Sorry, your session has expired."
13615
+ #~ msgstr "Ne pare rău, sesiunea dvs. a expirat."
13616
+
13617
+ #~ msgid "Coupon has been removed."
13618
+ #~ msgstr "Cuponul a fost sters."
13619
+
13620
+ #~ msgid "Sorry there was a problem removing this coupon."
13621
+ #~ msgstr "Ne pare rău dar a fost o problemă la stergerea acestui cupon."
13622
+
13623
+ #~ msgid "Invalid product SKU"
13624
+ #~ msgstr "SKU produs invalid"
13625
+
13626
+ #~ msgid "Consumer secret is missing."
13627
+ #~ msgstr "Secretul cumpărătorului lipsește."
13628
+
13629
+ #~ msgid "Consumer key is missing."
13630
+ #~ msgstr "Cheia cumpărătorului lipsește."
13631
+
13632
+ #~ msgid "Invalid webhook delivery."
13633
+ #~ msgstr "Livrare cârlig web invalidă."
13634
+
13635
+ #~ msgid "Invalid webhook delivery ID."
13636
+ #~ msgstr "ID livrare cârlig web invalid."
13637
+
13638
+ #~ msgid ""
13639
+ #~ "Webhook delivery URL must be a valid URL starting with http:// or https://"
13640
+ #~ msgstr ""
13641
+ #~ "URL-ul de livrare al cârligului web trebuie să fie un URL valid care "
13642
+ #~ "începe cu http:// sau https://"
13643
+
13644
+ #~ msgid "You do not have permission to create webhooks."
13645
+ #~ msgstr "Nu ai permisiunea de a crea cârlige web."
13646
+
13647
+ #~ msgid "You do not have permission to read the webhooks count"
13648
+ #~ msgstr "Nu ai permisiunea de a citi numărul de cârlige web"
13649
+
13650
+ #~ msgid "No route was found matching the URL and request method"
13651
+ #~ msgstr ""
13652
+ #~ "Nu a fost găsită nicio rută care să se potrivească cu URL-ul și metoda de "
13653
+ #~ "solicitare"
13654
+
13655
+ #~ msgid "The handler for the route is invalid"
13656
+ #~ msgstr "Manipulantul pentru rută este invalid"
13657
+
13658
+ #~ msgid "Unsupported request method"
13659
+ #~ msgstr "Metoda de cerere este neacceptata"
13660
+
13661
+ #~ msgid "Invalid authentication method"
13662
+ #~ msgstr "Metodă de autentificare invalidă"
13663
+
13664
+ #~ msgid "Permanently deleted %s"
13665
+ #~ msgstr "Șterse permantent %s"
13666
+
13667
+ #~ msgid "This %s cannot be deleted"
13668
+ #~ msgstr "Acest %s nu poate fi șters"
13669
+
13670
+ #~ msgid "The customer cannot be deleted"
13671
+ #~ msgstr "Clientul nu poate fi șters"
13672
+
13673
+ #~ msgid "Permanently deleted customer"
13674
+ #~ msgstr "Client șters definitiv"
13675
+
13676
+ #~ msgid "You do not have permission to delete this %s"
13677
+ #~ msgstr "Nu aveți permisiunea de a șterge acest %s"
13678
+
13679
+ #~ msgid "You do not have permission to edit this %s"
13680
+ #~ msgstr "Nu aveți permisiunea de a modifica acest %s"
13681
+
13682
+ #~ msgid "You do not have permission to read this %s"
13683
+ #~ msgstr "Nu aveți permisiunea de a vizualiza acest %s"
13684
+
13685
+ #~ msgid "Invalid %s"
13686
+ #~ msgstr "Invalid %s"
13687
+
13688
+ #~ msgid "No %1$s found with the ID equal to %2$s"
13689
+ #~ msgstr "Niciun %1$s găsit cu ID-ul egal cu %2$s"
13690
+
13691
+ #~ msgid "Invalid %s ID"
13692
+ #~ msgstr "ID-ul %s este invalid"
13693
+
13694
+ #~ msgid "You do not have permission to read this report"
13695
+ #~ msgstr "Nu aveți permisiunea de a viazualiza acest raport"
13696
+
13697
+ #~ msgid "Deleted %s"
13698
+ #~ msgstr "Șterse %s"
13699
+
13700
+ #~ msgid "Could not delete the attribute"
13701
+ #~ msgstr "Nu s-a putut șterge atributul"
13702
+
13703
+ #~ msgid "You do not have permission to delete product attributes"
13704
+ #~ msgstr "Nu ai permisiunea de a șterge atribute produs"
13705
+
13706
+ #~ msgid "Could not edit the attribute"
13707
+ #~ msgstr "Nu s-a putut edita atributul"
13708
+
13709
+ #~ msgid "You do not have permission to edit product attributes"
13710
+ #~ msgstr "Nu ai permisiunea de a edita atribute produs"
13711
+
13712
+ #~ msgid "You do not have permission to create product attributes"
13713
+ #~ msgstr "Nu ai permisiunea de a crea atribute produs"
13714
+
13715
+ #~ msgid ""
13716
+ #~ "Invalid product attribute order_by type - the product attribute order_by "
13717
+ #~ "type must be any of these: %s"
13718
+ #~ msgstr ""
13719
+ #~ "Tip order_by de atribut produs invalid - tipul order_by de atribut produs "
13720
+ #~ "trebuie să fie unul dintre acestea: %s"
13721
+
13722
+ #~ msgid ""
13723
+ #~ "Invalid product attribute type - the product attribute type must be any "
13724
+ #~ "of these: %s"
13725
+ #~ msgstr ""
13726
+ #~ "Tip de atribut produs invalid - tipul de atribut produs trebuie să fie "
13727
+ #~ "unul dintre acestea: %s"
13728
+
13729
+ #~ msgid "A product attribute with the provided ID could not be found"
13730
+ #~ msgstr "Nu a putut fi găsit un atribut al produsului cu ID-ul furnizat"
13731
+
13732
+ #~ msgid "Invalid product attribute ID"
13733
+ #~ msgstr "ID atribut produs invalid"
13734
+
13735
+ #~ msgid "You do not have permission to read product attributes"
13736
+ #~ msgstr "Nu ai permisiunea de a citi atributele produsului"
13737
+
13738
+ #~ msgid "Placeholder"
13739
+ #~ msgstr "Substituent"
13740
+
13741
+ #~ msgid "A product category with the provided ID could not be found"
13742
+ #~ msgstr "O categorie de produse cu ID-ul furnizat nu a putut fi găsită"
13743
+
13744
+ #~ msgid "Invalid product category ID"
13745
+ #~ msgstr "ID-ul categoriei de produse este invalid"
13746
+
13747
+ #~ msgid "You do not have permission to read product categories"
13748
+ #~ msgstr "Nu aveți permisiunea de a citi categoriile de produse"
13749
+
13750
+ #~ msgid "Invalid product type - the product type must be any of these: %s"
13751
+ #~ msgstr ""
13752
+ #~ "Tip de produs nevalid - tipul de produs trebuie să fie oricare dintre "
13753
+ #~ "acestea: %s"
13754
+
13755
+ #~ msgid "You do not have permission to create products"
13756
+ #~ msgstr "Nu aveți permisiunea pentru a crea produsele"
13757
+
13758
+ #~ msgid "You do not have permission to read the products count"
13759
+ #~ msgstr "Nu aveți permisiunea de a vizualiza numărul de produse"
13760
+
13761
+ #~ msgid "The order refund ID provided is not associated with the order."
13762
+ #~ msgstr "ID-ul de rambursare comandă oferit nu este asociat cu comanda."
13763
+
13764
+ #~ msgid "Refund amount must be positive."
13765
+ #~ msgstr "Suma de rambursare trebuie să fie pozitivă."
13766
+
13767
+ #~ msgid "Refund amount is required."
13768
+ #~ msgstr "Suma de rambursare este obligatorie."
13769
+
13770
+ #~ msgid "You do not have permission to create order refunds"
13771
+ #~ msgstr "Nu ai permisiunea să creezi rambursări comandă"
13772
+
13773
+ #~ msgid "An order refund with the provided ID could not be found."
13774
+ #~ msgstr "Nu a putut fi găsită o rambursare de comandă cu ID-ul oferit."
13775
+
13776
+ #~ msgid "Permanently deleted order note"
13777
+ #~ msgstr "Observațiile comenzii au fost ștearse definitiv"
13778
+
13779
+ #~ msgid "This order note cannot be deleted"
13780
+ #~ msgstr "Această notă a comenzii nu poate fi ștearsă"
13781
+
13782
+ #~ msgid "The order note ID provided is not associated with the order"
13783
+ #~ msgstr "ID-ul notitei furnizat nu este asociat cu o comanda"
13784
+
13785
+ #~ msgid "Order note is required"
13786
+ #~ msgstr "Este solicitată obeservația la comandă"
13787
+
13788
+ #~ msgid "You do not have permission to create order notes"
13789
+ #~ msgstr "Nu ai permisiunea de a crea note de comandă"
13790
+
13791
+ #~ msgid "An order note with the provided ID could not be found"
13792
+ #~ msgstr ""
13793
+ #~ "Observația la comandă nu a putut fi găsită după numarul de identificare ID"
13794
+
13795
+ #~ msgid "Invalid order note ID"
13796
+ #~ msgstr "Numărul de identificare ID al observațiilor la comandă este invalid"
13797
+
13798
+ #~ msgid "Coupon discount total must be a positive amount."
13799
+ #~ msgstr "Totalul discountului cuponului trebuie să fie o sumă pozitivă."
13800
+
13801
+ #~ msgid "Fee title is required"
13802
+ #~ msgstr "Titlul taxei este obligatoriu"
13803
+
13804
+ #~ msgid "The product variation is invalid"
13805
+ #~ msgstr "Variatia de produse este invalida"
13806
+
13807
+ #~ msgid "Product ID provided does not match this line item"
13808
+ #~ msgstr ""
13809
+ #~ "ID-ul produsului furnizat, nu se potriveste cu elementul din acest rand"
13810
+
13811
+ #~ msgid "Product ID or SKU is required"
13812
+ #~ msgstr "ID produs sau SKU sunt obligatorii"
13813
+
13814
+ #~ msgid "Order ID is invalid"
13815
+ #~ msgstr "Numărul de identificare ID al comenzii este invalid"
13816
+
13817
+ #~ msgid "Provided order currency is invalid."
13818
+ #~ msgstr "Moneda furnizată pentru comandă este invalidă."
13819
+
13820
+ #~ msgid "Payment method ID and title are required"
13821
+ #~ msgstr "Sunt necesare ID-ul modalitati de plata si titlu"
13822
+
13823
+ #~ msgid "Cannot create order: %s"
13824
+ #~ msgstr "Comanda nu poate fi creată: %s"
13825
+
13826
+ #~ msgid "You do not have permission to create orders"
13827
+ #~ msgstr "Nu aveți permisiunea de a crea comenzi"
13828
+
13829
+ #~ msgid "You do not have permission to read the orders count"
13830
+ #~ msgstr "Nu aveți permisiunea de a vizualiza numărul de comenzi"
13831
+
13832
+ #~ msgid "The JSONP callback function is invalid"
13833
+ #~ msgstr "Funcția JSONP pentru apelul invers (callback) este invalidă"
13834
+
13835
+ #~ msgid "JSONP support is disabled on this site"
13836
+ #~ msgstr "Suportul JSONP este dezactivat pe acest site"
13837
+
13838
+ #~ msgid "You do not have permission to delete this customer"
13839
+ #~ msgstr "Nu aveți permisiunea de a șterge acest client"
13840
+
13841
+ #~ msgid "You do not have permission to edit this customer"
13842
+ #~ msgstr "Nu aveți permisiunea de a modifica acest client"
13843
+
13844
+ #~ msgid "You do not have permission to read this customer"
13845
+ #~ msgstr "Nu aveți permisiunea de a vizualiza acest client"
13846
+
13847
+ #~ msgid "Invalid customer"
13848
+ #~ msgstr "Client Invalid"
13849
+
13850
+ #~ msgid "Invalid customer ID"
13851
+ #~ msgstr "ID-ul clientului este invalid"
13852
+
13853
+ #~ msgid "You do not have permission to create this customer"
13854
+ #~ msgstr "Nu aveți permisiunea de a crea acest client"
13855
+
13856
+ #~ msgid "You do not have permission to read the customers count"
13857
+ #~ msgstr "Nu aveți permisiunea de a vizualiza numărul de clienți"
13858
+
13859
+ #~ msgid "Invalid customer email"
13860
+ #~ msgstr "Email cumpărător invalid."
13861
+
13862
+ #~ msgid "No %1$s data specified to create/edit %1$s"
13863
+ #~ msgstr "Nu sunt date %1$s specificate pentru a crea/edita %1$s"
13864
+
13865
+ #~ msgid "Failed to update coupon"
13866
+ #~ msgstr "Nu s-a reușit actualizarea cuponului"
13867
+
13868
+ #~ msgid "No %1$s data specified to edit %1$s"
13869
+ #~ msgstr "Nicio dată %1$s specificată pentru a edita %1$s"
13870
+
13871
+ #~ msgid "Invalid coupon type - the coupon type must be any of these: %s"
13872
+ #~ msgstr ""
13873
+ #~ "Cupon invalid - tipul cuponului trebuie sa fie orice dintre acestea: %s"
13874
+
13875
+ #~ msgid "The coupon code already exists"
13876
+ #~ msgstr "Codul cuponului exista deja"
13877
+
13878
+ #~ msgid "Missing parameter %s"
13879
+ #~ msgstr "Lipsește parametrul %s"
13880
+
13881
+ #~ msgid "You do not have permission to create coupons"
13882
+ #~ msgstr "Nu aveți permisiunea de a creea cupoane"
13883
+
13884
+ #~ msgid "No %1$s data specified to create %1$s"
13885
+ #~ msgstr "Nicio dată %1$s specificată pentru a crea %1$s"
13886
+
13887
+ #~ msgid "Invalid coupon code"
13888
+ #~ msgstr "Cod Promoțional invalid"
13889
+
13890
+ #~ msgid "You do not have permission to read the coupons count"
13891
+ #~ msgstr "Nu aveți permisiunea de a vizualiza numărul de cupoane"
13892
+
13893
+ #~ msgid "Invalid coupon ID"
13894
+ #~ msgstr "Identificatorul Codului Promoțional este invalid"
13895
+
13896
+ #~ msgid "API user is invalid"
13897
+ #~ msgstr "API utilizator invalid"
13898
+
13899
+ #~ msgid "%s parameter is missing"
13900
+ #~ msgstr "Parametrul %s lipsește"
13901
+
13902
+ #~ msgid ""
13903
+ #~ "WooCommerce API. Use a consumer key in the username field and a consumer "
13904
+ #~ "secret in the password field."
13905
+ #~ msgstr ""
13906
+ #~ "API WooCommerce. Folosește o cheie client în câmpul nume utilizator și un "
13907
+ #~ "secret client în câmpul parolă."
13908
+
13909
+ #~ msgid "Consumer secret is invalid."
13910
+ #~ msgstr "Secretul cumpărătorului este invalid."
13911
+
13912
+ #~ msgid "Custom:"
13913
+ #~ msgstr "Personalizat:"
13914
+
13915
+ #~ msgid ""
13916
+ #~ "It is strongly recommended that you backup your database before "
13917
+ #~ "proceeding. Are you sure you wish to run the updater now?"
13918
+ #~ msgstr ""
13919
+ #~ "Este recomandat sa efectuati o copie de rezervă a bazei de date înainte "
13920
+ #~ "de a continua. Sunteți sigur că doriți să rulați programul de actualizare "
13921
+ #~ "acum?"
13922
+
13923
+ #~ msgid "Run the updater"
13924
+ #~ msgstr "Rulați programul de actualizare"
13925
+
13926
+ #~ msgid "Theme integration guide"
13927
+ #~ msgstr "Ghid pentru integrare temă"
13928
+
13929
+ #~ msgid "Read more about Storefront"
13930
+ #~ msgstr "Citește mai multe despre Storefront"
13931
+
13932
+ #~ msgid "Learn more about templates"
13933
+ #~ msgstr "Află mai mult despre șabloane"
13934
+
13935
+ #~ msgid "Skip setup"
13936
+ #~ msgstr "Sari peste inițializare"
13937
+
13938
+ #~ msgid "Run the Setup Wizard"
13939
+ #~ msgstr "Rulează asistentul de instalare"
13940
+
13941
+ #~ msgid ""
13942
+ #~ "<strong>Welcome to WooCommerce</strong> &#8211; You&lsquo;re almost ready "
13943
+ #~ "to start selling :)"
13944
+ #~ msgstr ""
13945
+ #~ "<strong>Bine ai venit la WooCommerce</strong> &#8211; Ești aproape gata "
13946
+ #~ "pentru a începe vânzarea :)"
13947
+
13948
+ #~ msgid "Sold individually?"
13949
+ #~ msgstr "Vândut individual?"
13950
+
13951
+ #~ msgid "Backorders?"
13952
+ #~ msgstr "Precomenzi?"
13953
+
13954
+ #~ msgid "In stock?"
13955
+ #~ msgstr "În stoc?"
13956
+
13957
+ #~ msgid "Catalog &amp; search"
13958
+ #~ msgstr "Cautare &amp; Catalog"
13959
+
13960
+ #~ msgid "Visibility"
13961
+ #~ msgstr "Vizibilitate"
13962
+
13963
+ #~ msgid "Height (%s)"
13964
+ #~ msgstr "Înălțime (%s)"
13965
+
13966
+ #~ msgid "Width (%s)"
13967
+ #~ msgstr "Lățime (%s)"
13968
+
13969
+ #~ msgid "Length (%s)"
13970
+ #~ msgstr "Lungime (%s)"
13971
+
13972
+ #~ msgid "L/W/H"
13973
+ #~ msgstr "L/L/I"
13974
+
13975
+ #~ msgid "Enter sale price (%s)"
13976
+ #~ msgstr "Introdu preț redus (%s)"
13977
+
13978
+ #~ msgid "Decrease existing price by (fixed amount or %):"
13979
+ #~ msgstr "Scade prețul existent cu (sumă fixă ​​sau %):"
13980
+
13981
+ #~ msgid "Sale"
13982
+ #~ msgstr "Vânzare"
13983
+
13984
+ #~ msgid "Enter price (%s)"
13985
+ #~ msgstr "Introdu preț (%s)"
13986
+
13987
+ #~ msgid "Change to:"
13988
+ #~ msgstr "Modifica in:"
13989
+
13990
+ #~ msgid "— No Change —"
13991
+ #~ msgstr "— Nicio schimbare —"
13992
+
13993
+ #~ msgid "Save changes"
13994
+ #~ msgstr "Salvează modificările"
13995
+
13996
+ #~ msgid "Logs"
13997
+ #~ msgstr "Loguri"
13998
+
13999
+ #~ msgid "Tools"
14000
+ #~ msgstr "Instrumente"
14001
+
14002
+ #~ msgid "Overrides"
14003
+ #~ msgstr "Contramandări"
14004
+
14005
+ #~ msgid ""
14006
+ #~ "This section shows any files that are overriding the default WooCommerce "
14007
+ #~ "template pages."
14008
+ #~ msgstr ""
14009
+ #~ "Această secțiune arată toate fișierele care nu țin cont de paginile "
14010
+ #~ "șablon implicite WooCommerce."
14011
+
14012
+ #~ msgid "Not declared"
14013
+ #~ msgstr "Nedeclarată"
14014
+
14015
+ #~ msgid ""
14016
+ #~ "Displays whether or not the current active theme declares WooCommerce "
14017
+ #~ "support."
14018
+ #~ msgstr ""
14019
+ #~ "Afișează dacă tema actuală activă declară sau nu declară suport pentru "
14020
+ #~ "WooCommerce."
14021
+
14022
+ #~ msgid "WooCommerce support"
14023
+ #~ msgstr "Suport WooCommerce"
14024
+
14025
+ #~ msgid "The parent theme developers URL."
14026
+ #~ msgstr "URL dezvoltatori temă părinte"
14027
+
14028
+ #~ msgid "Parent theme author URL."
14029
+ #~ msgstr "URL autor temă părinte."
14030
+
14031
+ #~ msgid "The installed version of the parent theme."
14032
+ #~ msgstr "Versiunea instalată a temei părinte."
14033
+
14034
+ #~ msgid "Parent theme version."
14035
+ #~ msgstr "Versiune temă părinte."
14036
+
14037
+ #~ msgid "The name of the parent theme."
14038
+ #~ msgstr "Numele temei părinte"
14039
+
14040
+ #~ msgid "Parent theme name."
14041
+ #~ msgstr "Nume temă părinte."
14042
+
14043
+ #~ msgid ""
14044
+ #~ "If you are modifying WooCommerce on a parent theme that you did not build "
14045
+ #~ "personally we recommend using a child theme. See: <a href=\"%s\" target="
14046
+ #~ "\"_blank\">How to create a child theme</a>"
14047
+ #~ msgstr ""
14048
+ #~ "Dacă modifici WooCommerce într-o temă părinte pe care nu ai construit-o "
14049
+ #~ "personal recomandăm folosirea unei teme copil. Vezi: <a href=\"%s\" "
14050
+ #~ "target=\"_blank\">Cum creezi o temă copil</a>"
14051
+
14052
+ #~ msgid "Displays whether or not the current theme is a child theme."
14053
+ #~ msgstr "Afisează dacă tema curentă este temă-copil sau nu."
14054
+
14055
+ #~ msgid "Child theme"
14056
+ #~ msgstr "Temă copil"
14057
+
14058
+ #~ msgid "The theme developers URL."
14059
+ #~ msgstr "URL dezvoltatori temă"
14060
+
14061
+ #~ msgid "Author URL"
14062
+ #~ msgstr "URL autor"
14063
+
14064
+ #~ msgid "%s is available"
14065
+ #~ msgstr "%s este disponibil"
14066
+
14067
+ #~ msgid "The installed version of the current active theme."
14068
+ #~ msgstr "Versiunea instalată a temei actuale active."
14069
+
14070
+ #~ msgid "Version"
14071
+ #~ msgstr "Versiune"
14072
+
14073
+ #~ msgid "The name of the current active theme."
14074
+ #~ msgstr "Numele actual al temei active."
14075
+
14076
+ #~ msgid "Theme"
14077
+ #~ msgstr "Temă"
14078
+
14079
+ #~ msgid ""
14080
+ #~ "A list of taxonomy terms that can be used in regard to order/product "
14081
+ #~ "statuses."
14082
+ #~ msgstr ""
14083
+ #~ "O listă a termenilor taxonomiei care poate fi utilizați în privința "
14084
+ #~ "stărilor comenzii/produsului."
14085
+
14086
+ #~ msgid "Page does not contain the shortcode."
14087
+ #~ msgstr "Pagina nu conține scurtcodul."
14088
+
14089
+ #~ msgid "Page not set"
14090
+ #~ msgstr "Pagină nesetată"
14091
+
14092
+ #~ msgctxt "Page setting"
14093
+ #~ msgid "My account"
14094
+ #~ msgstr "Contul meu"
14095
+
14096
+ #~ msgctxt "Page setting"
14097
+ #~ msgid "Checkout"
14098
+ #~ msgstr "Finalizare"
14099
+
14100
+ #~ msgctxt "Page setting"
14101
+ #~ msgid "Cart"
14102
+ #~ msgstr "Coș"
14103
+
14104
+ #~ msgctxt "Page setting"
14105
+ #~ msgid "Shop base"
14106
+ #~ msgstr "Bază magazin"
14107
+
14108
+ #~ msgid "API Version"
14109
+ #~ msgstr "Versiune API"
14110
+
14111
+ #~ msgid "Does your site have REST API enabled?"
14112
+ #~ msgstr "Situl tău are activat REST API?"
14113
+
14114
+ #~ msgid "API enabled"
14115
+ #~ msgstr "API activat"
14116
+
14117
+ #~ msgid "The number of decimal points shown in displayed prices."
14118
+ #~ msgstr "Numărul de zecimale arătate în prețurile afișate."
14119
+
14120
+ #~ msgid "The decimal separator of displayed prices."
14121
+ #~ msgstr "Separatorul zecimal al prețurilor afișate."
14122
+
14123
+ #~ msgid "The thousand separator of displayed prices."
14124
+ #~ msgstr "Separatorul pentru mii al prețurilor afișate."
14125
+
14126
+ #~ msgid "The position of the currency symbol."
14127
+ #~ msgstr "Poziția simbolului monedei."
14128
+
14129
+ #~ msgid ""
14130
+ #~ "What currency prices are listed at in the catalog and which currency "
14131
+ #~ "gateways will take payments in."
14132
+ #~ msgstr ""
14133
+ #~ "În ce monedă sunt afișate prețurile în catalog și prin care gateway-uri "
14134
+ #~ "vor fi acceptate plățile."
14135
+
14136
+ #~ msgid "Does your site force a SSL Certificate for transactions?"
14137
+ #~ msgstr "Situl tău forțează un certificat SSL pentru tranzacții?"
14138
+
14139
+ #~ msgid "Force SSL"
14140
+ #~ msgstr "Forțează SSL"
14141
+
14142
+ #~ msgid "Network enabled"
14143
+ #~ msgstr "Rețea activată"
14144
+
14145
+ #~ msgid "Visit plugin homepage"
14146
+ #~ msgstr "Vizitează prima pagină a modulului"
14147
+
14148
+ #~ msgid "Active plugins."
14149
+ #~ msgstr "Module active."
14150
+
14151
+ #~ msgid "Table does not exist"
14152
+ #~ msgstr "Tabelul nu există"
14153
+
14154
+ #~ msgid ""
14155
+ #~ "The version of WooCommerce that the database is formatted for. This "
14156
+ #~ "should be the same as your WooCommerce version."
14157
+ #~ msgstr ""
14158
+ #~ "Versiunea WooCommerce pentru care este formatată baza de date. Ar trebui "
14159
+ #~ "să fie aceeași ca și versiunea ta WooCommerce."
14160
+
14161
+ #~ msgid "WC database version."
14162
+ #~ msgstr "Versiune bază de date WC."
14163
+
14164
+ #~ msgid "Database"
14165
+ #~ msgstr "Bază de date"
14166
+
14167
+ #~ msgid ""
14168
+ #~ "WooCommerce plugins may use this method of communication when checking "
14169
+ #~ "for plugin updates."
14170
+ #~ msgstr ""
14171
+ #~ "Modulele WooCommerce pot utiliza această metodă de comunicare atunci când "
14172
+ #~ "verifică actualizările modulului."
14173
+
14174
+ #~ msgid "Remote get"
14175
+ #~ msgstr "GET la distanță"
14176
+
14177
+ #~ msgid ""
14178
+ #~ "PayPal uses this method of communicating when sending back transaction "
14179
+ #~ "information."
14180
+ #~ msgstr ""
14181
+ #~ "PayPal folosește această metodă de comunicare atunci când trimite înapoi "
14182
+ #~ "informațiile tranzacției."
14183
+
14184
+ #~ msgid "Remote post"
14185
+ #~ msgstr "Articol de la distanță"
14186
+
14187
+ #~ msgid "GZip (gzopen) is used to open the GEOIP database from MaxMind."
14188
+ #~ msgstr ""
14189
+ #~ "Gzip (gzopen) este folosit pentru a deschide baza de date GeoIP de la "
14190
+ #~ "MaxMind."
14191
+
14192
+ #~ msgid ""
14193
+ #~ "Your server does not have the %s class enabled - HTML/Multipart emails, "
14194
+ #~ "and also some extensions, will not work without DOMDocument."
14195
+ #~ msgstr ""
14196
+ #~ "Serverul tău nu are clasa %s activată - emailurile HTML/Multipart și, de "
14197
+ #~ "asemenea, unele extensii nu vor funcționa fără DOMDocument."
14198
+
14199
+ #~ msgid ""
14200
+ #~ "HTML/Multipart emails use DOMDocument to generate inline CSS in templates."
14201
+ #~ msgstr ""
14202
+ #~ "Emailurile HTML/Multipart folosesc DOMDocument pentru a genera CSS în-"
14203
+ #~ "linie în șabloane."
14204
+
14205
+ #~ msgid ""
14206
+ #~ "Some webservices like shipping use SOAP to get information from remote "
14207
+ #~ "servers, for example, live shipping quotes from FedEx require SOAP to be "
14208
+ #~ "installed."
14209
+ #~ msgstr ""
14210
+ #~ "Unele servicii web, cum ar fi cele de livrare, folosesc SOAP pentru a "
14211
+ #~ "obține informații de la serverele de la distanță, de exemplu ofertele "
14212
+ #~ "live de livrare de la FedEx necesită ca SOAP să fie instalat."
14213
+
14214
+ #~ msgid ""
14215
+ #~ "Your server does not have fsockopen or cURL enabled - PayPal IPN and "
14216
+ #~ "other scripts which communicate with other servers will not work. Contact "
14217
+ #~ "your hosting provider."
14218
+ #~ msgstr ""
14219
+ #~ "Serverul tău nu are activat fsockopen sau cURL - PayPal IPN și alte "
14220
+ #~ "scripturi care comunică cu alte servere nu vor funcționa. Contactează-ți "
14221
+ #~ "furnizorul de găzduire."
14222
+
14223
+ #~ msgid ""
14224
+ #~ "Payment gateways can use cURL to communicate with remote servers to "
14225
+ #~ "authorize payments, other plugins may also use it when communicating with "
14226
+ #~ "remote services."
14227
+ #~ msgstr ""
14228
+ #~ "Gateway-urile de plată pot folosi cURL pentru a comunica cu servere la "
14229
+ #~ "distanță pentru a autoriza plăți, de asemenea, alte module le pot folosi "
14230
+ #~ "atunci când comunică cu servicii la distanță."
14231
+
14232
+ #~ msgid "Default timezone is %s - it should be UTC"
14233
+ #~ msgstr "Fusul orar implicit este %s - ar trebui să fie UTC"
14234
+
14235
+ #~ msgid "The default timezone for your server."
14236
+ #~ msgstr "Fusul orar implicit pentru serverul tău."
14237
+
14238
+ #~ msgid "Default timezone is UTC"
14239
+ #~ msgstr "Fusul orar implicit este UTC"
14240
+
14241
+ #~ msgid ""
14242
+ #~ "The largest filesize that can be uploaded to your WordPress installation."
14243
+ #~ msgstr ""
14244
+ #~ "Cea mai mare dimensiune a fișierului care poate fi încărcată la "
14245
+ #~ "instalarea WordPress."
14246
+
14247
+ #~ msgid "Max upload size."
14248
+ #~ msgstr "Dimensiune maximă de încărcare."
14249
+
14250
+ #~ msgid "The version of MySQL installed on your hosting server."
14251
+ #~ msgstr "Versiunea MySQL instalată pe serverul tău de găzduire."
14252
+
14253
+ #~ msgid "MySQL version."
14254
+ #~ msgstr "Versiune MySQL."
14255
+
14256
+ #~ msgid ""
14257
+ #~ "Suhosin is an advanced protection system for PHP installations. It was "
14258
+ #~ "designed to protect your servers on the one hand against a number of well "
14259
+ #~ "known problems in PHP applications and on the other hand against "
14260
+ #~ "potential unknown vulnerabilities within these applications or the PHP "
14261
+ #~ "core itself. If enabled on your server, Suhosin may need to be configured "
14262
+ #~ "to increase its data submission limits."
14263
+ #~ msgstr ""
14264
+ #~ "Suhosin este un sistem de protecție avansată pentru instalările PHP. A "
14265
+ #~ "fost conceput, pe de o parte, pentru a proteja serverele împotriva unui "
14266
+ #~ "număr de probleme bine cunoscute în aplicațiile PHP și, pe de altă parte, "
14267
+ #~ "împotriva unor vulnerabilități potențiale necunoscute în cadrul "
14268
+ #~ "aplicațiilor sau nucleul PHP în sine. Dacă este activat pe serverul tău, "
14269
+ #~ "Suhosin poate ar trebui să fie configurat pentru a-și mări limitele de "
14270
+ #~ "transmitere a datelor."
14271
+
14272
+ #~ msgid "SUHOSIN installed"
14273
+ #~ msgstr "SUHOSIN instalat"
14274
+
14275
+ #~ msgid ""
14276
+ #~ "The maximum number of variables your server can use for a single function "
14277
+ #~ "to avoid overloads."
14278
+ #~ msgstr ""
14279
+ #~ "Numărul maxim de variabile pe care serverul tău le poate folosi pentru o "
14280
+ #~ "singură funcție pentru a evita încărcările excesive."
14281
+
14282
+ #~ msgid "PHP max input vars"
14283
+ #~ msgstr "Maxim variabile de intrare PHP"
14284
+
14285
+ #~ msgid ""
14286
+ #~ "The amount of time (in seconds) that your site will spend on a single "
14287
+ #~ "operation before timing out (to avoid server lockups)"
14288
+ #~ msgstr ""
14289
+ #~ "Timpul (în secunde) pe care situl tău îl va consuma pentru singură "
14290
+ #~ "operație înainte de sincronizare (pentru a evita blocările serverului)"
14291
+
14292
+ #~ msgid "PHP time limit"
14293
+ #~ msgstr "Limită de timp PHP"
14294
+
14295
+ #~ msgid "The largest filesize that can be contained in one post."
14296
+ #~ msgstr ""
14297
+ #~ "Cea mai mare dimensiune a fișierului pe care o poate conține un singur "
14298
+ #~ "articol."
14299
+
14300
+ #~ msgid "PHP post max size"
14301
+ #~ msgstr "Dimensiune maximă articol PHP"
14302
+
14303
+ #~ msgid "The version of PHP installed on your hosting server."
14304
+ #~ msgstr "Versiunea PHP instalată pe serverul tău de găzduire."
14305
+
14306
+ #~ msgid "PHP version."
14307
+ #~ msgstr "Versiune PHP."
14308
+
14309
+ #~ msgid ""
14310
+ #~ "Information about the web server that is currently hosting your site."
14311
+ #~ msgstr ""
14312
+ #~ "Informații despre serverul web care găzduiește în prezent situl tău."
14313
+
14314
+ #~ msgid "Server info."
14315
+ #~ msgstr "Informații despre server."
14316
+
14317
+ #~ msgid "Server environment"
14318
+ #~ msgstr "Mediu server"
14319
+
14320
+ #~ msgid "The current language used by WordPress. Default = English"
14321
+ #~ msgstr "Limba actuală folosită de WordPress. Implicit = Engleză"
14322
+
14323
+ #~ msgid "Language"
14324
+ #~ msgstr "Limbă"
14325
+
14326
+ #~ msgid "Displays whether or not WordPress is in Debug Mode."
14327
+ #~ msgstr "Afișează dacă WordPress este sau nu în modul de Depanare."
14328
+
14329
+ #~ msgid ""
14330
+ #~ "The maximum amount of memory (RAM) that your site can use at one time."
14331
+ #~ msgstr ""
14332
+ #~ "Memoria (RAM) maximă pe care situl tău o poate folosi la un moment dat."
14333
+
14334
+ #~ msgid "Whether or not you have WordPress Multisite enabled."
14335
+ #~ msgstr "Dacă ai WordPress Multisit activat sau nu."
14336
+
14337
+ #~ msgid "The version of WordPress installed on your site."
14338
+ #~ msgstr "Versiunea WordPress instalată pe situl tău."
14339
+
14340
+ #~ msgid ""
14341
+ #~ "Several WooCommerce extensions can write logs which makes debugging "
14342
+ #~ "problems easier. The directory must be writable for this to happen."
14343
+ #~ msgstr ""
14344
+ #~ "Câteva extensii WooCommerce pot scrie jurnale care fac mai ușoare "
14345
+ #~ "problemele de depanare. Directorul trebuie să fi editabil pentru ca acest "
14346
+ #~ "lucru să se întâmple."
14347
+
14348
+ #~ msgid "Log directory writable"
14349
+ #~ msgstr "Jurnal director editabil"
14350
+
14351
+ #~ msgid "The version of WooCommerce installed on your site."
14352
+ #~ msgstr "Versiunea WooCommerce instalată pe situl tău."
14353
+
14354
+ #~ msgid "The root URL of your site."
14355
+ #~ msgstr "URL-ul rădăcină al sitului tău."
14356
+
14357
+ #~ msgid "Site URL"
14358
+ #~ msgstr "URL sit"
14359
+
14360
+ #~ msgid "Home URL"
14361
+ #~ msgstr "URL prima pagină"
14362
+
14363
+ #~ msgid "WordPress environment"
14364
+ #~ msgstr "Mediu WordPress"
14365
+
14366
+ #~ msgid "Copy for support"
14367
+ #~ msgstr "Copiază pentru suport"
14368
+
14369
+ #~ msgid "Understanding the status report"
14370
+ #~ msgstr "Înțelegerea raportului de stare"
14371
+
14372
+ #~ msgid "Get system report"
14373
+ #~ msgstr "Primești raport de sistem"
14374
+
14375
+ #~ msgid ""
14376
+ #~ "Please copy and paste this information in your ticket when contacting "
14377
+ #~ "support:"
14378
+ #~ msgstr ""
14379
+ #~ "Te rog copiază și plasează această informație în tichetul tău atunci când "
14380
+ #~ "contactezi suportul:"
14381
+
14382
+ #~ msgid "There are currently no logs to view."
14383
+ #~ msgstr "În prezent nu există log-uri pentru a fi vizualizate."
14384
+
14385
+ #~ msgid "Download &amp; install"
14386
+ #~ msgstr "Descarcă și instalează"
14387
+
14388
+ #~ msgid "Read all about it"
14389
+ #~ msgstr "Citește tot despre ea"
14390
+
14391
+ #~ msgid ""
14392
+ #~ "Storefront is an intuitive, flexible and <strong>free</strong> WordPress "
14393
+ #~ "theme offering deep integration with WooCommerce and many of the most "
14394
+ #~ "popular customer-facing extensions."
14395
+ #~ msgstr ""
14396
+ #~ "Storefront este o temă de WordPress <strong>gratuită</strong>, intuitivă "
14397
+ #~ "și flexibilă ce oferă o profundă integrare cu WooCommerce și multe dintre "
14398
+ #~ "cele mai populare extensii orientate către nevoile clientului."
14399
+
14400
+ #~ msgid "We recommend Storefront, the <em>official</em> WooCommerce theme."
14401
+ #~ msgstr "Îți recomandăm Storefront, tema <em>oficială</em> WooCommerce."
14402
+
14403
+ #~ msgid "Looking for a WooCommerce theme?"
14404
+ #~ msgstr "Cauți o temă WooCommerce?"
14405
+
14406
+ #~ msgid ""
14407
+ #~ "Our catalog of WooCommerce Extensions can be found on WooCommerce.com "
14408
+ #~ "here: <a href=\"%s\">WooCommerce Extensions Catalog</a>"
14409
+ #~ msgstr ""
14410
+ #~ "Catalogul nostru de extensii WooCommerce poate fi găsit pe WooCommerce."
14411
+ #~ "com aici: <a href=\"%s\">Catalog extensii WooCommerce</a>"
14412
+
14413
+ #~ msgid "Free"
14414
+ #~ msgstr "Gratis!"
14415
+
14416
+ #~ msgid "Need a theme? Try Storefront"
14417
+ #~ msgstr "Ai nevoie de o temă? Incearcă Storefront"
14418
+
14419
+ #~ msgid "Itemized"
14420
+ #~ msgstr "Detaliat"
14421
+
14422
+ #~ msgid "As a single total"
14423
+ #~ msgstr "Ca un singur total"
14424
+
14425
+ #~ msgid "Display tax totals"
14426
+ #~ msgstr "Afișează total taxă"
14427
+
14428
+ #~ msgid ""
14429
+ #~ "Define text to show after your product prices. This could be, for "
14430
+ #~ "example, \"inc. Vat\" to explain your pricing. You can also have prices "
14431
+ #~ "substituted here using one of the following: {price_including_tax}, "
14432
+ #~ "{price_excluding_tax}."
14433
+ #~ msgstr ""
14434
+ #~ "Definește textul care să fie arătat după prețurile produselor tale. Ar "
14435
+ #~ "putea fi, de exemplu, „TVA inclus” pentru a-ți explica prețul. De "
14436
+ #~ "asemenea, aici poți să înlocuiești prețurile folosind unul dintre "
14437
+ #~ "următoarele: {price_including_tax}, {price_excluding_tax}."
14438
+
14439
+ #~ msgid "Price display suffix"
14440
+ #~ msgstr "Sufix pentru afișare preț"
14441
+
14442
+ #~ msgid "Display prices during cart and checkout"
14443
+ #~ msgstr "Afișează prețurile în coș și în timpul finalizării"
14444
+
14445
+ #~ msgid "Excluding tax"
14446
+ #~ msgstr "Fara taxe"
14447
+
14448
+ #~ msgid "Including tax"
14449
+ #~ msgstr "Incluzand taxele"
14450
+
14451
+ #~ msgid "Display prices in the shop"
14452
+ #~ msgstr "Afișează prețuri în magazin"
14453
+
14454
+ #~ msgid "Reduced rate%sZero rate"
14455
+ #~ msgstr "Rată rate%sZero redusă"
14456
+
14457
+ #~ msgid ""
14458
+ #~ "List additional tax classes below (1 per line). This is in addition to "
14459
+ #~ "the default \"Standard rate\"."
14460
+ #~ msgstr ""
14461
+ #~ "Listează clasele de impozitare suplimentare mai jos (una pe linie). Acest "
14462
+ #~ "lucru este în plus față de „Taxa standard” implicită."
14463
+
14464
+ #~ msgid "Additional tax classes"
14465
+ #~ msgstr "Clase de impozitare suplimentare"
14466
+
14467
+ #~ msgid "Round tax at subtotal level, instead of rounding per line"
14468
+ #~ msgstr ""
14469
+ #~ "Taxă rotunjită la nivel de sub-total, în loc de rotunjire pe fiecare linie"
14470
+
14471
+ #~ msgid "Rounding"
14472
+ #~ msgstr "Rotunjire"
14473
+
14474
+ #~ msgid "Shipping tax class based on cart items"
14475
+ #~ msgstr "Clasă de impozitare pentru livrare bazată pe elementele din coș"
14476
+
14477
+ #~ msgid ""
14478
+ #~ "Optionally control which tax class shipping gets, or leave it so shipping "
14479
+ #~ "tax is based on the cart items themselves."
14480
+ #~ msgstr ""
14481
+ #~ "Opțional, controlează ce clasă de impozitare primește livrarea sau las-o "
14482
+ #~ "așa ca taxa de livrare să se bazeze numai pe elementele din coș."
14483
+
14484
+ #~ msgid "Shipping tax class"
14485
+ #~ msgstr "Clasă de impozitare pentru livrare"
14486
+
14487
+ #~ msgid "Customer billing address"
14488
+ #~ msgstr "Adresa de facturare a clientului"
14489
+
14490
+ #~ msgid "Customer shipping address"
14491
+ #~ msgstr "Adresa de livrare a clientului"
14492
+
14493
+ #~ msgid "This option determines which address is used to calculate tax."
14494
+ #~ msgstr ""
14495
+ #~ "Această opțiune determină ce adresă este folosită pentru a calcula taxele "
14496
+ #~ "fiscale."
14497
+
14498
+ #~ msgid "Calculate tax based on"
14499
+ #~ msgstr "Calcul taxă pe baza"
14500
+
14501
+ #~ msgid "No, I will enter prices exclusive of tax"
14502
+ #~ msgstr "Nu, voi introduce prețurile nete, fara taxe"
14503
+
14504
+ #~ msgid "Yes, I will enter prices inclusive of tax"
14505
+ #~ msgstr "Da, voi introduce prețurile brute, inclusiv taxele"
14506
+
14507
+ #~ msgid ""
14508
+ #~ "This option is important as it will affect how you input prices. Changing "
14509
+ #~ "it will not update existing products."
14510
+ #~ msgstr ""
14511
+ #~ "Această opțiune este importantă, deoarece va afecta modul în care sunt "
14512
+ #~ "introduse prețurile. Schimbarea nu va actualiza produsele existente."
14513
+
14514
+ #~ msgid "Prices entered with tax"
14515
+ #~ msgstr "Prețuri introduse cu taxă"
14516
+
14517
+ #~ msgid "Enable taxes"
14518
+ #~ msgstr "Activează taxe"
14519
+
14520
+ #~ msgid "Save webhook"
14521
+ #~ msgstr "Salvează cârlig web"
14522
+
14523
+ #~ msgid "Updated at"
14524
+ #~ msgstr "Actualizate la"
14525
+
14526
+ #~ msgid "Created at"
14527
+ #~ msgstr "Create la"
14528
+
14529
+ #~ msgid "Webhook actions"
14530
+ #~ msgstr "Acțiuni cârlig web"
14531
+
14532
+ #~ msgid "Secret"
14533
+ #~ msgstr "Secret"
14534
+
14535
+ #~ msgid "URL where the webhook payload is delivered."
14536
+ #~ msgstr "URL-ul unde sarcina de plată a cârligului web este livrată."
14537
+
14538
+ #~ msgid "Enter the action that will trigger this webhook."
14539
+ #~ msgstr "Introdu acțiunea care va declanșa acest cârlig web."
14540
+
14541
+ #~ msgid "Action event"
14542
+ #~ msgstr "Eveniment acțiune"
14543
+
14544
+ #~ msgid "Action"
14545
+ #~ msgstr "Acțiune"
14546
+
14547
+ #~ msgid "Product deleted"
14548
+ #~ msgstr "Produs șters"
14549
+
14550
+ #~ msgid "Product updated"
14551
+ #~ msgstr "Produs actualizat"
14552
+
14553
+ #~ msgid "Product created"
14554
+ #~ msgstr "Produs creat"
14555
+
14556
+ #~ msgid "Order updated"
14557
+ #~ msgstr "Comandă actualizată"
14558
+
14559
+ #~ msgid "Order created"
14560
+ #~ msgstr "Comandă creată"
14561
+
14562
+ #~ msgid "Customer deleted"
14563
+ #~ msgstr "Client șters"
14564
+
14565
+ #~ msgid "Customer updated"
14566
+ #~ msgstr "Client actualizat"
14567
+
14568
+ #~ msgid "Coupon deleted"
14569
+ #~ msgstr "Cupon șters"
14570
+
14571
+ #~ msgid "Coupon updated"
14572
+ #~ msgstr "Cupon actualizat"
14573
+
14574
+ #~ msgid "Coupon created"
14575
+ #~ msgstr "Cupon creat"
14576
+
14577
+ #~ msgid "Select when the webhook will fire."
14578
+ #~ msgstr "Selectează când va fi aplicat acest cârlig web."
14579
+
14580
+ #~ msgid ""
14581
+ #~ "The options are &quot;Active&quot; (delivers payload), &quot;Paused&quot; "
14582
+ #~ "(does not deliver), or &quot;Disabled&quot; (does not deliver due "
14583
+ #~ "delivery failures)."
14584
+ #~ msgstr ""
14585
+ #~ "Opțiunile sunt &quot;active&quot; (sarcină de plată livrări), &quot;"
14586
+ #~ "întrerupte&quot; (nu livrează) sau &quot;dezactivate&quot; (nu livrează "
14587
+ #~ "datorită eșecurilor la livrare)."
14588
+
14589
+ #~ msgid ""
14590
+ #~ "Friendly name for identifying this webhook, defaults to Webhook created "
14591
+ #~ "on %s."
14592
+ #~ msgstr ""
14593
+ #~ "Nume prietenos pentru identificarea acestui cârlig web, implicit pentru "
14594
+ #~ "cârligul web creat pe %s."
14595
+
14596
+ #~ msgid "Webhook data"
14597
+ #~ msgstr "Dată cârlig web"
14598
+
14599
+ #~ msgid "Method"
14600
+ #~ msgstr "Metodă"
14601
+
14602
+ #~ msgid "Tax name"
14603
+ #~ msgstr "Nume taxă"
14604
+
14605
+ #~ msgid "State code"
14606
+ #~ msgstr "Cod județ"
14607
+
14608
+ #~ msgid "Country code"
14609
+ #~ msgstr "Cod țară"
14610
+
14611
+ #~ msgid "No row(s) selected"
14612
+ #~ msgstr "Nu s-a selectat niciun rând"
14613
+
14614
+ #~ msgid "Import CSV"
14615
+ #~ msgstr "Import CSV"
14616
+
14617
+ #~ msgid "Remove selected row(s)"
14618
+ #~ msgstr "Elimină rândul/rândurile selectate"
14619
+
14620
+ #~ msgid "Insert row"
14621
+ #~ msgstr "Inserare rând"
14622
+
14623
+ #~ msgid "Tax rate ID."
14624
+ #~ msgstr "ID rată de impozitare."
14625
+
14626
+ #~ msgid "Choose whether or not this tax rate also gets applied to shipping."
14627
+ #~ msgstr ""
14628
+ #~ "De asemenea, alege dacă această rată de impozitare se aplică sau nu la "
14629
+ #~ "livrare."
14630
+
14631
+ #~ msgid ""
14632
+ #~ "Choose whether or not this is a compound rate. Compound tax rates are "
14633
+ #~ "applied on top of other tax rates."
14634
+ #~ msgstr ""
14635
+ #~ "Alege dacă aceasta este sau nu este o cotă compusă. Cotele de impozitare "
14636
+ #~ "compuse se aplică deasupra altor cote de impozitare."
14637
+
14638
+ #~ msgid "Compound"
14639
+ #~ msgstr "Compusa"
14640
+
14641
+ #~ msgid ""
14642
+ #~ "Choose a priority for this tax rate. Only 1 matching rate per priority "
14643
+ #~ "will be used. To define multiple tax rates for a single area you need to "
14644
+ #~ "specify a different priority per rate."
14645
+ #~ msgstr ""
14646
+ #~ "Alege o prioritate pentru această cotă de impozitare. Va fi folosită doar "
14647
+ #~ "o singură cotă care se potrivește per prioritate. Pentru a defini mai "
14648
+ #~ "multe cote de impozitare pentru o singură zonă trebuie să specifici o "
14649
+ #~ "prioritate diferită per cotă."
14650
+
14651
+ #~ msgid "Priority"
14652
+ #~ msgstr "Prioritate"
14653
+
14654
+ #~ msgid "Enter a name for this tax rate."
14655
+ #~ msgstr "Introdu un nume pentru această rată de impozitare."
14656
+
14657
+ #~ msgid "Enter a tax rate (percentage) to 4 decimal places."
14658
+ #~ msgstr "Introdu o rată de impozitare (procent) cu 4 zecimale."
14659
+
14660
+ #~ msgid "Rate&nbsp;%"
14661
+ #~ msgstr "Cota&nbsp;%"
14662
+
14663
+ #~ msgid ""
14664
+ #~ "Cities for this rule. Semi-colon (;) separate multiple values. Leave "
14665
+ #~ "blank to apply to all cities."
14666
+ #~ msgstr ""
14667
+ #~ "Orașe pentru această regulă. Punctul și virgula (;) separă mai multe "
14668
+ #~ "valori. Lasă necompletat ca să se aplice tuturor orașelor."
14669
+
14670
+ #~ msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all."
14671
+ #~ msgstr ""
14672
+ #~ "Un cod de stat din 2 cifre, de exemplu AL. Lasă necompletat ca să se "
14673
+ #~ "aplice tuturor."
14674
+
14675
+ #~ msgid "A 2 digit country code, e.g. US. Leave blank to apply to all."
14676
+ #~ msgstr ""
14677
+ #~ "Un cod de țară din 2 cifre, de exemplu RO. Lasă necompletat ca să se "
14678
+ #~ "aplice tuturor."
14679
+
14680
+ #~ msgid "Country&nbsp;code"
14681
+ #~ msgstr "Cod&nbsp;țară"
14682
+
14683
+ #~ msgid "QRCode"
14684
+ #~ msgstr "Cod QR"
14685
+
14686
+ #~ msgid "Consumer secret"
14687
+ #~ msgstr "Secret client"
14688
+
14689
+ #~ msgid "Copied!"
14690
+ #~ msgstr "Copiat!"
14691
+
14692
+ #~ msgid "Consumer key"
14693
+ #~ msgstr "Cheie client"
14694
+
14695
+ #~ msgid "Revoke key"
14696
+ #~ msgstr "Revocare cheie"
14697
+
14698
+ #~ msgid "Generate API key"
14699
+ #~ msgstr "Generează cheie API"
14700
+
14701
+ #~ msgid "Select the access type of these keys."
14702
+ #~ msgstr "Selectare tip acces pentru aceste chei."
14703
+
14704
+ #~ msgid "Owner of these keys."
14705
+ #~ msgstr "Proprietarul acestor chei."
14706
+
14707
+ #~ msgid "Friendly name for identifying this key."
14708
+ #~ msgstr "Nume prietenos pentru identificarea acestei chei."
14709
+
14710
+ #~ msgid "Key details"
14711
+ #~ msgstr "Detalii cheie"
14712
+
14713
+ #~ msgid "%s rates"
14714
+ #~ msgstr "Taxe %s"
14715
+
14716
+ #~ msgid "Standard rates"
14717
+ #~ msgstr "Taxe standard"
14718
+
14719
+ #~ msgid "Tax options"
14720
+ #~ msgstr "Opțiuni taxă"
14721
+
14722
+ #~ msgid "ID"
14723
+ #~ msgstr "ID"
14724
+
14725
+ #~ msgid "Shipping method(s)"
14726
+ #~ msgstr "Metodă(e) de livrare"
14727
+
14728
+ #~ msgid "Ship to specific countries only"
14729
+ #~ msgstr "Livrează numai în anumite țări"
14730
+
14731
+ #~ msgid "Ship to all countries"
14732
+ #~ msgstr "Livrare în toate țările"
14733
+
14734
+ #~ msgid "Ship to all countries you sell to"
14735
+ #~ msgstr "Livrează în toate țările în care vinzi"
14736
+
14737
+ #~ msgid ""
14738
+ #~ "Choose which countries you want to ship to, or choose to ship to all "
14739
+ #~ "locations you sell to."
14740
+ #~ msgstr ""
14741
+ #~ "Alege în ce țări vrei să livrezi sau alege să livrezi în toate locațiile "
14742
+ #~ "în care vinzi."
14743
+
14744
+ #~ msgid "This controls which shipping address is used by default."
14745
+ #~ msgstr ""
14746
+ #~ "Acest lucru controlează care adresă de livrare este folosită implicit."
14747
+
14748
+ #~ msgid "Shipping destination"
14749
+ #~ msgstr "Destinație livrare"
14750
+
14751
+ #~ msgid "Hide shipping costs until an address is entered"
14752
+ #~ msgstr "Ascunde costurile de livrare până când este introdusă o adresă"
14753
+
14754
+ #~ msgid "Enable the shipping calculator on the cart page"
14755
+ #~ msgstr "Activează calculatorul de livrare în pagina coșului"
14756
+
14757
+ #~ msgid "Show \"verified owner\" label on customer reviews"
14758
+ #~ msgstr "Arată eticheta „proprietar verificat” în recenziile clienților"
14759
+
14760
+ #~ msgid "Product ratings"
14761
+ #~ msgstr "Evaluări produs"
14762
+
14763
+ #~ msgid "This controls what unit you will define lengths in."
14764
+ #~ msgstr ""
14765
+ #~ "Acest lucru controlează în ce unitate de măsură vei defini lungimile."
14766
+
14767
+ #~ msgid "Dimensions unit"
14768
+ #~ msgstr "Unitatea de măsură pentru dimensiuni"
14769
+
14770
+ #~ msgid "This controls what unit you will define weights in."
14771
+ #~ msgstr ""
14772
+ #~ "Acest lucru controlează în ce unitate de măsură vei defini greutățile."
14773
+
14774
+ #~ msgid "Weight unit"
14775
+ #~ msgstr "Unitate de măsură pentru greutate"
14776
+
14777
+ #~ msgid "Measurements"
14778
+ #~ msgstr "Măsurătorile / Dimensiunile"
14779
+
14780
+ #~ msgid ""
14781
+ #~ "Enable this option to grant access to downloads when orders are "
14782
+ #~ "\"processing\", rather than \"completed\"."
14783
+ #~ msgstr ""
14784
+ #~ "Activează această opțiune pentru a acorda acces la descărcări atunci când "
14785
+ #~ "comenzile sunt \"prelucrate\", mai degrabă decât \"finalizate\"."
14786
+
14787
+ #~ msgid "Grant access to downloadable products after payment"
14788
+ #~ msgstr "Acordă acces la produsele descărcabile după efectuarea plații"
14789
+
14790
+ #~ msgid "This setting does not apply to guest purchases."
14791
+ #~ msgstr "Această setare nu se aplică pentru cumpărăturile vizitatorului."
14792
+
14793
+ #~ msgid "Downloads require login"
14794
+ #~ msgstr "Descărcările necesită autentificare"
14795
+
14796
+ #~ msgid "Access restriction"
14797
+ #~ msgstr "Restricționare acces"
14798
+
14799
+ #~ msgid "Redirect only"
14800
+ #~ msgstr "Numai redirecționare"
14801
+
14802
+ #~ msgid "X-Accel-Redirect/X-Sendfile"
14803
+ #~ msgstr "X-Accel-Redirect/X-Sendfile"
14804
+
14805
+ #~ msgid "Force downloads"
14806
+ #~ msgstr "Forțează descărcări"
14807
+
14808
+ #~ msgid "File download method"
14809
+ #~ msgstr "Metodă de descărcare fișier"
14810
+
14811
+ #~ msgid "Stock display format"
14812
+ #~ msgstr "Format de afișare stoc"
14813
+
14814
+ #~ msgid "Hide out of stock items from the catalog"
14815
+ #~ msgstr "Ascunde elementele cu stoc epuizat din catalog"
14816
+
14817
+ #~ msgid "Out of stock visibility"
14818
+ #~ msgstr "Vizibilitate stoc epuizat"
14819
+
14820
+ #~ msgid "Out of stock threshold"
14821
+ #~ msgstr "Prag stoc epuizat"
14822
+
14823
+ #~ msgid "Low stock threshold"
14824
+ #~ msgstr "Prag stoc redus"
14825
+
14826
+ #~ msgid "Notification recipient(s)"
14827
+ #~ msgstr "Destinatar(i) notificare"
14828
+
14829
+ #~ msgid "Enable out of stock notifications"
14830
+ #~ msgstr "Activare notificări stoc epuizat"
14831
+
14832
+ #~ msgid "Enable low stock notifications"
14833
+ #~ msgstr "Activare notificări pentru stoc redus"
14834
+
14835
+ #~ msgid "Notifications"
14836
+ #~ msgstr "Notificări"
14837
+
14838
+ #~ msgid ""
14839
+ #~ "Hold stock (for unpaid orders) for x minutes. When this limit is reached, "
14840
+ #~ "the pending order will be cancelled. Leave blank to disable."
14841
+ #~ msgstr ""
14842
+ #~ "Ține în stoc (pentru comenzi neplătite) timp de x minute. Când se ajunge "
14843
+ #~ "la această limită, comanda în așteptare va fi anulată. Lasă necompletat "
14844
+ #~ "pentru dezactivare."
14845
+
14846
+ #~ msgid "Hold stock (minutes)"
14847
+ #~ msgstr "Ține în stoc (minute)"
14848
+
14849
+ #~ msgid "Enable stock management"
14850
+ #~ msgstr "Activare administrare stoc"
14851
+
14852
+ #~ msgid "Manage stock"
14853
+ #~ msgstr "Administrează stocul"
14854
+
14855
+ #~ msgid "Enable AJAX add to cart buttons on archives"
14856
+ #~ msgstr ""
14857
+ #~ "Activeaza adăugarea prin AJAX la butoane de adăugare în coș în arhive"
14858
+
14859
+ #~ msgid "Redirect to the cart page after successful addition"
14860
+ #~ msgstr "Redirecționează la pagina coșului după adăugarea cu succes"
14861
+
14862
+ #~ msgid "Add to cart behaviour"
14863
+ #~ msgstr "Comportament adaugă la coș"
14864
+
14865
+ #~ msgid "Sort by price (desc)"
14866
+ #~ msgstr "Sortează după preț (descrescător)"
14867
+
14868
+ #~ msgid "Sort by price (asc)"
14869
+ #~ msgstr "Sortează după preț (crescător)"
14870
+
14871
+ #~ msgid "Sort by most recent"
14872
+ #~ msgstr "Sortează după cel mai recent"
14873
+
14874
+ #~ msgid "Average rating"
14875
+ #~ msgstr "Evaluare medie"
14876
+
14877
+ #~ msgid "Popularity (sales)"
14878
+ #~ msgstr "Popularitate (vânzări)"
14879
+
14880
+ #~ msgid "Default sorting (custom ordering + name)"
14881
+ #~ msgstr "Sortare implicită (ordonare personalizată + nume)"
14882
+
14883
+ #~ msgid "Default product sorting"
14884
+ #~ msgstr "Sortare produs implicit"
14885
+
14886
+ #~ msgid "Show subcategories"
14887
+ #~ msgstr "Afișează subcategoriile"
14888
+
14889
+ #~ msgid "Show products"
14890
+ #~ msgstr "Afiseaza produse"
14891
+
14892
+ #~ msgid "Shop page display"
14893
+ #~ msgstr "Afișare pagină magazin"
14894
+
14895
+ #~ msgid ""
14896
+ #~ "This sets the base page of your shop - this is where your product archive "
14897
+ #~ "will be."
14898
+ #~ msgstr ""
14899
+ #~ "Setează pagina de bază a magazinului - aici este locul unde va fi arhiva "
14900
+ #~ "produsului."
14901
+
14902
+ #~ msgid ""
14903
+ #~ "The base page can also be used in your <a href=\"%s\">product permalinks</"
14904
+ #~ "a>."
14905
+ #~ msgstr ""
14906
+ #~ "Pagina de bază poate fi, de asemenea, folosită în <a href=\"%s\">legături "
14907
+ #~ "permanente produs</a>."
14908
+
14909
+ #~ msgid "Shop page"
14910
+ #~ msgstr "Pagină magazin"
14911
+
14912
+ #~ msgid "Integration"
14913
+ #~ msgstr "Integrare"
14914
+
14915
+ #~ msgid "This sets the number of decimal points shown in displayed prices."
14916
+ #~ msgstr "Aceasta stabilește numărul de zecimale afișat la prețuri."
14917
+
14918
+ #~ msgid "Number of decimals."
14919
+ #~ msgstr "Număr de zecimale."
14920
+
14921
+ #~ msgid "This sets the decimal separator of displayed prices."
14922
+ #~ msgstr ""
14923
+ #~ "Aceasta stabilește separatorul de zecimale pentru prețurile afișate."
14924
+
14925
+ #~ msgid "This sets the thousand separator of displayed prices."
14926
+ #~ msgstr "Aceasta stabilește separatorul de mii pentru prețurile afișate."
14927
+
14928
+ #~ msgid "This controls the position of the currency symbol."
14929
+ #~ msgstr "Aceasta controlează poziția simbolului monedei."
14930
+
14931
+ #~ msgid ""
14932
+ #~ "This controls what currency prices are listed at in the catalog and which "
14933
+ #~ "currency gateways will take payments in."
14934
+ #~ msgstr ""
14935
+ #~ "Aceasta controlează în ce monedă sunt afișate prețurile în catalog și "
14936
+ #~ "prin care gateway-uri vor fi acceptate plățile."
14937
+
14938
+ #~ msgid "Currency"
14939
+ #~ msgstr "Monedă"
14940
+
14941
+ #~ msgid ""
14942
+ #~ "The following options affect how prices are displayed on the frontend."
14943
+ #~ msgstr ""
14944
+ #~ "Următoarele opțiuni afectează modul în care sunt afișate prețurile pe "
14945
+ #~ "front-end."
14946
+
14947
+ #~ msgid "Currency options"
14948
+ #~ msgstr "Opțiuni monedă"
14949
+
14950
+ #~ msgid ""
14951
+ #~ "This is a demo store for testing purposes &mdash; no orders shall be "
14952
+ #~ "fulfilled."
14953
+ #~ msgstr ""
14954
+ #~ "Acesta este un magazin demonstrativ pentru testare &mdash; nicio comandă "
14955
+ #~ "nu va fi onorată."
14956
+
14957
+ #~ msgid "Store notice"
14958
+ #~ msgstr "Observație magazin"
14959
+
14960
+ #~ msgid "Geolocate (with page caching support)"
14961
+ #~ msgstr "Geo-localizare (cu suport pentru cache pagină)"
14962
+
14963
+ #~ msgid "Geolocate"
14964
+ #~ msgstr "Geo-localizare"
14965
+
14966
+ #~ msgid "Shop base address"
14967
+ #~ msgstr "Bazat pe adresa magazinului"
14968
+
14969
+ #~ msgid "IP address"
14970
+ #~ msgstr "Adresă IP"
14971
+
14972
+ #~ msgid "Specific Countries"
14973
+ #~ msgstr "Anumite țări"
14974
+
14975
+ #~ msgid "Sell to all countries"
14976
+ #~ msgstr "Vinde în toate țările"
14977
+
14978
+ #~ msgid ""
14979
+ #~ "This option lets you limit which countries you are willing to sell to."
14980
+ #~ msgstr ""
14981
+ #~ "Această opțiune îți permite să limitezi țările în care vrei să vinzi."
14982
+
14983
+ #~ msgid "Selling location(s)"
14984
+ #~ msgstr "Locație(i) de vânzare"
14985
+
14986
+ #~ msgid "Base color"
14987
+ #~ msgstr "Culoare de bază"
14988
+
14989
+ #~ msgid "The text to appear in the footer of WooCommerce emails."
14990
+ #~ msgstr "Textul care să apară în subsolul emailurilor WooCommerce."
14991
+
14992
+ #~ msgid "Email template"
14993
+ #~ msgstr "Șablon email"
14994
+
14995
+ #~ msgid "\"From\" name"
14996
+ #~ msgstr "Nume \"De la\""
14997
+
14998
+ #~ msgid "Email sender options"
14999
+ #~ msgstr "Opțiuni expeditor email"
15000
+
15001
+ #~ msgid "Email options"
15002
+ #~ msgstr "Opțiuni email"
15003
+
15004
+ #~ msgid "Emails"
15005
+ #~ msgstr "Emailuri"
15006
+
15007
+ #~ msgid ""
15008
+ #~ "Installed payment methods are listed below and can be sorted to control "
15009
+ #~ "their display order on the frontend."
15010
+ #~ msgstr ""
15011
+ #~ "Metodele de plată instalate sunt enumerate mai jos și pot fi sortate "
15012
+ #~ "pentru a le controla ordinea de afișare în partea din față a sitului."
15013
+
15014
+ #~ msgid "Endpoint for the \"Checkout &rarr; Add payment method\" page."
15015
+ #~ msgstr ""
15016
+ #~ "Punct-final pentru pagina \"Finalizare &rarr; Adaugă metodă de plată\"."
15017
+
15018
+ #~ msgid "Add payment method"
15019
+ #~ msgstr "Adaugă metodă de plată"
15020
+
15021
+ #~ msgid "Endpoint for the \"Checkout &rarr; Order received\" page."
15022
+ #~ msgstr "Punct-final pentru pagina \"Finalizare &rarr; Comandă primită\"."
15023
+
15024
+ #~ msgid "Order received"
15025
+ #~ msgstr "Comandă primită"
15026
+
15027
+ #~ msgid "Endpoint for the \"Checkout &rarr; Pay\" page."
15028
+ #~ msgstr "Punct-final pentru pagina \"Finalizare &rarr; Plată\"."
15029
+
15030
+ #~ msgid "Pay"
15031
+ #~ msgstr "Plătește"
15032
+
15033
+ #~ msgid ""
15034
+ #~ "Endpoints are appended to your page URLs to handle specific actions "
15035
+ #~ "during the checkout process. They should be unique."
15036
+ #~ msgstr ""
15037
+ #~ "Punctele-finale sunt adăugate la URL-urile paginilor tale pentru a "
15038
+ #~ "gestiona acțiuni specifice în timpul procesului de finalizare. Ele ar "
15039
+ #~ "trebui să fie unice."
15040
+
15041
+ #~ msgid "Checkout endpoints"
15042
+ #~ msgstr "Puncte-finale de finalizare"
15043
+
15044
+ #~ msgid ""
15045
+ #~ "If you define a \"Terms\" page the customer will be asked if they accept "
15046
+ #~ "them when checking out."
15047
+ #~ msgstr ""
15048
+ #~ "Dacă definești o pagină \"Termeni\" clientul va fi întrebat dacă îi "
15049
+ #~ "acceptă la verificare."
15050
+
15051
+ #~ msgid "Terms and conditions"
15052
+ #~ msgstr "Termeni și condiții"
15053
+
15054
+ #~ msgid "Checkout page"
15055
+ #~ msgstr "Pagină finalizare"
15056
+
15057
+ #~ msgid "Cart page"
15058
+ #~ msgstr "Pagină coș"
15059
+
15060
+ #~ msgid ""
15061
+ #~ "These pages need to be set so that WooCommerce knows where to send users "
15062
+ #~ "to checkout."
15063
+ #~ msgstr ""
15064
+ #~ "Aceste pagini trebuie să fie setate astfel încât WooCommerce să știe unde "
15065
+ #~ "să trimită utilizatorii pentru finalizare."
15066
+
15067
+ #~ msgid "Force HTTP when leaving the checkout"
15068
+ #~ msgstr "Impune HTTP la terminarea finalizării"
15069
+
15070
+ #~ msgid "Force secure checkout"
15071
+ #~ msgstr "Impune finalizarea securizată"
15072
+
15073
+ #~ msgid ""
15074
+ #~ "When applying multiple coupons, apply the first coupon to the full price "
15075
+ #~ "and the second coupon to the discounted price and so on."
15076
+ #~ msgstr ""
15077
+ #~ "Când se aplică mai multe cupoane, aplică primului cupon la prețul întreg "
15078
+ #~ "și al doilea cupon la prețul cu discount și așa mai departe."
15079
+
15080
+ #~ msgid "Calculate coupon discounts sequentially"
15081
+ #~ msgstr "Calculează discounturile cuponului secvențial"
15082
+
15083
+ #~ msgid "Coupons can be applied from the cart and checkout pages."
15084
+ #~ msgstr "Cupoanele pot fi aplicate din coș și din paginile de finalizare."
15085
+
15086
+ #~ msgid "Enable the use of coupon codes"
15087
+ #~ msgstr "Activează folosirea codurilor de cupoane"
15088
+
15089
+ #~ msgid "General options"
15090
+ #~ msgstr "Opțiuni generale"
15091
+
15092
+ #~ msgid "Account creation"
15093
+ #~ msgstr "Creare cont"
15094
+
15095
+ #~ msgid ""
15096
+ #~ "Endpoint for the triggering logout. You can add this to your menus via a "
15097
+ #~ "custom link: yoursite.com/?customer-logout=true"
15098
+ #~ msgstr ""
15099
+ #~ "Punct-final pentru declanșarea dezautentificării. Poți adăuga acesta la "
15100
+ #~ "meniuri printr-o legătură personalizată: yoursite.com/?customer-"
15101
+ #~ "logout=true"
15102
+
15103
+ #~ msgid "Logout"
15104
+ #~ msgstr "Dezautentificare"
15105
+
15106
+ #~ msgid "Endpoint for the \"My account &rarr; Lost password\" page."
15107
+ #~ msgstr "Punct-final pentru pagina \"Contul meu &rarr; Parolă pierdută\"."
15108
+
15109
+ #~ msgid "Lost password"
15110
+ #~ msgstr "Parolă pierdută"
15111
+
15112
+ #~ msgid "Endpoint for the \"My account &rarr; Addresses\" page."
15113
+ #~ msgstr "Punct-final pentru pagina \"Contul meu &rarr; Adrese\"."
15114
+
15115
+ #~ msgid "Endpoint for the \"My account &rarr; Edit account\" page."
15116
+ #~ msgstr "Punct-final pentru pagina \"Contul meu &rarr; Editează cont\"."
15117
+
15118
+ #~ msgid "Edit account"
15119
+ #~ msgstr "Editează cont"
15120
+
15121
+ #~ msgid "Endpoint for the \"My account &rarr; View order\" page."
15122
+ #~ msgstr ""
15123
+ #~ "Punct-final pentru pagina \"Contul meu &rarr; Vizualizează comandă\"."
15124
+
15125
+ #~ msgid "View order"
15126
+ #~ msgstr "Vizualizare comandă"
15127
+
15128
+ #~ msgid "My account page"
15129
+ #~ msgstr "Pagina Contul meu"
15130
+
15131
+ #~ msgid "Totals"
15132
+ #~ msgstr "Totaluri"
15133
+
15134
+ #~ msgid "Total sales minus shipping and tax."
15135
+ #~ msgstr "Total vânzări minus livrare și taxă"
15136
+
15137
+ #~ msgid "Net profit"
15138
+ #~ msgstr "Profit NET"
15139
+
15140
+ #~ msgid "This is the sum of the 'Shipping total' field within your orders."
15141
+ #~ msgstr "Aceasta este suma câmpului \"Total livrare\" în comenzile tale."
15142
+
15143
+ #~ msgid "Total shipping"
15144
+ #~ msgstr "Total livrare"
15145
+
15146
+ #~ msgid "This is the sum of the 'Order total' field within your orders."
15147
+ #~ msgstr "Aceasta este suma câmpului \"Total comandă\" în comenzile tale."
15148
+
15149
+ #~ msgid "Total sales"
15150
+ #~ msgstr "Vânzări totale"
15151
+
15152
+ #~ msgid "Period"
15153
+ #~ msgstr "Perioadă"
15154
+
15155
+ #~ msgid "No taxes found in this period"
15156
+ #~ msgstr "Nu s-au găsit taxe în această perioadă"
15157
+
15158
+ #~ msgid "This is the total tax for the rate (shipping tax + product tax)."
15159
+ #~ msgstr ""
15160
+ #~ "Acesta este taxa totală pentru cotă (taxă de livrare + taxă pe produs)."
15161
+
15162
+ #~ msgid "Total tax"
15163
+ #~ msgstr "Taxă totală"
15164
+
15165
+ #~ msgid ""
15166
+ #~ "This is the sum of the \"Tax rows\" shipping tax amount within your "
15167
+ #~ "orders."
15168
+ #~ msgstr ""
15169
+ #~ "Acesta este totalul sumei taxă de livrare „Rânduri taxă” în comenzile "
15170
+ #~ "tale."
15171
+
15172
+ #~ msgid "Shipping tax amount"
15173
+ #~ msgstr "Valoare taxă livrare"
15174
+
15175
+ #~ msgid "This is the sum of the \"Tax rows\" tax amount within your orders."
15176
+ #~ msgstr "Acesta este totalul sumei taxei „Rânduri taxă” în comenzile tale."
15177
+
15178
+ #~ msgid "Tax amount"
15179
+ #~ msgstr "Valoare taxă"
15180
+
15181
+ #~ msgid "Rate"
15182
+ #~ msgstr "Impozit"
15183
+
15184
+ #~ msgid "Units in stock"
15185
+ #~ msgstr "Bucăți în stoc"
15186
+
15187
+ #~ msgid "Parent"
15188
+ #~ msgstr "Părinte"
15189
+
15190
+ #~ msgid "No products found."
15191
+ #~ msgstr "Nu s-a găsit niciun produs."
15192
+
15193
+ #~ msgid "Sales amount"
15194
+ #~ msgstr "Valoare vânzări"
15195
+
15196
+ #~ msgid "Top earners"
15197
+ #~ msgstr "Cele mai multe câștiguri"
15198
+
15199
+ #~ msgid "Top freebies"
15200
+ #~ msgstr "Top gratuități"
15201
+
15202
+ #~ msgid "No products found in range"
15203
+ #~ msgstr "Nu au fost găsite produse în această perioadă"
15204
+
15205
+ #~ msgid "Top sellers"
15206
+ #~ msgstr "Cele mai bune vânzări"
15207
+
15208
+ #~ msgid "Product search"
15209
+ #~ msgstr "Căutare produs"
15210
+
15211
+ #~ msgid "Showing reports for:"
15212
+ #~ msgstr "Se afișează rapoarte pentru:"
15213
+
15214
+ #~ msgid "%s purchases for the selected items"
15215
+ #~ msgstr "%s achiziți pentru elementele selectate"
15216
+
15217
+ #~ msgid "%s sales for the selected items"
15218
+ #~ msgstr "%s vânzări pentru elementele selectate"
15219
+
15220
+ #~ msgid "Net sales amount"
15221
+ #~ msgstr "Valoare netă vânzări"
15222
+
15223
+ #~ msgid "Gross sales amount"
15224
+ #~ msgstr "Valoare vânzări brute"
15225
+
15226
+ #~ msgid "Shipping amount"
15227
+ #~ msgstr "Valoare livrare"
15228
+
15229
+ #~ msgid "Average net sales amount"
15230
+ #~ msgstr "Suma medie a vânzărilor nete"
15231
+
15232
+ #~ msgid "Number of orders"
15233
+ #~ msgstr "Număr de comenzi"
15234
+
15235
+ #~ msgid "Number of items sold"
15236
+ #~ msgstr "Număr de produse vândute"
15237
+
15238
+ #~ msgid "%s worth of coupons used"
15239
+ #~ msgstr "%s valoarea cupoanelor utilizate"
15240
+
15241
+ #~ msgid "%s charged for shipping"
15242
+ #~ msgstr "%s taxat pentru livrare"
15243
+
15244
+ #~ msgid "%s items purchased"
15245
+ #~ msgstr "%s produse cumpărate"
15246
+
15247
+ #~ msgid "%s orders placed"
15248
+ #~ msgstr "%s comenzi plasate"
15249
+
15250
+ #~ msgid ""
15251
+ #~ "This is the sum of the order totals after any refunds and excluding "
15252
+ #~ "shipping and taxes."
15253
+ #~ msgstr ""
15254
+ #~ "Aceasta este suma comenzilor totale după orice fel de rambursări, "
15255
+ #~ "exceptând livrare și taxe."
15256
+
15257
+ #~ msgid "%s net sales in this period"
15258
+ #~ msgstr "%s vânzări nete în această perioadă"
15259
+
15260
+ #~ msgid ""
15261
+ #~ "This is the sum of the order totals after any refunds and including "
15262
+ #~ "shipping and taxes."
15263
+ #~ msgstr ""
15264
+ #~ "Aceasta este suma comenzilor totale după orice fel de rambursări, "
15265
+ #~ "inclusiv livrare și taxe."
15266
+
15267
+ #~ msgid "%s gross sales in this period"
15268
+ #~ msgstr "%s vânzări brute în această perioadă"
15269
+
15270
+ #~ msgid "%s average net monthly sales"
15271
+ #~ msgstr "%s vânzări medii lunare"
15272
+
15273
+ #~ msgid "%s average net daily sales"
15274
+ #~ msgstr "%s vânzări medii zilnice"
15275
+
15276
+ #~ msgid "All"
15277
+ #~ msgstr "Toate"
15278
+
15279
+ #~ msgid "Select categories&hellip;"
15280
+ #~ msgstr "Selectați categoriile&hellip;"
15281
+
15282
+ #~ msgid "No out of stock products found."
15283
+ #~ msgstr "Nu au fost găsite produse cu stoc epuizat."
15284
+
15285
+ #~ msgid "No low in stock products found."
15286
+ #~ msgstr "Niciun stoc scăzut de produse găsit."
15287
+
15288
+ #~ msgid "new users"
15289
+ #~ msgstr "utilizatori noi"
15290
+
15291
+ #~ msgid "Signups"
15292
+ #~ msgstr "Înscrieri"
15293
+
15294
+ #~ msgid "guest orders"
15295
+ #~ msgstr "comenzi vizitator"
15296
+
15297
+ #~ msgid "orders"
15298
+ #~ msgstr "comenzi"
15299
+
15300
+ #~ msgid "Guest orders"
15301
+ #~ msgstr "Comenzi vizitator"
15302
+
15303
+ #~ msgid "Customer orders"
15304
+ #~ msgstr "Comenzi clienți"
15305
+
15306
+ #~ msgid "Guest sales"
15307
+ #~ msgstr "Vânzări la vizitatori"
15308
+
15309
+ #~ msgid "Customer role."
15310
+ #~ msgstr "Rol client."
15311
+
15312
+ #~ msgid "%s signups in this period"
15313
+ #~ msgstr "%s înregistrări în această perioadă"
15314
+
15315
+ #~ msgid "Last order"
15316
+ #~ msgstr "Ultima comandă"
15317
+
15318
+ #~ msgid "Money spent"
15319
+ #~ msgstr "Bani cheltuiți"
15320
+
15321
+ #~ msgid "Location"
15322
+ #~ msgstr "Locație"
15323
+
15324
+ #~ msgid "Username"
15325
+ #~ msgstr "Nume utilizator"
15326
+
15327
+ #~ msgid "Name (Last, First)"
15328
+ #~ msgstr "Nume ( Nume, Prenume )"
15329
+
15330
+ #~ msgid "Link previous orders"
15331
+ #~ msgstr "Leagă comenzile anterioare"
15332
+
15333
+ #~ msgid "View orders"
15334
+ #~ msgstr "Vezi comenzi"
15335
+
15336
+ #~ msgid "Refresh stats"
15337
+ #~ msgstr "Împrospătează statisticile"
15338
+
15339
+ #~ msgctxt "hash before order number"
15340
+ #~ msgid "#"
15341
+ #~ msgstr "#"
15342
+
15343
+ #~ msgid "Search customers"
15344
+ #~ msgstr "Caută clienții"
15345
+
15346
+ #~ msgid "Refreshed stats for %s"
15347
+ #~ msgstr "Împrospătează statisticile pentru %s"
15348
+
15349
+ #~ msgid "%s previous order linked"
15350
+ #~ msgid_plural "%s previous orders linked"
15351
+ #~ msgstr[0] "%s comandă anterioară legată"
15352
+ #~ msgstr[1] "%s comenzi anterioare legate"
15353
+ #~ msgstr[2] "%s de comenzi anterioare legate"
15354
+
15355
+ #~ msgid "No customers found."
15356
+ #~ msgstr "Nu au fost găsiți clienți."
15357
+
15358
+ #~ msgid "Discount amount"
15359
+ #~ msgstr "Valoare discount"
15360
+
15361
+ #~ msgid "Number of coupons used"
15362
+ #~ msgstr "Număr de cupoane folosite"
15363
+
15364
+ #~ msgid "Export CSV"
15365
+ #~ msgstr "Salvează în CSV"
15366
+
15367
+ #~ msgid "Most discount"
15368
+ #~ msgstr "Cele mai multe discounturi"
15369
+
15370
+ #~ msgid "No coupons found in range"
15371
+ #~ msgstr "Niciun cupon găsit în gamă"
15372
+
15373
+ #~ msgid "Most popular"
15374
+ #~ msgstr "Cel mai popular"
15375
+
15376
+ #~ msgid "No used coupons found"
15377
+ #~ msgstr "Nu s-au găsit cupoane folosite"
15378
+
15379
+ #~ msgid "Show"
15380
+ #~ msgstr "Arată"
15381
+
15382
+ #~ msgid "All coupons"
15383
+ #~ msgstr "Toate cupoanele"
15384
+
15385
+ #~ msgid "Choose coupons&hellip;"
15386
+ #~ msgstr "Alege cupoane&hellip;"
15387
+
15388
+ #~ msgid "Filter by coupon"
15389
+ #~ msgstr "Filtrare după cupon"
15390
+
15391
+ #~ msgid "Last 7 days"
15392
+ #~ msgstr "Ultimele 7 zile"
15393
+
15394
+ #~ msgid "This month"
15395
+ #~ msgstr "Luna aceasta"
15396
+
15397
+ #~ msgid "Last month"
15398
+ #~ msgstr "Luna trecută"
15399
+
15400
+ #~ msgid "Year"
15401
+ #~ msgstr "An"
15402
+
15403
+ #~ msgid "%s coupons used in total"
15404
+ #~ msgstr "%s cupoane folosite în total"
15405
+
15406
+ #~ msgid "%s discounts in total"
15407
+ #~ msgstr "%s discounturi în total"
15408
+
15409
+ #~ msgid "Sold 1 item in the last %2$d days"
15410
+ #~ msgid_plural "Sold %1$d items in the last %2$d days"
15411
+ #~ msgstr[0] "1 produs vândut în ultimele %2$d zile"
15412
+ #~ msgstr[1] "%1$d produse vândute în ultimele %2$d zile"
15413
+ #~ msgstr[2] "%1$d de produse vândute în ultimele %2$d zile"
15414
+
15415
+ #~ msgid "Sold %1$s worth in the last %2$d days"
15416
+ #~ msgstr "Vânzare în valoare de %1$s în ultimele %2$d zile"
15417
+
15418
+ #~ msgid "Variation description."
15419
+ #~ msgstr "Descriere variație."
15420
+
15421
+ #~ msgid "Tax class."
15422
+ #~ msgstr "Clasă de impozitare."
15423
+
15424
+ #~ msgid "Same as parent"
15425
+ #~ msgstr "La fel ca părintele"
15426
+
15427
+ #~ msgid "Shipping classes"
15428
+ #~ msgstr "Clase de livrare"
15429
+
15430
+ #~ msgid "Dimensions (L&times;W&times;H) (%s)"
15431
+ #~ msgstr "Dimensiuni (L&times;l&times;h) (%s)"
15432
+
15433
+ #~ msgid "Sale end date"
15434
+ #~ msgstr "Data de încheiere a vânzării"
15435
+
15436
+ #~ msgid "Cancel schedule"
15437
+ #~ msgstr "Anulează programarea"
15438
+
15439
+ #~ msgid "Sale price"
15440
+ #~ msgstr "Preț de vânzare"
15441
+
15442
+ #~ msgid "Variation price (required)"
15443
+ #~ msgstr "Preţul variaţiei (obligatoriu)"
15444
+
15445
+ #~ msgid "Regular price"
15446
+ #~ msgstr "Preț obișnuit:"
15447
+
15448
+ #~ msgid "Enable this option to enable stock management at variation level"
15449
+ #~ msgstr ""
15450
+ #~ "Activează această opțiune pentru a permite gestionarea stocurilor la "
15451
+ #~ "nivel de variație"
15452
+
15453
+ #~ msgid ""
15454
+ #~ "Enable this option if a product is not shipped or there is no shipping "
15455
+ #~ "cost"
15456
+ #~ msgstr ""
15457
+ #~ "Activează această opțiune dacă un produs nu este livrat sau nu există "
15458
+ #~ "niciun cost de livrare"
15459
+
15460
+ #~ msgid ""
15461
+ #~ "Enable this option if access is given to a downloadable file upon "
15462
+ #~ "purchase of a product"
15463
+ #~ msgstr ""
15464
+ #~ "Activează această opțiune dacă accesul este dat unui fișier descărcabil "
15465
+ #~ "la cumpărarea unui produs"
15466
+
15467
+ #~ msgid "Enabled"
15468
+ #~ msgstr "Activat"
15469
+
15470
+ #~ msgid "Remove this image"
15471
+ #~ msgstr "Înlătură această imagine"
15472
+
15473
+ #~ msgid "Insert file URL"
15474
+ #~ msgstr "Inserare URL fișier"
15475
+
15476
+ #~ msgid "Choose file"
15477
+ #~ msgstr "Alegere fișier"
15478
+
15479
+ #~ msgid "http://"
15480
+ #~ msgstr "http://"
15481
+
15482
+ #~ msgid "File name"
15483
+ #~ msgstr "Nume fișier"
15484
+
15485
+ #~ msgid "Enter some text, or some attributes by \"%s\" separating values."
15486
+ #~ msgstr "Introdu un text sau anumite atribute prin separarea valorilor „%s”."
15487
+
15488
+ #~ msgid "Select terms"
15489
+ #~ msgstr "Selectează termeni"
15490
+
15491
+ #~ msgid "Shipping methods"
15492
+ #~ msgstr "Metode de livrare"
15493
+
15494
+ #~ msgid "Shipping name"
15495
+ #~ msgstr "Nume livrare"
15496
+
15497
+ #~ msgid "Optional"
15498
+ #~ msgstr "Opțional"
15499
+
15500
+ #~ msgid "Or, enter tax rate ID:"
15501
+ #~ msgstr "Sau, introdu ID cotă de impozitare:"
15502
+
15503
+ #~ msgid "Rate %"
15504
+ #~ msgstr "Cotă %"
15505
+
15506
+ #~ msgid "Rate code"
15507
+ #~ msgstr "Cod cotă"
15508
+
15509
+ #~ msgid "Tax class"
15510
+ #~ msgstr "Clasă de impozitare"
15511
+
15512
+ #~ msgid "Rate name"
15513
+ #~ msgstr "Nume cotă"
15514
+
15515
+ #~ msgid "Add tax"
15516
+ #~ msgstr "Adăugare taxă"
15517
+
15518
+ #~ msgid "Add products"
15519
+ #~ msgstr "Adăugare produse"
15520
+
15521
+ #~ msgid ""
15522
+ #~ "You will need to manually issue a refund through your payment gateway "
15523
+ #~ "after using this."
15524
+ #~ msgstr ""
15525
+ #~ "Va trebui să ceri manual o rambursare prin gateway-ul de plată după ce "
15526
+ #~ "folosești asta."
15527
+
15528
+ #~ msgid "Payment gateway"
15529
+ #~ msgstr "Gateway de plată"
15530
+
15531
+ #~ msgid "Reason for refund (optional):"
15532
+ #~ msgstr "Motiv pentru rambursare (opțional):"
15533
+
15534
+ #~ msgid "Refund amount"
15535
+ #~ msgstr "Sumă de rambursat"
15536
+
15537
+ #~ msgid "Total available to refund"
15538
+ #~ msgstr "Total disponibil pentru rambursare"
15539
+
15540
+ #~ msgid "Amount already refunded"
15541
+ #~ msgstr "Sumă deja rambursată"
15542
+
15543
+ #~ msgid "Restock refunded items"
15544
+ #~ msgstr "Reaprovizionează articolele rambursate"
15545
+
15546
+ #~ msgid "Add fee"
15547
+ #~ msgstr "Adaugă taxă"
15548
+
15549
+ #~ msgid "Add product(s)"
15550
+ #~ msgstr "Adaugă produs(e)"
15551
+
15552
+ #~ msgid "Refund"
15553
+ #~ msgstr "Rambursare"
15554
+
15555
+ #~ msgid "To edit this order change the status back to \"Pending\""
15556
+ #~ msgstr ""
15557
+ #~ "Pentru a edita această comandă modifică starea înapoi la „În așteptare”"
15558
+
15559
+ #~ msgid "Refunded"
15560
+ #~ msgstr "Rambursată"
15561
+
15562
+ #~ msgid "Order Total"
15563
+ #~ msgstr "Total comandă"
15564
+
15565
+ #~ msgid "Tax"
15566
+ #~ msgstr "Taxă"
15567
+
15568
+ #~ msgid "Qty"
15569
+ #~ msgstr "Cantitate"
15570
+
15571
+ #~ msgid "Cost"
15572
+ #~ msgstr "Cost"
15573
+
15574
+ #~ msgid "Item"
15575
+ #~ msgstr "Element"
15576
+
15577
+ #~ msgid "After pre-tax discounts."
15578
+ #~ msgstr "Reduceri după pre-impozitare."
15579
+
15580
+ #~ msgid "Add&nbsp;meta"
15581
+ #~ msgstr "Adaugă&nbsp;meta"
15582
+
15583
+ #~ msgid "Product SKU."
15584
+ #~ msgstr "Cod Păstrare Produs în Stoc."
15585
+
15586
+ #~ msgid "Variation ID:"
15587
+ #~ msgstr "ID Variatie:"
15588
+
15589
+ #~ msgid "Product ID."
15590
+ #~ msgstr "ID produs:"
15591
+
15592
+ #~ msgid "Fee name"
15593
+ #~ msgstr "Nume taxă"
15594
+
15595
+ #~ msgid "Access expires"
15596
+ #~ msgstr "Accesul expiră"
15597
+
15598
+ #~ msgid "Downloads remaining"
15599
+ #~ msgstr "Descărcări rămase"
15600
+
15601
+ #~ msgid "Downloaded %s time"
15602
+ #~ msgid_plural "Downloaded %s times"
15603
+ #~ msgstr[0] "Timp de descărcare %s"
15604
+ #~ msgstr[1] "Timpi de descărcare %s"
15605
+ #~ msgstr[2] "Timpi de descărcare %s"
15606
+
15607
+ #~ msgid "Revoke access"
15608
+ #~ msgstr "Revocare acces"
15609
+
15610
+ #~ msgid "Add product gallery images"
15611
+ #~ msgstr "Adaugă imagini în galeria produsului"
15612
+
15613
+ #~ msgid "Add to gallery"
15614
+ #~ msgstr "Adaugă în galerie"
15615
+
15616
+ #~ msgid "Add images to product gallery"
15617
+ #~ msgstr "Adaugă imagini în galerie produs"
15618
+
15619
+ #~ msgid "Delete image"
15620
+ #~ msgstr "Șterge imaginea"
15621
+
15622
+ #~ msgid "Variation #%1$s of %2$s"
15623
+ #~ msgstr "#%1$s variație a %2$s"
15624
+
15625
+ #~ msgid ""
15626
+ #~ "The downloadable file %s cannot be used as it does not exist on the "
15627
+ #~ "server."
15628
+ #~ msgstr ""
15629
+ #~ "Fișierul descărcabil %s nu poate fi folosit deoarece nu există pe server."
15630
+
15631
+ #~ msgid ""
15632
+ #~ "The downloadable file %1$s cannot be used as it does not have an allowed "
15633
+ #~ "file type. Allowed types include: %2$s"
15634
+ #~ msgstr ""
15635
+ #~ "Fișierul descărcabil %1$s nu poate fi folosit deoarece nu este un tip de "
15636
+ #~ "fișier permis. Tipurile permise includ: %2$s"
15637
+
15638
+ #~ msgid "Go to the last page"
15639
+ #~ msgstr "Mergi la ultima pagină"
15640
+
15641
+ #~ msgid "Go to the next page"
15642
+ #~ msgstr "Mergi la pagina următoare"
15643
+
15644
+ #~ msgctxt "number of pages"
15645
+ #~ msgid "of"
15646
+ #~ msgstr "din"
15647
+
15648
+ #~ msgid "Current page"
15649
+ #~ msgstr "Pagina actuală"
15650
+
15651
+ #~ msgid "Select Page"
15652
+ #~ msgstr "Selectează pagina"
15653
+
15654
+ #~ msgid "Go to the previous page"
15655
+ #~ msgstr "Mergi la pagina anterioară"
15656
+
15657
+ #~ msgid "Go to the first page"
15658
+ #~ msgstr "Mergi la prima pagină"
15659
+
15660
+ #~ msgid "%s item"
15661
+ #~ msgid_plural "%s items"
15662
+ #~ msgstr[0] "%s element"
15663
+ #~ msgstr[1] "%s elemente"
15664
+ #~ msgstr[2] "%s de elemente"
15665
+
15666
+ #~ msgid "Go"
15667
+ #~ msgstr "Mergi"
15668
+
15669
+ #~ msgid "Download expiry"
15670
+ #~ msgstr "Expirare descărcare"
15671
+
15672
+ #~ msgid "Download limit"
15673
+ #~ msgstr "Limită de descărcare"
15674
+
15675
+ #~ msgid "Downloadable products"
15676
+ #~ msgstr "Produse pentru descărcare"
15677
+
15678
+ #~ msgid "Toggle &quot;Manage stock&quot;"
15679
+ #~ msgstr "Comutare &quot;Gestionare stoc&quot;"
15680
+
15681
+ #~ msgid "Set scheduled sale dates"
15682
+ #~ msgstr "Setează programă pentru date de vânzare"
15683
+
15684
+ #~ msgid "Decrease sale prices (fixed amount or percentage)"
15685
+ #~ msgstr "Scade prețurile de vânzare (valoare fixă sau procent)"
15686
+
15687
+ #~ msgid "Increase sale prices (fixed amount or percentage)"
15688
+ #~ msgstr "Crește prețurile de vânzare (valoare fixă sau procent)"
15689
+
15690
+ #~ msgid "Set sale prices"
15691
+ #~ msgstr "Setare prețuri de vânzare"
15692
+
15693
+ #~ msgid "Decrease regular prices (fixed amount or percentage)"
15694
+ #~ msgstr "Scade prețurile obișnuite (valoare fixă sau procent)"
15695
+
15696
+ #~ msgid "Increase regular prices (fixed amount or percentage)"
15697
+ #~ msgstr "Crește prețurile obișnuite (valoare fixă sau procent)"
15698
+
15699
+ #~ msgid "Set regular prices"
15700
+ #~ msgstr "Setare prețuri obișnuite"
15701
+
15702
+ #~ msgid "Pricing"
15703
+ #~ msgstr "Stabilire preț"
15704
+
15705
+ #~ msgid "Toggle &quot;Virtual&quot;"
15706
+ #~ msgstr "Comutare &quot;Virtual&quot;"
15707
+
15708
+ #~ msgid "Toggle &quot;Downloadable&quot;"
15709
+ #~ msgstr "Comutare &quot;Descărcabil&quot;"
15710
+
15711
+ #~ msgid "Toggle &quot;Enabled&quot;"
15712
+ #~ msgstr "Comutare &quot;Activat&quot;"
15713
+
15714
+ #~ msgid "Delete all variations"
15715
+ #~ msgstr "Șterge toate variațiile"
15716
+
15717
+ #~ msgid "Create variations from all attributes"
15718
+ #~ msgstr "Crează variații de la toate atributele"
15719
+
15720
+ #~ msgid "Add variation"
15721
+ #~ msgstr "Adaugă variație"
15722
+
15723
+ #~ msgid "These are the attributes that will be pre-selected on the frontend."
15724
+ #~ msgstr ""
15725
+ #~ "Acestea sunt atributele care vor fi pre-selectate pe partea din față a "
15726
+ #~ "sitului."
15727
+
15728
+ #~ msgid "Default Form Values"
15729
+ #~ msgstr "Valori formular implicit"
15730
+
15731
+ #~ msgid "Learn more"
15732
+ #~ msgstr "Află mai multe"
15733
+
15734
+ #~ msgid "Enable reviews"
15735
+ #~ msgstr "Activeză recenziile"
15736
+
15737
+ #~ msgid "Custom ordering position."
15738
+ #~ msgstr "Poziție ordonare personalizată"
15739
+
15740
+ #~ msgid "Menu order"
15741
+ #~ msgstr "Ordine în meniu"
15742
+
15743
+ #~ msgid "Enter an optional note to send the customer after purchase."
15744
+ #~ msgstr ""
15745
+ #~ "Introduceți o notă opțională care va fi trimisă clientului după cumpărare"
15746
+
15747
+ #~ msgid "Purchase note"
15748
+ #~ msgstr "Notă de cumpărare"
15749
+
15750
+ #~ msgid ""
15751
+ #~ "Cross-sells are products which you promote in the cart, based on the "
15752
+ #~ "current product."
15753
+ #~ msgstr ""
15754
+ #~ "Vânzări încrucișate sunt produse pe care le promovezi în coș, pe baza "
15755
+ #~ "produsului actual."
15756
+
15757
+ #~ msgid "Cross-sells"
15758
+ #~ msgstr "Vânzări încrucișate"
15759
+
15760
+ #~ msgid ""
15761
+ #~ "Upsells are products which you recommend instead of the currently viewed "
15762
+ #~ "product, for example, products that are more profitable or better quality "
15763
+ #~ "or more expensive."
15764
+ #~ msgstr ""
15765
+ #~ "Upsells sunt produse pe care le recomanzi în locul produsului vizualizat "
15766
+ #~ "acum, de exemplu, produse care sunt mai rentabile ori mai bune sau mai "
15767
+ #~ "scumpe."
15768
+
15769
+ #~ msgid "Upsells"
15770
+ #~ msgstr "Upsells"
15771
+
15772
+ #~ msgid "Save attributes"
15773
+ #~ msgstr "Salvează atribute"
15774
+
15775
+ #~ msgid "Custom product attribute"
15776
+ #~ msgstr "Atribut personalizat de produs"
15777
+
15778
+ #~ msgid "Close"
15779
+ #~ msgstr "Închide"
15780
+
15781
+ #~ msgid "Expand"
15782
+ #~ msgstr "Extinde"
15783
+
15784
+ #~ msgid ""
15785
+ #~ "Shipping classes are used by certain shipping methods to group similar "
15786
+ #~ "products."
15787
+ #~ msgstr ""
15788
+ #~ "Clasele de livrare sunt folosite de anumite metode de livrare pentru a "
15789
+ #~ "grupa produse similare."
15790
+
15791
+ #~ msgid "Shipping class"
15792
+ #~ msgstr "Clasă de livrare"
15793
+
15794
+ #~ msgid "No shipping class"
15795
+ #~ msgstr "Fără clasă de livrare"
15796
+
15797
+ #~ msgid "LxWxH in decimal form"
15798
+ #~ msgstr "Lxlxh în formă zecimală"
15799
+
15800
+ #~ msgid "Width"
15801
+ #~ msgstr "Lățime"
15802
+
15803
+ #~ msgid "Length"
15804
+ #~ msgstr "Lungime"
15805
+
15806
+ #~ msgid "Dimensions"
15807
+ #~ msgstr "Dimensiuni"
15808
+
15809
+ #~ msgid "Weight in decimal form"
15810
+ #~ msgstr "Greutate în formă zecimală"
15811
+
15812
+ #~ msgid "Weight"
15813
+ #~ msgstr "Greutate"
15814
+
15815
+ #~ msgid ""
15816
+ #~ "Enable this to only allow one of this item to be bought in a single order"
15817
+ #~ msgstr ""
15818
+ #~ "Activează asta pentru a permite ca numai unul dintre aceste elemente să "
15819
+ #~ "fie cumpărat printr-o singură comandă"
15820
+
15821
+ #~ msgid "Sold individually"
15822
+ #~ msgstr "Vândute individual"
15823
+
15824
+ #~ msgid ""
15825
+ #~ "Controls whether or not the product is listed as \"in stock\" or \"out of "
15826
+ #~ "stock\" on the frontend."
15827
+ #~ msgstr ""
15828
+ #~ "Controlează dacă produsul este sau nu este listat ca \"în stoc\" sau "
15829
+ #~ "\"stoc epuizat\" în partea din față a sitului."
15830
+
15831
+ #~ msgid "Stock status"
15832
+ #~ msgstr "Stare stoc"
15833
+
15834
+ #~ msgid ""
15835
+ #~ "If managing stock, this controls whether or not backorders are allowed. "
15836
+ #~ "If enabled, stock quantity can go below 0."
15837
+ #~ msgstr ""
15838
+ #~ "Dacă se gestionează stocul, acest lucru controlează dacă precomenzile "
15839
+ #~ "sunt permise sau nu. Dacă s-a activat, cantitatea din stoc poate fi sub 0."
15840
+
15841
+ #~ msgid "Allow, but notify customer"
15842
+ #~ msgstr "Permite, dar notifică clientul"
15843
+
15844
+ #~ msgid "Do not allow"
15845
+ #~ msgstr "Nu permite"
15846
+
15847
+ #~ msgid "Allow backorders?"
15848
+ #~ msgstr "Permiți precomenzi?"
15849
+
15850
+ #~ msgid ""
15851
+ #~ "Stock quantity. If this is a variable product this value will be used to "
15852
+ #~ "control stock for all variations, unless you define stock at variation "
15853
+ #~ "level."
15854
+ #~ msgstr ""
15855
+ #~ "Cantitate în stoc. Dacă acesta este un produs variabil, această valoare "
15856
+ #~ "va fi folosită pentru a controla stocul pentru toate variațiile, cu "
15857
+ #~ "excepția cazului când definești stocul la nivel de variație."
15858
+
15859
+ #~ msgid "Stock qty"
15860
+ #~ msgstr "Cantitate stoc"
15861
+
15862
+ #~ msgid "Enable stock management at product level"
15863
+ #~ msgstr "Activează gestionarea stocului la nivel de produs"
15864
+
15865
+ #~ msgid "Manage stock?"
15866
+ #~ msgstr "Administrezi stoc?"
15867
+
15868
+ #~ msgid ""
15869
+ #~ "Choose a tax class for this product. Tax classes are used to apply "
15870
+ #~ "different tax rates specific to certain types of product."
15871
+ #~ msgstr ""
15872
+ #~ "Alege o clasă de impozitare pentru acest produs. Clasele de impozitare "
15873
+ #~ "sunt folosite pentru a aplica diferite cote de impozitare specifice "
15874
+ #~ "pentru anumite tipuri de produse."
15875
+
15876
+ #~ msgid "Standard"
15877
+ #~ msgstr "Standard"
15878
+
15879
+ #~ msgid ""
15880
+ #~ "Define whether or not the entire product is taxable, or just the cost of "
15881
+ #~ "shipping it."
15882
+ #~ msgstr ""
15883
+ #~ "Definește dacă întreg produs este sau nu este impozabil, ori numai costul "
15884
+ #~ "de livrare al lui."
15885
+
15886
+ #~ msgctxt "Tax status"
15887
+ #~ msgid "None"
15888
+ #~ msgstr "Niciuna"
15889
+
15890
+ #~ msgid "Shipping only"
15891
+ #~ msgstr "Numai livrare"
15892
+
15893
+ #~ msgid "Taxable"
15894
+ #~ msgstr "Impozabil"
15895
+
15896
+ #~ msgid ""
15897
+ #~ "Enter the number of days before a download link expires, or leave blank."
15898
+ #~ msgstr ""
15899
+ #~ "Introdu numărul de zile până când legătura către un produs descărcabil "
15900
+ #~ "expiră, sau lasă gol."
15901
+
15902
+ #~ msgid "Leave blank for unlimited re-downloads."
15903
+ #~ msgstr "Lasă necompletat pentru un număr nelimitat de redescărcări."
15904
+
15905
+ #~ msgid "Unlimited"
15906
+ #~ msgstr "Nelimitat"
15907
+
15908
+ #~ msgid "Add File"
15909
+ #~ msgstr "Adaugă fișier"
15910
+
15911
+ #~ msgid ""
15912
+ #~ "This is the URL or absolute path to the file which customers will get "
15913
+ #~ "access to. URLs entered here should already be encoded."
15914
+ #~ msgstr ""
15915
+ #~ "Acesta este URL-ul sau calea absolută către fișierul la care clienții vor "
15916
+ #~ "avea acces. URL-urile introduse aici ar trebui să fie deja codificate."
15917
+
15918
+ #~ msgid "File URL"
15919
+ #~ msgstr "URL fișier"
15920
+
15921
+ #~ msgid "This is the name of the download shown to the customer."
15922
+ #~ msgstr "Acesta este numele descărcării care este arătată clientului."
15923
+
15924
+ #~ msgid "Downloadable files"
15925
+ #~ msgstr "Fișiere descărcabile"
15926
+
15927
+ #~ msgid "The sale will end at the beginning of the set date."
15928
+ #~ msgstr "Vânzarea se va încheia la începutul datei setate."
15929
+
15930
+ #~ msgctxt "placeholder"
15931
+ #~ msgid "To&hellip;"
15932
+ #~ msgstr "La&hellip;"
15933
+
15934
+ #~ msgctxt "placeholder"
15935
+ #~ msgid "From&hellip;"
15936
+ #~ msgstr "De la&hellip;"
15937
+
15938
+ #~ msgid "Sale price dates"
15939
+ #~ msgstr "Date preț de vânzare"
15940
+
15941
+ #~ msgid "Schedule"
15942
+ #~ msgstr "Program"
15943
+
15944
+ #~ msgid ""
15945
+ #~ "This text will be shown on the button linking to the external product."
15946
+ #~ msgstr "Acest text va fi arătat pe butonul care leagă un produs extern."
15947
+
15948
+ #~ msgctxt "placeholder"
15949
+ #~ msgid "Buy product"
15950
+ #~ msgstr "Cumpără produsul"
15951
+
15952
+ #~ msgid "Button text"
15953
+ #~ msgstr "Text buton"
15954
+
15955
+ #~ msgid "Enter the external URL to the product."
15956
+ #~ msgstr "Introdu URL-ul extern al produsului."
15957
+
15958
+ #~ msgid "Product URL"
15959
+ #~ msgstr "URL produs"
15960
+
15961
+ #~ msgid ""
15962
+ #~ "SKU refers to a Stock-keeping unit, a unique identifier for each distinct "
15963
+ #~ "product and service that can be purchased."
15964
+ #~ msgstr ""
15965
+ #~ "Cod Produs se referă la o Codul de identificare a produsului în stoc, un "
15966
+ #~ "identificator unic pentru fiecare produs și serviciu care poate fi "
15967
+ #~ "achiziționat."
15968
+
15969
+ #~ msgid "Stock Keeping Unit"
15970
+ #~ msgstr "Unitate de menținere a stocului"
15971
+
15972
+ #~ msgid "Advanced"
15973
+ #~ msgstr "Avansat"
15974
+
15975
+ #~ msgid "Variations"
15976
+ #~ msgstr "Variații"
15977
+
15978
+ #~ msgid "Linked Products"
15979
+ #~ msgstr "Produse Legate"
15980
+
15981
+ #~ msgid "Shipping"
15982
+ #~ msgstr "Livrare"
15983
+
15984
+ #~ msgid "Inventory"
15985
+ #~ msgstr "Inventar"
15986
+
15987
+ #~ msgid "Downloadable products give access to a file upon purchase."
15988
+ #~ msgstr "Produsele descărcabile dau acces la un fișier după cumpărare."
15989
+
15990
+ #~ msgid "Virtual products are intangible and are not shipped."
15991
+ #~ msgstr "Produsele virtuale sunt intangibile și nu sunt livrate."
15992
+
15993
+ #~ msgid "Product Type"
15994
+ #~ msgstr "Tip de produs"
15995
+
15996
+ #~ msgid "Add"
15997
+ #~ msgstr "Adaugă"
15998
+
15999
+ #~ msgid "Note to customer"
16000
+ #~ msgstr "Notă către client"
16001
+
16002
+ #~ msgid "Private note"
16003
+ #~ msgstr "Notită privată"
16004
+
16005
+ #~ msgid ""
16006
+ #~ "Add a note for your reference, or add a customer note (the user will be "
16007
+ #~ "notified)."
16008
+ #~ msgstr ""
16009
+ #~ "Adauga o notă pentru referința dvs., sau adăgauți o notă pentru client "
16010
+ #~ "(clientul va fi notificat)."
16011
+
16012
+ #~ msgid "Add note"
16013
+ #~ msgstr "Adaugă notă"
16014
+
16015
+ #~ msgid "There are no notes yet."
16016
+ #~ msgstr "Nu există notite încă."
16017
+
16018
+ #~ msgid "Delete note"
16019
+ #~ msgstr "Șterge mențiune"
16020
+
16021
+ #~ msgid "by %s"
16022
+ #~ msgstr "de %s"
16023
+
16024
+ #~ msgid "added on %1$s at %2$s"
16025
+ #~ msgstr "adăugat pe %1$s la %2$s"
16026
+
16027
+ #~ msgid "Grant access"
16028
+ #~ msgstr "Acordă acces"
16029
+
16030
+ #~ msgid "Search for a downloadable product&hellip;"
16031
+ #~ msgstr "Caută un produs descărcabil&hellip;"
16032
+
16033
+ #~ msgid "File %d"
16034
+ #~ msgstr "Fișier %d"
16035
+
16036
+ #~ msgid "Customer notes about the order"
16037
+ #~ msgstr "Note client despre comandă"
16038
+
16039
+ #~ msgid "Customer provided note"
16040
+ #~ msgstr "Notă furnizată de client"
16041
+
16042
+ #~ msgid "No shipping address set."
16043
+ #~ msgstr "Adresă de livrare nespecificată."
16044
+
16045
+ #~ msgid "Load shipping address"
16046
+ #~ msgstr "Încarcă adresa de livrare"
16047
+
16048
+ #~ msgid "Shipping details"
16049
+ #~ msgstr "Detalii livrare"
16050
+
16051
+ #~ msgid "Transaction ID"
16052
+ #~ msgstr "ID tranzacție"
16053
+
16054
+ #~ msgid "Other"
16055
+ #~ msgstr "Alte"
16056
+
16057
+ #~ msgid "No billing address set."
16058
+ #~ msgstr "Nici o adresă de facturare setată."
16059
+
16060
+ #~ msgid "Address"
16061
+ #~ msgstr "Adresă"
16062
+
16063
+ #~ msgid "Load billing address"
16064
+ #~ msgstr "Încarcă adresa de facturare"
16065
+
16066
+ #~ msgid "Billing details"
16067
+ #~ msgstr "Detalii de facturare"
16068
+
16069
+ #~ msgid "Customer:"
16070
+ #~ msgstr "Client:"
16071
+
16072
+ #~ msgid "h"
16073
+ #~ msgstr "o"
16074
+
16075
+ #~ msgid "Customer ID."
16076
+ #~ msgstr "ID client."
16077
+
16078
+ #~ msgid "Payment via %s"
16079
+ #~ msgstr "Plată prin %s"
16080
+
16081
+ #~ msgid "Phone"
16082
+ #~ msgstr "Telefon"
16083
+
16084
+ #~ msgid "Apply"
16085
+ #~ msgstr "Aplică"
16086
+
16087
+ #~ msgid "Regenerate download permissions"
16088
+ #~ msgstr "Regenerare permisiuni de descărcare"
16089
+
16090
+ #~ msgid ""
16091
+ #~ "Coupon code already exists - customers will use the latest coupon with "
16092
+ #~ "this code."
16093
+ #~ msgstr ""
16094
+ #~ "Codul cuponului există deja - clienții vor folosi ultimul cupon cu acest "
16095
+ #~ "cod."
16096
+
16097
+ #~ msgid ""
16098
+ #~ "How many times this coupon can be used by an individual user. Uses "
16099
+ #~ "billing email for guests, and user ID for logged in users."
16100
+ #~ msgstr ""
16101
+ #~ "De câte ori acest cupon poate fi folosit de către un utilizator "
16102
+ #~ "individual. Folosește emailul de facturare pentru vizitatori și ID-ul "
16103
+ #~ "utilizatorului pentru utilizatorii autentificați."
16104
+
16105
+ #~ msgid "Usage limit per user"
16106
+ #~ msgstr "Limită de utilizare per utilizator"
16107
+
16108
+ #~ msgid ""
16109
+ #~ "The maximum number of individual items this coupon can apply to when "
16110
+ #~ "using product discounts. Leave blank to apply to all qualifying items in "
16111
+ #~ "cart."
16112
+ #~ msgstr ""
16113
+ #~ "Numărul maxim de elemente individuale pe care acest cupon le poate aplica "
16114
+ #~ "când se folosesc discounturi pentru produs. Lasă necompletat pentru a se "
16115
+ #~ "aplica tuturor elementelor introduse în coș."
16116
+
16117
+ #~ msgid "Limit usage to X items"
16118
+ #~ msgstr "Limiteză utilizare la X ori"
16119
+
16120
+ #~ msgid "How many times this coupon can be used before it is void."
16121
+ #~ msgstr ""
16122
+ #~ "De câte ori acest cupon poate fi folosit înainte de a deveni fără valoare."
16123
+
16124
+ #~ msgid "Usage limit per coupon"
16125
+ #~ msgstr "Limită de utilizare per cupon"
16126
+
16127
+ #~ msgid "No restrictions"
16128
+ #~ msgstr "Nicio restricție"
16129
+
16130
+ #~ msgid "No categories"
16131
+ #~ msgstr "Nicio categorie"
16132
+
16133
+ #~ msgid "Exclude categories"
16134
+ #~ msgstr "Excludeți categoriile"
16135
+
16136
+ #~ msgid "Any category"
16137
+ #~ msgstr "Orice categorie"
16138
+
16139
+ #~ msgid "Product categories"
16140
+ #~ msgstr "Categorii de produse"
16141
+
16142
+ #~ msgid "Exclude products"
16143
+ #~ msgstr "Exclude produsele"
16144
+
16145
+ #~ msgid "Search for a product&hellip;"
16146
+ #~ msgstr "Caută un produs&hellip;"
16147
+
16148
+ #~ msgid ""
16149
+ #~ "Check this box if the coupon should not apply to items on sale. Per-item "
16150
+ #~ "coupons will only work if the item is not on sale. Per-cart coupons will "
16151
+ #~ "only work if there are items in the cart that are not on sale."
16152
+ #~ msgstr ""
16153
+ #~ "Bifează această casetă dacă cuponul nu ar trebui să se aplice elementelor "
16154
+ #~ "de vânzare. Cupoanele per-element vor funcționa numai dacă elementul nu "
16155
+ #~ "este de vânzare. Cupoanele per-coș vor funcționa numai dacă există "
16156
+ #~ "elemente în coș care nu sunt de vânzare."
16157
+
16158
+ #~ msgid "Exclude sale items"
16159
+ #~ msgstr "Exclude elementele de vânzare"
16160
+
16161
+ #~ msgid ""
16162
+ #~ "Check this box if the coupon cannot be used in conjunction with other "
16163
+ #~ "coupons."
16164
+ #~ msgstr ""
16165
+ #~ "Bifează această casetă dacă cuponul nu poate fi folosit împreună cu alte "
16166
+ #~ "cupoane."
16167
+
16168
+ #~ msgid "Individual use only"
16169
+ #~ msgstr "Numai uz individual"
16170
+
16171
+ #~ msgid ""
16172
+ #~ "This field allows you to set the maximum spend (subtotal) allowed when "
16173
+ #~ "using the coupon."
16174
+ #~ msgstr ""
16175
+ #~ "Acest câmp îți permite să setezi suma maximă permisă (sub-total) când "
16176
+ #~ "folosești cuponul."
16177
+
16178
+ #~ msgid "No maximum"
16179
+ #~ msgstr "Niciun maxim"
16180
+
16181
+ #~ msgid "Maximum spend"
16182
+ #~ msgstr "Cheltuieli maxime"
16183
+
16184
+ #~ msgid ""
16185
+ #~ "This field allows you to set the minimum spend (subtotal) allowed to use "
16186
+ #~ "the coupon."
16187
+ #~ msgstr ""
16188
+ #~ "Acest câmp îți permite să setezi suma minimă permisă (sub-total) când "
16189
+ #~ "folosești cuponul."
16190
+
16191
+ #~ msgid "No minimum"
16192
+ #~ msgstr "Fără valoare minimă"
16193
+
16194
+ #~ msgid "Minimum spend"
16195
+ #~ msgstr "Valoarea minimă a cumpărăturilor"
16196
+
16197
+ #~ msgid "Coupon expiry date"
16198
+ #~ msgstr "Data expirării cuponului"
16199
+
16200
+ #~ msgid ""
16201
+ #~ "Check this box if the coupon grants free shipping. A <a href=\"%s\" "
16202
+ #~ "target=\"_blank\">free shipping method</a> must be enabled in your "
16203
+ #~ "shipping zone and be set to require \"a valid free shipping coupon\" (see "
16204
+ #~ "the \"Free Shipping Requires\" setting)."
16205
+ #~ msgstr ""
16206
+ #~ "Bifează această casetă dacă cuponul acordă livrare gratuită. O <a href="
16207
+ #~ "\"%s\" target=\"_blank\">metodă de livrare gratuită</a> trebuie să fie "
16208
+ #~ "activată în zona ta de livrare și să fie setată să solicite \"un cupon "
16209
+ #~ "valid pentru livrare gratuită\" (vezi setarea \"Necesită livrare gratuită"
16210
+ #~ "\")."
16211
+
16212
+ #~ msgid "Allow free shipping"
16213
+ #~ msgstr "Permite expediere gratuită"
16214
+
16215
+ #~ msgid "Value of the coupon."
16216
+ #~ msgstr "Valoare cupon"
16217
+
16218
+ #~ msgid "Discount type"
16219
+ #~ msgstr "Tip reducere"
16220
+
16221
+ #~ msgid "Usage limits"
16222
+ #~ msgstr "Limite de utilizare"
16223
+
16224
+ #~ msgid "Usage restriction"
16225
+ #~ msgstr "Restricție de utilizare"
16226
+
16227
+ #~ msgid "General"
16228
+ #~ msgstr "General"
16229
+
16230
+ #~ msgid "Sorry, there has been an error."
16231
+ #~ msgstr "Regret, a apărut o eroare."
16232
+
16233
+ #~ msgid "Upload file and import"
16234
+ #~ msgstr "Încarcă fișier și importă"
16235
+
16236
+ #~ msgid "Delimiter"
16237
+ #~ msgstr "Delimitator"
16238
+
16239
+ #~ msgid "OR enter path to file:"
16240
+ #~ msgstr "sau introdu o cale către fișier:"
16241
+
16242
+ #~ msgid "Maximum size: %s"
16243
+ #~ msgstr "Dimensiune maxima: %s"
16244
+
16245
+ #~ msgid "Choose a file from your computer:"
16246
+ #~ msgstr "Alege un fișier din calculatorul tău:"
16247
+
16248
+ #~ msgid ""
16249
+ #~ "Before you can upload your import file, you will need to fix the "
16250
+ #~ "following error:"
16251
+ #~ msgstr ""
16252
+ #~ "Înainte de a putea să-ți încarci fișierul de import, va trebui să "
16253
+ #~ "corectezi următoarea eroare:"
16254
+
16255
+ #~ msgid ""
16256
+ #~ "Hi there! Upload a CSV file containing tax rates to import the contents "
16257
+ #~ "into your shop. Choose a .csv file to upload, then click \"Upload file "
16258
+ #~ "and import\"."
16259
+ #~ msgstr ""
16260
+ #~ "Bună! Încarcă un fișier CSV conținând cote de impozitare pentru a importa "
16261
+ #~ "conținutul în magazinul tău. Alege un fișier .csv pentru a-l încărca, "
16262
+ #~ "apoi dă clic pe „Încarcă fișier și importă”."
16263
+
16264
+ #~ msgid "Import tax rates"
16265
+ #~ msgstr "Importă cote de impozitare"
16266
+
16267
+ #~ msgid "View tax rates"
16268
+ #~ msgstr "Vezi cote de impozitare"
16269
+
16270
+ #~ msgid "All done!"
16271
+ #~ msgstr "Totul este gata!"
16272
+
16273
+ #~ msgid "The CSV is invalid."
16274
+ #~ msgstr "Fișierul CSV este invalid."
16275
+
16276
+ #~ msgid "The file does not exist, please try again."
16277
+ #~ msgstr "Fișierul nu există, te rog încearcă din nou."
16278
+
16279
+ #~ msgid "Thank you for selling with WooCommerce."
16280
+ #~ msgstr "Iți mulțumim că vinzi cu WooCommerce."
16281
+
16282
+ #~ msgid "Thanks :)"
16283
+ #~ msgstr "Mulțumesc :)"
16284
+
16285
+ #~ msgid "HTML email template"
16286
+ #~ msgstr "Șablon email HTML"
16287
+
16288
+ #~ msgid "Docs"
16289
+ #~ msgstr "Documente"
16290
+
16291
+ #~ msgid "Search webhooks"
16292
+ #~ msgstr "Caută cârlige web"
16293
+
16294
+ #~ msgid "Add webhook"
16295
+ #~ msgstr "Adaugă cârlig web"
16296
+
16297
+ #~ msgid "Webhooks"
16298
+ #~ msgstr "Cârlige web"
16299
+
16300
+ #~ msgid "Webhook created successfully."
16301
+ #~ msgstr "Cârlig web creat cu succes."
16302
+
16303
+ #~ msgid "Webhook updated successfully."
16304
+ #~ msgstr "Cârlig web actualizat cu succes."
16305
+
16306
+ #~ msgid "%d webhook permanently deleted."
16307
+ #~ msgid_plural "%d webhooks permanently deleted."
16308
+ #~ msgstr[0] "%d cârlig web șters definitiv."
16309
+ #~ msgstr[1] "%d cârlige web șterse definitiv."
16310
+ #~ msgstr[2] "%d de cârlige web șterse definitiv."
16311
+
16312
+ #~ msgid "You do not have permission to edit Webhooks"
16313
+ #~ msgstr "Nu ai permisiunea să editezi cârlige web"
16314
+
16315
+ #~ msgid "You do not have permission to update Webhooks"
16316
+ #~ msgstr "Nu ai permisiunea să actualizezi cârligele web"
16317
+
16318
+ #~ msgctxt "Webhook created on date parsed by strftime"
16319
+ #~ msgid "%b %d, %Y @ %I:%M %p"
16320
+ #~ msgstr "%b %d, %Y @ %I:%M %p"
16321
+
16322
+ #~ msgid "Webhook created on %s"
16323
+ #~ msgstr "Cârlig web creat pe %s"
16324
+
16325
+ #~ msgid "Move to trash"
16326
+ #~ msgstr "Mută la gunoi"
16327
+
16328
+ #~ msgctxt "posts"
16329
+ #~ msgid "All <span class=\"count\">(%s)</span>"
16330
+ #~ msgid_plural "All <span class=\"count\">(%s)</span>"
16331
+ #~ msgstr[0] "Toate <span class=\"count\">(%s)</span>"
16332
+ #~ msgstr[1] "Toate <span class=\"count\">(%s)</span>"
16333
+ #~ msgstr[2] "Toate <span class=\"count\">(%s)</span>"
16334
+
16335
+ #~ msgid "Delivery URL"
16336
+ #~ msgstr "URL livrare"
16337
+
16338
+ #~ msgid "Topic"
16339
+ #~ msgstr "Subiect"
16340
+
16341
+ #~ msgid ""
16342
+ #~ "Attribute terms can be assigned to products and variations.<br/><br/"
16343
+ #~ "><b>Note</b>: Deleting a term will remove it from all products and "
16344
+ #~ "variations to which it has been assigned. Recreating a term will not "
16345
+ #~ "automatically assign it back to products."
16346
+ #~ msgstr ""
16347
+ #~ "Termenii atribut pot fi atribuiți produselor și variațiilor.<br/><br/"
16348
+ #~ "><b>Notă</b>: Ștergând un termen, el va fi înlăturat din toate produsele "
16349
+ #~ "și variațiile la care a fost atribuit. Recreând un termen, el nu va fi "
16350
+ #~ "atribuit automat înapoi la produse."
16351
+
16352
+ #~ msgid ""
16353
+ #~ "Product categories for your store can be managed here. To change the "
16354
+ #~ "order of categories on the front-end you can drag and drop to sort them. "
16355
+ #~ "To see more categories listed click the \"screen options\" link at the "
16356
+ #~ "top-right of this page."
16357
+ #~ msgstr ""
16358
+ #~ "Categoriile de produse ale magazinului tău pot fi gestionate aici. Pentru "
16359
+ #~ "a schimba ordinea categoriilor în partea din față a sitului, le poți "
16360
+ #~ "trage și plasa pentru a le sorta. Pentru a vedea mai multe categorii "
16361
+ #~ "listate, dă clic pe legătura „opțiuni ecran” din partea de sus-dreapta a "
16362
+ #~ "acestei pagini."
16363
+
16364
+ #~ msgid "Use image"
16365
+ #~ msgstr "Folosește imaginea"
16366
+
16367
+ #~ msgid "Remove image"
16368
+ #~ msgstr "Înlătură imaginea"
16369
+
16370
+ #~ msgid "Upload/Add image"
16371
+ #~ msgstr "Încarcă / Adaugă o imagine"
16372
+
16373
+ #~ msgid "Thumbnail"
16374
+ #~ msgstr "Miniatură"
16375
+
16376
+ #~ msgid "Both"
16377
+ #~ msgstr "Ambele"
16378
+
16379
+ #~ msgid "Subcategories"
16380
+ #~ msgstr "Subcategorii"
16381
+
16382
+ #~ msgid "Products"
16383
+ #~ msgstr "Produse"
16384
+
16385
+ #~ msgid "Display type"
16386
+ #~ msgstr "Mod de afișare"
16387
+
16388
+ #~ msgid ""
16389
+ #~ "This will reset your usage tracking settings, causing it to show the opt-"
16390
+ #~ "in banner again and not sending any data."
16391
+ #~ msgstr ""
16392
+ #~ "Această optiune va reseta setările de urmărire a utilizării, făcându-l să "
16393
+ #~ "arate bannerul cu optiuni din nou și să nu trimită niciun fel de date."
16394
+
16395
+ #~ msgid "Delete WooCommerce tax rates"
16396
+ #~ msgstr "Șterge cotele de impozitare WooCommerce"
16397
+
16398
+ #~ msgid ""
16399
+ #~ "This tool will reset the admin, customer and shop_manager roles to "
16400
+ #~ "default. Use this if your users cannot access all of the WooCommerce "
16401
+ #~ "admin pages."
16402
+ #~ msgstr ""
16403
+ #~ "Acest instrument va reseta rolurile admin, client și shop_manager la "
16404
+ #~ "valorile implicite. Utilizați această opțiune dacă utilizatorii nu pot "
16405
+ #~ "accesa toate paginile de administrare WooCommerce."
16406
+
16407
+ #~ msgid "Reset capabilities"
16408
+ #~ msgstr "Resetează capacitățile"
16409
+
16410
+ #~ msgid "Capabilities"
16411
+ #~ msgstr "Capacități"
16412
+
16413
+ #~ msgid ""
16414
+ #~ "This tool will recount product terms - useful when changing your settings "
16415
+ #~ "in a way which hides products from the catalog."
16416
+ #~ msgstr ""
16417
+ #~ "Acest instrument va renumăra produse pentru fiecare termen / atribut - "
16418
+ #~ "util atunci când modificaţi setările într-un mod care ascunde produse din "
16419
+ #~ "catalog."
16420
+
16421
+ #~ msgid "Recount terms"
16422
+ #~ msgstr "Renumărare termeni"
16423
+
16424
+ #~ msgid "Term counts"
16425
+ #~ msgstr "Număr termeni"
16426
+
16427
+ #~ msgid "This tool will clear ALL expired transients from WordPress."
16428
+ #~ msgstr ""
16429
+ #~ "Acest instrument va șterge toate tranzitoriile expirate din baza de date "
16430
+ #~ "a WordPress."
16431
+
16432
+ #~ msgid "Expired transients"
16433
+ #~ msgstr "Tranzitorii expirate"
16434
+
16435
+ #~ msgid "This tool will clear the product/shop transients cache."
16436
+ #~ msgstr ""
16437
+ #~ "Această unealtă va șterge tot cache-ul tranzienților produselor/"
16438
+ #~ "magazinului."
16439
+
16440
+ #~ msgid "Clear transients"
16441
+ #~ msgstr "Șterge tranzienți"
16442
+
16443
+ #~ msgid "Your changes have been saved."
16444
+ #~ msgstr "Modificările tale au fost salvate."
16445
+
16446
+ #~ msgid "There was an error calling %s"
16447
+ #~ msgstr "A apărut o eroare când am apelat %s"
16448
+
16449
+ #~ msgid "Usage tracking settings successfully reset."
16450
+ #~ msgstr "Setările de urmărire a utilizării au fost resetate cu succes."
16451
+
16452
+ #~ msgid "Tax rates successfully deleted"
16453
+ #~ msgstr "Cotele de impozitare șterse cu succes"
16454
+
16455
+ #~ msgid "Terms successfully recounted"
16456
+ #~ msgstr "Termenii au fost renumărați cu succes"
16457
+
16458
+ #~ msgid "Roles successfully reset"
16459
+ #~ msgstr "Drepturile de acces au fost resetate cu succes"
16460
+
16461
+ #~ msgid "%d transients rows cleared"
16462
+ #~ msgstr "%d rânduri tranzitorii șterse"
16463
+
16464
+ #~ msgid "Product transients cleared"
16465
+ #~ msgstr "Tranzitorii produs șterse"
16466
+
16467
+ #~ msgid "Create your first product!"
16468
+ #~ msgstr "Crează-ți primul produs!"
16469
+
16470
+ #~ msgid "Next step"
16471
+ #~ msgstr "Pasul următor"
16472
+
16473
+ #~ msgid "Allow"
16474
+ #~ msgstr "Permite"
16475
+
16476
+ #~ msgid "Enable cash on delivery"
16477
+ #~ msgstr "Activează plata la livrare"
16478
+
16479
+ #~ msgid "Cash on delivery"
16480
+ #~ msgstr "Numerar la livrare"
16481
+
16482
+ #~ msgid "Offline Payments"
16483
+ #~ msgstr "Plăți offline"
16484
+
16485
+ #~ msgid "PayPal email address"
16486
+ #~ msgstr "Adresă email PayPal:"
16487
+
16488
+ #~ msgid "State"
16489
+ #~ msgstr "Județ"
16490
+
16491
+ #~ msgid "yd"
16492
+ #~ msgstr "yd"
16493
+
16494
+ #~ msgid "in"
16495
+ #~ msgstr "in"
16496
+
16497
+ #~ msgid "mm"
16498
+ #~ msgstr "mm"
16499
+
16500
+ #~ msgid "cm"
16501
+ #~ msgstr "cm"
16502
+
16503
+ #~ msgid "m"
16504
+ #~ msgstr "m"
16505
+
16506
+ #~ msgid "oz"
16507
+ #~ msgstr "oy"
16508
+
16509
+ #~ msgid "lbs"
16510
+ #~ msgstr "lbs"
16511
+
16512
+ #~ msgid "g"
16513
+ #~ msgstr "g"
16514
+
16515
+ #~ msgid "kg"
16516
+ #~ msgstr "kg"
16517
+
16518
+ #~ msgid "Decimal separator."
16519
+ #~ msgstr "Separator pentru zeci."
16520
+
16521
+ #~ msgid "Thousand separator."
16522
+ #~ msgstr "Separator pentru mii."
16523
+
16524
+ #~ msgid "Right with space"
16525
+ #~ msgstr "În dreapta cu spațiu"
16526
+
16527
+ #~ msgid "Left with space"
16528
+ #~ msgstr "În stânga cu spațiu"
16529
+
16530
+ #~ msgid "Currency position."
16531
+ #~ msgstr "Poziție monedă."
16532
+
16533
+ #~ msgid "Choose a currency&hellip;"
16534
+ #~ msgstr "Alege o monedă&hellip;"
16535
+
16536
+ #~ msgid "Where is your store based?"
16537
+ #~ msgstr "Unde se află magazinul tău?"
16538
+
16539
+ #~ msgid "Skip this step"
16540
+ #~ msgstr "Sari peste acest pas"
16541
+
16542
+ #~ msgctxt "Page title"
16543
+ #~ msgid "My account"
16544
+ #~ msgstr "Contul meu"
16545
+
16546
+ #~ msgctxt "Page title"
16547
+ #~ msgid "Checkout"
16548
+ #~ msgstr "Plată"
16549
+
16550
+ #~ msgctxt "Page title"
16551
+ #~ msgid "Cart"
16552
+ #~ msgstr "Coș"
16553
+
16554
+ #~ msgctxt "Page title"
16555
+ #~ msgid "Shop"
16556
+ #~ msgstr "Magazin"
16557
+
16558
+ #~ msgid "Not right now"
16559
+ #~ msgstr "Nu acum"
16560
+
16561
+ #~ msgid "Let's go!"
16562
+ #~ msgstr "Să-i dăm drumul!"
16563
+
16564
+ #~ msgid "WooCommerce &rsaquo; Setup Wizard"
16565
+ #~ msgstr "WooCommerce &rsaquo; Asistent de configurare"
16566
+
16567
+ #~ msgid "Ready!"
16568
+ #~ msgstr "Gata!"
16569
+
16570
+ #~ msgid "Payments"
16571
+ #~ msgstr "Plăți"
16572
+
16573
+ #~ msgid "Page setup"
16574
+ #~ msgstr "Inițializare pagină"
16575
+
16576
+ #~ msgid "Select none"
16577
+ #~ msgstr "Nu selecta nimic"
16578
+
16579
+ #~ msgid "Select all"
16580
+ #~ msgstr "Selectează tot"
16581
+
16582
+ #~ msgid "Choose countries&hellip;"
16583
+ #~ msgstr "Alege țări&hellip;"
16584
+
16585
+ #~ msgid "Choose a country&hellip;"
16586
+ #~ msgstr "Alege o țară&hellip;"
16587
+
16588
+ #~ msgid "Select a page&hellip;"
16589
+ #~ msgstr "Selectează o pagină&hellip;"
16590
+
16591
+ #~ msgid "Hard crop?"
16592
+ #~ msgstr "Decupare dificilă?"
16593
+
16594
+ #~ msgid ""
16595
+ #~ "The settings of this image size have been disabled because its values are "
16596
+ #~ "being overwritten by a filter."
16597
+ #~ msgstr ""
16598
+ #~ "Setările dimensiunii acestei imaginii au fost dezactivate deoarece "
16599
+ #~ "valorile sale sunt contramandate de un filtru."
16600
+
16601
+ #~ msgid ""
16602
+ #~ "The changes you made will be lost if you navigate away from this page."
16603
+ #~ msgstr "Modificările efectuate se vor pierde dacă părăsești această pagină."
16604
+
16605
+ #~ msgid "Your settings have been saved."
16606
+ #~ msgstr "Setările tale au fost salvate."
16607
+
16608
+ #~ msgid "Taxes by date"
16609
+ #~ msgstr "Taxe per dată"
16610
+
16611
+ #~ msgid "Taxes by code"
16612
+ #~ msgstr "Taxe după cod poștal"
16613
+
16614
+ #~ msgid "Taxes"
16615
+ #~ msgstr "Taxe"
16616
+
16617
+ #~ msgid "Most stocked"
16618
+ #~ msgstr "Cele cu stocuri mari"
16619
+
16620
+ #~ msgid "Low in stock"
16621
+ #~ msgstr "Stoc Redus"
16622
+
16623
+ #~ msgid "Customer list"
16624
+ #~ msgstr "Listă clienți"
16625
+
16626
+ #~ msgid "Customers vs. guests"
16627
+ #~ msgstr "Clienți vs vizitatori"
16628
+
16629
+ #~ msgid "Customers"
16630
+ #~ msgstr "Clienți"
16631
+
16632
+ #~ msgid "Coupons by date"
16633
+ #~ msgstr "Coduri promotionale per data"
16634
+
16635
+ #~ msgid "Sales by category"
16636
+ #~ msgstr "Vânzări per categorie"
16637
+
16638
+ #~ msgid "Sales by product"
16639
+ #~ msgstr "Vânzări per produs"
16640
+
16641
+ #~ msgid "Sales by date"
16642
+ #~ msgstr "Vânzări per dată"
16643
+
16644
+ #~ msgid "Orders"
16645
+ #~ msgstr "Comenzi"
16646
+
16647
+ #~ msgid "State / County or state code"
16648
+ #~ msgstr "Județ sau cod județ"
16649
+
16650
+ #~ msgid "Select a country&hellip;"
16651
+ #~ msgstr "Selectează țara&hellip;"
16652
+
16653
+ #~ msgid "Country"
16654
+ #~ msgstr "Țară"
16655
+
16656
+ #~ msgid "Postcode"
16657
+ #~ msgstr "Cod poștal"
16658
+
16659
+ #~ msgid "City"
16660
+ #~ msgstr "Oraș"
16661
+
16662
+ #~ msgid "Company"
16663
+ #~ msgstr "Companie"
16664
+
16665
+ #~ msgid "Last name"
16666
+ #~ msgstr "Nume"
16667
+
16668
+ #~ msgid "First name"
16669
+ #~ msgstr "Prenume"
16670
+
16671
+ #~ msgid "Cancel"
16672
+ #~ msgstr "Anulează"
16673
+
16674
+ #~ msgid "OK"
16675
+ #~ msgstr "OK"
16676
+
16677
+ #~ msgid "Catalog visibility:"
16678
+ #~ msgstr "Vizibilitate catalog:"
16679
+
16680
+ #~ msgid "Search"
16681
+ #~ msgstr "Cautare"
16682
+
16683
+ #~ msgid "Catalog"
16684
+ #~ msgstr "Catalog"
16685
+
16686
+ #~ msgid "Description (optional)"
16687
+ #~ msgstr "Descriere (facultativ)"
16688
+
16689
+ #~ msgid "Coupon code"
16690
+ #~ msgstr "Cod cupon"
16691
+
16692
+ #~ msgid "Product name"
16693
+ #~ msgstr "Nume produs"
16694
+
16695
+ #~ msgid "Show all types"
16696
+ #~ msgstr "Afișează toate tipurile"
16697
+
16698
+ #~ msgid "Simple product"
16699
+ #~ msgstr "Produs Simplu"
16700
+
16701
+ #~ msgid "Variable product"
16702
+ #~ msgstr "Produs Variabil"
16703
+
16704
+ #~ msgid "External/Affiliate product"
16705
+ #~ msgstr "Produs Extern / Afiliat"
16706
+
16707
+ #~ msgid "Grouped product"
16708
+ #~ msgstr "Produs Grupat"
16709
+
16710
+ #~ msgid "%d order status changed."
16711
+ #~ msgid_plural "%d order statuses changed."
16712
+ #~ msgstr[0] "Starea unei comenzi modificată."
16713
+ #~ msgstr[1] "Stările pentru %d comenzi modificate."
16714
+ #~ msgstr[2] "Stările pentru %d de comenzi modificate."
16715
+
16716
+ #~ msgid "Order status changed by bulk edit:"
16717
+ #~ msgstr "Starea comenzii a fost schimbată prin editarea în masă:"
16718
+
16719
+ #~ msgid "Complete"
16720
+ #~ msgstr "Finalizată"
16721
+
16722
+ #~ msgid "Processing"
16723
+ #~ msgstr "În procesare"
16724
+
16725
+ #~ msgid "Guest"
16726
+ #~ msgstr "Vizitator"
16727
+
16728
+ #~ msgid "Billing"
16729
+ #~ msgstr "Facturare"
16730
+
16731
+ #~ msgid "%d note"
16732
+ #~ msgid_plural "%d notes"
16733
+ #~ msgstr[0] "%d comentariu"
16734
+ #~ msgstr[1] "%d comentariii"
16735
+ #~ msgstr[2] "%d comentarii"
16736
+
16737
+ #~ msgid "Plus %d other note"
16738
+ #~ msgid_plural "Plus %d other notes"
16739
+ #~ msgstr[0] "Plus o altă notă"
16740
+ #~ msgstr[1] "Plus %d alte note"
16741
+ #~ msgstr[2] "Plus %d de alte note"
16742
+
16743
+ #~ msgid "View"
16744
+ #~ msgstr "Vizualizare"
16745
+
16746
+ #~ msgid "Delete permanently"
16747
+ #~ msgstr "Șterge definitiv"
16748
+
16749
+ #~ msgid "Trash"
16750
+ #~ msgstr "Coș de gunoi"
16751
+
16752
+ #~ msgid "No"
16753
+ #~ msgstr "Nu"
16754
+
16755
+ #~ msgid "Yes"
16756
+ #~ msgstr "Da"
16757
+
16758
+ #~ msgid "Toggle featured"
16759
+ #~ msgstr "Comuta Recomandarea"
16760
+
16761
+ #~ msgid "Downloadable"
16762
+ #~ msgstr "Descarcăbil"
16763
+
16764
+ #~ msgid "Virtual"
16765
+ #~ msgstr "Virtual"
16766
+
16767
+ #~ msgid "Actions"
16768
+ #~ msgstr "Acțiuni"
16769
+
16770
+ #~ msgid "Total"
16771
+ #~ msgstr "Total"
16772
+
16773
+ #~ msgid "Ship to"
16774
+ #~ msgstr "Livrează la"
16775
+
16776
+ #~ msgid "Purchase"
16777
+ #~ msgstr "Cumpărare"
16778
+
16779
+ #~ msgid "Order"
16780
+ #~ msgstr "Comandă"
16781
+
16782
+ #~ msgid "Status"
16783
+ #~ msgstr "Stare"
16784
+
16785
+ #~ msgid "Expiry date"
16786
+ #~ msgstr "Data expirării"
16787
+
16788
+ #~ msgid "Usage / Limit"
16789
+ #~ msgstr "Utilizare / Limita"
16790
+
16791
+ #~ msgid "Product IDs"
16792
+ #~ msgstr "ID-urile de produs"
16793
+
16794
+ #~ msgid "Coupon amount"
16795
+ #~ msgstr "Valoare cupon"
16796
+
16797
+ #~ msgid "Coupon type"
16798
+ #~ msgstr "Tip de cupon"
16799
+
16800
+ #~ msgid "Code"
16801
+ #~ msgstr "Cod"
16802
+
16803
+ #~ msgid "Date"
16804
+ #~ msgstr "Dată"
16805
+
16806
+ #~ msgid "Tags"
16807
+ #~ msgstr "Etichete"
16808
+
16809
+ #~ msgid "Categories"
16810
+ #~ msgstr "Categorii"
16811
+
16812
+ #~ msgid "Stock"
16813
+ #~ msgstr "Stoc"
16814
+
16815
+ #~ msgid "SKU"
16816
+ #~ msgstr "Cod Păstrare în Stoc"
16817
+
16818
+ #~ msgid "Image"
16819
+ #~ msgstr "Imagine"
16820
+
16821
+ #~ msgid "%s coupon restored from the Trash."
16822
+ #~ msgid_plural "%s coupons restored from the Trash."
16823
+ #~ msgstr[0] "%s cupon restaurat din coșul de gunoi."
16824
+ #~ msgstr[1] "%s cupoane restaurate din coșul de gunoi."
16825
+ #~ msgstr[2] "%s de cupoane restaurate din coșul de gunoi."
16826
+
16827
+ #~ msgid "%s coupon moved to the Trash."
16828
+ #~ msgid_plural "%s coupons moved to the Trash."
16829
+ #~ msgstr[0] "%s cupon mutat în coșul de gunoi."
16830
+ #~ msgstr[1] "%s cupoane mutate în coșul de gunoi."
16831
+ #~ msgstr[2] "%s de cupoane mutate în coșul de gunoi."
16832
+
16833
+ #~ msgid "%s coupon permanently deleted."
16834
+ #~ msgid_plural "%s coupons permanently deleted."
16835
+ #~ msgstr[0] "%s cupon șters definitiv."
16836
+ #~ msgstr[1] "%s cupoane șterse definitiv."
16837
+ #~ msgstr[2] "%s de cupoane șterse definitiv."
16838
+
16839
+ #~ msgid "%s coupon not updated, somebody is editing it."
16840
+ #~ msgid_plural "%s coupons not updated, somebody is editing them."
16841
+ #~ msgstr[0] "%s cupon neactualizat, cineva îl editează."
16842
+ #~ msgstr[1] "%s cupoane neactualizate, cineva le editează."
16843
+ #~ msgstr[2] "%s de cupoane neactualizate, cineva le editează."
16844
+
16845
+ #~ msgid "%s coupon updated."
16846
+ #~ msgid_plural "%s coupons updated."
16847
+ #~ msgstr[0] "%s cupon actualizat."
16848
+ #~ msgstr[1] "%s cupoane actualizate."
16849
+ #~ msgstr[2] "%s de cupoane actualizate."
16850
+
16851
+ #~ msgid "%s order restored from the Trash."
16852
+ #~ msgid_plural "%s orders restored from the Trash."
16853
+ #~ msgstr[0] "O comandă restaurată din coșul de gunoi."
16854
+ #~ msgstr[1] "%s comenzi restaurate din coșul de gunoi."
16855
+ #~ msgstr[2] "%s de comenzi restaurate din coșul de gunoi."
16856
+
16857
+ #~ msgid "%s order moved to the Trash."
16858
+ #~ msgid_plural "%s orders moved to the Trash."
16859
+ #~ msgstr[0] "O comandă mutată în coșul de gunoi."
16860
+ #~ msgstr[1] "%s comenzi mutate în coșul de gunoi."
16861
+ #~ msgstr[2] "%s de comenzi mutate în coșul de gunoi."
16862
+
16863
+ #~ msgid "%s order permanently deleted."
16864
+ #~ msgid_plural "%s orders permanently deleted."
16865
+ #~ msgstr[0] "O comandă ștearsă definitiv."
16866
+ #~ msgstr[1] "%s comenzi șterse definitiv."
16867
+ #~ msgstr[2] "%s de comenzi șterse definitiv."
16868
+
16869
+ #~ msgid "%s order not updated, somebody is editing it."
16870
+ #~ msgid_plural "%s orders not updated, somebody is editing them."
16871
+ #~ msgstr[0] "O comandă neactualizată, cineva o editează."
16872
+ #~ msgstr[1] "%s comenzi neactualizate, cineva le editează."
16873
+ #~ msgstr[2] "%s de comenzi neactualizate, cineva le editează."
16874
+
16875
+ #~ msgid "%s order updated."
16876
+ #~ msgid_plural "%s orders updated."
16877
+ #~ msgstr[0] "O comandă actualizată."
16878
+ #~ msgstr[1] "%s comenzi actualizate."
16879
+ #~ msgstr[2] "%s de comenzi actualizate."
16880
+
16881
+ #~ msgid "%s product restored from the Trash."
16882
+ #~ msgid_plural "%s products restored from the Trash."
16883
+ #~ msgstr[0] "%s produs restaurat din coșul de gunoi."
16884
+ #~ msgstr[1] "%s produse restaurate din coșul de gunoi."
16885
+ #~ msgstr[2] "%s de produse restaurate din coșul de gunoi."
16886
+
16887
+ #~ msgid "%s product moved to the Trash."
16888
+ #~ msgid_plural "%s products moved to the Trash."
16889
+ #~ msgstr[0] "%s produs mutat în coșul de gunoi."
16890
+ #~ msgstr[1] "%s produse mutate în coșul de gunoi."
16891
+ #~ msgstr[2] "%s de produse mutate în coșul de gunoi."
16892
+
16893
+ #~ msgid "%s product permanently deleted."
16894
+ #~ msgid_plural "%s products permanently deleted."
16895
+ #~ msgstr[0] "%s produs șters permanent."
16896
+ #~ msgstr[1] "%s produse șterse permanent."
16897
+ #~ msgstr[2] "%s de produse șterse permanent."
16898
+
16899
+ #~ msgid "%s product not updated, somebody is editing it."
16900
+ #~ msgid_plural "%s products not updated, somebody is editing them."
16901
+ #~ msgstr[0] "%s produs nu a fost actualizat, cineva îl editează."
16902
+ #~ msgstr[1] "%s produse nu au fost actualizate, cineva le editează."
16903
+ #~ msgstr[2] "%s de produse nu au fost actualizate, cineva le editează."
16904
+
16905
+ #~ msgid "%s product updated."
16906
+ #~ msgid_plural "%s products updated."
16907
+ #~ msgstr[0] "%s produs actualizat."
16908
+ #~ msgstr[1] "%s produse actualizate."
16909
+ #~ msgstr[2] "%s de produse actualizate."
16910
+
16911
+ #~ msgid "Coupon draft updated."
16912
+ #~ msgstr "Ciornă cupon actualizată."
16913
+
16914
+ #~ msgid "Coupon submitted."
16915
+ #~ msgstr "Cupon trimis."
16916
+
16917
+ #~ msgid "Coupon saved."
16918
+ #~ msgstr "Cupon salvat."
16919
+
16920
+ #~ msgid "Coupon updated."
16921
+ #~ msgstr "Cod promoțional actualizat."
16922
+
16923
+ #~ msgid "Order draft updated."
16924
+ #~ msgstr "Ciornă comandă actualizată."
16925
+
16926
+ #~ msgid "Order submitted."
16927
+ #~ msgstr "Comandă trimisă (plasată)."
16928
+
16929
+ #~ msgid "Order saved."
16930
+ #~ msgstr "Comandă salvată."
16931
+
16932
+ #~ msgid "Order updated."
16933
+ #~ msgstr "Comandă actualizată."
16934
+
16935
+ #~ msgid ""
16936
+ #~ "Product draft updated. <a target=\"_blank\" href=\"%s\">Preview product</"
16937
+ #~ "a>"
16938
+ #~ msgstr ""
16939
+ #~ "Ciornă produs actualizată. <a target=\"_blank\" href=\"%s"
16940
+ #~ "\">Previzualizează produsul</a>"
16941
+
16942
+ #~ msgid "M j, Y @ G:i"
16943
+ #~ msgstr "j M Y @ G:i"
16944
+
16945
+ #~ msgid ""
16946
+ #~ "Product scheduled for: %1$s. <a target=\"_blank\" href=\"%2$s\">Preview "
16947
+ #~ "product</a>"
16948
+ #~ msgstr ""
16949
+ #~ "Produs programat pentru: %1$s. <a target=\"_blank\" href=\"%2$s"
16950
+ #~ "\">Previzualizează produsul</a>"
16951
+
16952
+ #~ msgid ""
16953
+ #~ "Product submitted. <a target=\"_blank\" href=\"%s\">Preview product</a>"
16954
+ #~ msgstr ""
16955
+ #~ "Produs trimis. <a target=\"_blank\" href=\"%s\">Previzualizează produsul</"
16956
+ #~ "a>"
16957
+
16958
+ #~ msgid "Product saved."
16959
+ #~ msgstr "Produs salvat."
16960
+
16961
+ #~ msgid "Product published. <a href=\"%s\">View Product</a>"
16962
+ #~ msgstr "Produs publicat. <a href=\"%s\">Vezi produsul</a>"
16963
+
16964
+ #~ msgid "Product updated."
16965
+ #~ msgstr "Produs Actualizat."
16966
+
16967
+ #~ msgid "Custom field deleted."
16968
+ #~ msgstr "Câmp personalizat șters."
16969
+
16970
+ #~ msgid "Custom field updated."
16971
+ #~ msgstr "Câmp personalizat actualizat."
16972
+
16973
+ #~ msgid "Product updated. <a href=\"%s\">View Product</a>"
16974
+ #~ msgstr "Produs actualizat. <a href=\"%s\">Vezi produsul</a>"
16975
+
16976
+ #~ msgid ""
16977
+ #~ "When you are finished editing your product, hit the \"Publish\" button to "
16978
+ #~ "publish your product to your store."
16979
+ #~ msgstr ""
16980
+ #~ "Când ai terminat editarea produsului, apasă butonul \"Publicare\" pentru "
16981
+ #~ "a-ți publica produsul în magazin."
16982
+
16983
+ #~ msgid "Publish your product!"
16984
+ #~ msgstr "Publică-ți produsul!"
16985
+
16986
+ #~ msgid ""
16987
+ #~ "Optionally assign categories to your products to make them easier to "
16988
+ #~ "browse through and find in your store."
16989
+ #~ msgstr ""
16990
+ #~ "Opțional, atribuie categorii produsele tale pentru a face mai ușoară "
16991
+ #~ "navigarea printre ele și găsirea lor în magazinul tău."
16992
+
16993
+ #~ msgid "Product Categories"
16994
+ #~ msgstr "Categorii de produse"
16995
+
16996
+ #~ msgid ""
16997
+ #~ "You can optionally \"tag\" your products here. Tags are a method of "
16998
+ #~ "labeling your products to make them easier for customers to find."
16999
+ #~ msgstr ""
17000
+ #~ "Opțional, aici poți să-ți „etichetezi” produsele. Etichetele sunt o "
17001
+ #~ "metodă de etichetare a produselor tale pentru a fi găsite mai ușor de "
17002
+ #~ "către clienți."
17003
+
17004
+ #~ msgid ""
17005
+ #~ "Upload or assign an image to your product here. This image will be shown "
17006
+ #~ "in your store's catalog."
17007
+ #~ msgstr ""
17008
+ #~ "Încarcă sau atribuie o imagine pentru produsul tău aici. Această imagine "
17009
+ #~ "va fi arătată în catalogul magazinului tău."
17010
+
17011
+ #~ msgid "Product images"
17012
+ #~ msgstr "Imagini produs"
17013
+
17014
+ #~ msgid ""
17015
+ #~ "Add a quick summary for your product here. This will appear on the "
17016
+ #~ "product page under the product name."
17017
+ #~ msgstr ""
17018
+ #~ "Adaugă un rezumat scurt pentru produsul tău. Acesta va apărea în pagina "
17019
+ #~ "produsului, sub numele produsului."
17020
+
17021
+ #~ msgid "Next you need to give your product a price."
17022
+ #~ msgstr "Apoi trebuie să fixezi un preț pentru produsul tău."
17023
+
17024
+ #~ msgid "Prices"
17025
+ #~ msgstr "Prețuri"
17026
+
17027
+ #~ msgid ""
17028
+ #~ "If purchasing this product gives a customer access to a downloadable "
17029
+ #~ "file, e.g. software, check this box."
17030
+ #~ msgstr ""
17031
+ #~ "Dacă cumpărarea acestui produs oferă acces pentru client la un fișier "
17032
+ #~ "descărcabil, de exemplu software, bifează această casetă."
17033
+
17034
+ #~ msgid ""
17035
+ #~ "Check the \"Virtual\" box if this is a non-physical item, for example a "
17036
+ #~ "service, which does not need shipping."
17037
+ #~ msgstr ""
17038
+ #~ "Bifează caseta \"Virtual\" dacă este un element non-fizic, de exemplu un "
17039
+ #~ "serviciu, care nu are nevoie de livrare."
17040
+
17041
+ #~ msgid "Virtual products"
17042
+ #~ msgstr "Produse virtuale"
17043
+
17044
+ #~ msgid "Finally, external products are for linking off-site."
17045
+ #~ msgstr ""
17046
+ #~ "În cele din urmă, produsele externe sunt cele care leagă în afara sitului."
17047
+
17048
+ #~ msgid "Grouped products are for grouping several simple products into one."
17049
+ #~ msgstr ""
17050
+ #~ "Produsele grupate sunt pentru gruparea mai multor produse simple într-"
17051
+ #~ "unul singur."
17052
+
17053
+ #~ msgid ""
17054
+ #~ "Variable is for more complex products such as t-shirts with multiple "
17055
+ #~ "sizes."
17056
+ #~ msgstr ""
17057
+ #~ "Variabila este pentru produse mai complexe, cum ar fi tricouri de mai "
17058
+ #~ "multe mărimi."
17059
+
17060
+ #~ msgid ""
17061
+ #~ "Choose a type for this product. Simple is suitable for most physical "
17062
+ #~ "goods and services (we recommend setting up a simple product for now)."
17063
+ #~ msgstr ""
17064
+ #~ "Alege un tip pentru acest produs. Simplu este potrivit pentru cele mai "
17065
+ #~ "multe bunuri fizice și servicii (recomandăm setarea unui produs simplu de "
17066
+ #~ "acum)."
17067
+
17068
+ #~ msgid "Choose product type"
17069
+ #~ msgstr "Alege tip de produs"
17070
+
17071
+ #~ msgid ""
17072
+ #~ "This is your products main body of content. Here you should describe your "
17073
+ #~ "product in detail."
17074
+ #~ msgstr ""
17075
+ #~ "Acesta este corpul principal al conținutului produselor tale. Aici ar "
17076
+ #~ "trebui să-ți descrii produsul în detaliu."
17077
+
17078
+ #~ msgid "Product description"
17079
+ #~ msgstr "Descriere produs"
17080
+
17081
+ #~ msgid ""
17082
+ #~ "Give your new product a name here. This is a required field and will be "
17083
+ #~ "what your customers will see in your store."
17084
+ #~ msgstr ""
17085
+ #~ "Dă-i noului tău produs un nume aici. Acesta este un câmp obligatoriu și "
17086
+ #~ "va fi ceea ce vor vedea clienții în magazinul tău."
17087
+
17088
+ #~ msgctxt "slug"
17089
+ #~ msgid "product"
17090
+ #~ msgstr "produs"
17091
+
17092
+ #~ msgid ""
17093
+ #~ "Enter a custom base to use. A base must be set or WordPress will use "
17094
+ #~ "default instead."
17095
+ #~ msgstr ""
17096
+ #~ "Introdu o bază personalizată pentru a o folosi. Trebuie să fie setată o "
17097
+ #~ "bază sau WordPress va folosi în schimb baza implicită."
17098
+
17099
+ #~ msgid "Custom base"
17100
+ #~ msgstr "Bază personalizată"
17101
+
17102
+ #~ msgid "Shop base with category"
17103
+ #~ msgstr "Bază magazin cu categorie"
17104
+
17105
+ #~ msgid "Shop base"
17106
+ #~ msgstr "Bază Magazin"
17107
+
17108
+ #~ msgid "Default"
17109
+ #~ msgstr "Implicit"
17110
+
17111
+ #~ msgctxt "default-slug"
17112
+ #~ msgid "product"
17113
+ #~ msgstr "produs"
17114
+
17115
+ #~ msgctxt "default-slug"
17116
+ #~ msgid "shop"
17117
+ #~ msgstr "magazin"
17118
+
17119
+ #~ msgctxt "slug"
17120
+ #~ msgid "product-tag"
17121
+ #~ msgstr "eticheta-produs"
17122
+
17123
+ #~ msgctxt "slug"
17124
+ #~ msgid "product-category"
17125
+ #~ msgstr "categorie-produs"
17126
+
17127
+ #~ msgid "Product attribute base"
17128
+ #~ msgstr "Bază atribute produse"
17129
+
17130
+ #~ msgid "Product tag base"
17131
+ #~ msgstr "Bază etichete de produs"
17132
+
17133
+ #~ msgid "Product category base"
17134
+ #~ msgstr "Bază categorii produse"
17135
+
17136
+ #~ msgid "Reviews"
17137
+ #~ msgstr "Recenzii"
17138
+
17139
+ #~ msgid "Rating"
17140
+ #~ msgstr "Evaluare"
17141
+
17142
+ #~ msgid "Coupon data"
17143
+ #~ msgstr "Date cupon"
17144
+
17145
+ #~ msgid "%s actions"
17146
+ #~ msgstr "Acțiuni %s"
17147
+
17148
+ #~ msgid ""
17149
+ #~ "Note: Permissions for order items will automatically be granted when the "
17150
+ #~ "order status changes to processing/completed."
17151
+ #~ msgstr ""
17152
+ #~ "Notă: Permisiuni pentru articolele comandate vor fi acordate în mod "
17153
+ #~ "automat atunci când se schimbă starea comenzii în Prelucrare / Finalizată."
17154
+
17155
+ #~ msgid "Downloadable product permissions"
17156
+ #~ msgstr "Permisiuni produs descărcabil"
17157
+
17158
+ #~ msgid "%s notes"
17159
+ #~ msgstr "Note %s"
17160
+
17161
+ #~ msgid "%s items"
17162
+ #~ msgstr "%s elemente"
17163
+
17164
+ #~ msgid "%s data"
17165
+ #~ msgstr "Date %s"
17166
+
17167
+ #~ msgid "Product gallery"
17168
+ #~ msgstr "Galerie produs"
17169
+
17170
+ #~ msgid "Product data"
17171
+ #~ msgstr "Date produs"
17172
+
17173
+ #~ msgid "Product short description"
17174
+ #~ msgstr "Descriere scurtă produs"
17175
+
17176
+ #~ msgid "Visit Store"
17177
+ #~ msgstr "Vizitează magazinul"
17178
+
17179
+ #~ msgid "Add to menu"
17180
+ #~ msgstr "Adaugă în meniu"
17181
+
17182
+ #~ msgid "WooCommerce endpoints"
17183
+ #~ msgstr "Puncte-finale WooCommerce"
17184
+
17185
+ #~ msgctxt "Admin menu name"
17186
+ #~ msgid "Orders"
17187
+ #~ msgstr "Comenzi"
17188
+
17189
+ #~ msgid "WooCommerce settings"
17190
+ #~ msgstr "Setări WooCommerce"
17191
+
17192
+ #~ msgid "Sales reports"
17193
+ #~ msgstr "Rapoarte de vânzări"
17194
+
17195
+ #~ msgid "Import <strong>tax rates</strong> to your store via a csv file."
17196
+ #~ msgstr ""
17197
+ #~ "Importă <strong>cote de impozitare</strong> în magazinul tău prin "
17198
+ #~ "intermediul unui fișier csv."
17199
+
17200
+ #~ msgid "WooCommerce tax rates (CSV)"
17201
+ #~ msgstr "Cote de impozitare WooCommerce (CSV)"
17202
+
17203
+ #~ msgid "Official extensions"
17204
+ #~ msgstr "Extensii oficiale"
17205
+
17206
+ #~ msgid "Official theme"
17207
+ #~ msgstr "Temă oficială"
17208
+
17209
+ #~ msgid "Github project"
17210
+ #~ msgstr "Proiect Github"
17211
+
17212
+ #~ msgid "WordPress.org project"
17213
+ #~ msgstr "Proiect WordPress.org"
17214
+
17215
+ #~ msgid "About WooCommerce"
17216
+ #~ msgstr "Despre WooCommerce"
17217
+
17218
+ #~ msgid "For more information:"
17219
+ #~ msgstr "Pentru mai multe informații:"
17220
+
17221
+ #~ msgid "Report a bug"
17222
+ #~ msgstr "Raportați o eroare (bug)"
17223
+
17224
+ #~ msgid ""
17225
+ #~ "If you find a bug within WooCommerce core you can create a ticket via <a "
17226
+ #~ "href=\"%1$s\">Github issues</a>. Ensure you read the <a href=\"%2$s"
17227
+ #~ "\">contribution guide</a> prior to submitting your report. To help us "
17228
+ #~ "solve your issue, please be as descriptive as possible and include your "
17229
+ #~ "<a href=\"%3$s\">system status report</a>."
17230
+ #~ msgstr ""
17231
+ #~ "Dacă găsești o eroare în nucleul WooCommerce poți să creezi un tichet la "
17232
+ #~ "<a href=\"%1$s\">probleme Github</a>. Asigură-te că ai citit <a href="
17233
+ #~ "\"%2$s\">ghidul de contribuție</a> înainte de a trimite raportul. Pentru "
17234
+ #~ "a ne ajuta să-ți rezolvăm problema, te rog să fii cât mai descriptiv "
17235
+ #~ "posibil și să incluzi <a href=\"%3$s\">raportul de stare a sistemului</a>."
17236
+
17237
+ #~ msgid "Found a bug?"
17238
+ #~ msgstr "Ai găsit o eroare (bug)?"
17239
+
17240
+ #~ msgid "Education"
17241
+ #~ msgstr "Educație"
17242
+
17243
+ #~ msgid ""
17244
+ #~ "Before asking for help we recommend checking the system status page to "
17245
+ #~ "identify any problems with your configuration."
17246
+ #~ msgstr ""
17247
+ #~ "Înainte de a cere ajutor îți recomandăm să verifici pagina de stare a "
17248
+ #~ "sistemului pentru a identifica orice probleme privind configurația ta."
17249
+
17250
+ #~ msgid ""
17251
+ #~ "Should you need help understanding, using, or extending WooCommerce, <a "
17252
+ #~ "href=\"%s\">please read our documentation</a>. You will find all kinds of "
17253
+ #~ "resources including snippets, tutorials and much more."
17254
+ #~ msgstr ""
17255
+ #~ "Dacă ai nevoie de ajutor pentru înțelegerea, folosirea și extinderea "
17256
+ #~ "WooCommerce, <a href=\"%s\">te rog citește documentația noastră</a>. Vei "
17257
+ #~ "găsi tot felul de resurse, inclusiv fragmente, tutoriale și multe altele."
17258
+
17259
+ #~ msgid "Coupons"
17260
+ #~ msgstr "Cupoane"
17261
+
17262
+ #~ msgid "Reports"
17263
+ #~ msgstr "Rapoarte"
17264
+
17265
+ #~ msgid "Local pickup"
17266
+ #~ msgstr "Colectare locală"
17267
+
17268
+ #~ msgid "Local delivery"
17269
+ #~ msgstr "Livrare locală"
17270
+
17271
+ #~ msgid "Free Shipping"
17272
+ #~ msgstr "Livrare Gratuită"
17273
+
17274
+ #~ msgid "Simplify Commerce"
17275
+ #~ msgstr "Simplify Commerce"
17276
+
17277
+ #~ msgid "PayPal Standard"
17278
+ #~ msgstr "PayPal Standard"
17279
+
17280
+ #~ msgid "Product creation failed, could not find original product: %s"
17281
+ #~ msgstr "Crearea produsului a eșuat, nu am putut găsi produsul original: %s"
17282
+
17283
+ #~ msgid "No product to duplicate has been supplied!"
17284
+ #~ msgstr "Nu a fost selectat nici un produs pentru a fi duplicat!"
17285
+
17286
+ #~ msgid "Copy to a new draft"
17287
+ #~ msgstr "Copiază într-o ciornă nouă"
17288
+
17289
+ #~ msgid "Duplicate"
17290
+ #~ msgstr "Fă duplicat"
17291
+
17292
+ #~ msgid "Make a duplicate from this product"
17293
+ #~ msgstr "Faceti un duplicat la acest produs"
17294
+
17295
+ #~ msgid "There are no product reviews yet."
17296
+ #~ msgstr "Nu există recenzii încă."
17297
+
17298
+ #~ msgid "<strong>%s product</strong> out of stock"
17299
+ #~ msgid_plural "<strong>%s products</strong> out of stock"
17300
+ #~ msgstr[0] "<strong>%s produs</strong> cu stoc epuizat"
17301
+ #~ msgstr[1] "<strong>%s produse</strong> cu stoc epuizat"
17302
+ #~ msgstr[2] "<strong>%s produse</strong> cu stoc epuizat"
17303
+
17304
+ #~ msgid "<strong>%s product</strong> low in stock"
17305
+ #~ msgid_plural "<strong>%s products</strong> low in stock"
17306
+ #~ msgstr[0] "<strong>%s produs</strong> cu stoc redus"
17307
+ #~ msgstr[1] "<strong>%s produse</strong> cu stoc redus"
17308
+ #~ msgstr[2] "<strong>%s produse</strong> cu stoc redus"
17309
+
17310
+ #~ msgid "<strong>%s order</strong> on-hold"
17311
+ #~ msgid_plural "<strong>%s orders</strong> on-hold"
17312
+ #~ msgstr[0] "<strong>%s comandă</strong> în așteptare"
17313
+ #~ msgstr[1] "<strong>%s comenzi</strong> în așteptare"
17314
+ #~ msgstr[2] "<strong>%s comenzi</strong> în așteptare"
17315
+
17316
+ #~ msgid "<strong>%s order</strong> awaiting processing"
17317
+ #~ msgid_plural "<strong>%s orders</strong> awaiting processing"
17318
+ #~ msgstr[0] "<strong>%s comandă</strong> așteaptă procesarea"
17319
+ #~ msgstr[1] "<strong>%s comenzi</strong> așteaptă procesarea"
17320
+ #~ msgstr[2] "<strong>%s comenzi</strong> așteaptă procesarea"
17321
+
17322
+ #~ msgid "%1$s top seller this month (sold %2$d)"
17323
+ #~ msgstr "Cel mai bine vândut luna aceasta %1$s (%2$d vândute)"
17324
+
17325
+ #~ msgid "WooCommerce status"
17326
+ #~ msgstr "Stare WooCommerce"
17327
+
17328
+ #~ msgid "WooCommerce recent reviews"
17329
+ #~ msgstr "Recenzii recente WooCommerce"
17330
+
17331
+ #~ msgid "Are you sure you want to delete this attribute?"
17332
+ #~ msgstr "Ești sigur că dorești să ștergi acest atribut?"
17333
+
17334
+ #~ msgid "Add attribute"
17335
+ #~ msgstr "Adaugă atribut"
17336
+
17337
+ #~ msgid "Add new attribute"
17338
+ #~ msgstr "Adaugă atribut nou"
17339
+
17340
+ #~ msgid "No attributes currently exist."
17341
+ #~ msgstr "Nu Există nici un atribut."
17342
+
17343
+ #~ msgid "Configure terms"
17344
+ #~ msgstr "Configurează termeni"
17345
+
17346
+ #~ msgid "Delete"
17347
+ #~ msgstr "Șterge"
17348
+
17349
+ #~ msgid "Edit"
17350
+ #~ msgstr "Editează"
17351
+
17352
+ #~ msgid "Terms"
17353
+ #~ msgstr "Termeni"
17354
+
17355
+ #~ msgid "Order by"
17356
+ #~ msgstr "Ordonează după"
17357
+
17358
+ #~ msgid "Attributes"
17359
+ #~ msgstr "Atribute"
17360
+
17361
+ #~ msgid "Update"
17362
+ #~ msgstr "Actualizează"
17363
+
17364
+ #~ msgid ""
17365
+ #~ "Determines the sort order of the terms on the frontend shop product "
17366
+ #~ "pages. If using custom ordering, you can drag and drop the terms in this "
17367
+ #~ "attribute."
17368
+ #~ msgstr ""
17369
+ #~ "Determină ordinea de sortare a termenilor afișată pe paginile "
17370
+ #~ "magazinului. Dacă utilizezi ordonare personalizată, poți să foloseși drag "
17371
+ #~ "& drop pentru a rearanja terminii din acest atribut."
17372
+
17373
+ #~ msgid "Term ID"
17374
+ #~ msgstr "Cod Identificare Termen"
17375
+
17376
+ #~ msgid "Name (numeric)"
17377
+ #~ msgstr "Nume (numeric)"
17378
+
17379
+ #~ msgid "Custom ordering"
17380
+ #~ msgstr "Ordine de sortare personalizată"
17381
+
17382
+ #~ msgid "Default sort order"
17383
+ #~ msgstr "Ordine de sortare implicită"
17384
+
17385
+ #~ msgid "Type"
17386
+ #~ msgstr "Tip"
17387
+
17388
+ #~ msgid ""
17389
+ #~ "Enable this if you want this attribute to have product archives in your "
17390
+ #~ "store."
17391
+ #~ msgstr ""
17392
+ #~ "Activează asta dacă vrei ca acest atribut să aibă arhive de produse în "
17393
+ #~ "magazin."
17394
+
17395
+ #~ msgid "Enable Archives?"
17396
+ #~ msgstr "Activați Arhive?"
17397
+
17398
+ #~ msgid ""
17399
+ #~ "Unique slug/reference for the attribute; must be no more than 28 "
17400
+ #~ "characters."
17401
+ #~ msgstr ""
17402
+ #~ "Descriptor unic/referință unică pentru atribut; trebuie să fie mai mic(ă) "
17403
+ #~ "decât 28 de caractere."
17404
+
17405
+ #~ msgid "Slug"
17406
+ #~ msgstr "Descriptor"
17407
+
17408
+ #~ msgid "Name for the attribute (shown on the front-end)."
17409
+ #~ msgstr "Denumire pentru atribut (afișat vizitatorului)."
17410
+
17411
+ #~ msgid "Error: non-existing attribute ID."
17412
+ #~ msgstr "Eroare: ID atribut inexistent."
17413
+
17414
+ #~ msgid "Edit attribute"
17415
+ #~ msgstr "Editează atribut"
17416
+
17417
+ #~ msgid "Attribute updated successfully"
17418
+ #~ msgstr "Atribut actualizat cu succes"
17419
+
17420
+ #~ msgid "Slug \"%s\" is already in use. Change it, please."
17421
+ #~ msgstr "Numele scurt \"%s\" este deja folosit. Vă rugăm schimbati-l."
17422
+
17423
+ #~ msgid ""
17424
+ #~ "Slug \"%s\" is not allowed because it is a reserved term. Change it, "
17425
+ #~ "please."
17426
+ #~ msgstr ""
17427
+ #~ "Numele scurt \"%s\" nu este permis pentru că este un termen rezervat. Vă "
17428
+ #~ "rugăm schimbati-l."
17429
+
17430
+ #~ msgid "Slug \"%s\" is too long (28 characters max). Shorten it, please."
17431
+ #~ msgstr ""
17432
+ #~ "Numele scurt \"%s\" este prea lung (maxim 28 de caractere). Vă rugăm "
17433
+ #~ "scurtati-l."
17434
+
17435
+ #~ msgid "You cannot add the same tax rate twice!"
17436
+ #~ msgstr "Nu poți adăuga aceeași rată de impozitare de două ori!"
17437
+
17438
+ #~ msgid "Are you sure you want to revoke access to this download?"
17439
+ #~ msgstr "Ești sigur că dorești să revoci accesul la această descărcare?"
17440
+
17441
+ #~ msgid ""
17442
+ #~ "Could not grant access - the user may already have permission for this "
17443
+ #~ "file or billing email is not set. Ensure the billing email is set, and "
17444
+ #~ "the order has been saved."
17445
+ #~ msgstr ""
17446
+ #~ "Nu am putut acorda acces - este posibil ca utilizatorul să fi primit deja "
17447
+ #~ "permesiune pentru acest fișier sau adresa de facturare nu este introdusă. "
17448
+ #~ "Asigură-te că adresa de facturare este introdusă și "
17449
+
17450
+ #~ msgid "No customer selected"
17451
+ #~ msgstr "Nu a fost selectat nici un client"
17452
+
17453
+ #~ msgid "Featured"
17454
+ #~ msgstr "Reprezentativ"
17455
+
17456
+ #~ msgid ""
17457
+ #~ "Load the customer's shipping information? This will remove any currently "
17458
+ #~ "entered shipping information."
17459
+ #~ msgstr ""
17460
+ #~ "Încarcă datele de expediere ale clientului? Această operațiune va șterge "
17461
+ #~ "datele de expediere introduse în acest moment."
17462
+
17463
+ #~ msgid ""
17464
+ #~ "Load the customer's billing information? This will remove any currently "
17465
+ #~ "entered billing information."
17466
+ #~ msgstr ""
17467
+ #~ "Încarcă datele de facturare ale clientului? Această operațiune va șterge "
17468
+ #~ "datele de facturare introduse în acest moment."
17469
+
17470
+ #~ msgid ""
17471
+ #~ "Copy billing information to shipping information? This will remove any "
17472
+ #~ "currently entered shipping information."
17473
+ #~ msgstr ""
17474
+ #~ "Copiezi datele de la facturare la datele de expediere? Această operațiune "
17475
+ #~ "va șterge datele de expediere introduse în acest moment."
17476
+
17477
+ #~ msgid "Enter a name for the new attribute term:"
17478
+ #~ msgstr "Introduceți un nume pentru noul atribut:"
17479
+
17480
+ #~ msgid "Used for variations"
17481
+ #~ msgstr "Folosit pentru variații"
17482
+
17483
+ #~ msgid "Visible on the product page"
17484
+ #~ msgstr "Vizibil pe pagina produsului"
17485
+
17486
+ #~ msgid "Enter some text, or some attributes by pipe (|) separating values."
17487
+ #~ msgstr "Introdu text sau atribute separate de simbolul (|)."
17488
+
17489
+ #~ msgid "Value(s)"
17490
+ #~ msgstr "Valoare(i)"
17491
+
17492
+ #~ msgid "Click to toggle"
17493
+ #~ msgstr "Dă clic pentru comutare"
17494
+
17495
+ #~ msgid "Remove"
17496
+ #~ msgstr "Înlătură"
17497
+
17498
+ #~ msgid "Name"
17499
+ #~ msgstr "Nume"
17500
+
17501
+ #~ msgid "Remove this attribute?"
17502
+ #~ msgstr "Ștergeti acest Atribut?"
17503
+
17504
+ #~ msgid "Remove this item meta?"
17505
+ #~ msgstr "Șterge informația meta pentru acest produs?\\v"
17506
+
17507
+ #~ msgid ""
17508
+ #~ "Are you sure you wish to delete this tax column? This action cannot be "
17509
+ #~ "undone."
17510
+ #~ msgstr ""
17511
+ #~ "Ești sigur că vrei să ștergți această coloană de taxe? Această acțiune nu "
17512
+ #~ "mai poate fi anulată."
17513
+
17514
+ #~ msgid ""
17515
+ #~ "Are you sure you wish to delete this refund? This action cannot be undone."
17516
+ #~ msgstr ""
17517
+ #~ "Sigur vrei să ștergi această rambursare? Această acțiune nu poate fi "
17518
+ #~ "anulată."
17519
+
17520
+ #~ msgid ""
17521
+ #~ "Are you sure you wish to process this refund? This action cannot be "
17522
+ #~ "undone."
17523
+ #~ msgstr ""
17524
+ #~ "Sigur vrei să prelucrezi această rambursare? Această acțiune nu poate fi "
17525
+ #~ "anulată."
17526
+
17527
+ #~ msgid "Select an option&hellip;"
17528
+ #~ msgstr "Selectează o opțiune&hellip;"
17529
+
17530
+ #~ msgid "%qty% variations"
17531
+ #~ msgstr "Variații %qty%"
17532
+
17533
+ #~ msgid "%qty% variation"
17534
+ #~ msgstr "Variație %qty%"
17535
+
17536
+ #~ msgid "Save changes before changing page?"
17537
+ #~ msgstr "Salvezi modificările înainte de a schimba pagina?"
17538
+
17539
+ #~ msgid "Sale end date (YYYY-MM-DD format or leave blank)"
17540
+ #~ msgstr "Dată de încheiere vânzare (format YYYY-MM-DD sau lasă necompletat)"
17541
+
17542
+ #~ msgid "Sale start date (YYYY-MM-DD format or leave blank)"
17543
+ #~ msgstr "Data de inceput a reducerii (in format AAAA-LL-ZZ sau lasa gol)"
17544
+
17545
+ #~ msgid "Are you sure you want to remove this variation?"
17546
+ #~ msgstr "Ești sigur că vrei să ștergi această variație?"
17547
+
17548
+ #~ msgid "No variations added"
17549
+ #~ msgstr "Nu sunt variații adăugate"
17550
+
17551
+ #~ msgid "variations added"
17552
+ #~ msgstr "variaţii adăugate"
17553
+
17554
+ #~ msgid "variation added"
17555
+ #~ msgstr "variaţie adăugată"
17556
+
17557
+ #~ msgid "Set variation image"
17558
+ #~ msgstr "Alege imaginea variaţiei"
17559
+
17560
+ #~ msgid "Choose an image"
17561
+ #~ msgstr "Alege o imagine"
17562
+
17563
+ #~ msgid "Last warning, are you sure?"
17564
+ #~ msgstr "Ultima avertizare, ești sigur?"
17565
+
17566
+ #~ msgid ""
17567
+ #~ "Are you sure you want to delete all variations? This cannot be undone."
17568
+ #~ msgstr ""
17569
+ #~ "Sigur doriți să ștergeți toate variațiile? Acest lucru nu poate fi anulat."
17570
+
17571
+ #~ msgid "Enter a value (fixed or %)"
17572
+ #~ msgstr "Introduceți o valoare (fixă sau %)"
17573
+
17574
+ #~ msgid "Variation menu order (determines position in the list of variations)"
17575
+ #~ msgstr "Ordine meniu variație (determină poziția în lista variațiilor)"
17576
+
17577
+ #~ msgid "Enter a value"
17578
+ #~ msgstr "Introduceți o valoare"
17579
+
17580
+ #~ msgid ""
17581
+ #~ "Are you sure you want to link all variations? This will create a new "
17582
+ #~ "variation for each and every possible combination of variation attributes "
17583
+ #~ "(max %d per run)."
17584
+ #~ msgstr ""
17585
+ #~ "Sigur vrei să legi toate variațiile? Acest lucru va crea o nouă variație "
17586
+ #~ "pentru fiecare și orice combinație posibilă de atribute de variație "
17587
+ #~ "(maxim %d per rulare)."
17588
+
17589
+ #~ msgid "Please enter in a value less than the regular price."
17590
+ #~ msgstr "Te rugăm introduci o valoare mai mică decat prețul normal."
17591
+
17592
+ #~ msgid "Please enter in country code with two capital letters."
17593
+ #~ msgstr "Vă rugăm să introduceți codul de țară cu două majuscule."
17594
+
17595
+ #~ msgid ""
17596
+ #~ "Please enter in monetary decimal (%s) format without thousand separators "
17597
+ #~ "and currency symbols."
17598
+ #~ msgstr ""
17599
+ #~ "Te rugăm introdu în format valutar zecinal (%s) fară separator pentru mii "
17600
+ #~ "și simbol de monedă."
17601
+
17602
+ #~ msgid "Please enter in decimal (%s) format without thousand separators."
17603
+ #~ msgstr "Te rugăm introdu în format zecimal (%s) fără separator pentru mii."
17604
+
17605
+ #~ msgctxt "enhanced select"
17606
+ #~ msgid "Searching&hellip;"
17607
+ #~ msgstr "Caut&hellip;"
17608
+
17609
+ #~ msgctxt "enhanced select"
17610
+ #~ msgid "Loading more results&hellip;"
17611
+ #~ msgstr "Se încarcă mai multe rezultate&hellip;"
17612
+
17613
+ #~ msgctxt "enhanced select"
17614
+ #~ msgid "You can only select %qty% items"
17615
+ #~ msgstr "Puteți selecta doar %qty% produse"
17616
+
17617
+ #~ msgctxt "enhanced select"
17618
+ #~ msgid "You can only select 1 item"
17619
+ #~ msgstr "Puteți selecta doar 1 produs"
17620
+
17621
+ #~ msgctxt "enhanced select"
17622
+ #~ msgid "Please delete %qty% characters"
17623
+ #~ msgstr "Vă rugăm să ștergeți %qty% caractere"
17624
+
17625
+ #~ msgctxt "enhanced select"
17626
+ #~ msgid "Please delete 1 character"
17627
+ #~ msgstr "Vă rugăm să ștergeți 1 caracter"
17628
+
17629
+ #~ msgctxt "enhanced select"
17630
+ #~ msgid "Please enter %qty% or more characters"
17631
+ #~ msgstr "Vă rugăm să introduceți %qty% sau mai multe caractere"
17632
+
17633
+ #~ msgctxt "enhanced select"
17634
+ #~ msgid "Please enter 1 or more characters"
17635
+ #~ msgstr "Te rog introdu 1 sau mai multe caractere"
17636
+
17637
+ #~ msgctxt "enhanced select"
17638
+ #~ msgid "No matches found"
17639
+ #~ msgstr "Nu a fost găsit"
17640
+
17641
+ #~ msgid "Action failed. Please refresh the page and retry."
17642
+ #~ msgstr "Acțiune eșuată. Te rog împrospătează pagina și reîncearcă."
17643
+
17644
+ #~ msgid "Search key"
17645
+ #~ msgstr "Caută cheie"
17646
+
17647
+ #~ msgid "Add key"
17648
+ #~ msgstr "Adaugă cheie"
17649
+
17650
+ #~ msgid "Unknown"
17651
+ #~ msgstr "Necunoscut"
17652
+
17653
+ #~ msgid "Read/Write"
17654
+ #~ msgstr "Citire/Scriere"
17655
+
17656
+ #~ msgid "Write"
17657
+ #~ msgstr "Scriere"
17658
+
17659
+ #~ msgid "Read"
17660
+ #~ msgstr "Citire"
17661
+
17662
+ #~ msgid "Revoke"
17663
+ #~ msgstr "Revocare"
17664
+
17665
+ #~ msgid "Revoke API key"
17666
+ #~ msgstr "Revocă cheie API"
17667
+
17668
+ #~ msgid "View/Edit"
17669
+ #~ msgstr "Vizualizează/Editează"
17670
+
17671
+ #~ msgid "ID: %d"
17672
+ #~ msgstr "ID: %d"
17673
+
17674
+ #~ msgid "API key"
17675
+ #~ msgstr "Cheie API"
17676
+
17677
+ #~ msgid "Last access"
17678
+ #~ msgstr "Ultima accesare"
17679
+
17680
+ #~ msgid "Permissions"
17681
+ #~ msgstr "Permisiuni"
17682
+
17683
+ #~ msgid "User"
17684
+ #~ msgstr "Utilizator"
17685
+
17686
+ #~ msgid "Consumer key ending in"
17687
+ #~ msgstr "Cheia clientului se termină în"
17688
+
17689
+ #~ msgid "Description"
17690
+ #~ msgstr "Descriere"
17691
+
17692
+ #~ msgid "Rated %s out of 5"
17693
+ #~ msgstr "Evaluat la %s stele din 5"
17694
+
17695
+ #~ msgctxt "min_price"
17696
+ #~ msgid "From:"
17697
+ #~ msgstr "De la:"
17698
+
17699
+ #~ msgid "Out of stock"
17700
+ #~ msgstr "Stoc epuizat"
17701
+
17702
+ #~ msgid "Available on backorder"
17703
+ #~ msgstr "Disponibil pentru precomandă"
17704
+
17705
+ #~ msgid "%s in stock"
17706
+ #~ msgstr "%s în stoc"
17707
+
17708
+ #~ msgid "(can be backordered)"
17709
+ #~ msgstr "(poate fi comandat în așteptare)"
17710
+
17711
+ #~ msgid "Only %s left in stock"
17712
+ #~ msgstr "Doar %s rămase în stoc"
17713
+
17714
+ #~ msgid "In stock"
17715
+ #~ msgstr "În stoc"
17716
+
17717
+ #~ msgid "Read more"
17718
+ #~ msgstr "Citește mai mult"
17719
+
17720
+ #~ msgid "Add to cart"
17721
+ #~ msgstr "Adaugă în coș"
17722
+
17723
+ #~ msgid "CVC"
17724
+ #~ msgstr "CVC"
17725
+
17726
+ #~ msgid "Card code"
17727
+ #~ msgstr "Cod card"
17728
+
17729
+ #~ msgid "MM / YY"
17730
+ #~ msgstr "LL / AA"
17731
+
17732
+ #~ msgid "Expiry (MM/YY)"
17733
+ #~ msgstr "Expirare (LL/AA)"
17734
+
17735
+ #~ msgid "Card number"
17736
+ #~ msgstr "Număr card"
17737
+
17738
+ #~ msgid "Order status changed from %1$s to %2$s."
17739
+ #~ msgstr "Starea comenzii s-a modificat de la %1$s la %2$s."
17740
+
17741
+ #~ msgid "WooCommerce"
17742
+ #~ msgstr "WooCommerce"
17743
+
17744
+ #~ msgid "Download"
17745
+ #~ msgstr "Descarcă"
17746
+
17747
+ #~ msgid "Download %d"
17748
+ #~ msgstr "Descarcă %d"
17749
+
17750
+ #~ msgid "Total:"
17751
+ #~ msgstr "Total:"
17752
+
17753
+ #~ msgid "Payment method:"
17754
+ #~ msgstr "Metodă de plată:"
17755
+
17756
+ #~ msgid "Fee"
17757
+ #~ msgstr "Taxă"
17758
+
17759
+ #~ msgid "Shipping:"
17760
+ #~ msgstr "Transport:"
17761
+
17762
+ #~ msgid "Discount:"
17763
+ #~ msgstr "Reducere:"
17764
+
17765
+ #~ msgid "Subtotal:"
17766
+ #~ msgstr "Subtotal:"
17767
+
17768
+ #~ msgid "Free!"
17769
+ #~ msgstr "Gratis!"
17770
+
17771
+ #~ msgctxt "full name"
17772
+ #~ msgid "%1$s %2$s"
17773
+ #~ msgstr "%1$s %2$s"
17774
+
17775
+ #~ msgid "Western Cape"
17776
+ #~ msgstr "Western Cape"
17777
+
17778
+ #~ msgid "North West"
17779
+ #~ msgstr "North West"
17780
+
17781
+ #~ msgid "Northern Cape"
17782
+ #~ msgstr "Northern Cape"
17783
+
17784
+ #~ msgid "Mpumalanga"
17785
+ #~ msgstr "Mpumalanga"
17786
+
17787
+ #~ msgid "Limpopo"
17788
+ #~ msgstr "Limpopo"
17789
+
17790
+ #~ msgid "KwaZulu-Natal"
17791
+ #~ msgstr "KwaZulu-Natal"
17792
+
17793
+ #~ msgid "Gauteng"
17794
+ #~ msgstr "Gauteng"
17795
+
17796
+ #~ msgid "Free State"
17797
+ #~ msgstr "Free State"
17798
+
17799
+ #~ msgid "Eastern Cape"
17800
+ #~ msgstr "Eastern Cape"
17801
+
17802
+ #~ msgid "Puerto Rico"
17803
+ #~ msgstr "Porto Rico"
17804
+
17805
+ #~ msgid "Northern Mariana Islands"
17806
+ #~ msgstr "Comunitatea Insulelor Mariane de Nord"
17807
+
17808
+ #~ msgid "Guam"
17809
+ #~ msgstr "Guam"
17810
+
17811
+ #~ msgid "American Samoa"
17812
+ #~ msgstr "Samoa Americană"
17813
+
17814
+ #~ msgid "Armed Forces (AP)"
17815
+ #~ msgstr "SUA, Forțele Armate"
17816
+
17817
+ #~ msgid "Armed Forces (AE)"
17818
+ #~ msgstr "SUA, Forțele Armate"
17819
+
17820
+ #~ msgid "Armed Forces (AA)"
17821
+ #~ msgstr "SUA, Forțele Armate"
17822
+
17823
+ #~ msgid "Wyoming"
17824
+ #~ msgstr "Wyoming"
17825
+
17826
+ #~ msgid "Wisconsin"
17827
+ #~ msgstr "Wisconsin"
17828
+
17829
+ #~ msgid "West Virginia"
17830
+ #~ msgstr "West Virginia"
17831
+
17832
+ #~ msgid "Washington"
17833
+ #~ msgstr "Washington"
17834
+
17835
+ #~ msgid "Virginia"
17836
+ #~ msgstr "Virginia"
17837
+
17838
+ #~ msgid "Vermont"
17839
+ #~ msgstr "Vermont"
17840
+
17841
+ #~ msgid "Utah"
17842
+ #~ msgstr "Utah"
17843
+
17844
+ #~ msgid "Texas"
17845
+ #~ msgstr "Texas"
17846
+
17847
+ #~ msgid "Tennessee"
17848
+ #~ msgstr "Tennessee"
17849
+
17850
+ #~ msgid "South Dakota"
17851
+ #~ msgstr "South Dakota"
17852
+
17853
+ #~ msgid "South Carolina"
17854
+ #~ msgstr "South Carolina"
17855
+
17856
+ #~ msgid "Rhode Island"
17857
+ #~ msgstr "Rhode Island"
17858
+
17859
+ #~ msgid "Pennsylvania"
17860
+ #~ msgstr "Pennsylvania"
17861
+
17862
+ #~ msgid "Oregon"
17863
+ #~ msgstr "Oregon"
17864
+
17865
+ #~ msgid "Oklahoma"
17866
+ #~ msgstr "Oklahoma"
17867
+
17868
+ #~ msgid "Ohio"
17869
+ #~ msgstr "Ohio"
17870
+
17871
+ #~ msgid "North Dakota"
17872
+ #~ msgstr "North Dakota"
17873
+
17874
+ #~ msgid "North Carolina"
17875
+ #~ msgstr "North Carolina"
17876
+
17877
+ #~ msgid "New York"
17878
+ #~ msgstr "New York"
17879
+
17880
+ #~ msgid "New Mexico"
17881
+ #~ msgstr "New Mexico"
17882
+
17883
+ #~ msgid "New Jersey"
17884
+ #~ msgstr "New Jersey"
17885
+
17886
+ #~ msgid "New Hampshire"
17887
+ #~ msgstr "New Hampshire"
17888
+
17889
+ #~ msgid "Nevada"
17890
+ #~ msgstr "Nebraska"
17891
+
17892
+ #~ msgid "Nebraska"
17893
+ #~ msgstr "Nebraska"
17894
+
17895
+ #~ msgid "Missouri"
17896
+ #~ msgstr "Missouri"
17897
+
17898
+ #~ msgid "Mississippi"
17899
+ #~ msgstr "Mississippi"
17900
+
17901
+ #~ msgid "Minnesota"
17902
+ #~ msgstr "Minnesota"
17903
+
17904
+ #~ msgid "Michigan"
17905
+ #~ msgstr "Michigan"
17906
+
17907
+ #~ msgid "Massachusetts"
17908
+ #~ msgstr "Massachusetts"
17909
+
17910
+ #~ msgid "Maryland"
17911
+ #~ msgstr "Maryland"
17912
+
17913
+ #~ msgid "Maine"
17914
+ #~ msgstr "Maine"
17915
+
17916
+ #~ msgid "Louisiana"
17917
+ #~ msgstr "Louisiana"
17918
+
17919
+ #~ msgid "Kentucky"
17920
+ #~ msgstr "Kentucky"
17921
+
17922
+ #~ msgid "Kansas"
17923
+ #~ msgstr "Kansas"
17924
+
17925
+ #~ msgid "Iowa"
17926
+ #~ msgstr "Iowa"
17927
+
17928
+ #~ msgid "Indiana"
17929
+ #~ msgstr "Indiana"
17930
+
17931
+ #~ msgid "Illinois"
17932
+ #~ msgstr "Illinois"
17933
+
17934
+ #~ msgid "Idaho"
17935
+ #~ msgstr "Idaho"
17936
+
17937
+ #~ msgid "Hawaii"
17938
+ #~ msgstr "Hawaii"
17939
+
17940
+ #~ msgctxt "US state of Georgia"
17941
+ #~ msgid "Georgia"
17942
+ #~ msgstr "Georgia"
17943
+
17944
+ #~ msgid "Florida"
17945
+ #~ msgstr "Florida"
17946
+
17947
+ #~ msgid "District Of Columbia"
17948
+ #~ msgstr "District Of Columbia"
17949
+
17950
+ #~ msgid "Delaware"
17951
+ #~ msgstr "Delaware"
17952
+
17953
+ #~ msgid "Connecticut"
17954
+ #~ msgstr "Connecticut"
17955
+
17956
+ #~ msgid "California"
17957
+ #~ msgstr "California"
17958
+
17959
+ #~ msgid "Arkansas"
17960
+ #~ msgstr "Arkansas"
17961
+
17962
+ #~ msgid "Arizona"
17963
+ #~ msgstr "Arizona"
17964
+
17965
+ #~ msgid "Alaska"
17966
+ #~ msgstr "Alaska"
17967
+
17968
+ #~ msgid "Alabama"
17969
+ #~ msgstr "Alabama"
17970
+
17971
+ #~ msgid "D&#252;zce"
17972
+ #~ msgstr "D&#252;zce"
17973
+
17974
+ #~ msgid "Osmaniye"
17975
+ #~ msgstr "Osmaniye"
17976
+
17977
+ #~ msgid "Kilis"
17978
+ #~ msgstr "Kilis"
17979
+
17980
+ #~ msgid "Karab&#252;k"
17981
+ #~ msgstr "Karab&#252;k"
17982
+
17983
+ #~ msgid "Yalova"
17984
+ #~ msgstr "Yalova"
17985
+
17986
+ #~ msgid "I&#287;d&#305;r"
17987
+ #~ msgstr "I&#287;d&#305;r"
17988
+
17989
+ #~ msgid "Ardahan"
17990
+ #~ msgstr "Ardahan"
17991
+
17992
+ #~ msgid "Bart&#305;n"
17993
+ #~ msgstr "Bart&#305;n"
17994
+
17995
+ #~ msgid "&#350;&#305;rnak"
17996
+ #~ msgstr "&#350;&#305;rnak"
17997
+
17998
+ #~ msgid "Batman"
17999
+ #~ msgstr "Batman"
18000
+
18001
+ #~ msgid "K&#305;r&#305;kkale"
18002
+ #~ msgstr "K&#305;r&#305;kkale"
18003
+
18004
+ #~ msgid "Karaman"
18005
+ #~ msgstr "Karaman"
18006
+
18007
+ #~ msgid "Bayburt"
18008
+ #~ msgstr "Bayburt"
18009
+
18010
+ #~ msgid "Aksaray"
18011
+ #~ msgstr "Aksaray"
18012
+
18013
+ #~ msgid "Zonguldak"
18014
+ #~ msgstr "Zonguldak"
18015
+
18016
+ #~ msgid "Yozgat"
18017
+ #~ msgstr "Yozgat"
18018
+
18019
+ #~ msgid "Van"
18020
+ #~ msgstr "Van"
18021
+
18022
+ #~ msgid "U&#351;ak"
18023
+ #~ msgstr "U&#351;ak"
18024
+
18025
+ #~ msgid "&#350;anl&#305;urfa"
18026
+ #~ msgstr "&#350;anl&#305;urfa"
18027
+
18028
+ #~ msgid "Tunceli"
18029
+ #~ msgstr "Tunceli"
18030
+
18031
+ #~ msgid "Trabzon"
18032
+ #~ msgstr "Trabzon"
18033
+
18034
+ #~ msgid "Tokat"
18035
+ #~ msgstr "Tokat"
18036
+
18037
+ #~ msgid "Tekirda&#287;"
18038
+ #~ msgstr "Tekirda&#287;"
18039
+
18040
+ #~ msgid "Sivas"
18041
+ #~ msgstr "Sivas"
18042
+
18043
+ #~ msgid "Sinop"
18044
+ #~ msgstr "Sinop"
18045
+
18046
+ #~ msgid "Siirt"
18047
+ #~ msgstr "Siirt"
18048
+
18049
+ #~ msgid "Samsun"
18050
+ #~ msgstr "Samsun"
18051
+
18052
+ #~ msgid "Sakarya"
18053
+ #~ msgstr "Sakarya"
18054
+
18055
+ #~ msgid "Rize"
18056
+ #~ msgstr "Rize"
18057
+
18058
+ #~ msgid "Ordu"
18059
+ #~ msgstr "Ordu"
18060
+
18061
+ #~ msgid "Ni&#287;de"
18062
+ #~ msgstr "Ni&#287;de"
18063
+
18064
+ #~ msgid "Nev&#351;ehir"
18065
+ #~ msgstr "Nev&#351;ehir"
18066
+
18067
+ #~ msgid "Mu&#351;"
18068
+ #~ msgstr "Mu&#351;"
18069
+
18070
+ #~ msgid "Mu&#287;la"
18071
+ #~ msgstr "Mu&#287;la"
18072
+
18073
+ #~ msgid "Mardin"
18074
+ #~ msgstr "Mardin"
18075
+
18076
+ #~ msgid "Kahramanmara&#351;"
18077
+ #~ msgstr "Kahramanmara&#351;"
18078
+
18079
+ #~ msgid "Manisa"
18080
+ #~ msgstr "Manisa"
18081
+
18082
+ #~ msgid "Malatya"
18083
+ #~ msgstr "Malatya"
18084
+
18085
+ #~ msgid "K&#252;tahya"
18086
+ #~ msgstr "K&#252;tahya"
18087
+
18088
+ #~ msgid "Konya"
18089
+ #~ msgstr "Konya"
18090
+
18091
+ #~ msgid "Kocaeli"
18092
+ #~ msgstr "Kocaeli"
18093
+
18094
+ #~ msgid "K&#305;r&#351;ehir"
18095
+ #~ msgstr "K&#305;r&#351;ehir"
18096
+
18097
+ #~ msgid "K&#305;rklareli"
18098
+ #~ msgstr "K&#305;rklareli"
18099
+
18100
+ #~ msgid "Kayseri"
18101
+ #~ msgstr "Kayseri"
18102
+
18103
+ #~ msgid "Kastamonu"
18104
+ #~ msgstr "Kastamonu"
18105
+
18106
+ #~ msgid "Kars"
18107
+ #~ msgstr "Kars"
18108
+
18109
+ #~ msgid "&#304;zmir"
18110
+ #~ msgstr "&#304;zmir"
18111
+
18112
+ #~ msgid "&#304;stanbul"
18113
+ #~ msgstr "&#304;stanbul"
18114
+
18115
+ #~ msgid "&#304;&#231;el"
18116
+ #~ msgstr "&#304;&#231;el"
18117
+
18118
+ #~ msgid "Isparta"
18119
+ #~ msgstr "Isparta"
18120
+
18121
+ #~ msgid "Hatay"
18122
+ #~ msgstr "Hatay"
18123
+
18124
+ #~ msgid "Hakkari"
18125
+ #~ msgstr "Hakkari"
18126
+
18127
+ #~ msgid "G&#252;m&#252;&#351;hane"
18128
+ #~ msgstr "G&#252;m&#252;&#351;hane"
18129
+
18130
+ #~ msgid "Giresun"
18131
+ #~ msgstr "Giresun"
18132
+
18133
+ #~ msgid "Gaziantep"
18134
+ #~ msgstr "Gaziantep"
18135
+
18136
+ #~ msgid "Eski&#351;ehir"
18137
+ #~ msgstr "Eski&#351;ehir"
18138
+
18139
+ #~ msgid "Erzurum"
18140
+ #~ msgstr "Erzurum"
18141
+
18142
+ #~ msgid "Erzincan"
18143
+ #~ msgstr "Erzincan"
18144
+
18145
+ #~ msgid "Elaz&#305;&#287;"
18146
+ #~ msgstr "Elaz&#305;&#287;"
18147
+
18148
+ #~ msgid "Edirne"
18149
+ #~ msgstr "Edirne"
18150
+
18151
+ #~ msgid "Diyarbak&#305;r"
18152
+ #~ msgstr "Diyarbak&#305;r"
18153
+
18154
+ #~ msgid "Denizli"
18155
+ #~ msgstr "Denizli"
18156
+
18157
+ #~ msgid "&#199;orum"
18158
+ #~ msgstr "&#199;orum"
18159
+
18160
+ #~ msgid "&#199;ank&#305;r&#305;"
18161
+ #~ msgstr "&#199;ank&#305;r&#305;"
18162
+
18163
+ #~ msgid "&#199;anakkale"
18164
+ #~ msgstr "&#199;anakkale"
18165
+
18166
+ #~ msgid "Bursa"
18167
+ #~ msgstr "Bursa"
18168
+
18169
+ #~ msgid "Burdur"
18170
+ #~ msgstr "Burdur"
18171
+
18172
+ #~ msgid "Bolu"
18173
+ #~ msgstr "Bolu"
18174
+
18175
+ #~ msgid "Bitlis"
18176
+ #~ msgstr "Bitlis"
18177
+
18178
+ #~ msgid "Bing&#246;l"
18179
+ #~ msgstr "Bing&#246;l"
18180
+
18181
+ #~ msgid "Bilecik"
18182
+ #~ msgstr "Bilecik"
18183
+
18184
+ #~ msgid "Bal&#305;kesir"
18185
+ #~ msgstr "Bal&#305;kesir"
18186
+
18187
+ #~ msgid "Ayd&#305;n"
18188
+ #~ msgstr "Ayd&#305;n"
18189
+
18190
+ #~ msgid "Artvin"
18191
+ #~ msgstr "Artvin"
18192
+
18193
+ #~ msgid "Antalya"
18194
+ #~ msgstr "Antalya"
18195
+
18196
+ #~ msgid "Ankara"
18197
+ #~ msgstr "Ankara"
18198
+
18199
+ #~ msgid "Amasya"
18200
+ #~ msgstr "Amasya"
18201
+
18202
+ #~ msgid "A&#287;r&#305;"
18203
+ #~ msgstr "A&#287;r&#305;"
18204
+
18205
+ #~ msgid "Afyon"
18206
+ #~ msgstr "Afyon"
18207
+
18208
+ #~ msgid "Ad&#305;yaman"
18209
+ #~ msgstr "Ad&#305;yaman"
18210
+
18211
+ #~ msgid "Adana"
18212
+ #~ msgstr "Adana"
18213
+
18214
+ #~ msgid "Metro Manila"
18215
+ #~ msgstr "Metro Manila"
18216
+
18217
+ #~ msgid "Zamboanga Sibugay"
18218
+ #~ msgstr "Zamboanga Sibugay"
18219
+
18220
+ #~ msgid "Zamboanga del Sur"
18221
+ #~ msgstr "Zamboanga del Sur"
18222
+
18223
+ #~ msgid "Zamboanga del Norte"
18224
+ #~ msgstr "Zamboanga del Norte"
18225
+
18226
+ #~ msgid "Zambales"
18227
+ #~ msgstr "Zambales"
18228
+
18229
+ #~ msgid "Tawi-Tawi"
18230
+ #~ msgstr "Tawi-Tawi"
18231
+
18232
+ #~ msgid "Tarlac"
18233
+ #~ msgstr "Tarlac"
18234
+
18235
+ #~ msgid "Surigao del Sur"
18236
+ #~ msgstr "Surigao del Sur"
18237
+
18238
+ #~ msgid "Surigao del Norte"
18239
+ #~ msgstr "Surigao del Norte"
18240
+
18241
+ #~ msgid "Sulu"
18242
+ #~ msgstr "Sulu"
18243
+
18244
+ #~ msgid "Sultan Kudarat"
18245
+ #~ msgstr "Sultan Kudarat"
18246
+
18247
+ #~ msgid "Southern Leyte"
18248
+ #~ msgstr "Southern Leyte"
18249
+
18250
+ #~ msgid "South Cotabato"
18251
+ #~ msgstr "South Cotabato"
18252
+
18253
+ #~ msgid "Sorsogon"
18254
+ #~ msgstr "Sorsogon"
18255
+
18256
+ #~ msgid "Siquijor"
18257
+ #~ msgstr "Siquijor"
18258
+
18259
+ #~ msgid "Sarangani"
18260
+ #~ msgstr "Sarangani"
18261
+
18262
+ #~ msgid "Samar"
18263
+ #~ msgstr "Samar"
18264
+
18265
+ #~ msgid "Romblon"
18266
+ #~ msgstr "Romblon"
18267
+
18268
+ #~ msgid "Rizal"
18269
+ #~ msgstr "Rizal"
18270
+
18271
+ #~ msgid "Quirino"
18272
+ #~ msgstr "Quirino"
18273
+
18274
+ #~ msgid "Quezon"
18275
+ #~ msgstr "Quezon"
18276
+
18277
+ #~ msgid "Pangasinan"
18278
+ #~ msgstr "Pangasinan"
18279
+
18280
+ #~ msgid "Pampanga"
18281
+ #~ msgstr "Pampanga"
18282
+
18283
+ #~ msgid "Palawan"
18284
+ #~ msgstr "Palawan"
18285
+
18286
+ #~ msgid "Oriental Mindoro"
18287
+ #~ msgstr "Oriental Mindoro"
18288
+
18289
+ #~ msgid "Occidental Mindoro"
18290
+ #~ msgstr "Occidental Mindoro"
18291
+
18292
+ #~ msgid "Nueva Vizcaya"
18293
+ #~ msgstr "Nueva Vizcaya"
18294
+
18295
+ #~ msgid "Nueva Ecija"
18296
+ #~ msgstr "Nueva Ecija"
18297
+
18298
+ #~ msgid "Northern Samar"
18299
+ #~ msgstr "Northern Samar"
18300
+
18301
+ #~ msgid "Negros Oriental"
18302
+ #~ msgstr "Negros Oriental"
18303
+
18304
+ #~ msgid "Negros Occidental"
18305
+ #~ msgstr "Negros Occidental"
18306
+
18307
+ #~ msgid "Mountain Province"
18308
+ #~ msgstr "Mountain Province"
18309
+
18310
+ #~ msgid "Misamis Oriental"
18311
+ #~ msgstr "Misamis Oriental"
18312
+
18313
+ #~ msgid "Misamis Occidental"
18314
+ #~ msgstr "Misamis Occidental"
18315
+
18316
+ #~ msgid "Masbate"
18317
+ #~ msgstr "Masbate"
18318
+
18319
+ #~ msgid "Marinduque"
18320
+ #~ msgstr "Marinduque"
18321
+
18322
+ #~ msgid "Maguindanao"
18323
+ #~ msgstr "Maguindanao"
18324
+
18325
+ #~ msgid "Leyte"
18326
+ #~ msgstr "Leyte"
18327
+
18328
+ #~ msgid "Lanao del Sur"
18329
+ #~ msgstr "Lanao del Sur"
18330
+
18331
+ #~ msgid "Lanao del Norte"
18332
+ #~ msgstr "Lanao del Norte"
18333
+
18334
+ #~ msgid "Laguna"
18335
+ #~ msgstr "Laguna"
18336
+
18337
+ #~ msgid "La Union"
18338
+ #~ msgstr "La Union"
18339
+
18340
+ #~ msgid "Kalinga"
18341
+ #~ msgstr "Kalinga"
18342
+
18343
+ #~ msgid "Isabela"
18344
+ #~ msgstr "Isabela"
18345
+
18346
+ #~ msgid "Iloilo"
18347
+ #~ msgstr "Iloilo"
18348
+
18349
+ #~ msgid "Ilocos Sur"
18350
+ #~ msgstr "Ilocos Sur"
18351
+
18352
+ #~ msgid "Ilocos Norte"
18353
+ #~ msgstr "Ilocos Norte"
18354
+
18355
+ #~ msgid "Ifugao"
18356
+ #~ msgstr "Ifugao"
18357
+
18358
+ #~ msgid "Guimaras"
18359
+ #~ msgstr "Guimaras"
18360
+
18361
+ #~ msgid "Eastern Samar"
18362
+ #~ msgstr "Eastern Samar"
18363
+
18364
+ #~ msgid "Dinagat Islands"
18365
+ #~ msgstr "Dinagat Islands"
18366
+
18367
+ #~ msgid "Davao Oriental"
18368
+ #~ msgstr "Davao Oriental"
18369
+
18370
+ #~ msgid "Davao Occidental"
18371
+ #~ msgstr "Davao Occidental"
18372
+
18373
+ #~ msgid "Davao del Sur"
18374
+ #~ msgstr "Davao del Sur"
18375
+
18376
+ #~ msgid "Davao del Norte"
18377
+ #~ msgstr "Davao del Norte"
18378
+
18379
+ #~ msgid "Cotabato"
18380
+ #~ msgstr "Cotabato"
18381
+
18382
+ #~ msgid "Compostela Valley"
18383
+ #~ msgstr "Compostela Valley"
18384
+
18385
+ #~ msgid "Cebu"
18386
+ #~ msgstr "Cebu"
18387
+
18388
+ #~ msgid "Cavite"
18389
+ #~ msgstr "Cavite"
18390
+
18391
+ #~ msgid "Catanduanes"
18392
+ #~ msgstr "Catanduanes"
18393
+
18394
+ #~ msgid "Camiguin"
18395
+ #~ msgstr "Camiguin"
18396
+
18397
+ #~ msgid "Camarines Sur"
18398
+ #~ msgstr "Camarines Sur"
18399
+
18400
+ #~ msgid "Camarines Norte"
18401
+ #~ msgstr "Camarines Norte"
18402
+
18403
+ #~ msgid "Cagayan"
18404
+ #~ msgstr "Cagayan"
18405
+
18406
+ #~ msgid "Bulacan"
18407
+ #~ msgstr "Bulacan"
18408
+
18409
+ #~ msgid "Bukidnon"
18410
+ #~ msgstr "Bukidnon"
18411
+
18412
+ #~ msgid "Bohol"
18413
+ #~ msgstr "Bohol"
18414
+
18415
+ #~ msgid "Biliran"
18416
+ #~ msgstr "Biliran"
18417
+
18418
+ #~ msgid "Benguet"
18419
+ #~ msgstr "Benguet"
18420
+
18421
+ #~ msgid "Batangas"
18422
+ #~ msgstr "Batangas"
18423
+
18424
+ #~ msgid "Batanes"
18425
+ #~ msgstr "Batanes"
18426
+
18427
+ #~ msgid "Bataan"
18428
+ #~ msgstr "Bataan"
18429
+
18430
+ #~ msgid "Basilan"
18431
+ #~ msgstr "Basilan"
18432
+
18433
+ #~ msgid "Aurora"
18434
+ #~ msgstr "Aurora"
18435
+
18436
+ #~ msgid "Apayao"
18437
+ #~ msgstr "Apayao"
18438
+
18439
+ #~ msgid "Antique"
18440
+ #~ msgstr "Antique"
18441
+
18442
+ #~ msgid "Albay"
18443
+ #~ msgstr "Albay"
18444
+
18445
+ #~ msgid "Aklan"
18446
+ #~ msgstr "Aklan"
18447
+
18448
+ #~ msgid "Agusan del Sur"
18449
+ #~ msgstr "Agusan del Sur"
18450
+
18451
+ #~ msgid "Agusan del Norte"
18452
+ #~ msgstr "Agusan del Norte"
18453
+
18454
+ #~ msgid "Abra"
18455
+ #~ msgstr "Abra"
18456
+
18457
+ #~ msgid "Ucayali"
18458
+ #~ msgstr "Ucayali"
18459
+
18460
+ #~ msgid "Tumbes"
18461
+ #~ msgstr "Tumbes"
18462
+
18463
+ #~ msgid "Tacna"
18464
+ #~ msgstr "Tacna"
18465
+
18466
+ #~ msgid "San Mart&iacute;n"
18467
+ #~ msgstr "San Mart&iacute;n"
18468
+
18469
+ #~ msgid "Puno"
18470
+ #~ msgstr "Puno"
18471
+
18472
+ #~ msgid "Piura"
18473
+ #~ msgstr "Piura"
18474
+
18475
+ #~ msgid "Pasco"
18476
+ #~ msgstr "Pasco"
18477
+
18478
+ #~ msgid "Moquegua"
18479
+ #~ msgstr "Moquegua"
18480
+
18481
+ #~ msgid "Madre de Dios"
18482
+ #~ msgstr "Madre de Dios"
18483
+
18484
+ #~ msgid "Loreto"
18485
+ #~ msgstr "Loreto"
18486
+
18487
+ #~ msgid "Lima"
18488
+ #~ msgstr "Lima"
18489
+
18490
+ #~ msgid "Lambayeque"
18491
+ #~ msgstr "Lambayeque"
18492
+
18493
+ #~ msgid "La Libertad"
18494
+ #~ msgstr "La Libertad"
18495
+
18496
+ #~ msgid "Jun&iacute;n"
18497
+ #~ msgstr "Jun&iacute;n"
18498
+
18499
+ #~ msgid "Ica"
18500
+ #~ msgstr "Ica"
18501
+
18502
+ #~ msgid "Hu&aacute;nuco"
18503
+ #~ msgstr "Hu&aacute;nuco"
18504
+
18505
+ #~ msgid "Huancavelica"
18506
+ #~ msgstr "Huancavelica"
18507
+
18508
+ #~ msgid "Cusco"
18509
+ #~ msgstr "Cusco"
18510
+
18511
+ #~ msgid "Cajamarca"
18512
+ #~ msgstr "Cajamarca"
18513
+
18514
+ #~ msgid "Ayacucho"
18515
+ #~ msgstr "Ayacucho"
18516
+
18517
+ #~ msgid "Arequipa"
18518
+ #~ msgstr "Arequipa"
18519
+
18520
+ #~ msgid "Apur&iacute;mac"
18521
+ #~ msgstr "Apur&iacute;mac"
18522
+
18523
+ #~ msgid "Ancash"
18524
+ #~ msgstr "Ancash"
18525
+
18526
+ #~ msgid "Municipalidad Metropolitana de Lima"
18527
+ #~ msgstr "Municipalidad Metropolitana de Lima"
18528
+
18529
+ #~ msgid "El Callao"
18530
+ #~ msgstr "El Callao"
18531
+
18532
+ #~ msgid "Southland"
18533
+ #~ msgstr "Southland"
18534
+
18535
+ #~ msgid "Otago"
18536
+ #~ msgstr "Otago"
18537
+
18538
+ #~ msgid "Canterbury"
18539
+ #~ msgstr "Canterbury"
18540
+
18541
+ #~ msgid "West Coast"
18542
+ #~ msgstr "West Coast"
18543
+
18544
+ #~ msgid "Tasman"
18545
+ #~ msgstr "Tasman"
18546
+
18547
+ #~ msgid "Marlborough"
18548
+ #~ msgstr "Marlborough"
18549
+
18550
+ #~ msgid "Nelson"
18551
+ #~ msgstr "Nelson"
18552
+
18553
+ #~ msgid "Wellington"
18554
+ #~ msgstr "Wellington"
18555
+
18556
+ #~ msgid "Manawatu-Wanganui"
18557
+ #~ msgstr "Manawatu-Wanganui"
18558
+
18559
+ #~ msgid "Hawke&rsquo;s Bay"
18560
+ #~ msgstr "Hawke&rsquo;s Bay"
18561
+
18562
+ #~ msgid "Gisborne"
18563
+ #~ msgstr "Gisborne"
18564
+
18565
+ #~ msgid "Taranaki"
18566
+ #~ msgstr "Taranaki"
18567
+
18568
+ #~ msgid "Bay of Plenty"
18569
+ #~ msgstr "Bay of Plenty"
18570
+
18571
+ #~ msgid "Waikato"
18572
+ #~ msgstr "Waikato"
18573
+
18574
+ #~ msgid "Auckland"
18575
+ #~ msgstr "Auckland"
18576
+
18577
+ #~ msgid "Northland"
18578
+ #~ msgstr "Northland"
18579
+
18580
+ #~ msgid "Huíla"
18581
+ #~ msgstr "Huíla"
18582
+
18583
+ #~ msgid "Terengganu"
18584
+ #~ msgstr "Terengganu"
18585
+
18586
+ #~ msgid "Selangor"
18587
+ #~ msgstr "Selangor"
18588
+
18589
+ #~ msgid "Sarawak"
18590
+ #~ msgstr "Sarawak"
18591
+
18592
+ #~ msgid "Sabah"
18593
+ #~ msgstr "Sabah"
18594
+
18595
+ #~ msgid "Perlis"
18596
+ #~ msgstr "Perlis"
18597
+
18598
+ #~ msgid "Perak"
18599
+ #~ msgstr "Perak"
18600
+
18601
+ #~ msgid "Pahang"
18602
+ #~ msgstr "Pahang"
18603
+
18604
+ #~ msgid "Negeri Sembilan"
18605
+ #~ msgstr "Negeri Sembilan"
18606
+
18607
+ #~ msgid "Kelantan"
18608
+ #~ msgstr "Kelantan"
18609
+
18610
+ #~ msgid "Kedah"
18611
+ #~ msgstr "Kedah"
18612
+
18613
+ #~ msgid "Johor"
18614
+ #~ msgstr "Johor"
18615
+
18616
+ #~ msgid "Zacatecas"
18617
+ #~ msgstr "Zacatecas"
18618
+
18619
+ #~ msgid "Veracruz"
18620
+ #~ msgstr "Veracruz"
18621
+
18622
+ #~ msgid "Tlaxcala"
18623
+ #~ msgstr "Tlaxcala"
18624
+
18625
+ #~ msgid "Tamaulipas"
18626
+ #~ msgstr "Tamaulipas"
18627
+
18628
+ #~ msgid "Tabasco"
18629
+ #~ msgstr "Tabasco"
18630
+
18631
+ #~ msgid "Sonora"
18632
+ #~ msgstr "Sonora"
18633
+
18634
+ #~ msgid "Sinaloa"
18635
+ #~ msgstr "Sinaloa"
18636
+
18637
+ #~ msgid "Quintana Roo"
18638
+ #~ msgstr "Quintana Roo"
18639
+
18640
+ #~ msgid "Puebla"
18641
+ #~ msgstr "Puebla"
18642
+
18643
+ #~ msgid "Oaxaca"
18644
+ #~ msgstr "Oaxaca"
18645
+
18646
+ #~ msgid "Nayarit"
18647
+ #~ msgstr "Nayarit"
18648
+
18649
+ #~ msgid "Morelos"
18650
+ #~ msgstr "Morelos"
18651
+
18652
+ #~ msgid "Hidalgo"
18653
+ #~ msgstr "Hidalgo"
18654
+
18655
+ #~ msgid "Guerrero"
18656
+ #~ msgstr "Guerrero"
18657
+
18658
+ #~ msgid "Guanajuato"
18659
+ #~ msgstr "Guanajuato"
18660
+
18661
+ #~ msgid "Durango"
18662
+ #~ msgstr "Durango"
18663
+
18664
+ #~ msgid "Colima"
18665
+ #~ msgstr "Colima"
18666
+
18667
+ #~ msgid "Coahuila"
18668
+ #~ msgstr "Coahuila"
18669
+
18670
+ #~ msgid "Chihuahua"
18671
+ #~ msgstr "Chihuahua"
18672
+
18673
+ #~ msgid "Chiapas"
18674
+ #~ msgstr "Chiapas"
18675
+
18676
+ #~ msgid "Campeche"
18677
+ #~ msgstr "Campeche"
18678
+
18679
+ #~ msgid "Baja California Sur"
18680
+ #~ msgstr "Baja California Sur"
18681
+
18682
+ #~ msgid "Baja California"
18683
+ #~ msgstr "Baja California"
18684
+
18685
+ #~ msgid "Aguascalientes"
18686
+ #~ msgstr "Aguascalientes"
18687
+
18688
+ #~ msgid "Jalisco"
18689
+ #~ msgstr "Jalisco"
18690
+
18691
+ #~ msgid "Okinawa"
18692
+ #~ msgstr "Okinawa"
18693
+
18694
+ #~ msgid "Kagoshima"
18695
+ #~ msgstr "Kagoshima"
18696
+
18697
+ #~ msgid "Miyazaki"
18698
+ #~ msgstr "Miyazaki"
18699
+
18700
+ #~ msgid "Oita"
18701
+ #~ msgstr "Oita"
18702
+
18703
+ #~ msgid "Kumamoto"
18704
+ #~ msgstr "Kumamoto"
18705
+
18706
+ #~ msgid "Nagasaki"
18707
+ #~ msgstr "Nagasaki"
18708
+
18709
+ #~ msgid "Saga"
18710
+ #~ msgstr "Saga"
18711
+
18712
+ #~ msgid "Fukuoka"
18713
+ #~ msgstr "Fukuoka"
18714
+
18715
+ #~ msgid "Kochi"
18716
+ #~ msgstr "Kochi"
18717
+
18718
+ #~ msgid "Ehime"
18719
+ #~ msgstr "Ehime"
18720
+
18721
+ #~ msgid "Kagawa"
18722
+ #~ msgstr "Kagawa"
18723
+
18724
+ #~ msgid "Tokushima"
18725
+ #~ msgstr "Tokushima"
18726
+
18727
+ #~ msgid "Yamaguchi"
18728
+ #~ msgstr "Yamaguchi"
18729
+
18730
+ #~ msgid "Hiroshima"
18731
+ #~ msgstr "Hiroshima"
18732
+
18733
+ #~ msgid "Okayama"
18734
+ #~ msgstr "Okayama"
18735
+
18736
+ #~ msgid "Shimane"
18737
+ #~ msgstr "Shimane"
18738
+
18739
+ #~ msgid "Tottori"
18740
+ #~ msgstr "Tottori"
18741
+
18742
+ #~ msgid "Wakayama"
18743
+ #~ msgstr "Wakayama"
18744
+
18745
+ #~ msgid "Nara"
18746
+ #~ msgstr "Nara"
18747
+
18748
+ #~ msgid "Hyogo"
18749
+ #~ msgstr "Hyogo"
18750
+
18751
+ #~ msgid "Osaka"
18752
+ #~ msgstr "Osaka"
18753
+
18754
+ #~ msgid "Kyoto"
18755
+ #~ msgstr "Kyoto"
18756
+
18757
+ #~ msgid "Shiga"
18758
+ #~ msgstr "Shiga"
18759
+
18760
+ #~ msgid "Mie"
18761
+ #~ msgstr "Mie"
18762
+
18763
+ #~ msgid "Aichi"
18764
+ #~ msgstr "Aichi"
18765
+
18766
+ #~ msgid "Shizuoka"
18767
+ #~ msgstr "Shizuoka"
18768
+
18769
+ #~ msgid "Gifu"
18770
+ #~ msgstr "Gifu"
18771
+
18772
+ #~ msgid "Nagano"
18773
+ #~ msgstr "Nagano"
18774
+
18775
+ #~ msgid "Yamanashi"
18776
+ #~ msgstr "Yamanashi"
18777
+
18778
+ #~ msgid "Fukui"
18779
+ #~ msgstr "Fukui"
18780
+
18781
+ #~ msgid "Ishikawa"
18782
+ #~ msgstr "Ishikawa"
18783
+
18784
+ #~ msgid "Toyama"
18785
+ #~ msgstr "Toyama"
18786
+
18787
+ #~ msgid "Niigata"
18788
+ #~ msgstr "Niigata"
18789
+
18790
+ #~ msgid "Kanagawa"
18791
+ #~ msgstr "Kanagawa"
18792
+
18793
+ #~ msgid "Tokyo"
18794
+ #~ msgstr "Tokyo"
18795
+
18796
+ #~ msgid "Chiba"
18797
+ #~ msgstr "Chiba"
18798
+
18799
+ #~ msgid "Saitama"
18800
+ #~ msgstr "Saitama"
18801
+
18802
+ #~ msgid "Gunma"
18803
+ #~ msgstr "Gunma"
18804
+
18805
+ #~ msgid "Tochigi"
18806
+ #~ msgstr "Tochigi"
18807
+
18808
+ #~ msgid "Ibaraki"
18809
+ #~ msgstr "Ibaraki"
18810
+
18811
+ #~ msgid "Fukushima"
18812
+ #~ msgstr "Fukushima"
18813
+
18814
+ #~ msgid "Yamagata"
18815
+ #~ msgstr "Yamagata"
18816
+
18817
+ #~ msgid "Akita"
18818
+ #~ msgstr "Akita"
18819
+
18820
+ #~ msgid "Miyagi"
18821
+ #~ msgstr "Miyagi"
18822
+
18823
+ #~ msgid "Iwate"
18824
+ #~ msgstr "Iwate"
18825
+
18826
+ #~ msgid "Aomori"
18827
+ #~ msgstr "Aomori"
18828
+
18829
+ #~ msgid "Hokkaido"
18830
+ #~ msgstr "Hokkaido"
18831
+
18832
+ #~ msgid "Viterbo"
18833
+ #~ msgstr "Viterbo"
18834
+
18835
+ #~ msgid "Vicenza"
18836
+ #~ msgstr "Vicenza"
18837
+
18838
+ #~ msgid "Vibo Valentia"
18839
+ #~ msgstr "Vibo Valentia"
18840
+
18841
+ #~ msgid "Verona"
18842
+ #~ msgstr "Verona"
18843
+
18844
+ #~ msgid "Vercelli"
18845
+ #~ msgstr "Vercelli"
18846
+
18847
+ #~ msgid "Verbano-Cusio-Ossola"
18848
+ #~ msgstr "Verbano-Cusio-Ossola"
18849
+
18850
+ #~ msgid "Venezia"
18851
+ #~ msgstr "Venezia"
18852
+
18853
+ #~ msgid "Varese"
18854
+ #~ msgstr "Varese"
18855
+
18856
+ #~ msgid "Udine"
18857
+ #~ msgstr "Udine"
18858
+
18859
+ #~ msgid "Trieste"
18860
+ #~ msgstr "Trieste"
18861
+
18862
+ #~ msgid "Treviso"
18863
+ #~ msgstr "Treviso"
18864
+
18865
+ #~ msgid "Trento"
18866
+ #~ msgstr "Trento"
18867
+
18868
+ #~ msgid "Trapani"
18869
+ #~ msgstr "Trapani"
18870
+
18871
+ #~ msgid "Torino"
18872
+ #~ msgstr "Torino"
18873
+
18874
+ #~ msgid "Terni"
18875
+ #~ msgstr "Terni"
18876
+
18877
+ #~ msgid "Teramo"
18878
+ #~ msgstr "Teramo"
18879
+
18880
+ #~ msgid "Taranto"
18881
+ #~ msgstr "Taranto"
18882
+
18883
+ #~ msgid "Sondrio"
18884
+ #~ msgstr "Sondrio"
18885
+
18886
+ #~ msgid "Siracusa"
18887
+ #~ msgstr "Siracusa"
18888
+
18889
+ #~ msgid "Siena"
18890
+ #~ msgstr "Siena"
18891
+
18892
+ #~ msgid "Savona"
18893
+ #~ msgstr "Savona"
18894
+
18895
+ #~ msgid "Sassari"
18896
+ #~ msgstr "Sassari"
18897
+
18898
+ #~ msgid "Salerno"
18899
+ #~ msgstr "Salerno"
18900
+
18901
+ #~ msgid "Rovigo"
18902
+ #~ msgstr "Rovigo"
18903
+
18904
+ #~ msgid "Roma"
18905
+ #~ msgstr "Roma"
18906
+
18907
+ #~ msgid "Rimini"
18908
+ #~ msgstr "Rimini"
18909
+
18910
+ #~ msgid "Rieti"
18911
+ #~ msgstr "Rieti"
18912
+
18913
+ #~ msgid "Reggio Emilia"
18914
+ #~ msgstr "Reggio Emilia"
18915
+
18916
+ #~ msgid "Reggio Calabria"
18917
+ #~ msgstr "Reggio Calabria"
18918
+
18919
+ #~ msgid "Ravenna"
18920
+ #~ msgstr "Ravenna"
18921
+
18922
+ #~ msgid "Ragusa"
18923
+ #~ msgstr "Ragusa"
18924
+
18925
+ #~ msgid "Prato"
18926
+ #~ msgstr "Prato"
18927
+
18928
+ #~ msgid "Potenza"
18929
+ #~ msgstr "Potenza"
18930
+
18931
+ #~ msgid "Pistoia"
18932
+ #~ msgstr "Pistoia"
18933
+
18934
+ #~ msgid "Pisa"
18935
+ #~ msgstr "Pisa"
18936
+
18937
+ #~ msgid "Piacenza"
18938
+ #~ msgstr "Piacenza"
18939
+
18940
+ #~ msgid "Pescara"
18941
+ #~ msgstr "Pescara"
18942
+
18943
+ #~ msgid "Pesaro e Urbino"
18944
+ #~ msgstr "Pesaro e Urbino"
18945
+
18946
+ #~ msgid "Perugia"
18947
+ #~ msgstr "Perugia"
18948
+
18949
+ #~ msgid "Pavia"
18950
+ #~ msgstr "Pavia"
18951
+
18952
+ #~ msgid "Parma"
18953
+ #~ msgstr "Parma"
18954
+
18955
+ #~ msgid "Palermo"
18956
+ #~ msgstr "Palermo"
18957
+
18958
+ #~ msgid "Padova"
18959
+ #~ msgstr "Padova"
18960
+
18961
+ #~ msgid "Oristano"
18962
+ #~ msgstr "Oristano"
18963
+
18964
+ #~ msgid "Nuoro"
18965
+ #~ msgstr "Nuoro"
18966
+
18967
+ #~ msgid "Novara"
18968
+ #~ msgstr "Novara"
18969
+
18970
+ #~ msgid "Napoli"
18971
+ #~ msgstr "Napoli"
18972
+
18973
+ #~ msgid "Monza e della Brianza"
18974
+ #~ msgstr "Monza e della Brianza"
18975
+
18976
+ #~ msgid "Modena"
18977
+ #~ msgstr "Modena"
18978
+
18979
+ #~ msgid "Milano"
18980
+ #~ msgstr "Milano"
18981
+
18982
+ #~ msgid "Messina"
18983
+ #~ msgstr "Messina"
18984
+
18985
+ #~ msgid "Matera"
18986
+ #~ msgstr "Matera"
18987
+
18988
+ #~ msgid "Massa-Carrara"
18989
+ #~ msgstr "Massa-Carrara"
18990
+
18991
+ #~ msgid "Mantova"
18992
+ #~ msgstr "Mantova"
18993
+
18994
+ #~ msgid "Macerata"
18995
+ #~ msgstr "Macerata"
18996
+
18997
+ #~ msgid "Lucca"
18998
+ #~ msgstr "Lucca"
18999
+
19000
+ #~ msgid "Lodi"
19001
+ #~ msgstr "Lodi"
19002
+
19003
+ #~ msgid "Livorno"
19004
+ #~ msgstr "Livorno"
19005
+
19006
+ #~ msgid "Lecco"
19007
+ #~ msgstr "Lecco"
19008
+
19009
+ #~ msgid "Lecce"
19010
+ #~ msgstr "Lecce"
19011
+
19012
+ #~ msgid "Latina"
19013
+ #~ msgstr "Latina"
19014
+
19015
+ #~ msgid "La Spezia"
19016
+ #~ msgstr "La Spezia"
19017
+
19018
+ #~ msgid "Isernia"
19019
+ #~ msgstr "Isernia"
19020
+
19021
+ #~ msgid "Imperia"
19022
+ #~ msgstr "Imperia"
19023
+
19024
+ #~ msgid "Grosseto"
19025
+ #~ msgstr "Grosseto"
19026
+
19027
+ #~ msgid "Gorizia"
19028
+ #~ msgstr "Gorizia"
19029
+
19030
+ #~ msgid "Genova"
19031
+ #~ msgstr "Genova"
19032
+
19033
+ #~ msgid "Frosinone"
19034
+ #~ msgstr "Frosinone"
19035
+
19036
+ #~ msgid "Forlì-Cesena"
19037
+ #~ msgstr "Forlì-Cesena"
19038
+
19039
+ #~ msgid "Foggia"
19040
+ #~ msgstr "Foggia"
19041
+
19042
+ #~ msgid "Firenze"
19043
+ #~ msgstr "Firenze"
19044
+
19045
+ #~ msgid "Ferrara"
19046
+ #~ msgstr "Ferrara"
19047
+
19048
+ #~ msgid "Fermo"
19049
+ #~ msgstr "Fermo"
19050
+
19051
+ #~ msgid "Enna"
19052
+ #~ msgstr "Enna"
19053
+
19054
+ #~ msgid "Cuneo"
19055
+ #~ msgstr "Cuneo"
19056
+
19057
+ #~ msgid "Crotone"
19058
+ #~ msgstr "Crotone"
19059
+
19060
+ #~ msgid "Cremona"
19061
+ #~ msgstr "Cremona"
19062
+
19063
+ #~ msgid "Cosenza"
19064
+ #~ msgstr "Cosenza"
19065
+
19066
+ #~ msgid "Como"
19067
+ #~ msgstr "Como"
19068
+
19069
+ #~ msgid "Chieti"
19070
+ #~ msgstr "Chieti"
19071
+
19072
+ #~ msgid "Catanzaro"
19073
+ #~ msgstr "Catanzaro"
19074
+
19075
+ #~ msgid "Catania"
19076
+ #~ msgstr "Catania"
19077
+
19078
+ #~ msgid "Caserta"
19079
+ #~ msgstr "Caserta"
19080
+
19081
+ #~ msgid "Campobasso"
19082
+ #~ msgstr "Campobasso"
19083
+
19084
+ #~ msgid "Caltanissetta"
19085
+ #~ msgstr "Caltanissetta"
19086
+
19087
+ #~ msgid "Cagliari"
19088
+ #~ msgstr "Cagliari"
19089
+
19090
+ #~ msgid "Brindisi"
19091
+ #~ msgstr "Brindisi"
19092
+
19093
+ #~ msgid "Brescia"
19094
+ #~ msgstr "Brescia"
19095
+
19096
+ #~ msgid "Bolzano"
19097
+ #~ msgstr "Bolzano"
19098
+
19099
+ #~ msgid "Bologna"
19100
+ #~ msgstr "Bologna"
19101
+
19102
+ #~ msgid "Biella"
19103
+ #~ msgstr "Biella"
19104
+
19105
+ #~ msgid "Bergamo"
19106
+ #~ msgstr "Bergamo"
19107
+
19108
+ #~ msgid "Benevento"
19109
+ #~ msgstr "Benevento"
19110
+
19111
+ #~ msgid "Belluno"
19112
+ #~ msgstr "Belluno"
19113
+
19114
+ #~ msgid "Barletta-Andria-Trani"
19115
+ #~ msgstr "Barletta-Andria-Trani"
19116
+
19117
+ #~ msgid "Bari"
19118
+ #~ msgstr "Bari"
19119
+
19120
+ #~ msgid "Avellino"
19121
+ #~ msgstr "Avellino"
19122
+
19123
+ #~ msgid "Asti"
19124
+ #~ msgstr "Asti"
19125
+
19126
+ #~ msgid "Ascoli Piceno"
19127
+ #~ msgstr "Ascoli Piceno"
19128
+
19129
+ #~ msgid "Arezzo"
19130
+ #~ msgstr "Arezzo"
19131
+
19132
+ #~ msgid "Aosta"
19133
+ #~ msgstr "Aosta"
19134
+
19135
+ #~ msgid "Ancona"
19136
+ #~ msgstr "Ancona"
19137
+
19138
+ #~ msgid "Alessandria"
19139
+ #~ msgstr "Alessandria"
19140
+
19141
+ #~ msgid "Agrigento"
19142
+ #~ msgstr "Agrigento"
19143
+
19144
+ #~ msgid "Sistan and Baluchestan (سیستان و بلوچستان)"
19145
+ #~ msgstr "Sistan and Baluchestan (سیستان و بلوچستان)"
19146
+
19147
+ #~ msgid "Hormozgan (هرمزگان)"
19148
+ #~ msgstr "Hormozgan (هرمزگان)"
19149
+
19150
+ #~ msgid "Markazi (مرکزی)"
19151
+ #~ msgstr "Markazi (مرکزی)"
19152
+
19153
+ #~ msgid "Mazandaran (مازندران)"
19154
+ #~ msgstr "Mazandaran (مازندران)"
19155
+
19156
+ #~ msgid "Gilan (گیلان)"
19157
+ #~ msgstr "Gilan (گیلان)"
19158
+
19159
+ #~ msgid "Golestan (گلستان)"
19160
+ #~ msgstr "Golestan (گلستان)"
19161
+
19162
+ #~ msgid "Kohgiluyeh and BoyerAhmad (کهگیلوییه و بویراحمد)"
19163
+ #~ msgstr "Kohgiluyeh and BoyerAhmad (کهگیلوییه و بویراحمد)"
19164
+
19165
+ #~ msgid "Kurdistan / کردستان)"
19166
+ #~ msgstr "Kurdistan / کردستان)"
19167
+
19168
+ #~ msgid "Qom (قم)"
19169
+ #~ msgstr "Qom"
19170
+
19171
+ #~ msgid "Fars (فارس)"
19172
+ #~ msgstr "Fars"
19173
+
19174
+ #~ msgid "Semnan (سمنان)"
19175
+ #~ msgstr "Semnan"
19176
+
19177
+ #~ msgid "North Khorasan (خراسان شمالی)"
19178
+ #~ msgstr "North Khorasan (خراسان شمالی)"
19179
+
19180
+ #~ msgid "Razavi Khorasan (خراسان رضوی)"
19181
+ #~ msgstr "Razavi Khorasan"
19182
+
19183
+ #~ msgid "South Khorasan (خراسان جنوبی)"
19184
+ #~ msgstr "South Khorasan (خراسان جنوبی)"
19185
+
19186
+ #~ msgid "Chaharmahal and Bakhtiari (چهارمحال و بختیاری)"
19187
+ #~ msgstr "Chaharmahal and Bakhtiari (چهارمحال و بختیاری)"
19188
+
19189
+ #~ msgid "West Azarbaijan (آذربایجان غربی)"
19190
+ #~ msgstr "West Azarbaijan (آذربایجان غربی)"
19191
+
19192
+ #~ msgid "East Azarbaijan (آذربایجان شرقی)"
19193
+ #~ msgstr "East Azarbaijan (آذربایجان شرقی)"
19194
+
19195
+ #~ msgid "Alborz (البرز)"
19196
+ #~ msgstr "Alborz (البرز)"
19197
+
19198
+ #~ msgid "Luristan (لرستان)"
19199
+ #~ msgstr "Luristan (لرستان)"
19200
+
19201
+ #~ msgid "Zanjan (زنجان)"
19202
+ #~ msgstr "Zanjan (زنجان)"
19203
+
19204
+ #~ msgid "Ghazvin (قزوین)"
19205
+ #~ msgstr "Ghazvin (قزوین)"
19206
+
19207
+ #~ msgid "Hamadan (همدان)"
19208
+ #~ msgstr "Hamadan (همدان)"
19209
+
19210
+ #~ msgid "Kerman (کرمان)"
19211
+ #~ msgstr "Kerman (کرمان)"
19212
+
19213
+ #~ msgid "Kermanshah (کرمانشاه)"
19214
+ #~ msgstr "Kermanshah (کرمانشاه)"
19215
+
19216
+ #~ msgid "Yazd (یزد)"
19217
+ #~ msgstr "Yazd (یزد)"
19218
+
19219
+ #~ msgid "Isfahan (اصفهان)"
19220
+ #~ msgstr "Isfahan (اصفهان)"
19221
+
19222
+ #~ msgid "Ardabil (اردبیل)"
19223
+ #~ msgstr "Ardabil (اردبیل)"
19224
+
19225
+ #~ msgid "Bushehr (بوشهر)"
19226
+ #~ msgstr "Bushehr (بوشهر)"
19227
+
19228
+ #~ msgid "Ilaam (ایلام)"
19229
+ #~ msgstr "Ilaam (ایلام)"
19230
+
19231
+ #~ msgid "Tehran (تهران)"
19232
+ #~ msgstr "Tehran (تهران)"
19233
+
19234
+ #~ msgid "Khuzestan (خوزستان)"
19235
+ #~ msgstr "Khuzestan (خوزستان)"
19236
+
19237
+ #~ msgid "Pondicherry (Puducherry)"
19238
+ #~ msgstr "Pondicherry (Puducherry)"
19239
+
19240
+ #~ msgid "Lakshadeep"
19241
+ #~ msgstr "Lakshadeep"
19242
+
19243
+ #~ msgid "Delhi"
19244
+ #~ msgstr "Delhi"
19245
+
19246
+ #~ msgid "Daman and Diu"
19247
+ #~ msgstr "Daman and Diu"
19248
+
19249
+ #~ msgid "Dadra and Nagar Haveli"
19250
+ #~ msgstr "Dadar și Nagar Haveli"
19251
+
19252
+ #~ msgid "Chandigarh"
19253
+ #~ msgstr "Chandigarh"
19254
+
19255
+ #~ msgid "Andaman and Nicobar Islands"
19256
+ #~ msgstr "Insulele Andaman și Nicobar"
19257
+
19258
+ #~ msgid "West Bengal"
19259
+ #~ msgstr "Bengalul de Vest"
19260
+
19261
+ #~ msgid "Uttar Pradesh"
19262
+ #~ msgstr "Uttar Pradesh"
19263
+
19264
+ #~ msgid "Uttarakhand"
19265
+ #~ msgstr "Uttarakhand"
19266
+
19267
+ #~ msgid "Tripura"
19268
+ #~ msgstr "Tripura"
19269
+
19270
+ #~ msgid "Telangana"
19271
+ #~ msgstr "Telangana"
19272
+
19273
+ #~ msgid "Tamil Nadu"
19274
+ #~ msgstr "Tamil Nadu"
19275
+
19276
+ #~ msgid "Sikkim"
19277
+ #~ msgstr "Sikkim"
19278
+
19279
+ #~ msgid "Rajasthan"
19280
+ #~ msgstr "Rajasthan"
19281
+
19282
+ #~ msgid "Punjab"
19283
+ #~ msgstr "Punjab"
19284
+
19285
+ #~ msgid "Orissa"
19286
+ #~ msgstr "Orissa"
19287
+
19288
+ #~ msgid "Nagaland"
19289
+ #~ msgstr "Nagaland"
19290
+
19291
+ #~ msgid "Mizoram"
19292
+ #~ msgstr "Mizoram"
19293
+
19294
+ #~ msgid "Meghalaya"
19295
+ #~ msgstr "Meghalaya"
19296
+
19297
+ #~ msgid "Manipur"
19298
+ #~ msgstr "Manipur"
19299
+
19300
+ #~ msgid "Maharashtra"
19301
+ #~ msgstr "Maharashtra"
19302
+
19303
+ #~ msgid "Madhya Pradesh"
19304
+ #~ msgstr "Madhya Pradesh"
19305
+
19306
+ #~ msgid "Kerala"
19307
+ #~ msgstr "Kerala"
19308
+
19309
+ #~ msgid "Karnataka"
19310
+ #~ msgstr "Karnataka"
19311
+
19312
+ #~ msgid "Jharkhand"
19313
+ #~ msgstr "Jharkhand"
19314
+
19315
+ #~ msgid "Jammu and Kashmir"
19316
+ #~ msgstr "Jammu and Kashmir"
19317
+
19318
+ #~ msgid "Himachal Pradesh"
19319
+ #~ msgstr "Himachal Pradesh"
19320
+
19321
+ #~ msgid "Haryana"
19322
+ #~ msgstr "Haryana"
19323
+
19324
+ #~ msgid "Gujarat"
19325
+ #~ msgstr "Gujarat"
19326
+
19327
+ #~ msgid "Goa"
19328
+ #~ msgstr "Goa"
19329
+
19330
+ #~ msgid "Chhattisgarh"
19331
+ #~ msgstr "Chhattisgarh"
19332
+
19333
+ #~ msgid "Bihar"
19334
+ #~ msgstr "Bihar"
19335
+
19336
+ #~ msgid "Assam"
19337
+ #~ msgstr "Assam"
19338
+
19339
+ #~ msgid "Arunachal Pradesh"
19340
+ #~ msgstr "Arunachal Pradesh"
19341
+
19342
+ #~ msgid "Andhra Pradesh"
19343
+ #~ msgstr "Lasi (Andhra Pradesh)"
19344
+
19345
+ #~ msgid "Papua Barat"
19346
+ #~ msgstr "Papua Barat"
19347
+
19348
+ #~ msgid "Papua"
19349
+ #~ msgstr "Papua"
19350
+
19351
+ #~ msgid "Maluku Utara"
19352
+ #~ msgstr "Maluku Utara"
19353
+
19354
+ #~ msgid "Maluku"
19355
+ #~ msgstr "Maluku"
19356
+
19357
+ #~ msgid "Gorontalo"
19358
+ #~ msgstr "Gorontalo"
19359
+
19360
+ #~ msgid "Sulawesi Selatan"
19361
+ #~ msgstr "Sulawesi Selatan"
19362
+
19363
+ #~ msgid "Sulawesi Barat"
19364
+ #~ msgstr "Sulawesi Barat"
19365
+
19366
+ #~ msgid "Sulawesi Tenggara"
19367
+ #~ msgstr "Sulawesi Tenggara"
19368
+
19369
+ #~ msgid "Sulawesi Tengah"
19370
+ #~ msgstr "Sulawesi Tengah"
19371
+
19372
+ #~ msgid "Sulawesi Utara"
19373
+ #~ msgstr "Sulawesi Utara"
19374
+
19375
+ #~ msgid "Kalimantan Utara"
19376
+ #~ msgstr "Kalimantan Utara"
19377
+
19378
+ #~ msgid "Kalimantan Selatan"
19379
+ #~ msgstr "Kalimantan Selatan"
19380
+
19381
+ #~ msgid "Kalimantan Timur"
19382
+ #~ msgstr "Kalimantan Timur"
19383
+
19384
+ #~ msgid "Kalimantan Tengah"
19385
+ #~ msgstr "Kalimantan Tengah"
19386
+
19387
+ #~ msgid "Kalimantan Barat"
19388
+ #~ msgstr "Kalimantan Barat"
19389
+
19390
+ #~ msgid "Nusa Tenggara Timur"
19391
+ #~ msgstr "Nusa Tenggara Timur"
19392
+
19393
+ #~ msgid "Nusa Tenggara Barat"
19394
+ #~ msgstr "Nusa Tenggara Barat"
19395
+
19396
+ #~ msgid "Bali"
19397
+ #~ msgstr "Bali"
19398
+
19399
+ #~ msgid "Daerah Istimewa Yogyakarta"
19400
+ #~ msgstr "Daerah Istimewa Yogyakarta"
19401
+
19402
+ #~ msgid "Jawa Timur"
19403
+ #~ msgstr "Jawa Timur"
19404
+
19405
+ #~ msgid "Jawa Tengah"
19406
+ #~ msgstr "Jawa Tengah"
19407
+
19408
+ #~ msgid "Banten"
19409
+ #~ msgstr "Banten"
19410
+
19411
+ #~ msgid "Jawa Barat"
19412
+ #~ msgstr "Jawa Barat"
19413
+
19414
+ #~ msgid "DKI Jakarta"
19415
+ #~ msgstr "DKI Jakarta"
19416
+
19417
+ #~ msgid "Lampung"
19418
+ #~ msgstr "Lampung"
19419
+
19420
+ #~ msgid "Bengkulu"
19421
+ #~ msgstr "Bengkulu"
19422
+
19423
+ #~ msgid "Bangka Belitung"
19424
+ #~ msgstr "Bangka Belitung"
19425
+
19426
+ #~ msgid "Sumatera Selatan"
19427
+ #~ msgstr "Sumatera Selatan"
19428
+
19429
+ #~ msgid "Jambi"
19430
+ #~ msgstr "Jambi"
19431
+
19432
+ #~ msgid "Kepulauan Riau"
19433
+ #~ msgstr "Kepulauan Riau"
19434
+
19435
+ #~ msgid "Riau"
19436
+ #~ msgstr "Riau"
19437
+
19438
+ #~ msgid "Sumatera Barat"
19439
+ #~ msgstr "Sumatera Barat"
19440
+
19441
+ #~ msgid "Sumatera Utara"
19442
+ #~ msgstr "Sumatera Utara"
19443
+
19444
+ #~ msgid "Daerah Istimewa Aceh"
19445
+ #~ msgstr "Daerah Istimewa Aceh"
19446
+
19447
+ #~ msgid "Zala"
19448
+ #~ msgstr "Zala"
19449
+
19450
+ #~ msgid "Veszprém"
19451
+ #~ msgstr "Veszprém"
19452
+
19453
+ #~ msgid "Vas"
19454
+ #~ msgstr "Vas"
19455
+
19456
+ #~ msgid "Tolna"
19457
+ #~ msgstr "Tolna"
19458
+
19459
+ #~ msgid "Szabolcs-Szatmár-Bereg"
19460
+ #~ msgstr "Szabolcs-Szatmár-Bereg"
19461
+
19462
+ #~ msgid "Somogy"
19463
+ #~ msgstr "Somogy"
19464
+
19465
+ #~ msgid "Pest"
19466
+ #~ msgstr "Pest"
19467
+
19468
+ #~ msgid "Nógrád"
19469
+ #~ msgstr "Nógrád"
19470
+
19471
+ #~ msgid "Komárom-Esztergom"
19472
+ #~ msgstr "Komárom-Esztergom"
19473
+
19474
+ #~ msgid "Jász-Nagykun-Szolnok"
19475
+ #~ msgstr "Jász-Nagykun-Szolnok"
19476
+
19477
+ #~ msgid "Heves"
19478
+ #~ msgstr "Heves"
19479
+
19480
+ #~ msgid "Hajdú-Bihar"
19481
+ #~ msgstr "Hajdú-Bihar"
19482
+
19483
+ #~ msgid "Győr-Moson-Sopron"
19484
+ #~ msgstr "Győr-Moson-Sopron"
19485
+
19486
+ #~ msgid "Fejér"
19487
+ #~ msgstr "Fejér"
19488
+
19489
+ #~ msgid "Csongrád"
19490
+ #~ msgstr "Csongrád"
19491
+
19492
+ #~ msgid "Budapest"
19493
+ #~ msgstr "Budapesta"
19494
+
19495
+ #~ msgid "Borsod-Abaúj-Zemplén"
19496
+ #~ msgstr "Borsod-Abaúj-Zemplén"
19497
+
19498
+ #~ msgid "Baranya"
19499
+ #~ msgstr "Baranya"
19500
+
19501
+ #~ msgid "Békés"
19502
+ #~ msgstr "Békés"
19503
+
19504
+ #~ msgid "Bács-Kiskun"
19505
+ #~ msgstr "Bács-Kiskun"
19506
+
19507
+ #~ msgid "New Territories"
19508
+ #~ msgstr "New Territories"
19509
+
19510
+ #~ msgid "Kowloon"
19511
+ #~ msgstr "Kowloon"
19512
+
19513
+ #~ msgid "Hong Kong Island"
19514
+ #~ msgstr "Insula Hong Kong"
19515
+
19516
+ #~ msgid "Κρήτη"
19517
+ #~ msgstr "Creta"
19518
+
19519
+ #~ msgid "Νότιο Αιγαίο"
19520
+ #~ msgstr "Egeea de Sud"
19521
+
19522
+ #~ msgid "Βόρειο Αιγαίο"
19523
+ #~ msgstr "Egeea de Nord"
19524
+
19525
+ #~ msgid "Πελοπόννησος"
19526
+ #~ msgstr "Peloponez"
19527
+
19528
+ #~ msgid "Στερεά Ελλάδα"
19529
+ #~ msgstr "Grecia Centrală"
19530
+
19531
+ #~ msgid "Δυτική Ελλάδα"
19532
+ #~ msgstr "Grecia de Vest"
19533
+
19534
+ #~ msgid "Ιόνιοι Νήσοι"
19535
+ #~ msgstr "Insulele Ionice"
19536
+
19537
+ #~ msgid "Θεσσαλία"
19538
+ #~ msgstr "Tesalia"
19539
+
19540
+ #~ msgid "Ήπειρος"
19541
+ #~ msgstr "Epir"
19542
+
19543
+ #~ msgid "Δυτική Μακεδονία"
19544
+ #~ msgstr "Macedonia de Vest"
19545
+
19546
+ #~ msgid "Κεντρική Μακεδονία"
19547
+ #~ msgstr "Macedonia centrală"
19548
+
19549
+ #~ msgid "Ανατολική Μακεδονία και Θράκη"
19550
+ #~ msgstr "Macedonia de Est și Tracia"
19551
+
19552
+ #~ msgid "Αττική"
19553
+ #~ msgstr "Attica"
19554
+
19555
+ #~ msgid "Zaragoza"
19556
+ #~ msgstr "Zaragoza"
19557
+
19558
+ #~ msgid "Zamora"
19559
+ #~ msgstr "Zamora"
19560
+
19561
+ #~ msgid "Bizkaia"
19562
+ #~ msgstr "Bizkaia"
19563
+
19564
+ #~ msgid "Valladolid"
19565
+ #~ msgstr "Valladolid"
19566
+
19567
+ #~ msgid "Valencia"
19568
+ #~ msgstr "Valencia"
19569
+
19570
+ #~ msgid "Toledo"
19571
+ #~ msgstr "Toledo"
19572
+
19573
+ #~ msgid "Teruel"
19574
+ #~ msgstr "Teruel"
19575
+
19576
+ #~ msgid "Tarragona"
19577
+ #~ msgstr "Tarragona"
19578
+
19579
+ #~ msgid "Soria"
19580
+ #~ msgstr "Soria"
19581
+
19582
+ #~ msgid "Sevilla"
19583
+ #~ msgstr "Sevilla"
19584
+
19585
+ #~ msgid "Segovia"
19586
+ #~ msgstr "Segovia"
19587
+
19588
+ #~ msgid "Santa Cruz de Tenerife"
19589
+ #~ msgstr "Santa Cruz de Tenerife"
19590
+
19591
+ #~ msgid "Salamanca"
19592
+ #~ msgstr "Salamanca"
19593
+
19594
+ #~ msgid "Pontevedra"
19595
+ #~ msgstr "Pontevedra"
19596
+
19597
+ #~ msgid "Palencia"
19598
+ #~ msgstr "Palencia"
19599
+
19600
+ #~ msgid "Ourense"
19601
+ #~ msgstr "Ourense"
19602
+
19603
+ #~ msgid "Navarra"
19604
+ #~ msgstr "Navarra"
19605
+
19606
+ #~ msgid "Murcia"
19607
+ #~ msgstr "Murcia"
19608
+
19609
+ #~ msgid "Melilla"
19610
+ #~ msgstr "Melilla"
19611
+
19612
+ #~ msgid "M&aacute;laga"
19613
+ #~ msgstr "M&aacute;laga"
19614
+
19615
+ #~ msgid "Madrid"
19616
+ #~ msgstr "Madrid"
19617
+
19618
+ #~ msgid "Lugo"
19619
+ #~ msgstr "Lugo"
19620
+
19621
+ #~ msgid "Lleida"
19622
+ #~ msgstr "Lleida"
19623
+
19624
+ #~ msgid "Le&oacute;n"
19625
+ #~ msgstr "Le&oacute;n"
19626
+
19627
+ #~ msgid "Las Palmas"
19628
+ #~ msgstr "Las Palmas"
19629
+
19630
+ #~ msgid "Ja&eacute;n"
19631
+ #~ msgstr "Ja&eacute;n"
19632
+
19633
+ #~ msgid "Huesca"
19634
+ #~ msgstr "Huesca"
19635
+
19636
+ #~ msgid "Huelva"
19637
+ #~ msgstr "Huelva"
19638
+
19639
+ #~ msgid "Gipuzkoa"
19640
+ #~ msgstr "Gipuzkoa"
19641
+
19642
+ #~ msgid "Guadalajara"
19643
+ #~ msgstr "Guadalajara"
19644
+
19645
+ #~ msgid "Granada"
19646
+ #~ msgstr "Granada"
19647
+
19648
+ #~ msgid "Girona"
19649
+ #~ msgstr "Girona"
19650
+
19651
+ #~ msgid "Cuenca"
19652
+ #~ msgstr "Cuenca"
19653
+
19654
+ #~ msgid "Ciudad Real"
19655
+ #~ msgstr "Ciudad Real"
19656
+
19657
+ #~ msgid "Ceuta"
19658
+ #~ msgstr "Ceuta"
19659
+
19660
+ #~ msgid "Castell&oacute;n"
19661
+ #~ msgstr "Castell&oacute;n"
19662
+
19663
+ #~ msgid "Cantabria"
19664
+ #~ msgstr "Cantabria"
19665
+
19666
+ #~ msgid "C&aacute;diz"
19667
+ #~ msgstr "C&aacute;diz"
19668
+
19669
+ #~ msgid "C&aacute;ceres"
19670
+ #~ msgstr "C&aacute;ceres"
19671
+
19672
+ #~ msgid "Burgos"
19673
+ #~ msgstr "Burgos"
19674
+
19675
+ #~ msgid "Barcelona"
19676
+ #~ msgstr "Barcelona"
19677
+
19678
+ #~ msgid "Baleares"
19679
+ #~ msgstr "Insulele Baleare"
19680
+
19681
+ #~ msgid "Badajoz"
19682
+ #~ msgstr "Badajoz"
19683
+
19684
+ #~ msgid "&Aacute;vila"
19685
+ #~ msgstr "&Aacute;vila"
19686
+
19687
+ #~ msgid "Asturias"
19688
+ #~ msgstr "Asturias"
19689
+
19690
+ #~ msgid "Almer&iacute;a"
19691
+ #~ msgstr "Almer&iacute;a"
19692
+
19693
+ #~ msgid "Alicante"
19694
+ #~ msgstr "Alicante"
19695
+
19696
+ #~ msgid "Albacete"
19697
+ #~ msgstr "Albacete"
19698
+
19699
+ #~ msgid "Araba/&Aacute;lava"
19700
+ #~ msgstr "Araba/&Aacute;lava"
19701
+
19702
+ #~ msgid "A Coru&ntilde;a"
19703
+ #~ msgstr "A Coru&ntilde;a"
19704
+
19705
+ #~ msgid "Xinjiang / &#26032;&#30086;"
19706
+ #~ msgstr "Xinjiang / &#26032;&#30086;"
19707
+
19708
+ #~ msgid "Tibet / &#35199;&#34255;"
19709
+ #~ msgstr "Tibet / &#35199;&#34255;"
19710
+
19711
+ #~ msgid "Macau / &#28595;&#38376;"
19712
+ #~ msgstr "Macau / &#28595;&#38376;"
19713
+
19714
+ #~ msgid "Ningxia Hui / &#23425;&#22799;"
19715
+ #~ msgstr "Ningxia Hui / &#23425;&#22799;"
19716
+
19717
+ #~ msgid "Qinghai / &#38738;&#28023;"
19718
+ #~ msgstr "Qinghai / &#38738;&#28023;"
19719
+
19720
+ #~ msgid "Gansu / &#29976;&#32899;"
19721
+ #~ msgstr "Gansu / &#29976;&#32899;"
19722
+
19723
+ #~ msgid "Shaanxi / &#38485;&#35199;"
19724
+ #~ msgstr "Shaanxi / &#38485;&#35199;"
19725
+
19726
+ #~ msgid "Guizhou / &#36149;&#24030;"
19727
+ #~ msgstr "Guizhou / &#36149;&#24030;"
19728
+
19729
+ #~ msgid "Sichuan / &#22235;&#24029;"
19730
+ #~ msgstr "Sichuan / &#22235;&#24029;"
19731
+
19732
+ #~ msgid "Chongqing / &#37325;&#24198;"
19733
+ #~ msgstr "Chongqing / &#37325;&#24198;"
19734
+
19735
+ #~ msgid "Hainan / &#28023;&#21335;"
19736
+ #~ msgstr "Hainan / &#28023;&#21335;"
19737
+
19738
+ #~ msgid "Guangxi Zhuang / &#24191;&#35199;&#22766;&#26063;"
19739
+ #~ msgstr "Guangxi Zhuang / &#24191;&#35199;&#22766;&#26063;"
19740
+
19741
+ #~ msgid "Guangdong / &#24191;&#19996;"
19742
+ #~ msgstr "Guangdong / &#24191;&#19996;"
19743
+
19744
+ #~ msgid "Hunan / &#28246;&#21335;"
19745
+ #~ msgstr "Hunan / &#28246;&#21335;"
19746
+
19747
+ #~ msgid "Hubei / &#28246;&#21271;"
19748
+ #~ msgstr "Hubei / &#28246;&#21271;"
19749
+
19750
+ #~ msgid "Henan / &#27827;&#21335;"
19751
+ #~ msgstr "Henan / &#27827;&#21335;"
19752
+
19753
+ #~ msgid "Shandong / &#23665;&#19996;"
19754
+ #~ msgstr "Shandong / &#23665;&#19996;"
19755
+
19756
+ #~ msgid "Jiangxi / &#27743;&#35199;"
19757
+ #~ msgstr "Jiangxi / &#27743;&#35199;"
19758
+
19759
+ #~ msgid "Fujian / &#31119;&#24314;"
19760
+ #~ msgstr "Fujian / &#31119;&#24314;"
19761
+
19762
+ #~ msgid "Anhui / &#23433;&#24509;"
19763
+ #~ msgstr "Anhui / &#23433;&#24509;"
19764
+
19765
+ #~ msgid "Zhejiang / &#27993;&#27743;"
19766
+ #~ msgstr "Zhejiang / &#27993;&#27743;"
19767
+
19768
+ #~ msgid "Jiangsu / &#27743;&#33487;"
19769
+ #~ msgstr "Jiangsu / &#27743;&#33487;"
19770
+
19771
+ #~ msgid "Shanghai / &#19978;&#28023;"
19772
+ #~ msgstr "Shanghai / &#19978;&#28023;"
19773
+
19774
+ #~ msgid "Heilongjiang / &#40657;&#40857;&#27743;"
19775
+ #~ msgstr "Heilongjiang / &#40657;&#40857;&#27743;"
19776
+
19777
+ #~ msgid "Jilin / &#21513;&#26519;"
19778
+ #~ msgstr "Jilin / &#21513;&#26519;"
19779
+
19780
+ #~ msgid "Liaoning / &#36797;&#23425;"
19781
+ #~ msgstr "Liaoning / &#36797;&#23425;"
19782
+
19783
+ #~ msgid "Inner Mongolia / &#20839;&#33945;&#21476;"
19784
+ #~ msgstr "Inner Mongolia / &#20839;&#33945;&#21476;"
19785
+
19786
+ #~ msgid "Shanxi / &#23665;&#35199;"
19787
+ #~ msgstr "Shanxi / &#23665;&#35199;"
19788
+
19789
+ #~ msgid "Hebei / &#27827;&#21271;"
19790
+ #~ msgstr "Hebei / &#27827;&#21271;"
19791
+
19792
+ #~ msgid "Tianjin / &#22825;&#27941;"
19793
+ #~ msgstr "Tianjin / &#22825;&#27941;"
19794
+
19795
+ #~ msgid "Beijing / &#21271;&#20140;"
19796
+ #~ msgstr "Beijing / &#21271;&#20140;"
19797
+
19798
+ #~ msgid "Yunnan / &#20113;&#21335;"
19799
+ #~ msgstr "Yunnan / &#20113;&#21335;"
19800
+
19801
+ #~ msgid "Yukon Territory"
19802
+ #~ msgstr "Yukon Territory"
19803
+
19804
+ #~ msgid "Saskatchewan"
19805
+ #~ msgstr "Saskatchewan"
19806
+
19807
+ #~ msgid "Quebec"
19808
+ #~ msgstr "Quebec"
19809
+
19810
+ #~ msgid "Prince Edward Island"
19811
+ #~ msgstr "Insula Prince Edward"
19812
+
19813
+ #~ msgid "Ontario"
19814
+ #~ msgstr "Ontario"
19815
+
19816
+ #~ msgid "Nunavut"
19817
+ #~ msgstr "Nunavut"
19818
+
19819
+ #~ msgid "Nova Scotia"
19820
+ #~ msgstr "Noua Scoție"
19821
+
19822
+ #~ msgid "Northwest Territories"
19823
+ #~ msgstr "Teritoriile de Nord-vest"
19824
+
19825
+ #~ msgid "Newfoundland and Labrador"
19826
+ #~ msgstr "Terranova și Labrador"
19827
+
19828
+ #~ msgid "New Brunswick"
19829
+ #~ msgstr "Noul Brunswick"
19830
+
19831
+ #~ msgid "Manitoba"
19832
+ #~ msgstr "Manitoba"
19833
+
19834
+ #~ msgid "British Columbia"
19835
+ #~ msgstr "Columbia Britanică"
19836
+
19837
+ #~ msgid "Alberta"
19838
+ #~ msgstr "Alberta"
19839
+
19840
+ #~ msgid "Tocantins"
19841
+ #~ msgstr "Tocantins"
19842
+
19843
+ #~ msgid "Sergipe"
19844
+ #~ msgstr "Sergipe"
19845
+
19846
+ #~ msgid "S&atilde;o Paulo"
19847
+ #~ msgstr "S&atilde;o Paulo"
19848
+
19849
+ #~ msgid "Santa Catarina"
19850
+ #~ msgstr "Santa Catarina"
19851
+
19852
+ #~ msgid "Roraima"
19853
+ #~ msgstr "Roraima"
19854
+
19855
+ #~ msgid "Rond&ocirc;nia"
19856
+ #~ msgstr "Rond&ocirc;nia"
19857
+
19858
+ #~ msgid "Rio Grande do Sul"
19859
+ #~ msgstr "Rio Grande do Sul"
19860
+
19861
+ #~ msgid "Rio Grande do Norte"
19862
+ #~ msgstr "Rio Grande do Norte"
19863
+
19864
+ #~ msgid "Rio de Janeiro"
19865
+ #~ msgstr "Rio de Janeiro"
19866
+
19867
+ #~ msgid "Piau&iacute;"
19868
+ #~ msgstr "Piau&iacute;"
19869
+
19870
+ #~ msgid "Pernambuco"
19871
+ #~ msgstr "Pernambuco"
19872
+
19873
+ #~ msgid "Paran&aacute;"
19874
+ #~ msgstr "Paran&aacute;"
19875
+
19876
+ #~ msgid "Para&iacute;ba"
19877
+ #~ msgstr "Para&iacute;ba"
19878
+
19879
+ #~ msgid "Par&aacute;"
19880
+ #~ msgstr "Par&aacute;"
19881
+
19882
+ #~ msgid "Minas Gerais"
19883
+ #~ msgstr "Minas Gerais"
19884
+
19885
+ #~ msgid "Mato Grosso do Sul"
19886
+ #~ msgstr "Mato Grosso do Sul"
19887
+
19888
+ #~ msgid "Mato Grosso"
19889
+ #~ msgstr "Mato Grosso"
19890
+
19891
+ #~ msgid "Maranh&atilde;o"
19892
+ #~ msgstr "Maranh&atilde;o"
19893
+
19894
+ #~ msgid "Goi&aacute;s"
19895
+ #~ msgstr "Goi&aacute;s"
19896
+
19897
+ #~ msgid "Esp&iacute;rito Santo"
19898
+ #~ msgstr "Esp&iacute;rito Santo"
19899
+
19900
+ #~ msgid "Distrito Federal"
19901
+ #~ msgstr "Distrito Federal"
19902
+
19903
+ #~ msgid "Cear&aacute;"
19904
+ #~ msgstr "Cear&aacute;"
19905
+
19906
+ #~ msgid "Bahia"
19907
+ #~ msgstr "Bahia"
19908
+
19909
+ #~ msgid "Amazonas"
19910
+ #~ msgstr "Amazonas"
19911
+
19912
+ #~ msgid "Amap&aacute;"
19913
+ #~ msgstr "Amap&aacute;"
19914
+
19915
+ #~ msgid "Alagoas"
19916
+ #~ msgstr "Alagoas"
19917
+
19918
+ #~ msgid "Acre"
19919
+ #~ msgstr "Acre"
19920
+
19921
+ #~ msgid "Yambol"
19922
+ #~ msgstr "Yambol"
19923
+
19924
+ #~ msgid "Vratsa"
19925
+ #~ msgstr "Vratsa"
19926
+
19927
+ #~ msgid "Vidin"
19928
+ #~ msgstr "Vidin"
19929
+
19930
+ #~ msgid "Veliko Tarnovo"
19931
+ #~ msgstr "Veliko Tarnovo"
19932
+
19933
+ #~ msgid "Varna"
19934
+ #~ msgstr "Varna"
19935
+
19936
+ #~ msgid "Targovishte"
19937
+ #~ msgstr "Targovishte"
19938
+
19939
+ #~ msgid "Stara Zagora"
19940
+ #~ msgstr "Stara Zagora"
19941
+
19942
+ #~ msgid "Sofia-Grad"
19943
+ #~ msgstr "Sofia-Grad"
19944
+
19945
+ #~ msgid "Sofia"
19946
+ #~ msgstr "Sofia"
19947
+
19948
+ #~ msgid "Smolyan"
19949
+ #~ msgstr "Smolyan"
19950
+
19951
+ #~ msgid "Sliven"
19952
+ #~ msgstr "Sliven"
19953
+
19954
+ #~ msgid "Silistra"
19955
+ #~ msgstr "Silistra"
19956
+
19957
+ #~ msgid "Shumen"
19958
+ #~ msgstr "Shumen"
19959
+
19960
+ #~ msgid "Ruse"
19961
+ #~ msgstr "Ruse"
19962
+
19963
+ #~ msgid "Razgrad"
19964
+ #~ msgstr "Razgrad"
19965
+
19966
+ #~ msgid "Plovdiv"
19967
+ #~ msgstr "Plovdiv"
19968
+
19969
+ #~ msgid "Pleven"
19970
+ #~ msgstr "Pleven"
19971
+
19972
+ #~ msgid "Pernik"
19973
+ #~ msgstr "Pernik"
19974
+
19975
+ #~ msgid "Pazardzhik"
19976
+ #~ msgstr "Pazardzhik"
19977
+
19978
+ #~ msgid "Montana"
19979
+ #~ msgstr "Montana"
19980
+
19981
+ #~ msgid "Lovech"
19982
+ #~ msgstr "Lovech"
19983
+
19984
+ #~ msgid "Kyustendil"
19985
+ #~ msgstr "Kyustendil"
19986
+
19987
+ #~ msgid "Kardzhali"
19988
+ #~ msgstr "Kardzhali"
19989
+
19990
+ #~ msgid "Haskovo"
19991
+ #~ msgstr "Haskovo"
19992
+
19993
+ #~ msgid "Gabrovo"
19994
+ #~ msgstr "Gabrovo"
19995
+
19996
+ #~ msgid "Dobrich"
19997
+ #~ msgstr "Dobrich"
19998
+
19999
+ #~ msgid "Burgas"
20000
+ #~ msgstr "Burgas"
20001
+
20002
+ #~ msgid "Blagoevgrad"
20003
+ #~ msgstr "Blagoevgrad"
20004
+
20005
+ #~ msgid "Thakurgaon"
20006
+ #~ msgstr "Thakurgaon"
20007
+
20008
+ #~ msgid "Tangail"
20009
+ #~ msgstr "Tangail"
20010
+
20011
+ #~ msgid "Sylhet"
20012
+ #~ msgstr "Sylhet"
20013
+
20014
+ #~ msgid "Sunamganj"
20015
+ #~ msgstr "Sunamganj"
20016
+
20017
+ #~ msgid "Sirajganj"
20018
+ #~ msgstr "Sirajganj"
20019
+
20020
+ #~ msgid "Sherpur"
20021
+ #~ msgstr "Sherpur"
20022
+
20023
+ #~ msgid "Shariatpur"
20024
+ #~ msgstr "Shariatpur"
20025
+
20026
+ #~ msgid "Satkhira"
20027
+ #~ msgstr "Satkhira"
20028
+
20029
+ #~ msgid "Rangpur"
20030
+ #~ msgstr "Rangpur"
20031
+
20032
+ #~ msgid "Rangamati"
20033
+ #~ msgstr "Rangamati"
20034
+
20035
+ #~ msgid "Rajshahi"
20036
+ #~ msgstr "Rajshahi"
20037
+
20038
+ #~ msgid "Rajbari"
20039
+ #~ msgstr "Rajbari"
20040
+
20041
+ #~ msgid "Pirojpur"
20042
+ #~ msgstr "Pirojpur"
20043
+
20044
+ #~ msgid "Patuakhali"
20045
+ #~ msgstr "Patuakhali"
20046
+
20047
+ #~ msgid "Panchagarh"
20048
+ #~ msgstr "Panchagarh"
20049
+
20050
+ #~ msgid "Pabna"
20051
+ #~ msgstr "Pabna"
20052
+
20053
+ #~ msgid "Noakhali"
20054
+ #~ msgstr "Noakhali"
20055
+
20056
+ #~ msgid "Nilphamari"
20057
+ #~ msgstr "Nilphamari"
20058
+
20059
+ #~ msgid "Netrakona"
20060
+ #~ msgstr "Netrakona"
20061
+
20062
+ #~ msgid "Nawabganj"
20063
+ #~ msgstr "Nawabganj"
20064
+
20065
+ #~ msgid "Natore"
20066
+ #~ msgstr "Natore"
20067
+
20068
+ #~ msgid "Narsingdi"
20069
+ #~ msgstr "Narsingdi"
20070
+
20071
+ #~ msgid "Narayanganj"
20072
+ #~ msgstr "Narayanganj"
20073
+
20074
+ #~ msgid "Narail"
20075
+ #~ msgstr "Narail"
20076
+
20077
+ #~ msgid "Naogaon"
20078
+ #~ msgstr "Naogaon"
20079
+
20080
+ #~ msgid "Mymensingh"
20081
+ #~ msgstr "Mymensingh"
20082
+
20083
+ #~ msgid "Munshiganj"
20084
+ #~ msgstr "Munshiganj"
20085
+
20086
+ #~ msgid "Moulvibazar"
20087
+ #~ msgstr "Moulvibazar"
20088
+
20089
+ #~ msgid "Meherpur"
20090
+ #~ msgstr "Meherpur"
20091
+
20092
+ #~ msgid "Manikganj "
20093
+ #~ msgstr "Manikganj "
20094
+
20095
+ #~ msgid "Magura"
20096
+ #~ msgstr "Magura"
20097
+
20098
+ #~ msgid "Madaripur"
20099
+ #~ msgstr "Madaripur"
20100
+
20101
+ #~ msgid "Lalmonirhat"
20102
+ #~ msgstr "Lalmonirhat"
20103
+
20104
+ #~ msgid "Lakshmipur"
20105
+ #~ msgstr "Lakshmipur"
20106
+
20107
+ #~ msgid "Kushtia"
20108
+ #~ msgstr "Kushtia"
20109
+
20110
+ #~ msgid "Kurigram"
20111
+ #~ msgstr "Kurigram"
20112
+
20113
+ #~ msgid "Kishoreganj"
20114
+ #~ msgstr "Kishoreganj"
20115
+
20116
+ #~ msgid "Khulna"
20117
+ #~ msgstr "Khulna"
20118
+
20119
+ #~ msgid "Khagrachhari"
20120
+ #~ msgstr "Khagrachhari"
20121
+
20122
+ #~ msgid "Joypurhat"
20123
+ #~ msgstr "Joypurhat"
20124
+
20125
+ #~ msgid "Jhenaidah"
20126
+ #~ msgstr "Jhenaidah"
20127
+
20128
+ #~ msgid "Jhalokati"
20129
+ #~ msgstr "Jhalokati"
20130
+
20131
+ #~ msgid "Jamalpur"
20132
+ #~ msgstr "Jamalpur"
20133
+
20134
+ #~ msgid "Habiganj"
20135
+ #~ msgstr "Habiganj"
20136
+
20137
+ #~ msgid "Gopalganj"
20138
+ #~ msgstr "Gopalganj"
20139
+
20140
+ #~ msgid "Gazipur"
20141
+ #~ msgstr "Gazipur"
20142
+
20143
+ #~ msgid "Gaibandha"
20144
+ #~ msgstr "Gaibandha"
20145
+
20146
+ #~ msgid "Feni"
20147
+ #~ msgstr "Feni"
20148
+
20149
+ #~ msgid "Faridpur "
20150
+ #~ msgstr "Faridpur"
20151
+
20152
+ #~ msgid "Dinajpur"
20153
+ #~ msgstr "Dinajpur"
20154
+
20155
+ #~ msgid "Dhaka"
20156
+ #~ msgstr "Dhaka"
20157
+
20158
+ #~ msgid "Cox's Bazar"
20159
+ #~ msgstr "Magazinul lui Cox"
20160
+
20161
+ #~ msgid "Cumilla"
20162
+ #~ msgstr "Cumilla"
20163
+
20164
+ #~ msgid "Chuadanga"
20165
+ #~ msgstr "Chuadanga"
20166
+
20167
+ #~ msgid "Chandpur"
20168
+ #~ msgstr "Chandpur"
20169
+
20170
+ #~ msgid "Brahmanbaria"
20171
+ #~ msgstr "Brahmanbaria"
20172
+
20173
+ #~ msgid "Bogura"
20174
+ #~ msgstr "Bogura"
20175
+
20176
+ #~ msgid "Bhola"
20177
+ #~ msgstr "Bhola"
20178
+
20179
+ #~ msgid "Barishal"
20180
+ #~ msgstr "Barishal"
20181
+
20182
+ #~ msgid "Barguna"
20183
+ #~ msgstr "Barguna"
20184
+
20185
+ #~ msgid "Bandarban"
20186
+ #~ msgstr "Bandarban"
20187
+
20188
+ #~ msgid "Bagerhat"
20189
+ #~ msgstr "Bagerhat"
20190
+
20191
+ #~ msgid "Western Australia"
20192
+ #~ msgstr "Western Australia"
20193
+
20194
+ #~ msgid "Victoria"
20195
+ #~ msgstr "Victoria"
20196
+
20197
+ #~ msgid "Tasmania"
20198
+ #~ msgstr "Tazmania"
20199
+
20200
+ #~ msgid "South Australia"
20201
+ #~ msgstr "Australia de sud"
20202
+
20203
+ #~ msgid "Queensland"
20204
+ #~ msgstr "Queensland"
20205
+
20206
+ #~ msgid "Northern Territory"
20207
+ #~ msgstr "Teritoriul de Nord"
20208
+
20209
+ #~ msgid "New South Wales"
20210
+ #~ msgstr "Noul Wales de Sud"
20211
+
20212
+ #~ msgid "Australian Capital Territory"
20213
+ #~ msgstr "Teritoriul capitalei australiene"
20214
+
20215
+ #~ msgid "Tucum&aacute;n"
20216
+ #~ msgstr "Tucum&aacute;n"
20217
+
20218
+ #~ msgid "Tierra del Fuego"
20219
+ #~ msgstr "Tierra del Fuego"
20220
+
20221
+ #~ msgid "Santiago del Estero"
20222
+ #~ msgstr "Santiago del Estero"
20223
+
20224
+ #~ msgid "Santa Fe"
20225
+ #~ msgstr "Santa Fe"
20226
+
20227
+ #~ msgid "Santa Cruz"
20228
+ #~ msgstr "Santa Cruz"
20229
+
20230
+ #~ msgid "San Luis"
20231
+ #~ msgstr "San Luis"
20232
+
20233
+ #~ msgid "San Juan"
20234
+ #~ msgstr "San Juan"
20235
+
20236
+ #~ msgid "Salta"
20237
+ #~ msgstr "Salta"
20238
+
20239
+ #~ msgid "R&iacute;o Negro"
20240
+ #~ msgstr "R&iacute;o Negro"
20241
+
20242
+ #~ msgid "Neuqu&eacute;n"
20243
+ #~ msgstr "Neuqu&eacute;n"
20244
+
20245
+ #~ msgid "Misiones"
20246
+ #~ msgstr "Misiones"
20247
+
20248
+ #~ msgid "Mendoza"
20249
+ #~ msgstr "Mendoza"
20250
+
20251
+ #~ msgid "La Rioja"
20252
+ #~ msgstr "La Rioja"
20253
+
20254
+ #~ msgid "La Pampa"
20255
+ #~ msgstr "La Pampa"
20256
+
20257
+ #~ msgid "Jujuy"
20258
+ #~ msgstr "Jujuy"
20259
+
20260
+ #~ msgid "Formosa"
20261
+ #~ msgstr "Formosa"
20262
+
20263
+ #~ msgid "Entre R&iacute;os"
20264
+ #~ msgstr "Entre R&iacute;os"
20265
+
20266
+ #~ msgid "Corrientes"
20267
+ #~ msgstr "Corrientes"
20268
+
20269
+ #~ msgid "C&oacute;rdoba"
20270
+ #~ msgstr "C&oacute;rdoba"
20271
+
20272
+ #~ msgid "Chubut"
20273
+ #~ msgstr "Chubut"
20274
+
20275
+ #~ msgid "Chaco"
20276
+ #~ msgstr "Chaco"
20277
+
20278
+ #~ msgid "Catamarca"
20279
+ #~ msgstr "Catamarca"
20280
+
20281
+ #~ msgid "Buenos Aires"
20282
+ #~ msgstr "Buenos Aires"
20283
+
20284
+ #~ msgid "Ciudad Aut&oacute;noma de Buenos Aires"
20285
+ #~ msgstr "Ciudad Aut&oacute;noma de Buenos Aires"
20286
+
20287
+ #~ msgid "Consumption tax"
20288
+ #~ msgstr "Taxă pe valoarea adăugată (TVA)"
20289
+
20290
+ #~ msgid "Zimbabwe"
20291
+ #~ msgstr "Zimbabwe"
20292
+
20293
+ #~ msgid "Zambia"
20294
+ #~ msgstr "Zambia"
20295
+
20296
+ #~ msgid "Yemen"
20297
+ #~ msgstr "Yemen"
20298
+
20299
+ #~ msgid "Western Sahara"
20300
+ #~ msgstr "Sahara Occidentală"
20301
+
20302
+ #~ msgid "Wallis and Futuna"
20303
+ #~ msgstr "Wallis și Futuna"
20304
+
20305
+ #~ msgid "Vietnam"
20306
+ #~ msgstr "Vietnam"
20307
+
20308
+ #~ msgid "Venezuela"
20309
+ #~ msgstr "Venezuela"
20310
+
20311
+ #~ msgid "Vatican"
20312
+ #~ msgstr "Vatican"
20313
+
20314
+ #~ msgid "Vanuatu"
20315
+ #~ msgstr "Vanuatu"
20316
+
20317
+ #~ msgid "Uzbekistan"
20318
+ #~ msgstr "Uzbekistan"
20319
+
20320
+ #~ msgid "Uruguay"
20321
+ #~ msgstr "Uruguay"
20322
+
20323
+ #~ msgid "United States (US)"
20324
+ #~ msgstr "Statele Unite ale Americii (SUA)"
20325
+
20326
+ #~ msgid "United Kingdom (UK)"
20327
+ #~ msgstr "Regatul Unit (UK)"
20328
+
20329
+ #~ msgid "United Arab Emirates"
20330
+ #~ msgstr "Emiratele Arabe Unite"
20331
+
20332
+ #~ msgid "Ukraine"
20333
+ #~ msgstr "Ucraina"
20334
+
20335
+ #~ msgid "Uganda"
20336
+ #~ msgstr "Uganda"
20337
+
20338
+ #~ msgid "Tuvalu"
20339
+ #~ msgstr "Tuvalu"
20340
+
20341
+ #~ msgid "Turks and Caicos Islands"
20342
+ #~ msgstr "Insulele Turks și Caicos"
20343
+
20344
+ #~ msgid "Turkmenistan"
20345
+ #~ msgstr "Turkmenistan"
20346
+
20347
+ #~ msgid "Turkey"
20348
+ #~ msgstr "Turcia"
20349
+
20350
+ #~ msgid "Tunisia"
20351
+ #~ msgstr "Tunisia"
20352
+
20353
+ #~ msgid "Trinidad and Tobago"
20354
+ #~ msgstr "Trinidad și Tobago"
20355
+
20356
+ #~ msgid "Tonga"
20357
+ #~ msgstr "Tonga"
20358
+
20359
+ #~ msgid "Tokelau"
20360
+ #~ msgstr "Tokelau"
20361
+
20362
+ #~ msgid "Togo"
20363
+ #~ msgstr "Togo"
20364
+
20365
+ #~ msgid "Timor-Leste"
20366
+ #~ msgstr "Timorul de Est"
20367
+
20368
+ #~ msgid "Thailand"
20369
+ #~ msgstr "Thailanda"
20370
+
20371
+ #~ msgid "Tanzania"
20372
+ #~ msgstr "Tanzania"
20373
+
20374
+ #~ msgid "Tajikistan"
20375
+ #~ msgstr "Tadjikistan"
20376
+
20377
+ #~ msgid "Taiwan"
20378
+ #~ msgstr "Taiwan"
20379
+
20380
+ #~ msgid "Syria"
20381
+ #~ msgstr "Siria"
20382
+
20383
+ #~ msgid "Switzerland"
20384
+ #~ msgstr "Elveția"
20385
+
20386
+ #~ msgid "Sweden"
20387
+ #~ msgstr "Suedia"
20388
+
20389
+ #~ msgid "Swaziland"
20390
+ #~ msgstr "Swaziland"
20391
+
20392
+ #~ msgid "Svalbard and Jan Mayen"
20393
+ #~ msgstr "Svalbard și Jan Mayen"
20394
+
20395
+ #~ msgid "Suriname"
20396
+ #~ msgstr "Surinam"
20397
+
20398
+ #~ msgid "Sudan"
20399
+ #~ msgstr "Sudan"
20400
+
20401
+ #~ msgid "Sri Lanka"
20402
+ #~ msgstr "Sri Lanka"
20403
+
20404
+ #~ msgid "Spain"
20405
+ #~ msgstr "Spania"
20406
+
20407
+ #~ msgid "South Sudan"
20408
+ #~ msgstr "Sudanul de Sud"
20409
+
20410
+ #~ msgid "South Korea"
20411
+ #~ msgstr "Coreea de Sud"
20412
+
20413
+ #~ msgid "South Georgia/Sandwich Islands"
20414
+ #~ msgstr "Georgia de Sud / Insulele Sandwich"
20415
+
20416
+ #~ msgid "South Africa"
20417
+ #~ msgstr "Africa de Sud"
20418
+
20419
+ #~ msgid "Somalia"
20420
+ #~ msgstr "Somalia"
20421
+
20422
+ #~ msgid "Solomon Islands"
20423
+ #~ msgstr "Insulele Solomon"
20424
+
20425
+ #~ msgid "Slovenia"
20426
+ #~ msgstr "Slovenia"
20427
+
20428
+ #~ msgid "Slovakia"
20429
+ #~ msgstr "Slovacia"
20430
+
20431
+ #~ msgid "Singapore"
20432
+ #~ msgstr "Singapore"
20433
+
20434
+ #~ msgid "Sierra Leone"
20435
+ #~ msgstr "Sierra Leone"
20436
+
20437
+ #~ msgid "Seychelles"
20438
+ #~ msgstr "Seychelles"
20439
+
20440
+ #~ msgid "Serbia"
20441
+ #~ msgstr "Serbia"
20442
+
20443
+ #~ msgid "Senegal"
20444
+ #~ msgstr "Senegal"
20445
+
20446
+ #~ msgid "Saudi Arabia"
20447
+ #~ msgstr "Arabia Saudită"
20448
+
20449
+ #~ msgid "S&atilde;o Tom&eacute; and Pr&iacute;ncipe"
20450
+ #~ msgstr "São Tomé și Príncipe"
20451
+
20452
+ #~ msgid "Saint Vincent and the Grenadines"
20453
+ #~ msgstr "Sfântul Vicențiu și Grenadinele"
20454
+
20455
+ #~ msgid "Saint Pierre and Miquelon"
20456
+ #~ msgstr "Saint Pierre și Miquelon"
20457
+
20458
+ #~ msgid "Saint Martin (Dutch part)"
20459
+ #~ msgstr "Insula Sfântul Martin"
20460
+
20461
+ #~ msgid "Saint Martin (French part)"
20462
+ #~ msgstr "Saint-Martin"
20463
+
20464
+ #~ msgid "Saint Lucia"
20465
+ #~ msgstr "Sfânta Lucia"
20466
+
20467
+ #~ msgid "Saint Kitts and Nevis"
20468
+ #~ msgstr "Sfântul Cristofor și Nevis"
20469
+
20470
+ #~ msgid "Saint Helena"
20471
+ #~ msgstr "Sfânta Elena"
20472
+
20473
+ #~ msgid "Saint Barth&eacute;lemy"
20474
+ #~ msgstr "Saint-Barthélemy"
20475
+
20476
+ #~ msgid "Rwanda"
20477
+ #~ msgstr "Rwanda"
20478
+
20479
+ #~ msgid "Russia"
20480
+ #~ msgstr "Rusia"
20481
+
20482
+ #~ msgid "Romania"
20483
+ #~ msgstr "România"
20484
+
20485
+ #~ msgid "Reunion"
20486
+ #~ msgstr "Réunion"
20487
+
20488
+ #~ msgid "Qatar"
20489
+ #~ msgstr "Qatar"
20490
+
20491
+ #~ msgid "Portugal"
20492
+ #~ msgstr "Portugalia"
20493
+
20494
+ #~ msgid "Poland"
20495
+ #~ msgstr "Polonia"
20496
+
20497
+ #~ msgid "Pitcairn"
20498
+ #~ msgstr "Pitcairn"
20499
+
20500
+ #~ msgid "Philippines"
20501
+ #~ msgstr "Filipine"
20502
+
20503
+ #~ msgid "Peru"
20504
+ #~ msgstr "Peru"
20505
+
20506
+ #~ msgid "Paraguay"
20507
+ #~ msgstr "Paraguay"
20508
+
20509
+ #~ msgid "Papua New Guinea"
20510
+ #~ msgstr "Papua Noua Guinee"
20511
+
20512
+ #~ msgid "Panama"
20513
+ #~ msgstr "Panama"
20514
+
20515
+ #~ msgid "Palestinian Territory"
20516
+ #~ msgstr "Teritoriile Palestiniene"
20517
+
20518
+ #~ msgid "Pakistan"
20519
+ #~ msgstr "Pakistan"
20520
+
20521
+ #~ msgid "Oman"
20522
+ #~ msgstr "Oman"
20523
+
20524
+ #~ msgid "Norway"
20525
+ #~ msgstr "Norvegia"
20526
+
20527
+ #~ msgid "North Korea"
20528
+ #~ msgstr "Coreea de Nord"
20529
+
20530
+ #~ msgid "Norfolk Island"
20531
+ #~ msgstr "Insula Norfolk"
20532
+
20533
+ #~ msgid "Niue"
20534
+ #~ msgstr "Niue"
20535
+
20536
+ #~ msgid "Nigeria"
20537
+ #~ msgstr "Nigeria"
20538
+
20539
+ #~ msgid "Niger"
20540
+ #~ msgstr "Niger"
20541
+
20542
+ #~ msgid "Nicaragua"
20543
+ #~ msgstr "Nicaragua"
20544
+
20545
+ #~ msgid "New Zealand"
20546
+ #~ msgstr "Noua Zeelandă"
20547
+
20548
+ #~ msgid "New Caledonia"
20549
+ #~ msgstr "Noua Caledonie"
20550
+
20551
+ #~ msgid "Netherlands"
20552
+ #~ msgstr "Olanda"
20553
+
20554
+ #~ msgid "Nepal"
20555
+ #~ msgstr "Nepal"
20556
+
20557
+ #~ msgid "Nauru"
20558
+ #~ msgstr "Nauru"
20559
+
20560
+ #~ msgid "Namibia"
20561
+ #~ msgstr "Namibia"
20562
+
20563
+ #~ msgid "Myanmar"
20564
+ #~ msgstr "Myanmar"
20565
+
20566
+ #~ msgid "Mozambique"
20567
+ #~ msgstr "Mozambic"
20568
+
20569
+ #~ msgid "Morocco"
20570
+ #~ msgstr "Maroc"
20571
+
20572
+ #~ msgid "Montserrat"
20573
+ #~ msgstr "Montserrat"
20574
+
20575
+ #~ msgid "Montenegro"
20576
+ #~ msgstr "Muntenegru"
20577
+
20578
+ #~ msgid "Mongolia"
20579
+ #~ msgstr "Mongolia"
20580
+
20581
+ #~ msgid "Monaco"
20582
+ #~ msgstr "Monaco"
20583
+
20584
+ #~ msgid "Moldova"
20585
+ #~ msgstr "Moldova"
20586
+
20587
+ #~ msgid "Micronesia"
20588
+ #~ msgstr "Statele Federate ale Microneziei"
20589
+
20590
+ #~ msgid "Mexico"
20591
+ #~ msgstr "Mexic"
20592
+
20593
+ #~ msgid "Mauritius"
20594
+ #~ msgstr "Mauritius"
20595
+
20596
+ #~ msgid "Mauritania"
20597
+ #~ msgstr "Mauritania"
20598
+
20599
+ #~ msgid "Martinique"
20600
+ #~ msgstr "Martinica"
20601
+
20602
+ #~ msgid "Marshall Islands"
20603
+ #~ msgstr "Insulele Marshall"
20604
+
20605
+ #~ msgid "Malta"
20606
+ #~ msgstr "Malta"
20607
+
20608
+ #~ msgid "Mali"
20609
+ #~ msgstr "Mali"
20610
+
20611
+ #~ msgid "Maldives"
20612
+ #~ msgstr "Maldive"
20613
+
20614
+ #~ msgid "Malaysia"
20615
+ #~ msgstr "Malaezia"
20616
+
20617
+ #~ msgid "Malawi"
20618
+ #~ msgstr "Malawi"
20619
+
20620
+ #~ msgid "Madagascar"
20621
+ #~ msgstr "Madagascar"
20622
+
20623
+ #~ msgid "Macedonia"
20624
+ #~ msgstr "Republica Macedonia"
20625
+
20626
+ #~ msgid "Macao S.A.R., China"
20627
+ #~ msgstr "Macao (China)"
20628
+
20629
+ #~ msgid "Luxembourg"
20630
+ #~ msgstr "Luxemburg"
20631
+
20632
+ #~ msgid "Lithuania"
20633
+ #~ msgstr "Lituania"
20634
+
20635
+ #~ msgid "Liechtenstein"
20636
+ #~ msgstr "Liechtenstein"
20637
+
20638
+ #~ msgid "Libya"
20639
+ #~ msgstr "Libia"
20640
+
20641
+ #~ msgid "Liberia"
20642
+ #~ msgstr "Liberia"
20643
+
20644
+ #~ msgid "Lesotho"
20645
+ #~ msgstr "Lesotho"
20646
+
20647
+ #~ msgid "Lebanon"
20648
+ #~ msgstr "Liban"
20649
+
20650
+ #~ msgid "Latvia"
20651
+ #~ msgstr "Letonia"
20652
+
20653
+ #~ msgid "Laos"
20654
+ #~ msgstr "Laos"
20655
+
20656
+ #~ msgid "Kyrgyzstan"
20657
+ #~ msgstr "Kârgâzstan"
20658
+
20659
+ #~ msgid "Kuwait"
20660
+ #~ msgstr "Kuweit"
20661
+
20662
+ #~ msgid "Kiribati"
20663
+ #~ msgstr "Kiribati"
20664
+
20665
+ #~ msgid "Kenya"
20666
+ #~ msgstr "Kenya"
20667
+
20668
+ #~ msgid "Kazakhstan"
20669
+ #~ msgstr "Kazahstan"
20670
+
20671
+ #~ msgid "Jordan"
20672
+ #~ msgstr "Iordania"
20673
+
20674
+ #~ msgid "Jersey"
20675
+ #~ msgstr "Jersey"
20676
+
20677
+ #~ msgid "Japan"
20678
+ #~ msgstr "Japonia"
20679
+
20680
+ #~ msgid "Jamaica"
20681
+ #~ msgstr "Jamaica"
20682
+
20683
+ #~ msgid "Ivory Coast"
20684
+ #~ msgstr "Coasta de Fildeș"
20685
+
20686
+ #~ msgid "Israel"
20687
+ #~ msgstr "Israel"
20688
+
20689
+ #~ msgid "Isle of Man"
20690
+ #~ msgstr "Insula Man"
20691
+
20692
+ #~ msgid "Iraq"
20693
+ #~ msgstr "Iraq"
20694
+
20695
+ #~ msgid "Iran"
20696
+ #~ msgstr "Iran"
20697
+
20698
+ #~ msgid "Indonesia"
20699
+ #~ msgstr "Indonezia"
20700
+
20701
+ #~ msgid "India"
20702
+ #~ msgstr "India"
20703
+
20704
+ #~ msgid "Iceland"
20705
+ #~ msgstr "Islanda"
20706
+
20707
+ #~ msgid "Hungary"
20708
+ #~ msgstr "Ungaria"
20709
+
20710
+ #~ msgid "Hong Kong"
20711
+ #~ msgstr "Hong Kong"
20712
+
20713
+ #~ msgid "Honduras"
20714
+ #~ msgstr "Honduras"
20715
+
20716
+ #~ msgid "Heard Island and McDonald Islands"
20717
+ #~ msgstr "Insula Heard și Insulele McDonald"
20718
+
20719
+ #~ msgid "Haiti"
20720
+ #~ msgstr "Haiti"
20721
+
20722
+ #~ msgid "Guyana"
20723
+ #~ msgstr "Guyana"
20724
+
20725
+ #~ msgid "Guinea-Bissau"
20726
+ #~ msgstr "Guineea-Bissau"
20727
+
20728
+ #~ msgid "Guinea"
20729
+ #~ msgstr "Guineea"
20730
+
20731
+ #~ msgid "Guernsey"
20732
+ #~ msgstr "Guernsey"
20733
+
20734
+ #~ msgid "Guatemala"
20735
+ #~ msgstr "Guatemala"
20736
+
20737
+ #~ msgid "Guadeloupe"
20738
+ #~ msgstr "Guadelupa"
20739
+
20740
+ #~ msgid "Grenada"
20741
+ #~ msgstr "Grenada"
20742
+
20743
+ #~ msgid "Greenland"
20744
+ #~ msgstr "Groenlanda"
20745
+
20746
+ #~ msgid "Greece"
20747
+ #~ msgstr "Grecia"
20748
+
20749
+ #~ msgid "Gibraltar"
20750
+ #~ msgstr "Gibraltar"
20751
+
20752
+ #~ msgid "Ghana"
20753
+ #~ msgstr "Ghana"
20754
+
20755
+ #~ msgid "Germany"
20756
+ #~ msgstr "Germania"
20757
+
20758
+ #~ msgid "Georgia"
20759
+ #~ msgstr "Georgia"
20760
+
20761
+ #~ msgid "Gambia"
20762
+ #~ msgstr "Gambia"
20763
+
20764
+ #~ msgid "Gabon"
20765
+ #~ msgstr "Gabon"
20766
+
20767
+ #~ msgid "French Southern Territories"
20768
+ #~ msgstr "Teritoriile australe și antarctice franceze"
20769
+
20770
+ #~ msgid "French Polynesia"
20771
+ #~ msgstr "Polinezia Franceză"
20772
+
20773
+ #~ msgid "French Guiana"
20774
+ #~ msgstr "Guyana Franceză"
20775
+
20776
+ #~ msgid "France"
20777
+ #~ msgstr "Franța"
20778
+
20779
+ #~ msgid "Finland"
20780
+ #~ msgstr "Finlanda"
20781
+
20782
+ #~ msgid "Fiji"
20783
+ #~ msgstr "Fiji"
20784
+
20785
+ #~ msgid "Faroe Islands"
20786
+ #~ msgstr "Insulele Feroe"
20787
+
20788
+ #~ msgid "Falkland Islands"
20789
+ #~ msgstr "Insulele Falkland"
20790
+
20791
+ #~ msgid "Ethiopia"
20792
+ #~ msgstr "Etiopia"
20793
+
20794
+ #~ msgid "Estonia"
20795
+ #~ msgstr "Estonia"
20796
+
20797
+ #~ msgid "Eritrea"
20798
+ #~ msgstr "Eritreea"
20799
+
20800
+ #~ msgid "Equatorial Guinea"
20801
+ #~ msgstr "Guineea Ecuatorială"
20802
+
20803
+ #~ msgid "El Salvador"
20804
+ #~ msgstr "El Salvador"
20805
+
20806
+ #~ msgid "Egypt"
20807
+ #~ msgstr "Egipt"
20808
+
20809
+ #~ msgid "Ecuador"
20810
+ #~ msgstr "Ecuador"
20811
+
20812
+ #~ msgid "Dominican Republic"
20813
+ #~ msgstr "Republica Dominicană"
20814
+
20815
+ #~ msgid "Dominica"
20816
+ #~ msgstr "Dominica"
20817
+
20818
+ #~ msgid "Djibouti"
20819
+ #~ msgstr "Djibouti"
20820
+
20821
+ #~ msgid "Denmark"
20822
+ #~ msgstr "Danemarca"
20823
+
20824
+ #~ msgid "Czech Republic"
20825
+ #~ msgstr "Cehia"
20826
+
20827
+ #~ msgid "Cyprus"
20828
+ #~ msgstr "Cipru"
20829
+
20830
+ #~ msgid "Cura&ccedil;ao"
20831
+ #~ msgstr "Curaçao"
20832
+
20833
+ #~ msgid "Cuba"
20834
+ #~ msgstr "Cuba"
20835
+
20836
+ #~ msgid "Croatia"
20837
+ #~ msgstr "Croația"
20838
+
20839
+ #~ msgid "Costa Rica"
20840
+ #~ msgstr "Costa Rica"
20841
+
20842
+ #~ msgid "Cook Islands"
20843
+ #~ msgstr "Insulele Cook"
20844
+
20845
+ #~ msgid "Congo (Kinshasa)"
20846
+ #~ msgstr "Congo (Kinshasa)"
20847
+
20848
+ #~ msgid "Congo (Brazzaville)"
20849
+ #~ msgstr "Congo (Brazzaville)"
20850
+
20851
+ #~ msgid "Comoros"
20852
+ #~ msgstr "Comore"
20853
+
20854
+ #~ msgid "Colombia"
20855
+ #~ msgstr "Columbia"
20856
+
20857
+ #~ msgid "Cocos (Keeling) Islands"
20858
+ #~ msgstr "Insulele Cocos (Keeling)"
20859
+
20860
+ #~ msgid "Christmas Island"
20861
+ #~ msgstr "Insula Crăciunului"
20862
+
20863
+ #~ msgid "China"
20864
+ #~ msgstr "China"
20865
+
20866
+ #~ msgid "Chile"
20867
+ #~ msgstr "Chile"
20868
+
20869
+ #~ msgid "Chad"
20870
+ #~ msgstr "Ciad"
20871
+
20872
+ #~ msgid "Central African Republic"
20873
+ #~ msgstr "Republica Centrafricană"
20874
+
20875
+ #~ msgid "Cayman Islands"
20876
+ #~ msgstr "Insulele Cayman"
20877
+
20878
+ #~ msgid "Cape Verde"
20879
+ #~ msgstr "Republica Capului Verde"
20880
+
20881
+ #~ msgid "Canada"
20882
+ #~ msgstr "Canada"
20883
+
20884
+ #~ msgid "Cameroon"
20885
+ #~ msgstr "Camerun"
20886
+
20887
+ #~ msgid "Cambodia"
20888
+ #~ msgstr "Cambodgia"
20889
+
20890
+ #~ msgid "Burundi"
20891
+ #~ msgstr "Burundi"
20892
+
20893
+ #~ msgid "Burkina Faso"
20894
+ #~ msgstr "Burkina Faso"
20895
+
20896
+ #~ msgid "Bulgaria"
20897
+ #~ msgstr "Bulgaria"
20898
+
20899
+ #~ msgid "Brunei"
20900
+ #~ msgstr "Brunei"
20901
+
20902
+ #~ msgid "British Virgin Islands"
20903
+ #~ msgstr "Insulele Virgine Britanice"
20904
+
20905
+ #~ msgid "British Indian Ocean Territory"
20906
+ #~ msgstr "Teritoriul Britanic din Oceanul Indian"
20907
+
20908
+ #~ msgid "Brazil"
20909
+ #~ msgstr "Brazilia"
20910
+
20911
+ #~ msgid "Bouvet Island"
20912
+ #~ msgstr "Insula Bouvet"
20913
+
20914
+ #~ msgid "Botswana"
20915
+ #~ msgstr "Botswana"
20916
+
20917
+ #~ msgid "Bosnia and Herzegovina"
20918
+ #~ msgstr "Bosnia și Herțegovina"
20919
+
20920
+ #~ msgid "Bonaire, Saint Eustatius and Saba"
20921
+ #~ msgstr "Bonaire, Saint Eustatius și Saba"
20922
+
20923
+ #~ msgid "Bolivia"
20924
+ #~ msgstr "Bolivia"
20925
+
20926
+ #~ msgid "Bhutan"
20927
+ #~ msgstr "Bhutan"
20928
+
20929
+ #~ msgid "Bermuda"
20930
+ #~ msgstr "Bermuda"
20931
+
20932
+ #~ msgid "Benin"
20933
+ #~ msgstr "Benin"
20934
+
20935
+ #~ msgid "Belize"
20936
+ #~ msgstr "Belize"
20937
+
20938
+ #~ msgid "Belau"
20939
+ #~ msgstr "Belau"
20940
+
20941
+ #~ msgid "Belgium"
20942
+ #~ msgstr "Belgia"
20943
+
20944
+ #~ msgid "Belarus"
20945
+ #~ msgstr "Belarus"
20946
+
20947
+ #~ msgid "Barbados"
20948
+ #~ msgstr "Barbados"
20949
+
20950
+ #~ msgid "Bangladesh"
20951
+ #~ msgstr "Bangladesh"
20952
+
20953
+ #~ msgid "Bahrain"
20954
+ #~ msgstr "Bahrain"
20955
+
20956
+ #~ msgid "Bahamas"
20957
+ #~ msgstr "Bahamas"
20958
+
20959
+ #~ msgid "Azerbaijan"
20960
+ #~ msgstr "Azerbaidjan"
20961
+
20962
+ #~ msgid "Austria"
20963
+ #~ msgstr "Austria"
20964
+
20965
+ #~ msgid "Australia"
20966
+ #~ msgstr "Australia"
20967
+
20968
+ #~ msgid "Aruba"
20969
+ #~ msgstr "Aruba"
20970
+
20971
+ #~ msgid "Armenia"
20972
+ #~ msgstr "Armenia"
20973
+
20974
+ #~ msgid "Argentina"
20975
+ #~ msgstr "Argentina"
20976
+
20977
+ #~ msgid "Antigua and Barbuda"
20978
+ #~ msgstr "Antigua și Barbuda"
20979
+
20980
+ #~ msgid "Antarctica"
20981
+ #~ msgstr "Antarctica"
20982
+
20983
+ #~ msgid "Anguilla"
20984
+ #~ msgstr "Anguilla"
20985
+
20986
+ #~ msgid "Angola"
20987
+ #~ msgstr "Angola"
20988
+
20989
+ #~ msgid "Andorra"
20990
+ #~ msgstr "Andorra"
20991
+
20992
+ #~ msgid "Algeria"
20993
+ #~ msgstr "Algeria"
20994
+
20995
+ #~ msgid "Albania"
20996
+ #~ msgstr "Albania"
20997
+
20998
+ #~ msgid "&#197;land Islands"
20999
+ #~ msgstr "Insulele Åland"
21000
+
21001
+ #~ msgid "Afghanistan"
21002
+ #~ msgstr "Afganistan"
languages/kadence-woocommerce-email-designer.pot CHANGED
@@ -2,7 +2,7 @@
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Kadence Woocommerce Email Designer\n"
5
- "POT-Creation-Date: 2018-09-27 11:20-0600\n"
6
  "PO-Revision-Date: 2015-05-08 13:15-0700\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -108,8 +108,8 @@ msgid "Bundled Icon"
108
  msgstr ""
109
 
110
  #: includes/class-customizer-repeater-control.php:347
111
- #: includes/class-kadence-woomail-settings.php:1382
112
- #: includes/class-kadence-woomail-settings.php:1423
113
  msgid "None"
114
  msgstr ""
115
 
@@ -310,7 +310,7 @@ msgid "Custom Styles"
310
  msgstr ""
311
 
312
  #: includes/class-kadence-woomail-settings.php:209
313
- #: includes/class-kadence-woomail-settings.php:2089
314
  msgid "Import Export"
315
  msgstr ""
316
 
@@ -407,717 +407,729 @@ msgstr ""
407
  msgid "Body Partial Refund Text"
408
  msgstr ""
409
 
410
- #: includes/class-kadence-woomail-settings.php:581
411
  msgid "Switch off for unpaid preview"
412
  msgstr ""
413
 
414
- #: includes/class-kadence-woomail-settings.php:596
415
  msgid "Body Invoice Paid Text"
416
  msgstr ""
417
 
418
- #: includes/class-kadence-woomail-settings.php:610
419
- #: includes/class-kadence-woomail-settings.php:638
420
  msgid "Body Invoice Pending Payment Text"
421
  msgstr ""
422
 
423
- #: includes/class-kadence-woomail-settings.php:624
424
  msgid "Body Invoice Failed Text"
425
  msgstr ""
426
 
427
- #: includes/class-kadence-woomail-settings.php:652
428
  msgid "Body Text"
429
  msgstr ""
430
 
431
- #: includes/class-kadence-woomail-settings.php:670
432
  msgid "Content Width"
433
  msgstr ""
434
 
435
- #: includes/class-kadence-woomail-settings.php:690
436
  msgid "Border radius"
437
  msgstr ""
438
 
439
- #: includes/class-kadence-woomail-settings.php:706
440
- #: includes/class-kadence-woomail-settings.php:1618
441
  msgid "Border Width"
442
  msgstr ""
443
 
444
- #: includes/class-kadence-woomail-settings.php:722
445
  msgid "Border color"
446
  msgstr ""
447
 
448
- #: includes/class-kadence-woomail-settings.php:733
449
  msgid "Shadow"
450
  msgstr ""
451
 
452
- #: includes/class-kadence-woomail-settings.php:749
453
  msgid "Container Top Padding"
454
  msgstr ""
455
 
456
- #: includes/class-kadence-woomail-settings.php:765
457
  msgid "Container Botom Padding"
458
  msgstr ""
459
 
460
- #: includes/class-kadence-woomail-settings.php:782
461
  msgid "Image Align"
462
  msgstr ""
463
 
464
- #: includes/class-kadence-woomail-settings.php:794
465
  msgid "Image Max Width"
466
  msgstr ""
467
 
468
- #: includes/class-kadence-woomail-settings.php:809
469
- #: includes/class-kadence-woomail-settings.php:836
470
  msgid "Background color"
471
  msgstr ""
472
 
473
- #: includes/class-kadence-woomail-settings.php:820
474
  msgid "Padding top/bottom"
475
  msgstr ""
476
 
477
- #: includes/class-kadence-woomail-settings.php:847
478
  msgid "Text align"
479
  msgstr ""
480
 
481
- #: includes/class-kadence-woomail-settings.php:861
482
- #: includes/class-kadence-woomail-settings.php:1106
483
  msgid "Padding Top"
484
  msgstr ""
485
 
486
- #: includes/class-kadence-woomail-settings.php:877
487
- #: includes/class-kadence-woomail-settings.php:1122
488
  msgid "Padding Bottom"
489
  msgstr ""
490
 
491
- #: includes/class-kadence-woomail-settings.php:894
492
  msgid "Padding left/right"
493
  msgstr ""
494
 
495
- #: includes/class-kadence-woomail-settings.php:910
496
  msgid "Heading Font size"
497
  msgstr ""
498
 
499
- #: includes/class-kadence-woomail-settings.php:926
500
  msgid "Heading Line Height"
501
  msgstr ""
502
 
503
- #: includes/class-kadence-woomail-settings.php:942
504
  msgid "Heading Font family"
505
  msgstr ""
506
 
507
- #: includes/class-kadence-woomail-settings.php:954
508
  msgid "Heading Font Style"
509
  msgstr ""
510
 
511
- #: includes/class-kadence-woomail-settings.php:960
512
- #: includes/class-kadence-woomail-settings.php:1067
513
- #: includes/class-kadence-woomail-settings.php:1349
514
- #: includes/class-kadence-woomail-settings.php:1538
515
- #: includes/class-kadence-woomail-settings.php:1580
516
- #: includes/class-kadence-woomail-settings.php:1673
517
- msgid "Normal"
518
- msgstr ""
519
-
520
  #: includes/class-kadence-woomail-settings.php:961
521
  #: includes/class-kadence-woomail-settings.php:1068
522
  #: includes/class-kadence-woomail-settings.php:1350
523
  #: includes/class-kadence-woomail-settings.php:1539
 
 
 
 
 
 
 
 
 
524
  msgid "Italic"
525
  msgstr ""
526
 
527
- #: includes/class-kadence-woomail-settings.php:969
528
  msgid "Heading Font weight"
529
  msgstr ""
530
 
531
- #: includes/class-kadence-woomail-settings.php:985
532
  msgid "Heading Text color"
533
  msgstr ""
534
 
535
- #: includes/class-kadence-woomail-settings.php:997
536
  msgid "Subtitle Settings"
537
  msgstr ""
538
 
539
- #: includes/class-kadence-woomail-settings.php:1004
540
  msgid "Subtitle Placement"
541
  msgstr ""
542
 
543
- #: includes/class-kadence-woomail-settings.php:1010
544
  msgid "Below Heading"
545
  msgstr ""
546
 
547
- #: includes/class-kadence-woomail-settings.php:1011
548
  msgid "Above Heading"
549
  msgstr ""
550
 
551
- #: includes/class-kadence-woomail-settings.php:1017
552
  msgid "Subtitle Font Size"
553
  msgstr ""
554
 
555
- #: includes/class-kadence-woomail-settings.php:1033
556
  msgid "Subtitle Line Height"
557
  msgstr ""
558
 
559
- #: includes/class-kadence-woomail-settings.php:1049
560
  msgid "Subtitle Font Family"
561
  msgstr ""
562
 
563
- #: includes/class-kadence-woomail-settings.php:1061
564
  msgid "Subtitle Font Style"
565
  msgstr ""
566
 
567
- #: includes/class-kadence-woomail-settings.php:1077
568
  msgid "Subtitle Font weight"
569
  msgstr ""
570
 
571
- #: includes/class-kadence-woomail-settings.php:1094
572
  msgid "Subtitle Text color"
573
  msgstr ""
574
 
575
- #: includes/class-kadence-woomail-settings.php:1138
576
  msgid "Padding Left/Right"
577
  msgstr ""
578
 
579
- #: includes/class-kadence-woomail-settings.php:1156
580
- #: includes/class-kadence-woomail-settings.php:1990
581
  msgid "Font Size"
582
  msgstr ""
583
 
584
- #: includes/class-kadence-woomail-settings.php:1173
585
  msgid "Line Height"
586
  msgstr ""
587
 
588
- #: includes/class-kadence-woomail-settings.php:1190
589
- #: includes/class-kadence-woomail-settings.php:2006
590
  msgid "Font Family"
591
  msgstr ""
592
 
593
- #: includes/class-kadence-woomail-settings.php:1204
594
- #: includes/class-kadence-woomail-settings.php:2019
595
  msgid "Font weight"
596
  msgstr ""
597
 
598
- #: includes/class-kadence-woomail-settings.php:1220
599
  msgid "Link Color"
600
  msgstr ""
601
 
602
- #: includes/class-kadence-woomail-settings.php:1234
603
  msgid "H2 Font Size"
604
  msgstr ""
605
 
606
- #: includes/class-kadence-woomail-settings.php:1250
607
  msgid "H2 Line Height"
608
  msgstr ""
609
 
610
- #: includes/class-kadence-woomail-settings.php:1266
611
  msgid "H2 Padding Top"
612
  msgstr ""
613
 
614
- #: includes/class-kadence-woomail-settings.php:1282
615
  msgid "H2 Padding Bottom"
616
  msgstr ""
617
 
618
- #: includes/class-kadence-woomail-settings.php:1298
619
  msgid "H2 Margin Top"
620
  msgstr ""
621
 
622
- #: includes/class-kadence-woomail-settings.php:1314
623
  msgid "H2 Margin Bottom"
624
  msgstr ""
625
 
626
- #: includes/class-kadence-woomail-settings.php:1330
627
  msgid "H2 Font Family"
628
  msgstr ""
629
 
630
- #: includes/class-kadence-woomail-settings.php:1343
631
  msgid "H2 Font Style"
632
  msgstr ""
633
 
634
- #: includes/class-kadence-woomail-settings.php:1359
635
  msgid "H2 Font weight"
636
  msgstr ""
637
 
638
- #: includes/class-kadence-woomail-settings.php:1376
639
  msgid "H2 Text Transform"
640
  msgstr ""
641
 
642
- #: includes/class-kadence-woomail-settings.php:1383
643
  msgid "Uppercase"
644
  msgstr ""
645
 
646
- #: includes/class-kadence-woomail-settings.php:1384
647
  msgid "Lowercase"
648
  msgstr ""
649
 
650
- #: includes/class-kadence-woomail-settings.php:1385
651
  msgid "Capitalize"
652
  msgstr ""
653
 
654
- #: includes/class-kadence-woomail-settings.php:1393
655
  msgid "H2 Color"
656
  msgstr ""
657
 
658
- #: includes/class-kadence-woomail-settings.php:1405
659
  msgid "H2 Text Align"
660
  msgstr ""
661
 
662
- #: includes/class-kadence-woomail-settings.php:1417
663
  msgid "H2 Separator"
664
  msgstr ""
665
 
666
- #: includes/class-kadence-woomail-settings.php:1424
667
  msgid "Separator below"
668
  msgstr ""
669
 
670
- #: includes/class-kadence-woomail-settings.php:1425
671
  msgid "Separator above"
672
  msgstr ""
673
 
674
- #: includes/class-kadence-woomail-settings.php:1430
675
  msgid "H2 Separator height"
676
  msgstr ""
677
 
678
- #: includes/class-kadence-woomail-settings.php:1448
679
  msgid "H2 Separator Style"
680
  msgstr ""
681
 
682
- #: includes/class-kadence-woomail-settings.php:1454
683
- #: includes/class-kadence-woomail-settings.php:1652
684
- #: includes/class-kadence-woomail-settings.php:1723
685
- #: includes/class-kadence-woomail-settings.php:1964
686
  msgid "Solid"
687
  msgstr ""
688
 
689
- #: includes/class-kadence-woomail-settings.php:1455
690
- #: includes/class-kadence-woomail-settings.php:1653
691
- #: includes/class-kadence-woomail-settings.php:1724
692
- #: includes/class-kadence-woomail-settings.php:1965
693
  msgid "Double"
694
  msgstr ""
695
 
696
- #: includes/class-kadence-woomail-settings.php:1456
697
- #: includes/class-kadence-woomail-settings.php:1654
698
- #: includes/class-kadence-woomail-settings.php:1725
699
- #: includes/class-kadence-woomail-settings.php:1966
700
  msgid "Groove"
701
  msgstr ""
702
 
703
- #: includes/class-kadence-woomail-settings.php:1457
704
- #: includes/class-kadence-woomail-settings.php:1655
705
- #: includes/class-kadence-woomail-settings.php:1726
706
- #: includes/class-kadence-woomail-settings.php:1967
707
  msgid "Dotted"
708
  msgstr ""
709
 
710
- #: includes/class-kadence-woomail-settings.php:1458
711
- #: includes/class-kadence-woomail-settings.php:1656
712
- #: includes/class-kadence-woomail-settings.php:1727
713
- #: includes/class-kadence-woomail-settings.php:1968
714
  msgid "Dashed"
715
  msgstr ""
716
 
717
- #: includes/class-kadence-woomail-settings.php:1459
718
- #: includes/class-kadence-woomail-settings.php:1657
719
- #: includes/class-kadence-woomail-settings.php:1728
720
- #: includes/class-kadence-woomail-settings.php:1969
721
  msgid "Ridge"
722
  msgstr ""
723
 
724
- #: includes/class-kadence-woomail-settings.php:1468
725
  msgid "H2 Separator Color"
726
  msgstr ""
727
 
728
- #: includes/class-kadence-woomail-settings.php:1481
729
  msgid "H3 Settings"
730
  msgstr ""
731
 
732
- #: includes/class-kadence-woomail-settings.php:1488
733
  msgid "H3 Font Size"
734
  msgstr ""
735
 
736
- #: includes/class-kadence-woomail-settings.php:1504
737
  msgid "H3 Line Height"
738
  msgstr ""
739
 
740
- #: includes/class-kadence-woomail-settings.php:1520
741
  msgid "H3 Font Family"
742
  msgstr ""
743
 
744
- #: includes/class-kadence-woomail-settings.php:1532
745
  msgid "H3 Font Style"
746
  msgstr ""
747
 
748
- #: includes/class-kadence-woomail-settings.php:1547
749
  msgid "H3 Font weight"
750
  msgstr ""
751
 
752
- #: includes/class-kadence-woomail-settings.php:1563
753
  msgid "H3 Color"
754
  msgstr ""
755
 
756
- #: includes/class-kadence-woomail-settings.php:1574
757
  msgid "Order Table Style"
758
  msgstr ""
759
 
760
- #: includes/class-kadence-woomail-settings.php:1581
761
  msgid "Light"
762
  msgstr ""
763
 
764
- #: includes/class-kadence-woomail-settings.php:1586
 
 
 
 
 
 
 
 
 
 
 
 
765
  msgid "Order Table Background color"
766
  msgstr ""
767
 
768
- #: includes/class-kadence-woomail-settings.php:1598
769
  msgid "Padding"
770
  msgstr ""
771
 
772
- #: includes/class-kadence-woomail-settings.php:1635
773
  msgid "Border Color"
774
  msgstr ""
775
 
776
- #: includes/class-kadence-woomail-settings.php:1646
777
  msgid "Border Style"
778
  msgstr ""
779
 
780
- #: includes/class-kadence-woomail-settings.php:1667
781
  msgid "Order Table Heading Style"
782
  msgstr ""
783
 
784
- #: includes/class-kadence-woomail-settings.php:1674
785
  msgid "Split"
786
  msgstr ""
787
 
788
- #: includes/class-kadence-woomail-settings.php:1679
789
  msgid "Address Box Background color"
790
  msgstr ""
791
 
792
- #: includes/class-kadence-woomail-settings.php:1690
793
  msgid "Address Box Border Width"
794
  msgstr ""
795
 
796
- #: includes/class-kadence-woomail-settings.php:1706
797
  msgid "Address Box Border Color"
798
  msgstr ""
799
 
800
- #: includes/class-kadence-woomail-settings.php:1717
801
  msgid "Address Box Border Style"
802
  msgstr ""
803
 
804
- #: includes/class-kadence-woomail-settings.php:1736
805
  msgid "Address Box Text Color"
806
  msgstr ""
807
 
808
- #: includes/class-kadence-woomail-settings.php:1747
809
  msgid "Address Box Text Align"
810
  msgstr ""
811
 
812
- #: includes/class-kadence-woomail-settings.php:1759
813
  msgid "Footer Background Placement"
814
  msgstr ""
815
 
816
- #: includes/class-kadence-woomail-settings.php:1765
817
  msgid "Inside Body Container"
818
  msgstr ""
819
 
820
- #: includes/class-kadence-woomail-settings.php:1766
821
  msgid "Outside Body Container"
822
  msgstr ""
823
 
824
- #: includes/class-kadence-woomail-settings.php:1771
825
  msgid "Footer Background Color"
826
  msgstr ""
827
 
828
- #: includes/class-kadence-woomail-settings.php:1782
829
- #: includes/class-kadence-woomail-settings.php:1899
830
- #: includes/class-kadence-woomail-settings.php:2047
831
  msgid "Top Padding"
832
  msgstr ""
833
 
834
- #: includes/class-kadence-woomail-settings.php:1798
835
- #: includes/class-kadence-woomail-settings.php:1915
836
- #: includes/class-kadence-woomail-settings.php:2063
837
  msgid "Bottom Padding"
838
  msgstr ""
839
 
840
- #: includes/class-kadence-woomail-settings.php:1814
841
  msgid "Left/Right Padding"
842
  msgstr ""
843
 
844
- #: includes/class-kadence-woomail-settings.php:1830
845
  msgid "Footer Social Options"
846
  msgstr ""
847
 
848
- #: includes/class-kadence-woomail-settings.php:1844
849
  msgid "Footer Social Title Color"
850
  msgstr ""
851
 
852
- #: includes/class-kadence-woomail-settings.php:1855
853
  msgid "Footer Social Title Font Size"
854
  msgstr ""
855
 
856
- #: includes/class-kadence-woomail-settings.php:1871
857
  msgid "Footer Social Title Font Family"
858
  msgstr ""
859
 
860
- #: includes/class-kadence-woomail-settings.php:1883
861
  msgid "Footer Social Title Font Weight"
862
  msgstr ""
863
 
864
- #: includes/class-kadence-woomail-settings.php:1931
865
  msgid "Footer Social Bottom Border Width"
866
  msgstr ""
867
 
868
- #: includes/class-kadence-woomail-settings.php:1947
869
  msgid "Footer Social Bottom Border Color"
870
  msgstr ""
871
 
872
- #: includes/class-kadence-woomail-settings.php:1958
873
  msgid "Footer Social Bottom Border Style"
874
  msgstr ""
875
 
876
- #: includes/class-kadence-woomail-settings.php:1977
877
  msgid "Text Align"
878
  msgstr ""
879
 
880
- #: includes/class-kadence-woomail-settings.php:2036
881
  msgid "Text Color"
882
  msgstr ""
883
 
884
- #: includes/class-kadence-woomail-settings.php:2078
885
  msgid "Custom CSS"
886
  msgstr ""
887
 
888
- #: includes/class-kadence-woomail-settings.php:2095
889
  msgid "Preview Email Recipient"
890
  msgstr ""
891
 
892
- #: includes/class-kadence-woomail-settings.php:2096
893
  msgid "Enter recipients (comma separated) for preview emails"
894
  msgstr ""
895
 
896
- #: includes/class-kadence-woomail-settings.php:2139
897
- #: includes/class-kadence-woomail-settings.php:2166
898
  msgid "New customer order"
899
  msgstr ""
900
 
901
- #: includes/class-kadence-woomail-settings.php:2140
902
- #: includes/class-kadence-woomail-settings.php:2181
903
  msgid "[{site_title}] New customer order ({order_number}) - {order_date}"
904
  msgstr ""
905
 
906
- #: includes/class-kadence-woomail-settings.php:2141
907
  msgid ""
908
  "You have received a subscription renewal order from {customer_full_name}. "
909
  "Their order is as follows:"
910
  msgstr ""
911
 
912
- #: includes/class-kadence-woomail-settings.php:2142
913
- #: includes/class-kadence-woomail-settings.php:2168
914
- #: includes/class-kadence-woomail-settings.php:2173
915
  msgid "Thank you for your order"
916
  msgstr ""
917
 
918
- #: includes/class-kadence-woomail-settings.php:2143
919
- #: includes/class-kadence-woomail-settings.php:2183
920
- #: includes/class-kadence-woomail-settings.php:2189
921
  msgid "Your {site_title} order receipt from {order_date}"
922
  msgstr ""
923
 
924
- #: includes/class-kadence-woomail-settings.php:2144
925
  msgid ""
926
  "Your subscription renewal order has been received and is now being "
927
  "processed. Your order details are shown below for your reference:"
928
  msgstr ""
929
 
930
- #: includes/class-kadence-woomail-settings.php:2145
931
- #: includes/class-kadence-woomail-settings.php:2148
932
- #: includes/class-kadence-woomail-settings.php:2169
933
  msgid "Your order is complete"
934
  msgstr ""
935
 
936
- #: includes/class-kadence-woomail-settings.php:2146
937
- #: includes/class-kadence-woomail-settings.php:2149
938
- #: includes/class-kadence-woomail-settings.php:2184
939
  msgid "Your {site_title} order from {order_date} is complete"
940
  msgstr ""
941
 
942
- #: includes/class-kadence-woomail-settings.php:2147
943
  msgid ""
944
  "Hi there. Your subscription renewal order with {site_title} has been "
945
  "completed. Your order details are shown below for your reference:"
946
  msgstr ""
947
 
948
- #: includes/class-kadence-woomail-settings.php:2150
949
  msgid ""
950
  "Hi there. You have successfully changed your subscription items on "
951
  "{site_title}. Your new order and subscription details are shown below for "
952
  "your reference:"
953
  msgstr ""
954
 
955
- #: includes/class-kadence-woomail-settings.php:2152
956
- #: includes/class-kadence-woomail-settings.php:2153
957
- #: includes/class-kadence-woomail-settings.php:2174
958
- #: includes/class-kadence-woomail-settings.php:2191
959
  msgid "Invoice for order {order_number}"
960
  msgstr ""
961
 
962
- #: includes/class-kadence-woomail-settings.php:2154
963
  msgid ""
964
  "An invoice has been created for you to renew your subscription with "
965
  "{site_title}. To pay for this invoice please use the following link: "
966
  "{invoice_pay_link}"
967
  msgstr ""
968
 
969
- #: includes/class-kadence-woomail-settings.php:2155
970
  msgid ""
971
  "The automatic payment to renew your subscription with {site_title} has "
972
  "failed. To reactivate the subscription, please login and pay for the renewal "
973
  "from your account page: {invoice_pay_link}"
974
  msgstr ""
975
 
976
- #: includes/class-kadence-woomail-settings.php:2158
977
  msgid "Subscription Cancelled"
978
  msgstr ""
979
 
980
- #: includes/class-kadence-woomail-settings.php:2159
981
  msgid "[{site_title}] Subscription Cancelled"
982
  msgstr ""
983
 
984
- #: includes/class-kadence-woomail-settings.php:2160
985
  msgid ""
986
  "A subscription belonging to {customer_full_name} has been cancelled. Their "
987
  "subscription's details are as follows:"
988
  msgstr ""
989
 
990
- #: includes/class-kadence-woomail-settings.php:2163
991
  msgid "Automatic payment failed for order {order_number}"
992
  msgstr ""
993
 
994
- #: includes/class-kadence-woomail-settings.php:2164
995
  msgid "Automatic payment failed for {order_number}, we will retry {retry_time}"
996
  msgstr ""
997
 
998
- #: includes/class-kadence-woomail-settings.php:2167
999
  msgid "Cancelled order"
1000
  msgstr ""
1001
 
1002
- #: includes/class-kadence-woomail-settings.php:2170
1003
  msgid "Order {order_number} details"
1004
  msgstr ""
1005
 
1006
- #: includes/class-kadence-woomail-settings.php:2171
1007
  msgid "Your order has been partially refunded"
1008
  msgstr ""
1009
 
1010
- #: includes/class-kadence-woomail-settings.php:2175
1011
  msgid "Your order details"
1012
  msgstr ""
1013
 
1014
- #: includes/class-kadence-woomail-settings.php:2176
1015
  msgid "Failed order"
1016
  msgstr ""
1017
 
1018
- #: includes/class-kadence-woomail-settings.php:2177
1019
  msgid "Welcome to {site_title}"
1020
  msgstr ""
1021
 
1022
- #: includes/class-kadence-woomail-settings.php:2178
1023
  msgid "A note has been added to your order"
1024
  msgstr ""
1025
 
1026
- #: includes/class-kadence-woomail-settings.php:2179
1027
  msgid "Password reset instructions"
1028
  msgstr ""
1029
 
1030
- #: includes/class-kadence-woomail-settings.php:2182
1031
  msgid "[{site_title}] Cancelled order ({order_number})"
1032
  msgstr ""
1033
 
1034
- #: includes/class-kadence-woomail-settings.php:2186
1035
  msgid "Your {site_title} order from {order_date} has been refunded"
1036
  msgstr ""
1037
 
1038
- #: includes/class-kadence-woomail-settings.php:2187
1039
  msgid "Your {site_title} order from {order_date} has been partially refunded"
1040
  msgstr ""
1041
 
1042
- #: includes/class-kadence-woomail-settings.php:2192
1043
  msgid "Your {site_title} order from {order_date}"
1044
  msgstr ""
1045
 
1046
- #: includes/class-kadence-woomail-settings.php:2194
1047
  msgid "[{site_title}] Failed order ({order_number})"
1048
  msgstr ""
1049
 
1050
- #: includes/class-kadence-woomail-settings.php:2195
1051
  msgid "Your account on {site_title}"
1052
  msgstr ""
1053
 
1054
- #: includes/class-kadence-woomail-settings.php:2196
1055
  msgid "Note added to your {site_title} order from {order_date}"
1056
  msgstr ""
1057
 
1058
- #: includes/class-kadence-woomail-settings.php:2197
1059
  msgid "Password reset for {site_title}"
1060
  msgstr ""
1061
 
1062
- #: includes/class-kadence-woomail-settings.php:2199
1063
  msgid ""
1064
  "You have received an order from {customer_full_name}. The order is as "
1065
  "follows:"
1066
  msgstr ""
1067
 
1068
- #: includes/class-kadence-woomail-settings.php:2200
1069
  msgid ""
1070
  "The order {order_number} from {customer_full_name} has been cancelled. The "
1071
  "order was as follows:"
1072
  msgstr ""
1073
 
1074
- #: includes/class-kadence-woomail-settings.php:2201
1075
  msgid ""
1076
  "Your order has been received and is now being processed. Your order details "
1077
  "are shown below for your reference:"
1078
  msgstr ""
1079
 
1080
- #: includes/class-kadence-woomail-settings.php:2202
1081
  msgid ""
1082
  "Hi there. Your recent order on {site_title} has been completed. Your order "
1083
  "details are shown below for your reference:"
1084
  msgstr ""
1085
 
1086
- #: includes/class-kadence-woomail-settings.php:2204
1087
  msgid "Hi there. Your order on {site_title} has been refunded."
1088
  msgstr ""
1089
 
1090
- #: includes/class-kadence-woomail-settings.php:2205
1091
  msgid "Hi there. Your order on {site_title} has been partially refunded."
1092
  msgstr ""
1093
 
1094
- #: includes/class-kadence-woomail-settings.php:2207
1095
  msgid ""
1096
  "Your order is on-hold until we confirm payment has been received. Your order "
1097
  "details are shown below for your reference:"
1098
  msgstr ""
1099
 
1100
- #: includes/class-kadence-woomail-settings.php:2209
1101
  msgid "An order has been created for you on {site_title}. {invoice_pay_link}"
1102
  msgstr ""
1103
 
1104
- #: includes/class-kadence-woomail-settings.php:2211
1105
  msgid ""
1106
  "Payment for order {order_number} from {customer_full_name} has failed. The "
1107
  "order was as follows:"
1108
  msgstr ""
1109
 
1110
- #: includes/class-kadence-woomail-settings.php:2212
1111
  msgid ""
1112
  "Thanks for creating an account on {site_title}. Your username is "
1113
  "{customer_username}"
1114
  msgstr ""
1115
 
1116
- #: includes/class-kadence-woomail-settings.php:2213
1117
  msgid "Hello, a note has just been added to your order:"
1118
  msgstr ""
1119
 
1120
- #: includes/class-kadence-woomail-settings.php:2214
1121
  msgid ""
1122
  "Someone requested that the password be reset for the following account:\n"
1123
  "\n"
@@ -1128,66 +1140,66 @@ msgid ""
1128
  "To reset your password, visit the following address:"
1129
  msgstr ""
1130
 
1131
- #: includes/class-kadence-woomail-settings.php:2350
1132
  msgid "none"
1133
  msgstr ""
1134
 
1135
- #: includes/class-kadence-woomail-settings.php:2351
1136
  msgid "hidden"
1137
  msgstr ""
1138
 
1139
- #: includes/class-kadence-woomail-settings.php:2352
1140
  msgid "dotted"
1141
  msgstr ""
1142
 
1143
- #: includes/class-kadence-woomail-settings.php:2353
1144
  msgid "dashed"
1145
  msgstr ""
1146
 
1147
- #: includes/class-kadence-woomail-settings.php:2354
1148
  msgid "solid"
1149
  msgstr ""
1150
 
1151
- #: includes/class-kadence-woomail-settings.php:2355
1152
  msgid "double"
1153
  msgstr ""
1154
 
1155
- #: includes/class-kadence-woomail-settings.php:2356
1156
  msgid "groove"
1157
  msgstr ""
1158
 
1159
- #: includes/class-kadence-woomail-settings.php:2357
1160
  msgid "ridge"
1161
  msgstr ""
1162
 
1163
- #: includes/class-kadence-woomail-settings.php:2358
1164
  msgid "inset"
1165
  msgstr ""
1166
 
1167
- #: includes/class-kadence-woomail-settings.php:2359
1168
  msgid "outset"
1169
  msgstr ""
1170
 
1171
- #: includes/class-kadence-woomail-settings.php:2371
1172
- #: includes/class-kadence-woomail-settings.php:2379
1173
  msgid "Left"
1174
  msgstr ""
1175
 
1176
- #: includes/class-kadence-woomail-settings.php:2372
1177
- #: includes/class-kadence-woomail-settings.php:2380
1178
  msgid "Center"
1179
  msgstr ""
1180
 
1181
- #: includes/class-kadence-woomail-settings.php:2373
1182
- #: includes/class-kadence-woomail-settings.php:2381
1183
  msgid "Right"
1184
  msgstr ""
1185
 
1186
- #: includes/class-kadence-woomail-settings.php:2374
1187
  msgid "Justify"
1188
  msgstr ""
1189
 
1190
- #: includes/class-kadence-woomail-settings.php:2394
1191
  msgid "Mockup Order"
1192
  msgstr ""
1193
 
@@ -1211,26 +1223,26 @@ msgid ""
1211
  "Email Designer</a> plugin by <a href=\"%s\">Kadence Themes</a>."
1212
  msgstr ""
1213
 
1214
- #: kadence-woocommerce-email-designer.php:108
1215
  msgid ""
1216
  "Kadence Woocommerce Email Designer requires WooCommerce to be active to work"
1217
  msgstr ""
1218
 
1219
- #: kadence-woocommerce-email-designer.php:204
1220
  msgid "Pay for this order"
1221
  msgstr ""
1222
 
1223
- #: kadence-woocommerce-email-designer.php:212
1224
- #: kadence-woocommerce-email-designer.php:216
1225
  msgid "Pay Now &raquo;"
1226
  msgstr ""
1227
 
1228
- #: kadence-woocommerce-email-designer.php:361
1229
- #: kadence-woocommerce-email-designer.php:362
1230
  msgid "Email Customizer"
1231
  msgstr ""
1232
 
1233
- #: kadence-woocommerce-email-designer.php:375
1234
  msgid "Open Email Designer"
1235
  msgstr ""
1236
 
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Kadence Woocommerce Email Designer\n"
5
+ "POT-Creation-Date: 2018-10-29 12:45-0600\n"
6
  "PO-Revision-Date: 2015-05-08 13:15-0700\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
108
  msgstr ""
109
 
110
  #: includes/class-customizer-repeater-control.php:347
111
+ #: includes/class-kadence-woomail-settings.php:1383
112
+ #: includes/class-kadence-woomail-settings.php:1424
113
  msgid "None"
114
  msgstr ""
115
 
310
  msgstr ""
311
 
312
  #: includes/class-kadence-woomail-settings.php:209
313
+ #: includes/class-kadence-woomail-settings.php:2102
314
  msgid "Import Export"
315
  msgstr ""
316
 
407
  msgid "Body Partial Refund Text"
408
  msgstr ""
409
 
410
+ #: includes/class-kadence-woomail-settings.php:582
411
  msgid "Switch off for unpaid preview"
412
  msgstr ""
413
 
414
+ #: includes/class-kadence-woomail-settings.php:597
415
  msgid "Body Invoice Paid Text"
416
  msgstr ""
417
 
418
+ #: includes/class-kadence-woomail-settings.php:611
419
+ #: includes/class-kadence-woomail-settings.php:639
420
  msgid "Body Invoice Pending Payment Text"
421
  msgstr ""
422
 
423
+ #: includes/class-kadence-woomail-settings.php:625
424
  msgid "Body Invoice Failed Text"
425
  msgstr ""
426
 
427
+ #: includes/class-kadence-woomail-settings.php:653
428
  msgid "Body Text"
429
  msgstr ""
430
 
431
+ #: includes/class-kadence-woomail-settings.php:671
432
  msgid "Content Width"
433
  msgstr ""
434
 
435
+ #: includes/class-kadence-woomail-settings.php:691
436
  msgid "Border radius"
437
  msgstr ""
438
 
439
+ #: includes/class-kadence-woomail-settings.php:707
440
+ #: includes/class-kadence-woomail-settings.php:1631
441
  msgid "Border Width"
442
  msgstr ""
443
 
444
+ #: includes/class-kadence-woomail-settings.php:723
445
  msgid "Border color"
446
  msgstr ""
447
 
448
+ #: includes/class-kadence-woomail-settings.php:734
449
  msgid "Shadow"
450
  msgstr ""
451
 
452
+ #: includes/class-kadence-woomail-settings.php:750
453
  msgid "Container Top Padding"
454
  msgstr ""
455
 
456
+ #: includes/class-kadence-woomail-settings.php:766
457
  msgid "Container Botom Padding"
458
  msgstr ""
459
 
460
+ #: includes/class-kadence-woomail-settings.php:783
461
  msgid "Image Align"
462
  msgstr ""
463
 
464
+ #: includes/class-kadence-woomail-settings.php:795
465
  msgid "Image Max Width"
466
  msgstr ""
467
 
468
+ #: includes/class-kadence-woomail-settings.php:810
469
+ #: includes/class-kadence-woomail-settings.php:837
470
  msgid "Background color"
471
  msgstr ""
472
 
473
+ #: includes/class-kadence-woomail-settings.php:821
474
  msgid "Padding top/bottom"
475
  msgstr ""
476
 
477
+ #: includes/class-kadence-woomail-settings.php:848
478
  msgid "Text align"
479
  msgstr ""
480
 
481
+ #: includes/class-kadence-woomail-settings.php:862
482
+ #: includes/class-kadence-woomail-settings.php:1107
483
  msgid "Padding Top"
484
  msgstr ""
485
 
486
+ #: includes/class-kadence-woomail-settings.php:878
487
+ #: includes/class-kadence-woomail-settings.php:1123
488
  msgid "Padding Bottom"
489
  msgstr ""
490
 
491
+ #: includes/class-kadence-woomail-settings.php:895
492
  msgid "Padding left/right"
493
  msgstr ""
494
 
495
+ #: includes/class-kadence-woomail-settings.php:911
496
  msgid "Heading Font size"
497
  msgstr ""
498
 
499
+ #: includes/class-kadence-woomail-settings.php:927
500
  msgid "Heading Line Height"
501
  msgstr ""
502
 
503
+ #: includes/class-kadence-woomail-settings.php:943
504
  msgid "Heading Font family"
505
  msgstr ""
506
 
507
+ #: includes/class-kadence-woomail-settings.php:955
508
  msgid "Heading Font Style"
509
  msgstr ""
510
 
 
 
 
 
 
 
 
 
 
511
  #: includes/class-kadence-woomail-settings.php:961
512
  #: includes/class-kadence-woomail-settings.php:1068
513
  #: includes/class-kadence-woomail-settings.php:1350
514
  #: includes/class-kadence-woomail-settings.php:1539
515
+ #: includes/class-kadence-woomail-settings.php:1581
516
+ #: includes/class-kadence-woomail-settings.php:1686
517
+ msgid "Normal"
518
+ msgstr ""
519
+
520
+ #: includes/class-kadence-woomail-settings.php:962
521
+ #: includes/class-kadence-woomail-settings.php:1069
522
+ #: includes/class-kadence-woomail-settings.php:1351
523
+ #: includes/class-kadence-woomail-settings.php:1540
524
  msgid "Italic"
525
  msgstr ""
526
 
527
+ #: includes/class-kadence-woomail-settings.php:970
528
  msgid "Heading Font weight"
529
  msgstr ""
530
 
531
+ #: includes/class-kadence-woomail-settings.php:986
532
  msgid "Heading Text color"
533
  msgstr ""
534
 
535
+ #: includes/class-kadence-woomail-settings.php:998
536
  msgid "Subtitle Settings"
537
  msgstr ""
538
 
539
+ #: includes/class-kadence-woomail-settings.php:1005
540
  msgid "Subtitle Placement"
541
  msgstr ""
542
 
543
+ #: includes/class-kadence-woomail-settings.php:1011
544
  msgid "Below Heading"
545
  msgstr ""
546
 
547
+ #: includes/class-kadence-woomail-settings.php:1012
548
  msgid "Above Heading"
549
  msgstr ""
550
 
551
+ #: includes/class-kadence-woomail-settings.php:1018
552
  msgid "Subtitle Font Size"
553
  msgstr ""
554
 
555
+ #: includes/class-kadence-woomail-settings.php:1034
556
  msgid "Subtitle Line Height"
557
  msgstr ""
558
 
559
+ #: includes/class-kadence-woomail-settings.php:1050
560
  msgid "Subtitle Font Family"
561
  msgstr ""
562
 
563
+ #: includes/class-kadence-woomail-settings.php:1062
564
  msgid "Subtitle Font Style"
565
  msgstr ""
566
 
567
+ #: includes/class-kadence-woomail-settings.php:1078
568
  msgid "Subtitle Font weight"
569
  msgstr ""
570
 
571
+ #: includes/class-kadence-woomail-settings.php:1095
572
  msgid "Subtitle Text color"
573
  msgstr ""
574
 
575
+ #: includes/class-kadence-woomail-settings.php:1139
576
  msgid "Padding Left/Right"
577
  msgstr ""
578
 
579
+ #: includes/class-kadence-woomail-settings.php:1157
580
+ #: includes/class-kadence-woomail-settings.php:2003
581
  msgid "Font Size"
582
  msgstr ""
583
 
584
+ #: includes/class-kadence-woomail-settings.php:1174
585
  msgid "Line Height"
586
  msgstr ""
587
 
588
+ #: includes/class-kadence-woomail-settings.php:1191
589
+ #: includes/class-kadence-woomail-settings.php:2019
590
  msgid "Font Family"
591
  msgstr ""
592
 
593
+ #: includes/class-kadence-woomail-settings.php:1205
594
+ #: includes/class-kadence-woomail-settings.php:2032
595
  msgid "Font weight"
596
  msgstr ""
597
 
598
+ #: includes/class-kadence-woomail-settings.php:1221
599
  msgid "Link Color"
600
  msgstr ""
601
 
602
+ #: includes/class-kadence-woomail-settings.php:1235
603
  msgid "H2 Font Size"
604
  msgstr ""
605
 
606
+ #: includes/class-kadence-woomail-settings.php:1251
607
  msgid "H2 Line Height"
608
  msgstr ""
609
 
610
+ #: includes/class-kadence-woomail-settings.php:1267
611
  msgid "H2 Padding Top"
612
  msgstr ""
613
 
614
+ #: includes/class-kadence-woomail-settings.php:1283
615
  msgid "H2 Padding Bottom"
616
  msgstr ""
617
 
618
+ #: includes/class-kadence-woomail-settings.php:1299
619
  msgid "H2 Margin Top"
620
  msgstr ""
621
 
622
+ #: includes/class-kadence-woomail-settings.php:1315
623
  msgid "H2 Margin Bottom"
624
  msgstr ""
625
 
626
+ #: includes/class-kadence-woomail-settings.php:1331
627
  msgid "H2 Font Family"
628
  msgstr ""
629
 
630
+ #: includes/class-kadence-woomail-settings.php:1344
631
  msgid "H2 Font Style"
632
  msgstr ""
633
 
634
+ #: includes/class-kadence-woomail-settings.php:1360
635
  msgid "H2 Font weight"
636
  msgstr ""
637
 
638
+ #: includes/class-kadence-woomail-settings.php:1377
639
  msgid "H2 Text Transform"
640
  msgstr ""
641
 
642
+ #: includes/class-kadence-woomail-settings.php:1384
643
  msgid "Uppercase"
644
  msgstr ""
645
 
646
+ #: includes/class-kadence-woomail-settings.php:1385
647
  msgid "Lowercase"
648
  msgstr ""
649
 
650
+ #: includes/class-kadence-woomail-settings.php:1386
651
  msgid "Capitalize"
652
  msgstr ""
653
 
654
+ #: includes/class-kadence-woomail-settings.php:1394
655
  msgid "H2 Color"
656
  msgstr ""
657
 
658
+ #: includes/class-kadence-woomail-settings.php:1406
659
  msgid "H2 Text Align"
660
  msgstr ""
661
 
662
+ #: includes/class-kadence-woomail-settings.php:1418
663
  msgid "H2 Separator"
664
  msgstr ""
665
 
666
+ #: includes/class-kadence-woomail-settings.php:1425
667
  msgid "Separator below"
668
  msgstr ""
669
 
670
+ #: includes/class-kadence-woomail-settings.php:1426
671
  msgid "Separator above"
672
  msgstr ""
673
 
674
+ #: includes/class-kadence-woomail-settings.php:1431
675
  msgid "H2 Separator height"
676
  msgstr ""
677
 
678
+ #: includes/class-kadence-woomail-settings.php:1449
679
  msgid "H2 Separator Style"
680
  msgstr ""
681
 
682
+ #: includes/class-kadence-woomail-settings.php:1455
683
+ #: includes/class-kadence-woomail-settings.php:1665
684
+ #: includes/class-kadence-woomail-settings.php:1736
685
+ #: includes/class-kadence-woomail-settings.php:1977
686
  msgid "Solid"
687
  msgstr ""
688
 
689
+ #: includes/class-kadence-woomail-settings.php:1456
690
+ #: includes/class-kadence-woomail-settings.php:1666
691
+ #: includes/class-kadence-woomail-settings.php:1737
692
+ #: includes/class-kadence-woomail-settings.php:1978
693
  msgid "Double"
694
  msgstr ""
695
 
696
+ #: includes/class-kadence-woomail-settings.php:1457
697
+ #: includes/class-kadence-woomail-settings.php:1667
698
+ #: includes/class-kadence-woomail-settings.php:1738
699
+ #: includes/class-kadence-woomail-settings.php:1979
700
  msgid "Groove"
701
  msgstr ""
702
 
703
+ #: includes/class-kadence-woomail-settings.php:1458
704
+ #: includes/class-kadence-woomail-settings.php:1668
705
+ #: includes/class-kadence-woomail-settings.php:1739
706
+ #: includes/class-kadence-woomail-settings.php:1980
707
  msgid "Dotted"
708
  msgstr ""
709
 
710
+ #: includes/class-kadence-woomail-settings.php:1459
711
+ #: includes/class-kadence-woomail-settings.php:1669
712
+ #: includes/class-kadence-woomail-settings.php:1740
713
+ #: includes/class-kadence-woomail-settings.php:1981
714
  msgid "Dashed"
715
  msgstr ""
716
 
717
+ #: includes/class-kadence-woomail-settings.php:1460
718
+ #: includes/class-kadence-woomail-settings.php:1670
719
+ #: includes/class-kadence-woomail-settings.php:1741
720
+ #: includes/class-kadence-woomail-settings.php:1982
721
  msgid "Ridge"
722
  msgstr ""
723
 
724
+ #: includes/class-kadence-woomail-settings.php:1469
725
  msgid "H2 Separator Color"
726
  msgstr ""
727
 
728
+ #: includes/class-kadence-woomail-settings.php:1482
729
  msgid "H3 Settings"
730
  msgstr ""
731
 
732
+ #: includes/class-kadence-woomail-settings.php:1489
733
  msgid "H3 Font Size"
734
  msgstr ""
735
 
736
+ #: includes/class-kadence-woomail-settings.php:1505
737
  msgid "H3 Line Height"
738
  msgstr ""
739
 
740
+ #: includes/class-kadence-woomail-settings.php:1521
741
  msgid "H3 Font Family"
742
  msgstr ""
743
 
744
+ #: includes/class-kadence-woomail-settings.php:1533
745
  msgid "H3 Font Style"
746
  msgstr ""
747
 
748
+ #: includes/class-kadence-woomail-settings.php:1548
749
  msgid "H3 Font weight"
750
  msgstr ""
751
 
752
+ #: includes/class-kadence-woomail-settings.php:1564
753
  msgid "H3 Color"
754
  msgstr ""
755
 
756
+ #: includes/class-kadence-woomail-settings.php:1575
757
  msgid "Order Table Style"
758
  msgstr ""
759
 
760
+ #: includes/class-kadence-woomail-settings.php:1582
761
  msgid "Light"
762
  msgstr ""
763
 
764
+ #: includes/class-kadence-woomail-settings.php:1587
765
+ msgid "Product Image Option"
766
+ msgstr ""
767
+
768
+ #: includes/class-kadence-woomail-settings.php:1593
769
+ msgid "Do not show"
770
+ msgstr ""
771
+
772
+ #: includes/class-kadence-woomail-settings.php:1594
773
+ msgid "Show"
774
+ msgstr ""
775
+
776
+ #: includes/class-kadence-woomail-settings.php:1599
777
  msgid "Order Table Background color"
778
  msgstr ""
779
 
780
+ #: includes/class-kadence-woomail-settings.php:1611
781
  msgid "Padding"
782
  msgstr ""
783
 
784
+ #: includes/class-kadence-woomail-settings.php:1648
785
  msgid "Border Color"
786
  msgstr ""
787
 
788
+ #: includes/class-kadence-woomail-settings.php:1659
789
  msgid "Border Style"
790
  msgstr ""
791
 
792
+ #: includes/class-kadence-woomail-settings.php:1680
793
  msgid "Order Table Heading Style"
794
  msgstr ""
795
 
796
+ #: includes/class-kadence-woomail-settings.php:1687
797
  msgid "Split"
798
  msgstr ""
799
 
800
+ #: includes/class-kadence-woomail-settings.php:1692
801
  msgid "Address Box Background color"
802
  msgstr ""
803
 
804
+ #: includes/class-kadence-woomail-settings.php:1703
805
  msgid "Address Box Border Width"
806
  msgstr ""
807
 
808
+ #: includes/class-kadence-woomail-settings.php:1719
809
  msgid "Address Box Border Color"
810
  msgstr ""
811
 
812
+ #: includes/class-kadence-woomail-settings.php:1730
813
  msgid "Address Box Border Style"
814
  msgstr ""
815
 
816
+ #: includes/class-kadence-woomail-settings.php:1749
817
  msgid "Address Box Text Color"
818
  msgstr ""
819
 
820
+ #: includes/class-kadence-woomail-settings.php:1760
821
  msgid "Address Box Text Align"
822
  msgstr ""
823
 
824
+ #: includes/class-kadence-woomail-settings.php:1772
825
  msgid "Footer Background Placement"
826
  msgstr ""
827
 
828
+ #: includes/class-kadence-woomail-settings.php:1778
829
  msgid "Inside Body Container"
830
  msgstr ""
831
 
832
+ #: includes/class-kadence-woomail-settings.php:1779
833
  msgid "Outside Body Container"
834
  msgstr ""
835
 
836
+ #: includes/class-kadence-woomail-settings.php:1784
837
  msgid "Footer Background Color"
838
  msgstr ""
839
 
840
+ #: includes/class-kadence-woomail-settings.php:1795
841
+ #: includes/class-kadence-woomail-settings.php:1912
842
+ #: includes/class-kadence-woomail-settings.php:2060
843
  msgid "Top Padding"
844
  msgstr ""
845
 
846
+ #: includes/class-kadence-woomail-settings.php:1811
847
+ #: includes/class-kadence-woomail-settings.php:1928
848
+ #: includes/class-kadence-woomail-settings.php:2076
849
  msgid "Bottom Padding"
850
  msgstr ""
851
 
852
+ #: includes/class-kadence-woomail-settings.php:1827
853
  msgid "Left/Right Padding"
854
  msgstr ""
855
 
856
+ #: includes/class-kadence-woomail-settings.php:1843
857
  msgid "Footer Social Options"
858
  msgstr ""
859
 
860
+ #: includes/class-kadence-woomail-settings.php:1857
861
  msgid "Footer Social Title Color"
862
  msgstr ""
863
 
864
+ #: includes/class-kadence-woomail-settings.php:1868
865
  msgid "Footer Social Title Font Size"
866
  msgstr ""
867
 
868
+ #: includes/class-kadence-woomail-settings.php:1884
869
  msgid "Footer Social Title Font Family"
870
  msgstr ""
871
 
872
+ #: includes/class-kadence-woomail-settings.php:1896
873
  msgid "Footer Social Title Font Weight"
874
  msgstr ""
875
 
876
+ #: includes/class-kadence-woomail-settings.php:1944
877
  msgid "Footer Social Bottom Border Width"
878
  msgstr ""
879
 
880
+ #: includes/class-kadence-woomail-settings.php:1960
881
  msgid "Footer Social Bottom Border Color"
882
  msgstr ""
883
 
884
+ #: includes/class-kadence-woomail-settings.php:1971
885
  msgid "Footer Social Bottom Border Style"
886
  msgstr ""
887
 
888
+ #: includes/class-kadence-woomail-settings.php:1990
889
  msgid "Text Align"
890
  msgstr ""
891
 
892
+ #: includes/class-kadence-woomail-settings.php:2049
893
  msgid "Text Color"
894
  msgstr ""
895
 
896
+ #: includes/class-kadence-woomail-settings.php:2091
897
  msgid "Custom CSS"
898
  msgstr ""
899
 
900
+ #: includes/class-kadence-woomail-settings.php:2108
901
  msgid "Preview Email Recipient"
902
  msgstr ""
903
 
904
+ #: includes/class-kadence-woomail-settings.php:2109
905
  msgid "Enter recipients (comma separated) for preview emails"
906
  msgstr ""
907
 
908
+ #: includes/class-kadence-woomail-settings.php:2152
909
+ #: includes/class-kadence-woomail-settings.php:2179
910
  msgid "New customer order"
911
  msgstr ""
912
 
913
+ #: includes/class-kadence-woomail-settings.php:2153
914
+ #: includes/class-kadence-woomail-settings.php:2194
915
  msgid "[{site_title}] New customer order ({order_number}) - {order_date}"
916
  msgstr ""
917
 
918
+ #: includes/class-kadence-woomail-settings.php:2154
919
  msgid ""
920
  "You have received a subscription renewal order from {customer_full_name}. "
921
  "Their order is as follows:"
922
  msgstr ""
923
 
924
+ #: includes/class-kadence-woomail-settings.php:2155
925
+ #: includes/class-kadence-woomail-settings.php:2181
926
+ #: includes/class-kadence-woomail-settings.php:2186
927
  msgid "Thank you for your order"
928
  msgstr ""
929
 
930
+ #: includes/class-kadence-woomail-settings.php:2156
931
+ #: includes/class-kadence-woomail-settings.php:2196
932
+ #: includes/class-kadence-woomail-settings.php:2202
933
  msgid "Your {site_title} order receipt from {order_date}"
934
  msgstr ""
935
 
936
+ #: includes/class-kadence-woomail-settings.php:2157
937
  msgid ""
938
  "Your subscription renewal order has been received and is now being "
939
  "processed. Your order details are shown below for your reference:"
940
  msgstr ""
941
 
942
+ #: includes/class-kadence-woomail-settings.php:2158
943
+ #: includes/class-kadence-woomail-settings.php:2161
944
+ #: includes/class-kadence-woomail-settings.php:2182
945
  msgid "Your order is complete"
946
  msgstr ""
947
 
948
+ #: includes/class-kadence-woomail-settings.php:2159
949
+ #: includes/class-kadence-woomail-settings.php:2162
950
+ #: includes/class-kadence-woomail-settings.php:2197
951
  msgid "Your {site_title} order from {order_date} is complete"
952
  msgstr ""
953
 
954
+ #: includes/class-kadence-woomail-settings.php:2160
955
  msgid ""
956
  "Hi there. Your subscription renewal order with {site_title} has been "
957
  "completed. Your order details are shown below for your reference:"
958
  msgstr ""
959
 
960
+ #: includes/class-kadence-woomail-settings.php:2163
961
  msgid ""
962
  "Hi there. You have successfully changed your subscription items on "
963
  "{site_title}. Your new order and subscription details are shown below for "
964
  "your reference:"
965
  msgstr ""
966
 
967
+ #: includes/class-kadence-woomail-settings.php:2165
968
+ #: includes/class-kadence-woomail-settings.php:2166
969
+ #: includes/class-kadence-woomail-settings.php:2187
970
+ #: includes/class-kadence-woomail-settings.php:2204
971
  msgid "Invoice for order {order_number}"
972
  msgstr ""
973
 
974
+ #: includes/class-kadence-woomail-settings.php:2167
975
  msgid ""
976
  "An invoice has been created for you to renew your subscription with "
977
  "{site_title}. To pay for this invoice please use the following link: "
978
  "{invoice_pay_link}"
979
  msgstr ""
980
 
981
+ #: includes/class-kadence-woomail-settings.php:2168
982
  msgid ""
983
  "The automatic payment to renew your subscription with {site_title} has "
984
  "failed. To reactivate the subscription, please login and pay for the renewal "
985
  "from your account page: {invoice_pay_link}"
986
  msgstr ""
987
 
988
+ #: includes/class-kadence-woomail-settings.php:2171
989
  msgid "Subscription Cancelled"
990
  msgstr ""
991
 
992
+ #: includes/class-kadence-woomail-settings.php:2172
993
  msgid "[{site_title}] Subscription Cancelled"
994
  msgstr ""
995
 
996
+ #: includes/class-kadence-woomail-settings.php:2173
997
  msgid ""
998
  "A subscription belonging to {customer_full_name} has been cancelled. Their "
999
  "subscription's details are as follows:"
1000
  msgstr ""
1001
 
1002
+ #: includes/class-kadence-woomail-settings.php:2176
1003
  msgid "Automatic payment failed for order {order_number}"
1004
  msgstr ""
1005
 
1006
+ #: includes/class-kadence-woomail-settings.php:2177
1007
  msgid "Automatic payment failed for {order_number}, we will retry {retry_time}"
1008
  msgstr ""
1009
 
1010
+ #: includes/class-kadence-woomail-settings.php:2180
1011
  msgid "Cancelled order"
1012
  msgstr ""
1013
 
1014
+ #: includes/class-kadence-woomail-settings.php:2183
1015
  msgid "Order {order_number} details"
1016
  msgstr ""
1017
 
1018
+ #: includes/class-kadence-woomail-settings.php:2184
1019
  msgid "Your order has been partially refunded"
1020
  msgstr ""
1021
 
1022
+ #: includes/class-kadence-woomail-settings.php:2188
1023
  msgid "Your order details"
1024
  msgstr ""
1025
 
1026
+ #: includes/class-kadence-woomail-settings.php:2189
1027
  msgid "Failed order"
1028
  msgstr ""
1029
 
1030
+ #: includes/class-kadence-woomail-settings.php:2190
1031
  msgid "Welcome to {site_title}"
1032
  msgstr ""
1033
 
1034
+ #: includes/class-kadence-woomail-settings.php:2191
1035
  msgid "A note has been added to your order"
1036
  msgstr ""
1037
 
1038
+ #: includes/class-kadence-woomail-settings.php:2192
1039
  msgid "Password reset instructions"
1040
  msgstr ""
1041
 
1042
+ #: includes/class-kadence-woomail-settings.php:2195
1043
  msgid "[{site_title}] Cancelled order ({order_number})"
1044
  msgstr ""
1045
 
1046
+ #: includes/class-kadence-woomail-settings.php:2199
1047
  msgid "Your {site_title} order from {order_date} has been refunded"
1048
  msgstr ""
1049
 
1050
+ #: includes/class-kadence-woomail-settings.php:2200
1051
  msgid "Your {site_title} order from {order_date} has been partially refunded"
1052
  msgstr ""
1053
 
1054
+ #: includes/class-kadence-woomail-settings.php:2205
1055
  msgid "Your {site_title} order from {order_date}"
1056
  msgstr ""
1057
 
1058
+ #: includes/class-kadence-woomail-settings.php:2207
1059
  msgid "[{site_title}] Failed order ({order_number})"
1060
  msgstr ""
1061
 
1062
+ #: includes/class-kadence-woomail-settings.php:2208
1063
  msgid "Your account on {site_title}"
1064
  msgstr ""
1065
 
1066
+ #: includes/class-kadence-woomail-settings.php:2209
1067
  msgid "Note added to your {site_title} order from {order_date}"
1068
  msgstr ""
1069
 
1070
+ #: includes/class-kadence-woomail-settings.php:2210
1071
  msgid "Password reset for {site_title}"
1072
  msgstr ""
1073
 
1074
+ #: includes/class-kadence-woomail-settings.php:2212
1075
  msgid ""
1076
  "You have received an order from {customer_full_name}. The order is as "
1077
  "follows:"
1078
  msgstr ""
1079
 
1080
+ #: includes/class-kadence-woomail-settings.php:2213
1081
  msgid ""
1082
  "The order {order_number} from {customer_full_name} has been cancelled. The "
1083
  "order was as follows:"
1084
  msgstr ""
1085
 
1086
+ #: includes/class-kadence-woomail-settings.php:2214
1087
  msgid ""
1088
  "Your order has been received and is now being processed. Your order details "
1089
  "are shown below for your reference:"
1090
  msgstr ""
1091
 
1092
+ #: includes/class-kadence-woomail-settings.php:2215
1093
  msgid ""
1094
  "Hi there. Your recent order on {site_title} has been completed. Your order "
1095
  "details are shown below for your reference:"
1096
  msgstr ""
1097
 
1098
+ #: includes/class-kadence-woomail-settings.php:2217
1099
  msgid "Hi there. Your order on {site_title} has been refunded."
1100
  msgstr ""
1101
 
1102
+ #: includes/class-kadence-woomail-settings.php:2218
1103
  msgid "Hi there. Your order on {site_title} has been partially refunded."
1104
  msgstr ""
1105
 
1106
+ #: includes/class-kadence-woomail-settings.php:2220
1107
  msgid ""
1108
  "Your order is on-hold until we confirm payment has been received. Your order "
1109
  "details are shown below for your reference:"
1110
  msgstr ""
1111
 
1112
+ #: includes/class-kadence-woomail-settings.php:2222
1113
  msgid "An order has been created for you on {site_title}. {invoice_pay_link}"
1114
  msgstr ""
1115
 
1116
+ #: includes/class-kadence-woomail-settings.php:2224
1117
  msgid ""
1118
  "Payment for order {order_number} from {customer_full_name} has failed. The "
1119
  "order was as follows:"
1120
  msgstr ""
1121
 
1122
+ #: includes/class-kadence-woomail-settings.php:2225
1123
  msgid ""
1124
  "Thanks for creating an account on {site_title}. Your username is "
1125
  "{customer_username}"
1126
  msgstr ""
1127
 
1128
+ #: includes/class-kadence-woomail-settings.php:2226
1129
  msgid "Hello, a note has just been added to your order:"
1130
  msgstr ""
1131
 
1132
+ #: includes/class-kadence-woomail-settings.php:2227
1133
  msgid ""
1134
  "Someone requested that the password be reset for the following account:\n"
1135
  "\n"
1140
  "To reset your password, visit the following address:"
1141
  msgstr ""
1142
 
1143
+ #: includes/class-kadence-woomail-settings.php:2364
1144
  msgid "none"
1145
  msgstr ""
1146
 
1147
+ #: includes/class-kadence-woomail-settings.php:2365
1148
  msgid "hidden"
1149
  msgstr ""
1150
 
1151
+ #: includes/class-kadence-woomail-settings.php:2366
1152
  msgid "dotted"
1153
  msgstr ""
1154
 
1155
+ #: includes/class-kadence-woomail-settings.php:2367
1156
  msgid "dashed"
1157
  msgstr ""
1158
 
1159
+ #: includes/class-kadence-woomail-settings.php:2368
1160
  msgid "solid"
1161
  msgstr ""
1162
 
1163
+ #: includes/class-kadence-woomail-settings.php:2369
1164
  msgid "double"
1165
  msgstr ""
1166
 
1167
+ #: includes/class-kadence-woomail-settings.php:2370
1168
  msgid "groove"
1169
  msgstr ""
1170
 
1171
+ #: includes/class-kadence-woomail-settings.php:2371
1172
  msgid "ridge"
1173
  msgstr ""
1174
 
1175
+ #: includes/class-kadence-woomail-settings.php:2372
1176
  msgid "inset"
1177
  msgstr ""
1178
 
1179
+ #: includes/class-kadence-woomail-settings.php:2373
1180
  msgid "outset"
1181
  msgstr ""
1182
 
1183
+ #: includes/class-kadence-woomail-settings.php:2385
1184
+ #: includes/class-kadence-woomail-settings.php:2393
1185
  msgid "Left"
1186
  msgstr ""
1187
 
1188
+ #: includes/class-kadence-woomail-settings.php:2386
1189
+ #: includes/class-kadence-woomail-settings.php:2394
1190
  msgid "Center"
1191
  msgstr ""
1192
 
1193
+ #: includes/class-kadence-woomail-settings.php:2387
1194
+ #: includes/class-kadence-woomail-settings.php:2395
1195
  msgid "Right"
1196
  msgstr ""
1197
 
1198
+ #: includes/class-kadence-woomail-settings.php:2388
1199
  msgid "Justify"
1200
  msgstr ""
1201
 
1202
+ #: includes/class-kadence-woomail-settings.php:2408
1203
  msgid "Mockup Order"
1204
  msgstr ""
1205
 
1223
  "Email Designer</a> plugin by <a href=\"%s\">Kadence Themes</a>."
1224
  msgstr ""
1225
 
1226
+ #: kadence-woocommerce-email-designer.php:130
1227
  msgid ""
1228
  "Kadence Woocommerce Email Designer requires WooCommerce to be active to work"
1229
  msgstr ""
1230
 
1231
+ #: kadence-woocommerce-email-designer.php:227
1232
  msgid "Pay for this order"
1233
  msgstr ""
1234
 
1235
+ #: kadence-woocommerce-email-designer.php:235
1236
+ #: kadence-woocommerce-email-designer.php:239
1237
  msgid "Pay Now &raquo;"
1238
  msgstr ""
1239
 
1240
+ #: kadence-woocommerce-email-designer.php:384
1241
+ #: kadence-woocommerce-email-designer.php:385
1242
  msgid "Email Customizer"
1243
  msgstr ""
1244
 
1245
+ #: kadence-woocommerce-email-designer.php:398
1246
  msgid "Open Email Designer"
1247
  msgstr ""
1248
 
preview.php CHANGED
@@ -27,9 +27,9 @@ if (!defined('ABSPATH')) {
27
  <meta charset="<?php bloginfo('charset'); ?>" />
28
  <meta name="viewport" content="width=device-width" />
29
 
30
- <title><?php echo __('Email Designer', 'kadence-woomail-designer'); ?></title>
31
 
32
- <style type="text/css" id="kadence_woomail_designer_custom_css"><?php echo Kadence_Woomail_Customizer::opt('custom_css'); ?>.mfp-hide {display: none;}</style>
33
 
34
  </head>
35
 
27
  <meta charset="<?php bloginfo('charset'); ?>" />
28
  <meta name="viewport" content="width=device-width" />
29
 
30
+ <title><?php echo __('Email Designer', 'kadence-woocommerce-email-designer'); ?></title>
31
 
32
+ <style type="text/css" id="kadence_woomail_designer_custom_css"><?php echo Kadence_Woomail_Customizer::opt('custom_css'); ?>.woocommerce-store-notice.demo_store, .mfp-hide {display: none;}</style>
33
 
34
  </head>
35
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Donate link: https://www.kadencethemes.com/about-us/
5
  Requires PHP: 5.2.4
6
  Requires at least: 4.4
7
  Tested up to: 4.9.8
8
- Stable tag: 1.0.6
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -55,6 +55,11 @@ Install the plugin into the `/wp-content/plugins/` folder, and activate it.
55
 
56
  == Changelog ==
57
 
 
 
 
 
 
58
  = 1.0.6 =
59
  * Fix: Partial refund text.
60
  * Add: New option for product photo in email.
5
  Requires PHP: 5.2.4
6
  Requires at least: 4.4
7
  Tested up to: 4.9.8
8
+ Stable tag: 1.0.7
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
55
 
56
  == Changelog ==
57
 
58
+ = 1.0.7 =
59
+ * Add: Romania and Catalan Translation.
60
+ * Update: Preview url for better support.
61
+ * Add: Waitlist Support.
62
+
63
  = 1.0.6 =
64
  * Fix: Partial refund text.
65
  * Add: New option for product photo in email.
templates/woo/emails/email-header.php CHANGED
@@ -29,7 +29,7 @@ if ( ! defined( 'ABSPATH' ) ) {
29
  * Add Order Style Class
30
  */
31
  $key = $email->id;
32
- $email_subtitle = Kadence_Woomail_Customizer::opt( $key.'_subtitle' );
33
  if ( ! empty( $email_subtitle ) ) {
34
  $email_subtitle = Kadence_Woomail_Designer::filter_subtitle( $email_subtitle, $email );
35
  }
29
  * Add Order Style Class
30
  */
31
  $key = $email->id;
32
+ $email_subtitle = Kadence_Woomail_Customizer::opt( $key . '_subtitle' );
33
  if ( ! empty( $email_subtitle ) ) {
34
  $email_subtitle = Kadence_Woomail_Designer::filter_subtitle( $email_subtitle, $email );
35
  }
templates/woo/emails/waitlist-mailout.php ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Waitlist Mailout email
4
+ *
5
+ * @author Neil Pie
6
+ * @package WooCommerce_Waitlist/Templates/Emails
7
+ * @version 1.7.0
8
+ */
9
+ if ( ! defined( 'ABSPATH' ) ) {
10
+ exit; // Exit if accessed directly
11
+ }
12
+ $eobject = new stdClass();
13
+ $eobject->id = 'woocommerce_waitlist_mailout';
14
+ $eobject->object = get_product( $product_id );
15
+ do_action( 'woocommerce_email_header', $email_heading, $eobject ); ?>
16
+
17
+ <?php
18
+ /**
19
+ * @hooked Kadence_Woomail_Designer::email_main_text_area
20
+ */
21
+ do_action( 'kadence_woomail_designer_email_text', $eobject );
22
+ ?>
23
+
24
+ <p>
25
+ <?php echo sprintf( $back_in_stock_text, $product_title, get_bloginfo( 'name' ) ) . ". ";
26
+ echo $you_have_been_sent_text; ?>
27
+ </p>
28
+ <p>
29
+ <?php echo sprintf( $purchase_text, $product_title, '<a href="' . $product_link . '">' . $product_link . '<a>' ); ?>
30
+ </p>
31
+
32
+ <?php if ( WooCommerce_Waitlist_Plugin::persistent_waitlists_are_disabled( $product_id ) && ! $triggered_manually ) {
33
+ echo '<p>' . $remove_text . '</p>';
34
+ }
35
+ do_action( 'woocommerce_email_footer', $eobject ); ?>