WooCommerce Print Invoice & Delivery Note - Version 4.4.8

Version Description

(02.04.2019) =

  • Fix - When a noticed was dismissed from the plugin, then it will dismiss all other notices from other plugins also. This is fixed now.
  • Fix - Some errors in debug.log file are fixed.
Download this release

Release Info

Developer ashokrane
Plugin Icon 128x128 WooCommerce Print Invoice & Delivery Note
Version 4.4.8
Comparing to
See all releases

Code changes from version 4.4.2 to 4.4.8

Files changed (55) hide show
  1. includes/class-wcdn-settings.php +21 -4
  2. includes/class-wcdn-theme.php +1 -1
  3. includes/class-wcdn-writepanel.php +1 -1
  4. includes/component/README.md +1 -0
  5. includes/component/deactivate-survey-popup/Instructions +73 -0
  6. includes/component/deactivate-survey-popup/class-ts-deactivation.php +231 -0
  7. includes/component/deactivate-survey-popup/template/ts-deactivate-modal.php +387 -0
  8. includes/component/faq-support/Instructions +47 -0
  9. includes/component/faq-support/templates/faq-page/faq-page.php +134 -0
  10. includes/component/faq-support/ts-faq-support.php +232 -0
  11. includes/component/tracking-data/Instructions +54 -0
  12. includes/component/tracking-data/assets/images/site-logo-new.jpg +0 -0
  13. includes/component/tracking-data/assets/js/dismiss-notice.js +23 -0
  14. includes/component/tracking-data/class-ts-tracker.php +282 -0
  15. includes/component/tracking-data/ts-tracking.php +317 -0
  16. includes/component/woocommerce-check/Instructions +11 -0
  17. includes/component/woocommerce-check/ts-woo-active.php +80 -0
  18. includes/wcdn-all-component.php +280 -0
  19. includes/wcdn-template-functions.php +2 -3
  20. includes/wcdn-welcome.php +0 -277
  21. languages/woocommerce-delivery-notes-cs_CZ.mo +0 -0
  22. languages/woocommerce-delivery-notes-cs_CZ.po +675 -272
  23. languages/woocommerce-delivery-notes-da_DK.mo +0 -0
  24. languages/woocommerce-delivery-notes-da_DK.po +779 -291
  25. languages/woocommerce-delivery-notes-de_DE.mo +0 -0
  26. languages/woocommerce-delivery-notes-de_DE.po +691 -289
  27. languages/woocommerce-delivery-notes-es_ES.mo +0 -0
  28. languages/woocommerce-delivery-notes-es_ES.po +713 -242
  29. languages/woocommerce-delivery-notes-et.mo +0 -0
  30. languages/woocommerce-delivery-notes-et.po +766 -284
  31. languages/woocommerce-delivery-notes-fa_IR.mo +0 -0
  32. languages/woocommerce-delivery-notes-fa_IR.po +827 -260
  33. languages/woocommerce-delivery-notes-fi_FI.mo +0 -0
  34. languages/woocommerce-delivery-notes-fi_FI.po +750 -307
  35. languages/woocommerce-delivery-notes-fr_FR.mo +0 -0
  36. languages/woocommerce-delivery-notes-fr_FR.po +662 -288
  37. languages/woocommerce-delivery-notes-it_IT.mo +0 -0
  38. languages/woocommerce-delivery-notes-it_IT.po +730 -257
  39. languages/woocommerce-delivery-notes-ja.mo +0 -0
  40. languages/woocommerce-delivery-notes-ja.po +432 -236
  41. languages/woocommerce-delivery-notes-nb_NO.mo +0 -0
  42. languages/woocommerce-delivery-notes-nb_NO.po +690 -322
  43. languages/woocommerce-delivery-notes-nl_NL.mo +0 -0
  44. languages/woocommerce-delivery-notes-nl_NL.po +717 -271
  45. languages/woocommerce-delivery-notes-pt_BR.mo +0 -0
  46. languages/woocommerce-delivery-notes-pt_BR.po +750 -306
  47. languages/woocommerce-delivery-notes-sv_SE.mo +0 -0
  48. languages/woocommerce-delivery-notes-sv_SE.po +675 -276
  49. languages/woocommerce-delivery-notes-vi_VN.mo +0 -0
  50. languages/woocommerce-delivery-notes-vi_VN.po +672 -272
  51. languages/woocommerce-delivery-notes.pot +436 -264
  52. readme.txt +28 -2
  53. templates/print-order/print-content.php +75 -59
  54. uninstall.php +9 -12
  55. woocommerce-delivery-notes.php +107 -8
includes/class-wcdn-settings.php CHANGED
@@ -12,6 +12,12 @@ if ( !defined( 'ABSPATH' ) ) {
12
  */
13
  if ( !class_exists( 'WooCommerce_Delivery_Notes_Settings' ) ) {
14
 
 
 
 
 
 
 
15
  class WooCommerce_Delivery_Notes_Settings {
16
 
17
  public $id;
@@ -32,6 +38,17 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes_Settings' ) ) {
32
  add_action( 'woocommerce_admin_field_wcdn_image_select', array( $this, 'output_image_select' ) );
33
  add_action( 'wp_ajax_wcdn_settings_load_image', array( $this, 'load_image_ajax' ) );
34
  add_filter( 'wcdn_get_settings', array( $this, 'generate_template_type_fields' ), 10, 2 );
 
 
 
 
 
 
 
 
 
 
 
35
  }
36
 
37
  /**
@@ -82,6 +99,7 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes_Settings' ) ) {
82
  * Get the settings fields
83
  */
84
  public function get_settings( $section = '' ) {
 
85
  $settings = apply_filters( 'wcdn_get_settings_no_section',
86
  array(
87
  array(
@@ -93,7 +111,7 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes_Settings' ) ) {
93
 
94
  array(
95
  'title' => __( 'Style', 'woocommerce-delivery-notes' ),
96
- 'desc' => sprintf( __( 'The default print style. Read the <a href="%1$s">FAQ</a> to learn how to customize it.', 'woocommerce-delivery-notes' ), 'https://wordpress.org/plugins/woocommerce-delivery-notes/faq/', '#' ),
97
  'id' => 'wcdn_template_style',
98
  'class' => 'wc-enhanced-select',
99
  'default' => '',
@@ -263,7 +281,7 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes_Settings' ) ) {
263
  'type' => 'text',
264
  'desc_tip' => __( 'This text will be appended to the invoice number.', 'woocommerce-delivery-notes' )
265
  ),
266
-
267
  array(
268
  'type' => 'sectionend',
269
  'id' => 'invoice_options'
@@ -488,5 +506,4 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes_Settings' ) ) {
488
  }
489
 
490
  }
491
-
492
- ?>
12
  */
13
  if ( !class_exists( 'WooCommerce_Delivery_Notes_Settings' ) ) {
14
 
15
+ /**
16
+ * WooCommerce Print Delivery Notes
17
+ *
18
+ * @author Tyche Softwares
19
+ * @package WooCommerce-Delivery-Notes/Settings
20
+ */
21
  class WooCommerce_Delivery_Notes_Settings {
22
 
23
  public $id;
38
  add_action( 'woocommerce_admin_field_wcdn_image_select', array( $this, 'output_image_select' ) );
39
  add_action( 'wp_ajax_wcdn_settings_load_image', array( $this, 'load_image_ajax' ) );
40
  add_filter( 'wcdn_get_settings', array( $this, 'generate_template_type_fields' ), 10, 2 );
41
+ add_action( 'woocommerce_admin_field_link' , array( &$this, 'wcdn_add_admin_field_reset_button' ) );
42
+ }
43
+
44
+ /**
45
+ * It will add a reset tracking data button on the settting page.
46
+ * @hook woocommerce_admin_field_link
47
+ */
48
+ public static function wcdn_add_admin_field_reset_button ( $value ) {
49
+ if ( $value [ 'id' ] == 'ts_reset_tracking' ){
50
+ do_action ( 'wcdn_add_new_settings', $value );
51
+ }
52
  }
53
 
54
  /**
99
  * Get the settings fields
100
  */
101
  public function get_settings( $section = '' ) {
102
+ $wcdn_faq_url = admin_url( 'index.php?page=wcdn_faq_page' ) ;
103
  $settings = apply_filters( 'wcdn_get_settings_no_section',
104
  array(
105
  array(
111
 
112
  array(
113
  'title' => __( 'Style', 'woocommerce-delivery-notes' ),
114
+ 'desc' => sprintf( __( 'The default print style. Read the <a href="%1$s">FAQ</a> to learn how to customize it.', 'woocommerce-delivery-notes' ), $wcdn_faq_url, '#' ),
115
  'id' => 'wcdn_template_style',
116
  'class' => 'wc-enhanced-select',
117
  'default' => '',
281
  'type' => 'text',
282
  'desc_tip' => __( 'This text will be appended to the invoice number.', 'woocommerce-delivery-notes' )
283
  ),
284
+ apply_filters ( 'wcdn_add_settings_field', '' ),
285
  array(
286
  'type' => 'sectionend',
287
  'id' => 'invoice_options'
506
  }
507
 
508
  }
509
+ ?>
 
includes/class-wcdn-theme.php CHANGED
@@ -148,4 +148,4 @@ echo "\n****************************************************\n\n";
148
 
149
  }
150
 
151
- ?>
148
 
149
  }
150
 
151
+ ?>
includes/class-wcdn-writepanel.php CHANGED
@@ -268,4 +268,4 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes_Writepanel' ) ) {
268
 
269
  }
270
 
271
- ?>
268
 
269
  }
270
 
271
+ ?>
includes/component/README.md ADDED
@@ -0,0 +1 @@
 
1
+ # ts-plugin-features-boilerplate
includes/component/deactivate-survey-popup/Instructions ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Add a popup with some questions when the plugin is deactivated.
2
+
3
+ To add this feature to the plugin, you can follow the below steps:
4
+
5
+ 1. Copy the class-ts-deactivation.php file.
6
+
7
+ 2. Include the file class-ts-deactivation.php once when on the admin page. This can be done with is_admin() function.
8
+
9
+ 3. You need to pass the 2 parameters to the init function of the TS_deactivate class. You need to change the value of the variable as per the respective plugin.
10
+
11
+ $wcap_file_name = 'woocommerce-abandon-cart-pro/woocommerce-ac.php';
12
+ $wcap_plugin_name = 'Abandoned Cart Pro for WooCommerce';
13
+
14
+ $wcap_deativate = new TS_deactivate;
15
+ $wcap_deativate->init( $wcap_file_name, $wcap_plugin_name );
16
+
17
+ 4. In respective plugin you have to add the filter as below:
18
+ The filter name: ts_deativate_plugin_questions
19
+
20
+ Please follow the below Standard method to add your plugin specific deactivate questions.
21
+
22
+ Note: Dont chnage the below things in the function:
23
+
24
+ 1. Main index: 0,1,2,3
25
+ 2. The "id" paramter value in sub array.
26
+
27
+ add_filter ( 'ts_deativate_plugin_questions', array( 'Wcap_Common', 'wcap_deactivate_add_questions' ), 10, 1 );
28
+
29
+ /**
30
+ * It will add the Questions while admin deactivate the plugin.
31
+ * @hook ts_deativate_plugin_questions
32
+ * @param array $wcap_add_questions Blank array
33
+ * @return array $wcap_add_questions List of all questions.
34
+ */
35
+ public static function wcap_deactivate_add_questions ( $wcap_add_questions ) {
36
+
37
+ $wcap_add_questions = array(
38
+ 0 => array(
39
+ 'id' => 4,
40
+ 'text' => __( "Custom Delivery Settings are not working", "woocommerce-ac" ),
41
+ 'input_type' => '',
42
+ 'input_placeholder' => ''
43
+ ),
44
+ 1 => array(
45
+ 'id' => 5,
46
+ 'text' => __( "Minimum Delivery Time (in hours) is not working as expected", "woocommerce-ac" ),
47
+ 'input_type' => '',
48
+ 'input_placeholder' => ''
49
+ ),
50
+ 2 => array(
51
+ 'id' => 6,
52
+ 'text' => __( "Shipping Days feature is not working", "woocommerce-ac" ),
53
+ 'input_type' => '',
54
+ 'input_placeholder' => ''
55
+ ),
56
+ 3 => array(
57
+ 'id' => 7,
58
+ 'text' => __( "The plugin is not compatible with another plugin", "woocommerce-ac" ),
59
+ 'input_type' => 'textfield',
60
+ 'input_placeholder' => __( "Which Plugin?", "ts-deactivation-survey" )
61
+ )
62
+
63
+ );
64
+ return $wcap_add_questions;
65
+ }
66
+
67
+ Once the above changes are done. Data will be stored in the tychesod_tracking database in the staging cpanel.
68
+
69
+ - The ts_tracking_data table will store the unique tracking id, site URL and admin email address.
70
+
71
+ - The ts_deactivation_survery table will store the meta for the reason for deactivating the plugin. Here tracking_id will be same as tracking id in ts_tracking_data.
72
+
73
+ - The ts_tracking_plugins table will store the plugin name from which the action is performed. Here tracking_id will be same as tracking id in ts_tracking_data.
includes/component/deactivate-survey-popup/class-ts-deactivation.php ADDED
@@ -0,0 +1,231 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Contains the logic for deactivation popups
5
+ * @since 1.0.0
6
+ */
7
+ class WCDN_TS_deactivate {
8
+ public static $ts_deactivation_str;
9
+
10
+ public static $ts_generic_questions;
11
+
12
+ public static $ts_plugin_specific_questions;
13
+
14
+ /**
15
+ * URL to the Tracker API endpoint.
16
+ * @var string
17
+ */
18
+
19
+ private static $api_url = 'http://tracking.tychesoftwares.com/v1/';
20
+
21
+ /**
22
+ * @var string Plugin name
23
+ * @access public
24
+ */
25
+
26
+ public static $plugin_name = '';
27
+
28
+ /**
29
+ * @var string Plugin file name
30
+ * @access public
31
+ */
32
+ public static $ts_plugin_file_name = '';
33
+
34
+ /**
35
+ * @var string Plugin URL
36
+ * @access public
37
+ */
38
+ public static $ts_plugin_url = '';
39
+
40
+ /**
41
+ * Initialization of hooks where we prepare the functionality to ask use for survey
42
+ */
43
+ public static function init( $ts_plugin_file_name = '', $ts_plugin_name = '' ) {
44
+ self::$ts_plugin_file_name = $ts_plugin_file_name;
45
+ self::$plugin_name = $ts_plugin_name;
46
+ self::$ts_plugin_url = untrailingslashit( plugin_dir_path ( __FILE__ ) );
47
+
48
+ self::ts_load_all_str();
49
+ add_action( 'admin_footer', array( __CLASS__, 'maybe_load_deactivate_options' ) );
50
+ add_action( 'wp_ajax_ts_submit_uninstall_reason', array( __CLASS__, '_submit_uninstall_reason_action' ) );
51
+
52
+ add_filter( 'plugin_action_links_' . self::$ts_plugin_file_name, array( __CLASS__, 'ts_plugin_settings_link' ) );
53
+ }
54
+
55
+ /**
56
+ * Settings link on Plugins page
57
+ *
58
+ * @access public
59
+ * @param array $links
60
+ * @return array
61
+ */
62
+ public static function ts_plugin_settings_link( $links ) {
63
+
64
+ if ( isset ( $links['deactivate'] ) ) {
65
+ $links['deactivate'] .= '<i class="wcdn-ts-slug" data-slug="' . self::$ts_plugin_file_name . '"></i>';
66
+ }
67
+ return $links;
68
+ }
69
+
70
+ /**
71
+ * Localizes all the string used
72
+ */
73
+ public static function ts_load_all_str() {
74
+ self::$ts_deactivation_str = array(
75
+ "deactivation-share-reason" => __( "If you have a moment, please let us know why you are deactivating", "ts-deactivation-survey" ),
76
+ "deactivation-modal-button-submit" => __( "Submit & Deactivate", "ts-deactivation-survey" ),
77
+ "deactivation-modal-button-deactivate" => __( "Deactivate", "ts-deactivation-survey" ),
78
+ "deactivation-modal-button-cancel" => __( "Cancel", "ts-deactivation-survey" ),
79
+ "deactivation-modal-button-confirm" => __( 'Yes - Deactivate', 'ts-deactivation-survey' ),
80
+ );
81
+
82
+ self::$ts_generic_questions = array(
83
+ "reason-found-a-better-plugin" => __( "I found a better plugin", "ts-deactivation-survey" ),
84
+ "placeholder-plugin-name" => __( "What's the plugin's name?", "ts-deactivation-survey" ),
85
+ "reason-needed-for-a-short-period" => __( "I only needed the plugin for a short period", "ts-deactivation-survey" ),
86
+ "reason-not-working" => __( "The plugin is not working", "ts-deactivation-survey" ),
87
+ "placeholder-share-what-didnt-work" => __( "Kindly share what didn't work so we can fix it for future users...", "ts-deactivation-survey" ),
88
+ "reason-great-but-need-specific-feature" => __( "The plugin is great, but I need specific feature that you don't support", "ts-deactivation-survey" ),
89
+ "placeholder-feature" => __( "What feature?", "ts-deactivation-survey" ),
90
+ "reason-dont-like-to-share-my-information" => __( "I don't like to share my information with you", "ts-deactivation-survey" ),
91
+ "reason-other" => _x( "Other", "the text of the 'other' reason for deactivating the plugin that is shown in the modal box.", "ts-deactivation-survey" ),
92
+ );
93
+ }
94
+
95
+ /**
96
+ * Checking current page and pushing html, js and css for this task
97
+ * @global string $pagenow current admin page
98
+ * @global array $VARS global vars to pass to view file
99
+ */
100
+ public static function maybe_load_deactivate_options() {
101
+ global $pagenow;
102
+ if ( $pagenow == "plugins.php" ) {
103
+ global $VARS;
104
+ $VARS = array( 'slug' => "asvbsd", 'reasons' => self::deactivate_options() );
105
+ include_once self::$ts_plugin_url . "/template/ts-deactivate-modal.php";
106
+ }
107
+ }
108
+
109
+ /**
110
+ * deactivation reasons in array format
111
+ * @return array reasons array
112
+ * @since 1.0.0
113
+ */
114
+ public static function deactivate_options() {
115
+
116
+ self::$ts_plugin_specific_questions = apply_filters( 'ts_deativate_plugin_questions', array () );
117
+
118
+
119
+ $reason_found_better_plugin = array(
120
+ 'id' => 2,
121
+ 'text' => self::$ts_generic_questions[ 'reason-found-a-better-plugin' ],
122
+ 'input_type' => 'textfield',
123
+ 'input_placeholder' => self::$ts_generic_questions[ 'placeholder-plugin-name' ]
124
+ );
125
+
126
+ $reason_not_working = array(
127
+ 'id' => 3,
128
+ 'text' => self::$ts_generic_questions[ 'reason-not-working' ],
129
+ 'input_type' => 'textfield',
130
+ 'input_placeholder' => self::$ts_generic_questions[ 'placeholder-share-what-didnt-work' ]
131
+ );
132
+
133
+ $reason_great_but_need_specific_feature = array(
134
+ 'id' => 8,
135
+ 'text' => self::$ts_generic_questions[ 'reason-great-but-need-specific-feature' ],
136
+ 'input_type' => 'textfield',
137
+ 'input_placeholder' => self::$ts_generic_questions[ 'placeholder-feature' ]
138
+ );
139
+
140
+ $reason_plugin_not_compatible = isset ( self::$ts_plugin_specific_questions[ 3 ] ) ? self::$ts_plugin_specific_questions[ 3 ] : '' ;
141
+
142
+ $reason_other = array(
143
+ 'id' => 10,
144
+ 'text' => self::$ts_generic_questions[ 'reason-other' ],
145
+ 'input_type' => 'textfield',
146
+ 'input_placeholder' => ''
147
+ );
148
+
149
+ $long_term_user_reasons = array(
150
+ array(
151
+ 'id' => 1,
152
+ 'text' => self::$ts_generic_questions[ 'reason-needed-for-a-short-period' ],
153
+ 'input_type' => '',
154
+ 'input_placeholder' => ''
155
+ ),
156
+ $reason_found_better_plugin,
157
+ $reason_not_working,
158
+ isset ( self::$ts_plugin_specific_questions[ 0 ] ) ? self::$ts_plugin_specific_questions[ 0 ] : '',
159
+ isset ( self::$ts_plugin_specific_questions[ 1 ] ) ? self::$ts_plugin_specific_questions[ 1 ] : '',
160
+ isset ( self::$ts_plugin_specific_questions[ 2 ] ) ? self::$ts_plugin_specific_questions[ 2 ] : '',
161
+ $reason_plugin_not_compatible,
162
+ $reason_great_but_need_specific_feature,
163
+ array(
164
+ 'id' => 9,
165
+ 'text' => self::$ts_generic_questions[ 'reason-dont-like-to-share-my-information' ],
166
+ 'input_type' => '',
167
+ 'input_placeholder' => ''
168
+ )
169
+ );
170
+
171
+
172
+ $uninstall_reasons[ 'default' ] = $long_term_user_reasons;
173
+
174
+ $uninstall_reasons = apply_filters( 'ts_uninstall_reasons', $uninstall_reasons );
175
+ array_push( $uninstall_reasons['default'], $reason_other );
176
+
177
+ return $uninstall_reasons;
178
+ }
179
+
180
+ /**
181
+ * get exact str against the slug
182
+ *
183
+ * @param type $slug
184
+ *
185
+ * @return type
186
+ */
187
+ public static function load_str( $slug ) {
188
+ return self::$ts_deactivation_str[ $slug ];
189
+ }
190
+
191
+ /**
192
+ * Called after the user has submitted his reason for deactivating the plugin.
193
+ *
194
+ * @since 1.1.2
195
+ */
196
+ public static function _submit_uninstall_reason_action() {
197
+ if ( ! isset( $_POST[ 'reason_id' ] ) ) {
198
+ exit;
199
+ }
200
+
201
+ $plugin_data = array();
202
+
203
+ $plugin_data[ 'url' ] = home_url();
204
+ $plugin_data[ 'email' ] = apply_filters( 'ts_tracker_admin_email', get_option( 'admin_email' ) );
205
+
206
+ $reason_info = isset( $_REQUEST[ 'reason_info' ] ) ? trim( stripslashes( $_REQUEST[ 'reason_info' ] ) ) : '';
207
+
208
+ $plugin_data[ 'reason_id' ] = $_POST[ 'reason_id' ];
209
+ $plugin_data[ 'reason_info' ] = substr( $reason_info, 0, 128 );
210
+ $plugin_data[ 'reason_text' ] = $_POST[ 'reason_text' ];
211
+
212
+ $plugin_data[ 'ts_meta_data_table_name' ] = 'ts_deactivation_survey';
213
+ $plugin_data[ 'ts_plugin_name' ] = self::$plugin_name;
214
+
215
+ wp_safe_remote_post( self::$api_url, array(
216
+ 'method' => 'POST',
217
+ 'timeout' => 45,
218
+ 'redirection' => 5,
219
+ 'httpversion' => '1.0',
220
+ 'blocking' => false,
221
+ 'headers' => array( 'user-agent' => 'TSTracker/' . md5( esc_url( home_url( '/' ) ) ) . ';' ),
222
+ 'body' => json_encode( $plugin_data ),
223
+ 'cookies' => array(),
224
+ )
225
+ );
226
+ // Print '1' for successful operation.
227
+ echo 1;
228
+ exit;
229
+ }
230
+
231
+ }
includes/component/deactivate-survey-popup/template/ts-deactivate-modal.php ADDED
@@ -0,0 +1,387 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if ( ! defined( 'ABSPATH' ) ) {
3
+ exit;
4
+ }
5
+
6
+ $slug = $VARS[ 'slug' ];
7
+ $confirmation_message = '';
8
+ $reasons = $VARS['reasons']['default'];
9
+ $reasons_list_items_html = '';
10
+ $plugin_customized_reasons = array();
11
+ $incr = 0;
12
+
13
+ foreach ( $reasons as $reason ) {
14
+ $list_item_classes = 'reason' . ( ! empty( $reason['input_type'] ) ? ' has-input' : '' ) . ( ( isset( $reason[ 'html' ] ) && ( ! empty( $reason[ 'html' ] ) ) ) ? ' has_html' : '' );
15
+
16
+ $reason_html = ( isset( $reason['html'] ) && ( ! empty( $reason['html'] ) ) ) ? '<div class="reason_html">' . $reason['html'] . '</div>' : '';
17
+
18
+ $ts_reason_input_type = ( isset( $reason['input_type'] ) && ( ! empty( $reason['input_type'] ) ) ) ? $reason['input_type'] : '';
19
+
20
+ $ts_reason_input_placeholder = ( isset( $reason['input_placeholder'] ) && ( ! empty( $reason['input_placeholder'] ) ) ) ? $reason['input_placeholder'] : '';
21
+
22
+ $ts_reason_id = ( isset( $reason['id'] ) && ( ! empty( $reason['id'] ) ) ) ? $reason['id'] : '';
23
+
24
+ $ts_reason_text = ( isset( $reason['text'] ) && ( ! empty( $reason['text'] ) ) ) ? $reason['text'] : '';
25
+
26
+ $selected = "";
27
+ if ( $incr == 0 ) {
28
+ $selected = "checked";
29
+ }
30
+
31
+ $reasons_list_items_html .= '<li class="' . $list_item_classes . '" data-input-type="' . $ts_reason_input_type . '" data-input-placeholder="' . $ts_reason_input_placeholder . '"><label><span><input type="radio" name="selected-reason" value="' . $ts_reason_id . '" ' . $selected . '/></span><span>' . $ts_reason_text . '</span></label>' . $reason_html . '</li>';
32
+ $incr ++;
33
+ }
34
+
35
+ ?>
36
+ <style>
37
+ .ts-modal {
38
+ position: fixed;
39
+ overflow: auto;
40
+ height: 100%;
41
+ width: 100%;
42
+ top: 0;
43
+ z-index: 100000;
44
+ display: none;
45
+ background: rgba(0, 0, 0, 0.6)
46
+ }
47
+
48
+ .ts-modal .ts-modal-dialog {
49
+ background: transparent;
50
+ position: absolute;
51
+ left: 50%;
52
+ margin-left: -298px;
53
+ padding-bottom: 30px;
54
+ top: -100%;
55
+ z-index: 100001;
56
+ width: 596px
57
+ }
58
+
59
+ .ts-modal li.reason.has_html .reason_html {
60
+ display: none;
61
+ border: 1px solid #ddd;
62
+ padding: 4px 6px;
63
+ margin: 6px 0 0 20px;
64
+ }
65
+
66
+ .ts-modal li.reason.has_html.li-active .reason_html {
67
+ display: block;
68
+ }
69
+
70
+ @media (max-width: 650px) {
71
+ .ts-modal .ts-modal-dialog {
72
+ margin-left: -50%;
73
+ box-sizing: border-box;
74
+ padding-left: 10px;
75
+ padding-right: 10px;
76
+ width: 100%
77
+ }
78
+
79
+ .ts-modal .ts-modal-dialog .ts-modal-panel > h3 > strong {
80
+ font-size: 1.3em
81
+ }
82
+
83
+ .ts-modal .ts-modal-dialog li.reason {
84
+ margin-bottom: 10px
85
+ }
86
+
87
+ .ts-modal .ts-modal-dialog li.reason .reason-input {
88
+ margin-left: 29px
89
+ }
90
+
91
+ .ts-modal .ts-modal-dialog li.reason label {
92
+ display: table
93
+ }
94
+
95
+ .ts-modal .ts-modal-dialog li.reason label > span {
96
+ display: table-cell;
97
+ font-size: 1.3em
98
+ }
99
+ }
100
+
101
+ .ts-modal.active {
102
+ display: block
103
+ }
104
+
105
+ .ts-modal.active:before {
106
+ display: block
107
+ }
108
+
109
+ .ts-modal.active .ts-modal-dialog {
110
+ top: 10%
111
+ }
112
+
113
+ .ts-modal .ts-modal-body, .ts-modal .ts-modal-footer {
114
+ border: 0;
115
+ background: #fefefe;
116
+ padding: 20px
117
+ }
118
+
119
+ .ts-modal .ts-modal-body {
120
+ border-bottom: 0
121
+ }
122
+
123
+ .ts-modal .ts-modal-body h2 {
124
+ font-size: 20px
125
+ }
126
+
127
+ .ts-modal .ts-modal-body > div {
128
+ margin-top: 10px
129
+ }
130
+
131
+ .ts-modal .ts-modal-body > div h2 {
132
+ font-weight: bold;
133
+ font-size: 20px;
134
+ margin-top: 0
135
+ }
136
+
137
+ .ts-modal .ts-modal-footer {
138
+ border-top: #eeeeee solid 1px;
139
+ text-align: right
140
+ }
141
+
142
+ .ts-modal .ts-modal-footer > .button {
143
+ margin: 0 7px
144
+ }
145
+
146
+ .ts-modal .ts-modal-footer > .button:first-child {
147
+ margin: 0
148
+ }
149
+
150
+ .ts-modal .ts-modal-panel:not(.active) {
151
+ display: none
152
+ }
153
+
154
+ .ts-modal .reason-input {
155
+ margin: 3px 0 3px 22px
156
+ }
157
+
158
+ .ts-modal .reason-input input, .ts-modal .reason-input textarea {
159
+ width: 100%
160
+ }
161
+
162
+ body.has-ts-modal {
163
+ overflow: hidden
164
+ }
165
+
166
+ #the-list .deactivate > .wcdn-ts-slug {
167
+ display: none
168
+ }
169
+
170
+ .ts-modal li.reason-hide {
171
+ display: none;
172
+ }
173
+
174
+ </style>
175
+ <script type="text/javascript">
176
+ var currentPluginName = "";
177
+ var TSCustomReasons = {};
178
+ var TSDefaultReason = {};
179
+ ( function ($) {
180
+ var $deactivateLinks = {};
181
+ var reasonsHtml = <?php echo json_encode( $reasons_list_items_html ); ?>,
182
+ modalHtml =
183
+ '<div class="ts-modal<?php echo ( $confirmation_message == "" ) ? ' no-confirmation-message' : ''; ?>">'
184
+ + ' <div class="ts-modal-dialog">'
185
+ + ' <div class="ts-modal-body">'
186
+ + ' <div class="ts-modal-panel" data-panel-id="confirm"><p><?php echo $confirmation_message; ?></p></div>'
187
+ + ' <div class="ts-modal-panel active" data-panel-id="reasons"><h3><strong><?php printf( WCDN_TS_deactivate::load_str( 'deactivation-share-reason' ) ); ?>:</strong></h3><ul id="reasons-list">' + reasonsHtml + '</ul></div>'
188
+ + ' </div>'
189
+ + ' <div class="ts-modal-footer">'
190
+ + ' <a href="#" class="button button-secondary button-deactivate"></a>'
191
+ + ' <a href="#" class="button button-primary button-close"><?php printf( WCDN_TS_deactivate::load_str( 'deactivation-modal-button-cancel' ) ); ?></a>'
192
+ + ' </div>'
193
+ + ' </div>'
194
+ + '</div>',
195
+ $modal = $(modalHtml),
196
+
197
+ $deactivateLink = $('#the-list .deactivate > .wcdn-ts-slug').prev();
198
+
199
+ for( var i = 0; i < $deactivateLink.length; i++ ) {
200
+ $deactivateLinks[ $( $deactivateLink[i] ).siblings( ".wcdn-ts-slug" ).attr( 'data-slug' ) ] = $deactivateLink[i].href;
201
+ }
202
+
203
+ $modal.appendTo( $( 'body' ) );
204
+
205
+ registerEventHandlers();
206
+
207
+ function registerEventHandlers() {
208
+ $deactivateLink.on( "click", function (evt) {
209
+ evt.preventDefault();
210
+ currentPluginName = $(this).siblings( ".wcdn-ts-slug" ).attr( 'data-slug' );
211
+ showModal();
212
+ });
213
+
214
+ $modal.on( 'click', '.button', function (evt) {
215
+ evt.preventDefault();
216
+ if ($(this).hasClass( 'disabled' ) ) {
217
+ return;
218
+ }
219
+
220
+ var _parent = $(this).parents( '.ts-modal:first' );
221
+ var _this = $(this);
222
+
223
+ if( _this.hasClass( 'allow-deactivate' ) ) {
224
+ var $radio = $('input[type="radio"]:checked');
225
+ var $selected_reason = $radio.parents('li:first'),
226
+ $input = $selected_reason.find('textarea, input[type="text"]');
227
+ if( $radio.length == 0 ) {
228
+ var data = {
229
+ 'action': 'ts_submit_uninstall_reason',
230
+ 'reason_id': 0,
231
+ 'reason_text': "Deactivated without any option",
232
+ 'plugin_basename': currentPluginName,
233
+ };
234
+ } else {
235
+ var data = {
236
+ 'action': 'ts_submit_uninstall_reason',
237
+ 'reason_id': (0 !== $radio.length) ? $radio.val() : '',
238
+ 'reason_text': $selected_reason.text(),
239
+ 'reason_info': (0 !== $input.length) ? $input.val().trim() : '',
240
+ 'plugin_basename': currentPluginName,
241
+ };
242
+ }
243
+
244
+ $.ajax({
245
+ url: ajaxurl,
246
+ method: 'POST',
247
+ data: data,
248
+ beforeSend: function () {
249
+ _parent.find('.button').addClass('disabled');
250
+ _parent.find('.button-secondary').text('Processing...');
251
+ },
252
+ complete: function () {
253
+ // Do not show the dialog box, deactivate the plugin.
254
+ window.location.href = $deactivateLinks[currentPluginName];
255
+ }
256
+ });
257
+ }
258
+ });
259
+
260
+ $modal.on('click', 'input[type="radio"]', function () {
261
+ console.log( this );
262
+ var _parent = $(this).parents('li:first');
263
+ var _parent_ul = $(this).parents('ul#reasons-list');
264
+
265
+ _parent_ul.children("li.li-active").removeClass("li-active");
266
+
267
+ $modal.find('.reason-input').remove();
268
+ $modal.find('.button-deactivate').text('<?php printf( WCDN_TS_deactivate::load_str( 'deactivation-modal-button-submit' ) ); ?>');
269
+
270
+ if (_parent.hasClass('has_html')) {
271
+ _parent.addClass('li-active');
272
+ }
273
+ if (_parent.hasClass('has-input')) {
274
+ var inputType = _parent.data('input-type'),
275
+ inputPlaceholder = _parent.data('input-placeholder'),
276
+ reasonInputHtml = '<div class="reason-input">' + (('textfield' === inputType) ? '<input type="text" />' : '<textarea rows="5"></textarea>') + '</div>';
277
+
278
+ _parent.append($(reasonInputHtml));
279
+ _parent.find('input, textarea').attr('placeholder', inputPlaceholder).focus();
280
+ }
281
+ });
282
+
283
+ // If the user has clicked outside the window, cancel it.
284
+ $modal.on('click', function (evt) {
285
+ var $target = $(evt.target);
286
+
287
+ // If the user has clicked anywhere in the modal dialog, just return.
288
+ if ($target.hasClass('ts-modal-body') || $target.hasClass('ts-modal-footer')) {
289
+ return;
290
+ }
291
+
292
+ // If the user has not clicked the close button and the clicked element is inside the modal dialog, just return.
293
+ if (!$target.hasClass('button-close') && ($target.parents('.ts-modal-body').length > 0 || $target.parents('.ts-modal-footer').length > 0)) {
294
+ return;
295
+ }
296
+
297
+ closeModal();
298
+ });
299
+ }
300
+
301
+ function showModal() {
302
+ resetModal();
303
+
304
+ // Display the dialog box.
305
+ $modal.addClass('active');
306
+
307
+ $('body').addClass('has-ts-modal');
308
+ }
309
+
310
+ function closeModal() {
311
+ $modal.removeClass('active');
312
+
313
+ $('body').removeClass('has-ts-modal');
314
+ }
315
+
316
+ function resetModal() {
317
+ if (TSCustomReasons.hasOwnProperty(currentPluginName) === true) {
318
+ $modal.find("ul#reasons-list").html(TSCustomReasons[currentPluginName]);
319
+ } else {
320
+ $modal.find("ul#reasons-list").html(reasonsHtml);
321
+
322
+ }
323
+ var defaultSelect = TSDefaultReason[currentPluginName];
324
+ $modal.find('.button').removeClass('disabled');
325
+
326
+ // Remove all input fields ( textfield, textarea ).
327
+ $modal.find('.reason-input').remove();
328
+
329
+ var $deactivateButton = $modal.find('.button-deactivate');
330
+ $modal.find(".reason-hide").hide();
331
+ /*
332
+ * If the modal dialog has no confirmation message, that is, it has only one panel, then ensure
333
+ * that clicking the deactivate button will actually deactivate the plugin.
334
+ */
335
+ if ($modal.hasClass('no-confirmation-message')) {
336
+ $deactivateButton.addClass('allow-deactivate');
337
+ showPanel('reasons');
338
+ }
339
+ }
340
+
341
+ function showPanel(panelType) {
342
+ $modal.find('.ts-modal-panel').removeClass('active ');
343
+ $modal.find('[data-panel-id="' + panelType + '"]').addClass('active');
344
+
345
+ updateButtonLabels();
346
+ }
347
+
348
+ function updateButtonLabels() {
349
+ var $deactivateButton = $modal.find('.button-deactivate');
350
+
351
+ // Reset the deactivate button's text.
352
+ if ('confirm' === getCurrentPanel()) {
353
+ $deactivateButton.text('<?php printf( WCDN_TS_deactivate::load_str( 'deactivation-modal-button-confirm' ) ); ?>');
354
+ } else {
355
+ var $radio = $('input[type="radio"]:checked');
356
+ if( $radio.length == 0 ) {
357
+ $deactivateButton.text('<?php printf( WCDN_TS_deactivate::load_str( 'deactivation-modal-button-deactivate' ) ); ?>');
358
+ } else {
359
+ var _parent = $( $radio ).parents('li:first');
360
+ var _parent_ul = $( $radio ).parents('ul#reasons-list');
361
+
362
+ _parent_ul.children("li.li-active").removeClass("li-active");
363
+
364
+ $modal.find('.reason-input').remove();
365
+ $modal.find('.button-deactivate').text('<?php printf( WCDN_TS_deactivate::load_str( 'deactivation-modal-button-submit' ) ); ?>');
366
+
367
+ if (_parent.hasClass('has_html')) {
368
+ _parent.addClass('li-active');
369
+ }
370
+
371
+ if (_parent.hasClass('has-input')) {
372
+ var inputType = _parent.data('input-type'),
373
+ inputPlaceholder = _parent.data('input-placeholder'),
374
+ reasonInputHtml = '<div class="reason-input">' + (('textfield' === inputType) ? '<input type="text" />' : '<textarea rows="5"></textarea>') + '</div>';
375
+
376
+ _parent.append($(reasonInputHtml));
377
+ _parent.find('input, textarea').attr('placeholder', inputPlaceholder).focus();
378
+ }
379
+ }
380
+ }
381
+ }
382
+
383
+ function getCurrentPanel() {
384
+ return $modal.find('.ts-modal-panel.active').attr('data-panel-id');
385
+ }
386
+ })(jQuery);
387
+ </script>
includes/component/faq-support/Instructions ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Add FAQ's submenu or tab in the plugin.
2
+
3
+ To add this feature to the plugin, you can follow the below steps:
4
+
5
+ 1. Copy the ts-faq-support.php file into your plugin folder. And faq-page folder into templates folder.
6
+
7
+ 2. Include the ts-faq-support.php file once when on the admin page. This can be done with is_admin() function.
8
+
9
+ 3. You need to pass the 7 parameters to the default constructor of the TS_Welcome class. You need to change the value of the variable value as per the respective plugin.
10
+
11
+ $wcap_plugin_prefix = 'wcap';
12
+ $wcap_plugin_name = 'Abandoned Cart Pro for WooCommerce';
13
+ $wcap_blog_post_link = 'https://www.tychesoftwares.com/order-delivery-date-usage-tracking/';
14
+ $wcap_locale = 'woocommerce-ac';
15
+ $wcap_plugin_folder_name = 'woocommerce-abandon-cart-pro/';
16
+ $wcap_plugins_page = 'admin.php?page=woocommerce_ac_page';
17
+ $wcap_plugin_slug = 'woocommerce_ac_page';
18
+
19
+ $ts_pro_faq = self::wcap_get_faq ();
20
+ new TS_Faq_Support( $wcap_plugin_name, $wcap_plugin_prefix, $wcap_plugins_page, $wcap_locale, $wcap_plugin_folder_name, $wcap_plugin_slug, $ts_pro_faq );
21
+
22
+ Here , $ts_pro_faq is an array.
23
+
24
+ The structure of the array is like below:
25
+
26
+ $ts_faq = array(
27
+ 1 => array (
28
+ 'question' => '',
29
+ 'answer' => ''
30
+ )
31
+ );
32
+
33
+ Here Index start from 1. Do not change it. We need to display 10 Questions and answers, so you can add 10 questions and answers in the above format.
34
+
35
+ 4. You need to create 3 do_action in your respective plugin. And it should follow below standard.
36
+
37
+ 1. {{plugin-prefix}}_add_settings_tab
38
+ 2. {{plugin-prefix}}_add_tab_content
39
+ 3. {{plugin-prefix}}_add_submenu
40
+
41
+ 5. {{plugin-prefix}}_add_settings_tab : This do_action will be placed after your plguins tab. It will allow to add new tab.
42
+
43
+ 6. {{plugin-prefix}}_add_tab_content : This do_action will be placed where you display the content of the tab.
44
+
45
+ 7. {{plugin-prefix}}_add_submenu : This do_action will be placed where you have screated sub menu of your plguin.
46
+
47
+ 8. You need to update all faq of the plugins.
includes/component/faq-support/templates/faq-page/faq-page.php ADDED
@@ -0,0 +1,134 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * FAQ & Support page
4
+ */
5
+ ?>
6
+ <style>
7
+ .faq-ts-accordion {
8
+ background-color: #ccc;
9
+ color: #444;
10
+ cursor: pointer;
11
+ padding: 18px;
12
+ width: 100%;
13
+ border: none;
14
+ text-align: left;
15
+ outline: none;
16
+ font-size: 15px;
17
+ transition: 0.4s;
18
+ margin-bottom: 5px;
19
+ }
20
+ .active, .faq-ts-accordion:hover {
21
+ background-color: #ccc;
22
+ }
23
+ .faq-ts-accordion:after {
24
+ content: '\002B';
25
+ color: #777;
26
+ font-weight: bold;
27
+ float: right;
28
+ margin-left: 5px;
29
+ }
30
+ .active:after {
31
+ content: "\2212";
32
+ }
33
+ .panel {
34
+ padding: 0 18px;
35
+ display: none;
36
+ background-color: light-grey;
37
+ overflow: hidden;
38
+ }
39
+ .main-panel {
40
+ width: 650px !important;
41
+ }
42
+ .support-panel {
43
+ padding: 5px;
44
+ }
45
+ .dashicons-external {
46
+ content: "\f504";
47
+ }
48
+ .dashicons-editor-help {
49
+ content: "\f223";
50
+ }
51
+ div.panel.show {
52
+ display: block !important;
53
+ }
54
+
55
+ </style>
56
+
57
+ <div class="main-panel">
58
+ <h3>Frequently Asked Questions for <?php echo $ts_plugin_name; ?> Plugin</h3>
59
+ <button class="faq-ts-accordion"><span class="dashicons dashicons-editor-help"></span><strong><?php echo $ts_faq[1]['question'] ?></strong></button>
60
+ <div class="panel">
61
+ <p><?php echo $ts_faq[1]['answer'] ?></p>
62
+ </div>
63
+
64
+ <button class="faq-ts-accordion"><span class="dashicons dashicons-editor-help"></span><strong><?php echo $ts_faq[2]['question'] ?></strong></button>
65
+ <div class="panel">
66
+ <p><?php echo $ts_faq[2]['answer'] ?></p>
67
+ </div>
68
+
69
+ <button class="faq-ts-accordion"><span class="dashicons dashicons-editor-help"></span><strong><?php echo $ts_faq[3]['question'] ?></strong></button>
70
+ <div class="panel">
71
+ <p><?php echo $ts_faq[3]['answer'] ?></p>
72
+ </div>
73
+
74
+ <button class="faq-ts-accordion"><span class="dashicons dashicons-editor-help"></span><strong><?php echo $ts_faq[4]['question'] ?></strong></button>
75
+ <div class="panel">
76
+ <p><?php echo $ts_faq[4]['answer'] ?></p>
77
+ </div>
78
+
79
+ <button class="faq-ts-accordion"><span class="dashicons dashicons-editor-help"></span><strong><?php echo $ts_faq[5]['question'] ?></strong></button>
80
+ <div class="panel">
81
+ <p><?php echo $ts_faq[5]['answer'] ?></p>
82
+ </div>
83
+
84
+ <button class="faq-ts-accordion"><span class="dashicons dashicons-editor-help"></span><strong><?php echo $ts_faq[6]['question'] ?></strong></button>
85
+ <div class="panel">
86
+ <p><?php echo $ts_faq[6]['answer'] ?></p>
87
+ </div>
88
+
89
+ <button class="faq-ts-accordion"><span class="dashicons dashicons-editor-help"></span><strong><?php echo $ts_faq[7]['question'] ?></strong></button>
90
+ <div class="panel">
91
+ <p><?php echo $ts_faq[7]['answer'] ?></p>
92
+ </div>
93
+
94
+ <button class="faq-ts-accordion"><span class="dashicons dashicons-editor-help"></span><strong><?php echo $ts_faq[8]['question'] ?></strong></button>
95
+ <div class="panel">
96
+ <p><?php echo $ts_faq[8]['answer'] ?></p>
97
+ </div>
98
+
99
+ <button class="faq-ts-accordion"><span class="dashicons dashicons-editor-help"></span><strong><?php echo $ts_faq[9]['question'] ?></strong></button>
100
+ <div class="panel">
101
+ <p><?php echo $ts_faq[9]['answer'] ?></p>
102
+ </div>
103
+ <button class="faq-ts-accordion"><span class="dashicons dashicons-editor-help"></span><strong><?php echo $ts_faq[10]['question'] ?></strong></button>
104
+ <div class="panel">
105
+ <p><?php echo $ts_faq[10]['answer'] ?></p>
106
+ </div>
107
+ </div>
108
+
109
+ <div class="support-panel">
110
+ <p style="font-size: 19px">
111
+ If your queries are not answered here, you can send an email directly to <strong>support@tychesoftwares.freshdesk.com</strong> for some additional requirements.
112
+ </p>
113
+ </div>
114
+ <script>
115
+ var acc = document.getElementsByClassName("faq-ts-accordion");
116
+ var i;
117
+
118
+ for (i = 0; i < acc.length; i++) {
119
+ acc[i].onclick = function() {
120
+ hideAll();
121
+
122
+ this.classList.toggle("active");
123
+ this.nextElementSibling.classList.toggle("show");
124
+ }
125
+ }
126
+
127
+ function hideAll() {
128
+ for (i = 0; i < acc.length; i++) {
129
+ acc[i].classList.toggle( "active", false);
130
+ acc[i].nextElementSibling.classList.toggle( "show", false );
131
+ }
132
+ }
133
+
134
+ </script>
includes/component/faq-support/ts-faq-support.php ADDED
@@ -0,0 +1,232 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ *
5
+ * @since 1.0.0
6
+ */
7
+ class WCDN_TS_Faq_Support {
8
+
9
+ /**
10
+ * @var string The capability users should have to view the page
11
+ */
12
+ public static $minimum_capability = 'manage_options';
13
+
14
+ /**
15
+ * @var string Plugin name
16
+ * @access public
17
+ */
18
+
19
+ public static $plugin_name = '';
20
+
21
+ /**
22
+ * @var string Plugin prefix
23
+ * @access public
24
+ */
25
+ public static $plugin_prefix = '';
26
+
27
+ /**
28
+ * @var string Plugins page path
29
+ * @access public
30
+ */
31
+ public static $plugin_page = '';
32
+
33
+ /**
34
+ * @var string Plugins plugin local
35
+ * @access public
36
+ */
37
+ public static $plugin_locale = '';
38
+
39
+ /**
40
+ * @var string Plugin folder name
41
+ * @access public
42
+ */
43
+ public static $plugin_folder = '';
44
+ /**
45
+ * @var string Plugin url
46
+ * @access public
47
+ */
48
+ public static $plugin_url = '';
49
+ /**
50
+ * @var string Template path
51
+ * @access public
52
+ */
53
+ public static $template_base = '';
54
+ /**
55
+ * @var string Slug on Main menu
56
+ * @access public
57
+ */
58
+ public static $plugin_slug = '';
59
+
60
+ /**
61
+ * @var array List of all questions and answers.
62
+ * @access public
63
+ */
64
+ public static $ts_faq = array ();
65
+ /**
66
+ * @var string Slug for FAQ submenu
67
+ * @access public
68
+ */
69
+ public static $ts_faq_submenu_slug = '';
70
+ /**
71
+ * Initialization of hooks where we prepare the functionality to ask use for survey
72
+ */
73
+ public function __construct( $ts_plugin_mame = '', $ts_plugin_prefix = '', $ts_plugin_page = '', $ts_plugin_locale = '', $ts_plugin_folder_name = '', $ts_plugin_slug = '', $ts_faq_array = array(), $faq_submenu_slug = '' ) {
74
+
75
+ self::$plugin_name = $ts_plugin_mame;
76
+ self::$plugin_prefix = $ts_plugin_prefix;
77
+ self::$plugin_page = $ts_plugin_page;
78
+ self::$plugin_locale = $ts_plugin_locale;
79
+ self::$plugin_slug = $ts_plugin_slug;
80
+ self::$ts_faq = $ts_faq_array;
81
+ self::$ts_faq_submenu_slug = ( '' == $faq_submenu_slug ) ? self::$plugin_slug : $faq_submenu_slug ;
82
+
83
+
84
+ //Add a sub menu in the main menu of the plugin if added.
85
+ add_action( self::$plugin_prefix . '_add_submenu', array( &$this, 'ts_add_submenu' ) );
86
+
87
+ //Add a tab for FAQ & Support along with other plugin settings tab.
88
+ add_action( self::$plugin_prefix . '_add_settings_tab', array( &$this, 'ts_add_new_settings_tab' ) );
89
+ add_action( self::$plugin_prefix . '_add_tab_content', array( &$this, 'ts_add_tab_content' ) );
90
+
91
+ add_action ( self::$plugin_prefix . '_add_meta_footer', array( &$this, 'ts_add_meta_footer_text' ), 10, 1 );
92
+
93
+ add_action( 'admin_menu', array( &$this, 'ts_admin_menus' ) );
94
+ add_action( 'admin_head', array( &$this, 'admin_head' ) );
95
+
96
+ self::$plugin_folder = $ts_plugin_folder_name;
97
+ self::$plugin_url = $this->ts_get_plugin_url();
98
+ self::$template_base = $this->ts_get_template_path();
99
+
100
+ }
101
+
102
+
103
+ public static function ts_add_meta_footer_text () {
104
+ ?>
105
+ <tr> <td> <br></td> </tr>
106
+
107
+ <tr>
108
+ <td colspan="2">
109
+ You have any queries? Please check our <a href=<?php echo admin_url( 'index.php?page='.self::$plugin_prefix .'_faq_page' ) ; ?> >FAQ</a> page.
110
+ </td>
111
+ <tr>
112
+ <?php
113
+ }
114
+
115
+ /**
116
+ * Register the Dashboard Page which is later hidden but this pages
117
+ * is used to render the Welcome page.
118
+ *
119
+ * @access public
120
+ * @since 7.7
121
+ * @return void
122
+ */
123
+ public function ts_admin_menus() {
124
+
125
+ // About Page
126
+ add_dashboard_page(
127
+ sprintf( esc_html__( 'Frequently Asked Questions for %s', self::$plugin_locale ), self::$plugin_name ),
128
+ esc_html__( 'Frequently Asked Questions for ' . self::$plugin_name, self::$plugin_locale ),
129
+ self::$minimum_capability,
130
+ self::$plugin_prefix . '_faq_page',
131
+ array( $this, 'ts_faq_support_page' )
132
+ );
133
+
134
+ }
135
+
136
+ /**
137
+ * Hide Individual Dashboard Pages
138
+ *
139
+ * @access public
140
+ * @since 7.7
141
+ * @return void
142
+ */
143
+ public function admin_head() {
144
+ remove_submenu_page( 'index.php', self::$plugin_prefix . '_faq_page' );
145
+ }
146
+ /**
147
+ * Adds a subment to the main menu of the plugin
148
+ *
149
+ * @since 7.7
150
+ */
151
+
152
+ public function ts_add_submenu() {
153
+ $page = add_submenu_page( self::$plugin_slug,
154
+ 'FAQ & Support',
155
+ 'FAQ & Support',
156
+ 'manage_woocommerce',
157
+ self::$ts_faq_submenu_slug .
158
+ '&action=faq_support_page',
159
+ array( &$this, 'ts_add_tab_content' )
160
+ );
161
+
162
+ }
163
+
164
+ /**
165
+ * Add a new tab on the settings page.
166
+ *
167
+ * @since 7.7
168
+ */
169
+ public function ts_add_new_settings_tab() {
170
+ $faq_support_page = '';
171
+ if( isset( $_GET[ 'action' ] ) && $_GET[ 'action' ] == 'faq_support_page' ) {
172
+ $faq_support_page = "nav-tab-active";
173
+ }
174
+ $ts_plugins_page_url = self::$plugin_page . "&action=faq_support_page" ;
175
+ ?>
176
+ <a href="<?php echo $ts_plugins_page_url; ?>" class="nav-tab <?php echo $faq_support_page; ?>"> <?php _e( 'FAQ & Support', self::$plugin_locale ); ?> </a>
177
+ <?php
178
+
179
+
180
+ }
181
+
182
+ /**
183
+ * Add content to the new tab added.
184
+ *
185
+ * @since 7.7
186
+ */
187
+
188
+ public function ts_add_tab_content() {
189
+ if( isset( $_GET[ 'action' ] ) && $_GET[ 'action' ] == 'faq_support_page' ) {
190
+ $this->ts_faq_support_page();
191
+ }
192
+ }
193
+
194
+ /**
195
+ * Adds a page to display the FAQ's and support information
196
+ *
197
+ * @since 7.7
198
+ */
199
+ public function ts_faq_support_page() {
200
+ ob_start();
201
+ wc_get_template( 'faq-page/faq-page.php',
202
+ array(
203
+ 'ts_plugin_name' => self::$plugin_name,
204
+ 'ts_faq' => self::$ts_faq
205
+ ),
206
+ self::$plugin_folder,
207
+ self::$template_base );
208
+ echo ob_get_clean();
209
+ }
210
+
211
+ /**
212
+ * This function returns the plugin url
213
+ *
214
+ * @access public
215
+ * @since 7.7
216
+ * @return string
217
+ */
218
+ public function ts_get_plugin_url() {
219
+ return plugins_url() . '/' . self::$plugin_folder;
220
+ }
221
+
222
+ /**
223
+ * This function returns the template directory path
224
+ *
225
+ * @access public
226
+ * @since 7.7
227
+ * @return string
228
+ */
229
+ public function ts_get_template_path() {
230
+ return untrailingslashit( plugin_dir_path( __FILE__ ) ) . '/templates/';
231
+ }
232
+ }
includes/component/tracking-data/Instructions ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Add a notice to ask customers to collect non-sensitive data for the plugin and provide them with 20% coupon code if they allow us to collect data.
2
+
3
+ To add this feature to the plugin, you can follow the below steps:
4
+
5
+ 1. Copy the ts-tracking.php file and class-ts-tracker.php file into your plugin folder.
6
+
7
+ 2. Include the file ts-tracking.php once when on the admin page. This can be done with is_admin() function.
8
+
9
+ 3. You need to pass the 5 parameters to the default constructor of the TS_tracking class. You need to change the value of the variable as per the respective plugin.
10
+
11
+ $wcap_plugin_prefix = 'wcap';
12
+ $wcap_plugin_name = 'Abandoned Cart Pro for WooCommerce';
13
+ $wcap_blog_post_link = 'https://www.tychesoftwares.com/order-delivery-date-usage-tracking/';
14
+ $wcap_locale = 'woocommerce-ac';
15
+ WCAP_PLUGIN_URL = untrailingslashit(plugins_url('/', __FILE__)) ;
16
+
17
+ new TS_tracking( $wcap_plugin_prefix, $wcap_plugin_name, $wcap_blog_post_link, $wcap_locale, WCAP_PLUGIN_URL );
18
+
19
+ 4. Then you need to pass 2 parameters to the TS_Tracker class. You need to change the value of the variable as per the respective plugin.
20
+
21
+ $wcap_plugin_prefix = 'wcap';
22
+ $wcap_plugin_name = 'Abandoned Cart Pro for WooCommerce';
23
+ new TS_Tracker( $wcap_plugin_prefix, $wcap_plugin_name );
24
+
25
+ 5. We are using these class for tracking the data from the websites, so to track the data from the site we need to add the plugin data.
26
+
27
+ To get the data from the website you need to use 2 filters.
28
+
29
+ 1. ts_tracker_data : It will be called when admin allows tracking the data.
30
+
31
+ 2. ts_tracker_opt_out_data : It will be called when an admin does not allow to track the data
32
+
33
+ Both filters have 1 argument, you need to add all the data as per the plugin.
34
+
35
+ 6. We need to give the table name in the tracking data. You need to pass that in above both filter.
36
+
37
+ IMP: ts_meta_data_table_name - this should contain the table name which will store the plugin specific data. This should not be skipped.
38
+
39
+ Like: $plugin_data[ 'ts_meta_data_table_name' ] = 'ts_tracking_wcap_meta_data';
40
+
41
+ Here, key 'ts_meta_data_table_name' should remain same, you just need to change the table name.
42
+
43
+ Here, in the AC pro case, I have given table name as 'ts_tracking_{{prefix-of-plugin}}_meta_data
44
+
45
+ 7. Here we need 1 js file and 1 image for the tracking of the data. So I have added in the same folder, so the code structure is kept as per the current location.
46
+
47
+ If you move the js file and the image to another place then you need to change that in the 'ts-tracking.php' file.
48
+
49
+ You need to change the line number #75 for js file.
50
+ You need to change the line number #127 for the image.
51
+
52
+ 8. It is also have the ajax function which will be named as
53
+
54
+ 'wp_ajax_{{plugin-prefix}}_admin_notices'
includes/component/tracking-data/assets/images/site-logo-new.jpg ADDED
Binary file
includes/component/tracking-data/assets/js/dismiss-notice.js ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * This function allows to dismiss the notices which are shown from the plugin.
3
+ *
4
+ * @namespace orddd_notice_dismissible
5
+ * @since 6.8
6
+ */
7
+ // Make notices dismissible
8
+ jQuery(document).ready( function() {
9
+
10
+ jQuery('.wcdn-tracker').on( 'click', 'button.notice-dismiss', function(){
11
+
12
+ // since 2.8 ajaxurl is always defined in the admin header and points to admin-ajax.php
13
+ var admin_url = jQuery( "#admin_url" ).val();
14
+ ajaxurl = admin_url + "admin-ajax.php";
15
+
16
+ var data = {
17
+ action: "wcdn_admin_notices"
18
+ };
19
+
20
+ jQuery.post( ajaxurl, data, function( response ) {
21
+ });
22
+ });
23
+ });
includes/component/tracking-data/class-ts-tracker.php ADDED
@@ -0,0 +1,282 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * The tracker class adds functionality to track usage of the plugin based on if the customer opted in.
4
+ * No personal information is tracked, only general settings, order and user counts and admin email for
5
+ * discount code.
6
+ *
7
+ * @class WCDN_TS_Tracker
8
+ * @version 6.8
9
+ */
10
+
11
+ if ( ! defined( 'ABSPATH' ) ) {
12
+ exit;
13
+ }
14
+
15
+ class WCDN_TS_Tracker {
16
+
17
+ /**
18
+ * URL to the Tracker API endpoint.
19
+ * @var string
20
+ */
21
+
22
+ private static $api_url = 'http://tracking.tychesoftwares.com/v1/';
23
+
24
+ /**
25
+ * @var string Plugin prefix
26
+ * @access public
27
+ */
28
+
29
+ public static $plugin_prefix = '';
30
+
31
+ /**
32
+ * @var string Plugin name
33
+ * @access public
34
+ */
35
+
36
+ public static $plugin_name = '';
37
+
38
+ /**
39
+ * Hook into cron event.
40
+ */
41
+ public function __construct( $ts_plugin_prefix = '', $ts_plugin_name = '' ) {
42
+
43
+ self::$plugin_prefix = $ts_plugin_prefix;
44
+ self::$plugin_name = $ts_plugin_name;
45
+
46
+ add_action( self::$plugin_prefix . '_ts_tracker_send_event', array( __CLASS__, 'ts_send_tracking_data' ) );
47
+ }
48
+
49
+ /**
50
+ * Decide whether to send tracking data or not.
51
+ *
52
+ * @param boolean $override
53
+ */
54
+ public static function ts_send_tracking_data( $override = false ) {
55
+ if ( ! apply_filters( 'ts_tracker_send_override', $override ) ) {
56
+ // Send a maximum of once per week by default.
57
+ $last_send = self::ts_get_last_send_time();
58
+ if ( $last_send && $last_send > apply_filters( 'ts_tracker_last_send_interval', strtotime( '-1 week' ) ) ) {
59
+ return;
60
+ }
61
+ } else {
62
+ // Make sure there is at least a 1 hour delay between override sends, we don't want duplicate calls due to double clicking links.
63
+ $last_send = self::ts_get_last_send_time();
64
+ if ( $last_send && $last_send > strtotime( '-1 hours' ) ) {
65
+ return;
66
+ }
67
+ }
68
+
69
+ $allow_tracking = get_option( self::$plugin_prefix . '_allow_tracking' );
70
+ if ( 'yes' == $allow_tracking ) {
71
+ $override = true;
72
+ }
73
+
74
+ // Update time first before sending to ensure it is set
75
+ update_option( 'wcdn_ts_tracker_last_send', time() );
76
+
77
+ if( $override == false ) {
78
+ $params = array();
79
+ $params[ 'tracking_usage' ] = 'no';
80
+ $params[ 'url' ] = home_url();
81
+ $params[ 'email' ] = '';
82
+
83
+ $params = apply_filters( 'ts_tracker_opt_out_data', $params );
84
+ } else {
85
+ $params = self::ts_get_tracking_data();
86
+ }
87
+
88
+ wp_safe_remote_post( self::$api_url, array(
89
+ 'method' => 'POST',
90
+ 'timeout' => 45,
91
+ 'redirection' => 5,
92
+ 'httpversion' => '1.0',
93
+ 'blocking' => false,
94
+ 'headers' => array( 'user-agent' => 'TSTracker/' . md5( esc_url( home_url( '/' ) ) ) . ';' ),
95
+ 'body' => json_encode( $params ),
96
+ 'cookies' => array(),
97
+ )
98
+ );
99
+ }
100
+
101
+ /**
102
+ * Get the last time tracking data was sent.
103
+ * @return int|bool
104
+ */
105
+ private static function ts_get_last_send_time() {
106
+ return apply_filters( 'ts_tracker_last_send_time', get_option( 'wcdn_ts_tracker_last_send', false ) );
107
+ }
108
+
109
+ /**
110
+ * Get all the tracking data.
111
+ * @return array
112
+ */
113
+ private static function ts_get_tracking_data() {
114
+ $data = array();
115
+
116
+ // General site info
117
+ $data[ 'url' ] = home_url();
118
+ $data[ 'email' ] = apply_filters( 'ts_tracker_admin_email', get_option( 'admin_email' ) );
119
+
120
+ // WordPress Info
121
+ $data[ 'wp' ] = self::ts_get_wordpress_info();
122
+
123
+ $data[ 'theme_info' ] = self::ts_get_theme_info();
124
+
125
+ // Server Info
126
+ $data[ 'server' ] = self::ts_get_server_info();
127
+
128
+ // Plugin info
129
+ $all_plugins = self::ts_get_all_plugins();
130
+ $data[ 'active_plugins' ] = $all_plugins[ 'active_plugins' ];
131
+ $data[ 'inactive_plugins' ] = $all_plugins[ 'inactive_plugins' ];
132
+
133
+ //WooCommerce version
134
+ $data[ 'wc_plugin_version' ] = self::ts_get_wc_plugin_version();
135
+
136
+
137
+
138
+ return apply_filters( 'ts_tracker_data', $data );
139
+ }
140
+
141
+ /**
142
+ * Get Selected city of the WooCommerce store.
143
+ * @return string $ts_city Name of the city
144
+ */
145
+ private static function ts_get_wc_city () {
146
+ $ts_city = get_option ( 'woocommerce_store_city' );
147
+ return $ts_city;
148
+ }
149
+
150
+ /**
151
+ * Get Selected country of the WooCommerce store.
152
+ * @return string $ts_country Name of the city
153
+ */
154
+ private static function ts_get_wc_country () {
155
+ $ts_country = get_option ( 'woocommerce_default_country' );
156
+ return $ts_country;
157
+ }
158
+
159
+ /**
160
+ * Get WordPress related data.
161
+ * @return array
162
+ */
163
+ private static function ts_get_wordpress_info() {
164
+ $wp_data = array();
165
+
166
+ $memory = wc_let_to_num( WP_MEMORY_LIMIT );
167
+
168
+ if ( function_exists( 'memory_get_usage' ) ) {
169
+ $system_memory = wc_let_to_num( @ini_get( 'memory_limit' ) );
170
+ $memory = max( $memory, $system_memory );
171
+ }
172
+
173
+ $wp_data[ 'memory_limit' ] = size_format( $memory );
174
+ $wp_data[ 'debug_mode' ] = ( defined( 'WP_DEBUG' ) && WP_DEBUG ) ? 'Yes' : 'No';
175
+ $wp_data[ 'locale' ] = get_locale();
176
+ $wp_data[ 'wp_version' ] = get_bloginfo( 'version' );
177
+ $wp_data[ 'multisite' ] = is_multisite() ? 'Yes' : 'No';
178
+ $wp_data[ 'blogdescription' ] = get_option ( 'blogdescription' );
179
+ $wp_data[ 'blogname' ] = get_option ( 'blogname' );
180
+ $wp_data[ 'wc_city' ] = self::ts_get_wc_city();
181
+ $wp_data[ 'wc_country' ] = self::ts_get_wc_country();
182
+
183
+ return $wp_data;
184
+ }
185
+
186
+ /**
187
+ * Get the current theme info, theme name and version.
188
+ * @return array
189
+ */
190
+ public static function ts_get_theme_info() {
191
+ $theme_data = wp_get_theme();
192
+ $theme_child_theme = is_child_theme() ? 'Yes' : 'No';
193
+
194
+ return array( 'theme_name' => $theme_data->Name,
195
+ 'theme_version' => $theme_data->Version,
196
+ 'child_theme' => $theme_child_theme );
197
+ }
198
+
199
+ /**
200
+ * Get server related info.
201
+ * @return array
202
+ */
203
+ private static function ts_get_server_info() {
204
+ global $wpdb;
205
+ $server_data = array();
206
+
207
+ if ( isset( $_SERVER[ 'SERVER_SOFTWARE' ] ) && ! empty( $_SERVER[ 'SERVER_SOFTWARE' ] ) ) {
208
+ $server_data[ 'software' ] = $_SERVER[ 'SERVER_SOFTWARE' ];
209
+ }
210
+
211
+ if ( function_exists( 'phpversion' ) ) {
212
+ $server_data[ 'php_version' ] = phpversion();
213
+ }
214
+
215
+ if ( function_exists( 'ini_get' ) ) {
216
+ $server_data[ 'php_post_max_size' ] = size_format( wc_let_to_num( ini_get( 'post_max_size' ) ) );
217
+ $server_data[ 'php_time_limt' ] = ini_get( 'max_execution_time' );
218
+ $server_data[ 'php_max_input_vars' ] = ini_get( 'max_input_vars' );
219
+ $server_data[ 'php_suhosin' ] = extension_loaded( 'suhosin' ) ? 'Yes' : 'No';
220
+ }
221
+
222
+ $server_data[ 'mysql_version' ] = $wpdb->db_version();
223
+
224
+ $server_data[ 'php_max_upload_size' ] = size_format( wp_max_upload_size() );
225
+ $server_data[ 'php_default_timezone' ] = date_default_timezone_get();
226
+ $server_data[ 'php_soap' ] = class_exists( 'SoapClient' ) ? 'Yes' : 'No';
227
+ $server_data[ 'php_fsockopen' ] = function_exists( 'fsockopen' ) ? 'Yes' : 'No';
228
+ $server_data[ 'php_curl' ] = function_exists( 'curl_init' ) ? 'Yes' : 'No';
229
+
230
+ return $server_data;
231
+ }
232
+
233
+ /**
234
+ * Get all plugins grouped into activated or not.
235
+ * @return array
236
+ */
237
+ private static function ts_get_all_plugins() {
238
+ // Ensure get_plugins function is loaded
239
+ if ( ! function_exists( 'get_plugins' ) ) {
240
+ include ABSPATH . '/wp-admin/includes/plugin.php';
241
+ }
242
+
243
+ $plugins = get_plugins();
244
+ $active_plugins_keys = get_option( 'active_plugins', array() );
245
+ $active_plugins = array();
246
+
247
+ foreach ( $plugins as $k => $v ) {
248
+ // Take care of formatting the data how we want it.
249
+ $formatted = array();
250
+ $formatted[ 'name' ] = strip_tags( $v[ 'Name' ] );
251
+ if ( isset( $v[ 'Version' ] ) ) {
252
+ $formatted[ 'version' ] = strip_tags( $v[ 'Version' ] );
253
+ }
254
+ if ( isset( $v[ 'Author' ] ) ) {
255
+ $formatted[ 'author' ] = strip_tags( $v[ 'Author' ] );
256
+ }
257
+ if ( isset( $v[ 'Network' ] ) ) {
258
+ $formatted[ 'network' ] = strip_tags( $v[ 'Network' ] );
259
+ }
260
+ if ( isset( $v[ 'PluginURI' ] ) ) {
261
+ $formatted[ 'plugin_uri' ] = strip_tags( $v[ 'PluginURI' ] );
262
+ }
263
+ if ( in_array( $k, $active_plugins_keys ) ) {
264
+ // Remove active plugins from list so we can show active and inactive separately
265
+ unset( $plugins[ $k ] );
266
+ $active_plugins[ $k ] = $formatted;
267
+ } else {
268
+ $plugins[ $k ] = $formatted;
269
+ }
270
+ }
271
+
272
+ return array( 'active_plugins' => $active_plugins, 'inactive_plugins' => $plugins );
273
+ }
274
+
275
+ /**
276
+ * Sends current WooCommerce version
277
+ * @return string
278
+ */
279
+ private static function ts_get_wc_plugin_version() {
280
+ return WC()->version;
281
+ }
282
+ }
includes/component/tracking-data/ts-tracking.php ADDED
@@ -0,0 +1,317 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if ( ! defined( 'ABSPATH' ) ) {
3
+ exit;
4
+ }
5
+
6
+ include_once( 'class-ts-tracker.php' );
7
+
8
+ /** Adds the Tracking non-senstive data notice
9
+ *
10
+ * @since 6.8
11
+ */
12
+ class WCDN_TS_tracking {
13
+
14
+ /**
15
+ * @var string Plugin prefix
16
+ * @access public
17
+ */
18
+
19
+ public static $plugin_prefix = '';
20
+
21
+ /**
22
+ * @var string Plugin Name
23
+ * @access public
24
+ */
25
+
26
+ public static $plugin_name = '';
27
+
28
+ /**
29
+ * @var string Tracking data blog post link
30
+ * @access public
31
+ */
32
+
33
+ public static $blog_post_link = '';
34
+
35
+ /**
36
+ * @var string Plugin context
37
+ * @access public
38
+ */
39
+
40
+ public static $plugin_context = '';
41
+
42
+ /**
43
+ * @var string Plugin url
44
+ * @access public
45
+ */
46
+ public static $plugin_url = '';
47
+
48
+ /**
49
+ * @var string File path
50
+ * @access public
51
+ */
52
+ public static $ts_file_path = '' ;
53
+ /**
54
+ * @var string plugin locale
55
+ * @access public
56
+ */
57
+ public static $ts_plugin_locale = '';
58
+
59
+ /**
60
+ * @var string Settings page
61
+ * @access public
62
+ */
63
+ public static $ts_settings_page = '';
64
+
65
+ /**
66
+ * @var string On which setting page need to add setting
67
+ * @access public
68
+ */
69
+ public static $ts_add_setting_on_page = '';
70
+ /**
71
+ * @var string On which section setting need to add
72
+ * @access public
73
+ */
74
+ public static $ts_add_setting_on_section = '';
75
+ /**
76
+ * @var string Register setting
77
+ * @access public
78
+ */
79
+ public static $ts_register_setting = '';
80
+ /**
81
+ * Default Constructor
82
+ *
83
+ */
84
+ public function __construct( $ts_plugin_prefix = '', $ts_plugin_name = '', $ts_blog_post_link = '', $ts_plugin_context = '', $ts_plugin_url = '', $setting_page = '', $add_setting = '', $setting_section = '', $setting_register = '' ) {
85
+
86
+ self::$plugin_prefix = $ts_plugin_prefix;
87
+ self::$plugin_name = $ts_plugin_name;
88
+ self::$blog_post_link = $ts_blog_post_link;
89
+ self::$plugin_url = $ts_plugin_url;
90
+ self::$ts_plugin_locale = $ts_plugin_context;
91
+ self::$ts_settings_page = $setting_page;
92
+ self::$ts_add_setting_on_page = $add_setting;
93
+ self::$ts_add_setting_on_section = $setting_section;
94
+ self::$ts_register_setting = $setting_register;
95
+
96
+ self::$ts_file_path = untrailingslashit( plugins_url( '/', __FILE__) ) ;
97
+ //Tracking Data
98
+ add_action( 'admin_notices', array( 'WCDN_TS_tracking', 'ts_track_usage_data' ) );
99
+ add_action( 'admin_footer', array( 'WCDN_TS_tracking', 'ts_admin_notices_scripts' ) );
100
+ add_action( 'wp_ajax_'.self::$plugin_prefix.'_admin_notices', array( 'WCDN_TS_tracking', 'ts_admin_notices' ) );
101
+
102
+ add_filter( 'cron_schedules', array( 'WCDN_TS_tracking', 'ts_add_cron_schedule' ) );
103
+
104
+ add_action( self::$plugin_prefix . '_add_new_settings', array( 'WCDN_TS_tracking', 'ts_add_reset_tracking_setting' ) );
105
+
106
+ add_action ( 'admin_init', array( 'WCDN_TS_tracking', 'ts_reset_tracking_setting' ) ) ;
107
+
108
+ self::ts_schedule_cron_job();
109
+
110
+ add_filter( self::$plugin_prefix . '_add_settings_field', array( 'WCDN_TS_tracking', 'ts_add_new_settings_field') );
111
+ }
112
+
113
+ /**
114
+ * It will add the New setting for the WooCommerce settings.
115
+ * @hook self::$plugin_prefix . '_add_settings_field'
116
+ */
117
+ public static function ts_add_new_settings_field ( $ts_settings ) {
118
+
119
+ $ts_settings = array (
120
+ 'name' => __( 'Reset usage tracking', 'deposits-for-woocommerce'),
121
+ 'type' => 'link',
122
+ 'desc' => __( 'This will reset your usage tracking settings, causing it to show the opt-in banner again and not sending any data','ts-tracking'),
123
+ 'button_text' => 'Reset',
124
+ 'desc_tip' => true,
125
+ 'class' => 'button-secondary reset_tracking',
126
+ 'id' => 'ts_reset_tracking',
127
+ );
128
+
129
+ return $ts_settings;
130
+ }
131
+
132
+
133
+
134
+ /**
135
+ * It will delete the tracking option from the database.
136
+ */
137
+ public static function ts_reset_tracking_setting () {
138
+
139
+ if ( isset ( $_GET [ 'ts_action' ] ) && 'wcdn_reset_tracking' == $_GET [ 'ts_action' ] ) {
140
+ delete_option( self::$plugin_prefix . '_allow_tracking' );
141
+ delete_option( 'wcdn_ts_tracker_last_send' );
142
+ $ts_url = remove_query_arg( 'ts_action' );
143
+ wp_safe_redirect( $ts_url );
144
+ }
145
+ }
146
+
147
+ /**
148
+ * It will add the settinig, which will allow store owner to reset the tracking data. Which will result into stop trakcing the data.
149
+ * @hook self::$plugin_prefix . '_add_new_settings'
150
+ *
151
+ */
152
+ public static function ts_add_reset_tracking_setting ( $value ) {
153
+
154
+ if ( '' == self::$ts_add_setting_on_page && '' == self::$ts_add_setting_on_section && '' == self::$ts_register_setting ) {
155
+ if ( $value['id'] == 'ts_reset_tracking' ) {
156
+ $description = WC_Admin_Settings::get_field_description( $value );
157
+ $ts_action = self::$ts_settings_page . "&amp;ts_action=" . self::$plugin_prefix . "_reset_tracking";
158
+ ?>
159
+
160
+ <tr valign="top">
161
+ <th scope="row" class="titledesc">
162
+ <label for="<?php echo esc_attr( $value['id'] ); ?>"><?php echo esc_html( $value['title'] ); ?></label>
163
+ <?php echo $description['tooltip_html'];?>
164
+ </th>
165
+
166
+ <td class="forminp forminp-<?php echo sanitize_title( $value['type'] ) ?>">
167
+
168
+ <a href = "<?php echo $ts_action; ?>"
169
+ name ="ts_reset_tracking"
170
+ id ="ts_reset_tracking"
171
+ style="<?php echo esc_attr( $value['css'] ); ?>"
172
+ class="<?php echo esc_attr( $value['class'] ); ?>"
173
+ > <?php echo $value['button_text']; ?> </a> <?php echo $description['description']; ?>
174
+ </td>
175
+ </tr><?php
176
+ }
177
+ } else {
178
+ add_settings_field(
179
+ 'ts_reset_tracking',
180
+ __( 'Reset usage tracking', self::$ts_plugin_locale ),
181
+ array( 'WCDN_TS_tracking', 'ts_rereset_tracking_callback' ),
182
+ self::$ts_add_setting_on_page,
183
+ self::$ts_add_setting_on_section,
184
+ array( 'This will reset your usage tracking settings, causing it to show the opt-in banner again and not sending any data.', self::$ts_plugin_locale )
185
+ );
186
+
187
+ register_setting(
188
+ self::$ts_register_setting,
189
+ 'ts_reset_tracking'
190
+ );
191
+ }
192
+ }
193
+
194
+ public static function ts_reset_tracking_setting_section_callback ( ) {
195
+
196
+ }
197
+
198
+ /**
199
+ * It will add the Reset button on the settings page.
200
+ * @param array $args
201
+ */
202
+ public static function ts_rereset_tracking_callback ( $args ) {
203
+ $wcap_restrict_domain_address = get_option( 'wcap_restrict_domain_address' );
204
+ $domain_value = isset( $wcap_restrict_domain_address ) ? esc_attr( $wcap_restrict_domain_address ) : '';
205
+ // Next, we update the name attribute to access this element's ID in the context of the display options array
206
+ // We also access the show_header element of the options collection in the call to the checked() helper function
207
+ $ts_action = self::$ts_settings_page . "&amp;ts_action=" . self::$plugin_prefix . "_reset_tracking";
208
+ printf( '<a href="'.$ts_action.'" class="button button-large reset_tracking">Reset</a>' );
209
+
210
+ // Here, we'll take the first argument of the array and add it to a label next to the checkbox
211
+ $html = '<label for="wcap_restrict_domain_address_label"> ' . $args[0] . '</label>';
212
+ echo $html;
213
+ }
214
+
215
+ /**
216
+ * It will add a cron job for sending the tarcking data.
217
+ * By default it will set once in a week interval.
218
+ * @hook cron_schedules
219
+ * @param array $schedules
220
+ * @return array $schedules
221
+ */
222
+ public static function ts_add_cron_schedule( $schedules ) {
223
+ $schedules[ 'once_in_week' ] = array(
224
+ 'interval' => 604800, // one week in seconds
225
+ 'display' => __( 'Once in a Week', self::$ts_plugin_locale )
226
+ );
227
+
228
+ return $schedules;
229
+ }
230
+
231
+ /**
232
+ * To capture the data from the client site.
233
+ */
234
+ public static function ts_schedule_cron_job () {
235
+ if ( ! wp_next_scheduled( self::$plugin_prefix . '_ts_tracker_send_event' ) ) {
236
+ wp_schedule_event( time(), 'once_in_week', self::$plugin_prefix . '_ts_tracker_send_event' );
237
+ }
238
+ }
239
+
240
+ /**
241
+ * Load the js file in the admin
242
+ *
243
+ * @since 6.8
244
+ * @access public
245
+ */
246
+ public static function ts_admin_notices_scripts() {
247
+
248
+ wp_enqueue_script(
249
+ self::$plugin_prefix . 'ts_dismiss_notice',
250
+ self::$ts_file_path . '/assets/js/dismiss-notice.js',
251
+ '',
252
+ '',
253
+ false
254
+ );
255
+
256
+ wp_localize_script( 'ts_dismiss_notice', 'ts_dismiss_notice', array (
257
+ 'ts_prefix_of_plugin' => self::$plugin_prefix,
258
+ 'ts_admin_url' => admin_url( 'admin-ajax.php' )
259
+ ) );
260
+ }
261
+
262
+ /**
263
+ * Called when the dismiss icon is clicked on the notice.
264
+ *
265
+ * @since 6.8
266
+ * @access public
267
+ */
268
+
269
+ public static function ts_admin_notices() {
270
+ update_option( self::$plugin_prefix . '_allow_tracking', 'dismissed' );
271
+ WCDN_TS_Tracker::ts_send_tracking_data( false );
272
+ die();
273
+ }
274
+
275
+ /**
276
+ * Send the data tracking data to the server.
277
+ *
278
+ * @access public
279
+ *
280
+ */
281
+
282
+ private static function ts_tracking_actions() {
283
+ if ( isset( $_GET[ self::$plugin_prefix . '_tracker_optin' ] ) && isset( $_GET[ self::$plugin_prefix . '_tracker_nonce' ] ) && wp_verify_nonce( $_GET[ self::$plugin_prefix . '_tracker_nonce' ], self::$plugin_prefix . '_tracker_optin' ) ) {
284
+ update_option( self::$plugin_prefix . '_allow_tracking', 'yes' );
285
+ WCDN_TS_Tracker::ts_send_tracking_data( true );
286
+ header( 'Location: ' . $_SERVER[ 'HTTP_REFERER' ] );
287
+ } elseif ( isset( $_GET[ self::$plugin_prefix . '_tracker_optout' ] ) && isset( $_GET[ self::$plugin_prefix . '_tracker_nonce' ] ) && wp_verify_nonce( $_GET[ self::$plugin_prefix . '_tracker_nonce' ], self::$plugin_prefix . '_tracker_optout' ) ) {
288
+ update_option( self::$plugin_prefix . '_allow_tracking', 'no' );
289
+ WCDN_TS_Tracker::ts_send_tracking_data( false );
290
+ header( 'Location: ' . $_SERVER[ 'HTTP_REFERER' ] );
291
+ }
292
+ }
293
+
294
+ /**
295
+ * Adds a data usage tracking notice in the admin
296
+ *
297
+ * @access public
298
+ * @since 6.8
299
+ */
300
+
301
+ public static function ts_track_usage_data() {
302
+ $admin_url = get_admin_url();
303
+ echo '<input type="hidden" id="admin_url" value="' . $admin_url . '"/>';
304
+ self::ts_tracking_actions();
305
+ if ( 'unknown' === get_option( self::$plugin_prefix . '_allow_tracking', 'unknown' ) ) : ?>
306
+ <div class="<?php echo self::$plugin_prefix; ?>-message <?php echo self::$plugin_prefix; ?>-tracker notice notice-info is-dismissible" style="position: relative;">
307
+ <div style="position: absolute;"><img class="site-logo" src= " <?php echo self::$ts_file_path . '/assets/images/site-logo-new.jpg '; ?> "></div>
308
+ <p style="margin: 10px 0 10px 130px; font-size: medium;">
309
+ <?php print( __( 'Want to help make ' . self::$plugin_name . ' even more awesome? Allow ' . self::$plugin_name . ' to collect non-sensitive diagnostic data and usage information and get 20% off on your next purchase. <a href="' . self::$blog_post_link . '" target="_blank">Find out more</a>.', self::$plugin_context ) ); ?></p>
310
+ <p class="submit">
311
+ <a class="button-primary button button-large" href="<?php echo esc_url( wp_nonce_url( add_query_arg( self::$plugin_prefix . '_tracker_optin', 'true' ), self::$plugin_prefix . '_tracker_optin', self::$plugin_prefix . '_tracker_nonce' ) ); ?>"><?php esc_html_e( 'Allow', self::$plugin_context ); ?></a>
312
+ <a class="button-secondary button button-large skip" href="<?php echo esc_url( wp_nonce_url( add_query_arg( self::$plugin_prefix . '_tracker_optout', 'true' ), self::$plugin_prefix . '_tracker_optout', self::$plugin_prefix . '_tracker_nonce' ) ); ?>"><?php esc_html_e( 'No thanks', self::$plugin_context ); ?></a>
313
+ </p>
314
+ </div>
315
+ <?php endif;
316
+ }
317
+ }
includes/component/woocommerce-check/Instructions ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ Add a notice if the WooCommerce is not active.
2
+
3
+ To add this feature to the plugin, you can follow the below steps:
4
+
5
+ 1. Copy the ts-woo-active.php file into your plugin file.
6
+
7
+ 2. Include the file ts-woo-active.php once when on the admin page. This can be done with is_admin() function.
8
+
9
+ 3. Change the value of the $plugin_name and $plugin_file variable of the TS_Woo_Active class with the name of your plugin.
10
+
11
+ 4. Now if the WooCommerce plugin is inactive, then our plugin will be inactive automatically with a notice displayed.
includes/component/woocommerce-check/ts-woo-active.php ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if ( ! defined( 'ABSPATH' ) ) {
3
+ exit;
4
+ }
5
+
6
+ /**
7
+ * WCDN_TS_Woo_Active Class
8
+ *
9
+ * @class WCDN_TS_Woo_Active
10
+ */
11
+
12
+ class WCDN_TS_Woo_Active {
13
+
14
+ /**
15
+ * @var string The name of the plugin
16
+ * @access public
17
+ */
18
+ public $plugin_name = '';
19
+
20
+ /**
21
+ * Store the plugin name.
22
+ * @var string Path of the plugin name.
23
+ * @access public
24
+ */
25
+ public $plugin_file = '';
26
+
27
+ /**
28
+ * Store the plguin locale.
29
+ * @var string Used Plugin locale.
30
+ * @access public
31
+ */
32
+ public $ts_locale = '';
33
+
34
+ public function __construct( $ts_plugin_name = '' , $ts_file_name = '', $ts_locale = '' ) {
35
+
36
+ $this->plugin_name = $ts_plugin_name;
37
+ $this->plugin_file = $ts_file_name;
38
+ $this->ts_locale = $ts_locale;
39
+
40
+ //Check for WooCommerce plugin
41
+ if ( '' != $this->plugin_file ) {
42
+ add_action( 'admin_init', array( &$this, 'ts_check_if_woocommerce_active' ) );
43
+ }
44
+ }
45
+
46
+ /**
47
+ * Checks if the WooCommerce plugin is active or not. If it is not active then it will display a notice.
48
+ */
49
+ public function ts_check_if_woocommerce_active() {
50
+ if ( ! $this->ts_check_woo_installed() ) {
51
+ if ( is_plugin_active( $this->plugin_file ) ) {
52
+ deactivate_plugins( $this->plugin_file );
53
+ add_action( 'admin_notices', array( &$this, 'ts_disabled_notice' ) );
54
+ if ( isset( $_GET[ 'activate' ] ) ) {
55
+ unset( $_GET[ 'activate' ] );
56
+ }
57
+ }
58
+ }
59
+ }
60
+
61
+ /**
62
+ * Check if WooCommerce is active.
63
+ */
64
+ public function ts_check_woo_installed() {
65
+ if ( class_exists( 'WooCommerce' ) ) {
66
+ return true;
67
+ } else {
68
+ return false;
69
+ }
70
+ }
71
+
72
+ /**
73
+ * Display a notice in the admin plugins page if the plugin is activated while WooCommerce is deactivated.
74
+ */
75
+ public function ts_disabled_notice() {
76
+ $class = 'notice notice-error';
77
+ $message = __( $this->plugin_name . ' plugin requires WooCommerce installed and active.', $this->ts_locale );
78
+ printf( '<div class="%1$s"><p>%2$s</p></div>', $class, $message );
79
+ }
80
+ }
includes/wcdn-all-component.php ADDED
@@ -0,0 +1,280 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * It will Add all the Boilerplate component when we activate the plugin.
4
+ * @author Tyche Softwares
5
+ *
6
+ */
7
+ if ( ! defined( 'ABSPATH' ) ) {
8
+ exit; // Exit if accessed directly.
9
+ }
10
+ if ( ! class_exists( 'WCDN_Component' ) ) {
11
+ /**
12
+ * It will Add all the Boilerplate component when we activate the plugin.
13
+ *
14
+ */
15
+ class WCDN_Component {
16
+
17
+ /**
18
+ * It will Add all the Boilerplate component when we activate the plugin.
19
+ */
20
+ public function __construct() {
21
+
22
+ $is_admin = is_admin();
23
+
24
+ if ( true === $is_admin ) {
25
+
26
+
27
+ require_once( "component/woocommerce-check/ts-woo-active.php" );
28
+
29
+ require_once( "component/tracking-data/ts-tracking.php" );
30
+ require_once( "component/deactivate-survey-popup/class-ts-deactivation.php" );
31
+
32
+ require_once( "component/faq-support/ts-faq-support.php" );
33
+
34
+ $wcdn_plugin_name = self::ts_get_plugin_name();;
35
+ $wcdn_locale = self::ts_get_plugin_locale();
36
+
37
+ $wcdn_file_name = 'woocommerce-delivery-notes/woocommerce-delivery-notes.php';
38
+ $wcdn_plugin_prefix = 'wcdn';
39
+ $wcdn_lite_plugin_prefix = 'wcdn';
40
+ $wcdn_plugin_folder_name = 'woocommerce-delivery-notes/';
41
+ $wcdn_plugin_dir_name = dirname ( untrailingslashit( plugin_dir_path ( __FILE__ ) ) ) . '/woocommerce-delivery-notes.php' ;
42
+ $wcdn_plugin_url = dirname ( untrailingslashit( plugins_url( '/', __FILE__ ) ) );
43
+
44
+ $wcdn_get_previous_version = get_option( 'wcdn_version', '1' );
45
+
46
+ $wcdn_blog_post_link = 'https://www.tychesoftwares.com/docs/docs/woocommerce-print-invoice-delivery-note/usage-tracking/';
47
+
48
+ $wcdn_plugins_page = '';
49
+ $wcdn_plugin_slug = '';
50
+ $wcdn_pro_file_name = '';
51
+
52
+ $wcdn_settings_page = 'admin.php?page=wc-settings&tab=wcdn-settings';
53
+
54
+ new WCDN_TS_Woo_Active ( $wcdn_plugin_name, $wcdn_file_name, $wcdn_locale );
55
+
56
+ new WCDN_TS_tracking ( $wcdn_plugin_prefix, $wcdn_plugin_name, $wcdn_blog_post_link, $wcdn_locale, $wcdn_plugin_url, $wcdn_settings_page );
57
+
58
+ new WCDN_TS_Tracker ( $wcdn_plugin_prefix, $wcdn_plugin_name );
59
+
60
+ $wcdn_deativate = new WCDN_TS_deactivate;
61
+ $wcdn_deativate->init ( $wcdn_file_name, $wcdn_plugin_name );
62
+
63
+ $ts_pro_faq = self::wcdn_get_faq ();
64
+ new WCDN_TS_Faq_Support( $wcdn_plugin_name, $wcdn_plugin_prefix, $wcdn_plugins_page, $wcdn_locale, $wcdn_plugin_folder_name, $wcdn_plugin_slug, $ts_pro_faq );
65
+
66
+ }
67
+ }
68
+
69
+ /**
70
+ * It will retrun the plguin name.
71
+ * @return string $ts_plugin_name Name of the plugin
72
+ */
73
+ public static function ts_get_plugin_name () {
74
+ $ordd_plugin_dir = dirname ( dirname ( __FILE__ ) );
75
+ $ordd_plugin_dir .= '/woocommerce-delivery-notes.php';
76
+
77
+ $ts_plugin_name = '';
78
+ $plugin_data = get_file_data( $ordd_plugin_dir, array( 'name' => 'Plugin Name' ) );
79
+ if ( ! empty( $plugin_data['name'] ) ) {
80
+ $ts_plugin_name = $plugin_data[ 'name' ];
81
+ }
82
+ return $ts_plugin_name;
83
+ }
84
+
85
+ /**
86
+ * It will retrun the Plugin text Domain
87
+ * @return string $ts_plugin_domain Name of the Plugin domain
88
+ */
89
+ public static function ts_get_plugin_locale () {
90
+ $ordd_plugin_dir = dirname ( dirname ( __FILE__ ) );
91
+ $ordd_plugin_dir .= '/woocommerce-delivery-notes.php';
92
+
93
+ $ts_plugin_domain = '';
94
+ $plugin_data = get_file_data( $ordd_plugin_dir, array( 'domain' => 'Text Domain' ) );
95
+ if ( ! empty( $plugin_data['domain'] ) ) {
96
+ $ts_plugin_domain = $plugin_data[ 'domain' ];
97
+ }
98
+ return $ts_plugin_domain;
99
+ }
100
+
101
+ /**
102
+ * It will contain all the FAQ which need to be display on the FAQ page.
103
+ * @return array $ts_faq All questions and answers.
104
+ *
105
+ */
106
+ public static function wcdn_get_faq () {
107
+
108
+ $ts_faq = array ();
109
+
110
+ $ts_faq = array(
111
+ 1 => array (
112
+ 'question' => 'It prints the 404 page instead of the order, how to correct that?',
113
+ 'answer' => 'This is most probably due to the permalink settings. Go either to the WordPress Permalink or the WooCommerce Print Settings and save them again. If that didn\'t help, go to the WooCommerce \'Accounts\' settings tab and make sure that for \'My Account Page\' a page is selected.'
114
+ ),
115
+ 2 => array (
116
+ 'question' => 'How do I quickly change the font of the invoice and delivery note?',
117
+ 'answer' => 'You can change the font with CSS. Use the `wcdn_head` hook and then write your own CSS code. It\'s best to place the code in the `functions.php` file of your theme.
118
+ An example that changes the font and makes the addresses very large. Paste the code in the `functions.php` file of your theme:
119
+ <br/> <br/>
120
+ <pre>
121
+ function example_serif_font_and_large_address() {
122
+ ?&gt;
123
+ &lt;style&gt;
124
+ #page {
125
+ font-size: 1em;
126
+ font-family: Georgia, serif;
127
+ }
128
+
129
+ .order-addresses address {
130
+ font-size: 2.5em;
131
+ line-height: 125%;
132
+ }
133
+ &lt;/style&gt;
134
+ &lt;?php
135
+ }
136
+ add_action( \'wcdn_head\', \'example_serif_font_and_large_address\', 20 ); </pre>'
137
+ ),
138
+ 3 => array (
139
+ 'question' => 'Can I hide the prices on the delivery note?',
140
+ 'answer' => 'Sure, the easiest way is to hide them with some CSS that is hooked in with `wcdn_head`.
141
+ <br/><br/>
142
+ An example that hides the whole price column and the totals. Paste the code in the `functions.php` file of your theme:
143
+ <pre>
144
+ function example_price_free_delivery_note() {
145
+ ?&gt;
146
+ &lt;style&gt;
147
+ .delivery-note .head-item-price,
148
+ .delivery-note .head-price,
149
+ .delivery-note .product-item-price,
150
+ .delivery-note .product-price,
151
+ .delivery-note .order-items tfoot {
152
+ display: none;
153
+ }
154
+ .delivery-note .head-name,
155
+ .delivery-note .product-name {
156
+ width: 50%;
157
+ }
158
+ .delivery-note .head-quantity,
159
+ .delivery-note .product-quantity {
160
+ width: 50%;
161
+ }
162
+ .delivery-note .order-items tbody tr:last-child {
163
+ border-bottom: 0.24em solid black;
164
+ }
165
+ &lt;/style&gt;
166
+ &lt;?php
167
+ }
168
+ add_action( \'wcdn_head\', \'example_price_free_delivery_note\', 20 );</pre>'
169
+ ),
170
+ 4 => array (
171
+ 'question' => 'I use the receipt in my POS, can I style it?',
172
+ 'answer' => 'Sure, you can style with CSS, very much the same way as the delivery note or invoice.
173
+ <br/><br/>
174
+ An example that hides the addresses. Paste the code in the `functions.php` file of your theme:
175
+ <pre>
176
+ function example_address_free_receipt() {
177
+ ?&gt;
178
+ &lt;style&gt;
179
+ .content {
180
+ padding: 4% 6%;
181
+ }
182
+ .company-address,
183
+ .order-addresses {
184
+ display: none;
185
+ }
186
+ .order-info li span {
187
+ display: inline-block;
188
+ float: right;
189
+ }
190
+ .order-thanks {
191
+ margin-left: inherit;
192
+ }
193
+ &lt;/style&gt;
194
+ &lt;?php
195
+ }
196
+ add_action( \'wcdn_head\', \'example_address_free_receipt\', 20 );</pre>'
197
+ ),
198
+ 5 => array (
199
+ 'question' => 'Is it possible to remove a field from the order info section?',
200
+ 'answer' => 'Yes, use the `wcdn_order_info_fields` filter hook. It returns all the fields as array. Unset or rearrange the values as you like.
201
+ <br/><br/>
202
+ An example that removes the \'Payment Method\' field. Paste the code in the `functions.php` file of your theme:
203
+ <pre>
204
+ function example_removed_payment_method( $fields ) {
205
+ unset( $fields[\'payment_method\'] );
206
+ return $fields;
207
+ }
208
+ add_filter( \'wcdn_order_info_fields\', \'example_removed_payment_method\' );<pre>'
209
+ ),
210
+ 6 => array (
211
+ 'question' => 'How can I add some more fields to the order info section? ',
212
+ 'answer' => 'Use the `wcdn_order_info_fields` filter hook. It returns all the fields as array. Read the WooCommerce documentation to learn how you get custom checkout and order fields. Tip: To get custom meta field values you will most probably need the `get_post_meta( $order->id, \'your_meta_field_name\', true);` function and of course the `your_meta_field_name`.
213
+ <br/><br/>
214
+ An example that adds a \'VAT\' and \'Customer Number\' field to the end of the list. Paste the code in the `functions.php` file of your theme:
215
+ <pre>
216
+ function example_custom_order_fields( $fields, $order ) {
217
+ $new_fields = array();
218
+
219
+ if( get_post_meta( $order->id, \'your_meta_field_name\', true ) ) {
220
+ $new_fields[\'your_meta_field_name\'] = array(
221
+ \'label\' => \'VAT\',
222
+ \'value\' => get_post_meta( $order->id, \'your_meta_field_name\', true )
223
+ );
224
+ }
225
+
226
+ if( get_post_meta( $order->id, \'your_meta_field_name\', true ) ) {
227
+ $new_fields[\'your_meta_field_name\'] = array(
228
+ \'label\' => \'Customer Number\',
229
+ \'value\' => get_post_meta( $order->id, \'your_meta_field_name\', true )
230
+ );
231
+ }
232
+
233
+ return array_merge( $fields, $new_fields );
234
+ }
235
+ add_filter( \'wcdn_order_info_fields\', \'example_custom_order_fields\', 10, 2 );</pre>'
236
+ ),
237
+ 7 => array (
238
+ 'question' => 'What about the product image, can I add it to the invoice and delivery note? ',
239
+ 'answer' => 'Yes, use the `wcdn_order_item_before` action hook. It allows you to add html content before the item name.
240
+ <br/><br/>
241
+ An example that adds a 40px large product image. Paste the code in the `functions.php` file of your theme:
242
+
243
+ <pre>
244
+ function example_product_image( $product ) {
245
+ if( isset( $product->id ) && has_post_thumbnail( $product->id ) ) {
246
+ echo get_the_post_thumbnail( $product->id, array( 40, 40 ) );
247
+ }
248
+ }
249
+ add_action( \'wcdn_order_item_before\', \'example_product_image\' );</pre>'
250
+ ),
251
+ 8 => array (
252
+ 'question' => 'How can I differentiate between invoice and delivery note through CSS?',
253
+ 'answer' => 'The `body` tag contains a class that specifies the template type. The class can be `invoice` or `delivery-note`. You can prefix your style rules to only target one template. For example you could rise the font size for the addresses on the right side:
254
+ <pre>
255
+ .invoice .billing-address {
256
+ font-size: 2em;
257
+ }
258
+
259
+ .delivery-note .shipping-address {
260
+ font-size: 2em;
261
+ } </pre>'
262
+ ),
263
+ 9 => array (
264
+ 'question' => 'How do I customize the look of the invoice and delivery note? ',
265
+ 'answer' => 'You can use the techniques from the questions above. Or you consider the `wcdn_head` hook to enqueue your own stylesheet. Or for full control, copy the file `style.css` from `woocommerce-delivery-notes/templates/print-order` to `yourtheme/woocommerce/print-order` and start editing it.
266
+ <br/><br/>
267
+ <strong>Note</strong>: Create the `woocommerce` and `print-order` folders if they do not exist. This way your changes won\'t be overridden on plugin updates.
268
+ '
269
+ ),
270
+ 10 => array (
271
+ 'question' => 'How can I translate the plugin?',
272
+ 'answer' => 'Upload your language file to `/wp-content/languages/plugins/` (create this folder if it doesn\'t exist). WordPress will then load the language. Make sure you use the same locale as in your configuration and the correct plugin locale i.e. `woocommerce-delivery-notes-it_IT.mo/.po`.'
273
+ )
274
+ );
275
+
276
+ return $ts_faq;
277
+ }
278
+ }
279
+ $WCDN_Component = new WCDN_Component();
280
+ }
includes/wcdn-template-functions.php CHANGED
@@ -389,7 +389,7 @@ function wcdn_add_refunded_order_totals( $total_rows, $order ) {
389
  $refunded_tax_ins = '';
390
 
391
  // Tax for inclusive prices
392
- if ( wc_tax_enabled() && 'incl' == $order->tax_display_cart ) {
393
  $tax_del_array = array();
394
  $tax_ins_array = array();
395
 
@@ -413,7 +413,6 @@ function wcdn_add_refunded_order_totals( $total_rows, $order ) {
413
  $refunded_tax_ins .= ' ' . sprintf( __( '(Includes %s)', 'woocommerce' ), implode( ', ', $tax_ins_array ) );
414
  }
415
  }
416
-
417
  // use only the number for new wc versions
418
  $order_subtotal = wc_price( $order->get_total(), array( 'currency' => $wdn_order_currency ) );
419
  } else {
@@ -548,4 +547,4 @@ function wcdn_imprint() {
548
  }
549
 
550
 
551
- ?>
389
  $refunded_tax_ins = '';
390
 
391
  // Tax for inclusive prices
392
+ if ( wc_tax_enabled() && 'incl' == get_option( 'woocommerce_tax_display_cart' ) ) {
393
  $tax_del_array = array();
394
  $tax_ins_array = array();
395
 
413
  $refunded_tax_ins .= ' ' . sprintf( __( '(Includes %s)', 'woocommerce' ), implode( ', ', $tax_ins_array ) );
414
  }
415
  }
 
416
  // use only the number for new wc versions
417
  $order_subtotal = wc_price( $order->get_total(), array( 'currency' => $wdn_order_currency ) );
418
  } else {
547
  }
548
 
549
 
550
+ ?>
includes/wcdn-welcome.php DELETED
@@ -1,277 +0,0 @@
1
- <?php
2
- /**
3
- * WooCommerce Print Invoice & Delivery Note Welcome Page Class
4
- *
5
- * Displays on plugin activation
6
- */
7
-
8
- // Exit if accessed directly.
9
- if ( ! defined( 'ABSPATH' ) ) {
10
- exit;
11
- }
12
-
13
- /**
14
- * WCDN_Welcome Class
15
- *
16
- * A general class for About page.
17
- *
18
- * @since 4.4
19
- */
20
- class WCDN_Welcome {
21
-
22
- /**
23
- * @var string The capability users should have to view the page
24
- */
25
- public $minimum_capability = 'manage_options';
26
-
27
- /**
28
- * Get things started
29
- *
30
- * @since 4.4
31
- */
32
- public function __construct() {
33
-
34
- add_action( 'admin_menu', array( $this, 'wcdn_admin_menus' ) );
35
- add_action( 'admin_head', array( $this, 'wcdn_admin_head' ) );
36
-
37
- if ( !isset( $_GET[ 'page' ] ) ||
38
- ( isset( $_GET[ 'page' ] ) && $_GET[ 'page' ] != 'wcdn-about' ) ) {
39
- add_action( 'admin_init', array( $this, 'wcdn_welcome' ) );
40
- }
41
- }
42
-
43
- /**
44
- * Register the Dashboard Page which is later hidden but this pages
45
- * is used to render the Welcome page.
46
- *
47
- * @access public
48
- * @since 4.4
49
- * @return void
50
- */
51
- public function wcdn_admin_menus() {
52
- // About Page
53
- add_dashboard_page(
54
- sprintf( esc_html__( 'Welcome to WooCommerce Print Invoice & Delivery Note %s', 'woocommerce-delivery-notes' ), WooCommerce_Delivery_Notes::$plugin_version ),
55
- esc_html__( 'Welcome to WooCommerce Print Invoice & Delivery Note', 'woocommerce-delivery-notes' ),
56
- $this->minimum_capability,
57
- 'wcdn-about',
58
- array( $this, 'wcdn_about_screen' )
59
- );
60
- }
61
-
62
- /**
63
- * Hide Individual Dashboard Pages
64
- *
65
- * @access public
66
- * @since 4.4
67
- * @return void
68
- */
69
- public function wcdn_admin_head() {
70
- remove_submenu_page( 'index.php', 'wcdn-about' );
71
- }
72
-
73
- /**
74
- * Render About Screen
75
- *
76
- * @access public
77
- * @since 4.4
78
- * @return void
79
- */
80
- public function wcdn_about_screen() {
81
- $display_version = WooCommerce_Delivery_Notes::$plugin_version;
82
- // Badge for welcome page
83
- $badge_url = WooCommerce_Delivery_Notes::$plugin_url . 'assets/images/icon-256x256.png';
84
- $wcdn_plugin_url = WooCommerce_Delivery_Notes::$plugin_url;
85
- ?>
86
- <style>
87
- .feature-section .feature-section-item {
88
- float:left;
89
- width:48%;
90
- }
91
- </style>
92
- <div class="wrap about-wrap">
93
-
94
- <?php $this->wcdn_get_welcome_header() ?>
95
-
96
- <div style="float:left;width: 80%;">
97
- <p class="about-text" style="margin-right:20px;"><?php
98
- printf(
99
- __( "Thank you for activating or updating to the latest version of WooCommerce Print Invoice & Delivery Note! If you're a first time user, welcome! You're well on your way to explore the print functionality for your WooCommerce orders." )
100
- );
101
- ?></p>
102
- </div>
103
- <div class="wcdn-badge"><img src="<?php echo $badge_url; ?>" style="width:150px;"/></div>
104
-
105
- <p>&nbsp;</p>
106
-
107
- <div class="feature-section clearfix introduction">
108
-
109
- <h3><?php esc_html_e( "Get Started with WooCommerce Print Invoice & Delivery Note", 'woocommerce-delivery-notes' ); ?></h3>
110
-
111
- <div class="video feature-section-item" style="float:left;padding-right:10px;">
112
- <img src="<?php echo $wcdn_plugin_url . '/assets/images/wcdn-settings.png' ?>"
113
- alt="<?php esc_attr_e( 'WooCommerce Print Invoice & Delivery Note', 'woocommerce-delivery-notes' ); ?>" style="width:600px;">
114
- </div>
115
-
116
- <div class="content feature-section last-feature">
117
- <h3><?php esc_html_e( 'Add settings', 'woocommerce-delivery-notes' ); ?></h3>
118
-
119
- <p><?php esc_html_e( 'To enable the print functionality for your invoices, delivery notes & receipts, you just need to set it up under WooCommerce -> Settings -> Print page. Here you can also setup the Company Logo that will appear on the printed items, Company Address & other information.', 'woocommerce-delivery-notes' ); ?></p>
120
- <a href="admin.php?page=wc-settings&tab=wcdn-settings" target="_blank" class="button-secondary">
121
- <?php esc_html_e( 'Click Here to go to Print page', 'woocommerce-delivery-notes' ); ?>
122
- <span class="dashicons dashicons-external"></span>
123
- </a>
124
- </div>
125
- </div>
126
-
127
- <div class="content">
128
-
129
- <div class="feature-section clearfix">
130
- <div class="content feature-section-item">
131
-
132
- <h3><?php esc_html_e( 'Enable Print button for Customers.', 'woocommerce-delivery-notes' ); ?></h3>
133
-
134
- <p><?php esc_html_e( 'Allow customers to print the WooCommerce order invoice from the customer notification email, from the My Account page or from the View Order page under My Account.', 'woocommerce-delivery-notes' ); ?></p>
135
- <a href="admin.php?page=wc-settings&tab=wcdn-settings" target="_blank" class="button-secondary">
136
- <?php esc_html_e( 'Click Here to Enable Print button for Customers', 'woocommerce-delivery-notes' ); ?>
137
- <span class="dashicons dashicons-external"></span>
138
- </a>
139
- </div>
140
-
141
- <div class="content feature-section-item last-feature">
142
- <img src="<?php echo $wcdn_plugin_url . 'assets/images/wcdn-email-myaccount.png'; ?>" alt="<?php esc_attr_e( 'WooCommerce Print Invoice & Delivery Note', 'woocommerce-delivery-notes' ); ?>" style="width:500px;">
143
- </div>
144
- </div>
145
-
146
- <div class="feature-section clearfix introduction">
147
- <div class="video feature-section-item" style="float:left;padding-right:10px;">
148
- <img src="<?php echo $wcdn_plugin_url . 'assets/images/wcdn-invoice-numbering.png'; ?>" alt="<?php esc_attr_e( 'WooCommerce Print Invoice & Delivery Note', 'woocommerce-delivery-notes' ); ?>" style="width:500px;">
149
- </div>
150
-
151
- <div class="content feature-section-item last-feature">
152
- <h3><?php esc_html_e( 'Enable Invoice Numbering', 'woocommerce-delivery-notes' ); ?></h3>
153
-
154
- <p><?php esc_html_e( 'f you want to change the default invoice numbers & set some numbering scheme of your own, then you can set it here with a starting invoice number, a prefix & suffix. For example, you could set it as: TS/001/17-18.', 'woocommerce-delivery-notes' ); ?></p>
155
- <a href="admin.php?page=wc-settings&tab=wcdn-settings" target="_blank" class="button-secondary">
156
- <?php esc_html_e( 'Click Here to Enable Invoice Numbering', 'woocommerce-delivery-notes' ); ?>
157
- <span class="dashicons dashicons-external"></span>
158
- </a>
159
- </div>
160
- </div>
161
- </div>
162
-
163
- <div class="feature-section clearfix">
164
-
165
- <div class="content feature-section-item">
166
-
167
- <h3><?php esc_html_e( 'Getting to Know Tyche Softwares', 'woocommerce-delivery-notes' ); ?></h3>
168
-
169
- <ul class="ul-disc">
170
- <li><a href="https://tychesoftwares.com/?utm_source=wpaboutpage&utm_medium=link&utm_campaign=WCDeliveryNotes" target="_blank"><?php esc_html_e( 'Visit the Tyche Softwares Website', 'woocommerce-delivery-notes' ); ?></a></li>
171
- <li><a href="https://tychesoftwares.com/premium-plugins/?utm_source=wpaboutpage&utm_medium=link&utm_campaign=WCDeliveryNotes" target="_blank"><?php esc_html_e( 'View all Premium Plugins', 'woocommerce-delivery-notes' ); ?></a>
172
- <ul class="ul-disc">
173
- <li><a href="https://www.tychesoftwares.com/store/premium-plugins/woocommerce-abandoned-cart-pro/?utm_source=wpaboutpage&utm_medium=link&utm_campaign=WCDeliveryNotes" target="_blank">Abandoned Cart Pro Plugin for WooCommerce</a></li>
174
- <li><a href="https://www.tychesoftwares.com/store/premium-plugins/woocommerce-booking-plugin/?utm_source=wpaboutpage&utm_medium=link&utm_campaign=WCDeliveryNotes" target="_blank">Booking & Appointment Plugin for WooCommerce</a></li>
175
- <li><a href="https://www.tychesoftwares.com/store/premium-plugins/order-delivery-date-for-woocommerce-pro-21/?utm_source=wpaboutpage&utm_medium=link&utm_campaign=WCDeliveryNotes" target="_blank">Order Delivery Date for WooCommerce</a></li>
176
- <li><a href="https://www.tychesoftwares.com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/?utm_source=wpaboutpage&utm_medium=link&utm_campaign=WCDeliveryNotes" target="_blank">Product Delivery Date for WooCommerce</a></li>
177
- <li><a href="https://www.tychesoftwares.com/store/premium-plugins/deposits-for-woocommerce/?utm_source=wpaboutpage&utm_medium=link&utm_campaign=WCDeliveryNotes" target="_blank">Deposits for WooCommerce</a></li>
178
- </ul>
179
- </li>
180
- <li><a href="https://tychesoftwares.com/about/?utm_source=wpaboutpage&utm_medium=link&utm_campaign=WCDeliveryNotes" target="_blank"><?php esc_html_e( 'Meet the team', 'woocommerce-delivery-notes' ); ?></a></li>
181
- </ul>
182
- </div>
183
-
184
- <div class="content feature-section-item">
185
-
186
- <h3><?php esc_html_e( 'Current Offers', 'woocommerce-delivery-notes' ); ?></h3>
187
-
188
- <p>Buy all our <a href="https://tychesoftwares.com/premium-plugins/?utm_source=wpaboutpage&utm_medium=link&utm_campaign=WCDeliveryNotes" target="_blank">premium plugins</a> at 30% off till 31st December 2017</p>
189
- </div>
190
- </div>
191
- <!-- /.feature-section -->
192
- </div>
193
- <?php
194
-
195
- update_option( 'wcdn_welcome_page_shown', 'yes' );
196
- update_option( 'wcdn_welcome_page_shown_time', current_time( 'timestamp' ) );
197
- }
198
-
199
-
200
- /**
201
- * The header section for the welcome screen.
202
- *
203
- * @since 4.4
204
- */
205
- public function wcdn_get_welcome_header() {
206
- // Badge for welcome page
207
- $badge_url = WooCommerce_Delivery_Notes::$plugin_url . 'assets/images/icon-256x256.png';
208
- ?>
209
- <h1 class="welcome-h1"><?php echo get_admin_page_title(); ?></h1>
210
- <?php $this->wcdn_social_media_elements(); ?>
211
-
212
- <?php }
213
-
214
-
215
- /**
216
- * Social Media Like Buttons
217
- *
218
- * Various social media elements to Tyche Softwares
219
- * @since: 4.4
220
- */
221
- public function wcdn_social_media_elements() { ?>
222
-
223
- <div class="social-items-wrap">
224
-
225
- <iframe src="//www.facebook.com/plugins/like.php?href=https%3A%2F%2Fwww.facebook.com%2Ftychesoftwares&amp;send=false&amp;layout=button_count&amp;width=100&amp;show_faces=false&amp;font&amp;colorscheme=light&amp;action=like&amp;height=21&amp;appId=220596284639969"
226
- scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:100px; height:21px;"
227
- allowTransparency="true"></iframe>
228
-
229
- <a href="https://twitter.com/tychesoftwares" class="twitter-follow-button" data-show-count="false"><?php
230
- printf(
231
- esc_html_e( 'Follow %s', 'tychesoftwares' ),
232
- '@tychesoftwares'
233
- );
234
- ?></a>
235
- <script>!function (d, s, id) {
236
- var js, fjs = d.getElementsByTagName(s)[0], p = /^http:/.test(d.location) ? 'http' : 'https';
237
- if (!d.getElementById(id)) {
238
- js = d.createElement(s);
239
- js.id = id;
240
- js.src = p + '://platform.twitter.com/widgets.js';
241
- fjs.parentNode.insertBefore(js, fjs);
242
- }
243
- }(document, 'script', 'twitter-wjs');
244
- </script>
245
-
246
- </div>
247
- <!--/.social-items-wrap -->
248
-
249
- <?php
250
- }
251
-
252
-
253
- /**
254
- * Sends user to the Welcome page on first activation of WooCommerce Print Invoice & Delivery Note as well as each
255
- * time WooCommerce Print Invoice & Delivery Note is upgraded to a new version
256
- *
257
- * @access public
258
- * @since 4.4
259
- *
260
- * @return void
261
- */
262
- public function wcdn_welcome() {
263
-
264
- // Bail if activating from network, or bulk
265
- if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) {
266
- return;
267
- }
268
-
269
- if( !get_option( 'wcdn_welcome_page_shown' ) ) {
270
- wp_safe_redirect( admin_url( 'index.php?page=wcdn-about' ) );
271
- exit;
272
- }
273
- }
274
-
275
- }
276
-
277
- new WCDN_Welcome();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/woocommerce-delivery-notes-cs_CZ.mo CHANGED
Binary file
languages/woocommerce-delivery-notes-cs_CZ.po CHANGED
@@ -8,9 +8,10 @@
8
  msgid ""
9
  msgstr ""
10
  "Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
11
- "Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
12
- "POT-Creation-Date: 2015-01-31 15:44+0100\n"
13
- "PO-Revision-Date: 2015-07-16 01:00+0100\n"
 
14
  "Last-Translator: Tomáš Kůrka <tomas.kurka.film@gmail.com>\n"
15
  "Language-Team: \n"
16
  "Language: en\n"
@@ -18,522 +19,924 @@ msgstr ""
18
  "Content-Type: text/plain; charset=UTF-8\n"
19
  "Content-Transfer-Encoding: 8bit\n"
20
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
21
- "X-Generator: Poedit 1.7.5\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;"
24
- "_nx:4c,1,2;_nx_noop:4c,1,2;esc_attr_e;esc_attr__\n"
 
25
  "X-Poedit-Basepath: .\n"
26
  "X-Textdomain-Support: yes\n"
27
  "X-Poedit-SearchPath-0: ..\n"
28
 
29
  # @ woocommerce-delivery-notes
30
- #: ../includes/class-wcdn-print.php:41
31
  msgid "Invoice"
32
  msgstr "Faktura"
33
 
34
- #: ../includes/class-wcdn-print.php:42
35
  msgid "Invoices"
36
  msgstr "Faktury"
37
 
38
  # @ woocommerce-delivery-notes
39
- #: ../includes/class-wcdn-print.php:43
40
  msgid "Print Invoice"
41
  msgstr "Vytisknout Fakturu"
42
 
43
- #: ../includes/class-wcdn-print.php:44
44
  msgid "Print Invoices"
45
  msgstr "Vytisknout Faktury"
46
 
47
  # @ woocommerce-delivery-notes
48
- #: ../includes/class-wcdn-print.php:45
49
  msgid "Invoice created."
50
  msgstr "Faktura vytvořena."
51
 
52
- #: ../includes/class-wcdn-print.php:46
53
  msgid "Invoices created."
54
  msgstr "Faktura vytvořena."
55
 
56
- #: ../includes/class-wcdn-print.php:47
57
- msgid "Enable Invoices"
58
- msgstr "Povolit Faktury"
59
 
60
  # @ woocommerce-delivery-notes
61
- #: ../includes/class-wcdn-print.php:53
62
  msgid "Delivery Note"
63
  msgstr "Podrobnosti dodávky"
64
 
65
- #: ../includes/class-wcdn-print.php:54
66
  msgid "Delivery Notes"
67
  msgstr "Podrobnosti dodávky"
68
 
69
  # @ woocommerce-delivery-notes
70
- #: ../includes/class-wcdn-print.php:55
71
  msgid "Print Delivery Note"
72
  msgstr "Vytisknout Podrobnosti dodávky"
73
 
74
- #: ../includes/class-wcdn-print.php:56
75
  msgid "Print Delivery Notes"
76
  msgstr "Vytisknout Podrobnosti dodávky"
77
 
78
- #: ../includes/class-wcdn-print.php:57
79
  msgid "Delivery Note created."
80
  msgstr "Podrobnosti dodávky vytvořeny."
81
 
82
- #: ../includes/class-wcdn-print.php:58
83
  msgid "Delivery Notes created."
84
  msgstr "Podrobnosti dodávky vytvořeny."
85
 
86
- #: ../includes/class-wcdn-print.php:59
87
- msgid "Enable Delivery Notes"
88
- msgstr "Povolit Podrobnosti dodávky"
89
 
90
- #: ../includes/class-wcdn-print.php:65
91
  msgid "Receipt"
92
  msgstr "Účtenka"
93
 
94
- #: ../includes/class-wcdn-print.php:66
95
  msgid "Receipts"
96
  msgstr "Účtenky"
97
 
98
- #: ../includes/class-wcdn-print.php:67
99
  msgid "Print Receipt"
100
  msgstr "Vytisknout Účtenku"
101
 
102
- #: ../includes/class-wcdn-print.php:68
103
  msgid "Print Receipts"
104
  msgstr "Vytisknout Účtenky"
105
 
106
- #: ../includes/class-wcdn-print.php:69
107
  msgid "Receipt created."
108
  msgstr "Účtenka vytvořena."
109
 
110
- #: ../includes/class-wcdn-print.php:70
111
  msgid "Receipts created."
112
  msgstr "Účtenky vytvořeny."
113
 
114
- #: ../includes/class-wcdn-print.php:71
115
- msgid "Enable Receipts"
116
- msgstr "Povolit účtenky"
117
 
118
  # @ woocommerce-delivery-notes
119
- #: ../includes/class-wcdn-print.php:80
120
  msgid "Order"
121
  msgstr "Objednávka"
122
 
123
- #: ../includes/class-wcdn-print.php:81
124
  msgid "Orders"
125
  msgstr "Objednávky"
126
 
127
  # @ woocommerce-delivery-notes
128
- #: ../includes/class-wcdn-print.php:82 ../includes/class-wcdn-settings.php:157
129
  msgid "Print Order"
130
  msgstr "Vytisknout Objednávku"
131
 
132
- #: ../includes/class-wcdn-print.php:83
133
  msgid "Print Orders"
134
  msgstr "Vytisknout objednávky"
135
 
136
- #: ../includes/class-wcdn-settings.php:72
137
- msgid "Do you really want to reset the counter to zero? This process can't be undone."
 
 
 
 
 
 
138
  msgstr "Chcete opravu nastavit počítadlo na nulu? Tento proces nejde vrátit."
139
 
140
  # @ woocommerce-delivery-notes
141
- #: ../includes/class-wcdn-settings.php:102 ../includes/class-wcdn-theme.php:56 ../includes/class-wcdn-theme.php:91
142
- #: ../includes/wcdn-template-functions.php:127
143
  msgid "Print"
144
  msgstr "Tisk"
145
 
146
- #: ../includes/class-wcdn-settings.php:176
147
- #, php-format
148
- msgid ""
149
- "You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target=\"%4$s\" "
150
- "class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> template."
151
  msgstr ""
152
- "Můžete zobrazit šablonu <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target="
153
- "\"%4$s\" class=\"%5$s\">podrobnosti dodávky</a> or <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a>."
154
-
155
- # @ woocommerce-delivery-notes
156
- #: ../includes/class-wcdn-settings.php:177
157
- msgid "With the FAQ in the readme file you can learn how to customize the template."
158
- msgstr "V souboru readme naleznete FAQ, ze kterých se můžete naučit, jak přizpůsobit šablonu."
159
 
160
- # @ woocommerce-delivery-notes
161
- #: ../includes/class-wcdn-settings.php:188
162
- msgid "Company/Shop Logo"
163
- msgstr "Logo společnosti"
164
-
165
- # @ woocommerce-delivery-notes
166
- #: ../includes/class-wcdn-settings.php:194
167
- msgid "Remove Logo"
168
- msgstr "Odstranit logo"
169
-
170
- # @ woocommerce-delivery-notes
171
- #: ../includes/class-wcdn-settings.php:195
172
- msgid "Set Logo"
173
- msgstr "Nastavit logo"
174
-
175
- # @ woocommerce-delivery-notes
176
- #: ../includes/class-wcdn-settings.php:199
177
- msgid "A company/shop logo representing your business."
178
- msgstr "Logo společnosti reprezentující vaše podnikání."
179
-
180
- # @ woocommerce-delivery-notes
181
- #: ../includes/class-wcdn-settings.php:200 ../includes/class-wcdn-settings.php:213
182
- #: ../includes/class-wcdn-settings.php:226 ../includes/class-wcdn-settings.php:239
183
- #: ../includes/class-wcdn-settings.php:252 ../includes/class-wcdn-settings.php:265
184
- #: ../includes/class-wcdn-settings.php:382 ../includes/class-wcdn-settings.php:397
185
- #: ../includes/class-wcdn-settings.php:412
186
- msgid "Note:"
187
- msgstr "Poznámka:"
188
 
189
- # @ woocommerce-delivery-notes
190
- #: ../includes/class-wcdn-settings.php:201
191
  msgid ""
192
- "When the image is printed, its pixel density will automatically be eight times higher than the original. This "
193
- "means, 1 printed inch will correspond to about 288 pixels on the screen. Example: an image with a width of 576 "
194
- "pixels and a height of 288 pixels will have a printed size of about 2 inches to 1 inch."
195
  msgstr ""
196
- "Pokud bude obrázek vytištěn, hustota pixelů bude automaticky osmktrát větší, než originál. To znamená, že jeden "
197
- "palec bude odpovídat asi 288 pixelům na obrazovce. Příklad: Obrázek o šířce 576 pixelů a výšce 288 pixelů bude "
198
- "vytištěn ve velikosti okolo 2 x 1 palec."
199
 
200
- # @ woocommerce-delivery-notes
201
- #: ../includes/class-wcdn-settings.php:207
202
- msgid "Company/Shop Name"
203
- msgstr "Název společnosti"
204
-
205
- # @ woocommerce-delivery-notes
206
- #: ../includes/class-wcdn-settings.php:212
207
- msgid "Your company/shop name for the Delivery Note."
208
- msgstr "Název společnosti pro Podrobnosti dodávky."
209
 
210
- # @ woocommerce-delivery-notes
211
- #: ../includes/class-wcdn-settings.php:214
212
  msgid ""
213
- "Leave blank to use the default Website/Blog title defined in WordPress settings. The name will be ignored when a "
214
- "Logo is set."
 
215
  msgstr ""
216
- "Nechte prázdné pro použití defalutního názvu stránky nastaveného ve Wordpressu. Jméno nebude použité, pokud je "
217
- "nastavené logo."
218
 
219
- # @ woocommerce-delivery-notes
220
- #: ../includes/class-wcdn-settings.php:220
221
- msgid "Company/Shop Address"
222
- msgstr "Adresa společnosti"
223
 
224
- # @ woocommerce-delivery-notes
225
- #: ../includes/class-wcdn-settings.php:225
226
  msgid ""
227
- "The postal address of the company/shop or even e-mail or telephone, which gets printed right after the company/"
228
- "shop name."
229
- msgstr "Poštovní adresa společnosti a také e-mail nebo telefon, který bude vytištěn hned za názvem společnosti."
230
 
231
- # @ woocommerce-delivery-notes
232
- #: ../includes/class-wcdn-settings.php:227
233
- msgid "Leave blank to not print an address."
234
- msgstr "Nechte prázdné, pokud nechcete tisknout adresu."
235
 
236
- #: ../includes/class-wcdn-settings.php:233
 
 
 
 
237
  msgid "Complimentary Close"
238
  msgstr "Závěrečná fráze"
239
 
240
- # @ woocommerce-delivery-notes
241
- #: ../includes/class-wcdn-settings.php:238
242
- msgid ""
243
- "Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
244
- msgstr "Přidejte nějaké osobní poznámy, jak například poděkování nebo pozdrav."
245
-
246
- # @ woocommerce-delivery-notes
247
- #: ../includes/class-wcdn-settings.php:240
248
- msgid "Leave blank to not print any personal notes."
249
- msgstr "Nechte prázné, pokud nechcete tisknout žádné osobní poznámky."
250
-
251
- # @ woocommerce-delivery-notes
252
- #: ../includes/class-wcdn-settings.php:246
253
- msgid "Returns Policy, Conditions, etc"
254
- msgstr "Reklamační řád, obchodní podmínky atd."
255
 
256
- # @ woocommerce-delivery-notes
257
- #: ../includes/class-wcdn-settings.php:251
258
- msgid ""
259
- "Here you can add some more policies, conditions etc. For example add a returns policy in case the client would "
260
- "like to send back some goods. In some countries (e.g. in the European Union) this is required so please add any "
261
- "required info in accordance with the statutory regulations."
262
- msgstr "Zde je místo pro přidání Reklamačního řádu, obchodních podmínek atd."
263
 
264
- # @ woocommerce-delivery-notes
265
- #: ../includes/class-wcdn-settings.php:253
266
- msgid "Leave blank to not print any policies or conditions."
267
- msgstr "Nechte prázdné, pokud nechcete tisknout pravidla a podmínky."
268
 
269
  # @ woocommerce-delivery-notes
270
- #: ../includes/class-wcdn-settings.php:259
271
  msgid "Footer"
272
  msgstr "Zápatí"
273
 
274
- # @ woocommerce-delivery-notes
275
- #: ../includes/class-wcdn-settings.php:264
276
  msgid ""
277
- "Add some further footer imprint, e-mail, telephone, copyright notes etc. This makes the printed sheets a bit more "
278
- "branded."
279
- msgstr "Přidejte nějaký obsah zápatí, jako například e-mail, telefon nebo copyright."
280
-
281
- # @ woocommerce-delivery-notes
282
- #: ../includes/class-wcdn-settings.php:266
283
- msgid "Leave blank to not print a footer."
284
- msgstr "Nechte prázdné, pokud nechcete tisknout zápatí."
285
-
286
- #: ../includes/class-wcdn-settings.php:273
287
- msgid "Print Options"
288
- msgstr "Možnosti tisku"
289
-
290
- #: ../includes/class-wcdn-settings.php:278
291
- msgid "Types"
292
- msgstr "Typy"
293
 
294
- #: ../includes/class-wcdn-settings.php:297
295
- msgid "Theme Options"
296
- msgstr "Nastavení předlohy"
297
 
298
  # @ woocommerce-delivery-notes
299
- #: ../includes/class-wcdn-settings.php:302
300
  msgid "Print Page Endpoint"
301
  msgstr "Koncový bod stránky tisku"
302
 
303
  # @ woocommerce-delivery-notes
304
- #: ../includes/class-wcdn-settings.php:309
305
- msgid "The endpoint is appended to the accounts page URL to print the order. It should be unique."
306
- msgstr "Koncový bod je připojen k adrese účtu pro vytištění objednávky. Měl by být unikátní."
307
-
308
- #: ../includes/class-wcdn-settings.php:315
309
- msgid "My Account"
310
- msgstr "Můj účet"
311
-
312
- # @ woocommerce-delivery-notes
313
- #: ../includes/class-wcdn-settings.php:322
314
- msgid "Show print button on the \"View Order\" page"
315
- msgstr "Ukázat tlačítko vytištění na stránce \"Zobrazení objednávky\""
316
-
317
- # @ woocommerce-delivery-notes
318
- #: ../includes/class-wcdn-settings.php:329
319
- msgid "Show print buttons on the \"My Account\" page"
320
- msgstr "Ukázat tlačítko vytištění na stránce \"Můj účet\""
321
 
322
  # @ woocommerce-delivery-notes
323
- #: ../includes/class-wcdn-settings.php:336 ../includes/wcdn-template-functions.php:254
 
324
  msgid "Email"
325
  msgstr "E-mail"
326
 
327
- #: ../includes/class-wcdn-settings.php:343
328
  msgid "Show print link in customer emails"
329
  msgstr "Zobrazit odkaz k tisku v emailech zákazníkům"
330
 
331
- #: ../includes/class-wcdn-settings.php:347
332
  msgid ""
333
- "This includes the emails for a new, processing and completed order. On top of that the customer invoice email "
334
- "also includes the link."
335
  msgstr ""
336
- "Toto zahrnuje e-maily pro nové, zpracovávané a dokončené objednávky. Odkaz bude také v horní části emailu pro "
337
- "zákazníka."
 
 
 
 
 
 
 
 
 
338
 
339
  # @ woocommerce-delivery-notes
340
- #: ../includes/class-wcdn-settings.php:354
341
- msgid "Order Numbering"
342
- msgstr "Číslování objednávek"
343
 
344
- #: ../includes/class-wcdn-settings.php:359
345
- msgid "Invoice Numbering"
346
- msgstr "Číslování faktur"
347
 
348
- #: ../includes/class-wcdn-settings.php:367
349
  msgid "Create invoice numbers"
350
  msgstr "vytvořit čísla faktur"
351
 
352
- #: ../includes/class-wcdn-settings.php:374
353
- msgid "Invoice Number Start"
354
- msgstr "Počáteční číslo Faktury"
355
-
356
- #: ../includes/class-wcdn-settings.php:381
357
- msgid "Start the numbering at the specified number."
358
- msgstr "Začít číslování zvoleným číslem."
359
 
360
- #: ../includes/class-wcdn-settings.php:383
361
- msgid "Use only integers."
362
- msgstr "Požívejte pouze číslovky."
363
 
364
- #: ../includes/class-wcdn-settings.php:389
365
- msgid "Invoice Number Prefix"
366
- msgstr "Předpona čísla Faktur."
367
 
368
- #: ../includes/class-wcdn-settings.php:396
369
  msgid "This text will be prepended to the invoice number."
370
  msgstr "Tento textu bude před číslem faktury."
371
 
372
- #: ../includes/class-wcdn-settings.php:398
373
- msgid "Leave blank to not add a prefix."
374
- msgstr "Nechte prázdné, pokud nechcete přidat příponu."
375
-
376
- #: ../includes/class-wcdn-settings.php:404
377
- msgid "Invoice Number Suffix"
378
- msgstr "Přípona čísla faktury"
379
 
380
- #: ../includes/class-wcdn-settings.php:411
381
  msgid "This text will be appended to the invoice number."
382
  msgstr "Tento textu bude připojen za číslo faktury."
383
 
384
- #: ../includes/class-wcdn-settings.php:413
385
- msgid "Leave blank to not add a suffix."
386
- msgstr "Nechte prázdné, pokud nechcete přidávat příponu."
387
-
388
- #: ../includes/class-wcdn-settings.php:419
389
- msgid "Invoice Number Counter"
390
- msgstr "Počítadlo Faktur"
391
 
392
- #: ../includes/class-wcdn-settings.php:428
393
- msgid "Reset Counter …"
394
- msgstr "Vynulovat počítadlo..."
 
 
395
 
396
- #: ../includes/class-wcdn-settings.php:434
397
- msgid "Sequential Order Number"
398
- msgstr "Postupné číslo Objednávky"
 
 
 
 
399
 
400
- # @ woocommerce-delivery-notes
401
- #: ../includes/class-wcdn-settings.php:439
402
- msgid "Sequential numbering is enabled."
403
- msgstr "Postupné číslování je zapnuto."
404
 
405
- # @ woocommerce-delivery-notes
406
- #: ../includes/class-wcdn-settings.php:441
407
- #, php-format
408
- msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
409
- msgstr "Nainstalujte a aktivujte zdarma plugin <a href=\"%s\">WooCommerce Sequential Order Numbers</a>."
410
 
411
- #: ../includes/class-wcdn-theme.php:106
412
  msgid "Print your order"
413
  msgstr "Vytisknout vaší objednávku"
414
 
415
- #: ../includes/class-wcdn-theme.php:112
416
  msgid "Print:"
417
  msgstr "Tisk:"
418
 
419
- #: ../includes/class-wcdn-theme.php:112
420
  msgid "Open print view in browser"
421
  msgstr "Otevřít náhled tisku v prohlížeči"
422
 
423
  # @ woocommerce-delivery-notes
424
- #: ../includes/class-wcdn-writepanel.php:214
425
  msgid "Print now"
426
  msgstr "Vytisknout nyní"
427
 
428
  # @ woocommerce-delivery-notes
429
- #: ../includes/class-wcdn-writepanel.php:228
430
  msgid "Order Printing"
431
  msgstr "Tisk Objednávky"
432
 
433
- #: ../includes/class-wcdn-writepanel.php:256
434
  msgid "Invoice number: "
435
  msgstr "Číslo faktury:"
436
 
437
- #: ../includes/class-wcdn-writepanel.php:257
438
  msgid "Invoice date: "
439
  msgstr "Datum faktury"
440
 
441
- #: ../includes/wcdn-template-functions.php:232
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
442
  msgid "Invoice Number"
443
  msgstr "Číslo Faktury"
444
 
 
 
 
 
445
  # @ woocommerce-delivery-notes
446
- #: ../includes/wcdn-template-functions.php:238
447
  msgid "Order Number"
448
  msgstr "Číslo objednávky"
449
 
450
  # @ woocommerce-delivery-notes
451
- #: ../includes/wcdn-template-functions.php:243
452
  msgid "Order Date"
453
  msgstr "Datum objednávky"
454
 
455
  # @ woocommerce-delivery-notes
456
- #: ../includes/wcdn-template-functions.php:248
457
  msgid "Payment Method"
458
  msgstr "Metoda platby"
459
 
460
  # @ woocommerce-delivery-notes
461
- #: ../includes/wcdn-template-functions.php:261
462
  msgid "Telephone"
463
  msgstr "Telefon"
464
 
465
- #: ../includes/wcdn-template-functions.php:294
466
  msgid "SKU:"
467
  msgstr "SKU:"
468
 
469
- #: ../includes/wcdn-template-functions.php:380 ../includes/wcdn-template-functions.php:384
470
- #, php-format
471
  msgid "(Includes %s)"
472
  msgstr "(Zahrnuje %s)"
473
 
474
- #: ../includes/wcdn-template-functions.php:400
475
  msgid "Refund"
476
  msgstr "Vráceno"
477
 
478
- #: ../includes/wcdn-template-functions.php:412
479
  msgid "Order Subtotal"
480
  msgstr "Mezisoučet"
481
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
482
  # @ woocommerce-delivery-notes
483
- #: ../templates/print-order/print-content.php:28
484
  msgid "Billing Address"
485
  msgstr "Fakturační adresa"
486
 
487
  # @ woocommerce-delivery-notes
488
- #: ../templates/print-order/print-content.php:31 ../templates/print-order/print-content.php:40
 
489
  msgid "N/A"
490
  msgstr "N/A"
491
 
492
  # @ woocommerce-delivery-notes
493
- #: ../templates/print-order/print-content.php:37
494
  msgid "Shipping Address"
495
  msgstr "Doručovací adresa"
496
 
497
  # @ woocommerce-delivery-notes
498
- #: ../templates/print-order/print-content.php:70
499
  msgid "Product"
500
  msgstr "Produkt"
501
 
502
- #: ../templates/print-order/print-content.php:71
503
  msgid "Price"
504
  msgstr "Cena"
505
 
506
- #: ../templates/print-order/print-content.php:72
507
  msgid "Quantity"
508
  msgstr "Množství"
509
 
510
  # @ woocommerce-delivery-notes
511
- #: ../templates/print-order/print-content.php:73
512
  msgid "Total"
513
  msgstr "Celkem"
514
 
515
  # @ woocommerce-delivery-notes
516
- #: ../templates/print-order/print-content.php:97
517
  msgid "Download:"
518
  msgstr "Stažení:"
519
 
520
  # @ woocommerce-delivery-notes
521
- #: ../templates/print-order/print-content.php:98
522
- #, php-format
523
  msgid "%s Files"
524
  msgstr "%s souborů"
525
 
526
  # @ woocommerce-delivery-notes
527
- #: ../templates/print-order/print-content.php:147
528
  msgid "Customer Note"
529
  msgstr "Poznámka"
530
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
531
  # @ woocommerce-delivery-notes
532
- #: ../woocommerce-delivery-notes.php:181
533
  msgid "Go to the settings page"
534
  msgstr "Jít na stránku nastavení"
535
 
536
  # @ woocommerce-delivery-notes
537
- #: ../woocommerce-delivery-notes.php:181
538
  msgid "Settings"
539
  msgstr "Nastavení"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  msgid ""
9
  msgstr ""
10
  "Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
11
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/woocommerce-"
12
+ "delivery-notes\n"
13
+ "POT-Creation-Date: 2018-10-22 18:10+0530\n"
14
+ "PO-Revision-Date: 2018-10-22 18:56+0530\n"
15
  "Last-Translator: Tomáš Kůrka <tomas.kurka.film@gmail.com>\n"
16
  "Language-Team: \n"
17
  "Language: en\n"
19
  "Content-Type: text/plain; charset=UTF-8\n"
20
  "Content-Transfer-Encoding: 8bit\n"
21
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
22
+ "X-Generator: Poedit 1.8.7.1\n"
23
  "X-Poedit-SourceCharset: UTF-8\n"
24
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
25
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
26
+ "esc_attr_e;esc_attr__\n"
27
  "X-Poedit-Basepath: .\n"
28
  "X-Textdomain-Support: yes\n"
29
  "X-Poedit-SearchPath-0: ..\n"
30
 
31
  # @ woocommerce-delivery-notes
32
+ #: includes/class-wcdn-print.php:39 includes/class-wcdn-settings.php:237
33
  msgid "Invoice"
34
  msgstr "Faktura"
35
 
36
+ #: includes/class-wcdn-print.php:40
37
  msgid "Invoices"
38
  msgstr "Faktury"
39
 
40
  # @ woocommerce-delivery-notes
41
+ #: includes/class-wcdn-print.php:41
42
  msgid "Print Invoice"
43
  msgstr "Vytisknout Fakturu"
44
 
45
+ #: includes/class-wcdn-print.php:42
46
  msgid "Print Invoices"
47
  msgstr "Vytisknout Faktury"
48
 
49
  # @ woocommerce-delivery-notes
50
+ #: includes/class-wcdn-print.php:43
51
  msgid "Invoice created."
52
  msgstr "Faktura vytvořena."
53
 
54
+ #: includes/class-wcdn-print.php:44
55
  msgid "Invoices created."
56
  msgstr "Faktura vytvořena."
57
 
58
+ #: includes/class-wcdn-print.php:45
59
+ msgid "Show \"Print Invoice\" button"
60
+ msgstr ""
61
 
62
  # @ woocommerce-delivery-notes
63
+ #: includes/class-wcdn-print.php:51
64
  msgid "Delivery Note"
65
  msgstr "Podrobnosti dodávky"
66
 
67
+ #: includes/class-wcdn-print.php:52
68
  msgid "Delivery Notes"
69
  msgstr "Podrobnosti dodávky"
70
 
71
  # @ woocommerce-delivery-notes
72
+ #: includes/class-wcdn-print.php:53
73
  msgid "Print Delivery Note"
74
  msgstr "Vytisknout Podrobnosti dodávky"
75
 
76
+ #: includes/class-wcdn-print.php:54
77
  msgid "Print Delivery Notes"
78
  msgstr "Vytisknout Podrobnosti dodávky"
79
 
80
+ #: includes/class-wcdn-print.php:55
81
  msgid "Delivery Note created."
82
  msgstr "Podrobnosti dodávky vytvořeny."
83
 
84
+ #: includes/class-wcdn-print.php:56
85
  msgid "Delivery Notes created."
86
  msgstr "Podrobnosti dodávky vytvořeny."
87
 
88
+ #: includes/class-wcdn-print.php:57
89
+ msgid "Show \"Print Delivery Note\" button"
90
+ msgstr ""
91
 
92
+ #: includes/class-wcdn-print.php:63
93
  msgid "Receipt"
94
  msgstr "Účtenka"
95
 
96
+ #: includes/class-wcdn-print.php:64
97
  msgid "Receipts"
98
  msgstr "Účtenky"
99
 
100
+ #: includes/class-wcdn-print.php:65
101
  msgid "Print Receipt"
102
  msgstr "Vytisknout Účtenku"
103
 
104
+ #: includes/class-wcdn-print.php:66
105
  msgid "Print Receipts"
106
  msgstr "Vytisknout Účtenky"
107
 
108
+ #: includes/class-wcdn-print.php:67
109
  msgid "Receipt created."
110
  msgstr "Účtenka vytvořena."
111
 
112
+ #: includes/class-wcdn-print.php:68
113
  msgid "Receipts created."
114
  msgstr "Účtenky vytvořeny."
115
 
116
+ #: includes/class-wcdn-print.php:69
117
+ msgid "Show \"Print Receipt\" button"
118
+ msgstr ""
119
 
120
  # @ woocommerce-delivery-notes
121
+ #: includes/class-wcdn-print.php:78
122
  msgid "Order"
123
  msgstr "Objednávka"
124
 
125
+ #: includes/class-wcdn-print.php:79
126
  msgid "Orders"
127
  msgstr "Objednávky"
128
 
129
  # @ woocommerce-delivery-notes
130
+ #: includes/class-wcdn-print.php:80
131
  msgid "Print Order"
132
  msgstr "Vytisknout Objednávku"
133
 
134
+ #: includes/class-wcdn-print.php:81
135
  msgid "Print Orders"
136
  msgstr "Vytisknout objednávky"
137
 
138
+ #: includes/class-wcdn-print.php:93
139
+ msgid "Default"
140
+ msgstr ""
141
+
142
+ #: includes/class-wcdn-settings.php:67
143
+ msgid ""
144
+ "Do you really want to reset the counter to zero? This process can't be "
145
+ "undone."
146
  msgstr "Chcete opravu nastavit počítadlo na nulu? Tento proces nejde vrátit."
147
 
148
  # @ woocommerce-delivery-notes
149
+ #: includes/class-wcdn-settings.php:75 includes/class-wcdn-theme.php:57
150
+ #: includes/class-wcdn-theme.php:94 includes/wcdn-template-functions.php:130
151
  msgid "Print"
152
  msgstr "Tisk"
153
 
154
+ #: includes/class-wcdn-settings.php:106
155
+ msgid "Template"
 
 
 
156
  msgstr ""
 
 
 
 
 
 
 
157
 
158
+ #: includes/class-wcdn-settings.php:113
159
+ msgid "Style"
160
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
161
 
162
+ #: includes/class-wcdn-settings.php:114
 
163
  msgid ""
164
+ "The default print style. Read the <a href=\"%1$s\">FAQ</a> to learn how to "
165
+ "customize it."
 
166
  msgstr ""
 
 
 
167
 
168
+ #: includes/class-wcdn-settings.php:124
169
+ msgid "Shop Logo"
170
+ msgstr ""
 
 
 
 
 
 
171
 
172
+ #: includes/class-wcdn-settings.php:130
 
173
  msgid ""
174
+ "A shop logo representing your business. When the image is printed, its pixel "
175
+ "density will automatically be eight times higher than the original. This "
176
+ "means, 1 printed inch will correspond to about 288 pixels on the screen."
177
  msgstr ""
 
 
178
 
179
+ #: includes/class-wcdn-settings.php:134
180
+ msgid "Shop Name"
181
+ msgstr ""
 
182
 
183
+ #: includes/class-wcdn-settings.php:140
 
184
  msgid ""
185
+ "The shop name. Leave blank to use the default Website or Blog title defined "
186
+ "in WordPress settings. The name will be ignored when a Logo is set."
187
+ msgstr ""
188
 
189
+ #: includes/class-wcdn-settings.php:144
190
+ msgid "Shop Address"
191
+ msgstr ""
 
192
 
193
+ #: includes/class-wcdn-settings.php:145
194
+ msgid "The postal address of the shop or even e-mail or telephone."
195
+ msgstr ""
196
+
197
+ #: includes/class-wcdn-settings.php:154
198
  msgid "Complimentary Close"
199
  msgstr "Závěrečná fráze"
200
 
201
+ #: includes/class-wcdn-settings.php:155
202
+ msgid "Add a personal close, notes or season greetings."
203
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
204
 
205
+ #: includes/class-wcdn-settings.php:164
206
+ msgid "Policies"
207
+ msgstr ""
 
 
 
 
208
 
209
+ #: includes/class-wcdn-settings.php:165
210
+ msgid "Add the shop policies, conditions, etc."
211
+ msgstr ""
 
212
 
213
  # @ woocommerce-delivery-notes
214
+ #: includes/class-wcdn-settings.php:174
215
  msgid "Footer"
216
  msgstr "Zápatí"
217
 
218
+ #: includes/class-wcdn-settings.php:175
 
219
  msgid ""
220
+ "Add a footer imprint, instructions, copyright notes, e-mail, telephone, etc."
221
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
222
 
223
+ #: includes/class-wcdn-settings.php:189
224
+ msgid "Pages & Buttons"
225
+ msgstr ""
226
 
227
  # @ woocommerce-delivery-notes
228
+ #: includes/class-wcdn-settings.php:196
229
  msgid "Print Page Endpoint"
230
  msgstr "Koncový bod stránky tisku"
231
 
232
  # @ woocommerce-delivery-notes
233
+ #: includes/class-wcdn-settings.php:202
234
+ msgid ""
235
+ "The endpoint is appended to the accounts page URL to print the order. It "
236
+ "should be unique."
237
+ msgstr ""
238
+ "Koncový bod je připojen k adrese účtu pro vytištění objednávky. Měl by být "
239
+ "unikátní."
 
 
 
 
 
 
 
 
 
 
240
 
241
  # @ woocommerce-delivery-notes
242
+ #: includes/class-wcdn-settings.php:206
243
+ #: includes/wcdn-template-functions.php:275
244
  msgid "Email"
245
  msgstr "E-mail"
246
 
247
+ #: includes/class-wcdn-settings.php:207
248
  msgid "Show print link in customer emails"
249
  msgstr "Zobrazit odkaz k tisku v emailech zákazníkům"
250
 
251
+ #: includes/class-wcdn-settings.php:211
252
  msgid ""
253
+ "This includes the emails for a new, processing and completed order. On top "
254
+ "of that the customer invoice email also includes the link."
255
  msgstr ""
256
+ "Toto zahrnuje e-maily pro nové, zpracovávané a dokončené objednávky. Odkaz "
257
+ "bude také v horní části emailu pro zákazníka."
258
+
259
+ #: includes/class-wcdn-settings.php:215
260
+ msgid "My Account"
261
+ msgstr "Můj účet"
262
+
263
+ # @ woocommerce-delivery-notes
264
+ #: includes/class-wcdn-settings.php:216
265
+ msgid "Show print button on the \"View Order\" page"
266
+ msgstr "Ukázat tlačítko vytištění na stránce \"Zobrazení objednávky\""
267
 
268
  # @ woocommerce-delivery-notes
269
+ #: includes/class-wcdn-settings.php:224
270
+ msgid "Show print buttons on the \"My Account\" page"
271
+ msgstr "Ukázat tlačítko vytištění na stránce \"Můj účet\""
272
 
273
+ #: includes/class-wcdn-settings.php:244
274
+ msgid "Numbering"
275
+ msgstr ""
276
 
277
+ #: includes/class-wcdn-settings.php:245
278
  msgid "Create invoice numbers"
279
  msgstr "vytvořit čísla faktur"
280
 
281
+ #: includes/class-wcdn-settings.php:253
282
+ msgid "Next Number"
283
+ msgstr ""
 
 
 
 
284
 
285
+ #: includes/class-wcdn-settings.php:260
286
+ msgid "The next invoice number."
287
+ msgstr ""
288
 
289
+ #: includes/class-wcdn-settings.php:264
290
+ msgid "Number Prefix"
291
+ msgstr ""
292
 
293
+ #: includes/class-wcdn-settings.php:271
294
  msgid "This text will be prepended to the invoice number."
295
  msgstr "Tento textu bude před číslem faktury."
296
 
297
+ #: includes/class-wcdn-settings.php:275
298
+ msgid "Number Suffix"
299
+ msgstr ""
 
 
 
 
300
 
301
+ #: includes/class-wcdn-settings.php:282
302
  msgid "This text will be appended to the invoice number."
303
  msgstr "Tento textu bude připojen za číslo faktury."
304
 
305
+ #: includes/class-wcdn-settings.php:327
306
+ msgid "Admin"
307
+ msgstr ""
 
 
 
 
308
 
309
+ #: includes/class-wcdn-settings.php:330
310
+ msgid ""
311
+ "The print buttons are available on the order listing and on the order detail "
312
+ "screen."
313
+ msgstr ""
314
 
315
+ #: includes/class-wcdn-settings.php:372
316
+ msgid ""
317
+ "This section lets you customise the content. You can preview the <a href="
318
+ "\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target="
319
+ "\"%4$s\" class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s"
320
+ "\" class=\"%5$s\">receipt</a> template."
321
+ msgstr ""
322
 
323
+ #: includes/class-wcdn-settings.php:435
324
+ msgid "Select"
325
+ msgstr ""
 
326
 
327
+ #: includes/class-wcdn-settings.php:439
328
+ msgid "Remove"
329
+ msgstr ""
 
 
330
 
331
+ #: includes/class-wcdn-theme.php:112
332
  msgid "Print your order"
333
  msgstr "Vytisknout vaší objednávku"
334
 
335
+ #: includes/class-wcdn-theme.php:119
336
  msgid "Print:"
337
  msgstr "Tisk:"
338
 
339
+ #: includes/class-wcdn-theme.php:119
340
  msgid "Open print view in browser"
341
  msgstr "Otevřít náhled tisku v prohlížeči"
342
 
343
  # @ woocommerce-delivery-notes
344
+ #: includes/class-wcdn-writepanel.php:218
345
  msgid "Print now"
346
  msgstr "Vytisknout nyní"
347
 
348
  # @ woocommerce-delivery-notes
349
+ #: includes/class-wcdn-writepanel.php:232
350
  msgid "Order Printing"
351
  msgstr "Tisk Objednávky"
352
 
353
+ #: includes/class-wcdn-writepanel.php:259
354
  msgid "Invoice number: "
355
  msgstr "Číslo faktury:"
356
 
357
+ #: includes/class-wcdn-writepanel.php:260
358
  msgid "Invoice date: "
359
  msgstr "Datum faktury"
360
 
361
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:75
362
+ msgid "If you have a moment, please let us know why you are deactivating"
363
+ msgstr ""
364
+
365
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:76
366
+ msgid "Submit & Deactivate"
367
+ msgstr ""
368
+
369
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:77
370
+ msgid "Deactivate"
371
+ msgstr ""
372
+
373
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:78
374
+ msgid "Cancel"
375
+ msgstr ""
376
+
377
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:79
378
+ msgid "Yes - Deactivate"
379
+ msgstr ""
380
+
381
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:83
382
+ msgid "I found a better plugin"
383
+ msgstr ""
384
+
385
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:84
386
+ msgid "What's the plugin's name?"
387
+ msgstr ""
388
+
389
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:85
390
+ msgid "I only needed the plugin for a short period"
391
+ msgstr ""
392
+
393
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:86
394
+ msgid "The plugin is not working"
395
+ msgstr ""
396
+
397
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:87
398
+ msgid "Kindly share what didn't work so we can fix it for future users..."
399
+ msgstr ""
400
+
401
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:88
402
+ msgid "The plugin is great, but I need specific feature that you don't support"
403
+ msgstr ""
404
+
405
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:89
406
+ msgid "What feature?"
407
+ msgstr ""
408
+
409
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:90
410
+ msgid "I don't like to share my information with you"
411
+ msgstr ""
412
+
413
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:91
414
+ msgctxt ""
415
+ "the text of the 'other' reason for deactivating the plugin that is shown in "
416
+ "the modal box."
417
+ msgid "Other"
418
+ msgstr ""
419
+
420
+ #: includes/component/faq-support/ts-faq-support.php:127
421
+ msgid "Frequently Asked Questions for %s"
422
+ msgstr ""
423
+
424
+ #: includes/component/faq-support/ts-faq-support.php:176
425
+ msgid "FAQ & Support"
426
+ msgstr ""
427
+
428
+ #: includes/component/tracking-data/ts-tracking.php:120
429
+ #: includes/component/tracking-data/ts-tracking.php:180
430
+ msgid "Reset usage tracking"
431
+ msgstr ""
432
+
433
+ #: includes/component/tracking-data/ts-tracking.php:122
434
+ msgid ""
435
+ "This will reset your usage tracking settings, causing it to show the opt-in "
436
+ "banner again and not sending any data"
437
+ msgstr ""
438
+
439
+ #: includes/component/tracking-data/ts-tracking.php:225
440
+ msgid "Once in a Week"
441
+ msgstr ""
442
+
443
+ #: includes/component/tracking-data/ts-tracking.php:311
444
+ msgid "Allow"
445
+ msgstr ""
446
+
447
+ #: includes/component/tracking-data/ts-tracking.php:312
448
+ msgid "No thanks"
449
+ msgstr ""
450
+
451
+ #: includes/component/welcome-page/templates/social-media-elements.php:10
452
+ #: includes/wcdn-welcome.php:231
453
+ msgid "Follow %s"
454
+ msgstr ""
455
+
456
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:19
457
+ #: includes/wcdn-welcome.php:99
458
+ msgid ""
459
+ "Thank you for activating or updating to the latest version of WooCommerce "
460
+ "Print Invoice & Delivery Note! If you're a first time user, welcome! You're "
461
+ "well on your way to explore the print functionality for your WooCommerce "
462
+ "orders."
463
+ msgstr ""
464
+
465
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:29
466
+ #: includes/wcdn-welcome.php:109
467
+ msgid "Get Started with WooCommerce Print Invoice & Delivery Note"
468
+ msgstr ""
469
+
470
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:33
471
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:62
472
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:68
473
+ #: includes/wcdn-welcome.php:113 includes/wcdn-welcome.php:142
474
+ #: includes/wcdn-welcome.php:148
475
+ msgid "WooCommerce Print Invoice & Delivery Note"
476
+ msgstr ""
477
+
478
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:37
479
+ #: includes/wcdn-welcome.php:117
480
+ msgid "Add settings"
481
+ msgstr ""
482
+
483
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:39
484
+ #: includes/wcdn-welcome.php:119
485
+ msgid ""
486
+ "To enable the print functionality for your invoices, delivery notes & "
487
+ "receipts, you just need to set it up under WooCommerce -> Settings -> Print "
488
+ "page. Here you can also setup the Company Logo that will appear on the "
489
+ "printed items, Company Address & other information."
490
+ msgstr ""
491
+
492
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:41
493
+ #: includes/wcdn-welcome.php:121
494
+ msgid "Click Here to go to Print page"
495
+ msgstr ""
496
+
497
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:52
498
+ #: includes/wcdn-welcome.php:132
499
+ msgid "Enable Print button for Customers."
500
+ msgstr ""
501
+
502
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:54
503
+ #: includes/wcdn-welcome.php:134
504
+ msgid ""
505
+ "Allow customers to print the WooCommerce order invoice from the customer "
506
+ "notification email, from the My Account page or from the View Order page "
507
+ "under My Account."
508
+ msgstr ""
509
+
510
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:56
511
+ #: includes/wcdn-welcome.php:136
512
+ msgid "Click Here to Enable Print button for Customers"
513
+ msgstr ""
514
+
515
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:72
516
+ #: includes/wcdn-welcome.php:152
517
+ msgid "Enable Invoice Numbering"
518
+ msgstr ""
519
+
520
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:74
521
+ msgid ""
522
+ "If you want to change the default invoice numbers & set some numbering "
523
+ "scheme of your own, then you can set it here with a starting invoice number, "
524
+ "a prefix & suffix. For example, you could set it as: TS/001/17-18."
525
+ msgstr ""
526
+
527
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:76
528
+ #: includes/wcdn-welcome.php:156
529
+ msgid "Click Here to Enable Invoice Numbering"
530
+ msgstr ""
531
+
532
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:87
533
+ #: includes/wcdn-welcome.php:167
534
+ msgid "Getting to Know Tyche Softwares"
535
+ msgstr ""
536
+
537
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:90
538
+ #: includes/wcdn-welcome.php:170
539
+ msgid "Visit the Tyche Softwares Website"
540
+ msgstr ""
541
+
542
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:91
543
+ #: includes/wcdn-welcome.php:171
544
+ msgid "View all Premium Plugins"
545
+ msgstr ""
546
+
547
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:100
548
+ #: includes/wcdn-welcome.php:180
549
+ msgid "Meet the team"
550
+ msgstr ""
551
+
552
+ #: includes/component/welcome-page/ts-welcome.php:167
553
+ msgid "Welcome to %s %s"
554
+ msgstr ""
555
+
556
+ #: includes/wcdn-all-component.php:118
557
+ msgid ""
558
+ "Thank you for using WooCommerce Print Invoice & Delivery Note plugin! Now "
559
+ "make your deliveries more accurate by allowing customers to select their "
560
+ "preferred delivery date & time from Product Delivery Date Pro for "
561
+ "WooCommerce. <strong><a target=\"_blank\" href= \"https://www.tychesoftwares."
562
+ "com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/?"
563
+ "utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">Get "
564
+ "it now!</a></strong>"
565
+ msgstr ""
566
+
567
+ #: includes/wcdn-all-component.php:120
568
+ msgid ""
569
+ "Never login to your admin to check your deliveries by syncing the delivery "
570
+ "dates to the Google Calendar from Product Delivery Date Pro for WooCommerce. "
571
+ "<strong><a target=\"_blank\" href= \"https://www.tychesoftwares.com/store/"
572
+ "premium-plugins/product-delivery-date-pro-for-woocommerce/checkout?"
573
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
574
+ "\">Get it now!</a></strong>"
575
+ msgstr ""
576
+
577
+ #: includes/wcdn-all-component.php:122
578
+ msgid ""
579
+ "You can now view all your deliveries in list view or in calendar view from "
580
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
581
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
582
+ "delivery-date-pro-for-woocommerce/checkout?"
583
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
584
+ "\">Get it now!</a></strong>."
585
+ msgstr ""
586
+
587
+ #: includes/wcdn-all-component.php:124
588
+ msgid ""
589
+ "Allow your customers to pay extra for delivery for certain Weekdays/Dates "
590
+ "from Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
591
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
592
+ "delivery-date-pro-for-woocommerce/checkout?"
593
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
594
+ "\">Have it now!</a></strong>."
595
+ msgstr ""
596
+
597
+ #: includes/wcdn-all-component.php:126
598
+ msgid ""
599
+ "Customers can now edit the Delivery date & time on cart and checkout page or "
600
+ "they can reschedule the deliveries for the already placed orders from "
601
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
602
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
603
+ "delivery-date-pro-for-woocommerce/checkout?"
604
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
605
+ "\">Have it now!</a></strong>."
606
+ msgstr ""
607
+
608
+ #: includes/wcdn-template-functions.php:246
609
  msgid "Invoice Number"
610
  msgstr "Číslo Faktury"
611
 
612
+ #: includes/wcdn-template-functions.php:253
613
+ msgid "Invoice Date"
614
+ msgstr ""
615
+
616
  # @ woocommerce-delivery-notes
617
+ #: includes/wcdn-template-functions.php:259
618
  msgid "Order Number"
619
  msgstr "Číslo objednávky"
620
 
621
  # @ woocommerce-delivery-notes
622
+ #: includes/wcdn-template-functions.php:264
623
  msgid "Order Date"
624
  msgstr "Datum objednávky"
625
 
626
  # @ woocommerce-delivery-notes
627
+ #: includes/wcdn-template-functions.php:269
628
  msgid "Payment Method"
629
  msgstr "Metoda platby"
630
 
631
  # @ woocommerce-delivery-notes
632
+ #: includes/wcdn-template-functions.php:282
633
  msgid "Telephone"
634
  msgstr "Telefon"
635
 
636
+ #: includes/wcdn-template-functions.php:315
637
  msgid "SKU:"
638
  msgstr "SKU:"
639
 
640
+ #: includes/wcdn-template-functions.php:409
641
+ #: includes/wcdn-template-functions.php:413
642
  msgid "(Includes %s)"
643
  msgstr "(Zahrnuje %s)"
644
 
645
+ #: includes/wcdn-template-functions.php:429
646
  msgid "Refund"
647
  msgstr "Vráceno"
648
 
649
+ #: includes/wcdn-template-functions.php:441
650
  msgid "Order Subtotal"
651
  msgstr "Mezisoučet"
652
 
653
+ #: includes/wcdn-welcome.php:54
654
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note %s"
655
+ msgstr ""
656
+
657
+ #: includes/wcdn-welcome.php:55
658
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note"
659
+ msgstr ""
660
+
661
+ #: includes/wcdn-welcome.php:154
662
+ msgid ""
663
+ "f you want to change the default invoice numbers & set some numbering scheme "
664
+ "of your own, then you can set it here with a starting invoice number, a "
665
+ "prefix & suffix. For example, you could set it as: TS/001/17-18."
666
+ msgstr ""
667
+
668
+ #: includes/wcdn-welcome.php:186
669
+ msgid "Current Offers"
670
+ msgstr ""
671
+
672
  # @ woocommerce-delivery-notes
673
+ #: templates/print-order/print-content.php:28
674
  msgid "Billing Address"
675
  msgstr "Fakturační adresa"
676
 
677
  # @ woocommerce-delivery-notes
678
+ #: templates/print-order/print-content.php:31
679
+ #: templates/print-order/print-content.php:40
680
  msgid "N/A"
681
  msgstr "N/A"
682
 
683
  # @ woocommerce-delivery-notes
684
+ #: templates/print-order/print-content.php:37
685
  msgid "Shipping Address"
686
  msgstr "Doručovací adresa"
687
 
688
  # @ woocommerce-delivery-notes
689
+ #: templates/print-order/print-content.php:71
690
  msgid "Product"
691
  msgstr "Produkt"
692
 
693
+ #: templates/print-order/print-content.php:72
694
  msgid "Price"
695
  msgstr "Cena"
696
 
697
+ #: templates/print-order/print-content.php:73
698
  msgid "Quantity"
699
  msgstr "Množství"
700
 
701
  # @ woocommerce-delivery-notes
702
+ #: templates/print-order/print-content.php:74
703
  msgid "Total"
704
  msgstr "Celkem"
705
 
706
  # @ woocommerce-delivery-notes
707
+ #: templates/print-order/print-content.php:147
708
  msgid "Download:"
709
  msgstr "Stažení:"
710
 
711
  # @ woocommerce-delivery-notes
712
+ #: templates/print-order/print-content.php:148
 
713
  msgid "%s Files"
714
  msgstr "%s souborů"
715
 
716
  # @ woocommerce-delivery-notes
717
+ #: templates/print-order/print-content.php:202
718
  msgid "Customer Note"
719
  msgstr "Poznámka"
720
 
721
+ #: woocommerce-delivery-notes.php:96 woocommerce-delivery-notes.php:103
722
+ msgid "Cheatin&#8217; huh?"
723
+ msgstr ""
724
+
725
+ #: woocommerce-delivery-notes.php:275
726
+ msgid ""
727
+ "I can't differentiate between Invoice, Delivery Notes & Receipt. The "
728
+ "templates are the same. "
729
+ msgstr ""
730
+
731
+ #: woocommerce-delivery-notes.php:281
732
+ msgid "The invoice sent through mail can't be downloaded as PDF directly."
733
+ msgstr ""
734
+
735
+ #: woocommerce-delivery-notes.php:287
736
+ msgid "The plugin is not compatible with another plugin."
737
+ msgstr ""
738
+
739
+ #: woocommerce-delivery-notes.php:293
740
+ msgid "This plugin is not useful to me."
741
+ msgstr ""
742
+
743
  # @ woocommerce-delivery-notes
744
+ #: woocommerce-delivery-notes.php:351
745
  msgid "Go to the settings page"
746
  msgstr "Jít na stránku nastavení"
747
 
748
  # @ woocommerce-delivery-notes
749
+ #: woocommerce-delivery-notes.php:351
750
  msgid "Settings"
751
  msgstr "Nastavení"
752
+
753
+ #~ msgid "Enable Invoices"
754
+ #~ msgstr "Povolit Faktury"
755
+
756
+ #~ msgid "Enable Delivery Notes"
757
+ #~ msgstr "Povolit Podrobnosti dodávky"
758
+
759
+ #~ msgid "Enable Receipts"
760
+ #~ msgstr "Povolit účtenky"
761
+
762
+ #~ msgid ""
763
+ #~ "You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s"
764
+ #~ "\">invoice</a>, <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s\">delivery "
765
+ #~ "note</a> or <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> "
766
+ #~ "template."
767
+ #~ msgstr ""
768
+ #~ "Můžete zobrazit šablonu <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s"
769
+ #~ "\">invoice</a>, <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s"
770
+ #~ "\">podrobnosti dodávky</a> or <a href=\"%3$s\" target=\"%4$s\" class="
771
+ #~ "\"%5$s\">receipt</a>."
772
+
773
+ # @ woocommerce-delivery-notes
774
+ #~ msgid ""
775
+ #~ "With the FAQ in the readme file you can learn how to customize the "
776
+ #~ "template."
777
+ #~ msgstr ""
778
+ #~ "V souboru readme naleznete FAQ, ze kterých se můžete naučit, jak "
779
+ #~ "přizpůsobit šablonu."
780
+
781
+ # @ woocommerce-delivery-notes
782
+ #~ msgid "Company/Shop Logo"
783
+ #~ msgstr "Logo společnosti"
784
+
785
+ # @ woocommerce-delivery-notes
786
+ #~ msgid "Remove Logo"
787
+ #~ msgstr "Odstranit logo"
788
+
789
+ # @ woocommerce-delivery-notes
790
+ #~ msgid "Set Logo"
791
+ #~ msgstr "Nastavit logo"
792
+
793
+ # @ woocommerce-delivery-notes
794
+ #~ msgid "A company/shop logo representing your business."
795
+ #~ msgstr "Logo společnosti reprezentující vaše podnikání."
796
+
797
+ # @ woocommerce-delivery-notes
798
+ #~ msgid "Note:"
799
+ #~ msgstr "Poznámka:"
800
+
801
+ # @ woocommerce-delivery-notes
802
+ #~ msgid ""
803
+ #~ "When the image is printed, its pixel density will automatically be eight "
804
+ #~ "times higher than the original. This means, 1 printed inch will "
805
+ #~ "correspond to about 288 pixels on the screen. Example: an image with a "
806
+ #~ "width of 576 pixels and a height of 288 pixels will have a printed size "
807
+ #~ "of about 2 inches to 1 inch."
808
+ #~ msgstr ""
809
+ #~ "Pokud bude obrázek vytištěn, hustota pixelů bude automaticky osmktrát "
810
+ #~ "větší, než originál. To znamená, že jeden palec bude odpovídat asi 288 "
811
+ #~ "pixelům na obrazovce. Příklad: Obrázek o šířce 576 pixelů a výšce 288 "
812
+ #~ "pixelů bude vytištěn ve velikosti okolo 2 x 1 palec."
813
+
814
+ # @ woocommerce-delivery-notes
815
+ #~ msgid "Company/Shop Name"
816
+ #~ msgstr "Název společnosti"
817
+
818
+ # @ woocommerce-delivery-notes
819
+ #~ msgid "Your company/shop name for the Delivery Note."
820
+ #~ msgstr "Název společnosti pro Podrobnosti dodávky."
821
+
822
+ # @ woocommerce-delivery-notes
823
+ #~ msgid ""
824
+ #~ "Leave blank to use the default Website/Blog title defined in WordPress "
825
+ #~ "settings. The name will be ignored when a Logo is set."
826
+ #~ msgstr ""
827
+ #~ "Nechte prázdné pro použití defalutního názvu stránky nastaveného ve "
828
+ #~ "Wordpressu. Jméno nebude použité, pokud je nastavené logo."
829
+
830
+ # @ woocommerce-delivery-notes
831
+ #~ msgid "Company/Shop Address"
832
+ #~ msgstr "Adresa společnosti"
833
+
834
+ # @ woocommerce-delivery-notes
835
+ #~ msgid ""
836
+ #~ "The postal address of the company/shop or even e-mail or telephone, which "
837
+ #~ "gets printed right after the company/shop name."
838
+ #~ msgstr ""
839
+ #~ "Poštovní adresa společnosti a také e-mail nebo telefon, který bude "
840
+ #~ "vytištěn hned za názvem společnosti."
841
+
842
+ # @ woocommerce-delivery-notes
843
+ #~ msgid "Leave blank to not print an address."
844
+ #~ msgstr "Nechte prázdné, pokud nechcete tisknout adresu."
845
+
846
+ # @ woocommerce-delivery-notes
847
+ #~ msgid ""
848
+ #~ "Add some personal notes, or season greetings or whatever (e.g. Thank You "
849
+ #~ "for Your Order!, Merry Christmas!, etc.)."
850
+ #~ msgstr ""
851
+ #~ "Přidejte nějaké osobní poznámy, jak například poděkování nebo pozdrav."
852
+
853
+ # @ woocommerce-delivery-notes
854
+ #~ msgid "Leave blank to not print any personal notes."
855
+ #~ msgstr "Nechte prázné, pokud nechcete tisknout žádné osobní poznámky."
856
+
857
+ # @ woocommerce-delivery-notes
858
+ #~ msgid "Returns Policy, Conditions, etc"
859
+ #~ msgstr "Reklamační řád, obchodní podmínky atd."
860
+
861
+ # @ woocommerce-delivery-notes
862
+ #~ msgid ""
863
+ #~ "Here you can add some more policies, conditions etc. For example add a "
864
+ #~ "returns policy in case the client would like to send back some goods. In "
865
+ #~ "some countries (e.g. in the European Union) this is required so please "
866
+ #~ "add any required info in accordance with the statutory regulations."
867
+ #~ msgstr ""
868
+ #~ "Zde je místo pro přidání Reklamačního řádu, obchodních podmínek atd."
869
+
870
+ # @ woocommerce-delivery-notes
871
+ #~ msgid "Leave blank to not print any policies or conditions."
872
+ #~ msgstr "Nechte prázdné, pokud nechcete tisknout pravidla a podmínky."
873
+
874
+ # @ woocommerce-delivery-notes
875
+ #~ msgid ""
876
+ #~ "Add some further footer imprint, e-mail, telephone, copyright notes etc. "
877
+ #~ "This makes the printed sheets a bit more branded."
878
+ #~ msgstr ""
879
+ #~ "Přidejte nějaký obsah zápatí, jako například e-mail, telefon nebo "
880
+ #~ "copyright."
881
+
882
+ # @ woocommerce-delivery-notes
883
+ #~ msgid "Leave blank to not print a footer."
884
+ #~ msgstr "Nechte prázdné, pokud nechcete tisknout zápatí."
885
+
886
+ #~ msgid "Print Options"
887
+ #~ msgstr "Možnosti tisku"
888
+
889
+ #~ msgid "Types"
890
+ #~ msgstr "Typy"
891
+
892
+ #~ msgid "Theme Options"
893
+ #~ msgstr "Nastavení předlohy"
894
+
895
+ # @ woocommerce-delivery-notes
896
+ #~ msgid "Order Numbering"
897
+ #~ msgstr "Číslování objednávek"
898
+
899
+ #~ msgid "Invoice Numbering"
900
+ #~ msgstr "Číslování faktur"
901
+
902
+ #~ msgid "Invoice Number Start"
903
+ #~ msgstr "Počáteční číslo Faktury"
904
+
905
+ #~ msgid "Start the numbering at the specified number."
906
+ #~ msgstr "Začít číslování zvoleným číslem."
907
+
908
+ #~ msgid "Use only integers."
909
+ #~ msgstr "Požívejte pouze číslovky."
910
+
911
+ #~ msgid "Invoice Number Prefix"
912
+ #~ msgstr "Předpona čísla Faktur."
913
+
914
+ #~ msgid "Leave blank to not add a prefix."
915
+ #~ msgstr "Nechte prázdné, pokud nechcete přidat příponu."
916
+
917
+ #~ msgid "Invoice Number Suffix"
918
+ #~ msgstr "Přípona čísla faktury"
919
+
920
+ #~ msgid "Leave blank to not add a suffix."
921
+ #~ msgstr "Nechte prázdné, pokud nechcete přidávat příponu."
922
+
923
+ #~ msgid "Invoice Number Counter"
924
+ #~ msgstr "Počítadlo Faktur"
925
+
926
+ #~ msgid "Reset Counter …"
927
+ #~ msgstr "Vynulovat počítadlo..."
928
+
929
+ #~ msgid "Sequential Order Number"
930
+ #~ msgstr "Postupné číslo Objednávky"
931
+
932
+ # @ woocommerce-delivery-notes
933
+ #~ msgid "Sequential numbering is enabled."
934
+ #~ msgstr "Postupné číslování je zapnuto."
935
+
936
+ # @ woocommerce-delivery-notes
937
+ #~ msgid ""
938
+ #~ "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
939
+ #~ "Numbers</a> Plugin."
940
+ #~ msgstr ""
941
+ #~ "Nainstalujte a aktivujte zdarma plugin <a href=\"%s\">WooCommerce "
942
+ #~ "Sequential Order Numbers</a>."
languages/woocommerce-delivery-notes-da_DK.mo CHANGED
Binary file
languages/woocommerce-delivery-notes-da_DK.po CHANGED
@@ -3,9 +3,10 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
6
- "Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
7
- "POT-Creation-Date: 2014-11-09 23:06+0100\n"
8
- "PO-Revision-Date: 2014-11-22 20:14+0100\n"
 
9
  "Last-Translator: Emil Stahl <emil@emilstahl.dk>\n"
10
  "Language-Team: \n"
11
  "Language: da_DK\n"
@@ -13,417 +14,896 @@ msgstr ""
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
16
- "X-Generator: Poedit 1.7beta2\n"
17
 
18
- #: ../includes/class-wcdn-settings.php:72
19
- msgid "Do you really want to reset the counter to zero?"
20
- msgstr "Vil du virkelig nulstille tælleren til nul?"
21
 
22
- #: ../includes/class-wcdn-settings.php:102 ../includes/class-wcdn-theme.php:55
23
- #: ../includes/class-wcdn-theme.php:90 ../includes/wcdn-template-functions.php:127
24
- msgid "Print"
25
- msgstr "Udskriv"
26
 
27
- #: ../includes/class-wcdn-settings.php:157
28
- msgid "Print Order"
29
- msgstr "Udskriv ordre"
30
 
31
- #: ../includes/class-wcdn-settings.php:176
32
- #, php-format
33
- msgid ""
34
- "You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target="
35
- "\"%4$s\" class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> "
36
- "template."
37
  msgstr ""
38
- "Du kan se et eksempel på <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">faktura</a>, <a href=\"%2$s\" "
39
- "target=\"%4$s\" class=\"%5$s\">følgeseddel</a> eller <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s"
40
- "\">kvittering</a> skabelonen."
41
 
42
- # @ woocommerce-delivery-notes
43
- #: ../includes/class-wcdn-settings.php:177
44
- msgid "With the FAQ in the readme file you can learn how to customize the template."
45
- msgstr "I readme-filen finder du en FAQ hvor du kan lære hvordan du tilpasser skabelonerne."
46
-
47
- #: ../includes/class-wcdn-settings.php:188
48
- msgid "Company/Shop Logo"
49
- msgstr "Firma/Shop Logo"
50
-
51
- #: ../includes/class-wcdn-settings.php:194
52
- msgid "Remove Logo"
53
- msgstr "Fjern Logo"
54
-
55
- #: ../includes/class-wcdn-settings.php:195
56
- msgid "Set Logo"
57
- msgstr "Indsæt Logo"
58
-
59
- #: ../includes/class-wcdn-settings.php:199
60
- msgid "A company/shop logo representing your business."
61
- msgstr "Et virksomhed/butik logo der repræsenterer din virksomhed."
62
-
63
- #: ../includes/class-wcdn-settings.php:200 ../includes/class-wcdn-settings.php:213
64
- #: ../includes/class-wcdn-settings.php:226 ../includes/class-wcdn-settings.php:239
65
- #: ../includes/class-wcdn-settings.php:252 ../includes/class-wcdn-settings.php:265
66
- #: ../includes/class-wcdn-settings.php:369 ../includes/class-wcdn-settings.php:384
67
- #: ../includes/class-wcdn-settings.php:399
68
- msgid "Note:"
69
- msgstr "Note:"
70
-
71
- #: ../includes/class-wcdn-settings.php:201
72
- msgid ""
73
- "When the image is printed, its pixel density will automatically be eight times higher than the original. "
74
- "This means, 1 printed inch will correspond to about 288 pixels on the screen. Example: an image with a "
75
- "width of 576 pixels and a height of 288 pixels will have a printed size of about 2 inches to 1 inch."
76
  msgstr ""
77
- "Når billedet udskrives, vil dens pixeltæthed automatisk være otte gange højere end den oprindelige. Dette "
78
- "betyder, at 1 cm papir er ca 113 pixels på skærmen. Eksempel: et billede med en bredde på 600 pixel og en "
79
- "højde på 400 pixels har en trykt størrelse på omkring 5,3 * 3,5 cm."
80
 
81
- #: ../includes/class-wcdn-settings.php:207
82
- msgid "Company/Shop Name"
83
- msgstr "Firme/Shop Navn"
84
 
85
- #: ../includes/class-wcdn-settings.php:212
86
- msgid "Your company/shop name for the Delivery Note."
87
- msgstr "Dit firma/shop navn til følgesedlen."
88
 
89
- #: ../includes/class-wcdn-settings.php:214
90
- msgid ""
91
- "Leave blank to use the default Website/Blog title defined in WordPress settings. The name will be ignored "
92
- "when a Logo is set."
93
  msgstr ""
94
- "Efterlad tom for at bruge standard-hjemmeside/blog titel defineret under WordPress-indstillinger.Navnet "
95
- "vil blive ignoreret, når et logo er valgt."
96
 
97
- #: ../includes/class-wcdn-settings.php:220
98
- msgid "Company/Shop Address"
99
- msgstr "Firma/Shop Adresse"
100
 
101
- #: ../includes/class-wcdn-settings.php:225
102
- msgid ""
103
- "The postal address of the company/shop or even e-mail or telephone, which gets printed right after the "
104
- "company/shop name."
105
- msgstr "Postadressen bliver trykt til højre for Firma/Shop navn, ovenover ordrelisten."
106
 
107
- #: ../includes/class-wcdn-settings.php:227
108
- msgid "Leave blank to not print an address."
109
- msgstr "Efterlad tomt for ikke at udskrive en adresse."
110
 
111
- #: ../includes/class-wcdn-settings.php:233
112
- msgid "Complimentary Close"
113
- msgstr "Personlig afslutning"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
114
 
115
- #: ../includes/class-wcdn-settings.php:238
 
 
 
 
 
 
 
 
116
  msgid ""
117
- "Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry "
118
- "Christmas!, etc.)."
119
  msgstr ""
120
- "Tilføj nogle personlige beskeder, eller lignende (f.eks Tak for din bestilling!, Glædelig Jul!, Osv.)."
121
 
122
- #: ../includes/class-wcdn-settings.php:240
123
- msgid "Leave blank to not print any personal notes."
124
- msgstr "Efterlad tomt for ikke at udskrive nogen personlige noter."
 
 
 
 
 
125
 
126
- #: ../includes/class-wcdn-settings.php:246
127
- msgid "Returns Policy, Conditions, etc"
128
- msgstr "Returpolitik, Salgsbetingelser mv:"
129
 
130
- #: ../includes/class-wcdn-settings.php:251
131
  msgid ""
132
- "Here you can add some more policies, conditions etc. For example add a returns policy in case the client "
133
- "would like to send back some goods. In some countries (e.g. in the European Union) this is required so "
134
- "please add any required info in accordance with the statutory regulations."
135
  msgstr ""
136
- "Her kan du tilføje vilkår mv. For eksempel tilføje en returpolitik i tilfælde af at kunden gerne vil sende "
137
- "varer tilbage. I nogle lande (f.eks i Den Europæiske Union) dette er påkrævet, så kan du tilføje alle "
138
- "nødvendige oplysninger i overensstemmelse med de lovmæssige bestemmelser."
139
 
140
- #: ../includes/class-wcdn-settings.php:253
141
- msgid "Leave blank to not print any policies or conditions."
142
- msgstr "Efterlad tomt for ikke at udskrive betingelser."
143
 
144
- #: ../includes/class-wcdn-settings.php:259
145
- msgid "Footer"
146
- msgstr "Sidefod"
 
 
 
 
 
 
 
147
 
148
- #: ../includes/class-wcdn-settings.php:264
149
  msgid ""
150
- "Add some further footer imprint, e-mail, telephone, copyright notes etc. This makes the printed sheets a "
151
- "bit more branded."
152
- msgstr "Tilføj nogle yderligere Footer imprints, ophavsret bemærkninger osv. "
 
 
 
 
 
 
 
 
153
 
154
- #: ../includes/class-wcdn-settings.php:266
155
- msgid "Leave blank to not print a footer."
156
- msgstr "Efterlad tomt for ikke at udskrive sidefod."
157
 
158
- #: ../includes/class-wcdn-settings.php:272
159
- msgid "Types"
160
- msgstr "Typer"
161
 
162
- #: ../includes/class-wcdn-settings.php:279
163
- msgid "Enable Invoices"
164
- msgstr "Aktiver fakturaer"
165
 
166
- #: ../includes/class-wcdn-settings.php:286
167
- msgid "Enable Delivery Notes"
168
- msgstr "Aktiver følgesedler"
169
 
170
- #: ../includes/class-wcdn-settings.php:293
171
- msgid "Enable Receipts"
172
- msgstr "Aktiver kvitteringer"
173
 
174
- #: ../includes/class-wcdn-settings.php:301
175
- msgid "Front-end Options"
176
- msgstr "Frontend indstillinger"
 
 
 
 
 
177
 
178
  # @ woocommerce-delivery-notes
179
- #: ../includes/class-wcdn-settings.php:306
180
  msgid "Print Page Endpoint"
181
  msgstr "Print-sidens slutpunkt"
182
 
183
  # @ woocommerce-delivery-notes
184
- #: ../includes/class-wcdn-settings.php:313
185
- msgid "The endpoint is appended to the accounts page URL to print the order. It should be unique."
186
- msgstr "Dette slutpunkt bliver tilføjet konto-sidens URL når der printes en ordre. Dette skal være unikt."
 
 
 
 
187
 
188
- #: ../includes/class-wcdn-settings.php:319
189
- msgid "Print Buttons"
190
- msgstr "Print-knapper"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
191
 
192
  # @ woocommerce-delivery-notes
193
- #: ../includes/class-wcdn-settings.php:326
194
  msgid "Show print button on the \"View Order\" page"
195
  msgstr "Vis print-knapper på \"Vis ordre\" -siden"
196
 
197
  # @ woocommerce-delivery-notes
198
- #: ../includes/class-wcdn-settings.php:333
199
  msgid "Show print buttons on the \"My Account\" page"
200
  msgstr "Vis print-knapperne by \"Min Konto\" -siden"
201
 
202
- #: ../includes/class-wcdn-settings.php:341
203
- msgid "Order Numbering"
204
- msgstr "Ordre nummerering"
205
-
206
- #: ../includes/class-wcdn-settings.php:346 ../includes/wcdn-template-functions.php:224
207
- msgid "Invoice Number"
208
- msgstr "Fakturanummer"
209
 
210
- #: ../includes/class-wcdn-settings.php:354
211
  msgid "Create invoice numbers"
212
  msgstr "Opret fakturerings-numre"
213
 
214
- #: ../includes/class-wcdn-settings.php:361
215
- msgid "Invoice Number Start"
216
- msgstr "Fakturerings-start nr."
217
-
218
- #: ../includes/class-wcdn-settings.php:368
219
- msgid "Start the numbering at the specified number."
220
- msgstr "Start faktureringen ved et specifikt nr."
221
 
222
- #: ../includes/class-wcdn-settings.php:370
223
- msgid "Use only integers."
224
- msgstr "Brug kun hele tal."
225
 
226
- #: ../includes/class-wcdn-settings.php:376
227
- msgid "Invoice Number Prefix"
228
- msgstr "Faktureringsnummer præfiks"
229
 
230
- #: ../includes/class-wcdn-settings.php:383
231
  msgid "This text will be prepended to the invoice number."
232
  msgstr "Denne tekst vil blive sat foran faktureringsnummeret."
233
 
234
- #: ../includes/class-wcdn-settings.php:385
235
- msgid "Leave blank to not add a prefix."
236
- msgstr "Efterlad tomt for ikke at tilføje et præfiks."
237
-
238
- #: ../includes/class-wcdn-settings.php:391
239
- msgid "Invoice Number Suffix"
240
- msgstr "Faktureringsnummer suffiks"
241
 
242
- #: ../includes/class-wcdn-settings.php:398
243
  msgid "This text will be appended to the invoice number."
244
  msgstr "Denne tekst vil blive sat bagefter faktureringsnummeret."
245
 
246
- #: ../includes/class-wcdn-settings.php:400
247
- msgid "Leave blank to not add a suffix."
248
- msgstr "Efterlad tomt for ikke at tilføje et suffix."
249
-
250
- #: ../includes/class-wcdn-settings.php:406
251
- msgid "Invoice Number Counter"
252
- msgstr "Fakturanummer tæller"
253
-
254
- #: ../includes/class-wcdn-settings.php:415
255
- msgid "Reset Counter"
256
- msgstr "Nulstil tæller"
257
 
258
- #: ../includes/class-wcdn-settings.php:421
259
- msgid "Sequential Order Number"
260
- msgstr "Sekventiel ordrenummer"
 
 
261
 
262
- #: ../includes/class-wcdn-settings.php:426
263
- msgid "Sequential numbering is enabled."
264
- msgstr "Sekventiel ordrenummer er aktiveret"
 
 
 
 
265
 
266
- #: ../includes/class-wcdn-settings.php:428
267
- #, php-format
268
- msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
269
- msgstr "Installer og aktiver den gratis <a href=\"%s\">WooCommerce Sekventil ordrenummer</ a>Plugin."
270
 
271
- #: ../includes/class-wcdn-writepanel.php:101 ../includes/class-wcdn-writepanel.php:102
272
- #: ../includes/class-wcdn-writepanel.php:135 ../includes/class-wcdn-writepanel.php:136
273
- #: ../includes/class-wcdn-writepanel.php:267
274
- msgid "Print Invoice"
275
- msgstr "Udskriv faktura"
276
 
277
- #: ../includes/class-wcdn-writepanel.php:107 ../includes/class-wcdn-writepanel.php:108
278
- #: ../includes/class-wcdn-writepanel.php:140 ../includes/class-wcdn-writepanel.php:141
279
- #: ../includes/class-wcdn-writepanel.php:271
280
- msgid "Print Delivery Note"
281
- msgstr "Udskriv følgeseddel"
282
 
283
- #: ../includes/class-wcdn-writepanel.php:113 ../includes/class-wcdn-writepanel.php:114
284
- #: ../includes/class-wcdn-writepanel.php:145 ../includes/class-wcdn-writepanel.php:146
285
- #: ../includes/class-wcdn-writepanel.php:275
286
- msgid "Print Receipt"
287
- msgstr "Udskriv kvittering"
288
 
289
- #: ../includes/class-wcdn-writepanel.php:237
290
- #, php-format
291
- msgid "Invoice created."
292
- msgid_plural "%s invoices created."
293
- msgstr[0] "Faktura oprettet."
294
- msgstr[1] "%s fakturaer er oprettet."
295
-
296
- #: ../includes/class-wcdn-writepanel.php:239
297
- #, php-format
298
- msgid "Delivery note created."
299
- msgid_plural "%s delivery notes created."
300
- msgstr[0] "Følgeseddel oprettet."
301
- msgstr[1] "%s følgesedler oprettet."
302
-
303
- #: ../includes/class-wcdn-writepanel.php:241
304
- #, php-format
305
- msgid "Receipt created."
306
- msgid_plural "%s receipts created."
307
- msgstr[0] "Kvittering oprettet."
308
- msgstr[1] "%s kvitteringer er oprettet."
309
 
310
- #: ../includes/class-wcdn-writepanel.php:245
311
  msgid "Print now"
312
  msgstr "Udskriv nu"
313
 
314
- #: ../includes/class-wcdn-writepanel.php:256
315
  msgid "Order Printing"
316
  msgstr "Ordre udskrivning"
317
 
318
- #: ../includes/class-wcdn-writepanel.php:288
319
  msgid "Invoice number: "
320
  msgstr "Fakturanummer:"
321
 
322
- #: ../includes/class-wcdn-writepanel.php:289
323
  msgid "Invoice date: "
324
  msgstr "Faktura dato:"
325
 
326
- #: ../includes/wcdn-template-functions.php:39
327
- msgid "Invoice"
328
- msgstr "Faktura"
329
 
330
- #: ../includes/wcdn-template-functions.php:41
331
- msgid "Delivery Note"
332
- msgstr "Følgeseddel"
333
 
334
- #: ../includes/wcdn-template-functions.php:43
335
- msgid "Receipt"
336
- msgstr "Kvittering"
337
 
338
- #: ../includes/wcdn-template-functions.php:45
339
- msgid "Order"
340
- msgstr "Ordre"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
341
 
342
- #: ../includes/wcdn-template-functions.php:230
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
343
  msgid "Order Number"
344
  msgstr "Ordrenummer"
345
 
346
- #: ../includes/wcdn-template-functions.php:235
347
  msgid "Order Date"
348
  msgstr "Ordre dato"
349
 
350
- #: ../includes/wcdn-template-functions.php:240
351
  msgid "Payment Method"
352
  msgstr "Betalingsmetode"
353
 
354
  # @ woocommerce-delivery-notes
355
- #: ../includes/wcdn-template-functions.php:246
356
- msgid "Email"
357
- msgstr "E-mail"
358
-
359
- # @ woocommerce-delivery-notes
360
- #: ../includes/wcdn-template-functions.php:253
361
  msgid "Telephone"
362
  msgstr "Telefon"
363
 
364
- #: ../includes/wcdn-template-functions.php:286
365
  msgid "SKU:"
366
  msgstr "SKU:"
367
 
368
- #: ../templates/print-order/print-content.php:28
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
369
  msgid "Billing Address"
370
  msgstr "Faktureringsadresse"
371
 
372
- #: ../templates/print-order/print-content.php:31 ../templates/print-order/print-content.php:40
 
373
  msgid "N/A"
374
  msgstr "N/A"
375
 
376
- #: ../templates/print-order/print-content.php:37
377
  msgid "Shipping Address"
378
  msgstr "Leveringsadresse"
379
 
380
- #: ../templates/print-order/print-content.php:70
381
  msgid "Product"
382
  msgstr "Produkt"
383
 
384
- #: ../templates/print-order/print-content.php:71
385
  msgid "Price"
386
  msgstr "Pris"
387
 
388
- #: ../templates/print-order/print-content.php:72
389
  msgid "Quantity"
390
  msgstr "Antal"
391
 
392
- #: ../templates/print-order/print-content.php:73
393
  msgid "Total"
394
  msgstr "Total"
395
 
396
- #: ../templates/print-order/print-content.php:97
397
  msgid "Download:"
398
  msgstr "Download:"
399
 
400
  # @ woocommerce-delivery-notes
401
- #: ../templates/print-order/print-content.php:98
402
- #, php-format
403
  msgid "%s Files"
404
  msgstr "%s filer"
405
 
406
- #: ../templates/print-order/print-content.php:149
407
  msgid "Customer Note"
408
  msgstr "Kundebemærkninger"
409
 
410
- #: ../woocommerce-delivery-notes.php:180
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
411
  msgid "Go to the settings page"
412
  msgstr "Gå til indstillinger"
413
 
414
- #: ../woocommerce-delivery-notes.php:180
415
  msgid "Settings"
416
  msgstr "Indstillinger"
417
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
418
  #~ msgid "Already created invoice numbers are not affected by changes."
419
- #~ msgstr "Allerede oprettede faktureringsnumre er ikke påvirket af ændringerne"
 
420
 
421
  #~ msgid ""
422
- #~ "For more advanced control copy <code>woocommerce-delivery-notes/templates/print/style.css</code> to "
423
- #~ "<code>your-theme-name/woocommerce/print/style.css</code>."
 
424
  #~ msgstr ""
425
- #~ "For mere avanceret kontrol, kopier <code>woocommerce-delivery-notes/templates/print-order/style.css</"
426
- #~ "code> til <code>dit-tema/woocommerce/print-order/style.css</code>."
 
427
 
428
  #~ msgid "2.0"
429
  #~ msgstr "2.0"
@@ -480,34 +960,42 @@ msgstr "Indstillinger"
480
  #~ msgstr "WooCommerce Udskriver Faktura og Følgeseddel"
481
 
482
  #~ msgid ""
483
- #~ "Print order invoices & delivery notes for WooCommerce shop plugin. You can add company/shop info as "
484
- #~ "well as personal notes & policies to print pages."
 
485
  #~ msgstr ""
486
- #~ "Udskriv ordrer, fakturaer og følgesedler for WooCommerce butik plugin. Du kan tilføje firma/shop info "
487
- #~ "samt personlige noter og politikker til de udskrivne sider."
 
488
 
489
  #~ msgid "Steve Clark, Triggvy Gunderson, David Decker"
490
  #~ msgstr "Steve Clark, Triggvy Gunderson, David Decker"
491
 
492
  #~ msgid ""
493
- #~ "This plugin enables you to add a Invoice or simple Delivery Note page for printing for your orders in "
494
- #~ "WooCommerce shop plugin. You can add your company postal address, further add personal notes, refund or "
495
- #~ "other policies and a footer note/branding. This helps speed up your daily shop and order management. In "
496
- #~ "some countries (e.g. in the European Union) it is also required to advice the customer with proper "
497
- #~ "refund policies so this little plugin might help you a bit with that too."
 
 
498
  #~ msgstr ""
499
- #~ "Dette plugin giver dig mulighed for at tilføje en Faktura eller Leveringsbetingelse til udskrift af "
500
- #~ "dine ordre i WooCommerce shop plugin. Du kan tilføje dit firma's post-adresse og andre personlige "
501
- #~ "meddelelser, politik om refundering og andet, fodnoter og andet. Dette kan hjælpe dig i den daglige "
502
- #~ "administration af din shop. \n"
503
- #~ "I nogle lande (f.eks i Den Europæiske Union) er det også nødvendigt at rådgive kunden med rette "
504
- #~ "tilbagebetaling politikker, det kan denne lille plugin også hjælpe dig med."
 
 
505
 
506
  #~ msgid ""
507
- #~ "Just look under <a href=\"%1$s\">WooCommerce > Orders</a> and there go to a single order view. On the "
508
- #~ "right side you will see the Order Print meta box. Click one of the buttons and you get the invoice or "
509
- #~ "delivery note printing page. Yes, it is that easy :-)."
 
510
  #~ msgstr ""
511
- #~ "Se under <a href=\"%1$s\"> WooCommerce> Ordrer </ a>, og derfra gå til den enkelte ordre udsigt. På "
512
- #~ "højre side vil du se Udskriv Ordrer meta boks. Klik på en af knapperne, og du får en faktura eller "
513
- #~ "følgeseddel udskrivning side. Ja, det er faktisk let :-)."
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/woocommerce-"
7
+ "delivery-notes\n"
8
+ "POT-Creation-Date: 2018-10-22 18:56+0530\n"
9
+ "PO-Revision-Date: 2018-10-22 18:57+0530\n"
10
  "Last-Translator: Emil Stahl <emil@emilstahl.dk>\n"
11
  "Language-Team: \n"
12
  "Language: da_DK\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
+ "X-Generator: Poedit 1.8.7.1\n"
18
 
19
+ #: includes/class-wcdn-print.php:39 includes/class-wcdn-settings.php:237
20
+ msgid "Invoice"
21
+ msgstr "Faktura"
22
 
23
+ #: includes/class-wcdn-print.php:40
24
+ msgid "Invoices"
25
+ msgstr ""
 
26
 
27
+ #: includes/class-wcdn-print.php:41
28
+ msgid "Print Invoice"
29
+ msgstr "Udskriv faktura"
30
 
31
+ #: includes/class-wcdn-print.php:42
32
+ msgid "Print Invoices"
 
 
 
 
33
  msgstr ""
 
 
 
34
 
35
+ #: includes/class-wcdn-print.php:43
36
+ #, fuzzy
37
+ msgid "Invoice created."
38
+ msgstr "Faktura oprettet."
39
+
40
+ #: includes/class-wcdn-print.php:44
41
+ msgid "Invoices created."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  msgstr ""
 
 
 
43
 
44
+ #: includes/class-wcdn-print.php:45
45
+ msgid "Show \"Print Invoice\" button"
46
+ msgstr ""
47
 
48
+ #: includes/class-wcdn-print.php:51
49
+ msgid "Delivery Note"
50
+ msgstr "Følgeseddel"
51
 
52
+ #: includes/class-wcdn-print.php:52
53
+ msgid "Delivery Notes"
 
 
54
  msgstr ""
 
 
55
 
56
+ #: includes/class-wcdn-print.php:53
57
+ msgid "Print Delivery Note"
58
+ msgstr "Udskriv følgeseddel"
59
 
60
+ #: includes/class-wcdn-print.php:54
61
+ msgid "Print Delivery Notes"
62
+ msgstr ""
 
 
63
 
64
+ #: includes/class-wcdn-print.php:55
65
+ msgid "Delivery Note created."
66
+ msgstr ""
67
 
68
+ #: includes/class-wcdn-print.php:56
69
+ msgid "Delivery Notes created."
70
+ msgstr ""
71
+
72
+ #: includes/class-wcdn-print.php:57
73
+ msgid "Show \"Print Delivery Note\" button"
74
+ msgstr ""
75
+
76
+ #: includes/class-wcdn-print.php:63
77
+ msgid "Receipt"
78
+ msgstr "Kvittering"
79
+
80
+ #: includes/class-wcdn-print.php:64
81
+ msgid "Receipts"
82
+ msgstr ""
83
+
84
+ #: includes/class-wcdn-print.php:65
85
+ msgid "Print Receipt"
86
+ msgstr "Udskriv kvittering"
87
+
88
+ #: includes/class-wcdn-print.php:66
89
+ msgid "Print Receipts"
90
+ msgstr ""
91
+
92
+ #: includes/class-wcdn-print.php:67
93
+ #, fuzzy
94
+ msgid "Receipt created."
95
+ msgstr "Kvittering oprettet."
96
+
97
+ #: includes/class-wcdn-print.php:68
98
+ msgid "Receipts created."
99
+ msgstr ""
100
+
101
+ #: includes/class-wcdn-print.php:69
102
+ msgid "Show \"Print Receipt\" button"
103
+ msgstr ""
104
+
105
+ #: includes/class-wcdn-print.php:78
106
+ msgid "Order"
107
+ msgstr "Ordre"
108
+
109
+ #: includes/class-wcdn-print.php:79
110
+ msgid "Orders"
111
+ msgstr ""
112
+
113
+ #: includes/class-wcdn-print.php:80
114
+ msgid "Print Order"
115
+ msgstr "Udskriv ordre"
116
 
117
+ #: includes/class-wcdn-print.php:81
118
+ msgid "Print Orders"
119
+ msgstr ""
120
+
121
+ #: includes/class-wcdn-print.php:93
122
+ msgid "Default"
123
+ msgstr ""
124
+
125
+ #: includes/class-wcdn-settings.php:67
126
  msgid ""
127
+ "Do you really want to reset the counter to zero? This process can't be "
128
+ "undone."
129
  msgstr ""
 
130
 
131
+ #: includes/class-wcdn-settings.php:75 includes/class-wcdn-theme.php:57
132
+ #: includes/class-wcdn-theme.php:94 includes/wcdn-template-functions.php:130
133
+ msgid "Print"
134
+ msgstr "Udskriv"
135
+
136
+ #: includes/class-wcdn-settings.php:106
137
+ msgid "Template"
138
+ msgstr ""
139
 
140
+ #: includes/class-wcdn-settings.php:113
141
+ msgid "Style"
142
+ msgstr ""
143
 
144
+ #: includes/class-wcdn-settings.php:114
145
  msgid ""
146
+ "The default print style. Read the <a href=\"%1$s\">FAQ</a> to learn how to "
147
+ "customize it."
 
148
  msgstr ""
 
 
 
149
 
150
+ #: includes/class-wcdn-settings.php:124
151
+ msgid "Shop Logo"
152
+ msgstr ""
153
 
154
+ #: includes/class-wcdn-settings.php:130
155
+ msgid ""
156
+ "A shop logo representing your business. When the image is printed, its pixel "
157
+ "density will automatically be eight times higher than the original. This "
158
+ "means, 1 printed inch will correspond to about 288 pixels on the screen."
159
+ msgstr ""
160
+
161
+ #: includes/class-wcdn-settings.php:134
162
+ msgid "Shop Name"
163
+ msgstr ""
164
 
165
+ #: includes/class-wcdn-settings.php:140
166
  msgid ""
167
+ "The shop name. Leave blank to use the default Website or Blog title defined "
168
+ "in WordPress settings. The name will be ignored when a Logo is set."
169
+ msgstr ""
170
+
171
+ #: includes/class-wcdn-settings.php:144
172
+ msgid "Shop Address"
173
+ msgstr ""
174
+
175
+ #: includes/class-wcdn-settings.php:145
176
+ msgid "The postal address of the shop or even e-mail or telephone."
177
+ msgstr ""
178
 
179
+ #: includes/class-wcdn-settings.php:154
180
+ msgid "Complimentary Close"
181
+ msgstr "Personlig afslutning"
182
 
183
+ #: includes/class-wcdn-settings.php:155
184
+ msgid "Add a personal close, notes or season greetings."
185
+ msgstr ""
186
 
187
+ #: includes/class-wcdn-settings.php:164
188
+ msgid "Policies"
189
+ msgstr ""
190
 
191
+ #: includes/class-wcdn-settings.php:165
192
+ msgid "Add the shop policies, conditions, etc."
193
+ msgstr ""
194
 
195
+ #: includes/class-wcdn-settings.php:174
196
+ msgid "Footer"
197
+ msgstr "Sidefod"
198
 
199
+ #: includes/class-wcdn-settings.php:175
200
+ msgid ""
201
+ "Add a footer imprint, instructions, copyright notes, e-mail, telephone, etc."
202
+ msgstr ""
203
+
204
+ #: includes/class-wcdn-settings.php:189
205
+ msgid "Pages & Buttons"
206
+ msgstr ""
207
 
208
  # @ woocommerce-delivery-notes
209
+ #: includes/class-wcdn-settings.php:196
210
  msgid "Print Page Endpoint"
211
  msgstr "Print-sidens slutpunkt"
212
 
213
  # @ woocommerce-delivery-notes
214
+ #: includes/class-wcdn-settings.php:202
215
+ msgid ""
216
+ "The endpoint is appended to the accounts page URL to print the order. It "
217
+ "should be unique."
218
+ msgstr ""
219
+ "Dette slutpunkt bliver tilføjet på konto-sidens URL når der printes en "
220
+ "ordre. Dette skal være unikt."
221
 
222
+ # @ woocommerce-delivery-notes
223
+ #: includes/class-wcdn-settings.php:206
224
+ #: includes/wcdn-template-functions.php:275
225
+ msgid "Email"
226
+ msgstr "E-mail"
227
+
228
+ #: includes/class-wcdn-settings.php:207
229
+ msgid "Show print link in customer emails"
230
+ msgstr ""
231
+
232
+ #: includes/class-wcdn-settings.php:211
233
+ msgid ""
234
+ "This includes the emails for a new, processing and completed order. On top "
235
+ "of that the customer invoice email also includes the link."
236
+ msgstr ""
237
+
238
+ #: includes/class-wcdn-settings.php:215
239
+ msgid "My Account"
240
+ msgstr ""
241
 
242
  # @ woocommerce-delivery-notes
243
+ #: includes/class-wcdn-settings.php:216
244
  msgid "Show print button on the \"View Order\" page"
245
  msgstr "Vis print-knapper på \"Vis ordre\" -siden"
246
 
247
  # @ woocommerce-delivery-notes
248
+ #: includes/class-wcdn-settings.php:224
249
  msgid "Show print buttons on the \"My Account\" page"
250
  msgstr "Vis print-knapperne by \"Min Konto\" -siden"
251
 
252
+ #: includes/class-wcdn-settings.php:244
253
+ msgid "Numbering"
254
+ msgstr ""
 
 
 
 
255
 
256
+ #: includes/class-wcdn-settings.php:245
257
  msgid "Create invoice numbers"
258
  msgstr "Opret fakturerings-numre"
259
 
260
+ #: includes/class-wcdn-settings.php:253
261
+ msgid "Next Number"
262
+ msgstr ""
 
 
 
 
263
 
264
+ #: includes/class-wcdn-settings.php:260
265
+ msgid "The next invoice number."
266
+ msgstr ""
267
 
268
+ #: includes/class-wcdn-settings.php:264
269
+ msgid "Number Prefix"
270
+ msgstr ""
271
 
272
+ #: includes/class-wcdn-settings.php:271
273
  msgid "This text will be prepended to the invoice number."
274
  msgstr "Denne tekst vil blive sat foran faktureringsnummeret."
275
 
276
+ #: includes/class-wcdn-settings.php:275
277
+ msgid "Number Suffix"
278
+ msgstr ""
 
 
 
 
279
 
280
+ #: includes/class-wcdn-settings.php:282
281
  msgid "This text will be appended to the invoice number."
282
  msgstr "Denne tekst vil blive sat bagefter faktureringsnummeret."
283
 
284
+ #: includes/class-wcdn-settings.php:327
285
+ msgid "Admin"
286
+ msgstr ""
 
 
 
 
 
 
 
 
287
 
288
+ #: includes/class-wcdn-settings.php:330
289
+ msgid ""
290
+ "The print buttons are available on the order listing and on the order detail "
291
+ "screen."
292
+ msgstr ""
293
 
294
+ #: includes/class-wcdn-settings.php:372
295
+ msgid ""
296
+ "This section lets you customise the content. You can preview the <a href="
297
+ "\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target="
298
+ "\"%4$s\" class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s"
299
+ "\" class=\"%5$s\">receipt</a> template."
300
+ msgstr ""
301
 
302
+ #: includes/class-wcdn-settings.php:435
303
+ msgid "Select"
304
+ msgstr ""
 
305
 
306
+ #: includes/class-wcdn-settings.php:439
307
+ msgid "Remove"
308
+ msgstr ""
 
 
309
 
310
+ #: includes/class-wcdn-theme.php:112
311
+ msgid "Print your order"
312
+ msgstr ""
 
 
313
 
314
+ #: includes/class-wcdn-theme.php:119
315
+ msgid "Print:"
316
+ msgstr ""
 
 
317
 
318
+ #: includes/class-wcdn-theme.php:119
319
+ msgid "Open print view in browser"
320
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
321
 
322
+ #: includes/class-wcdn-writepanel.php:218
323
  msgid "Print now"
324
  msgstr "Udskriv nu"
325
 
326
+ #: includes/class-wcdn-writepanel.php:232
327
  msgid "Order Printing"
328
  msgstr "Ordre udskrivning"
329
 
330
+ #: includes/class-wcdn-writepanel.php:259
331
  msgid "Invoice number: "
332
  msgstr "Fakturanummer:"
333
 
334
+ #: includes/class-wcdn-writepanel.php:260
335
  msgid "Invoice date: "
336
  msgstr "Faktura dato:"
337
 
338
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:75
339
+ msgid "If you have a moment, please let us know why you are deactivating"
340
+ msgstr ""
341
 
342
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:76
343
+ msgid "Submit & Deactivate"
344
+ msgstr ""
345
 
346
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:77
347
+ msgid "Deactivate"
348
+ msgstr ""
349
 
350
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:78
351
+ msgid "Cancel"
352
+ msgstr ""
353
+
354
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:79
355
+ msgid "Yes - Deactivate"
356
+ msgstr ""
357
+
358
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:83
359
+ msgid "I found a better plugin"
360
+ msgstr ""
361
+
362
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:84
363
+ msgid "What's the plugin's name?"
364
+ msgstr ""
365
+
366
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:85
367
+ msgid "I only needed the plugin for a short period"
368
+ msgstr ""
369
+
370
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:86
371
+ msgid "The plugin is not working"
372
+ msgstr ""
373
+
374
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:87
375
+ msgid "Kindly share what didn't work so we can fix it for future users..."
376
+ msgstr ""
377
+
378
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:88
379
+ msgid "The plugin is great, but I need specific feature that you don't support"
380
+ msgstr ""
381
+
382
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:89
383
+ msgid "What feature?"
384
+ msgstr ""
385
+
386
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:90
387
+ msgid "I don't like to share my information with you"
388
+ msgstr ""
389
+
390
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:91
391
+ msgctxt ""
392
+ "the text of the 'other' reason for deactivating the plugin that is shown in "
393
+ "the modal box."
394
+ msgid "Other"
395
+ msgstr ""
396
 
397
+ #: includes/component/faq-support/ts-faq-support.php:127
398
+ msgid "Frequently Asked Questions for %s"
399
+ msgstr ""
400
+
401
+ #: includes/component/faq-support/ts-faq-support.php:176
402
+ msgid "FAQ & Support"
403
+ msgstr ""
404
+
405
+ #: includes/component/tracking-data/ts-tracking.php:120
406
+ #: includes/component/tracking-data/ts-tracking.php:180
407
+ msgid "Reset usage tracking"
408
+ msgstr ""
409
+
410
+ #: includes/component/tracking-data/ts-tracking.php:122
411
+ msgid ""
412
+ "This will reset your usage tracking settings, causing it to show the opt-in "
413
+ "banner again and not sending any data"
414
+ msgstr ""
415
+
416
+ #: includes/component/tracking-data/ts-tracking.php:225
417
+ msgid "Once in a Week"
418
+ msgstr ""
419
+
420
+ #: includes/component/tracking-data/ts-tracking.php:311
421
+ msgid "Allow"
422
+ msgstr ""
423
+
424
+ #: includes/component/tracking-data/ts-tracking.php:312
425
+ msgid "No thanks"
426
+ msgstr ""
427
+
428
+ #: includes/component/welcome-page/templates/social-media-elements.php:10
429
+ #: includes/wcdn-welcome.php:231
430
+ msgid "Follow %s"
431
+ msgstr ""
432
+
433
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:19
434
+ #: includes/wcdn-welcome.php:99
435
+ msgid ""
436
+ "Thank you for activating or updating to the latest version of WooCommerce "
437
+ "Print Invoice & Delivery Note! If you're a first time user, welcome! You're "
438
+ "well on your way to explore the print functionality for your WooCommerce "
439
+ "orders."
440
+ msgstr ""
441
+
442
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:29
443
+ #: includes/wcdn-welcome.php:109
444
+ msgid "Get Started with WooCommerce Print Invoice & Delivery Note"
445
+ msgstr ""
446
+
447
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:33
448
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:62
449
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:68
450
+ #: includes/wcdn-welcome.php:113 includes/wcdn-welcome.php:142
451
+ #: includes/wcdn-welcome.php:148
452
+ msgid "WooCommerce Print Invoice & Delivery Note"
453
+ msgstr ""
454
+
455
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:37
456
+ #: includes/wcdn-welcome.php:117
457
+ msgid "Add settings"
458
+ msgstr ""
459
+
460
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:39
461
+ #: includes/wcdn-welcome.php:119
462
+ msgid ""
463
+ "To enable the print functionality for your invoices, delivery notes & "
464
+ "receipts, you just need to set it up under WooCommerce -> Settings -> Print "
465
+ "page. Here you can also setup the Company Logo that will appear on the "
466
+ "printed items, Company Address & other information."
467
+ msgstr ""
468
+
469
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:41
470
+ #: includes/wcdn-welcome.php:121
471
+ msgid "Click Here to go to Print page"
472
+ msgstr ""
473
+
474
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:52
475
+ #: includes/wcdn-welcome.php:132
476
+ msgid "Enable Print button for Customers."
477
+ msgstr ""
478
+
479
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:54
480
+ #: includes/wcdn-welcome.php:134
481
+ msgid ""
482
+ "Allow customers to print the WooCommerce order invoice from the customer "
483
+ "notification email, from the My Account page or from the View Order page "
484
+ "under My Account."
485
+ msgstr ""
486
+
487
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:56
488
+ #: includes/wcdn-welcome.php:136
489
+ msgid "Click Here to Enable Print button for Customers"
490
+ msgstr ""
491
+
492
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:72
493
+ #: includes/wcdn-welcome.php:152
494
+ msgid "Enable Invoice Numbering"
495
+ msgstr ""
496
+
497
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:74
498
+ msgid ""
499
+ "If you want to change the default invoice numbers & set some numbering "
500
+ "scheme of your own, then you can set it here with a starting invoice number, "
501
+ "a prefix & suffix. For example, you could set it as: TS/001/17-18."
502
+ msgstr ""
503
+
504
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:76
505
+ #: includes/wcdn-welcome.php:156
506
+ msgid "Click Here to Enable Invoice Numbering"
507
+ msgstr ""
508
+
509
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:87
510
+ #: includes/wcdn-welcome.php:167
511
+ msgid "Getting to Know Tyche Softwares"
512
+ msgstr ""
513
+
514
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:90
515
+ #: includes/wcdn-welcome.php:170
516
+ msgid "Visit the Tyche Softwares Website"
517
+ msgstr ""
518
+
519
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:91
520
+ #: includes/wcdn-welcome.php:171
521
+ msgid "View all Premium Plugins"
522
+ msgstr ""
523
+
524
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:100
525
+ #: includes/wcdn-welcome.php:180
526
+ msgid "Meet the team"
527
+ msgstr ""
528
+
529
+ #: includes/component/welcome-page/ts-welcome.php:167
530
+ msgid "Welcome to %s %s"
531
+ msgstr ""
532
+
533
+ #: includes/wcdn-all-component.php:118
534
+ msgid ""
535
+ "Thank you for using WooCommerce Print Invoice & Delivery Note plugin! Now "
536
+ "make your deliveries more accurate by allowing customers to select their "
537
+ "preferred delivery date & time from Product Delivery Date Pro for "
538
+ "WooCommerce. <strong><a target=\"_blank\" href= \"https://www.tychesoftwares."
539
+ "com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/?"
540
+ "utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">Get "
541
+ "it now!</a></strong>"
542
+ msgstr ""
543
+
544
+ #: includes/wcdn-all-component.php:120
545
+ msgid ""
546
+ "Never login to your admin to check your deliveries by syncing the delivery "
547
+ "dates to the Google Calendar from Product Delivery Date Pro for WooCommerce. "
548
+ "<strong><a target=\"_blank\" href= \"https://www.tychesoftwares.com/store/"
549
+ "premium-plugins/product-delivery-date-pro-for-woocommerce/checkout?"
550
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
551
+ "\">Get it now!</a></strong>"
552
+ msgstr ""
553
+
554
+ #: includes/wcdn-all-component.php:122
555
+ msgid ""
556
+ "You can now view all your deliveries in list view or in calendar view from "
557
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
558
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
559
+ "delivery-date-pro-for-woocommerce/checkout?"
560
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
561
+ "\">Get it now!</a></strong>."
562
+ msgstr ""
563
+
564
+ #: includes/wcdn-all-component.php:124
565
+ msgid ""
566
+ "Allow your customers to pay extra for delivery for certain Weekdays/Dates "
567
+ "from Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
568
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
569
+ "delivery-date-pro-for-woocommerce/checkout?"
570
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
571
+ "\">Have it now!</a></strong>."
572
+ msgstr ""
573
+
574
+ #: includes/wcdn-all-component.php:126
575
+ msgid ""
576
+ "Customers can now edit the Delivery date & time on cart and checkout page or "
577
+ "they can reschedule the deliveries for the already placed orders from "
578
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
579
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
580
+ "delivery-date-pro-for-woocommerce/checkout?"
581
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
582
+ "\">Have it now!</a></strong>."
583
+ msgstr ""
584
+
585
+ #: includes/wcdn-template-functions.php:246
586
+ msgid "Invoice Number"
587
+ msgstr "Fakturanummer"
588
+
589
+ #: includes/wcdn-template-functions.php:253
590
+ msgid "Invoice Date"
591
+ msgstr ""
592
+
593
+ #: includes/wcdn-template-functions.php:259
594
  msgid "Order Number"
595
  msgstr "Ordrenummer"
596
 
597
+ #: includes/wcdn-template-functions.php:264
598
  msgid "Order Date"
599
  msgstr "Ordre dato"
600
 
601
+ #: includes/wcdn-template-functions.php:269
602
  msgid "Payment Method"
603
  msgstr "Betalingsmetode"
604
 
605
  # @ woocommerce-delivery-notes
606
+ #: includes/wcdn-template-functions.php:282
 
 
 
 
 
607
  msgid "Telephone"
608
  msgstr "Telefon"
609
 
610
+ #: includes/wcdn-template-functions.php:315
611
  msgid "SKU:"
612
  msgstr "SKU:"
613
 
614
+ #: includes/wcdn-template-functions.php:409
615
+ #: includes/wcdn-template-functions.php:413
616
+ msgid "(Includes %s)"
617
+ msgstr ""
618
+
619
+ #: includes/wcdn-template-functions.php:429
620
+ msgid "Refund"
621
+ msgstr ""
622
+
623
+ #: includes/wcdn-template-functions.php:441
624
+ msgid "Order Subtotal"
625
+ msgstr ""
626
+
627
+ #: includes/wcdn-welcome.php:54
628
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note %s"
629
+ msgstr ""
630
+
631
+ #: includes/wcdn-welcome.php:55
632
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note"
633
+ msgstr ""
634
+
635
+ #: includes/wcdn-welcome.php:154
636
+ msgid ""
637
+ "f you want to change the default invoice numbers & set some numbering scheme "
638
+ "of your own, then you can set it here with a starting invoice number, a "
639
+ "prefix & suffix. For example, you could set it as: TS/001/17-18."
640
+ msgstr ""
641
+
642
+ #: includes/wcdn-welcome.php:186
643
+ msgid "Current Offers"
644
+ msgstr ""
645
+
646
+ #: templates/print-order/print-content.php:28
647
  msgid "Billing Address"
648
  msgstr "Faktureringsadresse"
649
 
650
+ #: templates/print-order/print-content.php:31
651
+ #: templates/print-order/print-content.php:40
652
  msgid "N/A"
653
  msgstr "N/A"
654
 
655
+ #: templates/print-order/print-content.php:37
656
  msgid "Shipping Address"
657
  msgstr "Leveringsadresse"
658
 
659
+ #: templates/print-order/print-content.php:71
660
  msgid "Product"
661
  msgstr "Produkt"
662
 
663
+ #: templates/print-order/print-content.php:72
664
  msgid "Price"
665
  msgstr "Pris"
666
 
667
+ #: templates/print-order/print-content.php:73
668
  msgid "Quantity"
669
  msgstr "Antal"
670
 
671
+ #: templates/print-order/print-content.php:74
672
  msgid "Total"
673
  msgstr "Total"
674
 
675
+ #: templates/print-order/print-content.php:147
676
  msgid "Download:"
677
  msgstr "Download:"
678
 
679
  # @ woocommerce-delivery-notes
680
+ #: templates/print-order/print-content.php:148
 
681
  msgid "%s Files"
682
  msgstr "%s filer"
683
 
684
+ #: templates/print-order/print-content.php:202
685
  msgid "Customer Note"
686
  msgstr "Kundebemærkninger"
687
 
688
+ #: woocommerce-delivery-notes.php:96 woocommerce-delivery-notes.php:103
689
+ msgid "Cheatin&#8217; huh?"
690
+ msgstr ""
691
+
692
+ #: woocommerce-delivery-notes.php:275
693
+ msgid ""
694
+ "I can't differentiate between Invoice, Delivery Notes & Receipt. The "
695
+ "templates are the same. "
696
+ msgstr ""
697
+
698
+ #: woocommerce-delivery-notes.php:281
699
+ msgid "The invoice sent through mail can't be downloaded as PDF directly."
700
+ msgstr ""
701
+
702
+ #: woocommerce-delivery-notes.php:287
703
+ msgid "The plugin is not compatible with another plugin."
704
+ msgstr ""
705
+
706
+ #: woocommerce-delivery-notes.php:293
707
+ msgid "This plugin is not useful to me."
708
+ msgstr ""
709
+
710
+ #: woocommerce-delivery-notes.php:351
711
  msgid "Go to the settings page"
712
  msgstr "Gå til indstillinger"
713
 
714
+ #: woocommerce-delivery-notes.php:351
715
  msgid "Settings"
716
  msgstr "Indstillinger"
717
 
718
+ #~ msgid "Do you really want to reset the counter to zero?"
719
+ #~ msgstr "Vil du virkelig nulstille tælleren til nul?"
720
+
721
+ #~ msgid ""
722
+ #~ "You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s"
723
+ #~ "\">invoice</a>, <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s\">delivery "
724
+ #~ "note</a> or <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> "
725
+ #~ "template."
726
+ #~ msgstr ""
727
+ #~ "Du kan se et eksempel på <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s"
728
+ #~ "\">faktura</a>, <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s"
729
+ #~ "\">følgeseddel</a> eller <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s"
730
+ #~ "\">kvittering</a> skabelonen."
731
+
732
+ # @ woocommerce-delivery-notes
733
+ #~ msgid ""
734
+ #~ "With the FAQ in the readme file you can learn how to customize the "
735
+ #~ "template."
736
+ #~ msgstr ""
737
+ #~ "I readme-filen finder du en FAQ hvor du kan lære hvordan du tilpasser "
738
+ #~ "skabelonerne."
739
+
740
+ #~ msgid "Company/Shop Logo"
741
+ #~ msgstr "Firma/Shop Logo"
742
+
743
+ #~ msgid "Remove Logo"
744
+ #~ msgstr "Fjern Logo"
745
+
746
+ #~ msgid "Set Logo"
747
+ #~ msgstr "Indsæt Logo"
748
+
749
+ #~ msgid "A company/shop logo representing your business."
750
+ #~ msgstr "Et virksomhed/butik logo der repræsenterer din virksomhed."
751
+
752
+ #~ msgid "Note:"
753
+ #~ msgstr "Note:"
754
+
755
+ #~ msgid ""
756
+ #~ "When the image is printed, its pixel density will automatically be eight "
757
+ #~ "times higher than the original. This means, 1 printed inch will "
758
+ #~ "correspond to about 288 pixels on the screen. Example: an image with a "
759
+ #~ "width of 576 pixels and a height of 288 pixels will have a printed size "
760
+ #~ "of about 2 inches to 1 inch."
761
+ #~ msgstr ""
762
+ #~ "Når billedet udskrives, vil dens pixeltæthed automatisk være otte gange "
763
+ #~ "højere end den oprindelige. Dette betyder, at 1 cm papir er ca 113 pixels "
764
+ #~ "på skærmen. Eksempel: et billede med en bredde på 600 pixel og en højde "
765
+ #~ "på 400 pixels har en trykt størrelse på omkring 5,3 * 3,5 cm."
766
+
767
+ #~ msgid "Company/Shop Name"
768
+ #~ msgstr "Firme/Shop Navn"
769
+
770
+ #~ msgid "Your company/shop name for the Delivery Note."
771
+ #~ msgstr "Dit firma/shop navn til følgesedlen."
772
+
773
+ #~ msgid ""
774
+ #~ "Leave blank to use the default Website/Blog title defined in WordPress "
775
+ #~ "settings. The name will be ignored when a Logo is set."
776
+ #~ msgstr ""
777
+ #~ "Efterlad tom for at bruge standard-hjemmeside/blog titel defineret under "
778
+ #~ "WordPress-indstillinger.Navnet vil blive ignoreret, når et logo er valgt."
779
+
780
+ #~ msgid "Company/Shop Address"
781
+ #~ msgstr "Firma/Shop Adresse"
782
+
783
+ #~ msgid ""
784
+ #~ "The postal address of the company/shop or even e-mail or telephone, which "
785
+ #~ "gets printed right after the company/shop name."
786
+ #~ msgstr ""
787
+ #~ "Postadressen bliver trykt til højre for Firma/Shop navn, ovenover "
788
+ #~ "ordrelisten."
789
+
790
+ #~ msgid "Leave blank to not print an address."
791
+ #~ msgstr "Efterlad tomt for ikke at udskrive en adresse."
792
+
793
+ #~ msgid ""
794
+ #~ "Add some personal notes, or season greetings or whatever (e.g. Thank You "
795
+ #~ "for Your Order!, Merry Christmas!, etc.)."
796
+ #~ msgstr ""
797
+ #~ "Tilføj nogle personlige beskeder, eller lignende (f.eks Tak for din "
798
+ #~ "bestilling!, Glædelig Jul!, Osv.)."
799
+
800
+ #~ msgid "Leave blank to not print any personal notes."
801
+ #~ msgstr "Efterlad tomt for ikke at udskrive nogen personlige noter."
802
+
803
+ #~ msgid "Returns Policy, Conditions, etc"
804
+ #~ msgstr "Returpolitik, Salgsbetingelser mv:"
805
+
806
+ #~ msgid ""
807
+ #~ "Here you can add some more policies, conditions etc. For example add a "
808
+ #~ "returns policy in case the client would like to send back some goods. In "
809
+ #~ "some countries (e.g. in the European Union) this is required so please "
810
+ #~ "add any required info in accordance with the statutory regulations."
811
+ #~ msgstr ""
812
+ #~ "Her kan du tilføje vilkår mv. For eksempel tilføje en returpolitik i "
813
+ #~ "tilfælde af at kunden gerne vil sende varer tilbage. I nogle lande (f.eks "
814
+ #~ "i Den Europæiske Union) dette er påkrævet, så kan du tilføje alle "
815
+ #~ "nødvendige oplysninger i overensstemmelse med de lovmæssige bestemmelser."
816
+
817
+ #~ msgid "Leave blank to not print any policies or conditions."
818
+ #~ msgstr "Efterlad tomt for ikke at udskrive betingelser."
819
+
820
+ #~ msgid ""
821
+ #~ "Add some further footer imprint, e-mail, telephone, copyright notes etc. "
822
+ #~ "This makes the printed sheets a bit more branded."
823
+ #~ msgstr ""
824
+ #~ "Tilføj nogle yderligere Footer imprints, ophavsret bemærkninger osv. "
825
+
826
+ #~ msgid "Leave blank to not print a footer."
827
+ #~ msgstr "Efterlad tomt for ikke at udskrive sidefod."
828
+
829
+ #~ msgid "Types"
830
+ #~ msgstr "Typer"
831
+
832
+ #~ msgid "Enable Invoices"
833
+ #~ msgstr "Aktiver fakturaer"
834
+
835
+ #~ msgid "Enable Delivery Notes"
836
+ #~ msgstr "Aktiver følgesedler"
837
+
838
+ #~ msgid "Enable Receipts"
839
+ #~ msgstr "Aktiver kvitteringer"
840
+
841
+ #~ msgid "Front-end Options"
842
+ #~ msgstr "Frontend indstillinger"
843
+
844
+ #~ msgid "Print Buttons"
845
+ #~ msgstr "Print-knapper"
846
+
847
+ #~ msgid "Order Numbering"
848
+ #~ msgstr "Ordre nummerering"
849
+
850
+ #~ msgid "Invoice Number Start"
851
+ #~ msgstr "Fakturerings-start nr."
852
+
853
+ #~ msgid "Start the numbering at the specified number."
854
+ #~ msgstr "Start faktureringen ved et specifikt nr."
855
+
856
+ #~ msgid "Use only integers."
857
+ #~ msgstr "Brug kun hele tal."
858
+
859
+ #~ msgid "Invoice Number Prefix"
860
+ #~ msgstr "Faktureringsnummer præfiks"
861
+
862
+ #~ msgid "Leave blank to not add a prefix."
863
+ #~ msgstr "Efterlad tomt for ikke at tilføje et præfiks."
864
+
865
+ #~ msgid "Invoice Number Suffix"
866
+ #~ msgstr "Faktureringsnummer suffiks"
867
+
868
+ #~ msgid "Leave blank to not add a suffix."
869
+ #~ msgstr "Efterlad tomt for ikke at tilføje et suffix."
870
+
871
+ #~ msgid "Invoice Number Counter"
872
+ #~ msgstr "Fakturanummer tæller"
873
+
874
+ #~ msgid "Reset Counter"
875
+ #~ msgstr "Nulstil tæller"
876
+
877
+ #~ msgid "Sequential Order Number"
878
+ #~ msgstr "Sekventiel ordrenummer"
879
+
880
+ #~ msgid "Sequential numbering is enabled."
881
+ #~ msgstr "Sekventiel ordrenummer er aktiveret"
882
+
883
+ #~ msgid ""
884
+ #~ "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
885
+ #~ "Numbers</a> Plugin."
886
+ #~ msgstr ""
887
+ #~ "Installer og aktiver den gratis <a href=\"%s\">WooCommerce Sekventil "
888
+ #~ "ordrenummer</ a>Plugin."
889
+
890
+ #~ msgid "Delivery note created."
891
+ #~ msgid_plural "%s delivery notes created."
892
+ #~ msgstr[0] "Følgeseddel oprettet."
893
+ #~ msgstr[1] "%s følgesedler oprettet."
894
+
895
  #~ msgid "Already created invoice numbers are not affected by changes."
896
+ #~ msgstr ""
897
+ #~ "Allerede oprettede faktureringsnumre er ikke påvirket af ændringerne"
898
 
899
  #~ msgid ""
900
+ #~ "For more advanced control copy <code>woocommerce-delivery-notes/templates/"
901
+ #~ "print/style.css</code> to <code>your-theme-name/woocommerce/print/style."
902
+ #~ "css</code>."
903
  #~ msgstr ""
904
+ #~ "For mere avanceret kontrol, kopier <code>woocommerce-delivery-notes/"
905
+ #~ "templates/print-order/style.css</code> til <code>dit-tema/woocommerce/"
906
+ #~ "print-order/style.css</code>."
907
 
908
  #~ msgid "2.0"
909
  #~ msgstr "2.0"
960
  #~ msgstr "WooCommerce Udskriver Faktura og Følgeseddel"
961
 
962
  #~ msgid ""
963
+ #~ "Print order invoices & delivery notes for WooCommerce shop plugin. You "
964
+ #~ "can add company/shop info as well as personal notes & policies to print "
965
+ #~ "pages."
966
  #~ msgstr ""
967
+ #~ "Udskriv ordrer, fakturaer og følgesedler for WooCommerce butik plugin. Du "
968
+ #~ "kan tilføje firma/shop info samt personlige noter og politikker til de "
969
+ #~ "udskrivne sider."
970
 
971
  #~ msgid "Steve Clark, Triggvy Gunderson, David Decker"
972
  #~ msgstr "Steve Clark, Triggvy Gunderson, David Decker"
973
 
974
  #~ msgid ""
975
+ #~ "This plugin enables you to add a Invoice or simple Delivery Note page for "
976
+ #~ "printing for your orders in WooCommerce shop plugin. You can add your "
977
+ #~ "company postal address, further add personal notes, refund or other "
978
+ #~ "policies and a footer note/branding. This helps speed up your daily shop "
979
+ #~ "and order management. In some countries (e.g. in the European Union) it "
980
+ #~ "is also required to advice the customer with proper refund policies so "
981
+ #~ "this little plugin might help you a bit with that too."
982
  #~ msgstr ""
983
+ #~ "Dette plugin giver dig mulighed for at tilføje en Faktura eller "
984
+ #~ "Leveringsbetingelse til udskrift af dine ordre i WooCommerce shop plugin. "
985
+ #~ "Du kan tilføje dit firma's post-adresse og andre personlige meddelelser, "
986
+ #~ "politik om refundering og andet, fodnoter og andet. Dette kan hjælpe dig "
987
+ #~ "i den daglige administration af din shop. \n"
988
+ #~ "I nogle lande (f.eks i Den Europæiske Union) er det også nødvendigt at "
989
+ #~ "rådgive kunden med rette tilbagebetaling politikker, så det kan denne "
990
+ #~ "lille plugin også hjælpe dig med."
991
 
992
  #~ msgid ""
993
+ #~ "Just look under <a href=\"%1$s\">WooCommerce > Orders</a> and there go to "
994
+ #~ "a single order view. On the right side you will see the Order Print meta "
995
+ #~ "box. Click one of the buttons and you get the invoice or delivery note "
996
+ #~ "printing page. Yes, it is that easy :-)."
997
  #~ msgstr ""
998
+ #~ "Se under <a href=\"%1$s\"> WooCommerce> Ordrer </ a>, og derfra gå til "
999
+ #~ "den enkelte ordre udsigt. På højre side vil du se Udskriv Ordrer meta "
1000
+ #~ "boks. Klik en af knapperne, og du får en faktura eller følgeseddel "
1001
+ #~ "udskrivning side. Ja, det er faktisk så let :-)."
languages/woocommerce-delivery-notes-de_DE.mo CHANGED
Binary file
languages/woocommerce-delivery-notes-de_DE.po CHANGED
@@ -8,9 +8,10 @@
8
  msgid ""
9
  msgstr ""
10
  "Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
11
- "Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
12
- "POT-Creation-Date: 2015-01-31 15:45+0100\n"
13
- "PO-Revision-Date: 2015-01-31 15:46+0100\n"
 
14
  "Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
15
  "Language-Team: \n"
16
  "Language: de_DE\n"
@@ -18,547 +19,947 @@ msgstr ""
18
  "Content-Type: text/plain; charset=UTF-8\n"
19
  "Content-Transfer-Encoding: 8bit\n"
20
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
21
- "X-Generator: Poedit 1.7.4\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;"
24
- "_nx:4c,1,2;_nx_noop:4c,1,2;esc_attr_e;esc_attr__\n"
 
25
  "X-Poedit-Basepath: .\n"
26
  "X-Textdomain-Support: yes\n"
27
  "X-Poedit-SearchPath-0: ..\n"
28
 
29
  # @ woocommerce-delivery-notes
30
- #: ../includes/class-wcdn-print.php:41
31
  msgid "Invoice"
32
  msgstr "Rechnung"
33
 
34
  # @ woocommerce-delivery-notes
35
- #: ../includes/class-wcdn-print.php:42
36
  msgid "Invoices"
37
  msgstr "Rechnungen"
38
 
39
  # @ woocommerce-delivery-notes
40
- #: ../includes/class-wcdn-print.php:43
41
  msgid "Print Invoice"
42
  msgstr "Rechnung drucken"
43
 
44
- #: ../includes/class-wcdn-print.php:44
45
  msgid "Print Invoices"
46
  msgstr "Rechnungen drucken"
47
 
48
  # @ woocommerce-delivery-notes
49
- #: ../includes/class-wcdn-print.php:45
50
  msgid "Invoice created."
51
  msgstr "Rechnung erstellt."
52
 
53
- #: ../includes/class-wcdn-print.php:46
54
  msgid "Invoices created."
55
  msgstr "Rechnungen erstellt."
56
 
57
- # @ woocommerce-delivery-notes
58
- #: ../includes/class-wcdn-print.php:47
59
- msgid "Enable Invoices"
60
- msgstr "Rechnungen aktivieren"
61
 
62
  # @ woocommerce-delivery-notes
63
- #: ../includes/class-wcdn-print.php:53
64
  msgid "Delivery Note"
65
  msgstr "Lieferschein"
66
 
67
  # @ woocommerce-delivery-notes
68
- #: ../includes/class-wcdn-print.php:54
69
  msgid "Delivery Notes"
70
  msgstr "Lieferscheine"
71
 
72
  # @ woocommerce-delivery-notes
73
- #: ../includes/class-wcdn-print.php:55
74
  msgid "Print Delivery Note"
75
  msgstr "Lieferschein drucken"
76
 
77
- #: ../includes/class-wcdn-print.php:56
78
  msgid "Print Delivery Notes"
79
  msgstr "Lieferscheine drucken"
80
 
81
- #: ../includes/class-wcdn-print.php:57
82
  msgid "Delivery Note created."
83
  msgstr "Lieferschein erstellt."
84
 
85
- #: ../includes/class-wcdn-print.php:58
86
  msgid "Delivery Notes created."
87
  msgstr "Lieferscheine erstellt."
88
 
89
- #: ../includes/class-wcdn-print.php:59
90
- msgid "Enable Delivery Notes"
91
- msgstr "Lieferscheine aktivieren"
92
 
93
- #: ../includes/class-wcdn-print.php:65
94
  msgid "Receipt"
95
  msgstr "Beleg"
96
 
97
- #: ../includes/class-wcdn-print.php:66
98
  msgid "Receipts"
99
  msgstr "Belege"
100
 
101
  # @ woocommerce-delivery-notes
102
- #: ../includes/class-wcdn-print.php:67
103
  msgid "Print Receipt"
104
  msgstr "Beleg drucken"
105
 
106
- #: ../includes/class-wcdn-print.php:68
107
  msgid "Print Receipts"
108
  msgstr "Belege drucken"
109
 
110
  # @ woocommerce-delivery-notes
111
- #: ../includes/class-wcdn-print.php:69
112
  msgid "Receipt created."
113
  msgstr "Beleg erstellt."
114
 
115
- #: ../includes/class-wcdn-print.php:70
116
  msgid "Receipts created."
117
  msgstr "Belege erstellt."
118
 
119
- # @ woocommerce-delivery-notes
120
- #: ../includes/class-wcdn-print.php:71
121
- msgid "Enable Receipts"
122
- msgstr "Belege aktivieren"
123
 
124
  # @ woocommerce-delivery-notes
125
- #: ../includes/class-wcdn-print.php:80
126
  msgid "Order"
127
  msgstr "Bestellung"
128
 
129
  # @ woocommerce-delivery-notes
130
- #: ../includes/class-wcdn-print.php:81
131
  msgid "Orders"
132
  msgstr "Bestellungen"
133
 
134
  # @ woocommerce-delivery-notes
135
- #: ../includes/class-wcdn-print.php:82 ../includes/class-wcdn-settings.php:157
136
  msgid "Print Order"
137
  msgstr "Bestellung drucken"
138
 
139
- #: ../includes/class-wcdn-print.php:83
140
  msgid "Print Orders"
141
  msgstr "Bestellungen drucken"
142
 
143
- #: ../includes/class-wcdn-settings.php:72
144
- msgid "Do you really want to reset the counter to zero? This process can't be undone."
145
- msgstr "Den Rechnungsnummerzähler auf Null zurücksetzen? Dieser Vorgang kann nicht rückgängig gemacht werden."
146
-
147
- # @ woocommerce-delivery-notes
148
- #: ../includes/class-wcdn-settings.php:102 ../includes/class-wcdn-theme.php:56 ../includes/class-wcdn-theme.php:91
149
- #: ../includes/wcdn-template-functions.php:127
150
- msgid "Print"
151
- msgstr "Drucken"
152
 
153
- # @ woocommerce-delivery-notes
154
- #: ../includes/class-wcdn-settings.php:176
155
- #, php-format
156
  msgid ""
157
- "You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target=\"%4$s\" "
158
- "class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> template."
159
  msgstr ""
160
- "Sie können eine Vorschau der <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">Rechnung</a>, des <a href=\"%2$s\" "
161
- "target=\"%4$s\" class=\"%5$s\">Lieferscheins</a> oder des <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">Belegs</"
162
- "a> anzeigen."
163
-
164
- #: ../includes/class-wcdn-settings.php:177
165
- msgid "With the FAQ in the readme file you can learn how to customize the template."
166
- msgstr "Mit den häufig gestellten Fragen in der Liesmich-Datei erfahren Sie, wie Sie die Vorlage anpassen können."
167
-
168
- # @ woocommerce-delivery-notes
169
- #: ../includes/class-wcdn-settings.php:188
170
- msgid "Company/Shop Logo"
171
- msgstr "Firmen-/ Shop-Logo"
172
 
173
  # @ woocommerce-delivery-notes
174
- #: ../includes/class-wcdn-settings.php:194
175
- msgid "Remove Logo"
176
- msgstr "Logo entfernen"
177
-
178
- # @ woocommerce-delivery-notes
179
- #: ../includes/class-wcdn-settings.php:195
180
- msgid "Set Logo"
181
- msgstr "Logo festlegen"
182
 
183
- # @ woocommerce-delivery-notes
184
- #: ../includes/class-wcdn-settings.php:199
185
- msgid "A company/shop logo representing your business."
186
- msgstr "Ein Firmen-/ Shop-Logo, welches Ihr Geschäft repräsentiert."
187
 
188
- # @ woocommerce-delivery-notes
189
- #: ../includes/class-wcdn-settings.php:200 ../includes/class-wcdn-settings.php:213
190
- #: ../includes/class-wcdn-settings.php:226 ../includes/class-wcdn-settings.php:239
191
- #: ../includes/class-wcdn-settings.php:252 ../includes/class-wcdn-settings.php:265
192
- #: ../includes/class-wcdn-settings.php:382 ../includes/class-wcdn-settings.php:397
193
- #: ../includes/class-wcdn-settings.php:412
194
- msgid "Note:"
195
- msgstr "Hinweis:"
196
 
197
- # @ woocommerce-delivery-notes
198
- #: ../includes/class-wcdn-settings.php:201
199
  msgid ""
200
- "When the image is printed, its pixel density will automatically be eight times higher than the original. This "
201
- "means, 1 printed inch will correspond to about 288 pixels on the screen. Example: an image with a width of 576 "
202
- "pixels and a height of 288 pixels will have a printed size of about 2 inches to 1 inch."
203
  msgstr ""
204
- "Wenn das Bild gedruckt wird, wird dessen Pixeldichte automatisch höher sein als das Original. Dies bedeutet, die "
205
- "Fläche von einem gedruckten Quadratzoll (ca. 2.54cm x 2.54cm) wird mit 288 Pixeln auf dem Bildschirm in "
206
- "Verbindung stehen. Beispiel: Ein Bild mit einer Breite von 576 Pixeln und einer Höhe von 288 Pixeln wird eine "
207
- "gedruckte Größe von etwa 2 Zoll x 1 Zoll aufweisen (ca. 5.08 cm x 2.54cm)."
208
 
209
- # @ woocommerce-delivery-notes
210
- #: ../includes/class-wcdn-settings.php:207
211
- msgid "Company/Shop Name"
212
- msgstr "Firmen-/ Shopname"
213
-
214
- # @ woocommerce-delivery-notes
215
- #: ../includes/class-wcdn-settings.php:212
216
- msgid "Your company/shop name for the Delivery Note."
217
- msgstr "Ihr Firmen-/ Shop-Name für den Lieferschein/ die Rechnung."
218
 
219
- # @ woocommerce-delivery-notes
220
- #: ../includes/class-wcdn-settings.php:214
221
  msgid ""
222
- "Leave blank to use the default Website/Blog title defined in WordPress settings. The name will be ignored when a "
223
- "Logo is set."
 
224
  msgstr ""
225
- "Leer lassen, um den standardmäßigen Webseiten- bzw. Blogtitel zu verwenden, der in den WordPress-Einstellungen "
226
- "festgelegt wird."
227
 
228
- # @ woocommerce-delivery-notes
229
- #: ../includes/class-wcdn-settings.php:220
230
- msgid "Company/Shop Address"
231
- msgstr "Firmen-/ Shop-Anschrift"
232
 
233
- # @ woocommerce-delivery-notes
234
- #: ../includes/class-wcdn-settings.php:225
235
  msgid ""
236
- "The postal address of the company/shop or even e-mail or telephone, which gets printed right after the company/"
237
- "shop name."
238
  msgstr ""
239
- "Die Postanschrift der Firma bzw. des Shops, welche rechts neben dem Firmen-/ Shopname ausgegeben wird, über den "
240
- "Bestelldaten."
241
 
242
- # @ woocommerce-delivery-notes
243
- #: ../includes/class-wcdn-settings.php:227
244
- msgid "Leave blank to not print an address."
245
- msgstr "Leer lassen, um keine Anschrift mit auszudrucken."
 
 
 
246
 
247
- #: ../includes/class-wcdn-settings.php:233
248
  msgid "Complimentary Close"
249
  msgstr "Schlussformel"
250
 
251
- # @ woocommerce-delivery-notes
252
- #: ../includes/class-wcdn-settings.php:238
253
- msgid ""
254
- "Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
255
  msgstr ""
256
- "Fügen Sie einige persönliche Anmerkungen wie Dank, jahreszeitliche Grüße hinzu (z.B.: Danke für Ihre Bestellung!, "
257
- "Frohe Weihnachten!, etc.)."
258
-
259
- # @ woocommerce-delivery-notes
260
- #: ../includes/class-wcdn-settings.php:240
261
- msgid "Leave blank to not print any personal notes."
262
- msgstr "Leer lassen, um keine persönlichen Anmerkungen mit auszudrucken."
263
-
264
- # @ woocommerce-delivery-notes
265
- #: ../includes/class-wcdn-settings.php:246
266
- msgid "Returns Policy, Conditions, etc"
267
- msgstr "Rückgabe- und sonstige Bedingungen:"
268
 
269
- # @ woocommerce-delivery-notes
270
- #: ../includes/class-wcdn-settings.php:251
271
- msgid ""
272
- "Here you can add some more policies, conditions etc. For example add a returns policy in case the client would "
273
- "like to send back some goods. In some countries (e.g. in the European Union) this is required so please add any "
274
- "required info in accordance with the statutory regulations."
275
  msgstr ""
276
- "Hier können Sie einige weitere Bedingungen angeben. Zum Beispiel Bedingungen für die Rückgabe, Widerrufsbelehrung "
277
- "etc. In einigen Ländern (z.B. innerhalb der EU) ist dies sogar vorgeschrieben - informieren Sie sich daher über "
278
- "die entsprechenden gesetzlichen Bestimmungen für Ihr Land."
279
 
280
- # @ woocommerce-delivery-notes
281
- #: ../includes/class-wcdn-settings.php:253
282
- msgid "Leave blank to not print any policies or conditions."
283
- msgstr "Leer lassen, um keine Bedingungen mit auszudrucken."
284
 
285
  # @ woocommerce-delivery-notes
286
- #: ../includes/class-wcdn-settings.php:259
287
  msgid "Footer"
288
  msgstr "Fußzeile"
289
 
290
- # @ woocommerce-delivery-notes
291
- #: ../includes/class-wcdn-settings.php:264
292
  msgid ""
293
- "Add some further footer imprint, e-mail, telephone, copyright notes etc. This makes the printed sheets a bit more "
294
- "branded."
295
  msgstr ""
296
- "Fügen Sie Impressumangaben in der Fußzeile hinzu. Damit können die Ausdrucke noch stärker an Ihr CI angepasst "
297
- "werden."
298
-
299
- # @ woocommerce-delivery-notes
300
- #: ../includes/class-wcdn-settings.php:266
301
- msgid "Leave blank to not print a footer."
302
- msgstr "Leer lassen, um keine Impressumangaben in der Fußzeile mit auszudrucken."
303
-
304
- #: ../includes/class-wcdn-settings.php:273
305
- msgid "Print Options"
306
- msgstr "Druckoptionen"
307
-
308
- #: ../includes/class-wcdn-settings.php:278
309
- msgid "Types"
310
- msgstr "Arten"
311
 
312
- #: ../includes/class-wcdn-settings.php:297
313
- msgid "Theme Options"
314
- msgstr "Themeoptionen"
315
 
316
- #: ../includes/class-wcdn-settings.php:302
317
  msgid "Print Page Endpoint"
318
  msgstr "Bestellung Drucken Endpunkt"
319
 
320
- #: ../includes/class-wcdn-settings.php:309
321
- msgid "The endpoint is appended to the accounts page URL to print the order. It should be unique."
322
- msgstr "Der Endpunkt wird der Konto-URL angehängt, um die Bestellung zu drucken. Sie sollte eindeutig sein."
323
-
324
- #: ../includes/class-wcdn-settings.php:315
325
- msgid "My Account"
326
- msgstr "Mein Konto"
327
-
328
- #: ../includes/class-wcdn-settings.php:322
329
- msgid "Show print button on the \"View Order\" page"
330
- msgstr "Auf der \"Bestellung anzeigen\"-Seite eine Druck-Taste einblenden"
331
-
332
- #: ../includes/class-wcdn-settings.php:329
333
- msgid "Show print buttons on the \"My Account\" page"
334
- msgstr "Auf der \"Konto bearbeiten\"-Seite eine Druck-Taste einblenden"
335
 
336
  # @ woocommerce-delivery-notes
337
- #: ../includes/class-wcdn-settings.php:336 ../includes/wcdn-template-functions.php:254
 
338
  msgid "Email"
339
  msgstr "E-Mail"
340
 
341
- #: ../includes/class-wcdn-settings.php:343
342
  msgid "Show print link in customer emails"
343
  msgstr "In Kunden-E-Mails einen Druck-Link einblenden"
344
 
345
- #: ../includes/class-wcdn-settings.php:347
346
  msgid ""
347
- "This includes the emails for a new, processing and completed order. On top of that the customer invoice email "
348
- "also includes the link."
349
  msgstr ""
350
- "Damit eingeschlossen sind E-Mails für eine neue, in Bearbeitung befindliche und abgeschlossene Bestellung. "
351
- "Darüber hinaus ist der Link auch in der Kundenrechnung-E-Mail vorhanden."
 
352
 
353
- # @ woocommerce-delivery-notes
354
- #: ../includes/class-wcdn-settings.php:354
355
- msgid "Order Numbering"
356
- msgstr "Bestellnummerierung"
 
 
 
357
 
358
- #: ../includes/class-wcdn-settings.php:359
359
- msgid "Invoice Numbering"
360
- msgstr "Rechnungsnummerierung"
 
 
 
 
361
 
362
- #: ../includes/class-wcdn-settings.php:367
363
  msgid "Create invoice numbers"
364
  msgstr "Rechnungsnummern erzeugen"
365
 
366
- # @ woocommerce-delivery-notes
367
- #: ../includes/class-wcdn-settings.php:374
368
- msgid "Invoice Number Start"
369
- msgstr "Rechnungsnummer Start"
370
-
371
- #: ../includes/class-wcdn-settings.php:381
372
- msgid "Start the numbering at the specified number."
373
- msgstr "Die Nummerierung beginnt bei der eingegebenen Zahl."
374
 
375
- #: ../includes/class-wcdn-settings.php:383
376
- msgid "Use only integers."
377
- msgstr "Nur Ganzzahlen verwenden."
378
 
379
- # @ woocommerce-delivery-notes
380
- #: ../includes/class-wcdn-settings.php:389
381
- msgid "Invoice Number Prefix"
382
- msgstr "Rechnungsnummer Präfix"
383
 
384
- #: ../includes/class-wcdn-settings.php:396
385
  msgid "This text will be prepended to the invoice number."
386
  msgstr "Dieser Text wird vor der Rechnungsnummer angefügt."
387
 
388
- # @ woocommerce-delivery-notes
389
- #: ../includes/class-wcdn-settings.php:398
390
- msgid "Leave blank to not add a prefix."
391
- msgstr "Leer lassen, um kein Präfix zu verwenden."
392
-
393
- # @ woocommerce-delivery-notes
394
- #: ../includes/class-wcdn-settings.php:404
395
- msgid "Invoice Number Suffix"
396
- msgstr "Rechnungsnummer Suffix"
397
 
398
- #: ../includes/class-wcdn-settings.php:411
399
  msgid "This text will be appended to the invoice number."
400
  msgstr "Dieser Text wird nach der Rechnungsnummer angefügt."
401
 
402
- # @ woocommerce-delivery-notes
403
- #: ../includes/class-wcdn-settings.php:413
404
- msgid "Leave blank to not add a suffix."
405
- msgstr "Leer lassen, um kein Suffix zu verwenden."
406
-
407
- # @ woocommerce-delivery-notes
408
- #: ../includes/class-wcdn-settings.php:419
409
- msgid "Invoice Number Counter"
410
- msgstr "Rechnungsnummer Zähler"
411
 
412
- #: ../includes/class-wcdn-settings.php:428
413
- msgid "Reset Counter …"
414
- msgstr "Zähler zurücksetzen "
 
 
415
 
416
- # @ woocommerce-delivery-notes
417
- #: ../includes/class-wcdn-settings.php:434
418
- msgid "Sequential Order Number"
419
- msgstr "Fortlaufende Bestellnummer"
 
 
 
420
 
421
- # @ woocommerce-delivery-notes
422
- #: ../includes/class-wcdn-settings.php:439
423
- msgid "Sequential numbering is enabled."
424
- msgstr "Fortlaufende Nummerierung ist aktiviert."
425
 
426
- # @ woocommerce-delivery-notes
427
- #: ../includes/class-wcdn-settings.php:441
428
- #, php-format
429
- msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
430
  msgstr ""
431
- "Installieren und aktivieren Sie das kostenlose Plugin <a href=\"%s\">WooCommerce Sequential Order Numbers</a>."
432
 
433
- #: ../includes/class-wcdn-theme.php:106
434
  msgid "Print your order"
435
  msgstr "Bestellung drucken"
436
 
437
- #: ../includes/class-wcdn-theme.php:112
438
  msgid "Print:"
439
  msgstr "Drucken:"
440
 
441
- #: ../includes/class-wcdn-theme.php:112
442
  msgid "Open print view in browser"
443
  msgstr "Druck-Ansicht im Browser öffnen"
444
 
445
  # @ woocommerce-delivery-notes
446
- #: ../includes/class-wcdn-writepanel.php:214
447
  msgid "Print now"
448
  msgstr "Jetzt drucken"
449
 
450
  # @ woocommerce-delivery-notes
451
- #: ../includes/class-wcdn-writepanel.php:228
452
  msgid "Order Printing"
453
  msgstr "Bestellung drucken"
454
 
455
  # @ woocommerce-delivery-notes
456
- #: ../includes/class-wcdn-writepanel.php:256
457
  msgid "Invoice number: "
458
  msgstr "Rechnungsnummer:"
459
 
460
  # @ woocommerce-delivery-notes
461
- #: ../includes/class-wcdn-writepanel.php:257
462
  msgid "Invoice date: "
463
  msgstr "Rechnungsdatum:"
464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
465
  # @ woocommerce-delivery-notes
466
- #: ../includes/wcdn-template-functions.php:232
467
  msgid "Invoice Number"
468
  msgstr "Rechnungsnummer"
469
 
 
 
 
 
470
  # @ woocommerce-delivery-notes
471
- #: ../includes/wcdn-template-functions.php:238
472
  msgid "Order Number"
473
  msgstr "Bestellnummer"
474
 
475
  # @ woocommerce-delivery-notes
476
- #: ../includes/wcdn-template-functions.php:243
477
  msgid "Order Date"
478
  msgstr "Bestelldatum"
479
 
480
  # @ woocommerce-delivery-notes
481
- #: ../includes/wcdn-template-functions.php:248
482
  msgid "Payment Method"
483
  msgstr "Zahlungsart"
484
 
485
- #: ../includes/wcdn-template-functions.php:261
486
  msgid "Telephone"
487
  msgstr "Telefon"
488
 
489
- #: ../includes/wcdn-template-functions.php:294
490
  msgid "SKU:"
491
  msgstr "Art.-Nr.:"
492
 
493
- #: ../includes/wcdn-template-functions.php:380 ../includes/wcdn-template-functions.php:384
494
- #, php-format
495
  msgid "(Includes %s)"
496
  msgstr ""
497
 
498
- #: ../includes/wcdn-template-functions.php:400
499
  msgid "Refund"
500
  msgstr "Rückerstattung"
501
 
502
- #: ../includes/wcdn-template-functions.php:412
503
  msgid "Order Subtotal"
504
  msgstr "Zwischensumme Bestellung"
505
 
506
- #: ../templates/print-order/print-content.php:28
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
507
  msgid "Billing Address"
508
  msgstr "Rechnungsadresse"
509
 
510
  # @ woocommerce-delivery-notes
511
- #: ../templates/print-order/print-content.php:31 ../templates/print-order/print-content.php:40
 
512
  msgid "N/A"
513
  msgstr "k.A."
514
 
515
  # @ woocommerce-delivery-notes
516
- #: ../templates/print-order/print-content.php:37
517
  msgid "Shipping Address"
518
  msgstr "Lieferadresse"
519
 
520
  # @ woocommerce-delivery-notes
521
- #: ../templates/print-order/print-content.php:70
522
  msgid "Product"
523
  msgstr "Produkt"
524
 
525
- #: ../templates/print-order/print-content.php:71
526
  msgid "Price"
527
  msgstr "Preis"
528
 
529
- #: ../templates/print-order/print-content.php:72
530
  msgid "Quantity"
531
  msgstr "Menge"
532
 
533
  # @ woocommerce-delivery-notes
534
- #: ../templates/print-order/print-content.php:73
535
  msgid "Total"
536
  msgstr "Summe"
537
 
538
- #: ../templates/print-order/print-content.php:97
539
  msgid "Download:"
540
  msgstr "Download: "
541
 
542
- #: ../templates/print-order/print-content.php:98
543
- #, php-format
544
  msgid "%s Files"
545
  msgstr "%s Dateien"
546
 
547
  # @ woocommerce-delivery-notes
548
- #: ../templates/print-order/print-content.php:147
549
  msgid "Customer Note"
550
  msgstr "Kundennotizen"
551
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
552
  # @ woocommerce-delivery-notes
553
- #: ../woocommerce-delivery-notes.php:181
554
  msgid "Go to the settings page"
555
  msgstr "Zur Einstellungsseite des Plugins"
556
 
557
  # @ woocommerce-delivery-notes
558
- #: ../woocommerce-delivery-notes.php:181
559
  msgid "Settings"
560
  msgstr "Einstellungen"
561
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
562
  #~ msgid "Reset Counter"
563
  #~ msgstr "Zähler zurücksetzen"
564
 
@@ -596,4 +997,5 @@ msgstr "Einstellungen"
596
  #~ msgstr[1] "%s Lieferscheine erstellt."
597
 
598
  #~ msgid "Already created invoice numbers are not affected by changes."
599
- #~ msgstr "Bereits erzeugte Rechnungsnummern sind von Änderungen nicht betroffen."
 
8
  msgid ""
9
  msgstr ""
10
  "Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
11
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/woocommerce-"
12
+ "delivery-notes\n"
13
+ "POT-Creation-Date: 2018-10-22 18:58+0530\n"
14
+ "PO-Revision-Date: 2018-10-22 18:58+0530\n"
15
  "Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
16
  "Language-Team: \n"
17
  "Language: de_DE\n"
19
  "Content-Type: text/plain; charset=UTF-8\n"
20
  "Content-Transfer-Encoding: 8bit\n"
21
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
22
+ "X-Generator: Poedit 1.8.7.1\n"
23
  "X-Poedit-SourceCharset: UTF-8\n"
24
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
25
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
26
+ "esc_attr_e;esc_attr__\n"
27
  "X-Poedit-Basepath: .\n"
28
  "X-Textdomain-Support: yes\n"
29
  "X-Poedit-SearchPath-0: ..\n"
30
 
31
  # @ woocommerce-delivery-notes
32
+ #: includes/class-wcdn-print.php:39 includes/class-wcdn-settings.php:237
33
  msgid "Invoice"
34
  msgstr "Rechnung"
35
 
36
  # @ woocommerce-delivery-notes
37
+ #: includes/class-wcdn-print.php:40
38
  msgid "Invoices"
39
  msgstr "Rechnungen"
40
 
41
  # @ woocommerce-delivery-notes
42
+ #: includes/class-wcdn-print.php:41
43
  msgid "Print Invoice"
44
  msgstr "Rechnung drucken"
45
 
46
+ #: includes/class-wcdn-print.php:42
47
  msgid "Print Invoices"
48
  msgstr "Rechnungen drucken"
49
 
50
  # @ woocommerce-delivery-notes
51
+ #: includes/class-wcdn-print.php:43
52
  msgid "Invoice created."
53
  msgstr "Rechnung erstellt."
54
 
55
+ #: includes/class-wcdn-print.php:44
56
  msgid "Invoices created."
57
  msgstr "Rechnungen erstellt."
58
 
59
+ #: includes/class-wcdn-print.php:45
60
+ msgid "Show \"Print Invoice\" button"
61
+ msgstr ""
 
62
 
63
  # @ woocommerce-delivery-notes
64
+ #: includes/class-wcdn-print.php:51
65
  msgid "Delivery Note"
66
  msgstr "Lieferschein"
67
 
68
  # @ woocommerce-delivery-notes
69
+ #: includes/class-wcdn-print.php:52
70
  msgid "Delivery Notes"
71
  msgstr "Lieferscheine"
72
 
73
  # @ woocommerce-delivery-notes
74
+ #: includes/class-wcdn-print.php:53
75
  msgid "Print Delivery Note"
76
  msgstr "Lieferschein drucken"
77
 
78
+ #: includes/class-wcdn-print.php:54
79
  msgid "Print Delivery Notes"
80
  msgstr "Lieferscheine drucken"
81
 
82
+ #: includes/class-wcdn-print.php:55
83
  msgid "Delivery Note created."
84
  msgstr "Lieferschein erstellt."
85
 
86
+ #: includes/class-wcdn-print.php:56
87
  msgid "Delivery Notes created."
88
  msgstr "Lieferscheine erstellt."
89
 
90
+ #: includes/class-wcdn-print.php:57
91
+ msgid "Show \"Print Delivery Note\" button"
92
+ msgstr ""
93
 
94
+ #: includes/class-wcdn-print.php:63
95
  msgid "Receipt"
96
  msgstr "Beleg"
97
 
98
+ #: includes/class-wcdn-print.php:64
99
  msgid "Receipts"
100
  msgstr "Belege"
101
 
102
  # @ woocommerce-delivery-notes
103
+ #: includes/class-wcdn-print.php:65
104
  msgid "Print Receipt"
105
  msgstr "Beleg drucken"
106
 
107
+ #: includes/class-wcdn-print.php:66
108
  msgid "Print Receipts"
109
  msgstr "Belege drucken"
110
 
111
  # @ woocommerce-delivery-notes
112
+ #: includes/class-wcdn-print.php:67
113
  msgid "Receipt created."
114
  msgstr "Beleg erstellt."
115
 
116
+ #: includes/class-wcdn-print.php:68
117
  msgid "Receipts created."
118
  msgstr "Belege erstellt."
119
 
120
+ #: includes/class-wcdn-print.php:69
121
+ msgid "Show \"Print Receipt\" button"
122
+ msgstr ""
 
123
 
124
  # @ woocommerce-delivery-notes
125
+ #: includes/class-wcdn-print.php:78
126
  msgid "Order"
127
  msgstr "Bestellung"
128
 
129
  # @ woocommerce-delivery-notes
130
+ #: includes/class-wcdn-print.php:79
131
  msgid "Orders"
132
  msgstr "Bestellungen"
133
 
134
  # @ woocommerce-delivery-notes
135
+ #: includes/class-wcdn-print.php:80
136
  msgid "Print Order"
137
  msgstr "Bestellung drucken"
138
 
139
+ #: includes/class-wcdn-print.php:81
140
  msgid "Print Orders"
141
  msgstr "Bestellungen drucken"
142
 
143
+ #: includes/class-wcdn-print.php:93
144
+ msgid "Default"
145
+ msgstr ""
 
 
 
 
 
 
146
 
147
+ #: includes/class-wcdn-settings.php:67
 
 
148
  msgid ""
149
+ "Do you really want to reset the counter to zero? This process can't be "
150
+ "undone."
151
  msgstr ""
152
+ "Den Rechnungsnummerzähler auf Null zurücksetzen? Dieser Vorgang kann nicht "
153
+ "rückgängig gemacht werden."
 
 
 
 
 
 
 
 
 
 
154
 
155
  # @ woocommerce-delivery-notes
156
+ #: includes/class-wcdn-settings.php:75 includes/class-wcdn-theme.php:57
157
+ #: includes/class-wcdn-theme.php:94 includes/wcdn-template-functions.php:130
158
+ msgid "Print"
159
+ msgstr "Drucken"
 
 
 
 
160
 
161
+ #: includes/class-wcdn-settings.php:106
162
+ msgid "Template"
163
+ msgstr ""
 
164
 
165
+ #: includes/class-wcdn-settings.php:113
166
+ msgid "Style"
167
+ msgstr ""
 
 
 
 
 
168
 
169
+ #: includes/class-wcdn-settings.php:114
 
170
  msgid ""
171
+ "The default print style. Read the <a href=\"%1$s\">FAQ</a> to learn how to "
172
+ "customize it."
 
173
  msgstr ""
 
 
 
 
174
 
175
+ #: includes/class-wcdn-settings.php:124
176
+ msgid "Shop Logo"
177
+ msgstr ""
 
 
 
 
 
 
178
 
179
+ #: includes/class-wcdn-settings.php:130
 
180
  msgid ""
181
+ "A shop logo representing your business. When the image is printed, its pixel "
182
+ "density will automatically be eight times higher than the original. This "
183
+ "means, 1 printed inch will correspond to about 288 pixels on the screen."
184
  msgstr ""
 
 
185
 
186
+ #: includes/class-wcdn-settings.php:134
187
+ msgid "Shop Name"
188
+ msgstr ""
 
189
 
190
+ #: includes/class-wcdn-settings.php:140
 
191
  msgid ""
192
+ "The shop name. Leave blank to use the default Website or Blog title defined "
193
+ "in WordPress settings. The name will be ignored when a Logo is set."
194
  msgstr ""
 
 
195
 
196
+ #: includes/class-wcdn-settings.php:144
197
+ msgid "Shop Address"
198
+ msgstr ""
199
+
200
+ #: includes/class-wcdn-settings.php:145
201
+ msgid "The postal address of the shop or even e-mail or telephone."
202
+ msgstr ""
203
 
204
+ #: includes/class-wcdn-settings.php:154
205
  msgid "Complimentary Close"
206
  msgstr "Schlussformel"
207
 
208
+ #: includes/class-wcdn-settings.php:155
209
+ msgid "Add a personal close, notes or season greetings."
 
 
210
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
211
 
212
+ #: includes/class-wcdn-settings.php:164
213
+ msgid "Policies"
 
 
 
 
214
  msgstr ""
 
 
 
215
 
216
+ #: includes/class-wcdn-settings.php:165
217
+ msgid "Add the shop policies, conditions, etc."
218
+ msgstr ""
 
219
 
220
  # @ woocommerce-delivery-notes
221
+ #: includes/class-wcdn-settings.php:174
222
  msgid "Footer"
223
  msgstr "Fußzeile"
224
 
225
+ #: includes/class-wcdn-settings.php:175
 
226
  msgid ""
227
+ "Add a footer imprint, instructions, copyright notes, e-mail, telephone, etc."
 
228
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
229
 
230
+ #: includes/class-wcdn-settings.php:189
231
+ msgid "Pages & Buttons"
232
+ msgstr ""
233
 
234
+ #: includes/class-wcdn-settings.php:196
235
  msgid "Print Page Endpoint"
236
  msgstr "Bestellung Drucken Endpunkt"
237
 
238
+ #: includes/class-wcdn-settings.php:202
239
+ msgid ""
240
+ "The endpoint is appended to the accounts page URL to print the order. It "
241
+ "should be unique."
242
+ msgstr ""
243
+ "Der Endpunkt wird der Konto-URL angehängt, um die Bestellung zu drucken. Sie "
244
+ "sollte eindeutig sein."
 
 
 
 
 
 
 
 
245
 
246
  # @ woocommerce-delivery-notes
247
+ #: includes/class-wcdn-settings.php:206
248
+ #: includes/wcdn-template-functions.php:275
249
  msgid "Email"
250
  msgstr "E-Mail"
251
 
252
+ #: includes/class-wcdn-settings.php:207
253
  msgid "Show print link in customer emails"
254
  msgstr "In Kunden-E-Mails einen Druck-Link einblenden"
255
 
256
+ #: includes/class-wcdn-settings.php:211
257
  msgid ""
258
+ "This includes the emails for a new, processing and completed order. On top "
259
+ "of that the customer invoice email also includes the link."
260
  msgstr ""
261
+ "Damit eingeschlossen sind E-Mails für eine neue, in Bearbeitung befindliche "
262
+ "und abgeschlossene Bestellung. Darüber hinaus ist der Link auch in der "
263
+ "Kundenrechnung-E-Mail vorhanden."
264
 
265
+ #: includes/class-wcdn-settings.php:215
266
+ msgid "My Account"
267
+ msgstr "Mein Konto"
268
+
269
+ #: includes/class-wcdn-settings.php:216
270
+ msgid "Show print button on the \"View Order\" page"
271
+ msgstr "Auf der \"Bestellung anzeigen\"-Seite eine Druck-Taste einblenden"
272
 
273
+ #: includes/class-wcdn-settings.php:224
274
+ msgid "Show print buttons on the \"My Account\" page"
275
+ msgstr "Auf der \"Konto bearbeiten\"-Seite eine Druck-Taste einblenden"
276
+
277
+ #: includes/class-wcdn-settings.php:244
278
+ msgid "Numbering"
279
+ msgstr ""
280
 
281
+ #: includes/class-wcdn-settings.php:245
282
  msgid "Create invoice numbers"
283
  msgstr "Rechnungsnummern erzeugen"
284
 
285
+ #: includes/class-wcdn-settings.php:253
286
+ msgid "Next Number"
287
+ msgstr ""
 
 
 
 
 
288
 
289
+ #: includes/class-wcdn-settings.php:260
290
+ msgid "The next invoice number."
291
+ msgstr ""
292
 
293
+ #: includes/class-wcdn-settings.php:264
294
+ msgid "Number Prefix"
295
+ msgstr ""
 
296
 
297
+ #: includes/class-wcdn-settings.php:271
298
  msgid "This text will be prepended to the invoice number."
299
  msgstr "Dieser Text wird vor der Rechnungsnummer angefügt."
300
 
301
+ #: includes/class-wcdn-settings.php:275
302
+ msgid "Number Suffix"
303
+ msgstr ""
 
 
 
 
 
 
304
 
305
+ #: includes/class-wcdn-settings.php:282
306
  msgid "This text will be appended to the invoice number."
307
  msgstr "Dieser Text wird nach der Rechnungsnummer angefügt."
308
 
309
+ #: includes/class-wcdn-settings.php:327
310
+ msgid "Admin"
311
+ msgstr ""
 
 
 
 
 
 
312
 
313
+ #: includes/class-wcdn-settings.php:330
314
+ msgid ""
315
+ "The print buttons are available on the order listing and on the order detail "
316
+ "screen."
317
+ msgstr ""
318
 
319
+ #: includes/class-wcdn-settings.php:372
320
+ msgid ""
321
+ "This section lets you customise the content. You can preview the <a href="
322
+ "\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target="
323
+ "\"%4$s\" class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s"
324
+ "\" class=\"%5$s\">receipt</a> template."
325
+ msgstr ""
326
 
327
+ #: includes/class-wcdn-settings.php:435
328
+ msgid "Select"
329
+ msgstr ""
 
330
 
331
+ #: includes/class-wcdn-settings.php:439
332
+ msgid "Remove"
 
 
333
  msgstr ""
 
334
 
335
+ #: includes/class-wcdn-theme.php:112
336
  msgid "Print your order"
337
  msgstr "Bestellung drucken"
338
 
339
+ #: includes/class-wcdn-theme.php:119
340
  msgid "Print:"
341
  msgstr "Drucken:"
342
 
343
+ #: includes/class-wcdn-theme.php:119
344
  msgid "Open print view in browser"
345
  msgstr "Druck-Ansicht im Browser öffnen"
346
 
347
  # @ woocommerce-delivery-notes
348
+ #: includes/class-wcdn-writepanel.php:218
349
  msgid "Print now"
350
  msgstr "Jetzt drucken"
351
 
352
  # @ woocommerce-delivery-notes
353
+ #: includes/class-wcdn-writepanel.php:232
354
  msgid "Order Printing"
355
  msgstr "Bestellung drucken"
356
 
357
  # @ woocommerce-delivery-notes
358
+ #: includes/class-wcdn-writepanel.php:259
359
  msgid "Invoice number: "
360
  msgstr "Rechnungsnummer:"
361
 
362
  # @ woocommerce-delivery-notes
363
+ #: includes/class-wcdn-writepanel.php:260
364
  msgid "Invoice date: "
365
  msgstr "Rechnungsdatum:"
366
 
367
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:75
368
+ msgid "If you have a moment, please let us know why you are deactivating"
369
+ msgstr ""
370
+
371
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:76
372
+ msgid "Submit & Deactivate"
373
+ msgstr ""
374
+
375
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:77
376
+ msgid "Deactivate"
377
+ msgstr ""
378
+
379
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:78
380
+ msgid "Cancel"
381
+ msgstr ""
382
+
383
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:79
384
+ msgid "Yes - Deactivate"
385
+ msgstr ""
386
+
387
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:83
388
+ msgid "I found a better plugin"
389
+ msgstr ""
390
+
391
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:84
392
+ msgid "What's the plugin's name?"
393
+ msgstr ""
394
+
395
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:85
396
+ msgid "I only needed the plugin for a short period"
397
+ msgstr ""
398
+
399
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:86
400
+ msgid "The plugin is not working"
401
+ msgstr ""
402
+
403
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:87
404
+ msgid "Kindly share what didn't work so we can fix it for future users..."
405
+ msgstr ""
406
+
407
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:88
408
+ msgid "The plugin is great, but I need specific feature that you don't support"
409
+ msgstr ""
410
+
411
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:89
412
+ msgid "What feature?"
413
+ msgstr ""
414
+
415
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:90
416
+ msgid "I don't like to share my information with you"
417
+ msgstr ""
418
+
419
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:91
420
+ msgctxt ""
421
+ "the text of the 'other' reason for deactivating the plugin that is shown in "
422
+ "the modal box."
423
+ msgid "Other"
424
+ msgstr ""
425
+
426
+ #: includes/component/faq-support/ts-faq-support.php:127
427
+ msgid "Frequently Asked Questions for %s"
428
+ msgstr ""
429
+
430
+ #: includes/component/faq-support/ts-faq-support.php:176
431
+ msgid "FAQ & Support"
432
+ msgstr ""
433
+
434
+ #: includes/component/tracking-data/ts-tracking.php:120
435
+ #: includes/component/tracking-data/ts-tracking.php:180
436
+ msgid "Reset usage tracking"
437
+ msgstr ""
438
+
439
+ #: includes/component/tracking-data/ts-tracking.php:122
440
+ msgid ""
441
+ "This will reset your usage tracking settings, causing it to show the opt-in "
442
+ "banner again and not sending any data"
443
+ msgstr ""
444
+
445
+ #: includes/component/tracking-data/ts-tracking.php:225
446
+ msgid "Once in a Week"
447
+ msgstr ""
448
+
449
+ #: includes/component/tracking-data/ts-tracking.php:311
450
+ msgid "Allow"
451
+ msgstr ""
452
+
453
+ #: includes/component/tracking-data/ts-tracking.php:312
454
+ msgid "No thanks"
455
+ msgstr ""
456
+
457
+ #: includes/component/welcome-page/templates/social-media-elements.php:10
458
+ #: includes/wcdn-welcome.php:231
459
+ msgid "Follow %s"
460
+ msgstr ""
461
+
462
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:19
463
+ #: includes/wcdn-welcome.php:99
464
+ msgid ""
465
+ "Thank you for activating or updating to the latest version of WooCommerce "
466
+ "Print Invoice & Delivery Note! If you're a first time user, welcome! You're "
467
+ "well on your way to explore the print functionality for your WooCommerce "
468
+ "orders."
469
+ msgstr ""
470
+
471
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:29
472
+ #: includes/wcdn-welcome.php:109
473
+ msgid "Get Started with WooCommerce Print Invoice & Delivery Note"
474
+ msgstr ""
475
+
476
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:33
477
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:62
478
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:68
479
+ #: includes/wcdn-welcome.php:113 includes/wcdn-welcome.php:142
480
+ #: includes/wcdn-welcome.php:148
481
+ msgid "WooCommerce Print Invoice & Delivery Note"
482
+ msgstr ""
483
+
484
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:37
485
+ #: includes/wcdn-welcome.php:117
486
+ msgid "Add settings"
487
+ msgstr ""
488
+
489
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:39
490
+ #: includes/wcdn-welcome.php:119
491
+ msgid ""
492
+ "To enable the print functionality for your invoices, delivery notes & "
493
+ "receipts, you just need to set it up under WooCommerce -> Settings -> Print "
494
+ "page. Here you can also setup the Company Logo that will appear on the "
495
+ "printed items, Company Address & other information."
496
+ msgstr ""
497
+
498
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:41
499
+ #: includes/wcdn-welcome.php:121
500
+ msgid "Click Here to go to Print page"
501
+ msgstr ""
502
+
503
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:52
504
+ #: includes/wcdn-welcome.php:132
505
+ msgid "Enable Print button for Customers."
506
+ msgstr ""
507
+
508
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:54
509
+ #: includes/wcdn-welcome.php:134
510
+ msgid ""
511
+ "Allow customers to print the WooCommerce order invoice from the customer "
512
+ "notification email, from the My Account page or from the View Order page "
513
+ "under My Account."
514
+ msgstr ""
515
+
516
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:56
517
+ #: includes/wcdn-welcome.php:136
518
+ msgid "Click Here to Enable Print button for Customers"
519
+ msgstr ""
520
+
521
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:72
522
+ #: includes/wcdn-welcome.php:152
523
+ msgid "Enable Invoice Numbering"
524
+ msgstr ""
525
+
526
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:74
527
+ msgid ""
528
+ "If you want to change the default invoice numbers & set some numbering "
529
+ "scheme of your own, then you can set it here with a starting invoice number, "
530
+ "a prefix & suffix. For example, you could set it as: TS/001/17-18."
531
+ msgstr ""
532
+
533
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:76
534
+ #: includes/wcdn-welcome.php:156
535
+ msgid "Click Here to Enable Invoice Numbering"
536
+ msgstr ""
537
+
538
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:87
539
+ #: includes/wcdn-welcome.php:167
540
+ msgid "Getting to Know Tyche Softwares"
541
+ msgstr ""
542
+
543
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:90
544
+ #: includes/wcdn-welcome.php:170
545
+ msgid "Visit the Tyche Softwares Website"
546
+ msgstr ""
547
+
548
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:91
549
+ #: includes/wcdn-welcome.php:171
550
+ msgid "View all Premium Plugins"
551
+ msgstr ""
552
+
553
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:100
554
+ #: includes/wcdn-welcome.php:180
555
+ msgid "Meet the team"
556
+ msgstr ""
557
+
558
+ #: includes/component/welcome-page/ts-welcome.php:167
559
+ msgid "Welcome to %s %s"
560
+ msgstr ""
561
+
562
+ #: includes/wcdn-all-component.php:118
563
+ msgid ""
564
+ "Thank you for using WooCommerce Print Invoice & Delivery Note plugin! Now "
565
+ "make your deliveries more accurate by allowing customers to select their "
566
+ "preferred delivery date & time from Product Delivery Date Pro for "
567
+ "WooCommerce. <strong><a target=\"_blank\" href= \"https://www.tychesoftwares."
568
+ "com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/?"
569
+ "utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">Get "
570
+ "it now!</a></strong>"
571
+ msgstr ""
572
+
573
+ #: includes/wcdn-all-component.php:120
574
+ msgid ""
575
+ "Never login to your admin to check your deliveries by syncing the delivery "
576
+ "dates to the Google Calendar from Product Delivery Date Pro for WooCommerce. "
577
+ "<strong><a target=\"_blank\" href= \"https://www.tychesoftwares.com/store/"
578
+ "premium-plugins/product-delivery-date-pro-for-woocommerce/checkout?"
579
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
580
+ "\">Get it now!</a></strong>"
581
+ msgstr ""
582
+
583
+ #: includes/wcdn-all-component.php:122
584
+ msgid ""
585
+ "You can now view all your deliveries in list view or in calendar view from "
586
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
587
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
588
+ "delivery-date-pro-for-woocommerce/checkout?"
589
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
590
+ "\">Get it now!</a></strong>."
591
+ msgstr ""
592
+
593
+ #: includes/wcdn-all-component.php:124
594
+ msgid ""
595
+ "Allow your customers to pay extra for delivery for certain Weekdays/Dates "
596
+ "from Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
597
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
598
+ "delivery-date-pro-for-woocommerce/checkout?"
599
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
600
+ "\">Have it now!</a></strong>."
601
+ msgstr ""
602
+
603
+ #: includes/wcdn-all-component.php:126
604
+ msgid ""
605
+ "Customers can now edit the Delivery date & time on cart and checkout page or "
606
+ "they can reschedule the deliveries for the already placed orders from "
607
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
608
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
609
+ "delivery-date-pro-for-woocommerce/checkout?"
610
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
611
+ "\">Have it now!</a></strong>."
612
+ msgstr ""
613
+
614
  # @ woocommerce-delivery-notes
615
+ #: includes/wcdn-template-functions.php:246
616
  msgid "Invoice Number"
617
  msgstr "Rechnungsnummer"
618
 
619
+ #: includes/wcdn-template-functions.php:253
620
+ msgid "Invoice Date"
621
+ msgstr ""
622
+
623
  # @ woocommerce-delivery-notes
624
+ #: includes/wcdn-template-functions.php:259
625
  msgid "Order Number"
626
  msgstr "Bestellnummer"
627
 
628
  # @ woocommerce-delivery-notes
629
+ #: includes/wcdn-template-functions.php:264
630
  msgid "Order Date"
631
  msgstr "Bestelldatum"
632
 
633
  # @ woocommerce-delivery-notes
634
+ #: includes/wcdn-template-functions.php:269
635
  msgid "Payment Method"
636
  msgstr "Zahlungsart"
637
 
638
+ #: includes/wcdn-template-functions.php:282
639
  msgid "Telephone"
640
  msgstr "Telefon"
641
 
642
+ #: includes/wcdn-template-functions.php:315
643
  msgid "SKU:"
644
  msgstr "Art.-Nr.:"
645
 
646
+ #: includes/wcdn-template-functions.php:409
647
+ #: includes/wcdn-template-functions.php:413
648
  msgid "(Includes %s)"
649
  msgstr ""
650
 
651
+ #: includes/wcdn-template-functions.php:429
652
  msgid "Refund"
653
  msgstr "Rückerstattung"
654
 
655
+ #: includes/wcdn-template-functions.php:441
656
  msgid "Order Subtotal"
657
  msgstr "Zwischensumme Bestellung"
658
 
659
+ #: includes/wcdn-welcome.php:54
660
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note %s"
661
+ msgstr ""
662
+
663
+ #: includes/wcdn-welcome.php:55
664
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note"
665
+ msgstr ""
666
+
667
+ #: includes/wcdn-welcome.php:154
668
+ msgid ""
669
+ "f you want to change the default invoice numbers & set some numbering scheme "
670
+ "of your own, then you can set it here with a starting invoice number, a "
671
+ "prefix & suffix. For example, you could set it as: TS/001/17-18."
672
+ msgstr ""
673
+
674
+ #: includes/wcdn-welcome.php:186
675
+ msgid "Current Offers"
676
+ msgstr ""
677
+
678
+ #: templates/print-order/print-content.php:28
679
  msgid "Billing Address"
680
  msgstr "Rechnungsadresse"
681
 
682
  # @ woocommerce-delivery-notes
683
+ #: templates/print-order/print-content.php:31
684
+ #: templates/print-order/print-content.php:40
685
  msgid "N/A"
686
  msgstr "k.A."
687
 
688
  # @ woocommerce-delivery-notes
689
+ #: templates/print-order/print-content.php:37
690
  msgid "Shipping Address"
691
  msgstr "Lieferadresse"
692
 
693
  # @ woocommerce-delivery-notes
694
+ #: templates/print-order/print-content.php:71
695
  msgid "Product"
696
  msgstr "Produkt"
697
 
698
+ #: templates/print-order/print-content.php:72
699
  msgid "Price"
700
  msgstr "Preis"
701
 
702
+ #: templates/print-order/print-content.php:73
703
  msgid "Quantity"
704
  msgstr "Menge"
705
 
706
  # @ woocommerce-delivery-notes
707
+ #: templates/print-order/print-content.php:74
708
  msgid "Total"
709
  msgstr "Summe"
710
 
711
+ #: templates/print-order/print-content.php:147
712
  msgid "Download:"
713
  msgstr "Download: "
714
 
715
+ #: templates/print-order/print-content.php:148
 
716
  msgid "%s Files"
717
  msgstr "%s Dateien"
718
 
719
  # @ woocommerce-delivery-notes
720
+ #: templates/print-order/print-content.php:202
721
  msgid "Customer Note"
722
  msgstr "Kundennotizen"
723
 
724
+ #: woocommerce-delivery-notes.php:96 woocommerce-delivery-notes.php:103
725
+ msgid "Cheatin&#8217; huh?"
726
+ msgstr ""
727
+
728
+ #: woocommerce-delivery-notes.php:275
729
+ msgid ""
730
+ "I can't differentiate between Invoice, Delivery Notes & Receipt. The "
731
+ "templates are the same. "
732
+ msgstr ""
733
+
734
+ #: woocommerce-delivery-notes.php:281
735
+ msgid "The invoice sent through mail can't be downloaded as PDF directly."
736
+ msgstr ""
737
+
738
+ #: woocommerce-delivery-notes.php:287
739
+ msgid "The plugin is not compatible with another plugin."
740
+ msgstr ""
741
+
742
+ #: woocommerce-delivery-notes.php:293
743
+ msgid "This plugin is not useful to me."
744
+ msgstr ""
745
+
746
  # @ woocommerce-delivery-notes
747
+ #: woocommerce-delivery-notes.php:351
748
  msgid "Go to the settings page"
749
  msgstr "Zur Einstellungsseite des Plugins"
750
 
751
  # @ woocommerce-delivery-notes
752
+ #: woocommerce-delivery-notes.php:351
753
  msgid "Settings"
754
  msgstr "Einstellungen"
755
 
756
+ # @ woocommerce-delivery-notes
757
+ #~ msgid "Enable Invoices"
758
+ #~ msgstr "Rechnungen aktivieren"
759
+
760
+ #~ msgid "Enable Delivery Notes"
761
+ #~ msgstr "Lieferscheine aktivieren"
762
+
763
+ # @ woocommerce-delivery-notes
764
+ #~ msgid "Enable Receipts"
765
+ #~ msgstr "Belege aktivieren"
766
+
767
+ # @ woocommerce-delivery-notes
768
+ #~ msgid ""
769
+ #~ "You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s"
770
+ #~ "\">invoice</a>, <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s\">delivery "
771
+ #~ "note</a> or <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> "
772
+ #~ "template."
773
+ #~ msgstr ""
774
+ #~ "Sie können eine Vorschau der <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s"
775
+ #~ "\">Rechnung</a>, des <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s"
776
+ #~ "\">Lieferscheins</a> oder des <a href=\"%3$s\" target=\"%4$s\" class="
777
+ #~ "\"%5$s\">Belegs</a> anzeigen."
778
+
779
+ #~ msgid ""
780
+ #~ "With the FAQ in the readme file you can learn how to customize the "
781
+ #~ "template."
782
+ #~ msgstr ""
783
+ #~ "Mit den häufig gestellten Fragen in der Liesmich-Datei erfahren Sie, wie "
784
+ #~ "Sie die Vorlage anpassen können."
785
+
786
+ # @ woocommerce-delivery-notes
787
+ #~ msgid "Company/Shop Logo"
788
+ #~ msgstr "Firmen-/ Shop-Logo"
789
+
790
+ # @ woocommerce-delivery-notes
791
+ #~ msgid "Remove Logo"
792
+ #~ msgstr "Logo entfernen"
793
+
794
+ # @ woocommerce-delivery-notes
795
+ #~ msgid "Set Logo"
796
+ #~ msgstr "Logo festlegen"
797
+
798
+ # @ woocommerce-delivery-notes
799
+ #~ msgid "A company/shop logo representing your business."
800
+ #~ msgstr "Ein Firmen-/ Shop-Logo, welches Ihr Geschäft repräsentiert."
801
+
802
+ # @ woocommerce-delivery-notes
803
+ #~ msgid "Note:"
804
+ #~ msgstr "Hinweis:"
805
+
806
+ # @ woocommerce-delivery-notes
807
+ #~ msgid ""
808
+ #~ "When the image is printed, its pixel density will automatically be eight "
809
+ #~ "times higher than the original. This means, 1 printed inch will "
810
+ #~ "correspond to about 288 pixels on the screen. Example: an image with a "
811
+ #~ "width of 576 pixels and a height of 288 pixels will have a printed size "
812
+ #~ "of about 2 inches to 1 inch."
813
+ #~ msgstr ""
814
+ #~ "Wenn das Bild gedruckt wird, wird dessen Pixeldichte automatisch höher "
815
+ #~ "sein als das Original. Dies bedeutet, die Fläche von einem gedruckten "
816
+ #~ "Quadratzoll (ca. 2.54cm x 2.54cm) wird mit 288 Pixeln auf dem Bildschirm "
817
+ #~ "in Verbindung stehen. Beispiel: Ein Bild mit einer Breite von 576 Pixeln "
818
+ #~ "und einer Höhe von 288 Pixeln wird eine gedruckte Größe von etwa 2 Zoll x "
819
+ #~ "1 Zoll aufweisen (ca. 5.08 cm x 2.54cm)."
820
+
821
+ # @ woocommerce-delivery-notes
822
+ #~ msgid "Company/Shop Name"
823
+ #~ msgstr "Firmen-/ Shopname"
824
+
825
+ # @ woocommerce-delivery-notes
826
+ #~ msgid "Your company/shop name for the Delivery Note."
827
+ #~ msgstr "Ihr Firmen-/ Shop-Name für den Lieferschein/ die Rechnung."
828
+
829
+ # @ woocommerce-delivery-notes
830
+ #~ msgid ""
831
+ #~ "Leave blank to use the default Website/Blog title defined in WordPress "
832
+ #~ "settings. The name will be ignored when a Logo is set."
833
+ #~ msgstr ""
834
+ #~ "Leer lassen, um den standardmäßigen Webseiten- bzw. Blogtitel zu "
835
+ #~ "verwenden, der in den WordPress-Einstellungen festgelegt wird."
836
+
837
+ # @ woocommerce-delivery-notes
838
+ #~ msgid "Company/Shop Address"
839
+ #~ msgstr "Firmen-/ Shop-Anschrift"
840
+
841
+ # @ woocommerce-delivery-notes
842
+ #~ msgid ""
843
+ #~ "The postal address of the company/shop or even e-mail or telephone, which "
844
+ #~ "gets printed right after the company/shop name."
845
+ #~ msgstr ""
846
+ #~ "Die Postanschrift der Firma bzw. des Shops, welche rechts neben dem "
847
+ #~ "Firmen-/ Shopname ausgegeben wird, über den Bestelldaten."
848
+
849
+ # @ woocommerce-delivery-notes
850
+ #~ msgid "Leave blank to not print an address."
851
+ #~ msgstr "Leer lassen, um keine Anschrift mit auszudrucken."
852
+
853
+ # @ woocommerce-delivery-notes
854
+ #~ msgid ""
855
+ #~ "Add some personal notes, or season greetings or whatever (e.g. Thank You "
856
+ #~ "for Your Order!, Merry Christmas!, etc.)."
857
+ #~ msgstr ""
858
+ #~ "Fügen Sie einige persönliche Anmerkungen wie Dank, jahreszeitliche Grüße "
859
+ #~ "hinzu (z.B.: Danke für Ihre Bestellung!, Frohe Weihnachten!, etc.)."
860
+
861
+ # @ woocommerce-delivery-notes
862
+ #~ msgid "Leave blank to not print any personal notes."
863
+ #~ msgstr "Leer lassen, um keine persönlichen Anmerkungen mit auszudrucken."
864
+
865
+ # @ woocommerce-delivery-notes
866
+ #~ msgid "Returns Policy, Conditions, etc"
867
+ #~ msgstr "Rückgabe- und sonstige Bedingungen:"
868
+
869
+ # @ woocommerce-delivery-notes
870
+ #~ msgid ""
871
+ #~ "Here you can add some more policies, conditions etc. For example add a "
872
+ #~ "returns policy in case the client would like to send back some goods. In "
873
+ #~ "some countries (e.g. in the European Union) this is required so please "
874
+ #~ "add any required info in accordance with the statutory regulations."
875
+ #~ msgstr ""
876
+ #~ "Hier können Sie einige weitere Bedingungen angeben. Zum Beispiel "
877
+ #~ "Bedingungen für die Rückgabe, Widerrufsbelehrung etc. In einigen Ländern "
878
+ #~ "(z.B. innerhalb der EU) ist dies sogar vorgeschrieben - informieren Sie "
879
+ #~ "sich daher über die entsprechenden gesetzlichen Bestimmungen für Ihr Land."
880
+
881
+ # @ woocommerce-delivery-notes
882
+ #~ msgid "Leave blank to not print any policies or conditions."
883
+ #~ msgstr "Leer lassen, um keine Bedingungen mit auszudrucken."
884
+
885
+ # @ woocommerce-delivery-notes
886
+ #~ msgid ""
887
+ #~ "Add some further footer imprint, e-mail, telephone, copyright notes etc. "
888
+ #~ "This makes the printed sheets a bit more branded."
889
+ #~ msgstr ""
890
+ #~ "Fügen Sie Impressumangaben in der Fußzeile hinzu. Damit können die "
891
+ #~ "Ausdrucke noch stärker an Ihr CI angepasst werden."
892
+
893
+ # @ woocommerce-delivery-notes
894
+ #~ msgid "Leave blank to not print a footer."
895
+ #~ msgstr ""
896
+ #~ "Leer lassen, um keine Impressumangaben in der Fußzeile mit auszudrucken."
897
+
898
+ #~ msgid "Print Options"
899
+ #~ msgstr "Druckoptionen"
900
+
901
+ #~ msgid "Types"
902
+ #~ msgstr "Arten"
903
+
904
+ #~ msgid "Theme Options"
905
+ #~ msgstr "Themeoptionen"
906
+
907
+ # @ woocommerce-delivery-notes
908
+ #~ msgid "Order Numbering"
909
+ #~ msgstr "Bestellnummerierung"
910
+
911
+ #~ msgid "Invoice Numbering"
912
+ #~ msgstr "Rechnungsnummerierung"
913
+
914
+ # @ woocommerce-delivery-notes
915
+ #~ msgid "Invoice Number Start"
916
+ #~ msgstr "Rechnungsnummer Start"
917
+
918
+ #~ msgid "Start the numbering at the specified number."
919
+ #~ msgstr "Die Nummerierung beginnt bei der eingegebenen Zahl."
920
+
921
+ #~ msgid "Use only integers."
922
+ #~ msgstr "Nur Ganzzahlen verwenden."
923
+
924
+ # @ woocommerce-delivery-notes
925
+ #~ msgid "Invoice Number Prefix"
926
+ #~ msgstr "Rechnungsnummer Präfix"
927
+
928
+ # @ woocommerce-delivery-notes
929
+ #~ msgid "Leave blank to not add a prefix."
930
+ #~ msgstr "Leer lassen, um kein Präfix zu verwenden."
931
+
932
+ # @ woocommerce-delivery-notes
933
+ #~ msgid "Invoice Number Suffix"
934
+ #~ msgstr "Rechnungsnummer Suffix"
935
+
936
+ # @ woocommerce-delivery-notes
937
+ #~ msgid "Leave blank to not add a suffix."
938
+ #~ msgstr "Leer lassen, um kein Suffix zu verwenden."
939
+
940
+ # @ woocommerce-delivery-notes
941
+ #~ msgid "Invoice Number Counter"
942
+ #~ msgstr "Rechnungsnummer Zähler"
943
+
944
+ #~ msgid "Reset Counter …"
945
+ #~ msgstr "Zähler zurücksetzen …"
946
+
947
+ # @ woocommerce-delivery-notes
948
+ #~ msgid "Sequential Order Number"
949
+ #~ msgstr "Fortlaufende Bestellnummer"
950
+
951
+ # @ woocommerce-delivery-notes
952
+ #~ msgid "Sequential numbering is enabled."
953
+ #~ msgstr "Fortlaufende Nummerierung ist aktiviert."
954
+
955
+ # @ woocommerce-delivery-notes
956
+ #~ msgid ""
957
+ #~ "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
958
+ #~ "Numbers</a> Plugin."
959
+ #~ msgstr ""
960
+ #~ "Installieren und aktivieren Sie das kostenlose Plugin <a href=\"%s"
961
+ #~ "\">WooCommerce Sequential Order Numbers</a>."
962
+
963
  #~ msgid "Reset Counter"
964
  #~ msgstr "Zähler zurücksetzen"
965
 
997
  #~ msgstr[1] "%s Lieferscheine erstellt."
998
 
999
  #~ msgid "Already created invoice numbers are not affected by changes."
1000
+ #~ msgstr ""
1001
+ #~ "Bereits erzeugte Rechnungsnummern sind von Änderungen nicht betroffen."
languages/woocommerce-delivery-notes-es_ES.mo CHANGED
Binary file
languages/woocommerce-delivery-notes-es_ES.po CHANGED
@@ -3,394 +3,865 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
6
- "Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
7
- "POT-Creation-Date: 2014-06-28 17:13+0100\n"
8
- "PO-Revision-Date: 2014-07-14 17:37+0100\n"
9
- "Last-Translator: César Díaz Menes"
 
10
  "Language-Team: \n"
11
  "Language: es_ES\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
16
- "X-Generator: Poedit 1.5.4\n"
17
 
18
- #: ../includes/class-wcdn-settings.php:90
19
- #: ../includes/class-wcdn-theme.php:48
20
- #: ../includes/class-wcdn-theme.php:83
21
- #: ../includes/wcdn-template-functions.php:120
22
- msgid "Print"
23
- msgstr "Imprimir"
24
 
25
- #: ../includes/class-wcdn-settings.php:128
26
- msgid "Print Order"
27
- msgstr "Print Order"
28
 
29
- # @ woocommerce-delivery-notes
30
- #: ../includes/class-wcdn-settings.php:147
31
- #, php-format
32
- msgid "You can preview the <a href=\"%1$s\" target=\"%3$s\" class=\"%4$s\">invoice template</a> or <a href=\"%2$s\" target=\"%3$s\" class=\"%4$s\">delivery note template</a>."
 
 
33
  msgstr ""
34
 
35
- # @ woocommerce-delivery-notes
36
- #: ../includes/class-wcdn-settings.php:148
37
- msgid "With the FAQ in the readme file you can learn how to customize the template."
 
 
 
 
38
  msgstr ""
39
 
40
- #: ../includes/class-wcdn-settings.php:159
41
- msgid "Company/Shop Logo"
42
- msgstr "Logo Empresa/Tienda"
43
 
44
- #: ../includes/class-wcdn-settings.php:165
45
- msgid "Remove Logo"
46
- msgstr "Eliminar Logo"
47
 
48
- #: ../includes/class-wcdn-settings.php:166
49
- msgid "Set Logo"
50
- msgstr "Definir Logo"
51
 
52
- #: ../includes/class-wcdn-settings.php:170
53
- msgid "A company/shop logo representing your business."
54
- msgstr "Logo de la empresa/tienda que represente su negocio."
55
 
56
- #: ../includes/class-wcdn-settings.php:171
57
- #: ../includes/class-wcdn-settings.php:184
58
- #: ../includes/class-wcdn-settings.php:197
59
- #: ../includes/class-wcdn-settings.php:210
60
- #: ../includes/class-wcdn-settings.php:223
61
- #: ../includes/class-wcdn-settings.php:236
62
- #: ../includes/class-wcdn-settings.php:312
63
- #: ../includes/class-wcdn-settings.php:328
64
- #: ../includes/class-wcdn-settings.php:344
65
- msgid "Note:"
66
- msgstr "Nota:"
67
 
68
- #: ../includes/class-wcdn-settings.php:172
69
- msgid "When the image is printed, its pixel density will automatically be eight times higher than the original. This means, 1 printed inch will correspond to about 288 pixels on the screen. Example: an image with a width of 576 pixels and a height of 288 pixels will have a printed size of about 2 inches to 1 inch."
70
  msgstr ""
71
 
72
- #: ../includes/class-wcdn-settings.php:178
73
- msgid "Company/Shop Name"
74
- msgstr "Empresa/Nombre de la tienda"
75
 
76
- #: ../includes/class-wcdn-settings.php:183
77
- msgid "Your company/shop name for the Delivery Note."
78
- msgstr "Nombre de tu empresa/tienda para las Notas de Entrega."
79
 
80
- #: ../includes/class-wcdn-settings.php:185
81
- #, fuzzy
82
- msgid "Leave blank to use the default Website/Blog title defined in WordPress settings. The name will be ignored when a Logo is set."
83
- msgstr "Dejar en blanco para usar el Website por defecto/ Título del blog definido en los ajustes de WordPress."
84
 
85
- #: ../includes/class-wcdn-settings.php:191
86
- msgid "Company/Shop Address"
87
- msgstr "Empresa/Dirección de la tienda"
88
 
89
- #: ../includes/class-wcdn-settings.php:196
90
  #, fuzzy
91
- msgid "The postal address of the company/shop or even e-mail or telephone, which gets printed right after the company/shop name."
92
- msgstr "La dirección postal de la compañia/tienda, quedara impresa a la derecha del nombre de la compañia/tienda, debajo del listado de pedido."
93
 
94
- #: ../includes/class-wcdn-settings.php:198
95
- msgid "Leave blank to not print an address."
96
- msgstr "Dejar en blanco para no imprimir la dirección."
97
 
98
- #: ../includes/class-wcdn-settings.php:204
99
- msgid "Complimentary Close"
100
- msgstr "Cierre gratuito"
 
101
 
102
- #: ../includes/class-wcdn-settings.php:209
103
- msgid "Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
104
- msgstr "Añade notas personales, o felicitaciones o cualquier cosa (ej. ¡Gracias por tu pedido!, ¡Feliz Navidad!, ect.)"
105
 
106
- #: ../includes/class-wcdn-settings.php:211
107
- msgid "Leave blank to not print any personal notes."
108
- msgstr "Dejar en blanco para no imprimir notas personales."
109
 
110
- #: ../includes/class-wcdn-settings.php:217
111
  #, fuzzy
112
- msgid "Returns Policy, Conditions, etc"
113
- msgstr "Política de Devoluciones, Condiciones, etc.:"
114
 
115
- #: ../includes/class-wcdn-settings.php:222
116
- msgid "Here you can add some more policies, conditions etc. For example add a returns policy in case the client would like to send back some goods. In some countries (e.g. in the European Union) this is required so please add any required info in accordance with the statutory regulations."
117
- msgstr "Aquí puedes añadir algunas claúsulas, condiciones etc. Por ejemplo añade una política de de devolución en el caso de que el cliente quiera devolver algunos artículos. En algunos países (p.ej en la Unión Europea) esto es obligatorio, asi que por favor añade cualquier información obligatoria de acuerdo con las regulaciones estatutarias. "
118
 
119
- #: ../includes/class-wcdn-settings.php:224
120
- msgid "Leave blank to not print any policies or conditions."
121
- msgstr "Dejar en blanco para no imprimir cláusulas o condiciones."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
122
 
123
- #: ../includes/class-wcdn-settings.php:230
124
  #, fuzzy
125
  msgid "Footer"
126
  msgstr "Pie de Página"
127
 
128
- #: ../includes/class-wcdn-settings.php:235
129
- #, fuzzy
130
- msgid "Add some further footer imprint, e-mail, telephone, copyright notes etc. This makes the printed sheets a bit more branded."
131
- msgstr "Añade además de notas a pie de página, notas de copyright etc. para obtener hojas impresas que se ajusten un poco mas a tu marca."
132
-
133
- #: ../includes/class-wcdn-settings.php:237
134
- msgid "Leave blank to not print a footer."
135
- msgstr "Dejar en blanco para no imprimir el pie de página."
136
 
137
- #: ../includes/class-wcdn-settings.php:244
138
- msgid "Front-end Options"
139
- msgstr "Opciones Front-end"
140
 
141
  # @ woocommerce-delivery-notes
142
- #: ../includes/class-wcdn-settings.php:249
143
  msgid "Print Page Endpoint"
144
  msgstr "Endpoint Pagina de Impresión"
145
 
146
  # @ woocommerce-delivery-notes
147
- #: ../includes/class-wcdn-settings.php:256
148
- msgid "The endpoint is appended to the accounts page URL to print the order. It should be unique."
149
- msgstr "El Endpoint es añadido a la URL de la pagina de cuenta para ser impreso"
 
 
 
150
 
151
- #: ../includes/class-wcdn-settings.php:262
152
- msgid "Print Buttons"
153
- msgstr "Botones de Impresión"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
154
 
155
  # @ woocommerce-delivery-notes
156
- #: ../includes/class-wcdn-settings.php:269
157
  msgid "Show print button on the \"View Order\" page"
158
  msgstr "Mostrar botón de impresión en la página \"View Order\""
159
 
160
  # @ woocommerce-delivery-notes
161
- #: ../includes/class-wcdn-settings.php:276
162
  msgid "Show print buttons on the \"My Account\" page"
163
  msgstr "Mostrar botón de impresión en la página \"My Account\""
164
 
165
- #: ../includes/class-wcdn-settings.php:284
166
- #, fuzzy
167
- msgid "Order Numbering"
168
- msgstr "Número de Pedido"
169
-
170
- #: ../includes/class-wcdn-settings.php:289
171
- #: ../includes/wcdn-template-functions.php:209
172
- msgid "Invoice Number"
173
- msgstr "Número de Factura"
174
 
175
- #: ../includes/class-wcdn-settings.php:297
176
  msgid "Create invoice numbers"
177
  msgstr "Crear números de factua"
178
 
179
- #: ../includes/class-wcdn-settings.php:304
180
- msgid "Invoice Number Start"
181
- msgstr "Comiezo de números de factura"
182
-
183
- #: ../includes/class-wcdn-settings.php:311
184
- msgid "Start the numbering at the specified number."
185
- msgstr "Empezar el conteo en un número específico"
186
-
187
- #: ../includes/class-wcdn-settings.php:313
188
- msgid "Use only integers."
189
- msgstr "Usar únicamente enteros"
190
 
191
- #: ../includes/class-wcdn-settings.php:314
192
- #: ../includes/class-wcdn-settings.php:330
193
- #: ../includes/class-wcdn-settings.php:346
194
- msgid "Already created invoice numbers are not affected by changes."
195
- msgstr "Los números de factura ya creados no están afectados por los cambios"
196
 
197
- #: ../includes/class-wcdn-settings.php:320
198
- msgid "Invoice Number Prefix"
199
- msgstr "Prefijo de Número de Factura"
200
 
201
- #: ../includes/class-wcdn-settings.php:327
202
  msgid "This text will be prepended to the invoice number."
203
  msgstr "Este texto será adjuntado al número de factura"
204
 
205
- #: ../includes/class-wcdn-settings.php:329
206
- #, fuzzy
207
- msgid "Leave blank to not add a prefix."
208
- msgstr "Dejar en blanco para no imprimir la dirección."
209
-
210
- #: ../includes/class-wcdn-settings.php:336
211
- msgid "Invoice Number Suffix"
212
- msgstr "Sufijo de número de factua"
213
 
214
- #: ../includes/class-wcdn-settings.php:343
215
  msgid "This text will be appended to the invoice number."
216
  msgstr "Este texto sera anexado al número de factura"
217
 
218
- #: ../includes/class-wcdn-settings.php:345
219
- #, fuzzy
220
- msgid "Leave blank to not add a suffix."
221
- msgstr "Dejar en blanco para no imprimir el pie de página."
222
 
223
- #: ../includes/class-wcdn-settings.php:352
224
- #, fuzzy
225
- msgid "Sequential Order Number"
226
- msgstr "Número de pedido secuencial"
227
-
228
- #: ../includes/class-wcdn-settings.php:356
229
- msgid "Sequential numbering is enabled."
230
- msgstr "La numeración secuencial esta activada."
231
-
232
- #: ../includes/class-wcdn-settings.php:358
233
- #, php-format
234
- msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
235
- msgstr "Instalar y activar el plugin gratuito <a href=\"%s\">WooCommerce Números de Pedido Secuenciales</a>."
236
-
237
- #: ../includes/class-wcdn-writepanel.php:83
238
- #: ../includes/class-wcdn-writepanel.php:84
239
- #: ../includes/class-wcdn-writepanel.php:108
240
- #: ../includes/class-wcdn-writepanel.php:109
241
- #: ../includes/class-wcdn-writepanel.php:205
242
- msgid "Print Invoice"
243
- msgstr "Imprimir Factura"
244
 
245
- #: ../includes/class-wcdn-writepanel.php:86
246
- #: ../includes/class-wcdn-writepanel.php:87
247
- #: ../includes/class-wcdn-writepanel.php:111
248
- #: ../includes/class-wcdn-writepanel.php:112
249
- #: ../includes/class-wcdn-writepanel.php:206
250
- msgid "Print Delivery Note"
251
- msgstr "Imprimir Nota de Entrega"
252
 
253
- #: ../includes/class-wcdn-writepanel.php:89
254
- #: ../includes/class-wcdn-writepanel.php:90
255
- #: ../includes/class-wcdn-writepanel.php:115
256
- #: ../includes/class-wcdn-writepanel.php:116
257
- #: ../includes/class-wcdn-writepanel.php:207
258
- #, fuzzy
259
- msgid "Print Receipt"
260
- msgstr "Imprimir Factura"
261
 
262
- #: ../includes/class-wcdn-writepanel.php:176
263
- #, fuzzy, php-format
264
- msgid "Invoice created."
265
- msgid_plural "%s invoices created."
266
- msgstr[0] "Factura"
267
- msgstr[1] "Factura"
268
-
269
- #: ../includes/class-wcdn-writepanel.php:178
270
- #, fuzzy, php-format
271
- msgid "Delivery note created."
272
- msgid_plural "%s delivery notes created."
273
- msgstr[0] "Nota de Entrega"
274
- msgstr[1] "Nota de Entrega"
275
-
276
- #: ../includes/class-wcdn-writepanel.php:180
277
- #, php-format
278
- msgid "Receipt created."
279
- msgid_plural "%s receipts created."
280
- msgstr[0] "Recibo creado"
281
- msgstr[1] "%s recibos creados"
282
 
283
- #: ../includes/class-wcdn-writepanel.php:184
 
 
 
 
284
  #, fuzzy
285
  msgid "Print now"
286
  msgstr "Imprimir ahora"
287
 
288
- #: ../includes/class-wcdn-writepanel.php:195
289
  #, fuzzy
290
  msgid "Order Printing"
291
  msgstr "Imprimir pedido"
292
 
293
- #: ../includes/class-wcdn-writepanel.php:218
294
  msgid "Invoice number: "
295
  msgstr "Número de factura: "
296
 
297
- #: ../includes/class-wcdn-writepanel.php:219
298
  #, fuzzy
299
  msgid "Invoice date: "
300
  msgstr "Fecha de factura:"
301
 
302
- #: ../includes/wcdn-template-functions.php:32
303
- msgid "Invoice"
304
- msgstr "Factura"
305
 
306
- #: ../includes/wcdn-template-functions.php:34
307
- msgid "Delivery Note"
308
- msgstr "Nota de Entrega"
309
 
310
- #: ../includes/wcdn-template-functions.php:36
311
- msgid "Receipt"
312
  msgstr ""
313
 
314
- #: ../includes/wcdn-template-functions.php:38
315
- #, fuzzy
316
- msgid "Order"
317
- msgstr "Imprimir pedido"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
318
 
319
- #: ../includes/wcdn-template-functions.php:215
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
320
  msgid "Order Number"
321
  msgstr "Numero de Pedido"
322
 
323
- #: ../includes/wcdn-template-functions.php:220
324
  msgid "Order Date"
325
  msgstr "Fecha de pedido"
326
 
327
- #: ../includes/wcdn-template-functions.php:225
328
  msgid "Payment Method"
329
  msgstr "Forma de Pago"
330
 
331
  # @ woocommerce-delivery-notes
332
- #: ../includes/wcdn-template-functions.php:231
333
- msgid "Email"
334
- msgstr "Email"
335
-
336
- # @ woocommerce-delivery-notes
337
- #: ../includes/wcdn-template-functions.php:238
338
  msgid "Telephone"
339
  msgstr "Teléfono"
340
 
341
- #: ../includes/wcdn-template-functions.php:271
342
  msgid "SKU:"
343
  msgstr "SKU:"
344
 
345
- #: ../templates/print-order/print-content.php:28
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
346
  msgid "Billing Address"
347
  msgstr "Dirección de Facturación"
348
 
349
- #: ../templates/print-order/print-content.php:31
350
- #: ../templates/print-order/print-content.php:42
351
  msgid "N/A"
352
  msgstr "No Disponible"
353
 
354
- #: ../templates/print-order/print-content.php:39
355
  msgid "Shipping Address"
356
  msgstr "Dirección de Envío"
357
 
358
- #: ../templates/print-order/print-content.php:74
359
  msgid "Product"
360
  msgstr "Producto"
361
 
362
- #: ../templates/print-order/print-content.php:75
 
 
 
 
363
  msgid "Quantity"
364
  msgstr "Cantidad"
365
 
366
- #: ../templates/print-order/print-content.php:76
367
  #, fuzzy
368
  msgid "Total"
369
  msgstr "Total"
370
 
371
- #: ../templates/print-order/print-content.php:100
372
  msgid "Download:"
373
  msgstr "Descarga:"
374
 
375
  # @ woocommerce-delivery-notes
376
- #: ../templates/print-order/print-content.php:101
377
- #, php-format
378
  msgid "%s Files"
379
  msgstr "%s Ficheros"
380
 
381
- #: ../templates/print-order/print-content.php:148
382
  #, fuzzy
383
  msgid "Customer Note"
384
  msgstr "Notas del Cliente"
385
 
386
- #: ../woocommerce-delivery-notes.php:144
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
387
  msgid "Go to the settings page"
388
  msgstr "Ir a la página de ajustes"
389
 
390
- #: ../woocommerce-delivery-notes.php:144
391
  msgid "Settings"
392
  msgstr "Ajustes"
393
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
394
  #~ msgid "2.0"
395
  #~ msgstr "2.0"
396
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/woocommerce-"
7
+ "delivery-notes\n"
8
+ "POT-Creation-Date: 2018-10-22 18:58+0530\n"
9
+ "PO-Revision-Date: 2018-10-22 18:59+0530\n"
10
+ "Last-Translator: César Díaz MenesLanguage-Team:\n"
11
  "Language-Team: \n"
12
  "Language: es_ES\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
+ "X-Generator: Poedit 1.8.7.1\n"
18
 
19
+ #: includes/class-wcdn-print.php:39 includes/class-wcdn-settings.php:237
20
+ msgid "Invoice"
21
+ msgstr "Factura"
 
 
 
22
 
23
+ #: includes/class-wcdn-print.php:40
24
+ msgid "Invoices"
25
+ msgstr ""
26
 
27
+ #: includes/class-wcdn-print.php:41
28
+ msgid "Print Invoice"
29
+ msgstr "Imprimir Factura"
30
+
31
+ #: includes/class-wcdn-print.php:42
32
+ msgid "Print Invoices"
33
  msgstr ""
34
 
35
+ #: includes/class-wcdn-print.php:43
36
+ #, fuzzy
37
+ msgid "Invoice created."
38
+ msgstr "Factura"
39
+
40
+ #: includes/class-wcdn-print.php:44
41
+ msgid "Invoices created."
42
  msgstr ""
43
 
44
+ #: includes/class-wcdn-print.php:45
45
+ msgid "Show \"Print Invoice\" button"
46
+ msgstr ""
47
 
48
+ #: includes/class-wcdn-print.php:51
49
+ msgid "Delivery Note"
50
+ msgstr "Nota de Entrega"
51
 
52
+ #: includes/class-wcdn-print.php:52
53
+ msgid "Delivery Notes"
54
+ msgstr ""
55
 
56
+ #: includes/class-wcdn-print.php:53
57
+ msgid "Print Delivery Note"
58
+ msgstr "Imprimir Nota de Entrega"
59
 
60
+ #: includes/class-wcdn-print.php:54
61
+ msgid "Print Delivery Notes"
62
+ msgstr ""
 
 
 
 
 
 
 
 
63
 
64
+ #: includes/class-wcdn-print.php:55
65
+ msgid "Delivery Note created."
66
  msgstr ""
67
 
68
+ #: includes/class-wcdn-print.php:56
69
+ msgid "Delivery Notes created."
70
+ msgstr ""
71
 
72
+ #: includes/class-wcdn-print.php:57
73
+ msgid "Show \"Print Delivery Note\" button"
74
+ msgstr ""
75
 
76
+ #: includes/class-wcdn-print.php:63
77
+ msgid "Receipt"
78
+ msgstr ""
 
79
 
80
+ #: includes/class-wcdn-print.php:64
81
+ msgid "Receipts"
82
+ msgstr ""
83
 
84
+ #: includes/class-wcdn-print.php:65
85
  #, fuzzy
86
+ msgid "Print Receipt"
87
+ msgstr "Imprimir Factura"
88
 
89
+ #: includes/class-wcdn-print.php:66
90
+ msgid "Print Receipts"
91
+ msgstr ""
92
 
93
+ #: includes/class-wcdn-print.php:67
94
+ #, fuzzy
95
+ msgid "Receipt created."
96
+ msgstr "Recibo creado"
97
 
98
+ #: includes/class-wcdn-print.php:68
99
+ msgid "Receipts created."
100
+ msgstr ""
101
 
102
+ #: includes/class-wcdn-print.php:69
103
+ msgid "Show \"Print Receipt\" button"
104
+ msgstr ""
105
 
106
+ #: includes/class-wcdn-print.php:78
107
  #, fuzzy
108
+ msgid "Order"
109
+ msgstr "Imprimir pedido"
110
 
111
+ #: includes/class-wcdn-print.php:79
112
+ msgid "Orders"
113
+ msgstr ""
114
 
115
+ #: includes/class-wcdn-print.php:80
116
+ msgid "Print Order"
117
+ msgstr "Print Order"
118
+
119
+ #: includes/class-wcdn-print.php:81
120
+ msgid "Print Orders"
121
+ msgstr ""
122
+
123
+ #: includes/class-wcdn-print.php:93
124
+ msgid "Default"
125
+ msgstr ""
126
+
127
+ #: includes/class-wcdn-settings.php:67
128
+ msgid ""
129
+ "Do you really want to reset the counter to zero? This process can't be "
130
+ "undone."
131
+ msgstr ""
132
+
133
+ #: includes/class-wcdn-settings.php:75 includes/class-wcdn-theme.php:57
134
+ #: includes/class-wcdn-theme.php:94 includes/wcdn-template-functions.php:130
135
+ msgid "Print"
136
+ msgstr "Imprimir"
137
+
138
+ #: includes/class-wcdn-settings.php:106
139
+ msgid "Template"
140
+ msgstr ""
141
+
142
+ #: includes/class-wcdn-settings.php:113
143
+ msgid "Style"
144
+ msgstr ""
145
+
146
+ #: includes/class-wcdn-settings.php:114
147
+ msgid ""
148
+ "The default print style. Read the <a href=\"%1$s\">FAQ</a> to learn how to "
149
+ "customize it."
150
+ msgstr ""
151
+
152
+ #: includes/class-wcdn-settings.php:124
153
+ msgid "Shop Logo"
154
+ msgstr ""
155
+
156
+ #: includes/class-wcdn-settings.php:130
157
+ msgid ""
158
+ "A shop logo representing your business. When the image is printed, its pixel "
159
+ "density will automatically be eight times higher than the original. This "
160
+ "means, 1 printed inch will correspond to about 288 pixels on the screen."
161
+ msgstr ""
162
+
163
+ #: includes/class-wcdn-settings.php:134
164
+ msgid "Shop Name"
165
+ msgstr ""
166
+
167
+ #: includes/class-wcdn-settings.php:140
168
+ msgid ""
169
+ "The shop name. Leave blank to use the default Website or Blog title defined "
170
+ "in WordPress settings. The name will be ignored when a Logo is set."
171
+ msgstr ""
172
+
173
+ #: includes/class-wcdn-settings.php:144
174
+ msgid "Shop Address"
175
+ msgstr ""
176
+
177
+ #: includes/class-wcdn-settings.php:145
178
+ msgid "The postal address of the shop or even e-mail or telephone."
179
+ msgstr ""
180
+
181
+ #: includes/class-wcdn-settings.php:154
182
+ msgid "Complimentary Close"
183
+ msgstr "Cierre gratuito"
184
+
185
+ #: includes/class-wcdn-settings.php:155
186
+ msgid "Add a personal close, notes or season greetings."
187
+ msgstr ""
188
+
189
+ #: includes/class-wcdn-settings.php:164
190
+ msgid "Policies"
191
+ msgstr ""
192
+
193
+ #: includes/class-wcdn-settings.php:165
194
+ msgid "Add the shop policies, conditions, etc."
195
+ msgstr ""
196
 
197
+ #: includes/class-wcdn-settings.php:174
198
  #, fuzzy
199
  msgid "Footer"
200
  msgstr "Pie de Página"
201
 
202
+ #: includes/class-wcdn-settings.php:175
203
+ msgid ""
204
+ "Add a footer imprint, instructions, copyright notes, e-mail, telephone, etc."
205
+ msgstr ""
 
 
 
 
206
 
207
+ #: includes/class-wcdn-settings.php:189
208
+ msgid "Pages & Buttons"
209
+ msgstr ""
210
 
211
  # @ woocommerce-delivery-notes
212
+ #: includes/class-wcdn-settings.php:196
213
  msgid "Print Page Endpoint"
214
  msgstr "Endpoint Pagina de Impresión"
215
 
216
  # @ woocommerce-delivery-notes
217
+ #: includes/class-wcdn-settings.php:202
218
+ msgid ""
219
+ "The endpoint is appended to the accounts page URL to print the order. It "
220
+ "should be unique."
221
+ msgstr ""
222
+ "El Endpoint es añadido a la URL de la pagina de cuenta para ser impreso"
223
 
224
+ # @ woocommerce-delivery-notes
225
+ #: includes/class-wcdn-settings.php:206
226
+ #: includes/wcdn-template-functions.php:275
227
+ msgid "Email"
228
+ msgstr "Email"
229
+
230
+ #: includes/class-wcdn-settings.php:207
231
+ msgid "Show print link in customer emails"
232
+ msgstr ""
233
+
234
+ #: includes/class-wcdn-settings.php:211
235
+ msgid ""
236
+ "This includes the emails for a new, processing and completed order. On top "
237
+ "of that the customer invoice email also includes the link."
238
+ msgstr ""
239
+
240
+ #: includes/class-wcdn-settings.php:215
241
+ msgid "My Account"
242
+ msgstr ""
243
 
244
  # @ woocommerce-delivery-notes
245
+ #: includes/class-wcdn-settings.php:216
246
  msgid "Show print button on the \"View Order\" page"
247
  msgstr "Mostrar botón de impresión en la página \"View Order\""
248
 
249
  # @ woocommerce-delivery-notes
250
+ #: includes/class-wcdn-settings.php:224
251
  msgid "Show print buttons on the \"My Account\" page"
252
  msgstr "Mostrar botón de impresión en la página \"My Account\""
253
 
254
+ #: includes/class-wcdn-settings.php:244
255
+ msgid "Numbering"
256
+ msgstr ""
 
 
 
 
 
 
257
 
258
+ #: includes/class-wcdn-settings.php:245
259
  msgid "Create invoice numbers"
260
  msgstr "Crear números de factua"
261
 
262
+ #: includes/class-wcdn-settings.php:253
263
+ msgid "Next Number"
264
+ msgstr ""
 
 
 
 
 
 
 
 
265
 
266
+ #: includes/class-wcdn-settings.php:260
267
+ msgid "The next invoice number."
268
+ msgstr ""
 
 
269
 
270
+ #: includes/class-wcdn-settings.php:264
271
+ msgid "Number Prefix"
272
+ msgstr ""
273
 
274
+ #: includes/class-wcdn-settings.php:271
275
  msgid "This text will be prepended to the invoice number."
276
  msgstr "Este texto será adjuntado al número de factura"
277
 
278
+ #: includes/class-wcdn-settings.php:275
279
+ msgid "Number Suffix"
280
+ msgstr ""
 
 
 
 
 
281
 
282
+ #: includes/class-wcdn-settings.php:282
283
  msgid "This text will be appended to the invoice number."
284
  msgstr "Este texto sera anexado al número de factura"
285
 
286
+ #: includes/class-wcdn-settings.php:327
287
+ msgid "Admin"
288
+ msgstr ""
 
289
 
290
+ #: includes/class-wcdn-settings.php:330
291
+ msgid ""
292
+ "The print buttons are available on the order listing and on the order detail "
293
+ "screen."
294
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
295
 
296
+ #: includes/class-wcdn-settings.php:372
297
+ msgid ""
298
+ "This section lets you customise the content. You can preview the <a href="
299
+ "\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target="
300
+ "\"%4$s\" class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s"
301
+ "\" class=\"%5$s\">receipt</a> template."
302
+ msgstr ""
303
 
304
+ #: includes/class-wcdn-settings.php:435
305
+ msgid "Select"
306
+ msgstr ""
 
 
 
 
 
307
 
308
+ #: includes/class-wcdn-settings.php:439
309
+ msgid "Remove"
310
+ msgstr ""
311
+
312
+ #: includes/class-wcdn-theme.php:112
313
+ msgid "Print your order"
314
+ msgstr ""
315
+
316
+ #: includes/class-wcdn-theme.php:119
317
+ msgid "Print:"
318
+ msgstr ""
 
 
 
 
 
 
 
 
 
319
 
320
+ #: includes/class-wcdn-theme.php:119
321
+ msgid "Open print view in browser"
322
+ msgstr ""
323
+
324
+ #: includes/class-wcdn-writepanel.php:218
325
  #, fuzzy
326
  msgid "Print now"
327
  msgstr "Imprimir ahora"
328
 
329
+ #: includes/class-wcdn-writepanel.php:232
330
  #, fuzzy
331
  msgid "Order Printing"
332
  msgstr "Imprimir pedido"
333
 
334
+ #: includes/class-wcdn-writepanel.php:259
335
  msgid "Invoice number: "
336
  msgstr "Número de factura: "
337
 
338
+ #: includes/class-wcdn-writepanel.php:260
339
  #, fuzzy
340
  msgid "Invoice date: "
341
  msgstr "Fecha de factura:"
342
 
343
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:75
344
+ msgid "If you have a moment, please let us know why you are deactivating"
345
+ msgstr ""
346
 
347
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:76
348
+ msgid "Submit & Deactivate"
349
+ msgstr ""
350
 
351
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:77
352
+ msgid "Deactivate"
353
  msgstr ""
354
 
355
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:78
356
+ msgid "Cancel"
357
+ msgstr ""
358
+
359
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:79
360
+ msgid "Yes - Deactivate"
361
+ msgstr ""
362
+
363
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:83
364
+ msgid "I found a better plugin"
365
+ msgstr ""
366
+
367
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:84
368
+ msgid "What's the plugin's name?"
369
+ msgstr ""
370
+
371
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:85
372
+ msgid "I only needed the plugin for a short period"
373
+ msgstr ""
374
+
375
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:86
376
+ msgid "The plugin is not working"
377
+ msgstr ""
378
+
379
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:87
380
+ msgid "Kindly share what didn't work so we can fix it for future users..."
381
+ msgstr ""
382
+
383
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:88
384
+ msgid "The plugin is great, but I need specific feature that you don't support"
385
+ msgstr ""
386
+
387
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:89
388
+ msgid "What feature?"
389
+ msgstr ""
390
+
391
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:90
392
+ msgid "I don't like to share my information with you"
393
+ msgstr ""
394
+
395
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:91
396
+ msgctxt ""
397
+ "the text of the 'other' reason for deactivating the plugin that is shown in "
398
+ "the modal box."
399
+ msgid "Other"
400
+ msgstr ""
401
+
402
+ #: includes/component/faq-support/ts-faq-support.php:127
403
+ msgid "Frequently Asked Questions for %s"
404
+ msgstr ""
405
+
406
+ #: includes/component/faq-support/ts-faq-support.php:176
407
+ msgid "FAQ & Support"
408
+ msgstr ""
409
+
410
+ #: includes/component/tracking-data/ts-tracking.php:120
411
+ #: includes/component/tracking-data/ts-tracking.php:180
412
+ msgid "Reset usage tracking"
413
+ msgstr ""
414
+
415
+ #: includes/component/tracking-data/ts-tracking.php:122
416
+ msgid ""
417
+ "This will reset your usage tracking settings, causing it to show the opt-in "
418
+ "banner again and not sending any data"
419
+ msgstr ""
420
+
421
+ #: includes/component/tracking-data/ts-tracking.php:225
422
+ msgid "Once in a Week"
423
+ msgstr ""
424
+
425
+ #: includes/component/tracking-data/ts-tracking.php:311
426
+ msgid "Allow"
427
+ msgstr ""
428
+
429
+ #: includes/component/tracking-data/ts-tracking.php:312
430
+ msgid "No thanks"
431
+ msgstr ""
432
+
433
+ #: includes/component/welcome-page/templates/social-media-elements.php:10
434
+ #: includes/wcdn-welcome.php:231
435
+ msgid "Follow %s"
436
+ msgstr ""
437
+
438
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:19
439
+ #: includes/wcdn-welcome.php:99
440
+ msgid ""
441
+ "Thank you for activating or updating to the latest version of WooCommerce "
442
+ "Print Invoice & Delivery Note! If you're a first time user, welcome! You're "
443
+ "well on your way to explore the print functionality for your WooCommerce "
444
+ "orders."
445
+ msgstr ""
446
+
447
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:29
448
+ #: includes/wcdn-welcome.php:109
449
+ msgid "Get Started with WooCommerce Print Invoice & Delivery Note"
450
+ msgstr ""
451
+
452
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:33
453
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:62
454
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:68
455
+ #: includes/wcdn-welcome.php:113 includes/wcdn-welcome.php:142
456
+ #: includes/wcdn-welcome.php:148
457
+ msgid "WooCommerce Print Invoice & Delivery Note"
458
+ msgstr ""
459
+
460
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:37
461
+ #: includes/wcdn-welcome.php:117
462
+ msgid "Add settings"
463
+ msgstr ""
464
+
465
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:39
466
+ #: includes/wcdn-welcome.php:119
467
+ msgid ""
468
+ "To enable the print functionality for your invoices, delivery notes & "
469
+ "receipts, you just need to set it up under WooCommerce -> Settings -> Print "
470
+ "page. Here you can also setup the Company Logo that will appear on the "
471
+ "printed items, Company Address & other information."
472
+ msgstr ""
473
 
474
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:41
475
+ #: includes/wcdn-welcome.php:121
476
+ msgid "Click Here to go to Print page"
477
+ msgstr ""
478
+
479
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:52
480
+ #: includes/wcdn-welcome.php:132
481
+ msgid "Enable Print button for Customers."
482
+ msgstr ""
483
+
484
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:54
485
+ #: includes/wcdn-welcome.php:134
486
+ msgid ""
487
+ "Allow customers to print the WooCommerce order invoice from the customer "
488
+ "notification email, from the My Account page or from the View Order page "
489
+ "under My Account."
490
+ msgstr ""
491
+
492
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:56
493
+ #: includes/wcdn-welcome.php:136
494
+ msgid "Click Here to Enable Print button for Customers"
495
+ msgstr ""
496
+
497
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:72
498
+ #: includes/wcdn-welcome.php:152
499
+ msgid "Enable Invoice Numbering"
500
+ msgstr ""
501
+
502
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:74
503
+ msgid ""
504
+ "If you want to change the default invoice numbers & set some numbering "
505
+ "scheme of your own, then you can set it here with a starting invoice number, "
506
+ "a prefix & suffix. For example, you could set it as: TS/001/17-18."
507
+ msgstr ""
508
+
509
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:76
510
+ #: includes/wcdn-welcome.php:156
511
+ msgid "Click Here to Enable Invoice Numbering"
512
+ msgstr ""
513
+
514
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:87
515
+ #: includes/wcdn-welcome.php:167
516
+ msgid "Getting to Know Tyche Softwares"
517
+ msgstr ""
518
+
519
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:90
520
+ #: includes/wcdn-welcome.php:170
521
+ msgid "Visit the Tyche Softwares Website"
522
+ msgstr ""
523
+
524
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:91
525
+ #: includes/wcdn-welcome.php:171
526
+ msgid "View all Premium Plugins"
527
+ msgstr ""
528
+
529
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:100
530
+ #: includes/wcdn-welcome.php:180
531
+ msgid "Meet the team"
532
+ msgstr ""
533
+
534
+ #: includes/component/welcome-page/ts-welcome.php:167
535
+ msgid "Welcome to %s %s"
536
+ msgstr ""
537
+
538
+ #: includes/wcdn-all-component.php:118
539
+ msgid ""
540
+ "Thank you for using WooCommerce Print Invoice & Delivery Note plugin! Now "
541
+ "make your deliveries more accurate by allowing customers to select their "
542
+ "preferred delivery date & time from Product Delivery Date Pro for "
543
+ "WooCommerce. <strong><a target=\"_blank\" href= \"https://www.tychesoftwares."
544
+ "com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/?"
545
+ "utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">Get "
546
+ "it now!</a></strong>"
547
+ msgstr ""
548
+
549
+ #: includes/wcdn-all-component.php:120
550
+ msgid ""
551
+ "Never login to your admin to check your deliveries by syncing the delivery "
552
+ "dates to the Google Calendar from Product Delivery Date Pro for WooCommerce. "
553
+ "<strong><a target=\"_blank\" href= \"https://www.tychesoftwares.com/store/"
554
+ "premium-plugins/product-delivery-date-pro-for-woocommerce/checkout?"
555
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
556
+ "\">Get it now!</a></strong>"
557
+ msgstr ""
558
+
559
+ #: includes/wcdn-all-component.php:122
560
+ msgid ""
561
+ "You can now view all your deliveries in list view or in calendar view from "
562
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
563
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
564
+ "delivery-date-pro-for-woocommerce/checkout?"
565
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
566
+ "\">Get it now!</a></strong>."
567
+ msgstr ""
568
+
569
+ #: includes/wcdn-all-component.php:124
570
+ msgid ""
571
+ "Allow your customers to pay extra for delivery for certain Weekdays/Dates "
572
+ "from Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
573
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
574
+ "delivery-date-pro-for-woocommerce/checkout?"
575
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
576
+ "\">Have it now!</a></strong>."
577
+ msgstr ""
578
+
579
+ #: includes/wcdn-all-component.php:126
580
+ msgid ""
581
+ "Customers can now edit the Delivery date & time on cart and checkout page or "
582
+ "they can reschedule the deliveries for the already placed orders from "
583
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
584
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
585
+ "delivery-date-pro-for-woocommerce/checkout?"
586
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
587
+ "\">Have it now!</a></strong>."
588
+ msgstr ""
589
+
590
+ #: includes/wcdn-template-functions.php:246
591
+ msgid "Invoice Number"
592
+ msgstr "Número de Factura"
593
+
594
+ #: includes/wcdn-template-functions.php:253
595
+ msgid "Invoice Date"
596
+ msgstr ""
597
+
598
+ #: includes/wcdn-template-functions.php:259
599
  msgid "Order Number"
600
  msgstr "Numero de Pedido"
601
 
602
+ #: includes/wcdn-template-functions.php:264
603
  msgid "Order Date"
604
  msgstr "Fecha de pedido"
605
 
606
+ #: includes/wcdn-template-functions.php:269
607
  msgid "Payment Method"
608
  msgstr "Forma de Pago"
609
 
610
  # @ woocommerce-delivery-notes
611
+ #: includes/wcdn-template-functions.php:282
 
 
 
 
 
612
  msgid "Telephone"
613
  msgstr "Teléfono"
614
 
615
+ #: includes/wcdn-template-functions.php:315
616
  msgid "SKU:"
617
  msgstr "SKU:"
618
 
619
+ #: includes/wcdn-template-functions.php:409
620
+ #: includes/wcdn-template-functions.php:413
621
+ msgid "(Includes %s)"
622
+ msgstr ""
623
+
624
+ #: includes/wcdn-template-functions.php:429
625
+ msgid "Refund"
626
+ msgstr ""
627
+
628
+ #: includes/wcdn-template-functions.php:441
629
+ msgid "Order Subtotal"
630
+ msgstr ""
631
+
632
+ #: includes/wcdn-welcome.php:54
633
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note %s"
634
+ msgstr ""
635
+
636
+ #: includes/wcdn-welcome.php:55
637
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note"
638
+ msgstr ""
639
+
640
+ #: includes/wcdn-welcome.php:154
641
+ msgid ""
642
+ "f you want to change the default invoice numbers & set some numbering scheme "
643
+ "of your own, then you can set it here with a starting invoice number, a "
644
+ "prefix & suffix. For example, you could set it as: TS/001/17-18."
645
+ msgstr ""
646
+
647
+ #: includes/wcdn-welcome.php:186
648
+ msgid "Current Offers"
649
+ msgstr ""
650
+
651
+ #: templates/print-order/print-content.php:28
652
  msgid "Billing Address"
653
  msgstr "Dirección de Facturación"
654
 
655
+ #: templates/print-order/print-content.php:31
656
+ #: templates/print-order/print-content.php:40
657
  msgid "N/A"
658
  msgstr "No Disponible"
659
 
660
+ #: templates/print-order/print-content.php:37
661
  msgid "Shipping Address"
662
  msgstr "Dirección de Envío"
663
 
664
+ #: templates/print-order/print-content.php:71
665
  msgid "Product"
666
  msgstr "Producto"
667
 
668
+ #: templates/print-order/print-content.php:72
669
+ msgid "Price"
670
+ msgstr ""
671
+
672
+ #: templates/print-order/print-content.php:73
673
  msgid "Quantity"
674
  msgstr "Cantidad"
675
 
676
+ #: templates/print-order/print-content.php:74
677
  #, fuzzy
678
  msgid "Total"
679
  msgstr "Total"
680
 
681
+ #: templates/print-order/print-content.php:147
682
  msgid "Download:"
683
  msgstr "Descarga:"
684
 
685
  # @ woocommerce-delivery-notes
686
+ #: templates/print-order/print-content.php:148
 
687
  msgid "%s Files"
688
  msgstr "%s Ficheros"
689
 
690
+ #: templates/print-order/print-content.php:202
691
  #, fuzzy
692
  msgid "Customer Note"
693
  msgstr "Notas del Cliente"
694
 
695
+ #: woocommerce-delivery-notes.php:96 woocommerce-delivery-notes.php:103
696
+ msgid "Cheatin&#8217; huh?"
697
+ msgstr ""
698
+
699
+ #: woocommerce-delivery-notes.php:275
700
+ msgid ""
701
+ "I can't differentiate between Invoice, Delivery Notes & Receipt. The "
702
+ "templates are the same. "
703
+ msgstr ""
704
+
705
+ #: woocommerce-delivery-notes.php:281
706
+ msgid "The invoice sent through mail can't be downloaded as PDF directly."
707
+ msgstr ""
708
+
709
+ #: woocommerce-delivery-notes.php:287
710
+ msgid "The plugin is not compatible with another plugin."
711
+ msgstr ""
712
+
713
+ #: woocommerce-delivery-notes.php:293
714
+ msgid "This plugin is not useful to me."
715
+ msgstr ""
716
+
717
+ #: woocommerce-delivery-notes.php:351
718
  msgid "Go to the settings page"
719
  msgstr "Ir a la página de ajustes"
720
 
721
+ #: woocommerce-delivery-notes.php:351
722
  msgid "Settings"
723
  msgstr "Ajustes"
724
 
725
+ #~ msgid "Company/Shop Logo"
726
+ #~ msgstr "Logo Empresa/Tienda"
727
+
728
+ #~ msgid "Remove Logo"
729
+ #~ msgstr "Eliminar Logo"
730
+
731
+ #~ msgid "Set Logo"
732
+ #~ msgstr "Definir Logo"
733
+
734
+ #~ msgid "A company/shop logo representing your business."
735
+ #~ msgstr "Logo de la empresa/tienda que represente su negocio."
736
+
737
+ #~ msgid "Note:"
738
+ #~ msgstr "Nota:"
739
+
740
+ #~ msgid "Company/Shop Name"
741
+ #~ msgstr "Empresa/Nombre de la tienda"
742
+
743
+ #~ msgid "Your company/shop name for the Delivery Note."
744
+ #~ msgstr "Nombre de tu empresa/tienda para las Notas de Entrega."
745
+
746
+ #, fuzzy
747
+ #~ msgid ""
748
+ #~ "Leave blank to use the default Website/Blog title defined in WordPress "
749
+ #~ "settings. The name will be ignored when a Logo is set."
750
+ #~ msgstr ""
751
+ #~ "Dejar en blanco para usar el Website por defecto/ Título del blog "
752
+ #~ "definido en los ajustes de WordPress."
753
+
754
+ #~ msgid "Company/Shop Address"
755
+ #~ msgstr "Empresa/Dirección de la tienda"
756
+
757
+ #, fuzzy
758
+ #~ msgid ""
759
+ #~ "The postal address of the company/shop or even e-mail or telephone, which "
760
+ #~ "gets printed right after the company/shop name."
761
+ #~ msgstr ""
762
+ #~ "La dirección postal de la compañia/tienda, quedara impresa a la derecha "
763
+ #~ "del nombre de la compañia/tienda, debajo del listado de pedido."
764
+
765
+ #~ msgid "Leave blank to not print an address."
766
+ #~ msgstr "Dejar en blanco para no imprimir la dirección."
767
+
768
+ #~ msgid ""
769
+ #~ "Add some personal notes, or season greetings or whatever (e.g. Thank You "
770
+ #~ "for Your Order!, Merry Christmas!, etc.)."
771
+ #~ msgstr ""
772
+ #~ "Añade notas personales, o felicitaciones o cualquier cosa (ej. ¡Gracias "
773
+ #~ "por tu pedido!, ¡Feliz Navidad!, ect.)"
774
+
775
+ #~ msgid "Leave blank to not print any personal notes."
776
+ #~ msgstr "Dejar en blanco para no imprimir notas personales."
777
+
778
+ #, fuzzy
779
+ #~ msgid "Returns Policy, Conditions, etc"
780
+ #~ msgstr "Política de Devoluciones, Condiciones, etc.:"
781
+
782
+ #~ msgid ""
783
+ #~ "Here you can add some more policies, conditions etc. For example add a "
784
+ #~ "returns policy in case the client would like to send back some goods. In "
785
+ #~ "some countries (e.g. in the European Union) this is required so please "
786
+ #~ "add any required info in accordance with the statutory regulations."
787
+ #~ msgstr ""
788
+ #~ "Aquí puedes añadir algunas claúsulas, condiciones etc. Por ejemplo añade "
789
+ #~ "una política de de devolución en el caso de que el cliente quiera "
790
+ #~ "devolver algunos artículos. En algunos países (p.ej en la Unión Europea) "
791
+ #~ "esto es obligatorio, asi que por favor añade cualquier información "
792
+ #~ "obligatoria de acuerdo con las regulaciones estatutarias. "
793
+
794
+ #~ msgid "Leave blank to not print any policies or conditions."
795
+ #~ msgstr "Dejar en blanco para no imprimir cláusulas o condiciones."
796
+
797
+ #, fuzzy
798
+ #~ msgid ""
799
+ #~ "Add some further footer imprint, e-mail, telephone, copyright notes etc. "
800
+ #~ "This makes the printed sheets a bit more branded."
801
+ #~ msgstr ""
802
+ #~ "Añade además de notas a pie de página, notas de copyright etc. para "
803
+ #~ "obtener hojas impresas que se ajusten un poco mas a tu marca."
804
+
805
+ #~ msgid "Leave blank to not print a footer."
806
+ #~ msgstr "Dejar en blanco para no imprimir el pie de página."
807
+
808
+ #~ msgid "Front-end Options"
809
+ #~ msgstr "Opciones Front-end"
810
+
811
+ #~ msgid "Print Buttons"
812
+ #~ msgstr "Botones de Impresión"
813
+
814
+ #, fuzzy
815
+ #~ msgid "Order Numbering"
816
+ #~ msgstr "Número de Pedido"
817
+
818
+ #~ msgid "Invoice Number Start"
819
+ #~ msgstr "Comiezo de números de factura"
820
+
821
+ #~ msgid "Start the numbering at the specified number."
822
+ #~ msgstr "Empezar el conteo en un número específico"
823
+
824
+ #~ msgid "Use only integers."
825
+ #~ msgstr "Usar únicamente enteros"
826
+
827
+ #~ msgid "Already created invoice numbers are not affected by changes."
828
+ #~ msgstr ""
829
+ #~ "Los números de factura ya creados no están afectados por los cambios"
830
+
831
+ #~ msgid "Invoice Number Prefix"
832
+ #~ msgstr "Prefijo de Número de Factura"
833
+
834
+ #, fuzzy
835
+ #~ msgid "Leave blank to not add a prefix."
836
+ #~ msgstr "Dejar en blanco para no imprimir la dirección."
837
+
838
+ #~ msgid "Invoice Number Suffix"
839
+ #~ msgstr "Sufijo de número de factua"
840
+
841
+ #, fuzzy
842
+ #~ msgid "Leave blank to not add a suffix."
843
+ #~ msgstr "Dejar en blanco para no imprimir el pie de página."
844
+
845
+ #, fuzzy
846
+ #~ msgid "Sequential Order Number"
847
+ #~ msgstr "Número de pedido secuencial"
848
+
849
+ #~ msgid "Sequential numbering is enabled."
850
+ #~ msgstr "La numeración secuencial esta activada."
851
+
852
+ #~ msgid ""
853
+ #~ "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
854
+ #~ "Numbers</a> Plugin."
855
+ #~ msgstr ""
856
+ #~ "Instalar y activar el plugin gratuito <a href=\"%s\">WooCommerce Números "
857
+ #~ "de Pedido Secuenciales</a>."
858
+
859
+ #, fuzzy
860
+ #~ msgid "Delivery note created."
861
+ #~ msgid_plural "%s delivery notes created."
862
+ #~ msgstr[0] "Nota de Entrega"
863
+ #~ msgstr[1] "Nota de Entrega"
864
+
865
  #~ msgid "2.0"
866
  #~ msgstr "2.0"
867
 
languages/woocommerce-delivery-notes-et.mo CHANGED
Binary file
languages/woocommerce-delivery-notes-et.po CHANGED
@@ -8,9 +8,10 @@
8
  msgid ""
9
  msgstr ""
10
  "Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
11
- "Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
12
- "POT-Creation-Date: 2014-12-29 12:21+0200\n"
13
- "PO-Revision-Date: 2014-12-29 13:07+0200\n"
 
14
  "Last-Translator: Risto Niinemets <risto@konekt.ee>\n"
15
  "Language-Team: \n"
16
  "Language: et_EE\n"
@@ -18,454 +19,935 @@ msgstr ""
18
  "Content-Type: text/plain; charset=UTF-8\n"
19
  "Content-Transfer-Encoding: 8bit\n"
20
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
21
- "X-Generator: Poedit 1.7.1\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;"
24
- "_nx:4c,1,2;_nx_noop:4c,1,2;esc_attr_e;esc_attr__\n"
 
25
  "X-Poedit-Basepath: .\n"
26
  "X-Textdomain-Support: yes\n"
27
  "X-Poedit-SearchPath-0: ..\n"
28
 
29
- #: ../includes/class-wcdn-settings.php:72
30
- msgid "Do you really want to reset the counter to zero?"
31
- msgstr "Kas oled kindel, et soovid algseadistada arvenumbri?"
32
-
33
  # @ woocommerce-delivery-notes
34
- #: ../includes/class-wcdn-settings.php:102 ../includes/class-wcdn-theme.php:55 ../includes/class-wcdn-theme.php:90
35
- #: ../includes/wcdn-template-functions.php:127
36
- msgid "Print"
37
- msgstr "Prindi"
 
 
 
 
38
 
39
  # @ woocommerce-delivery-notes
40
- #: ../includes/class-wcdn-settings.php:157
41
- msgid "Print Order"
42
- msgstr "Tellimuste printimine"
43
 
44
- #: ../includes/class-wcdn-settings.php:176
45
- #, php-format
46
- msgid ""
47
- "You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target=\"%4$s\" "
48
- "class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> template."
49
  msgstr ""
50
- "Eelvaates on võimalik vaadata <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">arve</a>, <a href=\"%2$s\" target="
51
- "\"%4$s\" class=\"%5$s\">saatepaberi</a> ning <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">kviitungi</a> "
52
- "kujundust."
53
 
54
  # @ woocommerce-delivery-notes
55
- #: ../includes/class-wcdn-settings.php:177
56
- msgid "With the FAQ in the readme file you can learn how to customize the template."
57
- msgstr "Arvete, saatepaberite ning kviitungite kujunduse muutmise kohta on kirjas readme failis FAQ sektsioonis."
 
58
 
59
- # @ woocommerce-delivery-notes
60
- #: ../includes/class-wcdn-settings.php:188
61
- msgid "Company/Shop Logo"
62
- msgstr "Ettevõtte logo"
63
 
64
- # @ woocommerce-delivery-notes
65
- #: ../includes/class-wcdn-settings.php:194
66
- msgid "Remove Logo"
67
- msgstr "Eemalda logo"
68
 
69
  # @ woocommerce-delivery-notes
70
- #: ../includes/class-wcdn-settings.php:195
71
- msgid "Set Logo"
72
- msgstr "Määra logo"
73
 
74
- # @ woocommerce-delivery-notes
75
- #: ../includes/class-wcdn-settings.php:199
76
- msgid "A company/shop logo representing your business."
77
- msgstr "Ettevõtte/poe tunnusgraafika."
78
 
79
  # @ woocommerce-delivery-notes
80
- #: ../includes/class-wcdn-settings.php:200 ../includes/class-wcdn-settings.php:213
81
- #: ../includes/class-wcdn-settings.php:226 ../includes/class-wcdn-settings.php:239
82
- #: ../includes/class-wcdn-settings.php:252 ../includes/class-wcdn-settings.php:265
83
- #: ../includes/class-wcdn-settings.php:369 ../includes/class-wcdn-settings.php:384
84
- #: ../includes/class-wcdn-settings.php:399
85
- msgid "Note:"
86
- msgstr "Märkus:"
87
 
88
- # @ woocommerce-delivery-notes
89
- #: ../includes/class-wcdn-settings.php:201
90
- msgid ""
91
- "When the image is printed, its pixel density will automatically be eight times higher than the original. This "
92
- "means, 1 printed inch will correspond to about 288 pixels on the screen. Example: an image with a width of 576 "
93
- "pixels and a height of 288 pixels will have a printed size of about 2 inches to 1 inch."
94
  msgstr ""
95
- "Logo printimisel on pikslite tihedus automaatselt 8 korda kõrgem kui originaalis. See tähendab, et prinditud 1 "
96
- "toll (2.54cm) on vastav umbes 288 pikslile arvuti ekraanil. Näiteks: logo laiusega 576 pikslit ning kõrgusega 288 "
97
- "pikslit, on prinditult umbes 2 tolli laiune ning 1 tolli kõrgune."
98
 
99
- # @ woocommerce-delivery-notes
100
- #: ../includes/class-wcdn-settings.php:207
101
- msgid "Company/Shop Name"
102
- msgstr "Ettevõtte nimi"
103
 
104
- # @ woocommerce-delivery-notes
105
- #: ../includes/class-wcdn-settings.php:212
106
- msgid "Your company/shop name for the Delivery Note."
107
- msgstr "Sinu ettevõtte/poe nimetus saatepaberil."
108
 
109
- # @ woocommerce-delivery-notes
110
- #: ../includes/class-wcdn-settings.php:214
111
- msgid ""
112
- "Leave blank to use the default Website/Blog title defined in WordPress settings. The name will be ignored when a "
113
- "Logo is set."
114
  msgstr ""
115
- "Tühjaks jätmisel kasutatakse lehekülje vaikimisi pealkirja, mis on seadistatud sätetes. Nime ei näidata juhul, "
116
- "kui logo on määratud."
117
 
118
- # @ woocommerce-delivery-notes
119
- #: ../includes/class-wcdn-settings.php:220
120
- msgid "Company/Shop Address"
121
- msgstr "Ettevõtte aadress"
122
 
123
- # @ woocommerce-delivery-notes
124
- #: ../includes/class-wcdn-settings.php:225
125
- msgid ""
126
- "The postal address of the company/shop or even e-mail or telephone, which gets printed right after the company/"
127
- "shop name."
128
- msgstr "Ettevõtte/poe postiaadress, e-post või hoopis telefoni number, mis prinditakse nime järele."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
129
 
130
  # @ woocommerce-delivery-notes
131
- #: ../includes/class-wcdn-settings.php:227
132
- msgid "Leave blank to not print an address."
133
- msgstr "Aadressi mitte printimiseks jäta see tühjaks."
134
 
135
- #: ../includes/class-wcdn-settings.php:233
136
- msgid "Complimentary Close"
137
- msgstr "Täiendav informatsioon"
138
 
139
  # @ woocommerce-delivery-notes
140
- #: ../includes/class-wcdn-settings.php:238
 
 
 
 
 
 
 
 
 
 
 
 
141
  msgid ""
142
- "Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
143
- msgstr "Lisa näiteks tänutähed, hooajaline tervitus või midagi sarnast (näiteks Aitäh tellimuse eest! vms)."
 
144
 
145
  # @ woocommerce-delivery-notes
146
- #: ../includes/class-wcdn-settings.php:240
147
- msgid "Leave blank to not print any personal notes."
148
- msgstr "Täiendava informatsiooni mitte printimiseks jäta see tühjaks."
 
149
 
150
- # @ woocommerce-delivery-notes
151
- #: ../includes/class-wcdn-settings.php:246
152
- msgid "Returns Policy, Conditions, etc"
153
- msgstr "Tingimused"
154
 
155
- # @ woocommerce-delivery-notes
156
- #: ../includes/class-wcdn-settings.php:251
 
 
 
157
  msgid ""
158
- "Here you can add some more policies, conditions etc. For example add a returns policy in case the client would "
159
- "like to send back some goods. In some countries (e.g. in the European Union) this is required so please add any "
160
- "required info in accordance with the statutory regulations."
161
  msgstr ""
162
- "Siia on võimalik lisada tagastamise ja ostutingimused või muud taolist. Näiteks lisa tagastamise tingimused "
163
- "juhuks, kui klient soovib saata midagi tagasi. Euroopa liidus on selline informatsioon nõutud."
164
 
165
- # @ woocommerce-delivery-notes
166
- #: ../includes/class-wcdn-settings.php:253
167
- msgid "Leave blank to not print any policies or conditions."
168
- msgstr "Kasutustingimuste mitte printimiseks jäta see tühjaks."
169
 
170
- # @ woocommerce-delivery-notes
171
- #: ../includes/class-wcdn-settings.php:259
172
- msgid "Footer"
173
- msgstr "Jalus"
 
 
174
 
175
- # @ woocommerce-delivery-notes
176
- #: ../includes/class-wcdn-settings.php:264
 
 
 
177
  msgid ""
178
- "Add some further footer imprint, e-mail, telephone, copyright notes etc. This makes the printed sheets a bit more "
179
- "branded."
180
  msgstr ""
181
- "Lisa jalusesse veel lisaks informatsiooni, nagu näiteks e-posti aadress, telefon, kasutusõigused (copyright) või "
182
- "muud taolist. See muudab prinditud leheküljed rohkem esinduslikumaks."
183
 
184
- # @ woocommerce-delivery-notes
185
- #: ../includes/class-wcdn-settings.php:266
186
- msgid "Leave blank to not print a footer."
187
- msgstr "Jaluse mitte printimiseks jäta see tühjaks."
188
 
189
- #: ../includes/class-wcdn-settings.php:272
190
- msgid "Types"
191
- msgstr "Funktsioonid"
 
 
 
 
 
 
 
 
 
 
 
 
192
 
193
- #: ../includes/class-wcdn-settings.php:279
194
- msgid "Enable Invoices"
195
- msgstr "Aktiveeri arved"
196
 
197
- #: ../includes/class-wcdn-settings.php:286
198
- msgid "Enable Delivery Notes"
199
- msgstr "Aktiveeri saatekirjad"
 
200
 
201
- #: ../includes/class-wcdn-settings.php:293
202
- msgid "Enable Receipts"
203
- msgstr "Aktiveeri kviitungid"
 
204
 
205
- #: ../includes/class-wcdn-settings.php:301
206
- msgid "Front-end Options"
207
- msgstr "Avalehe seadistused"
208
 
209
  # @ woocommerce-delivery-notes
210
- #: ../includes/class-wcdn-settings.php:306
211
  msgid "Print Page Endpoint"
212
  msgstr "Printimise sihtpunkt"
213
 
214
  # @ woocommerce-delivery-notes
215
- #: ../includes/class-wcdn-settings.php:313
216
- msgid "The endpoint is appended to the accounts page URL to print the order. It should be unique."
217
- msgstr "Sihtpunkt lisatakse \"Minu Konto\" aadressi lõppu. See peab olema unikaalne."
 
 
 
 
 
 
 
 
 
 
 
 
 
218
 
219
- #: ../includes/class-wcdn-settings.php:319
220
- msgid "Print Buttons"
221
- msgstr "Printimise nupud"
 
 
 
 
 
 
222
 
223
  # @ woocommerce-delivery-notes
224
- #: ../includes/class-wcdn-settings.php:326
225
  msgid "Show print button on the \"View Order\" page"
226
  msgstr "Näita printimise nuppu \"Vaata tellimust\" leheküljel"
227
 
228
  # @ woocommerce-delivery-notes
229
- #: ../includes/class-wcdn-settings.php:333
230
  msgid "Show print buttons on the \"My Account\" page"
231
  msgstr "Näita printimise nuppu \"Minu konto\" leheküljel"
232
 
233
- # @ woocommerce-delivery-notes
234
- #: ../includes/class-wcdn-settings.php:341
235
- msgid "Order Numbering"
236
- msgstr "Tellimuste nummerdamine"
237
-
238
- #: ../includes/class-wcdn-settings.php:346 ../includes/wcdn-template-functions.php:224
239
- msgid "Invoice Number"
240
- msgstr "Arve number"
241
 
242
- #: ../includes/class-wcdn-settings.php:354
243
  msgid "Create invoice numbers"
244
  msgstr "Aktiveeri arvete nummerdamine"
245
 
246
- #: ../includes/class-wcdn-settings.php:361
247
- msgid "Invoice Number Start"
248
- msgstr "Arvete algusnumber"
249
-
250
- #: ../includes/class-wcdn-settings.php:368
251
- msgid "Start the numbering at the specified number."
252
- msgstr "Nummerdamist alustatakse sellest numbrist alates."
253
 
254
- #: ../includes/class-wcdn-settings.php:370
255
- msgid "Use only integers."
256
- msgstr "Kasuta ainult numbrilisi väärtuseid"
257
 
258
- #: ../includes/class-wcdn-settings.php:376
259
- msgid "Invoice Number Prefix"
260
- msgstr "Arvenumbri eesliide"
261
 
262
- #: ../includes/class-wcdn-settings.php:383
263
  msgid "This text will be prepended to the invoice number."
264
  msgstr "See tekst lisatakse arvenumbri ette."
265
 
266
- #: ../includes/class-wcdn-settings.php:385
267
- msgid "Leave blank to not add a prefix."
268
- msgstr "Eesliite mitte lisamiseks jäta see tühjaks."
269
-
270
- #: ../includes/class-wcdn-settings.php:391
271
- msgid "Invoice Number Suffix"
272
- msgstr "Arvenumbri järelliide"
273
 
274
- #: ../includes/class-wcdn-settings.php:398
275
  msgid "This text will be appended to the invoice number."
276
  msgstr "See tekst lisatakse arvenumbri lõppu."
277
 
278
- #: ../includes/class-wcdn-settings.php:400
279
- msgid "Leave blank to not add a suffix."
280
- msgstr "Järelliite mitte lisamiseks jäta see tühjaks."
281
-
282
- #: ../includes/class-wcdn-settings.php:406
283
- msgid "Invoice Number Counter"
284
- msgstr "Arvenumbri hetkeväärtus"
285
-
286
- #: ../includes/class-wcdn-settings.php:415
287
- msgid "Reset Counter"
288
- msgstr "Algseadista nummerdus"
289
-
290
- #: ../includes/class-wcdn-settings.php:421
291
- msgid "Sequential Order Number"
292
- msgstr "Järjestikune tellimuste nummerdamine"
293
-
294
- # @ woocommerce-delivery-notes
295
- #: ../includes/class-wcdn-settings.php:426
296
- msgid "Sequential numbering is enabled."
297
- msgstr "Järjestikune nummerdamine on aktiveeritud."
298
 
299
- # @ woocommerce-delivery-notes
300
- #: ../includes/class-wcdn-settings.php:428
301
- #, php-format
302
- msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
303
- msgstr "Lae alla ja aktiveeri tasuta <a href=\"%s\">WooCommerce Sequential Order Numbers</a> plugin."
304
 
305
- # @ woocommerce-delivery-notes
306
- #: ../includes/class-wcdn-writepanel.php:101 ../includes/class-wcdn-writepanel.php:102
307
- #: ../includes/class-wcdn-writepanel.php:135 ../includes/class-wcdn-writepanel.php:136
308
- #: ../includes/class-wcdn-writepanel.php:267
309
- msgid "Print Invoice"
310
- msgstr "Prindi arve"
 
311
 
312
- # @ woocommerce-delivery-notes
313
- #: ../includes/class-wcdn-writepanel.php:107 ../includes/class-wcdn-writepanel.php:108
314
- #: ../includes/class-wcdn-writepanel.php:140 ../includes/class-wcdn-writepanel.php:141
315
- #: ../includes/class-wcdn-writepanel.php:271
316
- msgid "Print Delivery Note"
317
- msgstr "Prindi saatepaber"
318
 
319
- #: ../includes/class-wcdn-writepanel.php:113 ../includes/class-wcdn-writepanel.php:114
320
- #: ../includes/class-wcdn-writepanel.php:145 ../includes/class-wcdn-writepanel.php:146
321
- #: ../includes/class-wcdn-writepanel.php:275
322
- msgid "Print Receipt"
323
- msgstr "Prindi kviitung"
324
 
325
- # @ woocommerce-delivery-notes
326
- #: ../includes/class-wcdn-writepanel.php:237
327
- #, php-format
328
- msgid "Invoice created."
329
- msgid_plural "%s invoices created."
330
- msgstr[0] "Arve on loodud."
331
- msgstr[1] "Kokku loodi %s arvet."
332
 
333
- # @ woocommerce-delivery-notes
334
- #: ../includes/class-wcdn-writepanel.php:239
335
- #, php-format
336
- msgid "Delivery note created."
337
- msgid_plural "%s delivery notes created."
338
- msgstr[0] "Saatepaber on loodud."
339
- msgstr[1] "Kokku loodi %s saatepaberit."
340
 
341
- #: ../includes/class-wcdn-writepanel.php:241
342
- #, php-format
343
- msgid "Receipt created."
344
- msgid_plural "%s receipts created."
345
- msgstr[0] "Kviitung on loodud."
346
- msgstr[1] "Kokku loodi %s kviitungit."
347
 
348
  # @ woocommerce-delivery-notes
349
- #: ../includes/class-wcdn-writepanel.php:245
350
  msgid "Print now"
351
  msgstr "Prindi välja"
352
 
353
  # @ woocommerce-delivery-notes
354
- #: ../includes/class-wcdn-writepanel.php:256
355
  msgid "Order Printing"
356
  msgstr "Tellimuse printimine"
357
 
358
- #: ../includes/class-wcdn-writepanel.php:288
359
  msgid "Invoice number: "
360
  msgstr "Arve number:"
361
 
362
- #: ../includes/class-wcdn-writepanel.php:289
363
  msgid "Invoice date: "
364
  msgstr "Arve kuupäev:"
365
 
366
- # @ woocommerce-delivery-notes
367
- #: ../includes/wcdn-template-functions.php:39
368
- msgid "Invoice"
369
- msgstr "Arve"
370
 
371
- # @ woocommerce-delivery-notes
372
- #: ../includes/wcdn-template-functions.php:41
373
- msgid "Delivery Note"
374
- msgstr "Saatepaber"
375
 
376
- #: ../includes/wcdn-template-functions.php:43
377
- msgid "Receipt"
378
- msgstr "Kviitung"
379
 
380
- # @ woocommerce-delivery-notes
381
- #: ../includes/wcdn-template-functions.php:45
382
- msgid "Order"
383
- msgstr "Tellimus"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
384
 
385
  # @ woocommerce-delivery-notes
386
- #: ../includes/wcdn-template-functions.php:230
387
  msgid "Order Number"
388
  msgstr "Tellimuse nr"
389
 
390
  # @ woocommerce-delivery-notes
391
- #: ../includes/wcdn-template-functions.php:235
392
  msgid "Order Date"
393
  msgstr "Tellimuse kuupäev"
394
 
395
  # @ woocommerce-delivery-notes
396
- #: ../includes/wcdn-template-functions.php:240
397
  msgid "Payment Method"
398
  msgstr "Maksemeetod"
399
 
400
  # @ woocommerce-delivery-notes
401
- #: ../includes/wcdn-template-functions.php:246
402
- msgid "Email"
403
- msgstr "E-post"
404
-
405
- # @ woocommerce-delivery-notes
406
- #: ../includes/wcdn-template-functions.php:253
407
  msgid "Telephone"
408
  msgstr "Telefon"
409
 
410
- #: ../includes/wcdn-template-functions.php:286
411
  msgid "SKU:"
412
  msgstr "SKU:"
413
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
414
  # @ woocommerce-delivery-notes
415
- #: ../templates/print-order/print-content.php:28
416
  msgid "Billing Address"
417
  msgstr "Arvelduse aadress"
418
 
419
  # @ woocommerce-delivery-notes
420
- #: ../templates/print-order/print-content.php:31 ../templates/print-order/print-content.php:40
 
421
  msgid "N/A"
422
  msgstr "N/A"
423
 
424
  # @ woocommerce-delivery-notes
425
- #: ../templates/print-order/print-content.php:37
426
  msgid "Shipping Address"
427
  msgstr "Tarneaadress"
428
 
429
  # @ woocommerce-delivery-notes
430
- #: ../templates/print-order/print-content.php:70
431
  msgid "Product"
432
  msgstr "Toote"
433
 
434
- #: ../templates/print-order/print-content.php:71
435
  msgid "Price"
436
  msgstr "Hind"
437
 
438
- #: ../templates/print-order/print-content.php:72
439
  msgid "Quantity"
440
  msgstr "Kogus"
441
 
442
  # @ woocommerce-delivery-notes
443
- #: ../templates/print-order/print-content.php:73
444
  msgid "Total"
445
  msgstr "Kokku"
446
 
447
  # @ woocommerce-delivery-notes
448
- #: ../templates/print-order/print-content.php:97
449
  msgid "Download:"
450
  msgstr "Lae alla:"
451
 
452
  # @ woocommerce-delivery-notes
453
- #: ../templates/print-order/print-content.php:98
454
- #, php-format
455
  msgid "%s Files"
456
  msgstr "%s faili"
457
 
458
  # @ woocommerce-delivery-notes
459
- #: ../templates/print-order/print-content.php:149
460
  msgid "Customer Note"
461
  msgstr "Kliendi märkmed"
462
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
463
  # @ woocommerce-delivery-notes
464
- #: ../woocommerce-delivery-notes.php:180
465
  msgid "Go to the settings page"
466
  msgstr "Mine seadete leheküljele"
467
 
468
  # @ woocommerce-delivery-notes
469
- #: ../woocommerce-delivery-notes.php:180
470
  msgid "Settings"
471
  msgstr "Seaded"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  msgid ""
9
  msgstr ""
10
  "Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
11
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/woocommerce-"
12
+ "delivery-notes\n"
13
+ "POT-Creation-Date: 2018-10-22 18:59+0530\n"
14
+ "PO-Revision-Date: 2018-10-22 18:59+0530\n"
15
  "Last-Translator: Risto Niinemets <risto@konekt.ee>\n"
16
  "Language-Team: \n"
17
  "Language: et_EE\n"
19
  "Content-Type: text/plain; charset=UTF-8\n"
20
  "Content-Transfer-Encoding: 8bit\n"
21
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
22
+ "X-Generator: Poedit 1.8.7.1\n"
23
  "X-Poedit-SourceCharset: UTF-8\n"
24
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
25
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
26
+ "esc_attr_e;esc_attr__\n"
27
  "X-Poedit-Basepath: .\n"
28
  "X-Textdomain-Support: yes\n"
29
  "X-Poedit-SearchPath-0: ..\n"
30
 
 
 
 
 
31
  # @ woocommerce-delivery-notes
32
+ #: includes/class-wcdn-print.php:39 includes/class-wcdn-settings.php:237
33
+ #, fuzzy
34
+ msgid "Invoice"
35
+ msgstr "Arve"
36
+
37
+ #: includes/class-wcdn-print.php:40
38
+ msgid "Invoices"
39
+ msgstr ""
40
 
41
  # @ woocommerce-delivery-notes
42
+ #: includes/class-wcdn-print.php:41
43
+ msgid "Print Invoice"
44
+ msgstr "Prindi arve"
45
 
46
+ #: includes/class-wcdn-print.php:42
47
+ msgid "Print Invoices"
 
 
 
48
  msgstr ""
 
 
 
49
 
50
  # @ woocommerce-delivery-notes
51
+ #: includes/class-wcdn-print.php:43
52
+ #, fuzzy
53
+ msgid "Invoice created."
54
+ msgstr "Arve on loodud."
55
 
56
+ #: includes/class-wcdn-print.php:44
57
+ msgid "Invoices created."
58
+ msgstr ""
 
59
 
60
+ #: includes/class-wcdn-print.php:45
61
+ msgid "Show \"Print Invoice\" button"
62
+ msgstr ""
 
63
 
64
  # @ woocommerce-delivery-notes
65
+ #: includes/class-wcdn-print.php:51
66
+ msgid "Delivery Note"
67
+ msgstr "Saatepaber"
68
 
69
+ #: includes/class-wcdn-print.php:52
70
+ msgid "Delivery Notes"
71
+ msgstr ""
 
72
 
73
  # @ woocommerce-delivery-notes
74
+ #: includes/class-wcdn-print.php:53
75
+ msgid "Print Delivery Note"
76
+ msgstr "Prindi saatepaber"
 
 
 
 
77
 
78
+ #: includes/class-wcdn-print.php:54
79
+ msgid "Print Delivery Notes"
 
 
 
 
80
  msgstr ""
 
 
 
81
 
82
+ #: includes/class-wcdn-print.php:55
83
+ msgid "Delivery Note created."
84
+ msgstr ""
 
85
 
86
+ #: includes/class-wcdn-print.php:56
87
+ msgid "Delivery Notes created."
88
+ msgstr ""
 
89
 
90
+ #: includes/class-wcdn-print.php:57
91
+ msgid "Show \"Print Delivery Note\" button"
 
 
 
92
  msgstr ""
 
 
93
 
94
+ #: includes/class-wcdn-print.php:63
95
+ msgid "Receipt"
96
+ msgstr "Kviitung"
 
97
 
98
+ #: includes/class-wcdn-print.php:64
99
+ msgid "Receipts"
100
+ msgstr ""
101
+
102
+ #: includes/class-wcdn-print.php:65
103
+ msgid "Print Receipt"
104
+ msgstr "Prindi kviitung"
105
+
106
+ #: includes/class-wcdn-print.php:66
107
+ msgid "Print Receipts"
108
+ msgstr ""
109
+
110
+ #: includes/class-wcdn-print.php:67
111
+ #, fuzzy
112
+ msgid "Receipt created."
113
+ msgstr "Kviitung on loodud."
114
+
115
+ #: includes/class-wcdn-print.php:68
116
+ msgid "Receipts created."
117
+ msgstr ""
118
+
119
+ #: includes/class-wcdn-print.php:69
120
+ msgid "Show \"Print Receipt\" button"
121
+ msgstr ""
122
 
123
  # @ woocommerce-delivery-notes
124
+ #: includes/class-wcdn-print.php:78
125
+ msgid "Order"
126
+ msgstr "Tellimus"
127
 
128
+ #: includes/class-wcdn-print.php:79
129
+ msgid "Orders"
130
+ msgstr ""
131
 
132
  # @ woocommerce-delivery-notes
133
+ #: includes/class-wcdn-print.php:80
134
+ msgid "Print Order"
135
+ msgstr "Tellimuste printimine"
136
+
137
+ #: includes/class-wcdn-print.php:81
138
+ msgid "Print Orders"
139
+ msgstr ""
140
+
141
+ #: includes/class-wcdn-print.php:93
142
+ msgid "Default"
143
+ msgstr ""
144
+
145
+ #: includes/class-wcdn-settings.php:67
146
  msgid ""
147
+ "Do you really want to reset the counter to zero? This process can't be "
148
+ "undone."
149
+ msgstr ""
150
 
151
  # @ woocommerce-delivery-notes
152
+ #: includes/class-wcdn-settings.php:75 includes/class-wcdn-theme.php:57
153
+ #: includes/class-wcdn-theme.php:94 includes/wcdn-template-functions.php:130
154
+ msgid "Print"
155
+ msgstr "Prindi"
156
 
157
+ #: includes/class-wcdn-settings.php:106
158
+ msgid "Template"
159
+ msgstr ""
 
160
 
161
+ #: includes/class-wcdn-settings.php:113
162
+ msgid "Style"
163
+ msgstr ""
164
+
165
+ #: includes/class-wcdn-settings.php:114
166
  msgid ""
167
+ "The default print style. Read the <a href=\"%1$s\">FAQ</a> to learn how to "
168
+ "customize it."
 
169
  msgstr ""
 
 
170
 
171
+ #: includes/class-wcdn-settings.php:124
172
+ msgid "Shop Logo"
173
+ msgstr ""
 
174
 
175
+ #: includes/class-wcdn-settings.php:130
176
+ msgid ""
177
+ "A shop logo representing your business. When the image is printed, its pixel "
178
+ "density will automatically be eight times higher than the original. This "
179
+ "means, 1 printed inch will correspond to about 288 pixels on the screen."
180
+ msgstr ""
181
 
182
+ #: includes/class-wcdn-settings.php:134
183
+ msgid "Shop Name"
184
+ msgstr ""
185
+
186
+ #: includes/class-wcdn-settings.php:140
187
  msgid ""
188
+ "The shop name. Leave blank to use the default Website or Blog title defined "
189
+ "in WordPress settings. The name will be ignored when a Logo is set."
190
  msgstr ""
 
 
191
 
192
+ #: includes/class-wcdn-settings.php:144
193
+ msgid "Shop Address"
194
+ msgstr ""
 
195
 
196
+ #: includes/class-wcdn-settings.php:145
197
+ msgid "The postal address of the shop or even e-mail or telephone."
198
+ msgstr ""
199
+
200
+ #: includes/class-wcdn-settings.php:154
201
+ msgid "Complimentary Close"
202
+ msgstr "Täiendav informatsioon"
203
+
204
+ #: includes/class-wcdn-settings.php:155
205
+ msgid "Add a personal close, notes or season greetings."
206
+ msgstr ""
207
+
208
+ #: includes/class-wcdn-settings.php:164
209
+ msgid "Policies"
210
+ msgstr ""
211
 
212
+ #: includes/class-wcdn-settings.php:165
213
+ msgid "Add the shop policies, conditions, etc."
214
+ msgstr ""
215
 
216
+ # @ woocommerce-delivery-notes
217
+ #: includes/class-wcdn-settings.php:174
218
+ msgid "Footer"
219
+ msgstr "Jalus"
220
 
221
+ #: includes/class-wcdn-settings.php:175
222
+ msgid ""
223
+ "Add a footer imprint, instructions, copyright notes, e-mail, telephone, etc."
224
+ msgstr ""
225
 
226
+ #: includes/class-wcdn-settings.php:189
227
+ msgid "Pages & Buttons"
228
+ msgstr ""
229
 
230
  # @ woocommerce-delivery-notes
231
+ #: includes/class-wcdn-settings.php:196
232
  msgid "Print Page Endpoint"
233
  msgstr "Printimise sihtpunkt"
234
 
235
  # @ woocommerce-delivery-notes
236
+ #: includes/class-wcdn-settings.php:202
237
+ msgid ""
238
+ "The endpoint is appended to the accounts page URL to print the order. It "
239
+ "should be unique."
240
+ msgstr ""
241
+ "Sihtpunkt lisatakse \"Minu Konto\" aadressi lõppu. See peab olema unikaalne."
242
+
243
+ # @ woocommerce-delivery-notes
244
+ #: includes/class-wcdn-settings.php:206
245
+ #: includes/wcdn-template-functions.php:275
246
+ msgid "Email"
247
+ msgstr "E-post"
248
+
249
+ #: includes/class-wcdn-settings.php:207
250
+ msgid "Show print link in customer emails"
251
+ msgstr ""
252
 
253
+ #: includes/class-wcdn-settings.php:211
254
+ msgid ""
255
+ "This includes the emails for a new, processing and completed order. On top "
256
+ "of that the customer invoice email also includes the link."
257
+ msgstr ""
258
+
259
+ #: includes/class-wcdn-settings.php:215
260
+ msgid "My Account"
261
+ msgstr ""
262
 
263
  # @ woocommerce-delivery-notes
264
+ #: includes/class-wcdn-settings.php:216
265
  msgid "Show print button on the \"View Order\" page"
266
  msgstr "Näita printimise nuppu \"Vaata tellimust\" leheküljel"
267
 
268
  # @ woocommerce-delivery-notes
269
+ #: includes/class-wcdn-settings.php:224
270
  msgid "Show print buttons on the \"My Account\" page"
271
  msgstr "Näita printimise nuppu \"Minu konto\" leheküljel"
272
 
273
+ #: includes/class-wcdn-settings.php:244
274
+ msgid "Numbering"
275
+ msgstr ""
 
 
 
 
 
276
 
277
+ #: includes/class-wcdn-settings.php:245
278
  msgid "Create invoice numbers"
279
  msgstr "Aktiveeri arvete nummerdamine"
280
 
281
+ #: includes/class-wcdn-settings.php:253
282
+ msgid "Next Number"
283
+ msgstr ""
 
 
 
 
284
 
285
+ #: includes/class-wcdn-settings.php:260
286
+ msgid "The next invoice number."
287
+ msgstr ""
288
 
289
+ #: includes/class-wcdn-settings.php:264
290
+ msgid "Number Prefix"
291
+ msgstr ""
292
 
293
+ #: includes/class-wcdn-settings.php:271
294
  msgid "This text will be prepended to the invoice number."
295
  msgstr "See tekst lisatakse arvenumbri ette."
296
 
297
+ #: includes/class-wcdn-settings.php:275
298
+ msgid "Number Suffix"
299
+ msgstr ""
 
 
 
 
300
 
301
+ #: includes/class-wcdn-settings.php:282
302
  msgid "This text will be appended to the invoice number."
303
  msgstr "See tekst lisatakse arvenumbri lõppu."
304
 
305
+ #: includes/class-wcdn-settings.php:327
306
+ msgid "Admin"
307
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
308
 
309
+ #: includes/class-wcdn-settings.php:330
310
+ msgid ""
311
+ "The print buttons are available on the order listing and on the order detail "
312
+ "screen."
313
+ msgstr ""
314
 
315
+ #: includes/class-wcdn-settings.php:372
316
+ msgid ""
317
+ "This section lets you customise the content. You can preview the <a href="
318
+ "\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target="
319
+ "\"%4$s\" class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s"
320
+ "\" class=\"%5$s\">receipt</a> template."
321
+ msgstr ""
322
 
323
+ #: includes/class-wcdn-settings.php:435
324
+ msgid "Select"
325
+ msgstr ""
 
 
 
326
 
327
+ #: includes/class-wcdn-settings.php:439
328
+ msgid "Remove"
329
+ msgstr ""
 
 
330
 
331
+ #: includes/class-wcdn-theme.php:112
332
+ msgid "Print your order"
333
+ msgstr ""
 
 
 
 
334
 
335
+ #: includes/class-wcdn-theme.php:119
336
+ msgid "Print:"
337
+ msgstr ""
 
 
 
 
338
 
339
+ #: includes/class-wcdn-theme.php:119
340
+ msgid "Open print view in browser"
341
+ msgstr ""
 
 
 
342
 
343
  # @ woocommerce-delivery-notes
344
+ #: includes/class-wcdn-writepanel.php:218
345
  msgid "Print now"
346
  msgstr "Prindi välja"
347
 
348
  # @ woocommerce-delivery-notes
349
+ #: includes/class-wcdn-writepanel.php:232
350
  msgid "Order Printing"
351
  msgstr "Tellimuse printimine"
352
 
353
+ #: includes/class-wcdn-writepanel.php:259
354
  msgid "Invoice number: "
355
  msgstr "Arve number:"
356
 
357
+ #: includes/class-wcdn-writepanel.php:260
358
  msgid "Invoice date: "
359
  msgstr "Arve kuupäev:"
360
 
361
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:75
362
+ msgid "If you have a moment, please let us know why you are deactivating"
363
+ msgstr ""
 
364
 
365
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:76
366
+ msgid "Submit & Deactivate"
367
+ msgstr ""
 
368
 
369
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:77
370
+ msgid "Deactivate"
371
+ msgstr ""
372
 
373
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:78
374
+ msgid "Cancel"
375
+ msgstr ""
376
+
377
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:79
378
+ msgid "Yes - Deactivate"
379
+ msgstr ""
380
+
381
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:83
382
+ msgid "I found a better plugin"
383
+ msgstr ""
384
+
385
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:84
386
+ msgid "What's the plugin's name?"
387
+ msgstr ""
388
+
389
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:85
390
+ msgid "I only needed the plugin for a short period"
391
+ msgstr ""
392
+
393
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:86
394
+ msgid "The plugin is not working"
395
+ msgstr ""
396
+
397
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:87
398
+ msgid "Kindly share what didn't work so we can fix it for future users..."
399
+ msgstr ""
400
+
401
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:88
402
+ msgid "The plugin is great, but I need specific feature that you don't support"
403
+ msgstr ""
404
+
405
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:89
406
+ msgid "What feature?"
407
+ msgstr ""
408
+
409
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:90
410
+ msgid "I don't like to share my information with you"
411
+ msgstr ""
412
+
413
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:91
414
+ msgctxt ""
415
+ "the text of the 'other' reason for deactivating the plugin that is shown in "
416
+ "the modal box."
417
+ msgid "Other"
418
+ msgstr ""
419
+
420
+ #: includes/component/faq-support/ts-faq-support.php:127
421
+ msgid "Frequently Asked Questions for %s"
422
+ msgstr ""
423
+
424
+ #: includes/component/faq-support/ts-faq-support.php:176
425
+ msgid "FAQ & Support"
426
+ msgstr ""
427
+
428
+ #: includes/component/tracking-data/ts-tracking.php:120
429
+ #: includes/component/tracking-data/ts-tracking.php:180
430
+ msgid "Reset usage tracking"
431
+ msgstr ""
432
+
433
+ #: includes/component/tracking-data/ts-tracking.php:122
434
+ msgid ""
435
+ "This will reset your usage tracking settings, causing it to show the opt-in "
436
+ "banner again and not sending any data"
437
+ msgstr ""
438
+
439
+ #: includes/component/tracking-data/ts-tracking.php:225
440
+ msgid "Once in a Week"
441
+ msgstr ""
442
+
443
+ #: includes/component/tracking-data/ts-tracking.php:311
444
+ msgid "Allow"
445
+ msgstr ""
446
+
447
+ #: includes/component/tracking-data/ts-tracking.php:312
448
+ msgid "No thanks"
449
+ msgstr ""
450
+
451
+ #: includes/component/welcome-page/templates/social-media-elements.php:10
452
+ #: includes/wcdn-welcome.php:231
453
+ msgid "Follow %s"
454
+ msgstr ""
455
+
456
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:19
457
+ #: includes/wcdn-welcome.php:99
458
+ msgid ""
459
+ "Thank you for activating or updating to the latest version of WooCommerce "
460
+ "Print Invoice & Delivery Note! If you're a first time user, welcome! You're "
461
+ "well on your way to explore the print functionality for your WooCommerce "
462
+ "orders."
463
+ msgstr ""
464
+
465
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:29
466
+ #: includes/wcdn-welcome.php:109
467
+ msgid "Get Started with WooCommerce Print Invoice & Delivery Note"
468
+ msgstr ""
469
+
470
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:33
471
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:62
472
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:68
473
+ #: includes/wcdn-welcome.php:113 includes/wcdn-welcome.php:142
474
+ #: includes/wcdn-welcome.php:148
475
+ msgid "WooCommerce Print Invoice & Delivery Note"
476
+ msgstr ""
477
+
478
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:37
479
+ #: includes/wcdn-welcome.php:117
480
+ msgid "Add settings"
481
+ msgstr ""
482
+
483
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:39
484
+ #: includes/wcdn-welcome.php:119
485
+ msgid ""
486
+ "To enable the print functionality for your invoices, delivery notes & "
487
+ "receipts, you just need to set it up under WooCommerce -> Settings -> Print "
488
+ "page. Here you can also setup the Company Logo that will appear on the "
489
+ "printed items, Company Address & other information."
490
+ msgstr ""
491
+
492
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:41
493
+ #: includes/wcdn-welcome.php:121
494
+ msgid "Click Here to go to Print page"
495
+ msgstr ""
496
+
497
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:52
498
+ #: includes/wcdn-welcome.php:132
499
+ msgid "Enable Print button for Customers."
500
+ msgstr ""
501
+
502
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:54
503
+ #: includes/wcdn-welcome.php:134
504
+ msgid ""
505
+ "Allow customers to print the WooCommerce order invoice from the customer "
506
+ "notification email, from the My Account page or from the View Order page "
507
+ "under My Account."
508
+ msgstr ""
509
+
510
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:56
511
+ #: includes/wcdn-welcome.php:136
512
+ msgid "Click Here to Enable Print button for Customers"
513
+ msgstr ""
514
+
515
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:72
516
+ #: includes/wcdn-welcome.php:152
517
+ msgid "Enable Invoice Numbering"
518
+ msgstr ""
519
+
520
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:74
521
+ msgid ""
522
+ "If you want to change the default invoice numbers & set some numbering "
523
+ "scheme of your own, then you can set it here with a starting invoice number, "
524
+ "a prefix & suffix. For example, you could set it as: TS/001/17-18."
525
+ msgstr ""
526
+
527
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:76
528
+ #: includes/wcdn-welcome.php:156
529
+ msgid "Click Here to Enable Invoice Numbering"
530
+ msgstr ""
531
+
532
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:87
533
+ #: includes/wcdn-welcome.php:167
534
+ msgid "Getting to Know Tyche Softwares"
535
+ msgstr ""
536
+
537
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:90
538
+ #: includes/wcdn-welcome.php:170
539
+ msgid "Visit the Tyche Softwares Website"
540
+ msgstr ""
541
+
542
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:91
543
+ #: includes/wcdn-welcome.php:171
544
+ msgid "View all Premium Plugins"
545
+ msgstr ""
546
+
547
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:100
548
+ #: includes/wcdn-welcome.php:180
549
+ msgid "Meet the team"
550
+ msgstr ""
551
+
552
+ #: includes/component/welcome-page/ts-welcome.php:167
553
+ msgid "Welcome to %s %s"
554
+ msgstr ""
555
+
556
+ #: includes/wcdn-all-component.php:118
557
+ msgid ""
558
+ "Thank you for using WooCommerce Print Invoice & Delivery Note plugin! Now "
559
+ "make your deliveries more accurate by allowing customers to select their "
560
+ "preferred delivery date & time from Product Delivery Date Pro for "
561
+ "WooCommerce. <strong><a target=\"_blank\" href= \"https://www.tychesoftwares."
562
+ "com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/?"
563
+ "utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">Get "
564
+ "it now!</a></strong>"
565
+ msgstr ""
566
+
567
+ #: includes/wcdn-all-component.php:120
568
+ msgid ""
569
+ "Never login to your admin to check your deliveries by syncing the delivery "
570
+ "dates to the Google Calendar from Product Delivery Date Pro for WooCommerce. "
571
+ "<strong><a target=\"_blank\" href= \"https://www.tychesoftwares.com/store/"
572
+ "premium-plugins/product-delivery-date-pro-for-woocommerce/checkout?"
573
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
574
+ "\">Get it now!</a></strong>"
575
+ msgstr ""
576
+
577
+ #: includes/wcdn-all-component.php:122
578
+ msgid ""
579
+ "You can now view all your deliveries in list view or in calendar view from "
580
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
581
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
582
+ "delivery-date-pro-for-woocommerce/checkout?"
583
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
584
+ "\">Get it now!</a></strong>."
585
+ msgstr ""
586
+
587
+ #: includes/wcdn-all-component.php:124
588
+ msgid ""
589
+ "Allow your customers to pay extra for delivery for certain Weekdays/Dates "
590
+ "from Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
591
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
592
+ "delivery-date-pro-for-woocommerce/checkout?"
593
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
594
+ "\">Have it now!</a></strong>."
595
+ msgstr ""
596
+
597
+ #: includes/wcdn-all-component.php:126
598
+ msgid ""
599
+ "Customers can now edit the Delivery date & time on cart and checkout page or "
600
+ "they can reschedule the deliveries for the already placed orders from "
601
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
602
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
603
+ "delivery-date-pro-for-woocommerce/checkout?"
604
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
605
+ "\">Have it now!</a></strong>."
606
+ msgstr ""
607
+
608
+ #: includes/wcdn-template-functions.php:246
609
+ msgid "Invoice Number"
610
+ msgstr "Arve number"
611
+
612
+ #: includes/wcdn-template-functions.php:253
613
+ msgid "Invoice Date"
614
+ msgstr ""
615
 
616
  # @ woocommerce-delivery-notes
617
+ #: includes/wcdn-template-functions.php:259
618
  msgid "Order Number"
619
  msgstr "Tellimuse nr"
620
 
621
  # @ woocommerce-delivery-notes
622
+ #: includes/wcdn-template-functions.php:264
623
  msgid "Order Date"
624
  msgstr "Tellimuse kuupäev"
625
 
626
  # @ woocommerce-delivery-notes
627
+ #: includes/wcdn-template-functions.php:269
628
  msgid "Payment Method"
629
  msgstr "Maksemeetod"
630
 
631
  # @ woocommerce-delivery-notes
632
+ #: includes/wcdn-template-functions.php:282
 
 
 
 
 
633
  msgid "Telephone"
634
  msgstr "Telefon"
635
 
636
+ #: includes/wcdn-template-functions.php:315
637
  msgid "SKU:"
638
  msgstr "SKU:"
639
 
640
+ #: includes/wcdn-template-functions.php:409
641
+ #: includes/wcdn-template-functions.php:413
642
+ msgid "(Includes %s)"
643
+ msgstr ""
644
+
645
+ #: includes/wcdn-template-functions.php:429
646
+ msgid "Refund"
647
+ msgstr ""
648
+
649
+ #: includes/wcdn-template-functions.php:441
650
+ msgid "Order Subtotal"
651
+ msgstr ""
652
+
653
+ #: includes/wcdn-welcome.php:54
654
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note %s"
655
+ msgstr ""
656
+
657
+ #: includes/wcdn-welcome.php:55
658
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note"
659
+ msgstr ""
660
+
661
+ #: includes/wcdn-welcome.php:154
662
+ msgid ""
663
+ "f you want to change the default invoice numbers & set some numbering scheme "
664
+ "of your own, then you can set it here with a starting invoice number, a "
665
+ "prefix & suffix. For example, you could set it as: TS/001/17-18."
666
+ msgstr ""
667
+
668
+ #: includes/wcdn-welcome.php:186
669
+ msgid "Current Offers"
670
+ msgstr ""
671
+
672
  # @ woocommerce-delivery-notes
673
+ #: templates/print-order/print-content.php:28
674
  msgid "Billing Address"
675
  msgstr "Arvelduse aadress"
676
 
677
  # @ woocommerce-delivery-notes
678
+ #: templates/print-order/print-content.php:31
679
+ #: templates/print-order/print-content.php:40
680
  msgid "N/A"
681
  msgstr "N/A"
682
 
683
  # @ woocommerce-delivery-notes
684
+ #: templates/print-order/print-content.php:37
685
  msgid "Shipping Address"
686
  msgstr "Tarneaadress"
687
 
688
  # @ woocommerce-delivery-notes
689
+ #: templates/print-order/print-content.php:71
690
  msgid "Product"
691
  msgstr "Toote"
692
 
693
+ #: templates/print-order/print-content.php:72
694
  msgid "Price"
695
  msgstr "Hind"
696
 
697
+ #: templates/print-order/print-content.php:73
698
  msgid "Quantity"
699
  msgstr "Kogus"
700
 
701
  # @ woocommerce-delivery-notes
702
+ #: templates/print-order/print-content.php:74
703
  msgid "Total"
704
  msgstr "Kokku"
705
 
706
  # @ woocommerce-delivery-notes
707
+ #: templates/print-order/print-content.php:147
708
  msgid "Download:"
709
  msgstr "Lae alla:"
710
 
711
  # @ woocommerce-delivery-notes
712
+ #: templates/print-order/print-content.php:148
 
713
  msgid "%s Files"
714
  msgstr "%s faili"
715
 
716
  # @ woocommerce-delivery-notes
717
+ #: templates/print-order/print-content.php:202
718
  msgid "Customer Note"
719
  msgstr "Kliendi märkmed"
720
 
721
+ #: woocommerce-delivery-notes.php:96 woocommerce-delivery-notes.php:103
722
+ msgid "Cheatin&#8217; huh?"
723
+ msgstr ""
724
+
725
+ #: woocommerce-delivery-notes.php:275
726
+ msgid ""
727
+ "I can't differentiate between Invoice, Delivery Notes & Receipt. The "
728
+ "templates are the same. "
729
+ msgstr ""
730
+
731
+ #: woocommerce-delivery-notes.php:281
732
+ msgid "The invoice sent through mail can't be downloaded as PDF directly."
733
+ msgstr ""
734
+
735
+ #: woocommerce-delivery-notes.php:287
736
+ msgid "The plugin is not compatible with another plugin."
737
+ msgstr ""
738
+
739
+ #: woocommerce-delivery-notes.php:293
740
+ msgid "This plugin is not useful to me."
741
+ msgstr ""
742
+
743
  # @ woocommerce-delivery-notes
744
+ #: woocommerce-delivery-notes.php:351
745
  msgid "Go to the settings page"
746
  msgstr "Mine seadete leheküljele"
747
 
748
  # @ woocommerce-delivery-notes
749
+ #: woocommerce-delivery-notes.php:351
750
  msgid "Settings"
751
  msgstr "Seaded"
752
+
753
+ #~ msgid "Do you really want to reset the counter to zero?"
754
+ #~ msgstr "Kas oled kindel, et soovid algseadistada arvenumbri?"
755
+
756
+ #~ msgid ""
757
+ #~ "You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s"
758
+ #~ "\">invoice</a>, <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s\">delivery "
759
+ #~ "note</a> or <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> "
760
+ #~ "template."
761
+ #~ msgstr ""
762
+ #~ "Eelvaates on võimalik vaadata <a href=\"%1$s\" target=\"%4$s\" class="
763
+ #~ "\"%5$s\">arve</a>, <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s"
764
+ #~ "\">saatepaberi</a> ning <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s"
765
+ #~ "\">kviitungi</a> kujundust."
766
+
767
+ # @ woocommerce-delivery-notes
768
+ #~ msgid ""
769
+ #~ "With the FAQ in the readme file you can learn how to customize the "
770
+ #~ "template."
771
+ #~ msgstr ""
772
+ #~ "Arvete, saatepaberite ning kviitungite kujunduse muutmise kohta on kirjas "
773
+ #~ "readme failis FAQ sektsioonis."
774
+
775
+ # @ woocommerce-delivery-notes
776
+ #~ msgid "Company/Shop Logo"
777
+ #~ msgstr "Ettevõtte logo"
778
+
779
+ # @ woocommerce-delivery-notes
780
+ #~ msgid "Remove Logo"
781
+ #~ msgstr "Eemalda logo"
782
+
783
+ # @ woocommerce-delivery-notes
784
+ #~ msgid "Set Logo"
785
+ #~ msgstr "Määra logo"
786
+
787
+ # @ woocommerce-delivery-notes
788
+ #~ msgid "A company/shop logo representing your business."
789
+ #~ msgstr "Ettevõtte/poe tunnusgraafika."
790
+
791
+ # @ woocommerce-delivery-notes
792
+ #~ msgid "Note:"
793
+ #~ msgstr "Märkus:"
794
+
795
+ # @ woocommerce-delivery-notes
796
+ #~ msgid ""
797
+ #~ "When the image is printed, its pixel density will automatically be eight "
798
+ #~ "times higher than the original. This means, 1 printed inch will "
799
+ #~ "correspond to about 288 pixels on the screen. Example: an image with a "
800
+ #~ "width of 576 pixels and a height of 288 pixels will have a printed size "
801
+ #~ "of about 2 inches to 1 inch."
802
+ #~ msgstr ""
803
+ #~ "Logo printimisel on pikslite tihedus automaatselt 8 korda kõrgem kui "
804
+ #~ "originaalis. See tähendab, et prinditud 1 toll (2.54cm) on vastav umbes "
805
+ #~ "288 pikslile arvuti ekraanil. Näiteks: logo laiusega 576 pikslit ning "
806
+ #~ "kõrgusega 288 pikslit, on prinditult umbes 2 tolli laiune ning 1 tolli "
807
+ #~ "kõrgune."
808
+
809
+ # @ woocommerce-delivery-notes
810
+ #~ msgid "Company/Shop Name"
811
+ #~ msgstr "Ettevõtte nimi"
812
+
813
+ # @ woocommerce-delivery-notes
814
+ #~ msgid "Your company/shop name for the Delivery Note."
815
+ #~ msgstr "Sinu ettevõtte/poe nimetus saatepaberil."
816
+
817
+ # @ woocommerce-delivery-notes
818
+ #~ msgid ""
819
+ #~ "Leave blank to use the default Website/Blog title defined in WordPress "
820
+ #~ "settings. The name will be ignored when a Logo is set."
821
+ #~ msgstr ""
822
+ #~ "Tühjaks jätmisel kasutatakse lehekülje vaikimisi pealkirja, mis on "
823
+ #~ "seadistatud sätetes. Nime ei näidata juhul, kui logo on määratud."
824
+
825
+ # @ woocommerce-delivery-notes
826
+ #~ msgid "Company/Shop Address"
827
+ #~ msgstr "Ettevõtte aadress"
828
+
829
+ # @ woocommerce-delivery-notes
830
+ #~ msgid ""
831
+ #~ "The postal address of the company/shop or even e-mail or telephone, which "
832
+ #~ "gets printed right after the company/shop name."
833
+ #~ msgstr ""
834
+ #~ "Ettevõtte/poe postiaadress, e-post või hoopis telefoni number, mis "
835
+ #~ "prinditakse nime järele."
836
+
837
+ # @ woocommerce-delivery-notes
838
+ #~ msgid "Leave blank to not print an address."
839
+ #~ msgstr "Aadressi mitte printimiseks jäta see tühjaks."
840
+
841
+ # @ woocommerce-delivery-notes
842
+ #~ msgid ""
843
+ #~ "Add some personal notes, or season greetings or whatever (e.g. Thank You "
844
+ #~ "for Your Order!, Merry Christmas!, etc.)."
845
+ #~ msgstr ""
846
+ #~ "Lisa näiteks tänutähed, hooajaline tervitus või midagi sarnast (näiteks "
847
+ #~ "Aitäh tellimuse eest! vms)."
848
+
849
+ # @ woocommerce-delivery-notes
850
+ #~ msgid "Leave blank to not print any personal notes."
851
+ #~ msgstr "Täiendava informatsiooni mitte printimiseks jäta see tühjaks."
852
+
853
+ # @ woocommerce-delivery-notes
854
+ #~ msgid "Returns Policy, Conditions, etc"
855
+ #~ msgstr "Tingimused"
856
+
857
+ # @ woocommerce-delivery-notes
858
+ #~ msgid ""
859
+ #~ "Here you can add some more policies, conditions etc. For example add a "
860
+ #~ "returns policy in case the client would like to send back some goods. In "
861
+ #~ "some countries (e.g. in the European Union) this is required so please "
862
+ #~ "add any required info in accordance with the statutory regulations."
863
+ #~ msgstr ""
864
+ #~ "Siia on võimalik lisada tagastamise ja ostutingimused või muud taolist. "
865
+ #~ "Näiteks lisa tagastamise tingimused juhuks, kui klient soovib saata "
866
+ #~ "midagi tagasi. Euroopa liidus on selline informatsioon nõutud."
867
+
868
+ # @ woocommerce-delivery-notes
869
+ #~ msgid "Leave blank to not print any policies or conditions."
870
+ #~ msgstr "Kasutustingimuste mitte printimiseks jäta see tühjaks."
871
+
872
+ # @ woocommerce-delivery-notes
873
+ #~ msgid ""
874
+ #~ "Add some further footer imprint, e-mail, telephone, copyright notes etc. "
875
+ #~ "This makes the printed sheets a bit more branded."
876
+ #~ msgstr ""
877
+ #~ "Lisa jalusesse veel lisaks informatsiooni, nagu näiteks e-posti aadress, "
878
+ #~ "telefon, kasutusõigused (copyright) või muud taolist. See muudab "
879
+ #~ "prinditud leheküljed rohkem esinduslikumaks."
880
+
881
+ # @ woocommerce-delivery-notes
882
+ #~ msgid "Leave blank to not print a footer."
883
+ #~ msgstr "Jaluse mitte printimiseks jäta see tühjaks."
884
+
885
+ #~ msgid "Types"
886
+ #~ msgstr "Funktsioonid"
887
+
888
+ #~ msgid "Enable Invoices"
889
+ #~ msgstr "Aktiveeri arved"
890
+
891
+ #~ msgid "Enable Delivery Notes"
892
+ #~ msgstr "Aktiveeri saatekirjad"
893
+
894
+ #~ msgid "Enable Receipts"
895
+ #~ msgstr "Aktiveeri kviitungid"
896
+
897
+ #~ msgid "Front-end Options"
898
+ #~ msgstr "Avalehe seadistused"
899
+
900
+ #~ msgid "Print Buttons"
901
+ #~ msgstr "Printimise nupud"
902
+
903
+ # @ woocommerce-delivery-notes
904
+ #~ msgid "Order Numbering"
905
+ #~ msgstr "Tellimuste nummerdamine"
906
+
907
+ #~ msgid "Invoice Number Start"
908
+ #~ msgstr "Arvete algusnumber"
909
+
910
+ #~ msgid "Start the numbering at the specified number."
911
+ #~ msgstr "Nummerdamist alustatakse sellest numbrist alates."
912
+
913
+ #~ msgid "Use only integers."
914
+ #~ msgstr "Kasuta ainult numbrilisi väärtuseid"
915
+
916
+ #~ msgid "Invoice Number Prefix"
917
+ #~ msgstr "Arvenumbri eesliide"
918
+
919
+ #~ msgid "Leave blank to not add a prefix."
920
+ #~ msgstr "Eesliite mitte lisamiseks jäta see tühjaks."
921
+
922
+ #~ msgid "Invoice Number Suffix"
923
+ #~ msgstr "Arvenumbri järelliide"
924
+
925
+ #~ msgid "Leave blank to not add a suffix."
926
+ #~ msgstr "Järelliite mitte lisamiseks jäta see tühjaks."
927
+
928
+ #~ msgid "Invoice Number Counter"
929
+ #~ msgstr "Arvenumbri hetkeväärtus"
930
+
931
+ #~ msgid "Reset Counter"
932
+ #~ msgstr "Algseadista nummerdus"
933
+
934
+ #~ msgid "Sequential Order Number"
935
+ #~ msgstr "Järjestikune tellimuste nummerdamine"
936
+
937
+ # @ woocommerce-delivery-notes
938
+ #~ msgid "Sequential numbering is enabled."
939
+ #~ msgstr "Järjestikune nummerdamine on aktiveeritud."
940
+
941
+ # @ woocommerce-delivery-notes
942
+ #~ msgid ""
943
+ #~ "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
944
+ #~ "Numbers</a> Plugin."
945
+ #~ msgstr ""
946
+ #~ "Lae alla ja aktiveeri tasuta <a href=\"%s\">WooCommerce Sequential Order "
947
+ #~ "Numbers</a> plugin."
948
+
949
+ # @ woocommerce-delivery-notes
950
+ #~ msgid "Delivery note created."
951
+ #~ msgid_plural "%s delivery notes created."
952
+ #~ msgstr[0] "Saatepaber on loodud."
953
+ #~ msgstr[1] "Kokku loodi %s saatepaberit."
languages/woocommerce-delivery-notes-fa_IR.mo CHANGED
Binary file
languages/woocommerce-delivery-notes-fa_IR.po CHANGED
@@ -1,363 +1,930 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: برگه رسید فروشگاه\n"
4
- "POT-Creation-Date: \n"
5
- "PO-Revision-Date: 2014-06-28 17:15+0100\n"
 
 
6
  "Last-Translator: Khalil Delavaran <khalil.delavaran@gmail.com>\n"
7
  "Language-Team: www.qooqnos.com <khalil.delavaran@gmail.com>\n"
8
  "Language: fa\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.5\n"
13
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: classes/class-wcdn-settings.php:301
18
- msgid ""
19
- "You can <a href=\"%1$s\" target=\"%3$s\" class=\"%4$s\">preview the invoice "
20
- "template</a> or <a href=\"%2$s\" target=\"%3$s\" class=\"%4$s\">the delivery "
21
- "note template</a>."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  msgstr ""
23
- "<a href=\"%1$s\" target=\"%3$s\" class=\"%4$s\">پیش نمایش قالب فاکتور</a> یا "
24
- "<a href=\"%2$s\" target=\"%3$s\" class=\"%4$s\">پیش نمایش برگه رسید</a>."
25
 
26
- #: classes/class-wcdn-settings.php:302
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  msgid ""
28
- "For more advanced control copy <code>woocommerce-delivery-notes/templates/"
29
- "print/style.css</code> to <code>your-theme-name/woocommerce/print/style.css</"
30
- "code>."
31
  msgstr ""
32
- "برای کنترل پیشرفته کپی کن <code>your-theme-name/woocommerce/print/style.css</"
33
- "code> به <code>woocommerce-delivery-notes/templates/print/style.css</code>"
34
 
35
- #: templates/print/print-delivery-note.php:38
36
- msgid "Billing Date"
37
- msgstr "تاریخ صورتحساب"
 
38
 
39
- #: templates/print/print-delivery-note.php:40
40
- msgid "Shipping Date"
41
- msgstr "تاریخ باربری"
42
 
43
- #: templates/print/print-delivery-note.php:45
44
- msgid "Order Number"
45
- msgstr "شماره سفارش"
46
 
47
- #: templates/print/print-delivery-note.php:49
48
- msgid "Payment Method"
49
- msgstr "روش پرداخت"
 
 
 
 
 
 
50
 
51
- #: woocommerce-delivery-notes.php:0
52
- msgid "2.0"
 
 
 
53
  msgstr ""
54
 
55
- #: classes/class-wcdn-settings.php:144
56
- msgid "Get Community Support"
57
- msgstr "درخواست پشتیبانی از فروم"
58
 
59
- #: classes/class-wcdn-settings.php:212
60
  msgid ""
61
- "When the image is printed, its pixel density will automatically be eight "
62
- "times higher than the original. This means, 1 printed inch will correspond "
63
- "to about 288 pixels on the screen. Example: an image with a width of 576 "
64
- "pixels and a height of 288 pixels will have a printed size of about 2 inches "
65
- "to 1 inch."
66
- msgstr ""
67
- "زمانی که تصویر چاپ می شود، تراکم پیکسل آن به طور خودکار هشت برابر بیشتر از "
68
- "اصل می شود. این به این معنی است که،چاپ 1 اینچ به حدود 288 پیکسل بر روی صفحه "
69
- "نمایش مطابقت دارد. به عنوان مثال: یک تصویر با عرض 576 پیکسل و ارتفاع 288 "
70
- "پیکسل، اندازه چاپ در حدود 1 اینچ تا 2 اینچ می شود"
71
-
72
- #: templates/print/print-delivery-note.php:58
73
- msgid "Product"
74
- msgstr "کالا"
75
 
76
- #: templates/print/print-delivery-note.php:60
77
- msgid "Totals"
78
- msgstr "مجموع"
79
 
80
- #: templates/print/print-delivery-note.php:70
81
- msgid "Download:"
82
- msgstr "دانلود:"
83
 
84
- #: woocommerce-delivery-notes.php:291 woocommerce-delivery-notes.php:305
85
- msgid "N/A"
86
- msgstr "خالی"
87
 
88
- #: classes/class-wcdn-settings.php:202
89
- msgid "Company/Shop Logo"
90
- msgstr "لوگوی شرکت/فروشگاه"
91
 
92
- #: classes/class-wcdn-settings.php:207
93
- msgid "Remove Logo"
94
- msgstr "برداشتن لوگو"
95
 
96
- #: classes/class-wcdn-settings.php:208
97
- msgid "Set Logo"
98
- msgstr "گذاشتن لوگو"
99
 
100
- #: classes/class-wcdn-settings.php:210
101
- msgid "A company/shop logo representing your business."
102
- msgstr "لوگوی شرکت/فروشگاه به نمایندگی از کسب و کار شما"
103
 
104
- #: classes/class-wcdn-settings.php:223
105
- msgid "Your company/shop name for the Delivery Note."
106
- msgstr "نام شرکت/فروشگاه برای برگه رسید"
 
107
 
108
- #: classes/class-wcdn-settings.php:314
109
- msgid "Sequential order number"
110
- msgstr "شماره سفارش پیاپی"
111
 
112
- #: classes/class-wcdn-settings.php:318
113
- msgid "Sequential numbering is enabled."
114
- msgstr "شماره گذاری پیاپی پویا شده است"
115
 
116
- #: classes/class-wcdn-settings.php:320
117
  msgid ""
118
- "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
119
- "Numbers</a> Plugin."
120
  msgstr ""
121
- "خواهشمند است افزونه <a href=\"%s\">WooCommerce Sequential Order Numbers</"
122
- "a>را برپاسازی کرده و به و رایگان پویا کنید"
123
 
124
- #: woocommerce-delivery-notes.php:0
125
- msgid "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
 
 
 
 
 
126
  msgstr ""
127
 
128
- #: woocommerce-delivery-notes.php:203
129
- msgid "Delivery Note"
130
- msgstr "برگه رسید"
 
 
131
 
132
- #: templates/print/print-delivery-note.php:59
133
- msgid "Quantity"
134
- msgstr "کمیت"
135
 
136
- #: classes/class-wcdn-print.php:63 classes/class-wcdn-print.php:68
137
- #: classes/class-wcdn-print.php:73 classes/class-wcdn-print.php:78
138
- msgid "You do not have sufficient permissions to access this page."
139
- msgstr "شما مجوز کافی برای دسترسی به این صفحه را ندارید"
140
 
141
- #: woocommerce-delivery-notes.php:134
142
- msgid "Go to the settings page"
143
- msgstr "رفتن به برگه پیکربندی"
144
 
145
- #: woocommerce-delivery-notes.php:134
146
- msgid "Settings"
147
- msgstr "پیکربندی"
148
 
149
- #: woocommerce-delivery-notes.php:124
150
- msgid "FAQ"
151
- msgstr "پرسش و پاسخ"
152
 
153
- #: woocommerce-delivery-notes.php:125
154
- msgid "Support"
155
- msgstr "پشتیبانی"
156
 
157
- #: classes/class-wcdn-settings.php:257
158
- msgid "Returns Policy, Conditions, etc.:"
159
- msgstr "افزودن قوانین، شرایط، و موارد دیگر"
160
 
161
- #: templates/print/print-delivery-note.php:68
162
- msgid "SKU:"
163
- msgstr "بارکد:"
164
 
165
- #: templates/print/print-delivery-note.php:69
166
- msgid "Weight:"
167
- msgstr "وزن:"
168
 
169
- #: classes/class-wcdn-settings.php:134
170
- msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
171
- msgstr "پلاگین: چاپ فاکتور و برگه رسید در ووکامرس"
172
 
173
- #: classes/class-wcdn-settings.php:211 classes/class-wcdn-settings.php:224
174
- #: classes/class-wcdn-settings.php:237 classes/class-wcdn-settings.php:250
175
- #: classes/class-wcdn-settings.php:263 classes/class-wcdn-settings.php:276
176
- msgid "Note:"
177
- msgstr "نکته:"
178
 
179
- #: classes/class-wcdn-settings.php:236
180
- msgid ""
181
- "The postal address of the company/shop, which gets printed right of the "
182
- "company/shop name, above the order listings."
183
- msgstr "آدرس پستی از شرکت/فروشگاه، که در بالای لیست سفارشات، چاپ می شود"
184
 
185
- #: classes/class-wcdn-settings.php:249
186
  msgid ""
187
- "Add some personal notes, or season greetings or whatever (e.g. Thank You for "
188
- "Your Order!, Merry Christmas!, etc.)."
189
  msgstr ""
190
- "اضافه کردن بیشتر یادداشت های شخصی، همانند تشکر از خرید شما یا تبریک مناسبت "
191
- "ها و موارد دیگر"
192
 
193
- #: classes/class-wcdn-settings.php:275
194
  msgid ""
195
- "Add some further footer imprint, copyright notes etc. to get the printed "
196
- "sheets a bit more branded to your needs."
 
 
 
 
 
 
197
  msgstr ""
198
- "افزودن برخی از یادداشت ها در پاورقی، همانند مهر، یادداشت کپی رایت، دریافت "
199
- "برگه های چاپ شده و یا افزودن لوگوهای تجاری."
200
 
201
- #: classes/class-wcdn-settings.php:132 classes/class-wcdn-settings.php:135
202
- msgid "About the Plugin"
203
- msgstr "درباره افزونه"
204
 
205
- #: classes/class-wcdn-settings.php:142
206
- msgid "For more information:"
207
- msgstr "برای اطلاعات بیشتر:"
208
 
209
- #: classes/class-wcdn-settings.php:143
210
- msgid "Frequently Asked Questions"
211
- msgstr "پرسش های متداول"
212
 
213
- #: classes/class-wcdn-settings.php:145
214
- msgid "Project on WordPress.org"
215
- msgstr " WordPress.org پروژه در"
216
 
217
- #: classes/class-wcdn-settings.php:146
218
- msgid "Project on GitHub"
219
- msgstr "GitHub پروژه در"
220
 
221
- #: classes/class-wcdn-settings.php:154
222
- msgid "Print"
223
- msgstr "چاپ"
224
 
225
- #: classes/class-wcdn-settings.php:194
226
- msgid "Invoices and Delivery Notes"
227
- msgstr "فاکتور و برگه رسید"
228
 
229
- #: classes/class-wcdn-settings.php:218
230
- msgid "Company/Shop Name"
231
- msgstr "نام شرکت/فروشگاه"
232
 
233
- #: classes/class-wcdn-settings.php:225
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
234
  msgid ""
235
- "Leave blank to use the default Website/ Blog title defined in WordPress "
236
- "settings."
237
  msgstr ""
238
- "چنانچه نانوشته بماند، از عنوان تعریف شده وب سایت در تنظیمات وردپرس استفاده "
239
- "می شود"
240
 
241
- #: classes/class-wcdn-settings.php:231
242
- msgid "Company/Shop Address"
243
- msgstr "آدرس شرکت/فروشگاه"
244
 
245
- #: classes/class-wcdn-settings.php:238
246
- msgid "Leave blank to not print an address."
247
- msgstr "چنانچه نانوشته بماند، آدرس چاپ نمی شود"
248
 
249
- #: classes/class-wcdn-settings.php:244
250
- msgid "Personal Notes"
251
- msgstr "یادداشت شخصی"
252
 
253
- #: classes/class-wcdn-settings.php:251
254
- msgid "Leave blank to not print any personal notes."
255
- msgstr "چنانچه نانوشته بماند، یادداشت های شخصی چاپ نمی شوند"
 
256
 
257
- #: classes/class-wcdn-settings.php:262
 
258
  msgid ""
259
- "Here you can add some more policies, conditions etc. For example add a "
260
- "returns policy in case the client would like to send back some goods. In "
261
- "some countries (e.g. in the European Union) this is required so please add "
262
- "any required info in accordance with the statutory regulations."
263
  msgstr ""
264
- "در اینجا می توانید قوانین بیشتری را به اجرا بگذارید . همانند قانون برگشت از "
265
- "فروش، و یا هر قانون و مقررات دولتی و موارد دیگر"
266
 
267
- #: classes/class-wcdn-settings.php:264
268
- msgid "Leave blank to not print any policies or conditions."
269
- msgstr "چنانچه نانوشته بماند، هیچ کدام از قوانین و شرایط چاپ نمی شود"
 
270
 
271
- #: classes/class-wcdn-settings.php:270
272
- msgid "Footer Imprint"
273
- msgstr "مهر پاورقی"
 
 
 
 
274
 
275
- #: classes/class-wcdn-settings.php:277
276
- msgid "Leave blank to not print a footer."
277
- msgstr "چنانچه نانوشته بماند، پاورقی چاپ نمی شود"
 
278
 
279
- #: classes/class-wcdn-settings.php:309
280
- msgid "Order Numbering Options"
281
- msgstr "پیکربندی شماره گذاری سفارش"
 
 
 
 
 
282
 
283
- #: classes/class-wcdn-writepanel.php:92
284
- msgid "Order Print"
285
- msgstr "چاپ سفارش"
 
286
 
287
- #: classes/class-wcdn-writepanel.php:76 classes/class-wcdn-writepanel.php:77
288
- #: classes/class-wcdn-writepanel.php:102
289
- msgid "Print Invoice"
290
- msgstr "چاپ فاکتور"
291
 
292
- #: classes/class-wcdn-writepanel.php:78 classes/class-wcdn-writepanel.php:80
293
- #: classes/class-wcdn-writepanel.php:81 classes/class-wcdn-writepanel.php:82
294
- #: classes/class-wcdn-writepanel.php:103
295
- msgid "Print Delivery Note"
296
- msgstr "چاپ برگه رسید"
 
 
297
 
298
- #: woocommerce-delivery-notes.php:201
299
- msgid "Invoice"
300
- msgstr "فاکتور"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
301
 
302
- #: templates/print/print-delivery-note.php:20
303
- msgid "Recipient"
304
- msgstr "گیرنده"
 
305
 
306
- #: templates/print/print-delivery-note.php:96
307
- msgid "Customer Notes"
308
- msgstr "یادداشتهای مشتری"
 
309
 
310
- #: woocommerce-delivery-notes.php:0
311
- msgid "WooCommerce Print Invoices & Delivery Notes"
312
- msgstr "چاپ فاکتور و برگه رسید در ووکامرس"
 
313
 
314
- #: woocommerce-delivery-notes.php:0
 
 
 
 
315
  msgid ""
316
- "Print order invoices & delivery notes for WooCommerce shop plugin. You can "
317
- "add company/shop info as well as personal notes & policies to print pages."
 
 
 
 
 
318
  msgstr ""
319
- "چاپ فاکتورها و برگه های رسید سفارش ها برای افزونه فروشگاهی ووکامرس. شما می "
320
- "توانید اطلاعات شرکت / فروشگاه و همچنین یادداشت های شخصی و سیاست ها به چاپ "
321
- "برگه ها بیافزایید."
322
 
323
- #: woocommerce-delivery-notes.php:0
324
- msgid "Steve Clark, Triggvy Gunderson, David Decker"
 
 
 
 
 
 
325
  msgstr ""
326
- "Steve Clark, Triggvy Gunderson, David Decker برگردان پارسی خلیل دلاوران"
327
 
328
- #: classes/class-wcdn-settings.php:136
329
  msgid ""
330
- "This plugin enables you to add a Invoice or simple Delivery Note page for "
331
- "printing for your orders in WooCommerce shop plugin. You can add your "
332
- "company postal address, further add personal notes, refund or other policies "
333
- "and a footer note/branding. This helps speed up your daily shop and order "
334
- "management. In some countries (e.g. in the European Union) it is also "
335
- "required to advice the customer with proper refund policies so this little "
336
- "plugin might help you a bit with that too."
337
- msgstr ""
338
- "این افزونه شما را قادر به افزودن یک فاکتور و یا برگه رسید برای چاپ سفارشات "
339
- "در افزونه فروشگاهی ووکامرس می کند. شما قادر به افزودن آدرس پستی شرکت ، قبض "
340
- "های رسید، بازپرداخت و یا سیاست های دیگر و نام تجاری شرکت در بالا و پایین "
341
- "برگه می باشید. این افزونه به شما کمک می کند تا سریعتر کارهای روزانه و مدیریت "
342
- "سفارش فروشگاه را انجام دهید . همچنین توصیه ها و قوانین بازپرداخت را به "
343
- "مشتریان اعلام کنید."
344
-
345
- #: classes/class-wcdn-settings.php:137
346
  msgid ""
347
- "Just look under <a href=\"%1$s\">WooCommerce > Orders</a> and there go to a "
348
- "single order view. On the right side you will see the Order Print meta box. "
349
- "Click one of the buttons and you get the invoice or delivery note printing "
350
- "page. Yes, it is that easy :-)."
 
 
351
  msgstr ""
352
- " درسمت راست چاپ سفارش را می بینید. و با کلیک بر یکی از دکمه های زیر می "
353
- "توانید فاکتور یا برگه رسید را چاپ کنید. مشخصات سفارش وجود دارد<a href=\"%1$s"
354
- "\">WooCommerce > Orders</a> در پایین"
355
 
356
- #~ msgid "Order Date"
357
- #~ msgstr "تاریخ سفارش"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
358
 
359
- #~ msgid "Email"
360
- #~ msgstr "ایمیل"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
361
 
362
  #~ msgid "Phone"
363
  #~ msgstr "تلفن"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: برگه رسید فروشگاه\n"
4
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/woocommerce-"
5
+ "delivery-notes\n"
6
+ "POT-Creation-Date: 2018-10-22 18:59+0530\n"
7
+ "PO-Revision-Date: 2018-10-22 18:59+0530\n"
8
  "Last-Translator: Khalil Delavaran <khalil.delavaran@gmail.com>\n"
9
  "Language-Team: www.qooqnos.com <khalil.delavaran@gmail.com>\n"
10
  "Language: fa\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.7.1\n"
15
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: includes/class-wcdn-print.php:39 includes/class-wcdn-settings.php:237
20
+ msgid "Invoice"
21
+ msgstr "فاکتور"
22
+
23
+ #: includes/class-wcdn-print.php:40
24
+ msgid "Invoices"
25
+ msgstr ""
26
+
27
+ #: includes/class-wcdn-print.php:41
28
+ msgid "Print Invoice"
29
+ msgstr "چاپ فاکتور"
30
+
31
+ #: includes/class-wcdn-print.php:42
32
+ msgid "Print Invoices"
33
+ msgstr ""
34
+
35
+ #: includes/class-wcdn-print.php:43
36
+ msgid "Invoice created."
37
+ msgstr ""
38
+
39
+ #: includes/class-wcdn-print.php:44
40
+ msgid "Invoices created."
41
+ msgstr ""
42
+
43
+ #: includes/class-wcdn-print.php:45
44
+ msgid "Show \"Print Invoice\" button"
45
+ msgstr ""
46
+
47
+ #: includes/class-wcdn-print.php:51
48
+ msgid "Delivery Note"
49
+ msgstr "برگه رسید"
50
+
51
+ #: includes/class-wcdn-print.php:52
52
+ msgid "Delivery Notes"
53
+ msgstr ""
54
+
55
+ #: includes/class-wcdn-print.php:53
56
+ msgid "Print Delivery Note"
57
+ msgstr "چاپ برگه رسید"
58
+
59
+ #: includes/class-wcdn-print.php:54
60
+ msgid "Print Delivery Notes"
61
+ msgstr ""
62
+
63
+ #: includes/class-wcdn-print.php:55
64
+ msgid "Delivery Note created."
65
  msgstr ""
 
 
66
 
67
+ #: includes/class-wcdn-print.php:56
68
+ msgid "Delivery Notes created."
69
+ msgstr ""
70
+
71
+ #: includes/class-wcdn-print.php:57
72
+ msgid "Show \"Print Delivery Note\" button"
73
+ msgstr ""
74
+
75
+ #: includes/class-wcdn-print.php:63
76
+ msgid "Receipt"
77
+ msgstr ""
78
+
79
+ #: includes/class-wcdn-print.php:64
80
+ msgid "Receipts"
81
+ msgstr ""
82
+
83
+ #: includes/class-wcdn-print.php:65
84
+ msgid "Print Receipt"
85
+ msgstr ""
86
+
87
+ #: includes/class-wcdn-print.php:66
88
+ msgid "Print Receipts"
89
+ msgstr ""
90
+
91
+ #: includes/class-wcdn-print.php:67
92
+ msgid "Receipt created."
93
+ msgstr ""
94
+
95
+ #: includes/class-wcdn-print.php:68
96
+ msgid "Receipts created."
97
+ msgstr ""
98
+
99
+ #: includes/class-wcdn-print.php:69
100
+ msgid "Show \"Print Receipt\" button"
101
+ msgstr ""
102
+
103
+ #: includes/class-wcdn-print.php:78
104
+ msgid "Order"
105
+ msgstr ""
106
+
107
+ #: includes/class-wcdn-print.php:79
108
+ msgid "Orders"
109
+ msgstr ""
110
+
111
+ #: includes/class-wcdn-print.php:80
112
+ msgid "Print Order"
113
+ msgstr ""
114
+
115
+ #: includes/class-wcdn-print.php:81
116
+ msgid "Print Orders"
117
+ msgstr ""
118
+
119
+ #: includes/class-wcdn-print.php:93
120
+ msgid "Default"
121
+ msgstr ""
122
+
123
+ #: includes/class-wcdn-settings.php:67
124
  msgid ""
125
+ "Do you really want to reset the counter to zero? This process can't be "
126
+ "undone."
 
127
  msgstr ""
 
 
128
 
129
+ #: includes/class-wcdn-settings.php:75 includes/class-wcdn-theme.php:57
130
+ #: includes/class-wcdn-theme.php:94 includes/wcdn-template-functions.php:130
131
+ msgid "Print"
132
+ msgstr "چاپ"
133
 
134
+ #: includes/class-wcdn-settings.php:106
135
+ msgid "Template"
136
+ msgstr ""
137
 
138
+ #: includes/class-wcdn-settings.php:113
139
+ msgid "Style"
140
+ msgstr ""
141
 
142
+ #: includes/class-wcdn-settings.php:114
143
+ msgid ""
144
+ "The default print style. Read the <a href=\"%1$s\">FAQ</a> to learn how to "
145
+ "customize it."
146
+ msgstr ""
147
+
148
+ #: includes/class-wcdn-settings.php:124
149
+ msgid "Shop Logo"
150
+ msgstr ""
151
 
152
+ #: includes/class-wcdn-settings.php:130
153
+ msgid ""
154
+ "A shop logo representing your business. When the image is printed, its pixel "
155
+ "density will automatically be eight times higher than the original. This "
156
+ "means, 1 printed inch will correspond to about 288 pixels on the screen."
157
  msgstr ""
158
 
159
+ #: includes/class-wcdn-settings.php:134
160
+ msgid "Shop Name"
161
+ msgstr ""
162
 
163
+ #: includes/class-wcdn-settings.php:140
164
  msgid ""
165
+ "The shop name. Leave blank to use the default Website or Blog title defined "
166
+ "in WordPress settings. The name will be ignored when a Logo is set."
167
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
168
 
169
+ #: includes/class-wcdn-settings.php:144
170
+ msgid "Shop Address"
171
+ msgstr ""
172
 
173
+ #: includes/class-wcdn-settings.php:145
174
+ msgid "The postal address of the shop or even e-mail or telephone."
175
+ msgstr ""
176
 
177
+ #: includes/class-wcdn-settings.php:154
178
+ msgid "Complimentary Close"
179
+ msgstr ""
180
 
181
+ #: includes/class-wcdn-settings.php:155
182
+ msgid "Add a personal close, notes or season greetings."
183
+ msgstr ""
184
 
185
+ #: includes/class-wcdn-settings.php:164
186
+ msgid "Policies"
187
+ msgstr ""
188
 
189
+ #: includes/class-wcdn-settings.php:165
190
+ msgid "Add the shop policies, conditions, etc."
191
+ msgstr ""
192
 
193
+ #: includes/class-wcdn-settings.php:174
194
+ msgid "Footer"
195
+ msgstr ""
196
 
197
+ #: includes/class-wcdn-settings.php:175
198
+ msgid ""
199
+ "Add a footer imprint, instructions, copyright notes, e-mail, telephone, etc."
200
+ msgstr ""
201
 
202
+ #: includes/class-wcdn-settings.php:189
203
+ msgid "Pages & Buttons"
204
+ msgstr ""
205
 
206
+ #: includes/class-wcdn-settings.php:196
207
+ msgid "Print Page Endpoint"
208
+ msgstr ""
209
 
210
+ #: includes/class-wcdn-settings.php:202
211
  msgid ""
212
+ "The endpoint is appended to the accounts page URL to print the order. It "
213
+ "should be unique."
214
  msgstr ""
 
 
215
 
216
+ #: includes/class-wcdn-settings.php:206
217
+ #: includes/wcdn-template-functions.php:275
218
+ msgid "Email"
219
+ msgstr "ایمیل"
220
+
221
+ #: includes/class-wcdn-settings.php:207
222
+ msgid "Show print link in customer emails"
223
  msgstr ""
224
 
225
+ #: includes/class-wcdn-settings.php:211
226
+ msgid ""
227
+ "This includes the emails for a new, processing and completed order. On top "
228
+ "of that the customer invoice email also includes the link."
229
+ msgstr ""
230
 
231
+ #: includes/class-wcdn-settings.php:215
232
+ msgid "My Account"
233
+ msgstr ""
234
 
235
+ #: includes/class-wcdn-settings.php:216
236
+ msgid "Show print button on the \"View Order\" page"
237
+ msgstr ""
 
238
 
239
+ #: includes/class-wcdn-settings.php:224
240
+ msgid "Show print buttons on the \"My Account\" page"
241
+ msgstr ""
242
 
243
+ #: includes/class-wcdn-settings.php:244
244
+ msgid "Numbering"
245
+ msgstr ""
246
 
247
+ #: includes/class-wcdn-settings.php:245
248
+ msgid "Create invoice numbers"
249
+ msgstr ""
250
 
251
+ #: includes/class-wcdn-settings.php:253
252
+ msgid "Next Number"
253
+ msgstr ""
254
 
255
+ #: includes/class-wcdn-settings.php:260
256
+ msgid "The next invoice number."
257
+ msgstr ""
258
 
259
+ #: includes/class-wcdn-settings.php:264
260
+ msgid "Number Prefix"
261
+ msgstr ""
262
 
263
+ #: includes/class-wcdn-settings.php:271
264
+ msgid "This text will be prepended to the invoice number."
265
+ msgstr ""
266
 
267
+ #: includes/class-wcdn-settings.php:275
268
+ msgid "Number Suffix"
269
+ msgstr ""
270
 
271
+ #: includes/class-wcdn-settings.php:282
272
+ msgid "This text will be appended to the invoice number."
273
+ msgstr ""
 
 
274
 
275
+ #: includes/class-wcdn-settings.php:327
276
+ msgid "Admin"
277
+ msgstr ""
 
 
278
 
279
+ #: includes/class-wcdn-settings.php:330
280
  msgid ""
281
+ "The print buttons are available on the order listing and on the order detail "
282
+ "screen."
283
  msgstr ""
 
 
284
 
285
+ #: includes/class-wcdn-settings.php:372
286
  msgid ""
287
+ "This section lets you customise the content. You can preview the <a href="
288
+ "\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target="
289
+ "\"%4$s\" class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s"
290
+ "\" class=\"%5$s\">receipt</a> template."
291
+ msgstr ""
292
+
293
+ #: includes/class-wcdn-settings.php:435
294
+ msgid "Select"
295
  msgstr ""
 
 
296
 
297
+ #: includes/class-wcdn-settings.php:439
298
+ msgid "Remove"
299
+ msgstr ""
300
 
301
+ #: includes/class-wcdn-theme.php:112
302
+ msgid "Print your order"
303
+ msgstr ""
304
 
305
+ #: includes/class-wcdn-theme.php:119
306
+ msgid "Print:"
307
+ msgstr ""
308
 
309
+ #: includes/class-wcdn-theme.php:119
310
+ msgid "Open print view in browser"
311
+ msgstr ""
312
 
313
+ #: includes/class-wcdn-writepanel.php:218
314
+ msgid "Print now"
315
+ msgstr ""
316
 
317
+ #: includes/class-wcdn-writepanel.php:232
318
+ msgid "Order Printing"
319
+ msgstr ""
320
 
321
+ #: includes/class-wcdn-writepanel.php:259
322
+ msgid "Invoice number: "
323
+ msgstr ""
324
 
325
+ #: includes/class-wcdn-writepanel.php:260
326
+ msgid "Invoice date: "
327
+ msgstr ""
328
 
329
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:75
330
+ msgid "If you have a moment, please let us know why you are deactivating"
331
+ msgstr ""
332
+
333
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:76
334
+ msgid "Submit & Deactivate"
335
+ msgstr ""
336
+
337
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:77
338
+ msgid "Deactivate"
339
+ msgstr ""
340
+
341
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:78
342
+ msgid "Cancel"
343
+ msgstr ""
344
+
345
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:79
346
+ msgid "Yes - Deactivate"
347
+ msgstr ""
348
+
349
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:83
350
+ msgid "I found a better plugin"
351
+ msgstr ""
352
+
353
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:84
354
+ msgid "What's the plugin's name?"
355
+ msgstr ""
356
+
357
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:85
358
+ msgid "I only needed the plugin for a short period"
359
+ msgstr ""
360
+
361
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:86
362
+ msgid "The plugin is not working"
363
+ msgstr ""
364
+
365
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:87
366
+ msgid "Kindly share what didn't work so we can fix it for future users..."
367
+ msgstr ""
368
+
369
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:88
370
+ msgid "The plugin is great, but I need specific feature that you don't support"
371
+ msgstr ""
372
+
373
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:89
374
+ msgid "What feature?"
375
+ msgstr ""
376
+
377
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:90
378
+ msgid "I don't like to share my information with you"
379
+ msgstr ""
380
+
381
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:91
382
+ msgctxt ""
383
+ "the text of the 'other' reason for deactivating the plugin that is shown in "
384
+ "the modal box."
385
+ msgid "Other"
386
+ msgstr ""
387
+
388
+ #: includes/component/faq-support/ts-faq-support.php:127
389
+ msgid "Frequently Asked Questions for %s"
390
+ msgstr ""
391
+
392
+ #: includes/component/faq-support/ts-faq-support.php:176
393
+ msgid "FAQ & Support"
394
+ msgstr ""
395
+
396
+ #: includes/component/tracking-data/ts-tracking.php:120
397
+ #: includes/component/tracking-data/ts-tracking.php:180
398
+ msgid "Reset usage tracking"
399
+ msgstr ""
400
+
401
+ #: includes/component/tracking-data/ts-tracking.php:122
402
  msgid ""
403
+ "This will reset your usage tracking settings, causing it to show the opt-in "
404
+ "banner again and not sending any data"
405
  msgstr ""
 
 
406
 
407
+ #: includes/component/tracking-data/ts-tracking.php:225
408
+ msgid "Once in a Week"
409
+ msgstr ""
410
 
411
+ #: includes/component/tracking-data/ts-tracking.php:311
412
+ msgid "Allow"
413
+ msgstr ""
414
 
415
+ #: includes/component/tracking-data/ts-tracking.php:312
416
+ msgid "No thanks"
417
+ msgstr ""
418
 
419
+ #: includes/component/welcome-page/templates/social-media-elements.php:10
420
+ #: includes/wcdn-welcome.php:231
421
+ msgid "Follow %s"
422
+ msgstr ""
423
 
424
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:19
425
+ #: includes/wcdn-welcome.php:99
426
  msgid ""
427
+ "Thank you for activating or updating to the latest version of WooCommerce "
428
+ "Print Invoice & Delivery Note! If you're a first time user, welcome! You're "
429
+ "well on your way to explore the print functionality for your WooCommerce "
430
+ "orders."
431
  msgstr ""
 
 
432
 
433
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:29
434
+ #: includes/wcdn-welcome.php:109
435
+ msgid "Get Started with WooCommerce Print Invoice & Delivery Note"
436
+ msgstr ""
437
 
438
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:33
439
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:62
440
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:68
441
+ #: includes/wcdn-welcome.php:113 includes/wcdn-welcome.php:142
442
+ #: includes/wcdn-welcome.php:148
443
+ msgid "WooCommerce Print Invoice & Delivery Note"
444
+ msgstr ""
445
 
446
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:37
447
+ #: includes/wcdn-welcome.php:117
448
+ msgid "Add settings"
449
+ msgstr ""
450
 
451
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:39
452
+ #: includes/wcdn-welcome.php:119
453
+ msgid ""
454
+ "To enable the print functionality for your invoices, delivery notes & "
455
+ "receipts, you just need to set it up under WooCommerce -> Settings -> Print "
456
+ "page. Here you can also setup the Company Logo that will appear on the "
457
+ "printed items, Company Address & other information."
458
+ msgstr ""
459
 
460
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:41
461
+ #: includes/wcdn-welcome.php:121
462
+ msgid "Click Here to go to Print page"
463
+ msgstr ""
464
 
465
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:52
466
+ #: includes/wcdn-welcome.php:132
467
+ msgid "Enable Print button for Customers."
468
+ msgstr ""
469
 
470
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:54
471
+ #: includes/wcdn-welcome.php:134
472
+ msgid ""
473
+ "Allow customers to print the WooCommerce order invoice from the customer "
474
+ "notification email, from the My Account page or from the View Order page "
475
+ "under My Account."
476
+ msgstr ""
477
 
478
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:56
479
+ #: includes/wcdn-welcome.php:136
480
+ msgid "Click Here to Enable Print button for Customers"
481
+ msgstr ""
482
+
483
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:72
484
+ #: includes/wcdn-welcome.php:152
485
+ msgid "Enable Invoice Numbering"
486
+ msgstr ""
487
+
488
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:74
489
+ msgid ""
490
+ "If you want to change the default invoice numbers & set some numbering "
491
+ "scheme of your own, then you can set it here with a starting invoice number, "
492
+ "a prefix & suffix. For example, you could set it as: TS/001/17-18."
493
+ msgstr ""
494
+
495
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:76
496
+ #: includes/wcdn-welcome.php:156
497
+ msgid "Click Here to Enable Invoice Numbering"
498
+ msgstr ""
499
+
500
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:87
501
+ #: includes/wcdn-welcome.php:167
502
+ msgid "Getting to Know Tyche Softwares"
503
+ msgstr ""
504
 
505
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:90
506
+ #: includes/wcdn-welcome.php:170
507
+ msgid "Visit the Tyche Softwares Website"
508
+ msgstr ""
509
 
510
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:91
511
+ #: includes/wcdn-welcome.php:171
512
+ msgid "View all Premium Plugins"
513
+ msgstr ""
514
 
515
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:100
516
+ #: includes/wcdn-welcome.php:180
517
+ msgid "Meet the team"
518
+ msgstr ""
519
 
520
+ #: includes/component/welcome-page/ts-welcome.php:167
521
+ msgid "Welcome to %s %s"
522
+ msgstr ""
523
+
524
+ #: includes/wcdn-all-component.php:118
525
  msgid ""
526
+ "Thank you for using WooCommerce Print Invoice & Delivery Note plugin! Now "
527
+ "make your deliveries more accurate by allowing customers to select their "
528
+ "preferred delivery date & time from Product Delivery Date Pro for "
529
+ "WooCommerce. <strong><a target=\"_blank\" href= \"https://www.tychesoftwares."
530
+ "com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/?"
531
+ "utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">Get "
532
+ "it now!</a></strong>"
533
  msgstr ""
 
 
 
534
 
535
+ #: includes/wcdn-all-component.php:120
536
+ msgid ""
537
+ "Never login to your admin to check your deliveries by syncing the delivery "
538
+ "dates to the Google Calendar from Product Delivery Date Pro for WooCommerce. "
539
+ "<strong><a target=\"_blank\" href= \"https://www.tychesoftwares.com/store/"
540
+ "premium-plugins/product-delivery-date-pro-for-woocommerce/checkout?"
541
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
542
+ "\">Get it now!</a></strong>"
543
  msgstr ""
 
544
 
545
+ #: includes/wcdn-all-component.php:122
546
  msgid ""
547
+ "You can now view all your deliveries in list view or in calendar view from "
548
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
549
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
550
+ "delivery-date-pro-for-woocommerce/checkout?"
551
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
552
+ "\">Get it now!</a></strong>."
553
+ msgstr ""
554
+
555
+ #: includes/wcdn-all-component.php:124
 
 
 
 
 
 
 
556
  msgid ""
557
+ "Allow your customers to pay extra for delivery for certain Weekdays/Dates "
558
+ "from Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
559
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
560
+ "delivery-date-pro-for-woocommerce/checkout?"
561
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
562
+ "\">Have it now!</a></strong>."
563
  msgstr ""
 
 
 
564
 
565
+ #: includes/wcdn-all-component.php:126
566
+ msgid ""
567
+ "Customers can now edit the Delivery date & time on cart and checkout page or "
568
+ "they can reschedule the deliveries for the already placed orders from "
569
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
570
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
571
+ "delivery-date-pro-for-woocommerce/checkout?"
572
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
573
+ "\">Have it now!</a></strong>."
574
+ msgstr ""
575
+
576
+ #: includes/wcdn-template-functions.php:246
577
+ msgid "Invoice Number"
578
+ msgstr ""
579
+
580
+ #: includes/wcdn-template-functions.php:253
581
+ msgid "Invoice Date"
582
+ msgstr ""
583
+
584
+ #: includes/wcdn-template-functions.php:259
585
+ msgid "Order Number"
586
+ msgstr "شماره سفارش"
587
+
588
+ #: includes/wcdn-template-functions.php:264
589
+ msgid "Order Date"
590
+ msgstr "تاریخ سفارش"
591
+
592
+ #: includes/wcdn-template-functions.php:269
593
+ msgid "Payment Method"
594
+ msgstr "روش پرداخت"
595
+
596
+ #: includes/wcdn-template-functions.php:282
597
+ msgid "Telephone"
598
+ msgstr ""
599
+
600
+ #: includes/wcdn-template-functions.php:315
601
+ msgid "SKU:"
602
+ msgstr "بارکد:"
603
+
604
+ #: includes/wcdn-template-functions.php:409
605
+ #: includes/wcdn-template-functions.php:413
606
+ msgid "(Includes %s)"
607
+ msgstr ""
608
+
609
+ #: includes/wcdn-template-functions.php:429
610
+ msgid "Refund"
611
+ msgstr ""
612
+
613
+ #: includes/wcdn-template-functions.php:441
614
+ msgid "Order Subtotal"
615
+ msgstr ""
616
+
617
+ #: includes/wcdn-welcome.php:54
618
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note %s"
619
+ msgstr ""
620
+
621
+ #: includes/wcdn-welcome.php:55
622
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note"
623
+ msgstr ""
624
+
625
+ #: includes/wcdn-welcome.php:154
626
+ msgid ""
627
+ "f you want to change the default invoice numbers & set some numbering scheme "
628
+ "of your own, then you can set it here with a starting invoice number, a "
629
+ "prefix & suffix. For example, you could set it as: TS/001/17-18."
630
+ msgstr ""
631
+
632
+ #: includes/wcdn-welcome.php:186
633
+ msgid "Current Offers"
634
+ msgstr ""
635
+
636
+ #: templates/print-order/print-content.php:28
637
+ msgid "Billing Address"
638
+ msgstr ""
639
+
640
+ #: templates/print-order/print-content.php:31
641
+ #: templates/print-order/print-content.php:40
642
+ msgid "N/A"
643
+ msgstr "خالی"
644
+
645
+ #: templates/print-order/print-content.php:37
646
+ msgid "Shipping Address"
647
+ msgstr ""
648
+
649
+ #: templates/print-order/print-content.php:71
650
+ msgid "Product"
651
+ msgstr "کالا"
652
+
653
+ #: templates/print-order/print-content.php:72
654
+ msgid "Price"
655
+ msgstr ""
656
+
657
+ #: templates/print-order/print-content.php:73
658
+ msgid "Quantity"
659
+ msgstr "کمیت"
660
+
661
+ #: templates/print-order/print-content.php:74
662
+ msgid "Total"
663
+ msgstr ""
664
+
665
+ #: templates/print-order/print-content.php:147
666
+ msgid "Download:"
667
+ msgstr "دانلود:"
668
+
669
+ #: templates/print-order/print-content.php:148
670
+ msgid "%s Files"
671
+ msgstr ""
672
+
673
+ #: templates/print-order/print-content.php:202
674
+ msgid "Customer Note"
675
+ msgstr ""
676
+
677
+ #: woocommerce-delivery-notes.php:96 woocommerce-delivery-notes.php:103
678
+ msgid "Cheatin&#8217; huh?"
679
+ msgstr ""
680
+
681
+ #: woocommerce-delivery-notes.php:275
682
+ msgid ""
683
+ "I can't differentiate between Invoice, Delivery Notes & Receipt. The "
684
+ "templates are the same. "
685
+ msgstr ""
686
+
687
+ #: woocommerce-delivery-notes.php:281
688
+ msgid "The invoice sent through mail can't be downloaded as PDF directly."
689
+ msgstr ""
690
+
691
+ #: woocommerce-delivery-notes.php:287
692
+ msgid "The plugin is not compatible with another plugin."
693
+ msgstr ""
694
+
695
+ #: woocommerce-delivery-notes.php:293
696
+ msgid "This plugin is not useful to me."
697
+ msgstr ""
698
+
699
+ #: woocommerce-delivery-notes.php:351
700
+ msgid "Go to the settings page"
701
+ msgstr "رفتن به برگه پیکربندی"
702
+
703
+ #: woocommerce-delivery-notes.php:351
704
+ msgid "Settings"
705
+ msgstr "پیکربندی"
706
+
707
+ #~ msgid ""
708
+ #~ "You can <a href=\"%1$s\" target=\"%3$s\" class=\"%4$s\">preview the "
709
+ #~ "invoice template</a> or <a href=\"%2$s\" target=\"%3$s\" class=\"%4$s"
710
+ #~ "\">the delivery note template</a>."
711
+ #~ msgstr ""
712
+ #~ "<a href=\"%1$s\" target=\"%3$s\" class=\"%4$s\">پیش نمایش قالب فاکتور</a> "
713
+ #~ "یا <a href=\"%2$s\" target=\"%3$s\" class=\"%4$s\">پیش نمایش برگه رسید</"
714
+ #~ "a>."
715
+
716
+ #~ msgid ""
717
+ #~ "For more advanced control copy <code>woocommerce-delivery-notes/templates/"
718
+ #~ "print/style.css</code> to <code>your-theme-name/woocommerce/print/style."
719
+ #~ "css</code>."
720
+ #~ msgstr ""
721
+ #~ "برای کنترل پیشرفته کپی کن <code>your-theme-name/woocommerce/print/style."
722
+ #~ "css</code> به <code>woocommerce-delivery-notes/templates/print/style.css</"
723
+ #~ "code>"
724
+
725
+ #~ msgid "Billing Date"
726
+ #~ msgstr "تاریخ صورتحساب"
727
+
728
+ #~ msgid "Shipping Date"
729
+ #~ msgstr "تاریخ باربری"
730
+
731
+ #~ msgid "Get Community Support"
732
+ #~ msgstr "درخواست پشتیبانی از فروم"
733
+
734
+ #~ msgid ""
735
+ #~ "When the image is printed, its pixel density will automatically be eight "
736
+ #~ "times higher than the original. This means, 1 printed inch will "
737
+ #~ "correspond to about 288 pixels on the screen. Example: an image with a "
738
+ #~ "width of 576 pixels and a height of 288 pixels will have a printed size "
739
+ #~ "of about 2 inches to 1 inch."
740
+ #~ msgstr ""
741
+ #~ "زمانی که تصویر چاپ می شود، تراکم پیکسل آن به طور خودکار هشت برابر بیشتر "
742
+ #~ "از اصل می شود. این به این معنی است که،چاپ 1 اینچ به حدود 288 پیکسل بر "
743
+ #~ "روی صفحه نمایش مطابقت دارد. به عنوان مثال: یک تصویر با عرض 576 پیکسل و "
744
+ #~ "ارتفاع 288 پیکسل، اندازه چاپ در حدود 1 اینچ تا 2 اینچ می شود"
745
+
746
+ #~ msgid "Totals"
747
+ #~ msgstr "مجموع"
748
+
749
+ #~ msgid "Company/Shop Logo"
750
+ #~ msgstr "لوگوی شرکت/فروشگاه"
751
+
752
+ #~ msgid "Remove Logo"
753
+ #~ msgstr "برداشتن لوگو"
754
+
755
+ #~ msgid "Set Logo"
756
+ #~ msgstr "گذاشتن لوگو"
757
+
758
+ #~ msgid "A company/shop logo representing your business."
759
+ #~ msgstr "لوگوی شرکت/فروشگاه به نمایندگی از کسب و کار شما"
760
+
761
+ #~ msgid "Your company/shop name for the Delivery Note."
762
+ #~ msgstr "نام شرکت/فروشگاه برای برگه رسید"
763
+
764
+ #~ msgid "Sequential order number"
765
+ #~ msgstr "شماره سفارش پیاپی"
766
+
767
+ #~ msgid "Sequential numbering is enabled."
768
+ #~ msgstr "شماره گذاری پیاپی پویا شده است"
769
+
770
+ #~ msgid ""
771
+ #~ "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
772
+ #~ "Numbers</a> Plugin."
773
+ #~ msgstr ""
774
+ #~ "خواهشمند است افزونه <a href=\"%s\">WooCommerce Sequential Order Numbers</"
775
+ #~ "a>را برپاسازی کرده و به و رایگان پویا کنید"
776
+
777
+ #~ msgid "You do not have sufficient permissions to access this page."
778
+ #~ msgstr "شما مجوز کافی برای دسترسی به این صفحه را ندارید"
779
+
780
+ #~ msgid "FAQ"
781
+ #~ msgstr "پرسش و پاسخ"
782
+
783
+ #~ msgid "Support"
784
+ #~ msgstr "پشتیبانی"
785
+
786
+ #~ msgid "Returns Policy, Conditions, etc.:"
787
+ #~ msgstr "افزودن قوانین، شرایط، و موارد دیگر"
788
+
789
+ #~ msgid "Weight:"
790
+ #~ msgstr "وزن:"
791
+
792
+ #~ msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
793
+ #~ msgstr "پلاگین: چاپ فاکتور و برگه رسید در ووکامرس"
794
+
795
+ #~ msgid "Note:"
796
+ #~ msgstr "نکته:"
797
+
798
+ #~ msgid ""
799
+ #~ "The postal address of the company/shop, which gets printed right of the "
800
+ #~ "company/shop name, above the order listings."
801
+ #~ msgstr "آدرس پستی از شرکت/فروشگاه، که در بالای لیست سفارشات، چاپ می شود"
802
 
803
+ #~ msgid ""
804
+ #~ "Add some personal notes, or season greetings or whatever (e.g. Thank You "
805
+ #~ "for Your Order!, Merry Christmas!, etc.)."
806
+ #~ msgstr ""
807
+ #~ "اضافه کردن بیشتر یادداشت های شخصی، همانند تشکر از خرید شما یا تبریک "
808
+ #~ "مناسبت ها و موارد دیگر"
809
+
810
+ #~ msgid ""
811
+ #~ "Add some further footer imprint, copyright notes etc. to get the printed "
812
+ #~ "sheets a bit more branded to your needs."
813
+ #~ msgstr ""
814
+ #~ "افزودن برخی از یادداشت ها در پاورقی، همانند مهر، یادداشت کپی رایت، دریافت "
815
+ #~ "برگه های چاپ شده و یا افزودن لوگوهای تجاری."
816
+
817
+ #~ msgid "About the Plugin"
818
+ #~ msgstr "درباره افزونه"
819
+
820
+ #~ msgid "For more information:"
821
+ #~ msgstr "برای اطلاعات بیشتر:"
822
+
823
+ #~ msgid "Frequently Asked Questions"
824
+ #~ msgstr "پرسش های متداول"
825
+
826
+ #~ msgid "Project on WordPress.org"
827
+ #~ msgstr " WordPress.org پروژه در"
828
+
829
+ #~ msgid "Project on GitHub"
830
+ #~ msgstr "GitHub پروژه در"
831
+
832
+ #~ msgid "Invoices and Delivery Notes"
833
+ #~ msgstr "فاکتور و برگه رسید"
834
+
835
+ #~ msgid "Company/Shop Name"
836
+ #~ msgstr "نام شرکت/فروشگاه"
837
+
838
+ #~ msgid ""
839
+ #~ "Leave blank to use the default Website/ Blog title defined in WordPress "
840
+ #~ "settings."
841
+ #~ msgstr ""
842
+ #~ "چنانچه نانوشته بماند، از عنوان تعریف شده وب سایت در تنظیمات وردپرس "
843
+ #~ "استفاده می شود"
844
+
845
+ #~ msgid "Company/Shop Address"
846
+ #~ msgstr "آدرس شرکت/فروشگاه"
847
+
848
+ #~ msgid "Leave blank to not print an address."
849
+ #~ msgstr "چنانچه نانوشته بماند، آدرس چاپ نمی شود"
850
+
851
+ #~ msgid "Personal Notes"
852
+ #~ msgstr "یادداشت شخصی"
853
+
854
+ #~ msgid "Leave blank to not print any personal notes."
855
+ #~ msgstr "چنانچه نانوشته بماند، یادداشت های شخصی چاپ نمی شوند"
856
+
857
+ #~ msgid ""
858
+ #~ "Here you can add some more policies, conditions etc. For example add a "
859
+ #~ "returns policy in case the client would like to send back some goods. In "
860
+ #~ "some countries (e.g. in the European Union) this is required so please "
861
+ #~ "add any required info in accordance with the statutory regulations."
862
+ #~ msgstr ""
863
+ #~ "در اینجا می توانید قوانین بیشتری را به اجرا بگذارید . همانند قانون برگشت "
864
+ #~ "از فروش، و یا هر قانون و مقررات دولتی و موارد دیگر"
865
+
866
+ #~ msgid "Leave blank to not print any policies or conditions."
867
+ #~ msgstr "چنانچه نانوشته بماند، هیچ کدام از قوانین و شرایط چاپ نمی شود"
868
+
869
+ #~ msgid "Footer Imprint"
870
+ #~ msgstr "مهر پاورقی"
871
+
872
+ #~ msgid "Leave blank to not print a footer."
873
+ #~ msgstr "چنانچه نانوشته بماند، پاورقی چاپ نمی شود"
874
+
875
+ #~ msgid "Order Numbering Options"
876
+ #~ msgstr "پیکربندی شماره گذاری سفارش"
877
+
878
+ #~ msgid "Order Print"
879
+ #~ msgstr "چاپ سفارش"
880
+
881
+ #~ msgid "Recipient"
882
+ #~ msgstr "گیرنده"
883
+
884
+ #~ msgid "Customer Notes"
885
+ #~ msgstr "یادداشتهای مشتری"
886
+
887
+ #~ msgid "WooCommerce Print Invoices & Delivery Notes"
888
+ #~ msgstr "چاپ فاکتور و برگه رسید در ووکامرس"
889
+
890
+ #~ msgid ""
891
+ #~ "Print order invoices & delivery notes for WooCommerce shop plugin. You "
892
+ #~ "can add company/shop info as well as personal notes & policies to print "
893
+ #~ "pages."
894
+ #~ msgstr ""
895
+ #~ "چاپ فاکتورها و برگه های رسید سفارش ها برای افزونه فروشگاهی ووکامرس. شما "
896
+ #~ "می توانید اطلاعات شرکت / فروشگاه و همچنین یادداشت های شخصی و سیاست ها به "
897
+ #~ "چاپ برگه ها بیافزایید."
898
+
899
+ #~ msgid "Steve Clark, Triggvy Gunderson, David Decker"
900
+ #~ msgstr ""
901
+ #~ "Steve Clark, Triggvy Gunderson, David Decker برگردان پارسی خلیل دلاوران"
902
+
903
+ #~ msgid ""
904
+ #~ "This plugin enables you to add a Invoice or simple Delivery Note page for "
905
+ #~ "printing for your orders in WooCommerce shop plugin. You can add your "
906
+ #~ "company postal address, further add personal notes, refund or other "
907
+ #~ "policies and a footer note/branding. This helps speed up your daily shop "
908
+ #~ "and order management. In some countries (e.g. in the European Union) it "
909
+ #~ "is also required to advice the customer with proper refund policies so "
910
+ #~ "this little plugin might help you a bit with that too."
911
+ #~ msgstr ""
912
+ #~ "این افزونه شما را قادر به افزودن یک فاکتور و یا برگه رسید برای چاپ "
913
+ #~ "سفارشات در افزونه فروشگاهی ووکامرس می کند. شما قادر به افزودن آدرس پستی "
914
+ #~ "شرکت ، قبض های رسید، بازپرداخت و یا سیاست های دیگر و نام تجاری شرکت در "
915
+ #~ "بالا و پایین برگه می باشید. این افزونه به شما کمک می کند تا سریعتر کارهای "
916
+ #~ "روزانه و مدیریت سفارش فروشگاه را انجام دهید . همچنین توصیه ها و قوانین "
917
+ #~ "بازپرداخت را به مشتریان اعلام کنید."
918
+
919
+ #~ msgid ""
920
+ #~ "Just look under <a href=\"%1$s\">WooCommerce > Orders</a> and there go to "
921
+ #~ "a single order view. On the right side you will see the Order Print meta "
922
+ #~ "box. Click one of the buttons and you get the invoice or delivery note "
923
+ #~ "printing page. Yes, it is that easy :-)."
924
+ #~ msgstr ""
925
+ #~ " درسمت راست چاپ سفارش را می بینید. و با کلیک بر یکی از دکمه های زیر می "
926
+ #~ "توانید فاکتور یا برگه رسید را چاپ کنید. مشخصات سفارش وجود دارد<a href="
927
+ #~ "\"%1$s\">WooCommerce > Orders</a> در پایین"
928
 
929
  #~ msgid "Phone"
930
  #~ msgstr "تلفن"
languages/woocommerce-delivery-notes-fi_FI.mo CHANGED
Binary file
languages/woocommerce-delivery-notes-fi_FI.po CHANGED
@@ -1,9 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
4
- "Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
5
- "POT-Creation-Date: 2014-11-09 23:06+0100\n"
6
- "PO-Revision-Date: 2014-12-04 15:20+0200\n"
 
7
  "Last-Translator: Juhana Leinonen <juhana.leinonen@mantissa.fi>\n"
8
  "Language-Team: \n"
9
  "Language: fi_FI\n"
@@ -11,7 +12,7 @@ msgstr ""
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
14
- "X-Generator: Poedit 1.6.10\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
17
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
@@ -20,212 +21,211 @@ msgstr ""
20
  "X-Textdomain-Support: yes\n"
21
  "X-Poedit-SearchPath-0: ..\n"
22
 
23
- #: ../includes/class-wcdn-settings.php:72
24
- msgid "Do you really want to reset the counter to zero?"
25
- msgstr "Haluatko varmasti nollata laskurin?"
26
-
27
  # @ woocommerce-delivery-notes
28
- #: ../includes/class-wcdn-settings.php:102 ../includes/class-wcdn-theme.php:55
29
- #: ../includes/class-wcdn-theme.php:90
30
- #: ../includes/wcdn-template-functions.php:127
31
- msgid "Print"
32
- msgstr "Tulosta"
 
 
33
 
34
  # @ woocommerce-delivery-notes
35
- #: ../includes/class-wcdn-settings.php:157
36
- msgid "Print Order"
37
- msgstr "Tulosta tilaus"
38
 
39
- #: ../includes/class-wcdn-settings.php:176
40
- #, php-format
41
- msgid ""
42
- "You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</"
43
- "a>, <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s\">delivery note</a> or <a "
44
- "href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> template."
45
  msgstr ""
46
- "Voit esikatsella <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">lasku-</a>, "
47
- "<a href=\"%2$s\" target=\"%4$s\" class=\"%5$s\">lähete-</a> tai <a href="
48
- "\"%3$s\" target=\"%4$s\" class=\"%5$s\">kuittipohjaa</a>."
49
 
50
  # @ woocommerce-delivery-notes
51
- #: ../includes/class-wcdn-settings.php:177
52
- msgid ""
53
- "With the FAQ in the readme file you can learn how to customize the template."
54
- msgstr "FAQ readme-tiedostossa kertoo kuinka muokata pohjaa."
55
 
56
- # @ woocommerce-delivery-notes
57
- #: ../includes/class-wcdn-settings.php:188
58
- msgid "Company/Shop Logo"
59
- msgstr "Yrityksen/kaupan logo"
60
 
61
- # @ woocommerce-delivery-notes
62
- #: ../includes/class-wcdn-settings.php:194
63
- msgid "Remove Logo"
64
- msgstr "Poista logo"
65
 
66
  # @ woocommerce-delivery-notes
67
- #: ../includes/class-wcdn-settings.php:195
68
- msgid "Set Logo"
69
- msgstr "Aseta logo"
70
 
71
- # @ woocommerce-delivery-notes
72
- #: ../includes/class-wcdn-settings.php:199
73
- msgid "A company/shop logo representing your business."
74
- msgstr "Yrityksen/kaupan logo joka kuvaa yritystäsi."
75
 
76
  # @ woocommerce-delivery-notes
77
- #: ../includes/class-wcdn-settings.php:200
78
- #: ../includes/class-wcdn-settings.php:213
79
- #: ../includes/class-wcdn-settings.php:226
80
- #: ../includes/class-wcdn-settings.php:239
81
- #: ../includes/class-wcdn-settings.php:252
82
- #: ../includes/class-wcdn-settings.php:265
83
- #: ../includes/class-wcdn-settings.php:369
84
- #: ../includes/class-wcdn-settings.php:384
85
- #: ../includes/class-wcdn-settings.php:399
86
- msgid "Note:"
87
- msgstr "Huom:"
88
 
89
- # @ woocommerce-delivery-notes
90
- #: ../includes/class-wcdn-settings.php:201
91
- msgid ""
92
- "When the image is printed, its pixel density will automatically be eight "
93
- "times higher than the original. This means, 1 printed inch will correspond "
94
- "to about 288 pixels on the screen. Example: an image with a width of 576 "
95
- "pixels and a height of 288 pixels will have a printed size of about 2 inches "
96
- "to 1 inch."
97
  msgstr ""
98
- "Kun kuva tulostetaan, sen pikselitiheys on automaattisesti "
99
- "kahdeksankertainen alkuperäiseen nähden. Tämä tarkoittaa että yksi tuuma "
100
- "paperilla vastaa noin 288 pikseliä ruudulla. Esimerkki: kuva jonka leveys on "
101
- "576 pikseliä ja korkeus 288 pikseliä tulostuu noin 2 x 1 tuuman (5 cm x 2,5 "
102
- "cm) kokoisena."
103
 
104
- # @ woocommerce-delivery-notes
105
- #: ../includes/class-wcdn-settings.php:207
106
- msgid "Company/Shop Name"
107
- msgstr "Yrityksen/kaupan nimi"
108
 
109
- # @ woocommerce-delivery-notes
110
- #: ../includes/class-wcdn-settings.php:212
111
- msgid "Your company/shop name for the Delivery Note."
112
- msgstr "Yrityksen/kaupan nimi lähetteessä."
113
 
114
- # @ woocommerce-delivery-notes
115
- #: ../includes/class-wcdn-settings.php:214
116
- msgid ""
117
- "Leave blank to use the default Website/Blog title defined in WordPress "
118
- "settings. The name will be ignored when a Logo is set."
119
  msgstr ""
120
- "Jätä tyhjäksi käyttääksesi oletusarvoista verkkosivun/blogin otsikkoa "
121
- "WordPressin asetuksissa. Nimeä ei näytetä jos logo on asetettu."
122
 
123
- # @ woocommerce-delivery-notes
124
- #: ../includes/class-wcdn-settings.php:220
125
- msgid "Company/Shop Address"
126
- msgstr "Yrityksen/kaupan osoite"
127
 
128
- # @ woocommerce-delivery-notes
129
- #: ../includes/class-wcdn-settings.php:225
130
- msgid ""
131
- "The postal address of the company/shop or even e-mail or telephone, which "
132
- "gets printed right after the company/shop name."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
133
  msgstr ""
134
- "Yrityksen/kaupan postiosoite tai sähköposti tai puhelinnumero, joka tulostuu "
135
- "heti yrityksen/kaupan nimen jälkeen."
136
 
137
  # @ woocommerce-delivery-notes
138
- #: ../includes/class-wcdn-settings.php:227
139
- msgid "Leave blank to not print an address."
140
- msgstr "Jättämällä tyhjäksi osoitetta ei tulosteta."
141
 
142
- #: ../includes/class-wcdn-settings.php:233
143
- msgid "Complimentary Close"
144
- msgstr "Lopputervehdys"
145
 
146
  # @ woocommerce-delivery-notes
147
- #: ../includes/class-wcdn-settings.php:238
 
 
 
 
 
 
 
 
 
 
 
 
148
  msgid ""
149
- "Add some personal notes, or season greetings or whatever (e.g. Thank You for "
150
- "Your Order!, Merry Christmas!, etc.)."
151
  msgstr ""
152
- "Lisää henkilökohtaisia viestejä, ajankohtaisia tervehdyksiä tai mitä tahansa "
153
- "(esim. kiitos tilauksesta, hyvää joulua, jne)."
154
 
155
  # @ woocommerce-delivery-notes
156
- #: ../includes/class-wcdn-settings.php:240
157
- msgid "Leave blank to not print any personal notes."
158
- msgstr "Jättämällä tyhjäksi lopputervehdystä ei näytetä."
 
159
 
160
- # @ woocommerce-delivery-notes
161
- #: ../includes/class-wcdn-settings.php:246
162
- msgid "Returns Policy, Conditions, etc"
163
- msgstr "Palautus- ja toimitusehdot jne."
164
 
165
- # @ woocommerce-delivery-notes
166
- #: ../includes/class-wcdn-settings.php:251
 
 
 
167
  msgid ""
168
- "Here you can add some more policies, conditions etc. For example add a "
169
- "returns policy in case the client would like to send back some goods. In "
170
- "some countries (e.g. in the European Union) this is required so please add "
171
- "any required info in accordance with the statutory regulations."
172
  msgstr ""
173
- "Tähän voi lisätä muita ehtoja, esimerkiksi palautusehdot jos asiakas haluaa "
174
- "palauttaa tuotteita. Joissain maissa, kuten Euroopan Unionin jäsenmaissa, "
175
- "tämä on pakollista joten ole hyvä ja lisää paikallisten lakien vaatimat "
176
- "tiedot."
177
 
178
- # @ woocommerce-delivery-notes
179
- #: ../includes/class-wcdn-settings.php:253
180
- msgid "Leave blank to not print any policies or conditions."
181
- msgstr "Jättämällä tyhjäksi ehtoja ei tulosteta."
182
 
183
- # @ woocommerce-delivery-notes
184
- #: ../includes/class-wcdn-settings.php:259
185
- msgid "Footer"
186
- msgstr "Alatunniste"
 
 
187
 
188
- # @ woocommerce-delivery-notes
189
- #: ../includes/class-wcdn-settings.php:264
 
 
 
190
  msgid ""
191
- "Add some further footer imprint, e-mail, telephone, copyright notes etc. "
192
- "This makes the printed sheets a bit more branded."
193
  msgstr ""
194
- "Lisää muita alatunnisteita kuten sähköpostiosoite, puhelinnumero, "
195
- "tekijänoikeuslauseke jne. Tämä antaa tulosteille ammattimaisemman ilmeen."
196
 
197
- # @ woocommerce-delivery-notes
198
- #: ../includes/class-wcdn-settings.php:266
199
- msgid "Leave blank to not print a footer."
200
- msgstr "Jättämällä tyhjäksi alatunnistetta ei tulosteta."
 
 
 
 
 
 
 
201
 
202
- #: ../includes/class-wcdn-settings.php:272
203
- msgid "Types"
204
- msgstr "Tyypit"
 
 
 
 
205
 
206
- #: ../includes/class-wcdn-settings.php:279
207
- msgid "Enable Invoices"
208
- msgstr "Ota laskut käyttöön"
209
 
210
- #: ../includes/class-wcdn-settings.php:286
211
- msgid "Enable Delivery Notes"
212
- msgstr "Ota lähetteet käyttöön"
 
213
 
214
- #: ../includes/class-wcdn-settings.php:293
215
- msgid "Enable Receipts"
216
- msgstr "Ota kuitit käyttöön"
 
217
 
218
- #: ../includes/class-wcdn-settings.php:301
219
- msgid "Front-end Options"
220
- msgstr "Käyttöliittymän asetukset"
221
 
222
  # @ woocommerce-delivery-notes
223
- #: ../includes/class-wcdn-settings.php:306
224
  msgid "Print Page Endpoint"
225
  msgstr "Tulostussivun pääte"
226
 
227
  # @ woocommerce-delivery-notes
228
- #: ../includes/class-wcdn-settings.php:313
229
  msgid ""
230
  "The endpoint is appended to the accounts page URL to print the order. It "
231
  "should be unique."
@@ -233,268 +233,711 @@ msgstr ""
233
  "Pääte lisätään sivun URL-osoitteeseen jolla tilaus tulostetaan. Sen tulee "
234
  "olla yksilöllinen."
235
 
236
- #: ../includes/class-wcdn-settings.php:319
237
- msgid "Print Buttons"
238
- msgstr "Tulostusnapit"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
239
 
240
  # @ woocommerce-delivery-notes
241
- #: ../includes/class-wcdn-settings.php:326
242
  msgid "Show print button on the \"View Order\" page"
243
  msgstr "Näytä tulostusnappi \"Näytä tilaus\"-sivulla"
244
 
245
  # @ woocommerce-delivery-notes
246
- #: ../includes/class-wcdn-settings.php:333
247
  msgid "Show print buttons on the \"My Account\" page"
248
  msgstr "Näytä tulostusnapit \"Käyttäjätilini\"-sivulla"
249
 
250
- # @ woocommerce-delivery-notes
251
- #: ../includes/class-wcdn-settings.php:341
252
- msgid "Order Numbering"
253
- msgstr "Tilausten numerointi"
254
-
255
- #: ../includes/class-wcdn-settings.php:346
256
- #: ../includes/wcdn-template-functions.php:224
257
- msgid "Invoice Number"
258
- msgstr "Laskun numero"
259
 
260
- #: ../includes/class-wcdn-settings.php:354
261
  msgid "Create invoice numbers"
262
  msgstr "Luo laskujen numerot"
263
 
264
- #: ../includes/class-wcdn-settings.php:361
265
- msgid "Invoice Number Start"
266
- msgstr "Laskujen numeroinnin alku"
267
-
268
- #: ../includes/class-wcdn-settings.php:368
269
- msgid "Start the numbering at the specified number."
270
- msgstr "Aloita numerointi tietystä numerosta."
271
 
272
- #: ../includes/class-wcdn-settings.php:370
273
- msgid "Use only integers."
274
- msgstr "Käytä vain kokonaislukuja."
275
 
276
- #: ../includes/class-wcdn-settings.php:376
277
- msgid "Invoice Number Prefix"
278
- msgstr "Laskunumeron alkuosa"
279
 
280
- #: ../includes/class-wcdn-settings.php:383
281
  msgid "This text will be prepended to the invoice number."
282
  msgstr "Tämä teksti liitetään laskun numeron alkuun."
283
 
284
- #: ../includes/class-wcdn-settings.php:385
285
- msgid "Leave blank to not add a prefix."
286
- msgstr "Jättämällä tyhjäksi alkuun ei liitetä mitään."
287
-
288
- #: ../includes/class-wcdn-settings.php:391
289
- msgid "Invoice Number Suffix"
290
- msgstr "Laskunumeron loppuosa"
291
 
292
- #: ../includes/class-wcdn-settings.php:398
293
  msgid "This text will be appended to the invoice number."
294
  msgstr "Tämä teksti liitetään laskun numeron jälkeen."
295
 
296
- #: ../includes/class-wcdn-settings.php:400
297
- msgid "Leave blank to not add a suffix."
298
- msgstr "Jättämällä tyhjäksi loppuun ei liitetä mitään."
299
-
300
- #: ../includes/class-wcdn-settings.php:406
301
- msgid "Invoice Number Counter"
302
- msgstr "Laskunumeron laskuri"
303
-
304
- #: ../includes/class-wcdn-settings.php:415
305
- msgid "Reset Counter"
306
- msgstr "Nollaa laskuri"
307
-
308
- #: ../includes/class-wcdn-settings.php:421
309
- msgid "Sequential Order Number"
310
- msgstr "Peräkkäiset tilausnumerot"
311
-
312
- # @ woocommerce-delivery-notes
313
- #: ../includes/class-wcdn-settings.php:426
314
- msgid "Sequential numbering is enabled."
315
- msgstr "Peräkkäinen numerointi on päällä."
316
 
317
- # @ woocommerce-delivery-notes
318
- #: ../includes/class-wcdn-settings.php:428
319
- #, php-format
320
  msgid ""
321
- "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
322
- "Numbers</a> Plugin."
323
  msgstr ""
324
- "Asenna ja aktivoi ilmainen <a href=\"%s\">\"WooCommerce Sequential Order "
325
- "Numbers\"</a> -liitännäinen."
326
 
327
- # @ woocommerce-delivery-notes
328
- #: ../includes/class-wcdn-writepanel.php:101
329
- #: ../includes/class-wcdn-writepanel.php:102
330
- #: ../includes/class-wcdn-writepanel.php:135
331
- #: ../includes/class-wcdn-writepanel.php:136
332
- #: ../includes/class-wcdn-writepanel.php:267
333
- msgid "Print Invoice"
334
- msgstr "Tulosta lasku"
335
 
336
- # @ woocommerce-delivery-notes
337
- #: ../includes/class-wcdn-writepanel.php:107
338
- #: ../includes/class-wcdn-writepanel.php:108
339
- #: ../includes/class-wcdn-writepanel.php:140
340
- #: ../includes/class-wcdn-writepanel.php:141
341
- #: ../includes/class-wcdn-writepanel.php:271
342
- msgid "Print Delivery Note"
343
- msgstr "Tulosta lähete"
344
 
345
- #: ../includes/class-wcdn-writepanel.php:113
346
- #: ../includes/class-wcdn-writepanel.php:114
347
- #: ../includes/class-wcdn-writepanel.php:145
348
- #: ../includes/class-wcdn-writepanel.php:146
349
- #: ../includes/class-wcdn-writepanel.php:275
350
- msgid "Print Receipt"
351
- msgstr "Tulosta kuitti"
352
 
353
- # @ woocommerce-delivery-notes
354
- #: ../includes/class-wcdn-writepanel.php:237
355
- #, php-format
356
- msgid "Invoice created."
357
- msgid_plural "%s invoices created."
358
- msgstr[0] "Lasku luotu."
359
- msgstr[1] "%s laskua luotu."
360
 
361
- # @ woocommerce-delivery-notes
362
- #: ../includes/class-wcdn-writepanel.php:239
363
- #, php-format
364
- msgid "Delivery note created."
365
- msgid_plural "%s delivery notes created."
366
- msgstr[0] "Lähete luotu."
367
- msgstr[1] "%s lähetettä luotu."
368
 
369
- #: ../includes/class-wcdn-writepanel.php:241
370
- #, php-format
371
- msgid "Receipt created."
372
- msgid_plural "%s receipts created."
373
- msgstr[0] "Kuitti luotu."
374
- msgstr[1] "%s kuittia luotu."
375
 
376
  # @ woocommerce-delivery-notes
377
- #: ../includes/class-wcdn-writepanel.php:245
378
  msgid "Print now"
379
  msgstr "Tulosta nyt"
380
 
381
  # @ woocommerce-delivery-notes
382
- #: ../includes/class-wcdn-writepanel.php:256
383
  msgid "Order Printing"
384
  msgstr "Tilausten tulostaminen"
385
 
386
- #: ../includes/class-wcdn-writepanel.php:288
387
  msgid "Invoice number: "
388
  msgstr "Laskun numero:"
389
 
390
- #: ../includes/class-wcdn-writepanel.php:289
391
  msgid "Invoice date: "
392
  msgstr "Laskun päivämäärä:"
393
 
394
- # @ woocommerce-delivery-notes
395
- #: ../includes/wcdn-template-functions.php:39
396
- msgid "Invoice"
397
- msgstr "Lasku"
398
 
399
- # @ woocommerce-delivery-notes
400
- #: ../includes/wcdn-template-functions.php:41
401
- msgid "Delivery Note"
402
- msgstr "Lähete"
403
 
404
- #: ../includes/wcdn-template-functions.php:43
405
- msgid "Receipt"
406
- msgstr "Kuitti"
407
 
408
- # @ woocommerce-delivery-notes
409
- #: ../includes/wcdn-template-functions.php:45
410
- msgid "Order"
411
- msgstr "Tilaus"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
412
 
413
  # @ woocommerce-delivery-notes
414
- #: ../includes/wcdn-template-functions.php:230
415
  msgid "Order Number"
416
  msgstr "Tilausnumero"
417
 
418
  # @ woocommerce-delivery-notes
419
- #: ../includes/wcdn-template-functions.php:235
420
  msgid "Order Date"
421
  msgstr "Tilauksen päivämäärä"
422
 
423
  # @ woocommerce-delivery-notes
424
- #: ../includes/wcdn-template-functions.php:240
425
  msgid "Payment Method"
426
  msgstr "Maksutapa"
427
 
428
  # @ woocommerce-delivery-notes
429
- #: ../includes/wcdn-template-functions.php:246
430
- msgid "Email"
431
- msgstr "Sähköposti"
432
-
433
- # @ woocommerce-delivery-notes
434
- #: ../includes/wcdn-template-functions.php:253
435
  msgid "Telephone"
436
  msgstr "Puhelin"
437
 
438
- #: ../includes/wcdn-template-functions.php:286
439
  msgid "SKU:"
440
  msgstr "Tuotetunnus:"
441
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
442
  # @ woocommerce-delivery-notes
443
- #: ../templates/print-order/print-content.php:28
444
  msgid "Billing Address"
445
  msgstr "Laskutusosoite"
446
 
447
  # @ woocommerce-delivery-notes
448
- #: ../templates/print-order/print-content.php:31
449
- #: ../templates/print-order/print-content.php:40
450
  msgid "N/A"
451
  msgstr "-"
452
 
453
  # @ woocommerce-delivery-notes
454
- #: ../templates/print-order/print-content.php:37
455
  msgid "Shipping Address"
456
  msgstr "Toimitusosoite"
457
 
458
  # @ woocommerce-delivery-notes
459
- #: ../templates/print-order/print-content.php:70
460
  msgid "Product"
461
  msgstr "Tuote"
462
 
463
- #: ../templates/print-order/print-content.php:71
464
  msgid "Price"
465
  msgstr "Hinta"
466
 
467
- #: ../templates/print-order/print-content.php:72
468
  msgid "Quantity"
469
  msgstr "Määrä"
470
 
471
  # @ woocommerce-delivery-notes
472
- #: ../templates/print-order/print-content.php:73
473
  msgid "Total"
474
  msgstr "Yhteensä"
475
 
476
  # @ woocommerce-delivery-notes
477
- #: ../templates/print-order/print-content.php:97
478
  msgid "Download:"
479
  msgstr "Lataa:"
480
 
481
  # @ woocommerce-delivery-notes
482
- #: ../templates/print-order/print-content.php:98
483
- #, php-format
484
  msgid "%s Files"
485
  msgstr "%s tiedostoa"
486
 
487
  # @ woocommerce-delivery-notes
488
- #: ../templates/print-order/print-content.php:149
489
  msgid "Customer Note"
490
  msgstr "Asiakkaan viesti"
491
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
492
  # @ woocommerce-delivery-notes
493
- #: ../woocommerce-delivery-notes.php:180
494
  msgid "Go to the settings page"
495
  msgstr "Mene asetussivulle"
496
 
497
  # @ woocommerce-delivery-notes
498
- #: ../woocommerce-delivery-notes.php:180
499
  msgid "Settings"
500
  msgstr "Asetukset"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
4
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/woocommerce-"
5
+ "delivery-notes\n"
6
+ "POT-Creation-Date: 2018-10-22 19:00+0530\n"
7
+ "PO-Revision-Date: 2018-10-22 19:00+0530\n"
8
  "Last-Translator: Juhana Leinonen <juhana.leinonen@mantissa.fi>\n"
9
  "Language-Team: \n"
10
  "Language: fi_FI\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Generator: Poedit 1.8.7.1\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
18
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
21
  "X-Textdomain-Support: yes\n"
22
  "X-Poedit-SearchPath-0: ..\n"
23
 
 
 
 
 
24
  # @ woocommerce-delivery-notes
25
+ #: includes/class-wcdn-print.php:39 includes/class-wcdn-settings.php:237
26
+ msgid "Invoice"
27
+ msgstr "Lasku"
28
+
29
+ #: includes/class-wcdn-print.php:40
30
+ msgid "Invoices"
31
+ msgstr ""
32
 
33
  # @ woocommerce-delivery-notes
34
+ #: includes/class-wcdn-print.php:41
35
+ msgid "Print Invoice"
36
+ msgstr "Tulosta lasku"
37
 
38
+ #: includes/class-wcdn-print.php:42
39
+ msgid "Print Invoices"
 
 
 
 
40
  msgstr ""
 
 
 
41
 
42
  # @ woocommerce-delivery-notes
43
+ #: includes/class-wcdn-print.php:43
44
+ #, fuzzy
45
+ msgid "Invoice created."
46
+ msgstr "Lasku luotu."
47
 
48
+ #: includes/class-wcdn-print.php:44
49
+ msgid "Invoices created."
50
+ msgstr ""
 
51
 
52
+ #: includes/class-wcdn-print.php:45
53
+ msgid "Show \"Print Invoice\" button"
54
+ msgstr ""
 
55
 
56
  # @ woocommerce-delivery-notes
57
+ #: includes/class-wcdn-print.php:51
58
+ msgid "Delivery Note"
59
+ msgstr "Lähete"
60
 
61
+ #: includes/class-wcdn-print.php:52
62
+ msgid "Delivery Notes"
63
+ msgstr ""
 
64
 
65
  # @ woocommerce-delivery-notes
66
+ #: includes/class-wcdn-print.php:53
67
+ msgid "Print Delivery Note"
68
+ msgstr "Tulosta lähete"
 
 
 
 
 
 
 
 
69
 
70
+ #: includes/class-wcdn-print.php:54
71
+ msgid "Print Delivery Notes"
 
 
 
 
 
 
72
  msgstr ""
 
 
 
 
 
73
 
74
+ #: includes/class-wcdn-print.php:55
75
+ msgid "Delivery Note created."
76
+ msgstr ""
 
77
 
78
+ #: includes/class-wcdn-print.php:56
79
+ msgid "Delivery Notes created."
80
+ msgstr ""
 
81
 
82
+ #: includes/class-wcdn-print.php:57
83
+ msgid "Show \"Print Delivery Note\" button"
 
 
 
84
  msgstr ""
 
 
85
 
86
+ #: includes/class-wcdn-print.php:63
87
+ msgid "Receipt"
88
+ msgstr "Kuitti"
 
89
 
90
+ #: includes/class-wcdn-print.php:64
91
+ msgid "Receipts"
92
+ msgstr ""
93
+
94
+ #: includes/class-wcdn-print.php:65
95
+ msgid "Print Receipt"
96
+ msgstr "Tulosta kuitti"
97
+
98
+ #: includes/class-wcdn-print.php:66
99
+ msgid "Print Receipts"
100
+ msgstr ""
101
+
102
+ #: includes/class-wcdn-print.php:67
103
+ #, fuzzy
104
+ msgid "Receipt created."
105
+ msgstr "Kuitti luotu."
106
+
107
+ #: includes/class-wcdn-print.php:68
108
+ msgid "Receipts created."
109
+ msgstr ""
110
+
111
+ #: includes/class-wcdn-print.php:69
112
+ msgid "Show \"Print Receipt\" button"
113
  msgstr ""
 
 
114
 
115
  # @ woocommerce-delivery-notes
116
+ #: includes/class-wcdn-print.php:78
117
+ msgid "Order"
118
+ msgstr "Tilaus"
119
 
120
+ #: includes/class-wcdn-print.php:79
121
+ msgid "Orders"
122
+ msgstr ""
123
 
124
  # @ woocommerce-delivery-notes
125
+ #: includes/class-wcdn-print.php:80
126
+ msgid "Print Order"
127
+ msgstr "Tulosta tilaus"
128
+
129
+ #: includes/class-wcdn-print.php:81
130
+ msgid "Print Orders"
131
+ msgstr ""
132
+
133
+ #: includes/class-wcdn-print.php:93
134
+ msgid "Default"
135
+ msgstr ""
136
+
137
+ #: includes/class-wcdn-settings.php:67
138
  msgid ""
139
+ "Do you really want to reset the counter to zero? This process can't be "
140
+ "undone."
141
  msgstr ""
 
 
142
 
143
  # @ woocommerce-delivery-notes
144
+ #: includes/class-wcdn-settings.php:75 includes/class-wcdn-theme.php:57
145
+ #: includes/class-wcdn-theme.php:94 includes/wcdn-template-functions.php:130
146
+ msgid "Print"
147
+ msgstr "Tulosta"
148
 
149
+ #: includes/class-wcdn-settings.php:106
150
+ msgid "Template"
151
+ msgstr ""
 
152
 
153
+ #: includes/class-wcdn-settings.php:113
154
+ msgid "Style"
155
+ msgstr ""
156
+
157
+ #: includes/class-wcdn-settings.php:114
158
  msgid ""
159
+ "The default print style. Read the <a href=\"%1$s\">FAQ</a> to learn how to "
160
+ "customize it."
 
 
161
  msgstr ""
 
 
 
 
162
 
163
+ #: includes/class-wcdn-settings.php:124
164
+ msgid "Shop Logo"
165
+ msgstr ""
 
166
 
167
+ #: includes/class-wcdn-settings.php:130
168
+ msgid ""
169
+ "A shop logo representing your business. When the image is printed, its pixel "
170
+ "density will automatically be eight times higher than the original. This "
171
+ "means, 1 printed inch will correspond to about 288 pixels on the screen."
172
+ msgstr ""
173
 
174
+ #: includes/class-wcdn-settings.php:134
175
+ msgid "Shop Name"
176
+ msgstr ""
177
+
178
+ #: includes/class-wcdn-settings.php:140
179
  msgid ""
180
+ "The shop name. Leave blank to use the default Website or Blog title defined "
181
+ "in WordPress settings. The name will be ignored when a Logo is set."
182
  msgstr ""
 
 
183
 
184
+ #: includes/class-wcdn-settings.php:144
185
+ msgid "Shop Address"
186
+ msgstr ""
187
+
188
+ #: includes/class-wcdn-settings.php:145
189
+ msgid "The postal address of the shop or even e-mail or telephone."
190
+ msgstr ""
191
+
192
+ #: includes/class-wcdn-settings.php:154
193
+ msgid "Complimentary Close"
194
+ msgstr "Lopputervehdys"
195
 
196
+ #: includes/class-wcdn-settings.php:155
197
+ msgid "Add a personal close, notes or season greetings."
198
+ msgstr ""
199
+
200
+ #: includes/class-wcdn-settings.php:164
201
+ msgid "Policies"
202
+ msgstr ""
203
 
204
+ #: includes/class-wcdn-settings.php:165
205
+ msgid "Add the shop policies, conditions, etc."
206
+ msgstr ""
207
 
208
+ # @ woocommerce-delivery-notes
209
+ #: includes/class-wcdn-settings.php:174
210
+ msgid "Footer"
211
+ msgstr "Alatunniste"
212
 
213
+ #: includes/class-wcdn-settings.php:175
214
+ msgid ""
215
+ "Add a footer imprint, instructions, copyright notes, e-mail, telephone, etc."
216
+ msgstr ""
217
 
218
+ #: includes/class-wcdn-settings.php:189
219
+ msgid "Pages & Buttons"
220
+ msgstr ""
221
 
222
  # @ woocommerce-delivery-notes
223
+ #: includes/class-wcdn-settings.php:196
224
  msgid "Print Page Endpoint"
225
  msgstr "Tulostussivun pääte"
226
 
227
  # @ woocommerce-delivery-notes
228
+ #: includes/class-wcdn-settings.php:202
229
  msgid ""
230
  "The endpoint is appended to the accounts page URL to print the order. It "
231
  "should be unique."
233
  "Pääte lisätään sivun URL-osoitteeseen jolla tilaus tulostetaan. Sen tulee "
234
  "olla yksilöllinen."
235
 
236
+ # @ woocommerce-delivery-notes
237
+ #: includes/class-wcdn-settings.php:206
238
+ #: includes/wcdn-template-functions.php:275
239
+ msgid "Email"
240
+ msgstr "Sähköposti"
241
+
242
+ #: includes/class-wcdn-settings.php:207
243
+ msgid "Show print link in customer emails"
244
+ msgstr ""
245
+
246
+ #: includes/class-wcdn-settings.php:211
247
+ msgid ""
248
+ "This includes the emails for a new, processing and completed order. On top "
249
+ "of that the customer invoice email also includes the link."
250
+ msgstr ""
251
+
252
+ #: includes/class-wcdn-settings.php:215
253
+ msgid "My Account"
254
+ msgstr ""
255
 
256
  # @ woocommerce-delivery-notes
257
+ #: includes/class-wcdn-settings.php:216
258
  msgid "Show print button on the \"View Order\" page"
259
  msgstr "Näytä tulostusnappi \"Näytä tilaus\"-sivulla"
260
 
261
  # @ woocommerce-delivery-notes
262
+ #: includes/class-wcdn-settings.php:224
263
  msgid "Show print buttons on the \"My Account\" page"
264
  msgstr "Näytä tulostusnapit \"Käyttäjätilini\"-sivulla"
265
 
266
+ #: includes/class-wcdn-settings.php:244
267
+ msgid "Numbering"
268
+ msgstr ""
 
 
 
 
 
 
269
 
270
+ #: includes/class-wcdn-settings.php:245
271
  msgid "Create invoice numbers"
272
  msgstr "Luo laskujen numerot"
273
 
274
+ #: includes/class-wcdn-settings.php:253
275
+ msgid "Next Number"
276
+ msgstr ""
 
 
 
 
277
 
278
+ #: includes/class-wcdn-settings.php:260
279
+ msgid "The next invoice number."
280
+ msgstr ""
281
 
282
+ #: includes/class-wcdn-settings.php:264
283
+ msgid "Number Prefix"
284
+ msgstr ""
285
 
286
+ #: includes/class-wcdn-settings.php:271
287
  msgid "This text will be prepended to the invoice number."
288
  msgstr "Tämä teksti liitetään laskun numeron alkuun."
289
 
290
+ #: includes/class-wcdn-settings.php:275
291
+ msgid "Number Suffix"
292
+ msgstr ""
 
 
 
 
293
 
294
+ #: includes/class-wcdn-settings.php:282
295
  msgid "This text will be appended to the invoice number."
296
  msgstr "Tämä teksti liitetään laskun numeron jälkeen."
297
 
298
+ #: includes/class-wcdn-settings.php:327
299
+ msgid "Admin"
300
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
301
 
302
+ #: includes/class-wcdn-settings.php:330
 
 
303
  msgid ""
304
+ "The print buttons are available on the order listing and on the order detail "
305
+ "screen."
306
  msgstr ""
 
 
307
 
308
+ #: includes/class-wcdn-settings.php:372
309
+ msgid ""
310
+ "This section lets you customise the content. You can preview the <a href="
311
+ "\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target="
312
+ "\"%4$s\" class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s"
313
+ "\" class=\"%5$s\">receipt</a> template."
314
+ msgstr ""
 
315
 
316
+ #: includes/class-wcdn-settings.php:435
317
+ msgid "Select"
318
+ msgstr ""
 
 
 
 
 
319
 
320
+ #: includes/class-wcdn-settings.php:439
321
+ msgid "Remove"
322
+ msgstr ""
 
 
 
 
323
 
324
+ #: includes/class-wcdn-theme.php:112
325
+ msgid "Print your order"
326
+ msgstr ""
 
 
 
 
327
 
328
+ #: includes/class-wcdn-theme.php:119
329
+ msgid "Print:"
330
+ msgstr ""
 
 
 
 
331
 
332
+ #: includes/class-wcdn-theme.php:119
333
+ msgid "Open print view in browser"
334
+ msgstr ""
 
 
 
335
 
336
  # @ woocommerce-delivery-notes
337
+ #: includes/class-wcdn-writepanel.php:218
338
  msgid "Print now"
339
  msgstr "Tulosta nyt"
340
 
341
  # @ woocommerce-delivery-notes
342
+ #: includes/class-wcdn-writepanel.php:232
343
  msgid "Order Printing"
344
  msgstr "Tilausten tulostaminen"
345
 
346
+ #: includes/class-wcdn-writepanel.php:259
347
  msgid "Invoice number: "
348
  msgstr "Laskun numero:"
349
 
350
+ #: includes/class-wcdn-writepanel.php:260
351
  msgid "Invoice date: "
352
  msgstr "Laskun päivämäärä:"
353
 
354
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:75
355
+ msgid "If you have a moment, please let us know why you are deactivating"
356
+ msgstr ""
 
357
 
358
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:76
359
+ msgid "Submit & Deactivate"
360
+ msgstr ""
 
361
 
362
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:77
363
+ msgid "Deactivate"
364
+ msgstr ""
365
 
366
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:78
367
+ msgid "Cancel"
368
+ msgstr ""
369
+
370
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:79
371
+ msgid "Yes - Deactivate"
372
+ msgstr ""
373
+
374
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:83
375
+ msgid "I found a better plugin"
376
+ msgstr ""
377
+
378
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:84
379
+ msgid "What's the plugin's name?"
380
+ msgstr ""
381
+
382
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:85
383
+ msgid "I only needed the plugin for a short period"
384
+ msgstr ""
385
+
386
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:86
387
+ msgid "The plugin is not working"
388
+ msgstr ""
389
+
390
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:87
391
+ msgid "Kindly share what didn't work so we can fix it for future users..."
392
+ msgstr ""
393
+
394
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:88
395
+ msgid "The plugin is great, but I need specific feature that you don't support"
396
+ msgstr ""
397
+
398
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:89
399
+ msgid "What feature?"
400
+ msgstr ""
401
+
402
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:90
403
+ msgid "I don't like to share my information with you"
404
+ msgstr ""
405
+
406
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:91
407
+ msgctxt ""
408
+ "the text of the 'other' reason for deactivating the plugin that is shown in "
409
+ "the modal box."
410
+ msgid "Other"
411
+ msgstr ""
412
+
413
+ #: includes/component/faq-support/ts-faq-support.php:127
414
+ msgid "Frequently Asked Questions for %s"
415
+ msgstr ""
416
+
417
+ #: includes/component/faq-support/ts-faq-support.php:176
418
+ msgid "FAQ & Support"
419
+ msgstr ""
420
+
421
+ #: includes/component/tracking-data/ts-tracking.php:120
422
+ #: includes/component/tracking-data/ts-tracking.php:180
423
+ msgid "Reset usage tracking"
424
+ msgstr ""
425
+
426
+ #: includes/component/tracking-data/ts-tracking.php:122
427
+ msgid ""
428
+ "This will reset your usage tracking settings, causing it to show the opt-in "
429
+ "banner again and not sending any data"
430
+ msgstr ""
431
+
432
+ #: includes/component/tracking-data/ts-tracking.php:225
433
+ msgid "Once in a Week"
434
+ msgstr ""
435
+
436
+ #: includes/component/tracking-data/ts-tracking.php:311
437
+ msgid "Allow"
438
+ msgstr ""
439
+
440
+ #: includes/component/tracking-data/ts-tracking.php:312
441
+ msgid "No thanks"
442
+ msgstr ""
443
+
444
+ #: includes/component/welcome-page/templates/social-media-elements.php:10
445
+ #: includes/wcdn-welcome.php:231
446
+ msgid "Follow %s"
447
+ msgstr ""
448
+
449
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:19
450
+ #: includes/wcdn-welcome.php:99
451
+ msgid ""
452
+ "Thank you for activating or updating to the latest version of WooCommerce "
453
+ "Print Invoice & Delivery Note! If you're a first time user, welcome! You're "
454
+ "well on your way to explore the print functionality for your WooCommerce "
455
+ "orders."
456
+ msgstr ""
457
+
458
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:29
459
+ #: includes/wcdn-welcome.php:109
460
+ msgid "Get Started with WooCommerce Print Invoice & Delivery Note"
461
+ msgstr ""
462
+
463
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:33
464
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:62
465
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:68
466
+ #: includes/wcdn-welcome.php:113 includes/wcdn-welcome.php:142
467
+ #: includes/wcdn-welcome.php:148
468
+ msgid "WooCommerce Print Invoice & Delivery Note"
469
+ msgstr ""
470
+
471
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:37
472
+ #: includes/wcdn-welcome.php:117
473
+ msgid "Add settings"
474
+ msgstr ""
475
+
476
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:39
477
+ #: includes/wcdn-welcome.php:119
478
+ msgid ""
479
+ "To enable the print functionality for your invoices, delivery notes & "
480
+ "receipts, you just need to set it up under WooCommerce -> Settings -> Print "
481
+ "page. Here you can also setup the Company Logo that will appear on the "
482
+ "printed items, Company Address & other information."
483
+ msgstr ""
484
+
485
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:41
486
+ #: includes/wcdn-welcome.php:121
487
+ msgid "Click Here to go to Print page"
488
+ msgstr ""
489
+
490
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:52
491
+ #: includes/wcdn-welcome.php:132
492
+ msgid "Enable Print button for Customers."
493
+ msgstr ""
494
+
495
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:54
496
+ #: includes/wcdn-welcome.php:134
497
+ msgid ""
498
+ "Allow customers to print the WooCommerce order invoice from the customer "
499
+ "notification email, from the My Account page or from the View Order page "
500
+ "under My Account."
501
+ msgstr ""
502
+
503
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:56
504
+ #: includes/wcdn-welcome.php:136
505
+ msgid "Click Here to Enable Print button for Customers"
506
+ msgstr ""
507
+
508
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:72
509
+ #: includes/wcdn-welcome.php:152
510
+ msgid "Enable Invoice Numbering"
511
+ msgstr ""
512
+
513
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:74
514
+ msgid ""
515
+ "If you want to change the default invoice numbers & set some numbering "
516
+ "scheme of your own, then you can set it here with a starting invoice number, "
517
+ "a prefix & suffix. For example, you could set it as: TS/001/17-18."
518
+ msgstr ""
519
+
520
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:76
521
+ #: includes/wcdn-welcome.php:156
522
+ msgid "Click Here to Enable Invoice Numbering"
523
+ msgstr ""
524
+
525
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:87
526
+ #: includes/wcdn-welcome.php:167
527
+ msgid "Getting to Know Tyche Softwares"
528
+ msgstr ""
529
+
530
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:90
531
+ #: includes/wcdn-welcome.php:170
532
+ msgid "Visit the Tyche Softwares Website"
533
+ msgstr ""
534
+
535
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:91
536
+ #: includes/wcdn-welcome.php:171
537
+ msgid "View all Premium Plugins"
538
+ msgstr ""
539
+
540
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:100
541
+ #: includes/wcdn-welcome.php:180
542
+ msgid "Meet the team"
543
+ msgstr ""
544
+
545
+ #: includes/component/welcome-page/ts-welcome.php:167
546
+ msgid "Welcome to %s %s"
547
+ msgstr ""
548
+
549
+ #: includes/wcdn-all-component.php:118
550
+ msgid ""
551
+ "Thank you for using WooCommerce Print Invoice & Delivery Note plugin! Now "
552
+ "make your deliveries more accurate by allowing customers to select their "
553
+ "preferred delivery date & time from Product Delivery Date Pro for "
554
+ "WooCommerce. <strong><a target=\"_blank\" href= \"https://www.tychesoftwares."
555
+ "com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/?"
556
+ "utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">Get "
557
+ "it now!</a></strong>"
558
+ msgstr ""
559
+
560
+ #: includes/wcdn-all-component.php:120
561
+ msgid ""
562
+ "Never login to your admin to check your deliveries by syncing the delivery "
563
+ "dates to the Google Calendar from Product Delivery Date Pro for WooCommerce. "
564
+ "<strong><a target=\"_blank\" href= \"https://www.tychesoftwares.com/store/"
565
+ "premium-plugins/product-delivery-date-pro-for-woocommerce/checkout?"
566
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
567
+ "\">Get it now!</a></strong>"
568
+ msgstr ""
569
+
570
+ #: includes/wcdn-all-component.php:122
571
+ msgid ""
572
+ "You can now view all your deliveries in list view or in calendar view from "
573
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
574
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
575
+ "delivery-date-pro-for-woocommerce/checkout?"
576
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
577
+ "\">Get it now!</a></strong>."
578
+ msgstr ""
579
+
580
+ #: includes/wcdn-all-component.php:124
581
+ msgid ""
582
+ "Allow your customers to pay extra for delivery for certain Weekdays/Dates "
583
+ "from Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
584
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
585
+ "delivery-date-pro-for-woocommerce/checkout?"
586
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
587
+ "\">Have it now!</a></strong>."
588
+ msgstr ""
589
+
590
+ #: includes/wcdn-all-component.php:126
591
+ msgid ""
592
+ "Customers can now edit the Delivery date & time on cart and checkout page or "
593
+ "they can reschedule the deliveries for the already placed orders from "
594
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
595
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
596
+ "delivery-date-pro-for-woocommerce/checkout?"
597
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
598
+ "\">Have it now!</a></strong>."
599
+ msgstr ""
600
+
601
+ #: includes/wcdn-template-functions.php:246
602
+ msgid "Invoice Number"
603
+ msgstr "Laskun numero"
604
+
605
+ #: includes/wcdn-template-functions.php:253
606
+ msgid "Invoice Date"
607
+ msgstr ""
608
 
609
  # @ woocommerce-delivery-notes
610
+ #: includes/wcdn-template-functions.php:259
611
  msgid "Order Number"
612
  msgstr "Tilausnumero"
613
 
614
  # @ woocommerce-delivery-notes
615
+ #: includes/wcdn-template-functions.php:264
616
  msgid "Order Date"
617
  msgstr "Tilauksen päivämäärä"
618
 
619
  # @ woocommerce-delivery-notes
620
+ #: includes/wcdn-template-functions.php:269
621
  msgid "Payment Method"
622
  msgstr "Maksutapa"
623
 
624
  # @ woocommerce-delivery-notes
625
+ #: includes/wcdn-template-functions.php:282
 
 
 
 
 
626
  msgid "Telephone"
627
  msgstr "Puhelin"
628
 
629
+ #: includes/wcdn-template-functions.php:315
630
  msgid "SKU:"
631
  msgstr "Tuotetunnus:"
632
 
633
+ #: includes/wcdn-template-functions.php:409
634
+ #: includes/wcdn-template-functions.php:413
635
+ msgid "(Includes %s)"
636
+ msgstr ""
637
+
638
+ #: includes/wcdn-template-functions.php:429
639
+ msgid "Refund"
640
+ msgstr ""
641
+
642
+ #: includes/wcdn-template-functions.php:441
643
+ msgid "Order Subtotal"
644
+ msgstr ""
645
+
646
+ #: includes/wcdn-welcome.php:54
647
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note %s"
648
+ msgstr ""
649
+
650
+ #: includes/wcdn-welcome.php:55
651
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note"
652
+ msgstr ""
653
+
654
+ #: includes/wcdn-welcome.php:154
655
+ msgid ""
656
+ "f you want to change the default invoice numbers & set some numbering scheme "
657
+ "of your own, then you can set it here with a starting invoice number, a "
658
+ "prefix & suffix. For example, you could set it as: TS/001/17-18."
659
+ msgstr ""
660
+
661
+ #: includes/wcdn-welcome.php:186
662
+ msgid "Current Offers"
663
+ msgstr ""
664
+
665
  # @ woocommerce-delivery-notes
666
+ #: templates/print-order/print-content.php:28
667
  msgid "Billing Address"
668
  msgstr "Laskutusosoite"
669
 
670
  # @ woocommerce-delivery-notes
671
+ #: templates/print-order/print-content.php:31
672
+ #: templates/print-order/print-content.php:40
673
  msgid "N/A"
674
  msgstr "-"
675
 
676
  # @ woocommerce-delivery-notes
677
+ #: templates/print-order/print-content.php:37
678
  msgid "Shipping Address"
679
  msgstr "Toimitusosoite"
680
 
681
  # @ woocommerce-delivery-notes
682
+ #: templates/print-order/print-content.php:71
683
  msgid "Product"
684
  msgstr "Tuote"
685
 
686
+ #: templates/print-order/print-content.php:72
687
  msgid "Price"
688
  msgstr "Hinta"
689
 
690
+ #: templates/print-order/print-content.php:73
691
  msgid "Quantity"
692
  msgstr "Määrä"
693
 
694
  # @ woocommerce-delivery-notes
695
+ #: templates/print-order/print-content.php:74
696
  msgid "Total"
697
  msgstr "Yhteensä"
698
 
699
  # @ woocommerce-delivery-notes
700
+ #: templates/print-order/print-content.php:147
701
  msgid "Download:"
702
  msgstr "Lataa:"
703
 
704
  # @ woocommerce-delivery-notes
705
+ #: templates/print-order/print-content.php:148
 
706
  msgid "%s Files"
707
  msgstr "%s tiedostoa"
708
 
709
  # @ woocommerce-delivery-notes
710
+ #: templates/print-order/print-content.php:202
711
  msgid "Customer Note"
712
  msgstr "Asiakkaan viesti"
713
 
714
+ #: woocommerce-delivery-notes.php:96 woocommerce-delivery-notes.php:103
715
+ msgid "Cheatin&#8217; huh?"
716
+ msgstr ""
717
+
718
+ #: woocommerce-delivery-notes.php:275
719
+ msgid ""
720
+ "I can't differentiate between Invoice, Delivery Notes & Receipt. The "
721
+ "templates are the same. "
722
+ msgstr ""
723
+
724
+ #: woocommerce-delivery-notes.php:281
725
+ msgid "The invoice sent through mail can't be downloaded as PDF directly."
726
+ msgstr ""
727
+
728
+ #: woocommerce-delivery-notes.php:287
729
+ msgid "The plugin is not compatible with another plugin."
730
+ msgstr ""
731
+
732
+ #: woocommerce-delivery-notes.php:293
733
+ msgid "This plugin is not useful to me."
734
+ msgstr ""
735
+
736
  # @ woocommerce-delivery-notes
737
+ #: woocommerce-delivery-notes.php:351
738
  msgid "Go to the settings page"
739
  msgstr "Mene asetussivulle"
740
 
741
  # @ woocommerce-delivery-notes
742
+ #: woocommerce-delivery-notes.php:351
743
  msgid "Settings"
744
  msgstr "Asetukset"
745
+
746
+ #~ msgid "Do you really want to reset the counter to zero?"
747
+ #~ msgstr "Haluatko varmasti nollata laskurin?"
748
+
749
+ #~ msgid ""
750
+ #~ "You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s"
751
+ #~ "\">invoice</a>, <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s\">delivery "
752
+ #~ "note</a> or <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> "
753
+ #~ "template."
754
+ #~ msgstr ""
755
+ #~ "Voit esikatsella <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">lasku-</"
756
+ #~ "a>, <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s\">lähete-</a> tai <a "
757
+ #~ "href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">kuittipohjaa</a>."
758
+
759
+ # @ woocommerce-delivery-notes
760
+ #~ msgid ""
761
+ #~ "With the FAQ in the readme file you can learn how to customize the "
762
+ #~ "template."
763
+ #~ msgstr "FAQ readme-tiedostossa kertoo kuinka muokata pohjaa."
764
+
765
+ # @ woocommerce-delivery-notes
766
+ #~ msgid "Company/Shop Logo"
767
+ #~ msgstr "Yrityksen/kaupan logo"
768
+
769
+ # @ woocommerce-delivery-notes
770
+ #~ msgid "Remove Logo"
771
+ #~ msgstr "Poista logo"
772
+
773
+ # @ woocommerce-delivery-notes
774
+ #~ msgid "Set Logo"
775
+ #~ msgstr "Aseta logo"
776
+
777
+ # @ woocommerce-delivery-notes
778
+ #~ msgid "A company/shop logo representing your business."
779
+ #~ msgstr "Yrityksen/kaupan logo joka kuvaa yritystäsi."
780
+
781
+ # @ woocommerce-delivery-notes
782
+ #~ msgid "Note:"
783
+ #~ msgstr "Huom:"
784
+
785
+ # @ woocommerce-delivery-notes
786
+ #~ msgid ""
787
+ #~ "When the image is printed, its pixel density will automatically be eight "
788
+ #~ "times higher than the original. This means, 1 printed inch will "
789
+ #~ "correspond to about 288 pixels on the screen. Example: an image with a "
790
+ #~ "width of 576 pixels and a height of 288 pixels will have a printed size "
791
+ #~ "of about 2 inches to 1 inch."
792
+ #~ msgstr ""
793
+ #~ "Kun kuva tulostetaan, sen pikselitiheys on automaattisesti "
794
+ #~ "kahdeksankertainen alkuperäiseen nähden. Tämä tarkoittaa että yksi tuuma "
795
+ #~ "paperilla vastaa noin 288 pikseliä ruudulla. Esimerkki: kuva jonka leveys "
796
+ #~ "on 576 pikseliä ja korkeus 288 pikseliä tulostuu noin 2 x 1 tuuman (5 cm "
797
+ #~ "x 2,5 cm) kokoisena."
798
+
799
+ # @ woocommerce-delivery-notes
800
+ #~ msgid "Company/Shop Name"
801
+ #~ msgstr "Yrityksen/kaupan nimi"
802
+
803
+ # @ woocommerce-delivery-notes
804
+ #~ msgid "Your company/shop name for the Delivery Note."
805
+ #~ msgstr "Yrityksen/kaupan nimi lähetteessä."
806
+
807
+ # @ woocommerce-delivery-notes
808
+ #~ msgid ""
809
+ #~ "Leave blank to use the default Website/Blog title defined in WordPress "
810
+ #~ "settings. The name will be ignored when a Logo is set."
811
+ #~ msgstr ""
812
+ #~ "Jätä tyhjäksi käyttääksesi oletusarvoista verkkosivun/blogin otsikkoa "
813
+ #~ "WordPressin asetuksissa. Nimeä ei näytetä jos logo on asetettu."
814
+
815
+ # @ woocommerce-delivery-notes
816
+ #~ msgid "Company/Shop Address"
817
+ #~ msgstr "Yrityksen/kaupan osoite"
818
+
819
+ # @ woocommerce-delivery-notes
820
+ #~ msgid ""
821
+ #~ "The postal address of the company/shop or even e-mail or telephone, which "
822
+ #~ "gets printed right after the company/shop name."
823
+ #~ msgstr ""
824
+ #~ "Yrityksen/kaupan postiosoite tai sähköposti tai puhelinnumero, joka "
825
+ #~ "tulostuu heti yrityksen/kaupan nimen jälkeen."
826
+
827
+ # @ woocommerce-delivery-notes
828
+ #~ msgid "Leave blank to not print an address."
829
+ #~ msgstr "Jättämällä tyhjäksi osoitetta ei tulosteta."
830
+
831
+ # @ woocommerce-delivery-notes
832
+ #~ msgid ""
833
+ #~ "Add some personal notes, or season greetings or whatever (e.g. Thank You "
834
+ #~ "for Your Order!, Merry Christmas!, etc.)."
835
+ #~ msgstr ""
836
+ #~ "Lisää henkilökohtaisia viestejä, ajankohtaisia tervehdyksiä tai mitä "
837
+ #~ "tahansa (esim. kiitos tilauksesta, hyvää joulua, jne)."
838
+
839
+ # @ woocommerce-delivery-notes
840
+ #~ msgid "Leave blank to not print any personal notes."
841
+ #~ msgstr "Jättämällä tyhjäksi lopputervehdystä ei näytetä."
842
+
843
+ # @ woocommerce-delivery-notes
844
+ #~ msgid "Returns Policy, Conditions, etc"
845
+ #~ msgstr "Palautus- ja toimitusehdot jne."
846
+
847
+ # @ woocommerce-delivery-notes
848
+ #~ msgid ""
849
+ #~ "Here you can add some more policies, conditions etc. For example add a "
850
+ #~ "returns policy in case the client would like to send back some goods. In "
851
+ #~ "some countries (e.g. in the European Union) this is required so please "
852
+ #~ "add any required info in accordance with the statutory regulations."
853
+ #~ msgstr ""
854
+ #~ "Tähän voi lisätä muita ehtoja, esimerkiksi palautusehdot jos asiakas "
855
+ #~ "haluaa palauttaa tuotteita. Joissain maissa, kuten Euroopan Unionin "
856
+ #~ "jäsenmaissa, tämä on pakollista joten ole hyvä ja lisää paikallisten "
857
+ #~ "lakien vaatimat tiedot."
858
+
859
+ # @ woocommerce-delivery-notes
860
+ #~ msgid "Leave blank to not print any policies or conditions."
861
+ #~ msgstr "Jättämällä tyhjäksi ehtoja ei tulosteta."
862
+
863
+ # @ woocommerce-delivery-notes
864
+ #~ msgid ""
865
+ #~ "Add some further footer imprint, e-mail, telephone, copyright notes etc. "
866
+ #~ "This makes the printed sheets a bit more branded."
867
+ #~ msgstr ""
868
+ #~ "Lisää muita alatunnisteita kuten sähköpostiosoite, puhelinnumero, "
869
+ #~ "tekijänoikeuslauseke jne. Tämä antaa tulosteille ammattimaisemman ilmeen."
870
+
871
+ # @ woocommerce-delivery-notes
872
+ #~ msgid "Leave blank to not print a footer."
873
+ #~ msgstr "Jättämällä tyhjäksi alatunnistetta ei tulosteta."
874
+
875
+ #~ msgid "Types"
876
+ #~ msgstr "Tyypit"
877
+
878
+ #~ msgid "Enable Invoices"
879
+ #~ msgstr "Ota laskut käyttöön"
880
+
881
+ #~ msgid "Enable Delivery Notes"
882
+ #~ msgstr "Ota lähetteet käyttöön"
883
+
884
+ #~ msgid "Enable Receipts"
885
+ #~ msgstr "Ota kuitit käyttöön"
886
+
887
+ #~ msgid "Front-end Options"
888
+ #~ msgstr "Käyttöliittymän asetukset"
889
+
890
+ #~ msgid "Print Buttons"
891
+ #~ msgstr "Tulostusnapit"
892
+
893
+ # @ woocommerce-delivery-notes
894
+ #~ msgid "Order Numbering"
895
+ #~ msgstr "Tilausten numerointi"
896
+
897
+ #~ msgid "Invoice Number Start"
898
+ #~ msgstr "Laskujen numeroinnin alku"
899
+
900
+ #~ msgid "Start the numbering at the specified number."
901
+ #~ msgstr "Aloita numerointi tietystä numerosta."
902
+
903
+ #~ msgid "Use only integers."
904
+ #~ msgstr "Käytä vain kokonaislukuja."
905
+
906
+ #~ msgid "Invoice Number Prefix"
907
+ #~ msgstr "Laskunumeron alkuosa"
908
+
909
+ #~ msgid "Leave blank to not add a prefix."
910
+ #~ msgstr "Jättämällä tyhjäksi alkuun ei liitetä mitään."
911
+
912
+ #~ msgid "Invoice Number Suffix"
913
+ #~ msgstr "Laskunumeron loppuosa"
914
+
915
+ #~ msgid "Leave blank to not add a suffix."
916
+ #~ msgstr "Jättämällä tyhjäksi loppuun ei liitetä mitään."
917
+
918
+ #~ msgid "Invoice Number Counter"
919
+ #~ msgstr "Laskunumeron laskuri"
920
+
921
+ #~ msgid "Reset Counter"
922
+ #~ msgstr "Nollaa laskuri"
923
+
924
+ #~ msgid "Sequential Order Number"
925
+ #~ msgstr "Peräkkäiset tilausnumerot"
926
+
927
+ # @ woocommerce-delivery-notes
928
+ #~ msgid "Sequential numbering is enabled."
929
+ #~ msgstr "Peräkkäinen numerointi on päällä."
930
+
931
+ # @ woocommerce-delivery-notes
932
+ #~ msgid ""
933
+ #~ "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
934
+ #~ "Numbers</a> Plugin."
935
+ #~ msgstr ""
936
+ #~ "Asenna ja aktivoi ilmainen <a href=\"%s\">\"WooCommerce Sequential Order "
937
+ #~ "Numbers\"</a> -liitännäinen."
938
+
939
+ # @ woocommerce-delivery-notes
940
+ #~ msgid "Delivery note created."
941
+ #~ msgid_plural "%s delivery notes created."
942
+ #~ msgstr[0] "Lähete luotu."
943
+ #~ msgstr[1] "%s lähetettä luotu."
languages/woocommerce-delivery-notes-fr_FR.mo CHANGED
Binary file
languages/woocommerce-delivery-notes-fr_FR.po CHANGED
@@ -8,133 +8,138 @@
8
  msgid ""
9
  msgstr ""
10
  "Project-Id-Version: Print Invoice & Delivery Note V4.1.3 FR Traduction\n"
11
- "Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
12
- "POT-Creation-Date: 2015-01-29 16:54+0100\n"
13
- "PO-Revision-Date: 2015-01-31 18:32+0100\n"
 
14
  "Last-Translator: jharasse <jharasse@free.fr>\n"
15
  "Language-Team: jharasse <jharasse@free.fr>\n"
 
16
  "MIME-Version: 1.0\n"
17
  "Content-Type: text/plain; charset=UTF-8\n"
18
  "Content-Transfer-Encoding: 8bit\n"
19
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
20
- "X-Generator: Poedit 1.5.4\n"
21
  "X-Poedit-SourceCharset: UTF-8\n"
22
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
23
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
24
  "esc_attr_e;esc_attr__\n"
25
  "X-Poedit-Basepath: .\n"
26
  "X-Textdomain-Support: yes\n"
27
- "Language: Français\n"
28
  "X-Poedit-SearchPath-0: ..\n"
29
 
30
  # @ woocommerce-delivery-notes
31
- #: ../includes/class-wcdn-print.php:41
32
  msgid "Invoice"
33
  msgstr "Facture"
34
 
35
- #: ../includes/class-wcdn-print.php:42
36
  msgid "Invoices"
37
  msgstr "Factures"
38
 
39
  # @ woocommerce-delivery-notes
40
- #: ../includes/class-wcdn-print.php:43
41
  msgid "Print Invoice"
42
  msgstr "Imprimer la facture"
43
 
44
- #: ../includes/class-wcdn-print.php:44
45
  msgid "Print Invoices"
46
  msgstr "Imprimer les factures"
47
 
48
  # @ woocommerce-delivery-notes
49
- #: ../includes/class-wcdn-print.php:45
50
  msgid "Invoice created."
51
  msgstr "Facture créée"
52
 
53
- #: ../includes/class-wcdn-print.php:46
54
  msgid "Invoices created."
55
  msgstr "Factures créées"
56
 
57
- #: ../includes/class-wcdn-print.php:47
58
- msgid "Enable Invoices"
59
- msgstr "Factures"
60
 
61
  # @ woocommerce-delivery-notes
62
- #: ../includes/class-wcdn-print.php:53
63
  msgid "Delivery Note"
64
  msgstr "Bon de livraison"
65
 
66
- #: ../includes/class-wcdn-print.php:54
67
  msgid "Delivery Notes"
68
  msgstr "Bons de livraison"
69
 
70
  # @ woocommerce-delivery-notes
71
- #: ../includes/class-wcdn-print.php:55
72
  msgid "Print Delivery Note"
73
  msgstr "Imprimer le bon de livraison"
74
 
75
- #: ../includes/class-wcdn-print.php:56
76
  msgid "Print Delivery Notes"
77
  msgstr "Imprimer les bons de livraison"
78
 
79
- #: ../includes/class-wcdn-print.php:57
80
  msgid "Delivery Note created."
81
  msgstr "Bon de livraison créé"
82
 
83
- #: ../includes/class-wcdn-print.php:58
84
  msgid "Delivery Notes created."
85
  msgstr "Bons de livraison créés"
86
 
87
- #: ../includes/class-wcdn-print.php:59
88
- msgid "Enable Delivery Notes"
89
- msgstr "Bons de livraison"
90
 
91
- #: ../includes/class-wcdn-print.php:65
92
  msgid "Receipt"
93
  msgstr "Reçu"
94
 
95
- #: ../includes/class-wcdn-print.php:66
96
  msgid "Receipts"
97
  msgstr "Reçus"
98
 
99
- #: ../includes/class-wcdn-print.php:67
100
  msgid "Print Receipt"
101
  msgstr "Imprimer le reçu"
102
 
103
- #: ../includes/class-wcdn-print.php:68
104
  msgid "Print Receipts"
105
  msgstr "Imprimer les reçus"
106
 
107
- #: ../includes/class-wcdn-print.php:69
108
  msgid "Receipt created."
109
  msgstr "Reçu créé"
110
 
111
- #: ../includes/class-wcdn-print.php:70
112
  msgid "Receipts created."
113
  msgstr "Reçus créés"
114
 
115
- #: ../includes/class-wcdn-print.php:71
116
- msgid "Enable Receipts"
117
- msgstr "Reçus"
118
 
119
  # @ woocommerce-delivery-notes
120
- #: ../includes/class-wcdn-print.php:80
121
  msgid "Order"
122
  msgstr "Commande"
123
 
124
- #: ../includes/class-wcdn-print.php:81
125
  msgid "Orders"
126
  msgstr "Commandes"
127
 
128
  # @ woocommerce-delivery-notes
129
- #: ../includes/class-wcdn-print.php:82 ../includes/class-wcdn-settings.php:157
130
  msgid "Print Order"
131
  msgstr "Paramétrage des impressions"
132
 
133
- #: ../includes/class-wcdn-print.php:83
134
  msgid "Print Orders"
135
  msgstr "Imprimer les commandes"
136
 
137
- #: ../includes/class-wcdn-settings.php:72
 
 
 
 
138
  msgid ""
139
  "Do you really want to reset the counter to zero? This process can't be "
140
  "undone."
@@ -143,196 +148,91 @@ msgstr ""
143
  "irréversible."
144
 
145
  # @ woocommerce-delivery-notes
146
- #: ../includes/class-wcdn-settings.php:102 ../includes/class-wcdn-theme.php:56
147
- #: ../includes/class-wcdn-theme.php:91
148
- #: ../includes/wcdn-template-functions.php:127
149
  msgid "Print"
150
  msgstr "Impression"
151
 
152
- #: ../includes/class-wcdn-settings.php:176
153
- #, php-format
154
- msgid ""
155
- "You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</"
156
- "a>, <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s\">delivery note</a> or <a "
157
- "href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> template."
158
  msgstr ""
159
- "You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</"
160
- "a>, <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s\">delivery note</a> or <a "
161
- "href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> template."
162
 
163
- # @ woocommerce-delivery-notes
164
- #: ../includes/class-wcdn-settings.php:177
165
- msgid ""
166
- "With the FAQ in the readme file you can learn how to customize the template."
167
  msgstr ""
168
- "Avec la FAQ dans le fichier readme vous pouvez apprendre comment "
169
- "personnaliser le modèle"
170
 
171
- # @ woocommerce-delivery-notes
172
- #: ../includes/class-wcdn-settings.php:188
173
- msgid "Company/Shop Logo"
174
- msgstr "Logo magasin/entreprise"
175
-
176
- # @ woocommerce-delivery-notes
177
- #: ../includes/class-wcdn-settings.php:194
178
- msgid "Remove Logo"
179
- msgstr "Enlever le Logo"
180
-
181
- # @ woocommerce-delivery-notes
182
- #: ../includes/class-wcdn-settings.php:195
183
- msgid "Set Logo"
184
- msgstr "Mise en place du Logo"
185
-
186
- # @ woocommerce-delivery-notes
187
- #: ../includes/class-wcdn-settings.php:199
188
- msgid "A company/shop logo representing your business."
189
- msgstr "Un logo du magasin/entreprise représentant votre activité."
190
-
191
- # @ woocommerce-delivery-notes
192
- #: ../includes/class-wcdn-settings.php:200
193
- #: ../includes/class-wcdn-settings.php:213
194
- #: ../includes/class-wcdn-settings.php:226
195
- #: ../includes/class-wcdn-settings.php:239
196
- #: ../includes/class-wcdn-settings.php:252
197
- #: ../includes/class-wcdn-settings.php:265
198
- #: ../includes/class-wcdn-settings.php:382
199
- #: ../includes/class-wcdn-settings.php:397
200
- #: ../includes/class-wcdn-settings.php:412
201
- msgid "Note:"
202
- msgstr "Note :"
203
-
204
- # @ woocommerce-delivery-notes
205
- #: ../includes/class-wcdn-settings.php:201
206
  msgid ""
207
- "When the image is printed, its pixel density will automatically be eight "
208
- "times higher than the original. This means, 1 printed inch will correspond "
209
- "to about 288 pixels on the screen. Example: an image with a width of 576 "
210
- "pixels and a height of 288 pixels will have a printed size of about 2 inches "
211
- "to 1 inch."
212
  msgstr ""
213
- "Quand l'image est imprimée, sa densité de pixels sera automatiquement "
214
- "multipliée par 8 par rapport à l'original. Ce qui veut dire qu'un pouce "
215
- "correspondra environ à 288 pixels sur l'écran. Exemple : une image avec une "
216
- "largeur de 576 pixels et une hauteur de 288 pixels sera imprimée à une "
217
- "taille d'environ 5 centimètres sur 2,5. "
218
 
219
- # @ woocommerce-delivery-notes
220
- #: ../includes/class-wcdn-settings.php:207
221
- msgid "Company/Shop Name"
222
- msgstr "Nom magasin/entreprise"
223
-
224
- # @ woocommerce-delivery-notes
225
- #: ../includes/class-wcdn-settings.php:212
226
- msgid "Your company/shop name for the Delivery Note."
227
- msgstr "Le nom de votre magasin/entreprise pour le bon de livraison."
228
 
229
- # @ woocommerce-delivery-notes
230
- #: ../includes/class-wcdn-settings.php:214
231
  msgid ""
232
- "Leave blank to use the default Website/Blog title defined in WordPress "
233
- "settings. The name will be ignored when a Logo is set."
 
234
  msgstr ""
235
- "Laisser blanc pour utiliser le titre de blog/site défini dans les paramètres "
236
- "Wordpress. Ce nom sera ignoré si un logo est paramétré."
237
 
238
- # @ woocommerce-delivery-notes
239
- #: ../includes/class-wcdn-settings.php:220
240
- msgid "Company/Shop Address"
241
- msgstr "Adresse magasin/entreprise"
242
 
243
- # @ woocommerce-delivery-notes
244
- #: ../includes/class-wcdn-settings.php:225
245
  msgid ""
246
- "The postal address of the company/shop or even e-mail or telephone, which "
247
- "gets printed right after the company/shop name."
248
  msgstr ""
249
- "L'adresse postale du magasin ou un email ou un téléphone, qui sera imprimé "
250
- "juste après le nom du magasin."
251
 
252
- # @ woocommerce-delivery-notes
253
- #: ../includes/class-wcdn-settings.php:227
254
- msgid "Leave blank to not print an address."
255
- msgstr "Laisser blanc pour ne pas imprimer d'adresse"
 
 
 
256
 
257
- #: ../includes/class-wcdn-settings.php:233
258
  msgid "Complimentary Close"
259
  msgstr "Fermeture complémentaire"
260
 
261
- # @ woocommerce-delivery-notes
262
- #: ../includes/class-wcdn-settings.php:238
263
- msgid ""
264
- "Add some personal notes, or season greetings or whatever (e.g. Thank You for "
265
- "Your Order!, Merry Christmas!, etc.)."
266
  msgstr ""
267
- "Ajouter des notes personnelles, ou des voeux de saison ou ce que vous voulez "
268
- "(ex: Merci pour votre commande, Joyeux Noël, etc.)."
269
-
270
- # @ woocommerce-delivery-notes
271
- #: ../includes/class-wcdn-settings.php:240
272
- msgid "Leave blank to not print any personal notes."
273
- msgstr "Laisser blanc pour ne pas imprimer de note personnelle"
274
-
275
- # @ woocommerce-delivery-notes
276
- #: ../includes/class-wcdn-settings.php:246
277
- msgid "Returns Policy, Conditions, etc"
278
- msgstr "Conditions générales de vente, retours, etc"
279
 
280
- # @ woocommerce-delivery-notes
281
- #: ../includes/class-wcdn-settings.php:251
282
- msgid ""
283
- "Here you can add some more policies, conditions etc. For example add a "
284
- "returns policy in case the client would like to send back some goods. In "
285
- "some countries (e.g. in the European Union) this is required so please add "
286
- "any required info in accordance with the statutory regulations."
287
  msgstr ""
288
- "Ici vous pouvez ajouter des conditions, informations ... Par exemple la "
289
- "politique de retour dans le cas où le client souhaiterait renvoyer un "
290
- "produit. Dans certains pays (ex. Union Européenne) ceci est requis ; donc "
291
- "remplissez en accord avec la règlementation de votre pays."
292
 
293
- # @ woocommerce-delivery-notes
294
- #: ../includes/class-wcdn-settings.php:253
295
- msgid "Leave blank to not print any policies or conditions."
296
- msgstr "Laisser blanc pour ne pas imprimer de conditions ou informations"
297
 
298
  # @ woocommerce-delivery-notes
299
- #: ../includes/class-wcdn-settings.php:259
300
  msgid "Footer"
301
  msgstr "Pied de page"
302
 
303
- # @ woocommerce-delivery-notes
304
- #: ../includes/class-wcdn-settings.php:264
305
  msgid ""
306
- "Add some further footer imprint, e-mail, telephone, copyright notes etc. "
307
- "This makes the printed sheets a bit more branded."
308
  msgstr ""
309
- "Ajouter quelques informations en pied de page : copyright, email, "
310
- "téléphone ... Cela rend les documents imprimés plus à l'image du magasin."
311
-
312
- # @ woocommerce-delivery-notes
313
- #: ../includes/class-wcdn-settings.php:266
314
- msgid "Leave blank to not print a footer."
315
- msgstr "Laisser blanc pour ne pas imprimer de pied de page"
316
-
317
- #: ../includes/class-wcdn-settings.php:273
318
- msgid "Print Options"
319
- msgstr "Impressions permises :"
320
 
321
- #: ../includes/class-wcdn-settings.php:278
322
- msgid "Types"
323
- msgstr "Types"
324
-
325
- #: ../includes/class-wcdn-settings.php:297
326
- msgid "Theme Options"
327
- msgstr "Paramètrages coté clients"
328
 
329
  # @ woocommerce-delivery-notes
330
- #: ../includes/class-wcdn-settings.php:302
331
  msgid "Print Page Endpoint"
332
  msgstr "Fonction impression"
333
 
334
  # @ woocommerce-delivery-notes
335
- #: ../includes/class-wcdn-settings.php:309
336
  msgid ""
337
  "The endpoint is appended to the accounts page URL to print the order. It "
338
  "should be unique."
@@ -340,31 +240,17 @@ msgstr ""
340
  "La fonction est ajoutée aux URLs des pages des utilisateurs pour imprimer la "
341
  "commande. Elle doit être unique."
342
 
343
- #: ../includes/class-wcdn-settings.php:315
344
- msgid "My Account"
345
- msgstr "Mon compte"
346
-
347
- # @ woocommerce-delivery-notes
348
- #: ../includes/class-wcdn-settings.php:322
349
- msgid "Show print button on the \"View Order\" page"
350
- msgstr "Montrer le bouton d'impression sur la page \"Voir la commande\""
351
-
352
- # @ woocommerce-delivery-notes
353
- #: ../includes/class-wcdn-settings.php:329
354
- msgid "Show print buttons on the \"My Account\" page"
355
- msgstr "Montrer les boutons d'impression sur la page \"Mon Compte\""
356
-
357
  # @ woocommerce-delivery-notes
358
- #: ../includes/class-wcdn-settings.php:336
359
- #: ../includes/wcdn-template-functions.php:254
360
  msgid "Email"
361
  msgstr "Email"
362
 
363
- #: ../includes/class-wcdn-settings.php:343
364
  msgid "Show print link in customer emails"
365
  msgstr "Indiquer le lien pour imprimer dans les emails aux clients"
366
 
367
- #: ../includes/class-wcdn-settings.php:347
368
  msgid ""
369
  "This includes the emails for a new, processing and completed order. On top "
370
  "of that the customer invoice email also includes the link."
@@ -372,204 +258,692 @@ msgstr ""
372
  "Ceci vaudra pour les emails des nouvelles commandes effectuées. De plus, "
373
  "l'email de facturation au client contiendra également ce lien."
374
 
 
 
 
 
375
  # @ woocommerce-delivery-notes
376
- #: ../includes/class-wcdn-settings.php:354
377
- msgid "Order Numbering"
378
- msgstr "Numérotation factures et commandes"
379
 
380
- #: ../includes/class-wcdn-settings.php:359
381
- msgid "Invoice Numbering"
382
- msgstr "Numérotation des factures"
 
383
 
384
- #: ../includes/class-wcdn-settings.php:367
 
 
 
 
385
  msgid "Create invoice numbers"
386
  msgstr "Activer la numérotation des factures"
387
 
388
- #: ../includes/class-wcdn-settings.php:374
389
- msgid "Invoice Number Start"
390
- msgstr "Numéro initial des factures"
391
-
392
- #: ../includes/class-wcdn-settings.php:381
393
- msgid "Start the numbering at the specified number."
394
- msgstr "Commencer la numérotation au numéro indiqué."
395
 
396
- #: ../includes/class-wcdn-settings.php:383
397
- msgid "Use only integers."
398
- msgstr "Utiliser uniquement des nombres entiers"
399
 
400
- #: ../includes/class-wcdn-settings.php:389
401
- msgid "Invoice Number Prefix"
402
- msgstr "Préfixe pour les numéros de facture"
403
 
404
- #: ../includes/class-wcdn-settings.php:396
405
  msgid "This text will be prepended to the invoice number."
406
  msgstr "Ce texte apparaîtra devant le numéro de la facture."
407
 
408
- #: ../includes/class-wcdn-settings.php:398
409
- msgid "Leave blank to not add a prefix."
410
- msgstr "Laisser blanc pour ne pas mettre de préfixe."
411
-
412
- #: ../includes/class-wcdn-settings.php:404
413
- msgid "Invoice Number Suffix"
414
- msgstr "Suffixe de numéro de facture"
415
 
416
- #: ../includes/class-wcdn-settings.php:411
417
  msgid "This text will be appended to the invoice number."
418
  msgstr "Ce texte sera ajouté au numéro de facture."
419
 
420
- #: ../includes/class-wcdn-settings.php:413
421
- msgid "Leave blank to not add a suffix."
422
- msgstr "Laisser blanc pour ne pas ajouter de suffixe."
423
-
424
- #: ../includes/class-wcdn-settings.php:419
425
- msgid "Invoice Number Counter"
426
- msgstr "Numéro courant de facture"
427
 
428
- #: ../includes/class-wcdn-settings.php:428
429
- msgid "Reset Counter …"
430
- msgstr "Réinitialiser ..."
 
 
431
 
432
- #: ../includes/class-wcdn-settings.php:434
433
- msgid "Sequential Order Number"
434
- msgstr "Numéro séquentiel de commande "
 
 
 
 
435
 
436
- # @ woocommerce-delivery-notes
437
- #: ../includes/class-wcdn-settings.php:439
438
- msgid "Sequential numbering is enabled."
439
- msgstr "Numérotation séquentielle activée."
440
 
441
- # @ woocommerce-delivery-notes
442
- #: ../includes/class-wcdn-settings.php:441
443
- #, php-format
444
- msgid ""
445
- "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
446
- "Numbers</a> Plugin."
447
  msgstr ""
448
- "Installer et activer le plugin gratuit <a href=\"%s\">WooCommerce Sequential "
449
- "Order Numbers</a>."
450
 
451
- #: ../includes/class-wcdn-theme.php:105
452
  msgid "Print your order"
453
  msgstr "Imprimer la facture"
454
 
455
- #: ../includes/class-wcdn-theme.php:111
456
  msgid "Print:"
457
  msgstr "Impression :"
458
 
459
- #: ../includes/class-wcdn-theme.php:111
460
  msgid "Open print view in browser"
461
  msgstr "Ouvrir la vue d'impression dans le navigateur"
462
 
463
  # @ woocommerce-delivery-notes
464
- #: ../includes/class-wcdn-writepanel.php:214
465
  msgid "Print now"
466
  msgstr "Imprimer maintenant"
467
 
468
  # @ woocommerce-delivery-notes
469
- #: ../includes/class-wcdn-writepanel.php:228
470
  msgid "Order Printing"
471
  msgstr "Imprimer la commande"
472
 
473
- #: ../includes/class-wcdn-writepanel.php:256
474
  msgid "Invoice number: "
475
  msgstr "Numéro de facture :"
476
 
477
- #: ../includes/class-wcdn-writepanel.php:257
478
  msgid "Invoice date: "
479
  msgstr "Date de facture :"
480
 
481
- #: ../includes/wcdn-template-functions.php:232
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
482
  msgid "Invoice Number"
483
  msgstr "Numéro de facture"
484
 
 
 
 
 
485
  # @ woocommerce-delivery-notes
486
- #: ../includes/wcdn-template-functions.php:238
487
  msgid "Order Number"
488
  msgstr "Numéro de commande"
489
 
490
  # @ woocommerce-delivery-notes
491
- #: ../includes/wcdn-template-functions.php:243
492
  msgid "Order Date"
493
  msgstr "Date de commande"
494
 
495
  # @ woocommerce-delivery-notes
496
- #: ../includes/wcdn-template-functions.php:248
497
  msgid "Payment Method"
498
  msgstr "Méthode de paiement"
499
 
500
  # @ woocommerce-delivery-notes
501
- #: ../includes/wcdn-template-functions.php:261
502
  msgid "Telephone"
503
  msgstr "Téléphone"
504
 
505
- #: ../includes/wcdn-template-functions.php:294
506
  msgid "SKU:"
507
  msgstr "Référence :"
508
 
509
- #: ../includes/wcdn-template-functions.php:364
 
 
 
 
 
510
  msgid "Refund"
511
  msgstr "Remboursement"
512
 
513
- #: ../includes/wcdn-template-functions.php:374
514
  msgid "Order Subtotal"
515
  msgstr "Sous-total "
516
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
517
  # @ woocommerce-delivery-notes
518
- #: ../templates/print-order/print-content.php:28
519
  msgid "Billing Address"
520
  msgstr "Adresse de facturation"
521
 
522
  # @ woocommerce-delivery-notes
523
- #: ../templates/print-order/print-content.php:31
524
- #: ../templates/print-order/print-content.php:40
525
  msgid "N/A"
526
  msgstr "N/A"
527
 
528
  # @ woocommerce-delivery-notes
529
- #: ../templates/print-order/print-content.php:37
530
  msgid "Shipping Address"
531
  msgstr "Adresse d'expédition"
532
 
533
  # @ woocommerce-delivery-notes
534
- #: ../templates/print-order/print-content.php:70
535
  msgid "Product"
536
  msgstr "Produit"
537
 
538
- #: ../templates/print-order/print-content.php:71
539
  msgid "Price"
540
  msgstr "Prix"
541
 
542
- #: ../templates/print-order/print-content.php:72
543
  msgid "Quantity"
544
  msgstr "Quantité"
545
 
546
  # @ woocommerce-delivery-notes
547
- #: ../templates/print-order/print-content.php:73
548
  msgid "Total"
549
  msgstr "Total"
550
 
551
  # @ woocommerce-delivery-notes
552
- #: ../templates/print-order/print-content.php:97
553
  msgid "Download:"
554
  msgstr "Téléchargement :"
555
 
556
  # @ woocommerce-delivery-notes
557
- #: ../templates/print-order/print-content.php:98
558
- #, php-format
559
  msgid "%s Files"
560
  msgstr "%s fichiers"
561
 
562
  # @ woocommerce-delivery-notes
563
- #: ../templates/print-order/print-content.php:147
564
  msgid "Customer Note"
565
  msgstr "Note du client"
566
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
567
  # @ woocommerce-delivery-notes
568
- #: ../woocommerce-delivery-notes.php:181
569
  msgid "Go to the settings page"
570
  msgstr "Aller à la page de configuration"
571
 
572
  # @ woocommerce-delivery-notes
573
- #: ../woocommerce-delivery-notes.php:181
574
  msgid "Settings"
575
  msgstr "Paramètres"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  msgid ""
9
  msgstr ""
10
  "Project-Id-Version: Print Invoice & Delivery Note V4.1.3 FR Traduction\n"
11
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/woocommerce-"
12
+ "delivery-notes\n"
13
+ "POT-Creation-Date: 2018-10-22 19:00+0530\n"
14
+ "PO-Revision-Date: 2018-10-22 19:00+0530\n"
15
  "Last-Translator: jharasse <jharasse@free.fr>\n"
16
  "Language-Team: jharasse <jharasse@free.fr>\n"
17
+ "Language: fr_FR\n"
18
  "MIME-Version: 1.0\n"
19
  "Content-Type: text/plain; charset=UTF-8\n"
20
  "Content-Transfer-Encoding: 8bit\n"
21
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
22
+ "X-Generator: Poedit 1.8.7.1\n"
23
  "X-Poedit-SourceCharset: UTF-8\n"
24
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
25
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
26
  "esc_attr_e;esc_attr__\n"
27
  "X-Poedit-Basepath: .\n"
28
  "X-Textdomain-Support: yes\n"
 
29
  "X-Poedit-SearchPath-0: ..\n"
30
 
31
  # @ woocommerce-delivery-notes
32
+ #: includes/class-wcdn-print.php:39 includes/class-wcdn-settings.php:237
33
  msgid "Invoice"
34
  msgstr "Facture"
35
 
36
+ #: includes/class-wcdn-print.php:40
37
  msgid "Invoices"
38
  msgstr "Factures"
39
 
40
  # @ woocommerce-delivery-notes
41
+ #: includes/class-wcdn-print.php:41
42
  msgid "Print Invoice"
43
  msgstr "Imprimer la facture"
44
 
45
+ #: includes/class-wcdn-print.php:42
46
  msgid "Print Invoices"
47
  msgstr "Imprimer les factures"
48
 
49
  # @ woocommerce-delivery-notes
50
+ #: includes/class-wcdn-print.php:43
51
  msgid "Invoice created."
52
  msgstr "Facture créée"
53
 
54
+ #: includes/class-wcdn-print.php:44
55
  msgid "Invoices created."
56
  msgstr "Factures créées"
57
 
58
+ #: includes/class-wcdn-print.php:45
59
+ msgid "Show \"Print Invoice\" button"
60
+ msgstr ""
61
 
62
  # @ woocommerce-delivery-notes
63
+ #: includes/class-wcdn-print.php:51
64
  msgid "Delivery Note"
65
  msgstr "Bon de livraison"
66
 
67
+ #: includes/class-wcdn-print.php:52
68
  msgid "Delivery Notes"
69
  msgstr "Bons de livraison"
70
 
71
  # @ woocommerce-delivery-notes
72
+ #: includes/class-wcdn-print.php:53
73
  msgid "Print Delivery Note"
74
  msgstr "Imprimer le bon de livraison"
75
 
76
+ #: includes/class-wcdn-print.php:54
77
  msgid "Print Delivery Notes"
78
  msgstr "Imprimer les bons de livraison"
79
 
80
+ #: includes/class-wcdn-print.php:55
81
  msgid "Delivery Note created."
82
  msgstr "Bon de livraison créé"
83
 
84
+ #: includes/class-wcdn-print.php:56
85
  msgid "Delivery Notes created."
86
  msgstr "Bons de livraison créés"
87
 
88
+ #: includes/class-wcdn-print.php:57
89
+ msgid "Show \"Print Delivery Note\" button"
90
+ msgstr ""
91
 
92
+ #: includes/class-wcdn-print.php:63
93
  msgid "Receipt"
94
  msgstr "Reçu"
95
 
96
+ #: includes/class-wcdn-print.php:64
97
  msgid "Receipts"
98
  msgstr "Reçus"
99
 
100
+ #: includes/class-wcdn-print.php:65
101
  msgid "Print Receipt"
102
  msgstr "Imprimer le reçu"
103
 
104
+ #: includes/class-wcdn-print.php:66
105
  msgid "Print Receipts"
106
  msgstr "Imprimer les reçus"
107
 
108
+ #: includes/class-wcdn-print.php:67
109
  msgid "Receipt created."
110
  msgstr "Reçu créé"
111
 
112
+ #: includes/class-wcdn-print.php:68
113
  msgid "Receipts created."
114
  msgstr "Reçus créés"
115
 
116
+ #: includes/class-wcdn-print.php:69
117
+ msgid "Show \"Print Receipt\" button"
118
+ msgstr ""
119
 
120
  # @ woocommerce-delivery-notes
121
+ #: includes/class-wcdn-print.php:78
122
  msgid "Order"
123
  msgstr "Commande"
124
 
125
+ #: includes/class-wcdn-print.php:79
126
  msgid "Orders"
127
  msgstr "Commandes"
128
 
129
  # @ woocommerce-delivery-notes
130
+ #: includes/class-wcdn-print.php:80
131
  msgid "Print Order"
132
  msgstr "Paramétrage des impressions"
133
 
134
+ #: includes/class-wcdn-print.php:81
135
  msgid "Print Orders"
136
  msgstr "Imprimer les commandes"
137
 
138
+ #: includes/class-wcdn-print.php:93
139
+ msgid "Default"
140
+ msgstr ""
141
+
142
+ #: includes/class-wcdn-settings.php:67
143
  msgid ""
144
  "Do you really want to reset the counter to zero? This process can't be "
145
  "undone."
148
  "irréversible."
149
 
150
  # @ woocommerce-delivery-notes
151
+ #: includes/class-wcdn-settings.php:75 includes/class-wcdn-theme.php:57
152
+ #: includes/class-wcdn-theme.php:94 includes/wcdn-template-functions.php:130
 
153
  msgid "Print"
154
  msgstr "Impression"
155
 
156
+ #: includes/class-wcdn-settings.php:106
157
+ msgid "Template"
 
 
 
 
158
  msgstr ""
 
 
 
159
 
160
+ #: includes/class-wcdn-settings.php:113
161
+ msgid "Style"
 
 
162
  msgstr ""
 
 
163
 
164
+ #: includes/class-wcdn-settings.php:114
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
165
  msgid ""
166
+ "The default print style. Read the <a href=\"%1$s\">FAQ</a> to learn how to "
167
+ "customize it."
 
 
 
168
  msgstr ""
 
 
 
 
 
169
 
170
+ #: includes/class-wcdn-settings.php:124
171
+ msgid "Shop Logo"
172
+ msgstr ""
 
 
 
 
 
 
173
 
174
+ #: includes/class-wcdn-settings.php:130
 
175
  msgid ""
176
+ "A shop logo representing your business. When the image is printed, its pixel "
177
+ "density will automatically be eight times higher than the original. This "
178
+ "means, 1 printed inch will correspond to about 288 pixels on the screen."
179
  msgstr ""
 
 
180
 
181
+ #: includes/class-wcdn-settings.php:134
182
+ msgid "Shop Name"
183
+ msgstr ""
 
184
 
185
+ #: includes/class-wcdn-settings.php:140
 
186
  msgid ""
187
+ "The shop name. Leave blank to use the default Website or Blog title defined "
188
+ "in WordPress settings. The name will be ignored when a Logo is set."
189
  msgstr ""
 
 
190
 
191
+ #: includes/class-wcdn-settings.php:144
192
+ msgid "Shop Address"
193
+ msgstr ""
194
+
195
+ #: includes/class-wcdn-settings.php:145
196
+ msgid "The postal address of the shop or even e-mail or telephone."
197
+ msgstr ""
198
 
199
+ #: includes/class-wcdn-settings.php:154
200
  msgid "Complimentary Close"
201
  msgstr "Fermeture complémentaire"
202
 
203
+ #: includes/class-wcdn-settings.php:155
204
+ msgid "Add a personal close, notes or season greetings."
 
 
 
205
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
206
 
207
+ #: includes/class-wcdn-settings.php:164
208
+ msgid "Policies"
 
 
 
 
 
209
  msgstr ""
 
 
 
 
210
 
211
+ #: includes/class-wcdn-settings.php:165
212
+ msgid "Add the shop policies, conditions, etc."
213
+ msgstr ""
 
214
 
215
  # @ woocommerce-delivery-notes
216
+ #: includes/class-wcdn-settings.php:174
217
  msgid "Footer"
218
  msgstr "Pied de page"
219
 
220
+ #: includes/class-wcdn-settings.php:175
 
221
  msgid ""
222
+ "Add a footer imprint, instructions, copyright notes, e-mail, telephone, etc."
 
223
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
224
 
225
+ #: includes/class-wcdn-settings.php:189
226
+ msgid "Pages & Buttons"
227
+ msgstr ""
 
 
 
 
228
 
229
  # @ woocommerce-delivery-notes
230
+ #: includes/class-wcdn-settings.php:196
231
  msgid "Print Page Endpoint"
232
  msgstr "Fonction impression"
233
 
234
  # @ woocommerce-delivery-notes
235
+ #: includes/class-wcdn-settings.php:202
236
  msgid ""
237
  "The endpoint is appended to the accounts page URL to print the order. It "
238
  "should be unique."
240
  "La fonction est ajoutée aux URLs des pages des utilisateurs pour imprimer la "
241
  "commande. Elle doit être unique."
242
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
243
  # @ woocommerce-delivery-notes
244
+ #: includes/class-wcdn-settings.php:206
245
+ #: includes/wcdn-template-functions.php:275
246
  msgid "Email"
247
  msgstr "Email"
248
 
249
+ #: includes/class-wcdn-settings.php:207
250
  msgid "Show print link in customer emails"
251
  msgstr "Indiquer le lien pour imprimer dans les emails aux clients"
252
 
253
+ #: includes/class-wcdn-settings.php:211
254
  msgid ""
255
  "This includes the emails for a new, processing and completed order. On top "
256
  "of that the customer invoice email also includes the link."
258
  "Ceci vaudra pour les emails des nouvelles commandes effectuées. De plus, "
259
  "l'email de facturation au client contiendra également ce lien."
260
 
261
+ #: includes/class-wcdn-settings.php:215
262
+ msgid "My Account"
263
+ msgstr "Mon compte"
264
+
265
  # @ woocommerce-delivery-notes
266
+ #: includes/class-wcdn-settings.php:216
267
+ msgid "Show print button on the \"View Order\" page"
268
+ msgstr "Montrer le bouton d'impression sur la page \"Voir la commande\""
269
 
270
+ # @ woocommerce-delivery-notes
271
+ #: includes/class-wcdn-settings.php:224
272
+ msgid "Show print buttons on the \"My Account\" page"
273
+ msgstr "Montrer les boutons d'impression sur la page \"Mon Compte\""
274
 
275
+ #: includes/class-wcdn-settings.php:244
276
+ msgid "Numbering"
277
+ msgstr ""
278
+
279
+ #: includes/class-wcdn-settings.php:245
280
  msgid "Create invoice numbers"
281
  msgstr "Activer la numérotation des factures"
282
 
283
+ #: includes/class-wcdn-settings.php:253
284
+ msgid "Next Number"
285
+ msgstr ""
 
 
 
 
286
 
287
+ #: includes/class-wcdn-settings.php:260
288
+ msgid "The next invoice number."
289
+ msgstr ""
290
 
291
+ #: includes/class-wcdn-settings.php:264
292
+ msgid "Number Prefix"
293
+ msgstr ""
294
 
295
+ #: includes/class-wcdn-settings.php:271
296
  msgid "This text will be prepended to the invoice number."
297
  msgstr "Ce texte apparaîtra devant le numéro de la facture."
298
 
299
+ #: includes/class-wcdn-settings.php:275
300
+ msgid "Number Suffix"
301
+ msgstr ""
 
 
 
 
302
 
303
+ #: includes/class-wcdn-settings.php:282
304
  msgid "This text will be appended to the invoice number."
305
  msgstr "Ce texte sera ajouté au numéro de facture."
306
 
307
+ #: includes/class-wcdn-settings.php:327
308
+ msgid "Admin"
309
+ msgstr ""
 
 
 
 
310
 
311
+ #: includes/class-wcdn-settings.php:330
312
+ msgid ""
313
+ "The print buttons are available on the order listing and on the order detail "
314
+ "screen."
315
+ msgstr ""
316
 
317
+ #: includes/class-wcdn-settings.php:372
318
+ msgid ""
319
+ "This section lets you customise the content. You can preview the <a href="
320
+ "\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target="
321
+ "\"%4$s\" class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s"
322
+ "\" class=\"%5$s\">receipt</a> template."
323
+ msgstr ""
324
 
325
+ #: includes/class-wcdn-settings.php:435
326
+ msgid "Select"
327
+ msgstr ""
 
328
 
329
+ #: includes/class-wcdn-settings.php:439
330
+ msgid "Remove"
 
 
 
 
331
  msgstr ""
 
 
332
 
333
+ #: includes/class-wcdn-theme.php:112
334
  msgid "Print your order"
335
  msgstr "Imprimer la facture"
336
 
337
+ #: includes/class-wcdn-theme.php:119
338
  msgid "Print:"
339
  msgstr "Impression :"
340
 
341
+ #: includes/class-wcdn-theme.php:119
342
  msgid "Open print view in browser"
343
  msgstr "Ouvrir la vue d'impression dans le navigateur"
344
 
345
  # @ woocommerce-delivery-notes
346
+ #: includes/class-wcdn-writepanel.php:218
347
  msgid "Print now"
348
  msgstr "Imprimer maintenant"
349
 
350
  # @ woocommerce-delivery-notes
351
+ #: includes/class-wcdn-writepanel.php:232
352
  msgid "Order Printing"
353
  msgstr "Imprimer la commande"
354
 
355
+ #: includes/class-wcdn-writepanel.php:259
356
  msgid "Invoice number: "
357
  msgstr "Numéro de facture :"
358
 
359
+ #: includes/class-wcdn-writepanel.php:260
360
  msgid "Invoice date: "
361
  msgstr "Date de facture :"
362
 
363
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:75
364
+ msgid "If you have a moment, please let us know why you are deactivating"
365
+ msgstr ""
366
+
367
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:76
368
+ msgid "Submit & Deactivate"
369
+ msgstr ""
370
+
371
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:77
372
+ msgid "Deactivate"
373
+ msgstr ""
374
+
375
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:78
376
+ msgid "Cancel"
377
+ msgstr ""
378
+
379
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:79
380
+ msgid "Yes - Deactivate"
381
+ msgstr ""
382
+
383
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:83
384
+ msgid "I found a better plugin"
385
+ msgstr ""
386
+
387
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:84
388
+ msgid "What's the plugin's name?"
389
+ msgstr ""
390
+
391
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:85
392
+ msgid "I only needed the plugin for a short period"
393
+ msgstr ""
394
+
395
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:86
396
+ msgid "The plugin is not working"
397
+ msgstr ""
398
+
399
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:87
400
+ msgid "Kindly share what didn't work so we can fix it for future users..."
401
+ msgstr ""
402
+
403
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:88
404
+ msgid "The plugin is great, but I need specific feature that you don't support"
405
+ msgstr ""
406
+
407
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:89
408
+ msgid "What feature?"
409
+ msgstr ""
410
+
411
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:90
412
+ msgid "I don't like to share my information with you"
413
+ msgstr ""
414
+
415
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:91
416
+ msgctxt ""
417
+ "the text of the 'other' reason for deactivating the plugin that is shown in "
418
+ "the modal box."
419
+ msgid "Other"
420
+ msgstr ""
421
+
422
+ #: includes/component/faq-support/ts-faq-support.php:127
423
+ msgid "Frequently Asked Questions for %s"
424
+ msgstr ""
425
+
426
+ #: includes/component/faq-support/ts-faq-support.php:176
427
+ msgid "FAQ & Support"
428
+ msgstr ""
429
+
430
+ #: includes/component/tracking-data/ts-tracking.php:120
431
+ #: includes/component/tracking-data/ts-tracking.php:180
432
+ msgid "Reset usage tracking"
433
+ msgstr ""
434
+
435
+ #: includes/component/tracking-data/ts-tracking.php:122
436
+ msgid ""
437
+ "This will reset your usage tracking settings, causing it to show the opt-in "
438
+ "banner again and not sending any data"
439
+ msgstr ""
440
+
441
+ #: includes/component/tracking-data/ts-tracking.php:225
442
+ msgid "Once in a Week"
443
+ msgstr ""
444
+
445
+ #: includes/component/tracking-data/ts-tracking.php:311
446
+ msgid "Allow"
447
+ msgstr ""
448
+
449
+ #: includes/component/tracking-data/ts-tracking.php:312
450
+ msgid "No thanks"
451
+ msgstr ""
452
+
453
+ #: includes/component/welcome-page/templates/social-media-elements.php:10
454
+ #: includes/wcdn-welcome.php:231
455
+ msgid "Follow %s"
456
+ msgstr ""
457
+
458
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:19
459
+ #: includes/wcdn-welcome.php:99
460
+ msgid ""
461
+ "Thank you for activating or updating to the latest version of WooCommerce "
462
+ "Print Invoice & Delivery Note! If you're a first time user, welcome! You're "
463
+ "well on your way to explore the print functionality for your WooCommerce "
464
+ "orders."
465
+ msgstr ""
466
+
467
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:29
468
+ #: includes/wcdn-welcome.php:109
469
+ msgid "Get Started with WooCommerce Print Invoice & Delivery Note"
470
+ msgstr ""
471
+
472
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:33
473
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:62
474
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:68
475
+ #: includes/wcdn-welcome.php:113 includes/wcdn-welcome.php:142
476
+ #: includes/wcdn-welcome.php:148
477
+ msgid "WooCommerce Print Invoice & Delivery Note"
478
+ msgstr ""
479
+
480
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:37
481
+ #: includes/wcdn-welcome.php:117
482
+ msgid "Add settings"
483
+ msgstr ""
484
+
485
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:39
486
+ #: includes/wcdn-welcome.php:119
487
+ msgid ""
488
+ "To enable the print functionality for your invoices, delivery notes & "
489
+ "receipts, you just need to set it up under WooCommerce -> Settings -> Print "
490
+ "page. Here you can also setup the Company Logo that will appear on the "
491
+ "printed items, Company Address & other information."
492
+ msgstr ""
493
+
494
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:41
495
+ #: includes/wcdn-welcome.php:121
496
+ msgid "Click Here to go to Print page"
497
+ msgstr ""
498
+
499
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:52
500
+ #: includes/wcdn-welcome.php:132
501
+ msgid "Enable Print button for Customers."
502
+ msgstr ""
503
+
504
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:54
505
+ #: includes/wcdn-welcome.php:134
506
+ msgid ""
507
+ "Allow customers to print the WooCommerce order invoice from the customer "
508
+ "notification email, from the My Account page or from the View Order page "
509
+ "under My Account."
510
+ msgstr ""
511
+
512
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:56
513
+ #: includes/wcdn-welcome.php:136
514
+ msgid "Click Here to Enable Print button for Customers"
515
+ msgstr ""
516
+
517
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:72
518
+ #: includes/wcdn-welcome.php:152
519
+ msgid "Enable Invoice Numbering"
520
+ msgstr ""
521
+
522
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:74
523
+ msgid ""
524
+ "If you want to change the default invoice numbers & set some numbering "
525
+ "scheme of your own, then you can set it here with a starting invoice number, "
526
+ "a prefix & suffix. For example, you could set it as: TS/001/17-18."
527
+ msgstr ""
528
+
529
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:76
530
+ #: includes/wcdn-welcome.php:156
531
+ msgid "Click Here to Enable Invoice Numbering"
532
+ msgstr ""
533
+
534
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:87
535
+ #: includes/wcdn-welcome.php:167
536
+ msgid "Getting to Know Tyche Softwares"
537
+ msgstr ""
538
+
539
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:90
540
+ #: includes/wcdn-welcome.php:170
541
+ msgid "Visit the Tyche Softwares Website"
542
+ msgstr ""
543
+
544
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:91
545
+ #: includes/wcdn-welcome.php:171
546
+ msgid "View all Premium Plugins"
547
+ msgstr ""
548
+
549
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:100
550
+ #: includes/wcdn-welcome.php:180
551
+ msgid "Meet the team"
552
+ msgstr ""
553
+
554
+ #: includes/component/welcome-page/ts-welcome.php:167
555
+ msgid "Welcome to %s %s"
556
+ msgstr ""
557
+
558
+ #: includes/wcdn-all-component.php:118
559
+ msgid ""
560
+ "Thank you for using WooCommerce Print Invoice & Delivery Note plugin! Now "
561
+ "make your deliveries more accurate by allowing customers to select their "
562
+ "preferred delivery date & time from Product Delivery Date Pro for "
563
+ "WooCommerce. <strong><a target=\"_blank\" href= \"https://www.tychesoftwares."
564
+ "com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/?"
565
+ "utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">Get "
566
+ "it now!</a></strong>"
567
+ msgstr ""
568
+
569
+ #: includes/wcdn-all-component.php:120
570
+ msgid ""
571
+ "Never login to your admin to check your deliveries by syncing the delivery "
572
+ "dates to the Google Calendar from Product Delivery Date Pro for WooCommerce. "
573
+ "<strong><a target=\"_blank\" href= \"https://www.tychesoftwares.com/store/"
574
+ "premium-plugins/product-delivery-date-pro-for-woocommerce/checkout?"
575
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
576
+ "\">Get it now!</a></strong>"
577
+ msgstr ""
578
+
579
+ #: includes/wcdn-all-component.php:122
580
+ msgid ""
581
+ "You can now view all your deliveries in list view or in calendar view from "
582
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
583
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
584
+ "delivery-date-pro-for-woocommerce/checkout?"
585
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
586
+ "\">Get it now!</a></strong>."
587
+ msgstr ""
588
+
589
+ #: includes/wcdn-all-component.php:124
590
+ msgid ""
591
+ "Allow your customers to pay extra for delivery for certain Weekdays/Dates "
592
+ "from Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
593
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
594
+ "delivery-date-pro-for-woocommerce/checkout?"
595
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
596
+ "\">Have it now!</a></strong>."
597
+ msgstr ""
598
+
599
+ #: includes/wcdn-all-component.php:126
600
+ msgid ""
601
+ "Customers can now edit the Delivery date & time on cart and checkout page or "
602
+ "they can reschedule the deliveries for the already placed orders from "
603
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
604
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
605
+ "delivery-date-pro-for-woocommerce/checkout?"
606
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
607
+ "\">Have it now!</a></strong>."
608
+ msgstr ""
609
+
610
+ #: includes/wcdn-template-functions.php:246
611
  msgid "Invoice Number"
612
  msgstr "Numéro de facture"
613
 
614
+ #: includes/wcdn-template-functions.php:253
615
+ msgid "Invoice Date"
616
+ msgstr ""
617
+
618
  # @ woocommerce-delivery-notes
619
+ #: includes/wcdn-template-functions.php:259
620
  msgid "Order Number"
621
  msgstr "Numéro de commande"
622
 
623
  # @ woocommerce-delivery-notes
624
+ #: includes/wcdn-template-functions.php:264
625
  msgid "Order Date"
626
  msgstr "Date de commande"
627
 
628
  # @ woocommerce-delivery-notes
629
+ #: includes/wcdn-template-functions.php:269
630
  msgid "Payment Method"
631
  msgstr "Méthode de paiement"
632
 
633
  # @ woocommerce-delivery-notes
634
+ #: includes/wcdn-template-functions.php:282
635
  msgid "Telephone"
636
  msgstr "Téléphone"
637
 
638
+ #: includes/wcdn-template-functions.php:315
639
  msgid "SKU:"
640
  msgstr "Référence :"
641
 
642
+ #: includes/wcdn-template-functions.php:409
643
+ #: includes/wcdn-template-functions.php:413
644
+ msgid "(Includes %s)"
645
+ msgstr ""
646
+
647
+ #: includes/wcdn-template-functions.php:429
648
  msgid "Refund"
649
  msgstr "Remboursement"
650
 
651
+ #: includes/wcdn-template-functions.php:441
652
  msgid "Order Subtotal"
653
  msgstr "Sous-total "
654
 
655
+ #: includes/wcdn-welcome.php:54
656
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note %s"
657
+ msgstr ""
658
+
659
+ #: includes/wcdn-welcome.php:55
660
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note"
661
+ msgstr ""
662
+
663
+ #: includes/wcdn-welcome.php:154
664
+ msgid ""
665
+ "f you want to change the default invoice numbers & set some numbering scheme "
666
+ "of your own, then you can set it here with a starting invoice number, a "
667
+ "prefix & suffix. For example, you could set it as: TS/001/17-18."
668
+ msgstr ""
669
+
670
+ #: includes/wcdn-welcome.php:186
671
+ msgid "Current Offers"
672
+ msgstr ""
673
+
674
  # @ woocommerce-delivery-notes
675
+ #: templates/print-order/print-content.php:28
676
  msgid "Billing Address"
677
  msgstr "Adresse de facturation"
678
 
679
  # @ woocommerce-delivery-notes
680
+ #: templates/print-order/print-content.php:31
681
+ #: templates/print-order/print-content.php:40
682
  msgid "N/A"
683
  msgstr "N/A"
684
 
685
  # @ woocommerce-delivery-notes
686
+ #: templates/print-order/print-content.php:37
687
  msgid "Shipping Address"
688
  msgstr "Adresse d'expédition"
689
 
690
  # @ woocommerce-delivery-notes
691
+ #: templates/print-order/print-content.php:71
692
  msgid "Product"
693
  msgstr "Produit"
694
 
695
+ #: templates/print-order/print-content.php:72
696
  msgid "Price"
697
  msgstr "Prix"
698
 
699
+ #: templates/print-order/print-content.php:73
700
  msgid "Quantity"
701
  msgstr "Quantité"
702
 
703
  # @ woocommerce-delivery-notes
704
+ #: templates/print-order/print-content.php:74
705
  msgid "Total"
706
  msgstr "Total"
707
 
708
  # @ woocommerce-delivery-notes
709
+ #: templates/print-order/print-content.php:147
710
  msgid "Download:"
711
  msgstr "Téléchargement :"
712
 
713
  # @ woocommerce-delivery-notes
714
+ #: templates/print-order/print-content.php:148
 
715
  msgid "%s Files"
716
  msgstr "%s fichiers"
717
 
718
  # @ woocommerce-delivery-notes
719
+ #: templates/print-order/print-content.php:202
720
  msgid "Customer Note"
721
  msgstr "Note du client"
722
 
723
+ #: woocommerce-delivery-notes.php:96 woocommerce-delivery-notes.php:103
724
+ msgid "Cheatin&#8217; huh?"
725
+ msgstr ""
726
+
727
+ #: woocommerce-delivery-notes.php:275
728
+ msgid ""
729
+ "I can't differentiate between Invoice, Delivery Notes & Receipt. The "
730
+ "templates are the same. "
731
+ msgstr ""
732
+
733
+ #: woocommerce-delivery-notes.php:281
734
+ msgid "The invoice sent through mail can't be downloaded as PDF directly."
735
+ msgstr ""
736
+
737
+ #: woocommerce-delivery-notes.php:287
738
+ msgid "The plugin is not compatible with another plugin."
739
+ msgstr ""
740
+
741
+ #: woocommerce-delivery-notes.php:293
742
+ msgid "This plugin is not useful to me."
743
+ msgstr ""
744
+
745
  # @ woocommerce-delivery-notes
746
+ #: woocommerce-delivery-notes.php:351
747
  msgid "Go to the settings page"
748
  msgstr "Aller à la page de configuration"
749
 
750
  # @ woocommerce-delivery-notes
751
+ #: woocommerce-delivery-notes.php:351
752
  msgid "Settings"
753
  msgstr "Paramètres"
754
+
755
+ #~ msgid "Enable Invoices"
756
+ #~ msgstr "Factures"
757
+
758
+ #~ msgid "Enable Delivery Notes"
759
+ #~ msgstr "Bons de livraison"
760
+
761
+ #~ msgid "Enable Receipts"
762
+ #~ msgstr "Reçus"
763
+
764
+ #~ msgid ""
765
+ #~ "You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s"
766
+ #~ "\">invoice</a>, <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s\">delivery "
767
+ #~ "note</a> or <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> "
768
+ #~ "template."
769
+ #~ msgstr ""
770
+ #~ "You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s"
771
+ #~ "\">invoice</a>, <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s\">delivery "
772
+ #~ "note</a> or <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> "
773
+ #~ "template."
774
+
775
+ # @ woocommerce-delivery-notes
776
+ #~ msgid ""
777
+ #~ "With the FAQ in the readme file you can learn how to customize the "
778
+ #~ "template."
779
+ #~ msgstr ""
780
+ #~ "Avec la FAQ dans le fichier readme vous pouvez apprendre comment "
781
+ #~ "personnaliser le modèle"
782
+
783
+ # @ woocommerce-delivery-notes
784
+ #~ msgid "Company/Shop Logo"
785
+ #~ msgstr "Logo magasin/entreprise"
786
+
787
+ # @ woocommerce-delivery-notes
788
+ #~ msgid "Remove Logo"
789
+ #~ msgstr "Enlever le Logo"
790
+
791
+ # @ woocommerce-delivery-notes
792
+ #~ msgid "Set Logo"
793
+ #~ msgstr "Mise en place du Logo"
794
+
795
+ # @ woocommerce-delivery-notes
796
+ #~ msgid "A company/shop logo representing your business."
797
+ #~ msgstr "Un logo du magasin/entreprise représentant votre activité."
798
+
799
+ # @ woocommerce-delivery-notes
800
+ #~ msgid "Note:"
801
+ #~ msgstr "Note :"
802
+
803
+ # @ woocommerce-delivery-notes
804
+ #~ msgid ""
805
+ #~ "When the image is printed, its pixel density will automatically be eight "
806
+ #~ "times higher than the original. This means, 1 printed inch will "
807
+ #~ "correspond to about 288 pixels on the screen. Example: an image with a "
808
+ #~ "width of 576 pixels and a height of 288 pixels will have a printed size "
809
+ #~ "of about 2 inches to 1 inch."
810
+ #~ msgstr ""
811
+ #~ "Quand l'image est imprimée, sa densité de pixels sera automatiquement "
812
+ #~ "multipliée par 8 par rapport à l'original. Ce qui veut dire qu'un pouce "
813
+ #~ "correspondra environ à 288 pixels sur l'écran. Exemple : une image avec "
814
+ #~ "une largeur de 576 pixels et une hauteur de 288 pixels sera imprimée à "
815
+ #~ "une taille d'environ 5 centimètres sur 2,5. "
816
+
817
+ # @ woocommerce-delivery-notes
818
+ #~ msgid "Company/Shop Name"
819
+ #~ msgstr "Nom magasin/entreprise"
820
+
821
+ # @ woocommerce-delivery-notes
822
+ #~ msgid "Your company/shop name for the Delivery Note."
823
+ #~ msgstr "Le nom de votre magasin/entreprise pour le bon de livraison."
824
+
825
+ # @ woocommerce-delivery-notes
826
+ #~ msgid ""
827
+ #~ "Leave blank to use the default Website/Blog title defined in WordPress "
828
+ #~ "settings. The name will be ignored when a Logo is set."
829
+ #~ msgstr ""
830
+ #~ "Laisser blanc pour utiliser le titre de blog/site défini dans les "
831
+ #~ "paramètres Wordpress. Ce nom sera ignoré si un logo est paramétré."
832
+
833
+ # @ woocommerce-delivery-notes
834
+ #~ msgid "Company/Shop Address"
835
+ #~ msgstr "Adresse magasin/entreprise"
836
+
837
+ # @ woocommerce-delivery-notes
838
+ #~ msgid ""
839
+ #~ "The postal address of the company/shop or even e-mail or telephone, which "
840
+ #~ "gets printed right after the company/shop name."
841
+ #~ msgstr ""
842
+ #~ "L'adresse postale du magasin ou un email ou un téléphone, qui sera "
843
+ #~ "imprimé juste après le nom du magasin."
844
+
845
+ # @ woocommerce-delivery-notes
846
+ #~ msgid "Leave blank to not print an address."
847
+ #~ msgstr "Laisser blanc pour ne pas imprimer d'adresse"
848
+
849
+ # @ woocommerce-delivery-notes
850
+ #~ msgid ""
851
+ #~ "Add some personal notes, or season greetings or whatever (e.g. Thank You "
852
+ #~ "for Your Order!, Merry Christmas!, etc.)."
853
+ #~ msgstr ""
854
+ #~ "Ajouter des notes personnelles, ou des voeux de saison ou ce que vous "
855
+ #~ "voulez (ex: Merci pour votre commande, Joyeux Noël, etc.)."
856
+
857
+ # @ woocommerce-delivery-notes
858
+ #~ msgid "Leave blank to not print any personal notes."
859
+ #~ msgstr "Laisser blanc pour ne pas imprimer de note personnelle"
860
+
861
+ # @ woocommerce-delivery-notes
862
+ #~ msgid "Returns Policy, Conditions, etc"
863
+ #~ msgstr "Conditions générales de vente, retours, etc"
864
+
865
+ # @ woocommerce-delivery-notes
866
+ #~ msgid ""
867
+ #~ "Here you can add some more policies, conditions etc. For example add a "
868
+ #~ "returns policy in case the client would like to send back some goods. In "
869
+ #~ "some countries (e.g. in the European Union) this is required so please "
870
+ #~ "add any required info in accordance with the statutory regulations."
871
+ #~ msgstr ""
872
+ #~ "Ici vous pouvez ajouter des conditions, informations ... Par exemple la "
873
+ #~ "politique de retour dans le cas où le client souhaiterait renvoyer un "
874
+ #~ "produit. Dans certains pays (ex. Union Européenne) ceci est requis ; donc "
875
+ #~ "remplissez en accord avec la règlementation de votre pays."
876
+
877
+ # @ woocommerce-delivery-notes
878
+ #~ msgid "Leave blank to not print any policies or conditions."
879
+ #~ msgstr "Laisser blanc pour ne pas imprimer de conditions ou informations"
880
+
881
+ # @ woocommerce-delivery-notes
882
+ #~ msgid ""
883
+ #~ "Add some further footer imprint, e-mail, telephone, copyright notes etc. "
884
+ #~ "This makes the printed sheets a bit more branded."
885
+ #~ msgstr ""
886
+ #~ "Ajouter quelques informations en pied de page : copyright, email, "
887
+ #~ "téléphone ... Cela rend les documents imprimés plus à l'image du magasin."
888
+
889
+ # @ woocommerce-delivery-notes
890
+ #~ msgid "Leave blank to not print a footer."
891
+ #~ msgstr "Laisser blanc pour ne pas imprimer de pied de page"
892
+
893
+ #~ msgid "Print Options"
894
+ #~ msgstr "Impressions permises :"
895
+
896
+ #~ msgid "Types"
897
+ #~ msgstr "Types"
898
+
899
+ #~ msgid "Theme Options"
900
+ #~ msgstr "Paramètrages coté clients"
901
+
902
+ # @ woocommerce-delivery-notes
903
+ #~ msgid "Order Numbering"
904
+ #~ msgstr "Numérotation factures et commandes"
905
+
906
+ #~ msgid "Invoice Numbering"
907
+ #~ msgstr "Numérotation des factures"
908
+
909
+ #~ msgid "Invoice Number Start"
910
+ #~ msgstr "Numéro initial des factures"
911
+
912
+ #~ msgid "Start the numbering at the specified number."
913
+ #~ msgstr "Commencer la numérotation au numéro indiqué."
914
+
915
+ #~ msgid "Use only integers."
916
+ #~ msgstr "Utiliser uniquement des nombres entiers"
917
+
918
+ #~ msgid "Invoice Number Prefix"
919
+ #~ msgstr "Préfixe pour les numéros de facture"
920
+
921
+ #~ msgid "Leave blank to not add a prefix."
922
+ #~ msgstr "Laisser blanc pour ne pas mettre de préfixe."
923
+
924
+ #~ msgid "Invoice Number Suffix"
925
+ #~ msgstr "Suffixe de numéro de facture"
926
+
927
+ #~ msgid "Leave blank to not add a suffix."
928
+ #~ msgstr "Laisser blanc pour ne pas ajouter de suffixe."
929
+
930
+ #~ msgid "Invoice Number Counter"
931
+ #~ msgstr "Numéro courant de facture"
932
+
933
+ #~ msgid "Reset Counter …"
934
+ #~ msgstr "Réinitialiser ..."
935
+
936
+ #~ msgid "Sequential Order Number"
937
+ #~ msgstr "Numéro séquentiel de commande "
938
+
939
+ # @ woocommerce-delivery-notes
940
+ #~ msgid "Sequential numbering is enabled."
941
+ #~ msgstr "Numérotation séquentielle activée."
942
+
943
+ # @ woocommerce-delivery-notes
944
+ #~ msgid ""
945
+ #~ "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
946
+ #~ "Numbers</a> Plugin."
947
+ #~ msgstr ""
948
+ #~ "Installer et activer le plugin gratuit <a href=\"%s\">WooCommerce "
949
+ #~ "Sequential Order Numbers</a>."
languages/woocommerce-delivery-notes-it_IT.mo CHANGED
Binary file
languages/woocommerce-delivery-notes-it_IT.po CHANGED
@@ -3,9 +3,10 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
6
- "Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
7
- "POT-Creation-Date: 2014-04-17 20:02+0100\n"
8
- "PO-Revision-Date: 2014-06-28 17:13+0100\n"
 
9
  "Last-Translator: Massimiliano Losego <losegomax@gmail.com>\n"
10
  "Language-Team: Massimiliano Losego <losegomax@gmail.com>\n"
11
  "Language: it_IT\n"
@@ -13,175 +14,203 @@ msgstr ""
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
16
- "X-Generator: Poedit 1.6.5\n"
17
 
18
- #: ../includes/class-wcdn-settings.php:90 ../includes/class-wcdn-theme.php:52
19
- #: ../includes/class-wcdn-theme.php:71
20
- #: ../includes/wcdn-template-functions.php:118
21
- msgid "Print"
22
- msgstr "Stampa"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
 
24
- #: ../includes/class-wcdn-settings.php:128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  msgid "Print Order"
26
  msgstr "Stampa Ordine"
27
 
28
- #: ../includes/class-wcdn-settings.php:147
29
- #, php-format
30
- msgid ""
31
- "You can preview the <a href=\"%1$s\" target=\"%3$s\" class=\"%4$s\">invoice "
32
- "template</a> or <a href=\"%2$s\" target=\"%3$s\" class=\"%4$s\">delivery "
33
- "note template</a>."
34
  msgstr ""
35
- "Puoi <a href=\"%1$s\" target=\"%3$s\" class=\"%4$s\">visualizzare "
36
- "l'anteprima del template della fattura</a> oppure <a href=\"%2$s\" target="
37
- "\"%3$s\" class=\"%4$s\">il template della nota di spedizione</a>."
38
 
39
- # @ woocommerce-delivery-notes
40
- #: ../includes/class-wcdn-settings.php:148
 
 
 
41
  msgid ""
42
- "With the FAQ in the readme file you can learn how to customize the template."
43
- msgstr ""
44
- "Con le FAQ nel file readme potrai capire come personalizzare il template."
45
-
46
- #: ../includes/class-wcdn-settings.php:159
47
- msgid "Company/Shop Logo"
48
- msgstr "Logo Azienda/Negozio"
49
-
50
- #: ../includes/class-wcdn-settings.php:165
51
- msgid "Remove Logo"
52
- msgstr "Rimuovi Logo"
53
-
54
- #: ../includes/class-wcdn-settings.php:166
55
- msgid "Set Logo"
56
- msgstr "Imposta Logo"
57
-
58
- #: ../includes/class-wcdn-settings.php:170
59
- msgid "A company/shop logo representing your business."
60
- msgstr "Un logo della tua azienda/negozio che rappresenti la tua attività."
61
-
62
- #: ../includes/class-wcdn-settings.php:171
63
- #: ../includes/class-wcdn-settings.php:184
64
- #: ../includes/class-wcdn-settings.php:197
65
- #: ../includes/class-wcdn-settings.php:210
66
- #: ../includes/class-wcdn-settings.php:223
67
- #: ../includes/class-wcdn-settings.php:236
68
- #: ../includes/class-wcdn-settings.php:312
69
- #: ../includes/class-wcdn-settings.php:328
70
- #: ../includes/class-wcdn-settings.php:344
71
- msgid "Note:"
72
- msgstr "Note:"
73
-
74
- #: ../includes/class-wcdn-settings.php:172
75
  msgid ""
76
- "When the image is printed, its pixel density will automatically be eight "
77
- "times higher than the original. This means, 1 printed inch will correspond "
78
- "to about 288 pixels on the screen. Example: an image with a width of 576 "
79
- "pixels and a height of 288 pixels will have a printed size of about 2 inches "
80
- "to 1 inch."
81
- msgstr ""
82
- "Quando un'immagine viene stampata, la sua densità di pixel sarà "
83
- "automaticamente otto volte l'originale. Questo significa che un pollice "
84
- "corrisponderà a circa 288 pixel sullo schermo.\n"
85
- "Esempio: un'immagine larga 576 pixel ed alta 288 in stampa sarà grande larga "
86
- "2 pollici ed alta 1 pollice"
87
-
88
- #: ../includes/class-wcdn-settings.php:178
89
- msgid "Company/Shop Name"
90
- msgstr "Nome Azienda/Negozio"
91
-
92
- #: ../includes/class-wcdn-settings.php:183
93
- msgid "Your company/shop name for the Delivery Note."
94
- msgstr "Il nome della tua azienda/negozio per la Nota di Consegna."
95
-
96
- #: ../includes/class-wcdn-settings.php:185
97
  msgid ""
98
- "Leave blank to use the default Website/Blog title defined in WordPress "
99
- "settings. The name will be ignored when a Logo is set."
 
100
  msgstr ""
101
- "Lasciare vuoto per usare il titolo del sito/blog predefinito nelle "
102
- "impostazioni di WordPress. Il nome sarà ingorato quando è presente un Logo."
103
 
104
- #: ../includes/class-wcdn-settings.php:191
105
- msgid "Company/Shop Address"
106
- msgstr "Indirizzo Azienda/Negozio"
107
 
108
- #: ../includes/class-wcdn-settings.php:196
109
  msgid ""
110
- "The postal address of the company/shop or even e-mail or telephone, which "
111
- "gets printed right after the company/shop name."
112
  msgstr ""
113
- "L'indirizzo postale della ditta/negozio o l'indirizzo e-mail o il numero di "
114
- "telefono, saranno stampati sotto il nome della ditta/negozio."
115
 
116
- #: ../includes/class-wcdn-settings.php:198
117
- msgid "Leave blank to not print an address."
118
- msgstr "Lasciare in bianco per evitare di stampare un indirizzo"
119
 
120
- #: ../includes/class-wcdn-settings.php:204
 
 
 
 
121
  msgid "Complimentary Close"
122
  msgstr "Chiusura Omaggio"
123
 
124
- #: ../includes/class-wcdn-settings.php:209
125
- msgid ""
126
- "Add some personal notes, or season greetings or whatever (e.g. Thank You for "
127
- "Your Order!, Merry Christmas!, etc.)."
128
  msgstr ""
129
- "Aggiungi qualche nota personale o auguri o altro (es.: \"Grazie per l'ordine"
130
- "\" , \"Buon Natale\" ecc.)"
131
 
132
- #: ../includes/class-wcdn-settings.php:211
133
- msgid "Leave blank to not print any personal notes."
134
- msgstr "Lasciare in bianco per non stampare nessuna nota personale"
135
 
136
- #: ../includes/class-wcdn-settings.php:217
137
- msgid "Returns Policy, Conditions, etc"
138
- msgstr "Politica Resi, Condizioni, etc"
139
 
140
- #: ../includes/class-wcdn-settings.php:222
141
- msgid ""
142
- "Here you can add some more policies, conditions etc. For example add a "
143
- "returns policy in case the client would like to send back some goods. In "
144
- "some countries (e.g. in the European Union) this is required so please add "
145
- "any required info in accordance with the statutory regulations."
146
- msgstr ""
147
- "Qui si possono aggiungere altre indicazioni, condizioni ecc.\n"
148
- "Ad esempio condizioni per il reso nel caso il cliente voglia usufruire del "
149
- "diritto di recesso.\n"
150
- "In alcuni paesi (ad esempio nell'Unione Europea) questo è obbligatorio, si "
151
- "prega di aggiungere le informazioni richieste in ottemperanza alle leggi "
152
- "vigenti."
153
-
154
- #: ../includes/class-wcdn-settings.php:224
155
- msgid "Leave blank to not print any policies or conditions."
156
- msgstr "Lasciare in bianco per non stampare alcuna regola o condizione"
157
-
158
- #: ../includes/class-wcdn-settings.php:230
159
  msgid "Footer"
160
  msgstr "Testo piè di pagina"
161
 
162
- #: ../includes/class-wcdn-settings.php:235
163
  msgid ""
164
- "Add some further footer imprint, e-mail, telephone, copyright notes etc. "
165
- "This makes the printed sheets a bit more branded."
166
  msgstr ""
167
- "Aggiungi qualche informazione a piè di pagina come email, telefono, "
168
- "copyright ecc. questo renderà più professionali le stampe."
169
-
170
- #: ../includes/class-wcdn-settings.php:237
171
- msgid "Leave blank to not print a footer."
172
- msgstr "Lasciare in bianco per non stampare un piè di pagina"
173
 
174
- #: ../includes/class-wcdn-settings.php:244
175
- msgid "Front-end Options"
176
- msgstr "Opzioni del Front-end"
177
 
178
  # @ woocommerce-delivery-notes
179
- #: ../includes/class-wcdn-settings.php:249
180
  msgid "Print Page Endpoint"
181
  msgstr "Stampa destinazione Pagina"
182
 
183
  # @ woocommerce-delivery-notes
184
- #: ../includes/class-wcdn-settings.php:256
185
  msgid ""
186
  "The endpoint is appended to the accounts page URL to print the order. It "
187
  "should be unique."
@@ -189,219 +218,663 @@ msgstr ""
189
  "La destinazione è relativa alla pagina URL dell'account per stampae "
190
  "l'ordine. Dovrebbe essere univoca."
191
 
192
- #: ../includes/class-wcdn-settings.php:262
193
- msgid "Print Buttons"
194
- msgstr "Pulsanti si Stampa"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
195
 
196
  # @ woocommerce-delivery-notes
197
- #: ../includes/class-wcdn-settings.php:269
198
  msgid "Show print button on the \"View Order\" page"
199
  msgstr "Mostra il bottone di stampa nella pagina \"Visualizza Ordini\""
200
 
201
  # @ woocommerce-delivery-notes
202
- #: ../includes/class-wcdn-settings.php:276
203
  msgid "Show print buttons on the \"My Account\" page"
204
  msgstr "Mostra il bottone di stampa nella pagina \"Mio Account\""
205
 
206
- #: ../includes/class-wcdn-settings.php:284
207
- msgid "Order Numbering"
208
- msgstr "Numerazione Ordine"
209
-
210
- #: ../includes/class-wcdn-settings.php:289
211
- #: ../includes/wcdn-template-functions.php:208
212
- msgid "Invoice Number"
213
- msgstr "Numero Fattura"
214
 
215
- #: ../includes/class-wcdn-settings.php:297
216
  msgid "Create invoice numbers"
217
  msgstr "Crea Numeri Fattura"
218
 
219
- #: ../includes/class-wcdn-settings.php:304
220
- msgid "Invoice Number Start"
221
- msgstr "Numero iniziale fattura"
222
-
223
- #: ../includes/class-wcdn-settings.php:311
224
- msgid "Start the numbering at the specified number."
225
- msgstr "Inizial la numerazione da un numero specifico."
226
-
227
- #: ../includes/class-wcdn-settings.php:313
228
- msgid "Use only integers."
229
- msgstr "Usa solo numeri interi."
230
 
231
- #: ../includes/class-wcdn-settings.php:314
232
- #: ../includes/class-wcdn-settings.php:330
233
- #: ../includes/class-wcdn-settings.php:346
234
- msgid "Already created invoice numbers are not affected by changes."
235
- msgstr "I numeri di fattura già creati non saranno modificati."
236
 
237
- #: ../includes/class-wcdn-settings.php:320
238
- msgid "Invoice Number Prefix"
239
- msgstr "Prefisso Numero Fattura"
240
 
241
- #: ../includes/class-wcdn-settings.php:327
242
  msgid "This text will be prepended to the invoice number."
243
  msgstr "Questo testo sarà aggiunto prima del numero fattura."
244
 
245
- #: ../includes/class-wcdn-settings.php:329
246
- msgid "Leave blank to not add a prefix."
247
- msgstr "Lascia in bianco per non aggiungere un prefisso."
248
-
249
- #: ../includes/class-wcdn-settings.php:336
250
- msgid "Invoice Number Suffix"
251
- msgstr "Suffisso Numero Fattura"
252
 
253
- #: ../includes/class-wcdn-settings.php:343
254
  msgid "This text will be appended to the invoice number."
255
  msgstr "Questo testo sarà aggiunto dopo il numero fattura."
256
 
257
- #: ../includes/class-wcdn-settings.php:345
258
- msgid "Leave blank to not add a suffix."
259
- msgstr "Lascia in bianco per non aggiungere un suffisso."
260
-
261
- #: ../includes/class-wcdn-settings.php:352
262
- msgid "Sequential Order Number"
263
- msgstr "Numero d'ordine Sequenziale"
264
 
265
- #: ../includes/class-wcdn-settings.php:356
266
- msgid "Sequential numbering is enabled."
267
- msgstr "Numerazione sequenziale abilitata"
 
 
268
 
269
- #: ../includes/class-wcdn-settings.php:358
270
- #, php-format
271
  msgid ""
272
- "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
273
- "Numbers</a> Plugin."
 
 
274
  msgstr ""
275
- "Installa e attiva il Plugin gratuito <a href=\"%s\">WooCommerce Sequential "
276
- "Order Numbers</a>."
277
 
278
- #: ../includes/class-wcdn-writepanel.php:83
279
- #: ../includes/class-wcdn-writepanel.php:84
280
- #: ../includes/class-wcdn-writepanel.php:105
281
- #: ../includes/class-wcdn-writepanel.php:106
282
- #: ../includes/class-wcdn-writepanel.php:192
283
- msgid "Print Invoice"
284
- msgstr "Stampa fattura"
285
 
286
- #: ../includes/class-wcdn-writepanel.php:86
287
- #: ../includes/class-wcdn-writepanel.php:87
288
- #: ../includes/class-wcdn-writepanel.php:108
289
- #: ../includes/class-wcdn-writepanel.php:109
290
- #: ../includes/class-wcdn-writepanel.php:193
291
- msgid "Print Delivery Note"
292
- msgstr "Stampa nota di consegna"
293
 
294
- #: ../includes/class-wcdn-writepanel.php:164
295
- #, php-format
296
- msgid "Invoice created."
297
- msgid_plural "%s invoices created."
298
- msgstr[0] "Fattura creata."
299
- msgstr[1] "%s fatture create."
300
-
301
- #: ../includes/class-wcdn-writepanel.php:166
302
- #, php-format
303
- msgid "Delivery note created."
304
- msgid_plural "%s delivery notes created."
305
- msgstr[0] "Creata Nota di consegna."
306
- msgstr[1] "Create %s Note di consegna."
307
-
308
- #: ../includes/class-wcdn-writepanel.php:170
309
  msgid "Print now"
310
  msgstr "Stampa ora"
311
 
312
- #: ../includes/class-wcdn-writepanel.php:181
313
  msgid "Order Printing"
314
  msgstr "Stampa Ordine"
315
 
316
- #: ../includes/class-wcdn-writepanel.php:197
317
  msgid "Invoice number: "
318
  msgstr "Numero Fattura"
319
 
320
- #: ../includes/wcdn-template-functions.php:32
321
- msgid "Invoice"
322
- msgstr "Fattura"
323
 
324
- #: ../includes/wcdn-template-functions.php:34
325
- msgid "Delivery Note"
326
- msgstr "Nota di consegna"
327
 
328
- #: ../includes/wcdn-template-functions.php:36
329
- msgid "Order"
330
- msgstr "Ordine"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
331
 
332
- #: ../includes/wcdn-template-functions.php:214
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
333
  msgid "Order Number"
334
  msgstr "Numero dell'ordine"
335
 
336
- #: ../includes/wcdn-template-functions.php:219
337
  msgid "Order Date"
338
  msgstr "Data dell'ordine"
339
 
340
- #: ../includes/wcdn-template-functions.php:224
341
  msgid "Payment Method"
342
  msgstr "Metodo di pagamento"
343
 
344
  # @ woocommerce-delivery-notes
345
- #: ../includes/wcdn-template-functions.php:230
346
- msgid "Email"
347
- msgstr "Email"
348
-
349
- # @ woocommerce-delivery-notes
350
- #: ../includes/wcdn-template-functions.php:237
351
  msgid "Telephone"
352
  msgstr "Telefono"
353
 
354
- #: ../includes/wcdn-template-functions.php:263
355
  msgid "SKU:"
356
  msgstr "COD:"
357
 
358
- #: ../templates/print-order/print-content.php:28
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
359
  msgid "Billing Address"
360
  msgstr "Indirizzo di Fatturazione"
361
 
362
- #: ../templates/print-order/print-content.php:31
363
- #: ../templates/print-order/print-content.php:42
364
  msgid "N/A"
365
  msgstr "N/D"
366
 
367
- #: ../templates/print-order/print-content.php:39
368
  msgid "Shipping Address"
369
  msgstr "Indirizzo di Spedizione"
370
 
371
- #: ../templates/print-order/print-content.php:74
372
  msgid "Product"
373
  msgstr "Prodotto"
374
 
375
- #: ../templates/print-order/print-content.php:75
 
 
 
 
376
  msgid "Quantity"
377
  msgstr "Quantità"
378
 
379
- #: ../templates/print-order/print-content.php:76
380
  msgid "Total"
381
  msgstr "Totale"
382
 
383
- #: ../templates/print-order/print-content.php:100
384
  msgid "Download:"
385
  msgstr "Scarica:"
386
 
387
  # @ woocommerce-delivery-notes
388
- #: ../templates/print-order/print-content.php:101
389
- #, php-format
390
  msgid "%s Files"
391
  msgstr "%s File"
392
 
393
- #: ../templates/print-order/print-content.php:148
394
  msgid "Customer Note"
395
  msgstr "Note del cliente"
396
 
397
- #: ../woocommerce-delivery-notes.php:144
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
398
  msgid "Go to the settings page"
399
  msgstr "Vai alla pagina impostazioni"
400
 
401
- #: ../woocommerce-delivery-notes.php:144
402
  msgid "Settings"
403
  msgstr "Impostazioni"
404
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
405
  #~ msgid ""
406
  #~ "For more advanced control copy <code>woocommerce-delivery-notes/templates/"
407
  #~ "print/style.css</code> to <code>your-theme-name/woocommerce/print/style."
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/woocommerce-"
7
+ "delivery-notes\n"
8
+ "POT-Creation-Date: 2018-10-22 19:00+0530\n"
9
+ "PO-Revision-Date: 2018-10-22 19:00+0530\n"
10
  "Last-Translator: Massimiliano Losego <losegomax@gmail.com>\n"
11
  "Language-Team: Massimiliano Losego <losegomax@gmail.com>\n"
12
  "Language: it_IT\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
+ "X-Generator: Poedit 1.8.7.1\n"
18
 
19
+ #: includes/class-wcdn-print.php:39 includes/class-wcdn-settings.php:237
20
+ msgid "Invoice"
21
+ msgstr "Fattura"
22
+
23
+ #: includes/class-wcdn-print.php:40
24
+ msgid "Invoices"
25
+ msgstr ""
26
+
27
+ #: includes/class-wcdn-print.php:41
28
+ msgid "Print Invoice"
29
+ msgstr "Stampa fattura"
30
+
31
+ #: includes/class-wcdn-print.php:42
32
+ msgid "Print Invoices"
33
+ msgstr ""
34
+
35
+ #: includes/class-wcdn-print.php:43
36
+ #, fuzzy
37
+ msgid "Invoice created."
38
+ msgstr "Fattura creata."
39
+
40
+ #: includes/class-wcdn-print.php:44
41
+ msgid "Invoices created."
42
+ msgstr ""
43
+
44
+ #: includes/class-wcdn-print.php:45
45
+ msgid "Show \"Print Invoice\" button"
46
+ msgstr ""
47
+
48
+ #: includes/class-wcdn-print.php:51
49
+ msgid "Delivery Note"
50
+ msgstr "Nota di consegna"
51
+
52
+ #: includes/class-wcdn-print.php:52
53
+ msgid "Delivery Notes"
54
+ msgstr ""
55
+
56
+ #: includes/class-wcdn-print.php:53
57
+ msgid "Print Delivery Note"
58
+ msgstr "Stampa nota di consegna"
59
+
60
+ #: includes/class-wcdn-print.php:54
61
+ msgid "Print Delivery Notes"
62
+ msgstr ""
63
+
64
+ #: includes/class-wcdn-print.php:55
65
+ msgid "Delivery Note created."
66
+ msgstr ""
67
+
68
+ #: includes/class-wcdn-print.php:56
69
+ msgid "Delivery Notes created."
70
+ msgstr ""
71
+
72
+ #: includes/class-wcdn-print.php:57
73
+ msgid "Show \"Print Delivery Note\" button"
74
+ msgstr ""
75
+
76
+ #: includes/class-wcdn-print.php:63
77
+ msgid "Receipt"
78
+ msgstr ""
79
+
80
+ #: includes/class-wcdn-print.php:64
81
+ msgid "Receipts"
82
+ msgstr ""
83
+
84
+ #: includes/class-wcdn-print.php:65
85
+ msgid "Print Receipt"
86
+ msgstr ""
87
 
88
+ #: includes/class-wcdn-print.php:66
89
+ msgid "Print Receipts"
90
+ msgstr ""
91
+
92
+ #: includes/class-wcdn-print.php:67
93
+ msgid "Receipt created."
94
+ msgstr ""
95
+
96
+ #: includes/class-wcdn-print.php:68
97
+ msgid "Receipts created."
98
+ msgstr ""
99
+
100
+ #: includes/class-wcdn-print.php:69
101
+ msgid "Show \"Print Receipt\" button"
102
+ msgstr ""
103
+
104
+ #: includes/class-wcdn-print.php:78
105
+ msgid "Order"
106
+ msgstr "Ordine"
107
+
108
+ #: includes/class-wcdn-print.php:79
109
+ msgid "Orders"
110
+ msgstr ""
111
+
112
+ #: includes/class-wcdn-print.php:80
113
  msgid "Print Order"
114
  msgstr "Stampa Ordine"
115
 
116
+ #: includes/class-wcdn-print.php:81
117
+ msgid "Print Orders"
 
 
 
 
118
  msgstr ""
 
 
 
119
 
120
+ #: includes/class-wcdn-print.php:93
121
+ msgid "Default"
122
+ msgstr ""
123
+
124
+ #: includes/class-wcdn-settings.php:67
125
  msgid ""
126
+ "Do you really want to reset the counter to zero? This process can't be "
127
+ "undone."
128
+ msgstr ""
129
+
130
+ #: includes/class-wcdn-settings.php:75 includes/class-wcdn-theme.php:57
131
+ #: includes/class-wcdn-theme.php:94 includes/wcdn-template-functions.php:130
132
+ msgid "Print"
133
+ msgstr "Stampa"
134
+
135
+ #: includes/class-wcdn-settings.php:106
136
+ msgid "Template"
137
+ msgstr ""
138
+
139
+ #: includes/class-wcdn-settings.php:113
140
+ msgid "Style"
141
+ msgstr ""
142
+
143
+ #: includes/class-wcdn-settings.php:114
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
144
  msgid ""
145
+ "The default print style. Read the <a href=\"%1$s\">FAQ</a> to learn how to "
146
+ "customize it."
147
+ msgstr ""
148
+
149
+ #: includes/class-wcdn-settings.php:124
150
+ msgid "Shop Logo"
151
+ msgstr ""
152
+
153
+ #: includes/class-wcdn-settings.php:130
 
 
 
 
 
 
 
 
 
 
 
 
154
  msgid ""
155
+ "A shop logo representing your business. When the image is printed, its pixel "
156
+ "density will automatically be eight times higher than the original. This "
157
+ "means, 1 printed inch will correspond to about 288 pixels on the screen."
158
  msgstr ""
 
 
159
 
160
+ #: includes/class-wcdn-settings.php:134
161
+ msgid "Shop Name"
162
+ msgstr ""
163
 
164
+ #: includes/class-wcdn-settings.php:140
165
  msgid ""
166
+ "The shop name. Leave blank to use the default Website or Blog title defined "
167
+ "in WordPress settings. The name will be ignored when a Logo is set."
168
  msgstr ""
 
 
169
 
170
+ #: includes/class-wcdn-settings.php:144
171
+ msgid "Shop Address"
172
+ msgstr ""
173
 
174
+ #: includes/class-wcdn-settings.php:145
175
+ msgid "The postal address of the shop or even e-mail or telephone."
176
+ msgstr ""
177
+
178
+ #: includes/class-wcdn-settings.php:154
179
  msgid "Complimentary Close"
180
  msgstr "Chiusura Omaggio"
181
 
182
+ #: includes/class-wcdn-settings.php:155
183
+ msgid "Add a personal close, notes or season greetings."
 
 
184
  msgstr ""
 
 
185
 
186
+ #: includes/class-wcdn-settings.php:164
187
+ msgid "Policies"
188
+ msgstr ""
189
 
190
+ #: includes/class-wcdn-settings.php:165
191
+ msgid "Add the shop policies, conditions, etc."
192
+ msgstr ""
193
 
194
+ #: includes/class-wcdn-settings.php:174
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
195
  msgid "Footer"
196
  msgstr "Testo piè di pagina"
197
 
198
+ #: includes/class-wcdn-settings.php:175
199
  msgid ""
200
+ "Add a footer imprint, instructions, copyright notes, e-mail, telephone, etc."
 
201
  msgstr ""
 
 
 
 
 
 
202
 
203
+ #: includes/class-wcdn-settings.php:189
204
+ msgid "Pages & Buttons"
205
+ msgstr ""
206
 
207
  # @ woocommerce-delivery-notes
208
+ #: includes/class-wcdn-settings.php:196
209
  msgid "Print Page Endpoint"
210
  msgstr "Stampa destinazione Pagina"
211
 
212
  # @ woocommerce-delivery-notes
213
+ #: includes/class-wcdn-settings.php:202
214
  msgid ""
215
  "The endpoint is appended to the accounts page URL to print the order. It "
216
  "should be unique."
218
  "La destinazione è relativa alla pagina URL dell'account per stampae "
219
  "l'ordine. Dovrebbe essere univoca."
220
 
221
+ # @ woocommerce-delivery-notes
222
+ #: includes/class-wcdn-settings.php:206
223
+ #: includes/wcdn-template-functions.php:275
224
+ msgid "Email"
225
+ msgstr "Email"
226
+
227
+ #: includes/class-wcdn-settings.php:207
228
+ msgid "Show print link in customer emails"
229
+ msgstr ""
230
+
231
+ #: includes/class-wcdn-settings.php:211
232
+ msgid ""
233
+ "This includes the emails for a new, processing and completed order. On top "
234
+ "of that the customer invoice email also includes the link."
235
+ msgstr ""
236
+
237
+ #: includes/class-wcdn-settings.php:215
238
+ msgid "My Account"
239
+ msgstr ""
240
 
241
  # @ woocommerce-delivery-notes
242
+ #: includes/class-wcdn-settings.php:216
243
  msgid "Show print button on the \"View Order\" page"
244
  msgstr "Mostra il bottone di stampa nella pagina \"Visualizza Ordini\""
245
 
246
  # @ woocommerce-delivery-notes
247
+ #: includes/class-wcdn-settings.php:224
248
  msgid "Show print buttons on the \"My Account\" page"
249
  msgstr "Mostra il bottone di stampa nella pagina \"Mio Account\""
250
 
251
+ #: includes/class-wcdn-settings.php:244
252
+ msgid "Numbering"
253
+ msgstr ""
 
 
 
 
 
254
 
255
+ #: includes/class-wcdn-settings.php:245
256
  msgid "Create invoice numbers"
257
  msgstr "Crea Numeri Fattura"
258
 
259
+ #: includes/class-wcdn-settings.php:253
260
+ msgid "Next Number"
261
+ msgstr ""
 
 
 
 
 
 
 
 
262
 
263
+ #: includes/class-wcdn-settings.php:260
264
+ msgid "The next invoice number."
265
+ msgstr ""
 
 
266
 
267
+ #: includes/class-wcdn-settings.php:264
268
+ msgid "Number Prefix"
269
+ msgstr ""
270
 
271
+ #: includes/class-wcdn-settings.php:271
272
  msgid "This text will be prepended to the invoice number."
273
  msgstr "Questo testo sarà aggiunto prima del numero fattura."
274
 
275
+ #: includes/class-wcdn-settings.php:275
276
+ msgid "Number Suffix"
277
+ msgstr ""
 
 
 
 
278
 
279
+ #: includes/class-wcdn-settings.php:282
280
  msgid "This text will be appended to the invoice number."
281
  msgstr "Questo testo sarà aggiunto dopo il numero fattura."
282
 
283
+ #: includes/class-wcdn-settings.php:327
284
+ msgid "Admin"
285
+ msgstr ""
 
 
 
 
286
 
287
+ #: includes/class-wcdn-settings.php:330
288
+ msgid ""
289
+ "The print buttons are available on the order listing and on the order detail "
290
+ "screen."
291
+ msgstr ""
292
 
293
+ #: includes/class-wcdn-settings.php:372
 
294
  msgid ""
295
+ "This section lets you customise the content. You can preview the <a href="
296
+ "\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target="
297
+ "\"%4$s\" class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s"
298
+ "\" class=\"%5$s\">receipt</a> template."
299
  msgstr ""
 
 
300
 
301
+ #: includes/class-wcdn-settings.php:435
302
+ msgid "Select"
303
+ msgstr ""
 
 
 
 
304
 
305
+ #: includes/class-wcdn-settings.php:439
306
+ msgid "Remove"
307
+ msgstr ""
 
 
 
 
308
 
309
+ #: includes/class-wcdn-theme.php:112
310
+ msgid "Print your order"
311
+ msgstr ""
312
+
313
+ #: includes/class-wcdn-theme.php:119
314
+ msgid "Print:"
315
+ msgstr ""
316
+
317
+ #: includes/class-wcdn-theme.php:119
318
+ msgid "Open print view in browser"
319
+ msgstr ""
320
+
321
+ #: includes/class-wcdn-writepanel.php:218
 
 
322
  msgid "Print now"
323
  msgstr "Stampa ora"
324
 
325
+ #: includes/class-wcdn-writepanel.php:232
326
  msgid "Order Printing"
327
  msgstr "Stampa Ordine"
328
 
329
+ #: includes/class-wcdn-writepanel.php:259
330
  msgid "Invoice number: "
331
  msgstr "Numero Fattura"
332
 
333
+ #: includes/class-wcdn-writepanel.php:260
334
+ msgid "Invoice date: "
335
+ msgstr ""
336
 
337
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:75
338
+ msgid "If you have a moment, please let us know why you are deactivating"
339
+ msgstr ""
340
 
341
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:76
342
+ msgid "Submit & Deactivate"
343
+ msgstr ""
344
+
345
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:77
346
+ msgid "Deactivate"
347
+ msgstr ""
348
+
349
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:78
350
+ msgid "Cancel"
351
+ msgstr ""
352
+
353
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:79
354
+ msgid "Yes - Deactivate"
355
+ msgstr ""
356
+
357
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:83
358
+ msgid "I found a better plugin"
359
+ msgstr ""
360
+
361
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:84
362
+ msgid "What's the plugin's name?"
363
+ msgstr ""
364
+
365
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:85
366
+ msgid "I only needed the plugin for a short period"
367
+ msgstr ""
368
+
369
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:86
370
+ msgid "The plugin is not working"
371
+ msgstr ""
372
+
373
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:87
374
+ msgid "Kindly share what didn't work so we can fix it for future users..."
375
+ msgstr ""
376
+
377
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:88
378
+ msgid "The plugin is great, but I need specific feature that you don't support"
379
+ msgstr ""
380
+
381
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:89
382
+ msgid "What feature?"
383
+ msgstr ""
384
+
385
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:90
386
+ msgid "I don't like to share my information with you"
387
+ msgstr ""
388
+
389
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:91
390
+ msgctxt ""
391
+ "the text of the 'other' reason for deactivating the plugin that is shown in "
392
+ "the modal box."
393
+ msgid "Other"
394
+ msgstr ""
395
+
396
+ #: includes/component/faq-support/ts-faq-support.php:127
397
+ msgid "Frequently Asked Questions for %s"
398
+ msgstr ""
399
+
400
+ #: includes/component/faq-support/ts-faq-support.php:176
401
+ msgid "FAQ & Support"
402
+ msgstr ""
403
+
404
+ #: includes/component/tracking-data/ts-tracking.php:120
405
+ #: includes/component/tracking-data/ts-tracking.php:180
406
+ msgid "Reset usage tracking"
407
+ msgstr ""
408
 
409
+ #: includes/component/tracking-data/ts-tracking.php:122
410
+ msgid ""
411
+ "This will reset your usage tracking settings, causing it to show the opt-in "
412
+ "banner again and not sending any data"
413
+ msgstr ""
414
+
415
+ #: includes/component/tracking-data/ts-tracking.php:225
416
+ msgid "Once in a Week"
417
+ msgstr ""
418
+
419
+ #: includes/component/tracking-data/ts-tracking.php:311
420
+ msgid "Allow"
421
+ msgstr ""
422
+
423
+ #: includes/component/tracking-data/ts-tracking.php:312
424
+ msgid "No thanks"
425
+ msgstr ""
426
+
427
+ #: includes/component/welcome-page/templates/social-media-elements.php:10
428
+ #: includes/wcdn-welcome.php:231
429
+ msgid "Follow %s"
430
+ msgstr ""
431
+
432
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:19
433
+ #: includes/wcdn-welcome.php:99
434
+ msgid ""
435
+ "Thank you for activating or updating to the latest version of WooCommerce "
436
+ "Print Invoice & Delivery Note! If you're a first time user, welcome! You're "
437
+ "well on your way to explore the print functionality for your WooCommerce "
438
+ "orders."
439
+ msgstr ""
440
+
441
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:29
442
+ #: includes/wcdn-welcome.php:109
443
+ msgid "Get Started with WooCommerce Print Invoice & Delivery Note"
444
+ msgstr ""
445
+
446
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:33
447
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:62
448
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:68
449
+ #: includes/wcdn-welcome.php:113 includes/wcdn-welcome.php:142
450
+ #: includes/wcdn-welcome.php:148
451
+ msgid "WooCommerce Print Invoice & Delivery Note"
452
+ msgstr ""
453
+
454
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:37
455
+ #: includes/wcdn-welcome.php:117
456
+ msgid "Add settings"
457
+ msgstr ""
458
+
459
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:39
460
+ #: includes/wcdn-welcome.php:119
461
+ msgid ""
462
+ "To enable the print functionality for your invoices, delivery notes & "
463
+ "receipts, you just need to set it up under WooCommerce -> Settings -> Print "
464
+ "page. Here you can also setup the Company Logo that will appear on the "
465
+ "printed items, Company Address & other information."
466
+ msgstr ""
467
+
468
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:41
469
+ #: includes/wcdn-welcome.php:121
470
+ msgid "Click Here to go to Print page"
471
+ msgstr ""
472
+
473
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:52
474
+ #: includes/wcdn-welcome.php:132
475
+ msgid "Enable Print button for Customers."
476
+ msgstr ""
477
+
478
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:54
479
+ #: includes/wcdn-welcome.php:134
480
+ msgid ""
481
+ "Allow customers to print the WooCommerce order invoice from the customer "
482
+ "notification email, from the My Account page or from the View Order page "
483
+ "under My Account."
484
+ msgstr ""
485
+
486
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:56
487
+ #: includes/wcdn-welcome.php:136
488
+ msgid "Click Here to Enable Print button for Customers"
489
+ msgstr ""
490
+
491
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:72
492
+ #: includes/wcdn-welcome.php:152
493
+ msgid "Enable Invoice Numbering"
494
+ msgstr ""
495
+
496
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:74
497
+ msgid ""
498
+ "If you want to change the default invoice numbers & set some numbering "
499
+ "scheme of your own, then you can set it here with a starting invoice number, "
500
+ "a prefix & suffix. For example, you could set it as: TS/001/17-18."
501
+ msgstr ""
502
+
503
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:76
504
+ #: includes/wcdn-welcome.php:156
505
+ msgid "Click Here to Enable Invoice Numbering"
506
+ msgstr ""
507
+
508
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:87
509
+ #: includes/wcdn-welcome.php:167
510
+ msgid "Getting to Know Tyche Softwares"
511
+ msgstr ""
512
+
513
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:90
514
+ #: includes/wcdn-welcome.php:170
515
+ msgid "Visit the Tyche Softwares Website"
516
+ msgstr ""
517
+
518
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:91
519
+ #: includes/wcdn-welcome.php:171
520
+ msgid "View all Premium Plugins"
521
+ msgstr ""
522
+
523
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:100
524
+ #: includes/wcdn-welcome.php:180
525
+ msgid "Meet the team"
526
+ msgstr ""
527
+
528
+ #: includes/component/welcome-page/ts-welcome.php:167
529
+ msgid "Welcome to %s %s"
530
+ msgstr ""
531
+
532
+ #: includes/wcdn-all-component.php:118
533
+ msgid ""
534
+ "Thank you for using WooCommerce Print Invoice & Delivery Note plugin! Now "
535
+ "make your deliveries more accurate by allowing customers to select their "
536
+ "preferred delivery date & time from Product Delivery Date Pro for "
537
+ "WooCommerce. <strong><a target=\"_blank\" href= \"https://www.tychesoftwares."
538
+ "com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/?"
539
+ "utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">Get "
540
+ "it now!</a></strong>"
541
+ msgstr ""
542
+
543
+ #: includes/wcdn-all-component.php:120
544
+ msgid ""
545
+ "Never login to your admin to check your deliveries by syncing the delivery "
546
+ "dates to the Google Calendar from Product Delivery Date Pro for WooCommerce. "
547
+ "<strong><a target=\"_blank\" href= \"https://www.tychesoftwares.com/store/"
548
+ "premium-plugins/product-delivery-date-pro-for-woocommerce/checkout?"
549
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
550
+ "\">Get it now!</a></strong>"
551
+ msgstr ""
552
+
553
+ #: includes/wcdn-all-component.php:122
554
+ msgid ""
555
+ "You can now view all your deliveries in list view or in calendar view from "
556
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
557
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
558
+ "delivery-date-pro-for-woocommerce/checkout?"
559
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
560
+ "\">Get it now!</a></strong>."
561
+ msgstr ""
562
+
563
+ #: includes/wcdn-all-component.php:124
564
+ msgid ""
565
+ "Allow your customers to pay extra for delivery for certain Weekdays/Dates "
566
+ "from Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
567
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
568
+ "delivery-date-pro-for-woocommerce/checkout?"
569
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
570
+ "\">Have it now!</a></strong>."
571
+ msgstr ""
572
+
573
+ #: includes/wcdn-all-component.php:126
574
+ msgid ""
575
+ "Customers can now edit the Delivery date & time on cart and checkout page or "
576
+ "they can reschedule the deliveries for the already placed orders from "
577
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
578
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
579
+ "delivery-date-pro-for-woocommerce/checkout?"
580
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
581
+ "\">Have it now!</a></strong>."
582
+ msgstr ""
583
+
584
+ #: includes/wcdn-template-functions.php:246
585
+ msgid "Invoice Number"
586
+ msgstr "Numero Fattura"
587
+
588
+ #: includes/wcdn-template-functions.php:253
589
+ msgid "Invoice Date"
590
+ msgstr ""
591
+
592
+ #: includes/wcdn-template-functions.php:259
593
  msgid "Order Number"
594
  msgstr "Numero dell'ordine"
595
 
596
+ #: includes/wcdn-template-functions.php:264
597
  msgid "Order Date"
598
  msgstr "Data dell'ordine"
599
 
600
+ #: includes/wcdn-template-functions.php:269
601
  msgid "Payment Method"
602
  msgstr "Metodo di pagamento"
603
 
604
  # @ woocommerce-delivery-notes
605
+ #: includes/wcdn-template-functions.php:282
 
 
 
 
 
606
  msgid "Telephone"
607
  msgstr "Telefono"
608
 
609
+ #: includes/wcdn-template-functions.php:315
610
  msgid "SKU:"
611
  msgstr "COD:"
612
 
613
+ #: includes/wcdn-template-functions.php:409
614
+ #: includes/wcdn-template-functions.php:413
615
+ msgid "(Includes %s)"
616
+ msgstr ""
617
+
618
+ #: includes/wcdn-template-functions.php:429
619
+ msgid "Refund"
620
+ msgstr ""
621
+
622
+ #: includes/wcdn-template-functions.php:441
623
+ msgid "Order Subtotal"
624
+ msgstr ""
625
+
626
+ #: includes/wcdn-welcome.php:54
627
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note %s"
628
+ msgstr ""
629
+
630
+ #: includes/wcdn-welcome.php:55
631
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note"
632
+ msgstr ""
633
+
634
+ #: includes/wcdn-welcome.php:154
635
+ msgid ""
636
+ "f you want to change the default invoice numbers & set some numbering scheme "
637
+ "of your own, then you can set it here with a starting invoice number, a "
638
+ "prefix & suffix. For example, you could set it as: TS/001/17-18."
639
+ msgstr ""
640
+
641
+ #: includes/wcdn-welcome.php:186
642
+ msgid "Current Offers"
643
+ msgstr ""
644
+
645
+ #: templates/print-order/print-content.php:28
646
  msgid "Billing Address"
647
  msgstr "Indirizzo di Fatturazione"
648
 
649
+ #: templates/print-order/print-content.php:31
650
+ #: templates/print-order/print-content.php:40
651
  msgid "N/A"
652
  msgstr "N/D"
653
 
654
+ #: templates/print-order/print-content.php:37
655
  msgid "Shipping Address"
656
  msgstr "Indirizzo di Spedizione"
657
 
658
+ #: templates/print-order/print-content.php:71
659
  msgid "Product"
660
  msgstr "Prodotto"
661
 
662
+ #: templates/print-order/print-content.php:72
663
+ msgid "Price"
664
+ msgstr ""
665
+
666
+ #: templates/print-order/print-content.php:73
667
  msgid "Quantity"
668
  msgstr "Quantità"
669
 
670
+ #: templates/print-order/print-content.php:74
671
  msgid "Total"
672
  msgstr "Totale"
673
 
674
+ #: templates/print-order/print-content.php:147
675
  msgid "Download:"
676
  msgstr "Scarica:"
677
 
678
  # @ woocommerce-delivery-notes
679
+ #: templates/print-order/print-content.php:148
 
680
  msgid "%s Files"
681
  msgstr "%s File"
682
 
683
+ #: templates/print-order/print-content.php:202
684
  msgid "Customer Note"
685
  msgstr "Note del cliente"
686
 
687
+ #: woocommerce-delivery-notes.php:96 woocommerce-delivery-notes.php:103
688
+ msgid "Cheatin&#8217; huh?"
689
+ msgstr ""
690
+
691
+ #: woocommerce-delivery-notes.php:275
692
+ msgid ""
693
+ "I can't differentiate between Invoice, Delivery Notes & Receipt. The "
694
+ "templates are the same. "
695
+ msgstr ""
696
+
697
+ #: woocommerce-delivery-notes.php:281
698
+ msgid "The invoice sent through mail can't be downloaded as PDF directly."
699
+ msgstr ""
700
+
701
+ #: woocommerce-delivery-notes.php:287
702
+ msgid "The plugin is not compatible with another plugin."
703
+ msgstr ""
704
+
705
+ #: woocommerce-delivery-notes.php:293
706
+ msgid "This plugin is not useful to me."
707
+ msgstr ""
708
+
709
+ #: woocommerce-delivery-notes.php:351
710
  msgid "Go to the settings page"
711
  msgstr "Vai alla pagina impostazioni"
712
 
713
+ #: woocommerce-delivery-notes.php:351
714
  msgid "Settings"
715
  msgstr "Impostazioni"
716
 
717
+ #~ msgid ""
718
+ #~ "You can preview the <a href=\"%1$s\" target=\"%3$s\" class=\"%4$s"
719
+ #~ "\">invoice template</a> or <a href=\"%2$s\" target=\"%3$s\" class=\"%4$s"
720
+ #~ "\">delivery note template</a>."
721
+ #~ msgstr ""
722
+ #~ "Puoi <a href=\"%1$s\" target=\"%3$s\" class=\"%4$s\">visualizzare "
723
+ #~ "l'anteprima del template della fattura</a> oppure <a href=\"%2$s\" target="
724
+ #~ "\"%3$s\" class=\"%4$s\">il template della nota di spedizione</a>."
725
+
726
+ # @ woocommerce-delivery-notes
727
+ #~ msgid ""
728
+ #~ "With the FAQ in the readme file you can learn how to customize the "
729
+ #~ "template."
730
+ #~ msgstr ""
731
+ #~ "Con le FAQ nel file readme potrai capire come personalizzare il template."
732
+
733
+ #~ msgid "Company/Shop Logo"
734
+ #~ msgstr "Logo Azienda/Negozio"
735
+
736
+ #~ msgid "Remove Logo"
737
+ #~ msgstr "Rimuovi Logo"
738
+
739
+ #~ msgid "Set Logo"
740
+ #~ msgstr "Imposta Logo"
741
+
742
+ #~ msgid "A company/shop logo representing your business."
743
+ #~ msgstr "Un logo della tua azienda/negozio che rappresenti la tua attività."
744
+
745
+ #~ msgid "Note:"
746
+ #~ msgstr "Note:"
747
+
748
+ #~ msgid ""
749
+ #~ "When the image is printed, its pixel density will automatically be eight "
750
+ #~ "times higher than the original. This means, 1 printed inch will "
751
+ #~ "correspond to about 288 pixels on the screen. Example: an image with a "
752
+ #~ "width of 576 pixels and a height of 288 pixels will have a printed size "
753
+ #~ "of about 2 inches to 1 inch."
754
+ #~ msgstr ""
755
+ #~ "Quando un'immagine viene stampata, la sua densità di pixel sarà "
756
+ #~ "automaticamente otto volte l'originale. Questo significa che un pollice "
757
+ #~ "corrisponderà a circa 288 pixel sullo schermo.\n"
758
+ #~ "Esempio: un'immagine larga 576 pixel ed alta 288 in stampa sarà grande "
759
+ #~ "larga 2 pollici ed alta 1 pollice"
760
+
761
+ #~ msgid "Company/Shop Name"
762
+ #~ msgstr "Nome Azienda/Negozio"
763
+
764
+ #~ msgid "Your company/shop name for the Delivery Note."
765
+ #~ msgstr "Il nome della tua azienda/negozio per la Nota di Consegna."
766
+
767
+ #~ msgid ""
768
+ #~ "Leave blank to use the default Website/Blog title defined in WordPress "
769
+ #~ "settings. The name will be ignored when a Logo is set."
770
+ #~ msgstr ""
771
+ #~ "Lasciare vuoto per usare il titolo del sito/blog predefinito nelle "
772
+ #~ "impostazioni di WordPress. Il nome sarà ingorato quando è presente un "
773
+ #~ "Logo."
774
+
775
+ #~ msgid "Company/Shop Address"
776
+ #~ msgstr "Indirizzo Azienda/Negozio"
777
+
778
+ #~ msgid ""
779
+ #~ "The postal address of the company/shop or even e-mail or telephone, which "
780
+ #~ "gets printed right after the company/shop name."
781
+ #~ msgstr ""
782
+ #~ "L'indirizzo postale della ditta/negozio o l'indirizzo e-mail o il numero "
783
+ #~ "di telefono, saranno stampati sotto il nome della ditta/negozio."
784
+
785
+ #~ msgid "Leave blank to not print an address."
786
+ #~ msgstr "Lasciare in bianco per evitare di stampare un indirizzo"
787
+
788
+ #~ msgid ""
789
+ #~ "Add some personal notes, or season greetings or whatever (e.g. Thank You "
790
+ #~ "for Your Order!, Merry Christmas!, etc.)."
791
+ #~ msgstr ""
792
+ #~ "Aggiungi qualche nota personale o auguri o altro (es.: \"Grazie per "
793
+ #~ "l'ordine\" , \"Buon Natale\" ecc.)"
794
+
795
+ #~ msgid "Leave blank to not print any personal notes."
796
+ #~ msgstr "Lasciare in bianco per non stampare nessuna nota personale"
797
+
798
+ #~ msgid "Returns Policy, Conditions, etc"
799
+ #~ msgstr "Politica Resi, Condizioni, etc"
800
+
801
+ #~ msgid ""
802
+ #~ "Here you can add some more policies, conditions etc. For example add a "
803
+ #~ "returns policy in case the client would like to send back some goods. In "
804
+ #~ "some countries (e.g. in the European Union) this is required so please "
805
+ #~ "add any required info in accordance with the statutory regulations."
806
+ #~ msgstr ""
807
+ #~ "Qui si possono aggiungere altre indicazioni, condizioni ecc.\n"
808
+ #~ "Ad esempio condizioni per il reso nel caso il cliente voglia usufruire "
809
+ #~ "del diritto di recesso.\n"
810
+ #~ "In alcuni paesi (ad esempio nell'Unione Europea) questo è obbligatorio, "
811
+ #~ "si prega di aggiungere le informazioni richieste in ottemperanza alle "
812
+ #~ "leggi vigenti."
813
+
814
+ #~ msgid "Leave blank to not print any policies or conditions."
815
+ #~ msgstr "Lasciare in bianco per non stampare alcuna regola o condizione"
816
+
817
+ #~ msgid ""
818
+ #~ "Add some further footer imprint, e-mail, telephone, copyright notes etc. "
819
+ #~ "This makes the printed sheets a bit more branded."
820
+ #~ msgstr ""
821
+ #~ "Aggiungi qualche informazione a piè di pagina come email, telefono, "
822
+ #~ "copyright ecc. questo renderà più professionali le stampe."
823
+
824
+ #~ msgid "Leave blank to not print a footer."
825
+ #~ msgstr "Lasciare in bianco per non stampare un piè di pagina"
826
+
827
+ #~ msgid "Front-end Options"
828
+ #~ msgstr "Opzioni del Front-end"
829
+
830
+ #~ msgid "Print Buttons"
831
+ #~ msgstr "Pulsanti si Stampa"
832
+
833
+ #~ msgid "Order Numbering"
834
+ #~ msgstr "Numerazione Ordine"
835
+
836
+ #~ msgid "Invoice Number Start"
837
+ #~ msgstr "Numero iniziale fattura"
838
+
839
+ #~ msgid "Start the numbering at the specified number."
840
+ #~ msgstr "Inizial la numerazione da un numero specifico."
841
+
842
+ #~ msgid "Use only integers."
843
+ #~ msgstr "Usa solo numeri interi."
844
+
845
+ #~ msgid "Already created invoice numbers are not affected by changes."
846
+ #~ msgstr "I numeri di fattura già creati non saranno modificati."
847
+
848
+ #~ msgid "Invoice Number Prefix"
849
+ #~ msgstr "Prefisso Numero Fattura"
850
+
851
+ #~ msgid "Leave blank to not add a prefix."
852
+ #~ msgstr "Lascia in bianco per non aggiungere un prefisso."
853
+
854
+ #~ msgid "Invoice Number Suffix"
855
+ #~ msgstr "Suffisso Numero Fattura"
856
+
857
+ #~ msgid "Leave blank to not add a suffix."
858
+ #~ msgstr "Lascia in bianco per non aggiungere un suffisso."
859
+
860
+ #~ msgid "Sequential Order Number"
861
+ #~ msgstr "Numero d'ordine Sequenziale"
862
+
863
+ #~ msgid "Sequential numbering is enabled."
864
+ #~ msgstr "Numerazione sequenziale abilitata"
865
+
866
+ #~ msgid ""
867
+ #~ "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
868
+ #~ "Numbers</a> Plugin."
869
+ #~ msgstr ""
870
+ #~ "Installa e attiva il Plugin gratuito <a href=\"%s\">WooCommerce "
871
+ #~ "Sequential Order Numbers</a>."
872
+
873
+ #~ msgid "Delivery note created."
874
+ #~ msgid_plural "%s delivery notes created."
875
+ #~ msgstr[0] "Creata Nota di consegna."
876
+ #~ msgstr[1] "Create %s Note di consegna."
877
+
878
  #~ msgid ""
879
  #~ "For more advanced control copy <code>woocommerce-delivery-notes/templates/"
880
  #~ "print/style.css</code> to <code>your-theme-name/woocommerce/print/style."
languages/woocommerce-delivery-notes-ja.mo CHANGED
Binary file
languages/woocommerce-delivery-notes-ja.po CHANGED
@@ -8,544 +8,740 @@
8
  msgid ""
9
  msgstr ""
10
  "Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
11
- "Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
12
- "POT-Creation-Date: 2017-05-10 16:13+0900\n"
13
- "PO-Revision-Date: 2017-05-10 17:07+0900\n"
 
 
14
  "Language-Team: \n"
 
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
18
  "Plural-Forms: nplurals=1; plural=0;\n"
19
- "X-Generator: Poedit 1.8.11\n"
20
  "X-Poedit-SourceCharset: UTF-8\n"
21
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
22
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
23
  "esc_attr_e;esc_attr__\n"
24
  "X-Poedit-Basepath: .\n"
25
  "X-Textdomain-Support: yes\n"
26
- "Last-Translator: \n"
27
- "Language: ja\n"
28
  "X-Poedit-SearchPath-0: ..\n"
29
 
30
  # @ woocommerce-delivery-notes
31
- #: ../includes/class-wcdn-print.php:41
32
  msgid "Invoice"
33
  msgstr "請求書"
34
 
35
- #: ../includes/class-wcdn-print.php:42
36
  msgid "Invoices"
37
  msgstr "請求書"
38
 
39
  # @ woocommerce-delivery-notes
40
- #: ../includes/class-wcdn-print.php:43
41
  msgid "Print Invoice"
42
  msgstr "請求書印刷"
43
 
44
- #: ../includes/class-wcdn-print.php:44
45
  msgid "Print Invoices"
46
  msgstr "請求書印刷"
47
 
48
  # @ woocommerce-delivery-notes
49
- #: ../includes/class-wcdn-print.php:45
50
  msgid "Invoice created."
51
  msgstr ""
52
 
53
- #: ../includes/class-wcdn-print.php:46
54
  msgid "Invoices created."
55
  msgstr ""
56
 
57
- #: ../includes/class-wcdn-print.php:47
58
- msgid "Enable Invoices"
59
  msgstr ""
60
 
61
  # @ woocommerce-delivery-notes
62
- #: ../includes/class-wcdn-print.php:53
63
  msgid "Delivery Note"
64
  msgstr "納品書"
65
 
66
- #: ../includes/class-wcdn-print.php:54
67
  msgid "Delivery Notes"
68
  msgstr "納品書"
69
 
70
  # @ woocommerce-delivery-notes
71
- #: ../includes/class-wcdn-print.php:55
72
  msgid "Print Delivery Note"
73
  msgstr "納品書印刷"
74
 
75
- #: ../includes/class-wcdn-print.php:56
76
  msgid "Print Delivery Notes"
77
  msgstr "納品書印刷"
78
 
79
- #: ../includes/class-wcdn-print.php:57
80
  msgid "Delivery Note created."
81
  msgstr ""
82
 
83
- #: ../includes/class-wcdn-print.php:58
84
  msgid "Delivery Notes created."
85
  msgstr ""
86
 
87
- #: ../includes/class-wcdn-print.php:59
88
- msgid "Enable Delivery Notes"
89
  msgstr ""
90
 
91
- #: ../includes/class-wcdn-print.php:65
92
  msgid "Receipt"
93
  msgstr ""
94
 
95
- #: ../includes/class-wcdn-print.php:66
96
  msgid "Receipts"
97
  msgstr ""
98
 
99
- #: ../includes/class-wcdn-print.php:67
100
  msgid "Print Receipt"
101
  msgstr "領収書印刷"
102
 
103
- #: ../includes/class-wcdn-print.php:68
104
  msgid "Print Receipts"
105
  msgstr "領収書印刷"
106
 
107
- #: ../includes/class-wcdn-print.php:69
108
  msgid "Receipt created."
109
  msgstr ""
110
 
111
- #: ../includes/class-wcdn-print.php:70
112
  msgid "Receipts created."
113
  msgstr ""
114
 
115
- #: ../includes/class-wcdn-print.php:71
116
- msgid "Enable Receipts"
117
  msgstr ""
118
 
119
  # @ woocommerce-delivery-notes
120
- #: ../includes/class-wcdn-print.php:80
121
  msgid "Order"
122
  msgstr "注文"
123
 
124
- #: ../includes/class-wcdn-print.php:81
125
  msgid "Orders"
126
  msgstr "注文"
127
 
128
  # @ woocommerce-delivery-notes
129
- #: ../includes/class-wcdn-print.php:82 ../includes/class-wcdn-settings.php:157
130
  msgid "Print Order"
131
  msgstr ""
132
 
133
- #: ../includes/class-wcdn-print.php:83
134
  msgid "Print Orders"
135
  msgstr ""
136
 
137
- #: ../includes/class-wcdn-settings.php:72
 
 
 
 
138
  msgid ""
139
  "Do you really want to reset the counter to zero? This process can't be "
140
  "undone."
141
  msgstr ""
142
 
143
  # @ woocommerce-delivery-notes
144
- #: ../includes/class-wcdn-settings.php:102 ../includes/class-wcdn-theme.php:56
145
- #: ../includes/class-wcdn-theme.php:91
146
- #: ../includes/wcdn-template-functions.php:127
147
  msgid "Print"
148
  msgstr ""
149
 
150
- #: ../includes/class-wcdn-settings.php:176
151
- #, php-format
 
 
 
 
 
 
 
152
  msgid ""
153
- "You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</"
154
- "a>, <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s\">delivery note</a> or <a "
155
- "href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> template."
156
  msgstr ""
157
 
158
- # @ woocommerce-delivery-notes
159
- #: ../includes/class-wcdn-settings.php:177
 
 
 
160
  msgid ""
161
- "With the FAQ in the readme file you can learn how to customize the template."
 
 
162
  msgstr ""
163
 
164
- # @ woocommerce-delivery-notes
165
- #: ../includes/class-wcdn-settings.php:188
166
- msgid "Company/Shop Logo"
167
  msgstr ""
168
 
169
- # @ woocommerce-delivery-notes
170
- #: ../includes/class-wcdn-settings.php:194
171
- msgid "Remove Logo"
 
172
  msgstr ""
173
 
174
- # @ woocommerce-delivery-notes
175
- #: ../includes/class-wcdn-settings.php:195
176
- msgid "Set Logo"
177
  msgstr ""
178
 
179
- # @ woocommerce-delivery-notes
180
- #: ../includes/class-wcdn-settings.php:199
181
- msgid "A company/shop logo representing your business."
182
  msgstr ""
183
 
184
- # @ woocommerce-delivery-notes
185
- #: ../includes/class-wcdn-settings.php:200
186
- #: ../includes/class-wcdn-settings.php:213
187
- #: ../includes/class-wcdn-settings.php:226
188
- #: ../includes/class-wcdn-settings.php:239
189
- #: ../includes/class-wcdn-settings.php:252
190
- #: ../includes/class-wcdn-settings.php:265
191
- #: ../includes/class-wcdn-settings.php:382
192
- #: ../includes/class-wcdn-settings.php:397
193
- #: ../includes/class-wcdn-settings.php:412
194
- msgid "Note:"
195
  msgstr ""
196
 
197
- # @ woocommerce-delivery-notes
198
- #: ../includes/class-wcdn-settings.php:201
199
- msgid ""
200
- "When the image is printed, its pixel density will automatically be eight "
201
- "times higher than the original. This means, 1 printed inch will correspond "
202
- "to about 288 pixels on the screen. Example: an image with a width of 576 "
203
- "pixels and a height of 288 pixels will have a printed size of about 2 inches "
204
- "to 1 inch."
205
  msgstr ""
206
 
207
- # @ woocommerce-delivery-notes
208
- #: ../includes/class-wcdn-settings.php:207
209
- msgid "Company/Shop Name"
210
  msgstr ""
211
 
212
- # @ woocommerce-delivery-notes
213
- #: ../includes/class-wcdn-settings.php:212
214
- msgid "Your company/shop name for the Delivery Note."
215
  msgstr ""
216
 
217
  # @ woocommerce-delivery-notes
218
- #: ../includes/class-wcdn-settings.php:214
 
 
 
 
219
  msgid ""
220
- "Leave blank to use the default Website/Blog title defined in WordPress "
221
- "settings. The name will be ignored when a Logo is set."
 
 
 
222
  msgstr ""
223
 
224
  # @ woocommerce-delivery-notes
225
- #: ../includes/class-wcdn-settings.php:220
226
- msgid "Company/Shop Address"
227
  msgstr ""
228
 
229
  # @ woocommerce-delivery-notes
230
- #: ../includes/class-wcdn-settings.php:225
231
  msgid ""
232
- "The postal address of the company/shop or even e-mail or telephone, which "
233
- "gets printed right after the company/shop name."
234
  msgstr ""
235
 
236
  # @ woocommerce-delivery-notes
237
- #: ../includes/class-wcdn-settings.php:227
238
- msgid "Leave blank to not print an address."
239
- msgstr ""
 
240
 
241
- #: ../includes/class-wcdn-settings.php:233
242
- msgid "Complimentary Close"
243
  msgstr ""
244
 
245
- # @ woocommerce-delivery-notes
246
- #: ../includes/class-wcdn-settings.php:238
247
  msgid ""
248
- "Add some personal notes, or season greetings or whatever (e.g. Thank You for "
249
- "Your Order!, Merry Christmas!, etc.)."
250
  msgstr ""
251
 
252
- # @ woocommerce-delivery-notes
253
- #: ../includes/class-wcdn-settings.php:240
254
- msgid "Leave blank to not print any personal notes."
255
  msgstr ""
256
 
257
  # @ woocommerce-delivery-notes
258
- #: ../includes/class-wcdn-settings.php:246
259
- msgid "Returns Policy, Conditions, etc"
260
  msgstr ""
261
 
262
  # @ woocommerce-delivery-notes
263
- #: ../includes/class-wcdn-settings.php:251
264
- msgid ""
265
- "Here you can add some more policies, conditions etc. For example add a "
266
- "returns policy in case the client would like to send back some goods. In "
267
- "some countries (e.g. in the European Union) this is required so please add "
268
- "any required info in accordance with the statutory regulations."
269
  msgstr ""
270
 
271
- # @ woocommerce-delivery-notes
272
- #: ../includes/class-wcdn-settings.php:253
273
- msgid "Leave blank to not print any policies or conditions."
274
  msgstr ""
275
 
276
- # @ woocommerce-delivery-notes
277
- #: ../includes/class-wcdn-settings.php:259
278
- msgid "Footer"
279
  msgstr ""
280
 
281
- # @ woocommerce-delivery-notes
282
- #: ../includes/class-wcdn-settings.php:264
283
- msgid ""
284
- "Add some further footer imprint, e-mail, telephone, copyright notes etc. "
285
- "This makes the printed sheets a bit more branded."
286
  msgstr ""
287
 
288
- # @ woocommerce-delivery-notes
289
- #: ../includes/class-wcdn-settings.php:266
290
- msgid "Leave blank to not print a footer."
291
  msgstr ""
292
 
293
- #: ../includes/class-wcdn-settings.php:273
294
- msgid "Print Options"
295
  msgstr ""
296
 
297
- #: ../includes/class-wcdn-settings.php:278
298
- msgid "Types"
299
  msgstr ""
300
 
301
- #: ../includes/class-wcdn-settings.php:297
302
- msgid "Theme Options"
303
  msgstr ""
304
 
305
- # @ woocommerce-delivery-notes
306
- #: ../includes/class-wcdn-settings.php:302
307
- msgid "Print Page Endpoint"
308
  msgstr ""
309
 
310
- # @ woocommerce-delivery-notes
311
- #: ../includes/class-wcdn-settings.php:309
 
 
 
312
  msgid ""
313
- "The endpoint is appended to the accounts page URL to print the order. It "
314
- "should be unique."
315
  msgstr ""
316
 
317
- #: ../includes/class-wcdn-settings.php:315
318
- msgid "My Account"
 
 
 
 
319
  msgstr ""
320
 
321
- # @ woocommerce-delivery-notes
322
- #: ../includes/class-wcdn-settings.php:322
323
- msgid "Show print button on the \"View Order\" page"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
324
  msgstr ""
325
 
326
  # @ woocommerce-delivery-notes
327
- #: ../includes/class-wcdn-settings.php:329
328
- msgid "Show print buttons on the \"My Account\" page"
329
  msgstr ""
330
 
331
  # @ woocommerce-delivery-notes
332
- #: ../includes/class-wcdn-settings.php:336
333
- #: ../includes/wcdn-template-functions.php:254
334
- msgid "Email"
335
- msgstr "Eメール"
336
 
337
- #: ../includes/class-wcdn-settings.php:343
338
- msgid "Show print link in customer emails"
339
  msgstr ""
340
 
341
- #: ../includes/class-wcdn-settings.php:347
342
- msgid ""
343
- "This includes the emails for a new, processing and completed order. On top "
344
- "of that the customer invoice email also includes the link."
345
  msgstr ""
346
 
347
- # @ woocommerce-delivery-notes
348
- #: ../includes/class-wcdn-settings.php:354
349
- msgid "Order Numbering"
350
  msgstr ""
351
 
352
- #: ../includes/class-wcdn-settings.php:359
353
- msgid "Invoice Numbering"
354
  msgstr ""
355
 
356
- #: ../includes/class-wcdn-settings.php:367
357
- msgid "Create invoice numbers"
358
  msgstr ""
359
 
360
- #: ../includes/class-wcdn-settings.php:374
361
- msgid "Invoice Number Start"
362
  msgstr ""
363
 
364
- #: ../includes/class-wcdn-settings.php:381
365
- msgid "Start the numbering at the specified number."
366
  msgstr ""
367
 
368
- #: ../includes/class-wcdn-settings.php:383
369
- msgid "Use only integers."
370
  msgstr ""
371
 
372
- #: ../includes/class-wcdn-settings.php:389
373
- msgid "Invoice Number Prefix"
374
  msgstr ""
375
 
376
- #: ../includes/class-wcdn-settings.php:396
377
- msgid "This text will be prepended to the invoice number."
378
  msgstr ""
379
 
380
- #: ../includes/class-wcdn-settings.php:398
381
- msgid "Leave blank to not add a prefix."
382
  msgstr ""
383
 
384
- #: ../includes/class-wcdn-settings.php:404
385
- msgid "Invoice Number Suffix"
386
  msgstr ""
387
 
388
- #: ../includes/class-wcdn-settings.php:411
389
- msgid "This text will be appended to the invoice number."
390
  msgstr ""
391
 
392
- #: ../includes/class-wcdn-settings.php:413
393
- msgid "Leave blank to not add a suffix."
394
  msgstr ""
395
 
396
- #: ../includes/class-wcdn-settings.php:419
397
- msgid "Invoice Number Counter"
398
  msgstr ""
399
 
400
- #: ../includes/class-wcdn-settings.php:428
401
- msgid "Reset Counter …"
 
 
 
402
  msgstr ""
403
 
404
- #: ../includes/class-wcdn-settings.php:434
405
- msgid "Sequential Order Number"
406
  msgstr ""
407
 
408
- # @ woocommerce-delivery-notes
409
- #: ../includes/class-wcdn-settings.php:439
410
- msgid "Sequential numbering is enabled."
411
  msgstr ""
412
 
413
- # @ woocommerce-delivery-notes
414
- #: ../includes/class-wcdn-settings.php:441
415
- #, php-format
 
 
 
416
  msgid ""
417
- "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
418
- "Numbers</a> Plugin."
419
  msgstr ""
420
 
421
- #: ../includes/class-wcdn-theme.php:106
422
- msgid "Print your order"
423
  msgstr ""
424
 
425
- #: ../includes/class-wcdn-theme.php:112
426
- msgid "Print:"
427
  msgstr ""
428
 
429
- #: ../includes/class-wcdn-theme.php:112
430
- msgid "Open print view in browser"
431
  msgstr ""
432
 
433
- # @ woocommerce-delivery-notes
434
- #: ../includes/class-wcdn-writepanel.php:214
435
- msgid "Print now"
436
  msgstr ""
437
 
438
- # @ woocommerce-delivery-notes
439
- #: ../includes/class-wcdn-writepanel.php:228
440
- msgid "Order Printing"
441
- msgstr "書類印刷"
 
 
 
 
442
 
443
- #: ../includes/class-wcdn-writepanel.php:256
444
- msgid "Invoice number: "
 
445
  msgstr ""
446
 
447
- #: ../includes/class-wcdn-writepanel.php:257
448
- msgid "Invoice date: "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
449
  msgstr ""
450
 
451
- #: ../includes/wcdn-template-functions.php:232
452
  msgid "Invoice Number"
453
  msgstr ""
454
 
 
 
 
 
455
  # @ woocommerce-delivery-notes
456
- #: ../includes/wcdn-template-functions.php:238
457
  msgid "Order Number"
458
  msgstr "注文番号"
459
 
460
  # @ woocommerce-delivery-notes
461
- #: ../includes/wcdn-template-functions.php:243
462
  msgid "Order Date"
463
  msgstr "注文日"
464
 
465
  # @ woocommerce-delivery-notes
466
- #: ../includes/wcdn-template-functions.php:248
467
  msgid "Payment Method"
468
  msgstr "お支払い方法"
469
 
470
  # @ woocommerce-delivery-notes
471
- #: ../includes/wcdn-template-functions.php:261
472
  msgid "Telephone"
473
  msgstr "電話番号"
474
 
475
- #: ../includes/wcdn-template-functions.php:294
476
  msgid "SKU:"
477
  msgstr ""
478
 
479
- #: ../includes/wcdn-template-functions.php:380
480
- #: ../includes/wcdn-template-functions.php:384
481
- #, php-format
482
  msgid "(Includes %s)"
483
  msgstr ""
484
 
485
- #: ../includes/wcdn-template-functions.php:400
486
  msgid "Refund"
487
  msgstr ""
488
 
489
- #: ../includes/wcdn-template-functions.php:412
490
  msgid "Order Subtotal"
491
  msgstr ""
492
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
493
  # @ woocommerce-delivery-notes
494
- #: ../templates/print-order/print-content.php:28
495
  msgid "Billing Address"
496
  msgstr "請求先"
497
 
498
  # @ woocommerce-delivery-notes
499
- #: ../templates/print-order/print-content.php:31
500
- #: ../templates/print-order/print-content.php:40
501
  msgid "N/A"
502
  msgstr ""
503
 
504
  # @ woocommerce-delivery-notes
505
- #: ../templates/print-order/print-content.php:37
506
  msgid "Shipping Address"
507
  msgstr "お届け先"
508
 
509
  # @ woocommerce-delivery-notes
510
- #: ../templates/print-order/print-content.php:70
511
  msgid "Product"
512
  msgstr ""
513
 
514
- #: ../templates/print-order/print-content.php:71
515
  msgid "Price"
516
  msgstr ""
517
 
518
- #: ../templates/print-order/print-content.php:72
519
  msgid "Quantity"
520
  msgstr ""
521
 
522
  # @ woocommerce-delivery-notes
523
- #: ../templates/print-order/print-content.php:73
524
  msgid "Total"
525
  msgstr ""
526
 
527
  # @ woocommerce-delivery-notes
528
- #: ../templates/print-order/print-content.php:97
529
  msgid "Download:"
530
  msgstr ""
531
 
532
  # @ woocommerce-delivery-notes
533
- #: ../templates/print-order/print-content.php:98
534
- #, php-format
535
  msgid "%s Files"
536
  msgstr ""
537
 
538
  # @ woocommerce-delivery-notes
539
- #: ../templates/print-order/print-content.php:147
540
  msgid "Customer Note"
541
  msgstr ""
542
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
543
  # @ woocommerce-delivery-notes
544
- #: ../woocommerce-delivery-notes.php:181
545
  msgid "Go to the settings page"
546
  msgstr ""
547
 
548
  # @ woocommerce-delivery-notes
549
- #: ../woocommerce-delivery-notes.php:181
550
  msgid "Settings"
551
  msgstr ""
8
  msgid ""
9
  msgstr ""
10
  "Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
11
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/woocommerce-"
12
+ "delivery-notes\n"
13
+ "POT-Creation-Date: 2018-10-22 19:01+0530\n"
14
+ "PO-Revision-Date: 2018-10-22 19:01+0530\n"
15
+ "Last-Translator: \n"
16
  "Language-Team: \n"
17
+ "Language: ja\n"
18
  "MIME-Version: 1.0\n"
19
  "Content-Type: text/plain; charset=UTF-8\n"
20
  "Content-Transfer-Encoding: 8bit\n"
21
  "Plural-Forms: nplurals=1; plural=0;\n"
22
+ "X-Generator: Poedit 1.8.7.1\n"
23
  "X-Poedit-SourceCharset: UTF-8\n"
24
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
25
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
26
  "esc_attr_e;esc_attr__\n"
27
  "X-Poedit-Basepath: .\n"
28
  "X-Textdomain-Support: yes\n"
 
 
29
  "X-Poedit-SearchPath-0: ..\n"
30
 
31
  # @ woocommerce-delivery-notes
32
+ #: includes/class-wcdn-print.php:39 includes/class-wcdn-settings.php:237
33
  msgid "Invoice"
34
  msgstr "請求書"
35
 
36
+ #: includes/class-wcdn-print.php:40
37
  msgid "Invoices"
38
  msgstr "請求書"
39
 
40
  # @ woocommerce-delivery-notes
41
+ #: includes/class-wcdn-print.php:41
42
  msgid "Print Invoice"
43
  msgstr "請求書印刷"
44
 
45
+ #: includes/class-wcdn-print.php:42
46
  msgid "Print Invoices"
47
  msgstr "請求書印刷"
48
 
49
  # @ woocommerce-delivery-notes
50
+ #: includes/class-wcdn-print.php:43
51
  msgid "Invoice created."
52
  msgstr ""
53
 
54
+ #: includes/class-wcdn-print.php:44
55
  msgid "Invoices created."
56
  msgstr ""
57
 
58
+ #: includes/class-wcdn-print.php:45
59
+ msgid "Show \"Print Invoice\" button"
60
  msgstr ""
61
 
62
  # @ woocommerce-delivery-notes
63
+ #: includes/class-wcdn-print.php:51
64
  msgid "Delivery Note"
65
  msgstr "納品書"
66
 
67
+ #: includes/class-wcdn-print.php:52
68
  msgid "Delivery Notes"
69
  msgstr "納品書"
70
 
71
  # @ woocommerce-delivery-notes
72
+ #: includes/class-wcdn-print.php:53
73
  msgid "Print Delivery Note"
74
  msgstr "納品書印刷"
75
 
76
+ #: includes/class-wcdn-print.php:54
77
  msgid "Print Delivery Notes"
78
  msgstr "納品書印刷"
79
 
80
+ #: includes/class-wcdn-print.php:55
81
  msgid "Delivery Note created."
82
  msgstr ""
83
 
84
+ #: includes/class-wcdn-print.php:56
85
  msgid "Delivery Notes created."
86
  msgstr ""
87
 
88
+ #: includes/class-wcdn-print.php:57
89
+ msgid "Show \"Print Delivery Note\" button"
90
  msgstr ""
91
 
92
+ #: includes/class-wcdn-print.php:63
93
  msgid "Receipt"
94
  msgstr ""
95
 
96
+ #: includes/class-wcdn-print.php:64
97
  msgid "Receipts"
98
  msgstr ""
99
 
100
+ #: includes/class-wcdn-print.php:65
101
  msgid "Print Receipt"
102
  msgstr "領収書印刷"
103
 
104
+ #: includes/class-wcdn-print.php:66
105
  msgid "Print Receipts"
106
  msgstr "領収書印刷"
107
 
108
+ #: includes/class-wcdn-print.php:67
109
  msgid "Receipt created."
110
  msgstr ""
111
 
112
+ #: includes/class-wcdn-print.php:68
113
  msgid "Receipts created."
114
  msgstr ""
115
 
116
+ #: includes/class-wcdn-print.php:69
117
+ msgid "Show \"Print Receipt\" button"
118
  msgstr ""
119
 
120
  # @ woocommerce-delivery-notes
121
+ #: includes/class-wcdn-print.php:78
122
  msgid "Order"
123
  msgstr "注文"
124
 
125
+ #: includes/class-wcdn-print.php:79
126
  msgid "Orders"
127
  msgstr "注文"
128
 
129
  # @ woocommerce-delivery-notes
130
+ #: includes/class-wcdn-print.php:80
131
  msgid "Print Order"
132
  msgstr ""
133
 
134
+ #: includes/class-wcdn-print.php:81
135
  msgid "Print Orders"
136
  msgstr ""
137
 
138
+ #: includes/class-wcdn-print.php:93
139
+ msgid "Default"
140
+ msgstr ""
141
+
142
+ #: includes/class-wcdn-settings.php:67
143
  msgid ""
144
  "Do you really want to reset the counter to zero? This process can't be "
145
  "undone."
146
  msgstr ""
147
 
148
  # @ woocommerce-delivery-notes
149
+ #: includes/class-wcdn-settings.php:75 includes/class-wcdn-theme.php:57
150
+ #: includes/class-wcdn-theme.php:94 includes/wcdn-template-functions.php:130
 
151
  msgid "Print"
152
  msgstr ""
153
 
154
+ #: includes/class-wcdn-settings.php:106
155
+ msgid "Template"
156
+ msgstr ""
157
+
158
+ #: includes/class-wcdn-settings.php:113
159
+ msgid "Style"
160
+ msgstr ""
161
+
162
+ #: includes/class-wcdn-settings.php:114
163
  msgid ""
164
+ "The default print style. Read the <a href=\"%1$s\">FAQ</a> to learn how to "
165
+ "customize it."
 
166
  msgstr ""
167
 
168
+ #: includes/class-wcdn-settings.php:124
169
+ msgid "Shop Logo"
170
+ msgstr ""
171
+
172
+ #: includes/class-wcdn-settings.php:130
173
  msgid ""
174
+ "A shop logo representing your business. When the image is printed, its pixel "
175
+ "density will automatically be eight times higher than the original. This "
176
+ "means, 1 printed inch will correspond to about 288 pixels on the screen."
177
  msgstr ""
178
 
179
+ #: includes/class-wcdn-settings.php:134
180
+ msgid "Shop Name"
 
181
  msgstr ""
182
 
183
+ #: includes/class-wcdn-settings.php:140
184
+ msgid ""
185
+ "The shop name. Leave blank to use the default Website or Blog title defined "
186
+ "in WordPress settings. The name will be ignored when a Logo is set."
187
  msgstr ""
188
 
189
+ #: includes/class-wcdn-settings.php:144
190
+ msgid "Shop Address"
 
191
  msgstr ""
192
 
193
+ #: includes/class-wcdn-settings.php:145
194
+ msgid "The postal address of the shop or even e-mail or telephone."
 
195
  msgstr ""
196
 
197
+ #: includes/class-wcdn-settings.php:154
198
+ msgid "Complimentary Close"
 
 
 
 
 
 
 
 
 
199
  msgstr ""
200
 
201
+ #: includes/class-wcdn-settings.php:155
202
+ msgid "Add a personal close, notes or season greetings."
 
 
 
 
 
 
203
  msgstr ""
204
 
205
+ #: includes/class-wcdn-settings.php:164
206
+ msgid "Policies"
 
207
  msgstr ""
208
 
209
+ #: includes/class-wcdn-settings.php:165
210
+ msgid "Add the shop policies, conditions, etc."
 
211
  msgstr ""
212
 
213
  # @ woocommerce-delivery-notes
214
+ #: includes/class-wcdn-settings.php:174
215
+ msgid "Footer"
216
+ msgstr ""
217
+
218
+ #: includes/class-wcdn-settings.php:175
219
  msgid ""
220
+ "Add a footer imprint, instructions, copyright notes, e-mail, telephone, etc."
221
+ msgstr ""
222
+
223
+ #: includes/class-wcdn-settings.php:189
224
+ msgid "Pages & Buttons"
225
  msgstr ""
226
 
227
  # @ woocommerce-delivery-notes
228
+ #: includes/class-wcdn-settings.php:196
229
+ msgid "Print Page Endpoint"
230
  msgstr ""
231
 
232
  # @ woocommerce-delivery-notes
233
+ #: includes/class-wcdn-settings.php:202
234
  msgid ""
235
+ "The endpoint is appended to the accounts page URL to print the order. It "
236
+ "should be unique."
237
  msgstr ""
238
 
239
  # @ woocommerce-delivery-notes
240
+ #: includes/class-wcdn-settings.php:206
241
+ #: includes/wcdn-template-functions.php:275
242
+ msgid "Email"
243
+ msgstr "Eメール"
244
 
245
+ #: includes/class-wcdn-settings.php:207
246
+ msgid "Show print link in customer emails"
247
  msgstr ""
248
 
249
+ #: includes/class-wcdn-settings.php:211
 
250
  msgid ""
251
+ "This includes the emails for a new, processing and completed order. On top "
252
+ "of that the customer invoice email also includes the link."
253
  msgstr ""
254
 
255
+ #: includes/class-wcdn-settings.php:215
256
+ msgid "My Account"
 
257
  msgstr ""
258
 
259
  # @ woocommerce-delivery-notes
260
+ #: includes/class-wcdn-settings.php:216
261
+ msgid "Show print button on the \"View Order\" page"
262
  msgstr ""
263
 
264
  # @ woocommerce-delivery-notes
265
+ #: includes/class-wcdn-settings.php:224
266
+ msgid "Show print buttons on the \"My Account\" page"
 
 
 
 
267
  msgstr ""
268
 
269
+ #: includes/class-wcdn-settings.php:244
270
+ msgid "Numbering"
 
271
  msgstr ""
272
 
273
+ #: includes/class-wcdn-settings.php:245
274
+ msgid "Create invoice numbers"
 
275
  msgstr ""
276
 
277
+ #: includes/class-wcdn-settings.php:253
278
+ msgid "Next Number"
 
 
 
279
  msgstr ""
280
 
281
+ #: includes/class-wcdn-settings.php:260
282
+ msgid "The next invoice number."
 
283
  msgstr ""
284
 
285
+ #: includes/class-wcdn-settings.php:264
286
+ msgid "Number Prefix"
287
  msgstr ""
288
 
289
+ #: includes/class-wcdn-settings.php:271
290
+ msgid "This text will be prepended to the invoice number."
291
  msgstr ""
292
 
293
+ #: includes/class-wcdn-settings.php:275
294
+ msgid "Number Suffix"
295
  msgstr ""
296
 
297
+ #: includes/class-wcdn-settings.php:282
298
+ msgid "This text will be appended to the invoice number."
 
299
  msgstr ""
300
 
301
+ #: includes/class-wcdn-settings.php:327
302
+ msgid "Admin"
303
+ msgstr ""
304
+
305
+ #: includes/class-wcdn-settings.php:330
306
  msgid ""
307
+ "The print buttons are available on the order listing and on the order detail "
308
+ "screen."
309
  msgstr ""
310
 
311
+ #: includes/class-wcdn-settings.php:372
312
+ msgid ""
313
+ "This section lets you customise the content. You can preview the <a href="
314
+ "\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target="
315
+ "\"%4$s\" class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s"
316
+ "\" class=\"%5$s\">receipt</a> template."
317
  msgstr ""
318
 
319
+ #: includes/class-wcdn-settings.php:435
320
+ msgid "Select"
321
+ msgstr ""
322
+
323
+ #: includes/class-wcdn-settings.php:439
324
+ msgid "Remove"
325
+ msgstr ""
326
+
327
+ #: includes/class-wcdn-theme.php:112
328
+ msgid "Print your order"
329
+ msgstr ""
330
+
331
+ #: includes/class-wcdn-theme.php:119
332
+ msgid "Print:"
333
+ msgstr ""
334
+
335
+ #: includes/class-wcdn-theme.php:119
336
+ msgid "Open print view in browser"
337
  msgstr ""
338
 
339
  # @ woocommerce-delivery-notes
340
+ #: includes/class-wcdn-writepanel.php:218
341
+ msgid "Print now"
342
  msgstr ""
343
 
344
  # @ woocommerce-delivery-notes
345
+ #: includes/class-wcdn-writepanel.php:232
346
+ msgid "Order Printing"
347
+ msgstr "書類印刷"
 
348
 
349
+ #: includes/class-wcdn-writepanel.php:259
350
+ msgid "Invoice number: "
351
  msgstr ""
352
 
353
+ #: includes/class-wcdn-writepanel.php:260
354
+ msgid "Invoice date: "
 
 
355
  msgstr ""
356
 
357
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:75
358
+ msgid "If you have a moment, please let us know why you are deactivating"
 
359
  msgstr ""
360
 
361
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:76
362
+ msgid "Submit & Deactivate"
363
  msgstr ""
364
 
365
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:77
366
+ msgid "Deactivate"
367
  msgstr ""
368
 
369
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:78
370
+ msgid "Cancel"
371
  msgstr ""
372
 
373
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:79
374
+ msgid "Yes - Deactivate"
375
  msgstr ""
376
 
377
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:83
378
+ msgid "I found a better plugin"
379
  msgstr ""
380
 
381
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:84
382
+ msgid "What's the plugin's name?"
383
  msgstr ""
384
 
385
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:85
386
+ msgid "I only needed the plugin for a short period"
387
  msgstr ""
388
 
389
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:86
390
+ msgid "The plugin is not working"
391
  msgstr ""
392
 
393
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:87
394
+ msgid "Kindly share what didn't work so we can fix it for future users..."
395
  msgstr ""
396
 
397
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:88
398
+ msgid "The plugin is great, but I need specific feature that you don't support"
399
  msgstr ""
400
 
401
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:89
402
+ msgid "What feature?"
403
  msgstr ""
404
 
405
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:90
406
+ msgid "I don't like to share my information with you"
407
  msgstr ""
408
 
409
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:91
410
+ msgctxt ""
411
+ "the text of the 'other' reason for deactivating the plugin that is shown in "
412
+ "the modal box."
413
+ msgid "Other"
414
  msgstr ""
415
 
416
+ #: includes/component/faq-support/ts-faq-support.php:127
417
+ msgid "Frequently Asked Questions for %s"
418
  msgstr ""
419
 
420
+ #: includes/component/faq-support/ts-faq-support.php:176
421
+ msgid "FAQ & Support"
 
422
  msgstr ""
423
 
424
+ #: includes/component/tracking-data/ts-tracking.php:120
425
+ #: includes/component/tracking-data/ts-tracking.php:180
426
+ msgid "Reset usage tracking"
427
+ msgstr ""
428
+
429
+ #: includes/component/tracking-data/ts-tracking.php:122
430
  msgid ""
431
+ "This will reset your usage tracking settings, causing it to show the opt-in "
432
+ "banner again and not sending any data"
433
  msgstr ""
434
 
435
+ #: includes/component/tracking-data/ts-tracking.php:225
436
+ msgid "Once in a Week"
437
  msgstr ""
438
 
439
+ #: includes/component/tracking-data/ts-tracking.php:311
440
+ msgid "Allow"
441
  msgstr ""
442
 
443
+ #: includes/component/tracking-data/ts-tracking.php:312
444
+ msgid "No thanks"
445
  msgstr ""
446
 
447
+ #: includes/component/welcome-page/templates/social-media-elements.php:10
448
+ #: includes/wcdn-welcome.php:231
449
+ msgid "Follow %s"
450
  msgstr ""
451
 
452
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:19
453
+ #: includes/wcdn-welcome.php:99
454
+ msgid ""
455
+ "Thank you for activating or updating to the latest version of WooCommerce "
456
+ "Print Invoice & Delivery Note! If you're a first time user, welcome! You're "
457
+ "well on your way to explore the print functionality for your WooCommerce "
458
+ "orders."
459
+ msgstr ""
460
 
461
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:29
462
+ #: includes/wcdn-welcome.php:109
463
+ msgid "Get Started with WooCommerce Print Invoice & Delivery Note"
464
  msgstr ""
465
 
466
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:33
467
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:62
468
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:68
469
+ #: includes/wcdn-welcome.php:113 includes/wcdn-welcome.php:142
470
+ #: includes/wcdn-welcome.php:148
471
+ msgid "WooCommerce Print Invoice & Delivery Note"
472
+ msgstr ""
473
+
474
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:37
475
+ #: includes/wcdn-welcome.php:117
476
+ msgid "Add settings"
477
+ msgstr ""
478
+
479
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:39
480
+ #: includes/wcdn-welcome.php:119
481
+ msgid ""
482
+ "To enable the print functionality for your invoices, delivery notes & "
483
+ "receipts, you just need to set it up under WooCommerce -> Settings -> Print "
484
+ "page. Here you can also setup the Company Logo that will appear on the "
485
+ "printed items, Company Address & other information."
486
+ msgstr ""
487
+
488
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:41
489
+ #: includes/wcdn-welcome.php:121
490
+ msgid "Click Here to go to Print page"
491
+ msgstr ""
492
+
493
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:52
494
+ #: includes/wcdn-welcome.php:132
495
+ msgid "Enable Print button for Customers."
496
+ msgstr ""
497
+
498
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:54
499
+ #: includes/wcdn-welcome.php:134
500
+ msgid ""
501
+ "Allow customers to print the WooCommerce order invoice from the customer "
502
+ "notification email, from the My Account page or from the View Order page "
503
+ "under My Account."
504
+ msgstr ""
505
+
506
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:56
507
+ #: includes/wcdn-welcome.php:136
508
+ msgid "Click Here to Enable Print button for Customers"
509
+ msgstr ""
510
+
511
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:72
512
+ #: includes/wcdn-welcome.php:152
513
+ msgid "Enable Invoice Numbering"
514
+ msgstr ""
515
+
516
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:74
517
+ msgid ""
518
+ "If you want to change the default invoice numbers & set some numbering "
519
+ "scheme of your own, then you can set it here with a starting invoice number, "
520
+ "a prefix & suffix. For example, you could set it as: TS/001/17-18."
521
+ msgstr ""
522
+
523
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:76
524
+ #: includes/wcdn-welcome.php:156
525
+ msgid "Click Here to Enable Invoice Numbering"
526
+ msgstr ""
527
+
528
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:87
529
+ #: includes/wcdn-welcome.php:167
530
+ msgid "Getting to Know Tyche Softwares"
531
+ msgstr ""
532
+
533
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:90
534
+ #: includes/wcdn-welcome.php:170
535
+ msgid "Visit the Tyche Softwares Website"
536
+ msgstr ""
537
+
538
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:91
539
+ #: includes/wcdn-welcome.php:171
540
+ msgid "View all Premium Plugins"
541
+ msgstr ""
542
+
543
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:100
544
+ #: includes/wcdn-welcome.php:180
545
+ msgid "Meet the team"
546
+ msgstr ""
547
+
548
+ #: includes/component/welcome-page/ts-welcome.php:167
549
+ msgid "Welcome to %s %s"
550
+ msgstr ""
551
+
552
+ #: includes/wcdn-all-component.php:118
553
+ msgid ""
554
+ "Thank you for using WooCommerce Print Invoice & Delivery Note plugin! Now "
555
+ "make your deliveries more accurate by allowing customers to select their "
556
+ "preferred delivery date & time from Product Delivery Date Pro for "
557
+ "WooCommerce. <strong><a target=\"_blank\" href= \"https://www.tychesoftwares."
558
+ "com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/?"
559
+ "utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">Get "
560
+ "it now!</a></strong>"
561
+ msgstr ""
562
+
563
+ #: includes/wcdn-all-component.php:120
564
+ msgid ""
565
+ "Never login to your admin to check your deliveries by syncing the delivery "
566
+ "dates to the Google Calendar from Product Delivery Date Pro for WooCommerce. "
567
+ "<strong><a target=\"_blank\" href= \"https://www.tychesoftwares.com/store/"
568
+ "premium-plugins/product-delivery-date-pro-for-woocommerce/checkout?"
569
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
570
+ "\">Get it now!</a></strong>"
571
+ msgstr ""
572
+
573
+ #: includes/wcdn-all-component.php:122
574
+ msgid ""
575
+ "You can now view all your deliveries in list view or in calendar view from "
576
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
577
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
578
+ "delivery-date-pro-for-woocommerce/checkout?"
579
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
580
+ "\">Get it now!</a></strong>."
581
+ msgstr ""
582
+
583
+ #: includes/wcdn-all-component.php:124
584
+ msgid ""
585
+ "Allow your customers to pay extra for delivery for certain Weekdays/Dates "
586
+ "from Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
587
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
588
+ "delivery-date-pro-for-woocommerce/checkout?"
589
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
590
+ "\">Have it now!</a></strong>."
591
+ msgstr ""
592
+
593
+ #: includes/wcdn-all-component.php:126
594
+ msgid ""
595
+ "Customers can now edit the Delivery date & time on cart and checkout page or "
596
+ "they can reschedule the deliveries for the already placed orders from "
597
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
598
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
599
+ "delivery-date-pro-for-woocommerce/checkout?"
600
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
601
+ "\">Have it now!</a></strong>."
602
  msgstr ""
603
 
604
+ #: includes/wcdn-template-functions.php:246
605
  msgid "Invoice Number"
606
  msgstr ""
607
 
608
+ #: includes/wcdn-template-functions.php:253
609
+ msgid "Invoice Date"
610
+ msgstr ""
611
+
612
  # @ woocommerce-delivery-notes
613
+ #: includes/wcdn-template-functions.php:259
614
  msgid "Order Number"
615
  msgstr "注文番号"
616
 
617
  # @ woocommerce-delivery-notes
618
+ #: includes/wcdn-template-functions.php:264
619
  msgid "Order Date"
620
  msgstr "注文日"
621
 
622
  # @ woocommerce-delivery-notes
623
+ #: includes/wcdn-template-functions.php:269
624
  msgid "Payment Method"
625
  msgstr "お支払い方法"
626
 
627
  # @ woocommerce-delivery-notes
628
+ #: includes/wcdn-template-functions.php:282
629
  msgid "Telephone"
630
  msgstr "電話番号"
631
 
632
+ #: includes/wcdn-template-functions.php:315
633
  msgid "SKU:"
634
  msgstr ""
635
 
636
+ #: includes/wcdn-template-functions.php:409
637
+ #: includes/wcdn-template-functions.php:413
 
638
  msgid "(Includes %s)"
639
  msgstr ""
640
 
641
+ #: includes/wcdn-template-functions.php:429
642
  msgid "Refund"
643
  msgstr ""
644
 
645
+ #: includes/wcdn-template-functions.php:441
646
  msgid "Order Subtotal"
647
  msgstr ""
648
 
649
+ #: includes/wcdn-welcome.php:54
650
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note %s"
651
+ msgstr ""
652
+
653
+ #: includes/wcdn-welcome.php:55
654
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note"
655
+ msgstr ""
656
+
657
+ #: includes/wcdn-welcome.php:154
658
+ msgid ""
659
+ "f you want to change the default invoice numbers & set some numbering scheme "
660
+ "of your own, then you can set it here with a starting invoice number, a "
661
+ "prefix & suffix. For example, you could set it as: TS/001/17-18."
662
+ msgstr ""
663
+
664
+ #: includes/wcdn-welcome.php:186
665
+ msgid "Current Offers"
666
+ msgstr ""
667
+
668
  # @ woocommerce-delivery-notes
669
+ #: templates/print-order/print-content.php:28
670
  msgid "Billing Address"
671
  msgstr "請求先"
672
 
673
  # @ woocommerce-delivery-notes
674
+ #: templates/print-order/print-content.php:31
675
+ #: templates/print-order/print-content.php:40
676
  msgid "N/A"
677
  msgstr ""
678
 
679
  # @ woocommerce-delivery-notes
680
+ #: templates/print-order/print-content.php:37
681
  msgid "Shipping Address"
682
  msgstr "お届け先"
683
 
684
  # @ woocommerce-delivery-notes
685
+ #: templates/print-order/print-content.php:71
686
  msgid "Product"
687
  msgstr ""
688
 
689
+ #: templates/print-order/print-content.php:72
690
  msgid "Price"
691
  msgstr ""
692
 
693
+ #: templates/print-order/print-content.php:73
694
  msgid "Quantity"
695
  msgstr ""
696
 
697
  # @ woocommerce-delivery-notes
698
+ #: templates/print-order/print-content.php:74
699
  msgid "Total"
700
  msgstr ""
701
 
702
  # @ woocommerce-delivery-notes
703
+ #: templates/print-order/print-content.php:147
704
  msgid "Download:"
705
  msgstr ""
706
 
707
  # @ woocommerce-delivery-notes
708
+ #: templates/print-order/print-content.php:148
 
709
  msgid "%s Files"
710
  msgstr ""
711
 
712
  # @ woocommerce-delivery-notes
713
+ #: templates/print-order/print-content.php:202
714
  msgid "Customer Note"
715
  msgstr ""
716
 
717
+ #: woocommerce-delivery-notes.php:96 woocommerce-delivery-notes.php:103
718
+ msgid "Cheatin&#8217; huh?"
719
+ msgstr ""
720
+
721
+ #: woocommerce-delivery-notes.php:275
722
+ msgid ""
723
+ "I can't differentiate between Invoice, Delivery Notes & Receipt. The "
724
+ "templates are the same. "
725
+ msgstr ""
726
+
727
+ #: woocommerce-delivery-notes.php:281
728
+ msgid "The invoice sent through mail can't be downloaded as PDF directly."
729
+ msgstr ""
730
+
731
+ #: woocommerce-delivery-notes.php:287
732
+ msgid "The plugin is not compatible with another plugin."
733
+ msgstr ""
734
+
735
+ #: woocommerce-delivery-notes.php:293
736
+ msgid "This plugin is not useful to me."
737
+ msgstr ""
738
+
739
  # @ woocommerce-delivery-notes
740
+ #: woocommerce-delivery-notes.php:351
741
  msgid "Go to the settings page"
742
  msgstr ""
743
 
744
  # @ woocommerce-delivery-notes
745
+ #: woocommerce-delivery-notes.php:351
746
  msgid "Settings"
747
  msgstr ""
languages/woocommerce-delivery-notes-nb_NO.mo CHANGED
Binary file
languages/woocommerce-delivery-notes-nb_NO.po CHANGED
@@ -1,99 +1,231 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
4
- "Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
5
- "POT-Creation-Date: 2015-01-31 15:44+0100\n"
6
- "PO-Revision-Date: 2017-08-21 11:16+0000\n"
 
7
  "Last-Translator: Jon Kristian Nilsen <admin@divint.no>\n"
8
  "Language-Team: Norwegian (Bokmål)\n"
9
- "Language: nb-NO\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "Plural-Forms: nplurals=2; plural=n != 1\n"
14
- "X-Generator: Loco - https://localise.biz/\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
17
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
18
  "esc_attr_e;esc_attr__\n"
19
  "X-Poedit-Basepath: .\n"
20
  "X-Textdomain-Support: yes\n"
21
- "X-Poedit-SearchPath-0: .."
22
 
23
- #: ../includes/class-wcdn-settings.php:233
24
- msgid "Complimentary Close"
25
- msgstr "Avsluttningskompliment"
 
 
 
 
 
26
 
27
  # @ woocommerce-delivery-notes
28
- #: ../includes/class-wcdn-settings.php:238
29
- msgid ""
30
- "Add some personal notes, or season greetings or whatever (e.g. Thank You for "
31
- "Your Order!, Merry Christmas!, etc.)."
32
- msgstr "Legg til personlig notat (f.eks. Takk for din ordre! God Jul!, etc.)."
 
 
33
 
34
  # @ woocommerce-delivery-notes
35
- #: ../includes/class-wcdn-settings.php:240
36
- msgid "Leave blank to not print any personal notes."
37
- msgstr "La stå tom for ikke å printe personlig notat."
 
 
 
 
 
 
 
 
38
 
39
  # @ woocommerce-delivery-notes
40
- #: ../includes/class-wcdn-settings.php:246
41
- msgid "Returns Policy, Conditions, etc"
42
- msgstr "Returrett, salgsbetingelser, etc."
 
 
 
 
43
 
44
  # @ woocommerce-delivery-notes
45
- #: ../includes/class-wcdn-settings.php:251
46
- msgid ""
47
- "Here you can add some more policies, conditions etc. For example add a "
48
- "returns policy in case the client would like to send back some goods. In "
49
- "some countries (e.g. in the European Union) this is required so please add "
50
- "any required info in accordance with the statutory regulations."
 
 
 
 
 
 
 
 
 
 
 
 
51
  msgstr ""
52
- "Her kan du legge til flere betingelser. For eksempel en returrett i tilfelle "
53
- "kunden ønsker å sende tilbake varer. I noen land (f.eks. EU) er dette "
54
- "påkrevd så vennligst følg reglementet."
55
 
56
- # @ woocommerce-delivery-notes
57
- #: ../includes/class-wcdn-settings.php:253
58
- msgid "Leave blank to not print any policies or conditions."
59
- msgstr "La stå tom for ikke å skrive ut."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
 
61
  # @ woocommerce-delivery-notes
62
- #: ../includes/class-wcdn-settings.php:259
63
- msgid "Footer"
64
- msgstr "Bunn"
 
 
 
 
65
 
66
  # @ woocommerce-delivery-notes
67
- #: ../includes/class-wcdn-settings.php:264
 
 
 
 
 
 
 
 
 
 
 
 
68
  msgid ""
69
- "Add some further footer imprint, e-mail, telephone, copyright notes etc. "
70
- "This makes the printed sheets a bit more branded."
71
- msgstr "Legg til noe i bunnen, e-post, telefon eller adresse."
 
 
72
 
73
  # @ woocommerce-delivery-notes
74
- #: ../includes/class-wcdn-settings.php:266
75
- msgid "Leave blank to not print a footer."
76
- msgstr "La stå tom for ikke å skrive ut."
 
77
 
78
- #: ../includes/class-wcdn-settings.php:273
79
- msgid "Print Options"
80
- msgstr "Utskriftsvalg"
81
 
82
- #: ../includes/class-wcdn-settings.php:278
83
- msgid "Types"
84
- msgstr "Typer"
85
 
86
- #: ../includes/class-wcdn-settings.php:297
87
- msgid "Theme Options"
88
- msgstr "Temavalg"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
 
90
  # @ woocommerce-delivery-notes
91
- #: ../includes/class-wcdn-settings.php:302
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92
  msgid "Print Page Endpoint"
93
  msgstr "Utskriftssidens endepunkt"
94
 
95
  # @ woocommerce-delivery-notes
96
- #: ../includes/class-wcdn-settings.php:309
97
  msgid ""
98
  "The endpoint is appended to the accounts page URL to print the order. It "
99
  "should be unique."
@@ -101,31 +233,17 @@ msgstr ""
101
  "Endepunktet legges til kontoens URL for å skrive ut ordren. Den bør være "
102
  "unik."
103
 
104
- #: ../includes/class-wcdn-settings.php:315
105
- msgid "My Account"
106
- msgstr "Min konto"
107
-
108
- # @ woocommerce-delivery-notes
109
- #: ../includes/class-wcdn-settings.php:322
110
- msgid "Show print button on the \"View Order\" page"
111
- msgstr "Vis utskriftsknapp på \"Vis ordre\" -siden."
112
-
113
  # @ woocommerce-delivery-notes
114
- #: ../includes/class-wcdn-settings.php:329
115
- msgid "Show print buttons on the \"My Account\" page"
116
- msgstr "Vis utskriftsknapp på \"Min konto\" -siden."
117
-
118
- # @ woocommerce-delivery-notes
119
- #: ../includes/class-wcdn-settings.php:336
120
- #: ../includes/wcdn-template-functions.php:254
121
  msgid "Email"
122
  msgstr "E-post"
123
 
124
- #: ../includes/class-wcdn-settings.php:343
125
  msgid "Show print link in customer emails"
126
  msgstr "Vis skriv ut lenke i kundeepost."
127
 
128
- #: ../includes/class-wcdn-settings.php:347
129
  msgid ""
130
  "This includes the emails for a new, processing and completed order. On top "
131
  "of that the customer invoice email also includes the link."
@@ -133,432 +251,682 @@ msgstr ""
133
  "Dette inkluderer e-post for ny, behandler og ferdigstilte ordre. I tillegg "
134
  "vil kundefaktura også inkludere lenken."
135
 
 
 
 
 
136
  # @ woocommerce-delivery-notes
137
- #: ../includes/class-wcdn-settings.php:354
138
- msgid "Order Numbering"
139
- msgstr "Ordrenummerering"
140
 
141
- #: ../includes/class-wcdn-settings.php:359
142
- msgid "Invoice Numbering"
143
- msgstr "Fakturanummerering"
 
 
 
 
 
144
 
145
- #: ../includes/class-wcdn-settings.php:367
146
  msgid "Create invoice numbers"
147
  msgstr "Lag fakturanummer"
148
 
149
- #: ../includes/class-wcdn-settings.php:374
150
- msgid "Invoice Number Start"
151
- msgstr "Fakturanummer start"
152
-
153
- #: ../includes/class-wcdn-settings.php:381
154
- msgid "Start the numbering at the specified number."
155
- msgstr "Start nummerering på ett spesifikt nummer."
156
 
157
- #: ../includes/class-wcdn-settings.php:383
158
- msgid "Use only integers."
159
- msgstr "Bruk bare tall."
160
 
161
- #: ../includes/class-wcdn-settings.php:389
162
- msgid "Invoice Number Prefix"
163
- msgstr "Prefiks for fakturanummer"
164
 
165
- #: ../includes/class-wcdn-settings.php:396
166
  msgid "This text will be prepended to the invoice number."
167
  msgstr "Denne teksten vil legges i front av fakturanummer."
168
 
169
- #: ../includes/class-wcdn-settings.php:398
170
- msgid "Leave blank to not add a prefix."
171
- msgstr "La stå blank for ikke å legge til."
172
-
173
- #: ../includes/class-wcdn-settings.php:404
174
- msgid "Invoice Number Suffix"
175
- msgstr "Suffiks for fakturanummer"
176
 
177
- #: ../includes/class-wcdn-settings.php:411
178
  msgid "This text will be appended to the invoice number."
179
  msgstr "Denne teksten vil legges bak fakturanummer."
180
 
181
- #: ../includes/class-wcdn-settings.php:413
182
- msgid "Leave blank to not add a suffix."
183
- msgstr "La stå blank for ikke å legge til."
184
-
185
- #: ../includes/class-wcdn-settings.php:419
186
- msgid "Invoice Number Counter"
187
- msgstr "Teller for fakturanummer"
188
 
189
- #: ../includes/class-wcdn-settings.php:428
190
- msgid "Reset Counter …"
191
- msgstr "Nullstill teller ..."
 
 
192
 
193
- #: ../includes/class-wcdn-settings.php:434
194
- msgid "Sequential Order Number"
195
- msgstr "Sekvensielle ordrenummer"
 
 
 
 
196
 
197
- # @ woocommerce-delivery-notes
198
- #: ../includes/class-wcdn-settings.php:439
199
- msgid "Sequential numbering is enabled."
200
- msgstr "Sekvensiell nummerering er aktivert."
201
 
202
- # @ woocommerce-delivery-notes
203
- #: ../includes/class-wcdn-settings.php:441
204
- #, php-format
205
- msgid ""
206
- "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
207
- "Numbers</a> Plugin."
208
  msgstr ""
209
- "Installer og aktiver gratisutvidelse av <a href=\"%s\">WooCommerce "
210
- "Sequential Order Numbers</a>."
211
 
212
- #: ../includes/class-wcdn-theme.php:106
213
  msgid "Print your order"
214
  msgstr "Skriv ut din ordre"
215
 
216
- #: ../includes/class-wcdn-theme.php:112
217
  msgid "Print:"
218
  msgstr "Skriv ut:"
219
 
220
- #: ../includes/class-wcdn-theme.php:112
221
  msgid "Open print view in browser"
222
  msgstr "Åpne utskriftsvisning i nettleser"
223
 
224
  # @ woocommerce-delivery-notes
225
- #: ../includes/class-wcdn-writepanel.php:214
226
  msgid "Print now"
227
  msgstr "Skriv ut nå"
228
 
229
  # @ woocommerce-delivery-notes
230
- #: ../includes/class-wcdn-writepanel.php:228
231
  msgid "Order Printing"
232
  msgstr "Ordren skrives ut"
233
 
234
- #: ../includes/class-wcdn-writepanel.php:256
235
  msgid "Invoice number: "
236
  msgstr "Fakturanummer:"
237
 
238
- #: ../includes/class-wcdn-writepanel.php:257
239
  msgid "Invoice date: "
240
  msgstr "Fakturadato:"
241
 
242
- #: ../includes/wcdn-template-functions.php:232
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
243
  msgid "Invoice Number"
244
  msgstr "Fakturanummer:"
245
 
 
 
 
 
246
  # @ woocommerce-delivery-notes
247
- #: ../includes/wcdn-template-functions.php:238
248
  msgid "Order Number"
249
  msgstr "Ordrenummer"
250
 
251
  # @ woocommerce-delivery-notes
252
- #: ../includes/wcdn-template-functions.php:243
253
  msgid "Order Date"
254
  msgstr "Ordredato"
255
 
256
  # @ woocommerce-delivery-notes
257
- #: ../includes/wcdn-template-functions.php:248
258
  msgid "Payment Method"
259
  msgstr "Betalingsmetode"
260
 
261
  # @ woocommerce-delivery-notes
262
- #: ../includes/wcdn-template-functions.php:261
263
  msgid "Telephone"
264
  msgstr "Telefon"
265
 
266
- #: ../includes/wcdn-template-functions.php:294
267
  msgid "SKU:"
268
  msgstr "SKU:"
269
 
270
- #: ../includes/wcdn-template-functions.php:380
271
- #: ../includes/wcdn-template-functions.php:384
272
- #, php-format
273
  msgid "(Includes %s)"
274
  msgstr "(Inkluderer %s)"
275
 
276
- #: ../includes/wcdn-template-functions.php:400
277
  msgid "Refund"
278
  msgstr "Refundere"
279
 
280
- #: ../includes/wcdn-template-functions.php:412
281
  msgid "Order Subtotal"
282
  msgstr "Ordre subtotal"
283
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
284
  # @ woocommerce-delivery-notes
285
- #: ../templates/print-order/print-content.php:28
286
  msgid "Billing Address"
287
  msgstr "Fakturaadresse"
288
 
289
  # @ woocommerce-delivery-notes
290
- #: ../templates/print-order/print-content.php:31
291
- #: ../templates/print-order/print-content.php:40
292
  msgid "N/A"
293
  msgstr "N/A"
294
 
295
  # @ woocommerce-delivery-notes
296
- #: ../templates/print-order/print-content.php:37
297
  msgid "Shipping Address"
298
  msgstr "Leveringsadresse"
299
 
300
  # @ woocommerce-delivery-notes
301
- #: ../templates/print-order/print-content.php:70
302
  msgid "Product"
303
  msgstr "Produkt"
304
 
305
- #: ../templates/print-order/print-content.php:71
306
  msgid "Price"
307
  msgstr "Pris"
308
 
309
- #: ../templates/print-order/print-content.php:72
310
  msgid "Quantity"
311
  msgstr "Kvantitet"
312
 
313
  # @ woocommerce-delivery-notes
314
- #: ../templates/print-order/print-content.php:73
315
  msgid "Total"
316
  msgstr "Total"
317
 
318
  # @ woocommerce-delivery-notes
319
- #: ../templates/print-order/print-content.php:97
320
  msgid "Download:"
321
  msgstr "Last ned:"
322
 
323
  # @ woocommerce-delivery-notes
324
- #: ../templates/print-order/print-content.php:98
325
- #, php-format
326
  msgid "%s Files"
327
  msgstr "%s filer"
328
 
329
  # @ woocommerce-delivery-notes
330
- #: ../templates/print-order/print-content.php:147
331
  msgid "Customer Note"
332
  msgstr "Kundenotat"
333
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
334
  # @ woocommerce-delivery-notes
335
- #: ../woocommerce-delivery-notes.php:181
336
  msgid "Go to the settings page"
337
  msgstr "Gå til instillinger"
338
 
339
  # @ woocommerce-delivery-notes
340
- #: ../woocommerce-delivery-notes.php:181
341
  msgid "Settings"
342
  msgstr "Instillinger"
343
 
344
  # @ woocommerce-delivery-notes
345
- #: ../includes/class-wcdn-print.php:41
346
- msgid "Invoice"
347
- msgstr "Faktura"
348
-
349
- #: ../includes/class-wcdn-print.php:42
350
- msgid "Invoices"
351
- msgstr "Fakturaer"
352
 
353
  # @ woocommerce-delivery-notes
354
- #: ../includes/class-wcdn-print.php:43
355
- msgid "Print Invoice"
356
- msgstr "Skriv ut faktura"
357
 
358
- #: ../includes/class-wcdn-print.php:44
359
- msgid "Print Invoices"
360
- msgstr "Skriv ut fakturaer"
361
 
362
  # @ woocommerce-delivery-notes
363
- #: ../includes/class-wcdn-print.php:45
364
- msgid "Invoice created."
365
- msgstr "Faktura opprettet."
 
 
 
 
 
 
366
 
367
- #: ../includes/class-wcdn-print.php:46
368
- msgid "Invoices created."
369
- msgstr "Fakturaer opprettet."
370
 
371
- #: ../includes/class-wcdn-print.php:47
372
- msgid "Enable Invoices"
373
- msgstr "Aktiver fakturaer"
 
 
374
 
375
  # @ woocommerce-delivery-notes
376
- #: ../includes/class-wcdn-print.php:53
377
- msgid "Delivery Note"
378
- msgstr "Leveringsnotat"
379
 
380
- #: ../includes/class-wcdn-print.php:54
381
- msgid "Delivery Notes"
382
- msgstr "Leveringsnotater"
 
 
 
 
 
383
 
384
  # @ woocommerce-delivery-notes
385
- #: ../includes/class-wcdn-print.php:55
386
- msgid "Print Delivery Note"
387
- msgstr "Skriv ut leveringsnotat"
388
 
389
- #: ../includes/class-wcdn-print.php:56
390
- msgid "Print Delivery Notes"
391
- msgstr "Skriv ut leveringsnotater"
392
 
393
- #: ../includes/class-wcdn-print.php:57
394
- msgid "Delivery Note created."
395
- msgstr "Leveringsnotat opprettet."
396
 
397
- #: ../includes/class-wcdn-print.php:58
398
- msgid "Delivery Notes created."
399
- msgstr "Leveringsnotater opprettet."
400
 
401
- #: ../includes/class-wcdn-print.php:59
402
- msgid "Enable Delivery Notes"
403
- msgstr "Aktiver leveringsnotater"
404
 
405
- #: ../includes/class-wcdn-print.php:65
406
- msgid "Receipt"
407
- msgstr "Kvittering"
408
 
409
- #: ../includes/class-wcdn-print.php:66
410
- msgid "Receipts"
411
- msgstr "Kvitteringer"
412
 
413
- #: ../includes/class-wcdn-print.php:67
414
- msgid "Print Receipt"
415
- msgstr "Skriv ut kvittering"
416
 
417
- #: ../includes/class-wcdn-print.php:68
418
- msgid "Print Receipts"
419
- msgstr "Skriv ut kvitteringer"
420
 
421
- #: ../includes/class-wcdn-print.php:69
422
- msgid "Receipt created."
423
- msgstr "Kvittering opprettet."
424
 
425
- #: ../includes/class-wcdn-print.php:70
426
- msgid "Receipts created."
427
- msgstr "Kvitteringer opprettet."
428
 
429
- #: ../includes/class-wcdn-print.php:71
430
- msgid "Enable Receipts"
431
- msgstr "Aktiver kvitteringer"
432
 
433
  # @ woocommerce-delivery-notes
434
- #: ../includes/class-wcdn-print.php:80
435
- msgid "Order"
436
- msgstr "Ordre"
437
-
438
- #: ../includes/class-wcdn-print.php:81
439
- msgid "Orders"
440
- msgstr "Ordrer"
441
 
442
  # @ woocommerce-delivery-notes
443
- #: ../includes/class-wcdn-print.php:82 ../includes/class-wcdn-settings.php:157
444
- msgid "Print Order"
445
- msgstr "Skriv ut ordre"
 
 
 
446
 
447
- #: ../includes/class-wcdn-print.php:83
448
- msgid "Print Orders"
449
- msgstr "Skriv ut ordrer"
450
 
451
- #: ../includes/class-wcdn-settings.php:72
452
- msgid ""
453
- "Do you really want to reset the counter to zero? This process can't be "
454
- "undone."
455
- msgstr ""
456
- "Er du sikkert på at du vil nullstille telleren? Du kan ikke angre denne "
457
- "prosessen."
458
 
459
- # @ woocommerce-delivery-notes
460
- #: ../includes/class-wcdn-settings.php:102 ../includes/class-wcdn-theme.php:56
461
- #: ../includes/class-wcdn-theme.php:91
462
- #: ../includes/wcdn-template-functions.php:127
463
- msgid "Print"
464
- msgstr "Skriv ut"
465
 
466
- #: ../includes/class-wcdn-settings.php:176
467
- #, php-format
468
- msgid ""
469
- "You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">"
470
- "invoice</a>, <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s\">delivery "
471
- "note</a> or <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> "
472
- "template."
473
- msgstr "Du kan forhåndsvise faktura, leveringsnotat eller kvitteringsmalen."
474
 
475
  # @ woocommerce-delivery-notes
476
- #: ../includes/class-wcdn-settings.php:177
477
- msgid ""
478
- "With the FAQ in the readme file you can learn how to customize the template."
479
- msgstr "Via FAQ i readme-fila kan du lære mer om hvordan du skreddersyr malen."
 
480
 
481
  # @ woocommerce-delivery-notes
482
- #: ../includes/class-wcdn-settings.php:188
483
- msgid "Company/Shop Logo"
484
- msgstr "Firma/Butikklogo"
485
 
486
  # @ woocommerce-delivery-notes
487
- #: ../includes/class-wcdn-settings.php:194
488
- msgid "Remove Logo"
489
- msgstr "Fjern logo"
490
 
491
  # @ woocommerce-delivery-notes
492
- #: ../includes/class-wcdn-settings.php:195
493
- msgid "Set Logo"
494
- msgstr "Sett logo"
495
 
496
  # @ woocommerce-delivery-notes
497
- #: ../includes/class-wcdn-settings.php:199
498
- msgid "A company/shop logo representing your business."
499
- msgstr "En firma/butikklogo som representerer din bedrift."
500
 
501
  # @ woocommerce-delivery-notes
502
- #: ../includes/class-wcdn-settings.php:200
503
- #: ../includes/class-wcdn-settings.php:213
504
- #: ../includes/class-wcdn-settings.php:226
505
- #: ../includes/class-wcdn-settings.php:239
506
- #: ../includes/class-wcdn-settings.php:252
507
- #: ../includes/class-wcdn-settings.php:265
508
- #: ../includes/class-wcdn-settings.php:382
509
- #: ../includes/class-wcdn-settings.php:397
510
- #: ../includes/class-wcdn-settings.php:412
511
- msgid "Note:"
512
- msgstr "Notat:"
513
 
514
  # @ woocommerce-delivery-notes
515
- #: ../includes/class-wcdn-settings.php:201
516
- msgid ""
517
- "When the image is printed, its pixel density will automatically be eight "
518
- "times higher than the original. This means, 1 printed inch will correspond "
519
- "to about 288 pixels on the screen. Example: an image with a width of 576 "
520
- "pixels and a height of 288 pixels will have a printed size of about 2 inches "
521
- "to 1 inch."
522
- msgstr ""
523
- "Når bildet skrives ut, vil pikseltettheten være åtte ganger høyere enn "
524
- "original. Hvilket betyr at 1 tommeprint tilsvarer rundt 288 piksler på "
525
- "skjerm. Eksempel: ett bilde med en bredde 576 piksler og høyde 288 "
526
- "piksler vil skrives med størrelse på ca 2 tommer til en tomme."
527
 
528
  # @ woocommerce-delivery-notes
529
- #: ../includes/class-wcdn-settings.php:207
530
- msgid "Company/Shop Name"
531
- msgstr "Firma/Butikklogo"
532
 
533
  # @ woocommerce-delivery-notes
534
- #: ../includes/class-wcdn-settings.php:212
535
- msgid "Your company/shop name for the Delivery Note."
536
- msgstr "Ditt firma/butikknavn for leveringsnotatet."
537
 
538
  # @ woocommerce-delivery-notes
539
- #: ../includes/class-wcdn-settings.php:214
540
- msgid ""
541
- "Leave blank to use the default Website/Blog title defined in WordPress "
542
- "settings. The name will be ignored when a Logo is set."
543
- msgstr ""
544
- "La stå tom for å benytte standard Nettside/Blog tittel definert i WordPress "
545
- "sine instillinger. Navnet ignoreres hvis logo blir definert."
546
 
547
  # @ woocommerce-delivery-notes
548
- #: ../includes/class-wcdn-settings.php:220
549
- msgid "Company/Shop Address"
550
- msgstr "Firma/Butikkadresse"
551
 
552
  # @ woocommerce-delivery-notes
553
- #: ../includes/class-wcdn-settings.php:225
554
- msgid ""
555
- "The postal address of the company/shop or even e-mail or telephone, which "
556
- "gets printed right after the company/shop name."
557
- msgstr ""
558
- "Postadressen til firma/butikk eller e-post og telefon som vil bli skrevet "
559
- "rett etter firma/butikknavn."
560
 
561
  # @ woocommerce-delivery-notes
562
- #: ../includes/class-wcdn-settings.php:227
563
- msgid "Leave blank to not print an address."
564
- msgstr "La stå tom hvis du ikke ønsker å ha med adresse."
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
4
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/woocommerce-"
5
+ "delivery-notes\n"
6
+ "POT-Creation-Date: 2018-10-22 19:01+0530\n"
7
+ "PO-Revision-Date: 2018-10-22 19:01+0530\n"
8
  "Last-Translator: Jon Kristian Nilsen <admin@divint.no>\n"
9
  "Language-Team: Norwegian (Bokmål)\n"
10
+ "Language: nb_NO\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
+ "X-Generator: Poedit 1.8.7.1\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
18
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
19
  "esc_attr_e;esc_attr__\n"
20
  "X-Poedit-Basepath: .\n"
21
  "X-Textdomain-Support: yes\n"
22
+ "X-Poedit-SearchPath-0: ..\n"
23
 
24
+ # @ woocommerce-delivery-notes
25
+ #: includes/class-wcdn-print.php:39 includes/class-wcdn-settings.php:237
26
+ msgid "Invoice"
27
+ msgstr "Faktura"
28
+
29
+ #: includes/class-wcdn-print.php:40
30
+ msgid "Invoices"
31
+ msgstr "Fakturaer"
32
 
33
  # @ woocommerce-delivery-notes
34
+ #: includes/class-wcdn-print.php:41
35
+ msgid "Print Invoice"
36
+ msgstr "Skriv ut faktura"
37
+
38
+ #: includes/class-wcdn-print.php:42
39
+ msgid "Print Invoices"
40
+ msgstr "Skriv ut fakturaer"
41
 
42
  # @ woocommerce-delivery-notes
43
+ #: includes/class-wcdn-print.php:43
44
+ msgid "Invoice created."
45
+ msgstr "Faktura opprettet."
46
+
47
+ #: includes/class-wcdn-print.php:44
48
+ msgid "Invoices created."
49
+ msgstr "Fakturaer opprettet."
50
+
51
+ #: includes/class-wcdn-print.php:45
52
+ msgid "Show \"Print Invoice\" button"
53
+ msgstr ""
54
 
55
  # @ woocommerce-delivery-notes
56
+ #: includes/class-wcdn-print.php:51
57
+ msgid "Delivery Note"
58
+ msgstr "Leveringsnotat"
59
+
60
+ #: includes/class-wcdn-print.php:52
61
+ msgid "Delivery Notes"
62
+ msgstr "Leveringsnotater"
63
 
64
  # @ woocommerce-delivery-notes
65
+ #: includes/class-wcdn-print.php:53
66
+ msgid "Print Delivery Note"
67
+ msgstr "Skriv ut leveringsnotat"
68
+
69
+ #: includes/class-wcdn-print.php:54
70
+ msgid "Print Delivery Notes"
71
+ msgstr "Skriv ut leveringsnotater"
72
+
73
+ #: includes/class-wcdn-print.php:55
74
+ msgid "Delivery Note created."
75
+ msgstr "Leveringsnotat opprettet."
76
+
77
+ #: includes/class-wcdn-print.php:56
78
+ msgid "Delivery Notes created."
79
+ msgstr "Leveringsnotater opprettet."
80
+
81
+ #: includes/class-wcdn-print.php:57
82
+ msgid "Show \"Print Delivery Note\" button"
83
  msgstr ""
 
 
 
84
 
85
+ #: includes/class-wcdn-print.php:63
86
+ msgid "Receipt"
87
+ msgstr "Kvittering"
88
+
89
+ #: includes/class-wcdn-print.php:64
90
+ msgid "Receipts"
91
+ msgstr "Kvitteringer"
92
+
93
+ #: includes/class-wcdn-print.php:65
94
+ msgid "Print Receipt"
95
+ msgstr "Skriv ut kvittering"
96
+
97
+ #: includes/class-wcdn-print.php:66
98
+ msgid "Print Receipts"
99
+ msgstr "Skriv ut kvitteringer"
100
+
101
+ #: includes/class-wcdn-print.php:67
102
+ msgid "Receipt created."
103
+ msgstr "Kvittering opprettet."
104
+
105
+ #: includes/class-wcdn-print.php:68
106
+ msgid "Receipts created."
107
+ msgstr "Kvitteringer opprettet."
108
+
109
+ #: includes/class-wcdn-print.php:69
110
+ msgid "Show \"Print Receipt\" button"
111
+ msgstr ""
112
 
113
  # @ woocommerce-delivery-notes
114
+ #: includes/class-wcdn-print.php:78
115
+ msgid "Order"
116
+ msgstr "Ordre"
117
+
118
+ #: includes/class-wcdn-print.php:79
119
+ msgid "Orders"
120
+ msgstr "Ordrer"
121
 
122
  # @ woocommerce-delivery-notes
123
+ #: includes/class-wcdn-print.php:80
124
+ msgid "Print Order"
125
+ msgstr "Skriv ut ordre"
126
+
127
+ #: includes/class-wcdn-print.php:81
128
+ msgid "Print Orders"
129
+ msgstr "Skriv ut ordrer"
130
+
131
+ #: includes/class-wcdn-print.php:93
132
+ msgid "Default"
133
+ msgstr ""
134
+
135
+ #: includes/class-wcdn-settings.php:67
136
  msgid ""
137
+ "Do you really want to reset the counter to zero? This process can't be "
138
+ "undone."
139
+ msgstr ""
140
+ "Er du sikkert på at du vil nullstille telleren? Du kan ikke angre denne "
141
+ "prosessen."
142
 
143
  # @ woocommerce-delivery-notes
144
+ #: includes/class-wcdn-settings.php:75 includes/class-wcdn-theme.php:57
145
+ #: includes/class-wcdn-theme.php:94 includes/wcdn-template-functions.php:130
146
+ msgid "Print"
147
+ msgstr "Skriv ut"
148
 
149
+ #: includes/class-wcdn-settings.php:106
150
+ msgid "Template"
151
+ msgstr ""
152
 
153
+ #: includes/class-wcdn-settings.php:113
154
+ msgid "Style"
155
+ msgstr ""
156
 
157
+ #: includes/class-wcdn-settings.php:114
158
+ msgid ""
159
+ "The default print style. Read the <a href=\"%1$s\">FAQ</a> to learn how to "
160
+ "customize it."
161
+ msgstr ""
162
+
163
+ #: includes/class-wcdn-settings.php:124
164
+ msgid "Shop Logo"
165
+ msgstr ""
166
+
167
+ #: includes/class-wcdn-settings.php:130
168
+ msgid ""
169
+ "A shop logo representing your business. When the image is printed, its pixel "
170
+ "density will automatically be eight times higher than the original. This "
171
+ "means, 1 printed inch will correspond to about 288 pixels on the screen."
172
+ msgstr ""
173
+
174
+ #: includes/class-wcdn-settings.php:134
175
+ msgid "Shop Name"
176
+ msgstr ""
177
+
178
+ #: includes/class-wcdn-settings.php:140
179
+ msgid ""
180
+ "The shop name. Leave blank to use the default Website or Blog title defined "
181
+ "in WordPress settings. The name will be ignored when a Logo is set."
182
+ msgstr ""
183
+
184
+ #: includes/class-wcdn-settings.php:144
185
+ msgid "Shop Address"
186
+ msgstr ""
187
+
188
+ #: includes/class-wcdn-settings.php:145
189
+ msgid "The postal address of the shop or even e-mail or telephone."
190
+ msgstr ""
191
+
192
+ #: includes/class-wcdn-settings.php:154
193
+ msgid "Complimentary Close"
194
+ msgstr "Avsluttningskompliment"
195
+
196
+ #: includes/class-wcdn-settings.php:155
197
+ msgid "Add a personal close, notes or season greetings."
198
+ msgstr ""
199
+
200
+ #: includes/class-wcdn-settings.php:164
201
+ msgid "Policies"
202
+ msgstr ""
203
+
204
+ #: includes/class-wcdn-settings.php:165
205
+ msgid "Add the shop policies, conditions, etc."
206
+ msgstr ""
207
 
208
  # @ woocommerce-delivery-notes
209
+ #: includes/class-wcdn-settings.php:174
210
+ msgid "Footer"
211
+ msgstr "Bunn"
212
+
213
+ #: includes/class-wcdn-settings.php:175
214
+ msgid ""
215
+ "Add a footer imprint, instructions, copyright notes, e-mail, telephone, etc."
216
+ msgstr ""
217
+
218
+ #: includes/class-wcdn-settings.php:189
219
+ msgid "Pages & Buttons"
220
+ msgstr ""
221
+
222
+ # @ woocommerce-delivery-notes
223
+ #: includes/class-wcdn-settings.php:196
224
  msgid "Print Page Endpoint"
225
  msgstr "Utskriftssidens endepunkt"
226
 
227
  # @ woocommerce-delivery-notes
228
+ #: includes/class-wcdn-settings.php:202
229
  msgid ""
230
  "The endpoint is appended to the accounts page URL to print the order. It "
231
  "should be unique."
233
  "Endepunktet legges til kontoens URL for å skrive ut ordren. Den bør være "
234
  "unik."
235
 
 
 
 
 
 
 
 
 
 
236
  # @ woocommerce-delivery-notes
237
+ #: includes/class-wcdn-settings.php:206
238
+ #: includes/wcdn-template-functions.php:275
 
 
 
 
 
239
  msgid "Email"
240
  msgstr "E-post"
241
 
242
+ #: includes/class-wcdn-settings.php:207
243
  msgid "Show print link in customer emails"
244
  msgstr "Vis skriv ut lenke i kundeepost."
245
 
246
+ #: includes/class-wcdn-settings.php:211
247
  msgid ""
248
  "This includes the emails for a new, processing and completed order. On top "
249
  "of that the customer invoice email also includes the link."
251
  "Dette inkluderer e-post for ny, behandler og ferdigstilte ordre. I tillegg "
252
  "vil kundefaktura også inkludere lenken."
253
 
254
+ #: includes/class-wcdn-settings.php:215
255
+ msgid "My Account"
256
+ msgstr "Min konto"
257
+
258
  # @ woocommerce-delivery-notes
259
+ #: includes/class-wcdn-settings.php:216
260
+ msgid "Show print button on the \"View Order\" page"
261
+ msgstr "Vis utskriftsknapp på \"Vis ordre\" -siden."
262
 
263
+ # @ woocommerce-delivery-notes
264
+ #: includes/class-wcdn-settings.php:224
265
+ msgid "Show print buttons on the \"My Account\" page"
266
+ msgstr "Vis utskriftsknapp på \"Min konto\" -siden."
267
+
268
+ #: includes/class-wcdn-settings.php:244
269
+ msgid "Numbering"
270
+ msgstr ""
271
 
272
+ #: includes/class-wcdn-settings.php:245
273
  msgid "Create invoice numbers"
274
  msgstr "Lag fakturanummer"
275
 
276
+ #: includes/class-wcdn-settings.php:253
277
+ msgid "Next Number"
278
+ msgstr ""
 
 
 
 
279
 
280
+ #: includes/class-wcdn-settings.php:260
281
+ msgid "The next invoice number."
282
+ msgstr ""
283
 
284
+ #: includes/class-wcdn-settings.php:264
285
+ msgid "Number Prefix"
286
+ msgstr ""
287
 
288
+ #: includes/class-wcdn-settings.php:271
289
  msgid "This text will be prepended to the invoice number."
290
  msgstr "Denne teksten vil legges i front av fakturanummer."
291
 
292
+ #: includes/class-wcdn-settings.php:275
293
+ msgid "Number Suffix"
294
+ msgstr ""
 
 
 
 
295
 
296
+ #: includes/class-wcdn-settings.php:282
297
  msgid "This text will be appended to the invoice number."
298
  msgstr "Denne teksten vil legges bak fakturanummer."
299
 
300
+ #: includes/class-wcdn-settings.php:327
301
+ msgid "Admin"
302
+ msgstr ""
 
 
 
 
303
 
304
+ #: includes/class-wcdn-settings.php:330
305
+ msgid ""
306
+ "The print buttons are available on the order listing and on the order detail "
307
+ "screen."
308
+ msgstr ""
309
 
310
+ #: includes/class-wcdn-settings.php:372
311
+ msgid ""
312
+ "This section lets you customise the content. You can preview the <a href="
313
+ "\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target="
314
+ "\"%4$s\" class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s"
315
+ "\" class=\"%5$s\">receipt</a> template."
316
+ msgstr ""
317
 
318
+ #: includes/class-wcdn-settings.php:435
319
+ msgid "Select"
320
+ msgstr ""
 
321
 
322
+ #: includes/class-wcdn-settings.php:439
323
+ msgid "Remove"
 
 
 
 
324
  msgstr ""
 
 
325
 
326
+ #: includes/class-wcdn-theme.php:112
327
  msgid "Print your order"
328
  msgstr "Skriv ut din ordre"
329
 
330
+ #: includes/class-wcdn-theme.php:119
331
  msgid "Print:"
332
  msgstr "Skriv ut:"
333
 
334
+ #: includes/class-wcdn-theme.php:119
335
  msgid "Open print view in browser"
336
  msgstr "Åpne utskriftsvisning i nettleser"
337
 
338
  # @ woocommerce-delivery-notes
339
+ #: includes/class-wcdn-writepanel.php:218
340
  msgid "Print now"
341
  msgstr "Skriv ut nå"
342
 
343
  # @ woocommerce-delivery-notes
344
+ #: includes/class-wcdn-writepanel.php:232
345
  msgid "Order Printing"
346
  msgstr "Ordren skrives ut"
347
 
348
+ #: includes/class-wcdn-writepanel.php:259
349
  msgid "Invoice number: "
350
  msgstr "Fakturanummer:"
351
 
352
+ #: includes/class-wcdn-writepanel.php:260
353
  msgid "Invoice date: "
354
  msgstr "Fakturadato:"
355
 
356
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:75
357
+ msgid "If you have a moment, please let us know why you are deactivating"
358
+ msgstr ""
359
+
360
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:76
361
+ msgid "Submit & Deactivate"
362
+ msgstr ""
363
+
364
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:77
365
+ msgid "Deactivate"
366
+ msgstr ""
367
+
368
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:78
369
+ msgid "Cancel"
370
+ msgstr ""
371
+
372
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:79
373
+ msgid "Yes - Deactivate"
374
+ msgstr ""
375
+
376
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:83
377
+ msgid "I found a better plugin"
378
+ msgstr ""
379
+
380
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:84
381
+ msgid "What's the plugin's name?"
382
+ msgstr ""
383
+
384
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:85
385
+ msgid "I only needed the plugin for a short period"
386
+ msgstr ""
387
+
388
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:86
389
+ msgid "The plugin is not working"
390
+ msgstr ""
391
+
392
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:87
393
+ msgid "Kindly share what didn't work so we can fix it for future users..."
394
+ msgstr ""
395
+
396
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:88
397
+ msgid "The plugin is great, but I need specific feature that you don't support"
398
+ msgstr ""
399
+
400
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:89
401
+ msgid "What feature?"
402
+ msgstr ""
403
+
404
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:90
405
+ msgid "I don't like to share my information with you"
406
+ msgstr ""
407
+
408
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:91
409
+ msgctxt ""
410
+ "the text of the 'other' reason for deactivating the plugin that is shown in "
411
+ "the modal box."
412
+ msgid "Other"
413
+ msgstr ""
414
+
415
+ #: includes/component/faq-support/ts-faq-support.php:127
416
+ msgid "Frequently Asked Questions for %s"
417
+ msgstr ""
418
+
419
+ #: includes/component/faq-support/ts-faq-support.php:176
420
+ msgid "FAQ & Support"
421
+ msgstr ""
422
+
423
+ #: includes/component/tracking-data/ts-tracking.php:120
424
+ #: includes/component/tracking-data/ts-tracking.php:180
425
+ msgid "Reset usage tracking"
426
+ msgstr ""
427
+
428
+ #: includes/component/tracking-data/ts-tracking.php:122
429
+ msgid ""
430
+ "This will reset your usage tracking settings, causing it to show the opt-in "
431
+ "banner again and not sending any data"
432
+ msgstr ""
433
+
434
+ #: includes/component/tracking-data/ts-tracking.php:225
435
+ msgid "Once in a Week"
436
+ msgstr ""
437
+
438
+ #: includes/component/tracking-data/ts-tracking.php:311
439
+ msgid "Allow"
440
+ msgstr ""
441
+
442
+ #: includes/component/tracking-data/ts-tracking.php:312
443
+ msgid "No thanks"
444
+ msgstr ""
445
+
446
+ #: includes/component/welcome-page/templates/social-media-elements.php:10
447
+ #: includes/wcdn-welcome.php:231
448
+ msgid "Follow %s"
449
+ msgstr ""
450
+
451
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:19
452
+ #: includes/wcdn-welcome.php:99
453
+ msgid ""
454
+ "Thank you for activating or updating to the latest version of WooCommerce "
455
+ "Print Invoice & Delivery Note! If you're a first time user, welcome! You're "
456
+ "well on your way to explore the print functionality for your WooCommerce "
457
+ "orders."
458
+ msgstr ""
459
+
460
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:29
461
+ #: includes/wcdn-welcome.php:109
462
+ msgid "Get Started with WooCommerce Print Invoice & Delivery Note"
463
+ msgstr ""
464
+
465
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:33
466
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:62
467
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:68
468
+ #: includes/wcdn-welcome.php:113 includes/wcdn-welcome.php:142
469
+ #: includes/wcdn-welcome.php:148
470
+ msgid "WooCommerce Print Invoice & Delivery Note"
471
+ msgstr ""
472
+
473
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:37
474
+ #: includes/wcdn-welcome.php:117
475
+ msgid "Add settings"
476
+ msgstr ""
477
+
478
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:39
479
+ #: includes/wcdn-welcome.php:119
480
+ msgid ""
481
+ "To enable the print functionality for your invoices, delivery notes & "
482
+ "receipts, you just need to set it up under WooCommerce -> Settings -> Print "
483
+ "page. Here you can also setup the Company Logo that will appear on the "
484
+ "printed items, Company Address & other information."
485
+ msgstr ""
486
+
487
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:41
488
+ #: includes/wcdn-welcome.php:121
489
+ msgid "Click Here to go to Print page"
490
+ msgstr ""
491
+
492
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:52
493
+ #: includes/wcdn-welcome.php:132
494
+ msgid "Enable Print button for Customers."
495
+ msgstr ""
496
+
497
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:54
498
+ #: includes/wcdn-welcome.php:134
499
+ msgid ""
500
+ "Allow customers to print the WooCommerce order invoice from the customer "
501
+ "notification email, from the My Account page or from the View Order page "
502
+ "under My Account."
503
+ msgstr ""
504
+
505
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:56
506
+ #: includes/wcdn-welcome.php:136
507
+ msgid "Click Here to Enable Print button for Customers"
508
+ msgstr ""
509
+
510
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:72
511
+ #: includes/wcdn-welcome.php:152
512
+ msgid "Enable Invoice Numbering"
513
+ msgstr ""
514
+
515
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:74
516
+ msgid ""
517
+ "If you want to change the default invoice numbers & set some numbering "
518
+ "scheme of your own, then you can set it here with a starting invoice number, "
519
+ "a prefix & suffix. For example, you could set it as: TS/001/17-18."
520
+ msgstr ""
521
+
522
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:76
523
+ #: includes/wcdn-welcome.php:156
524
+ msgid "Click Here to Enable Invoice Numbering"
525
+ msgstr ""
526
+
527
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:87
528
+ #: includes/wcdn-welcome.php:167
529
+ msgid "Getting to Know Tyche Softwares"
530
+ msgstr ""
531
+
532
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:90
533
+ #: includes/wcdn-welcome.php:170
534
+ msgid "Visit the Tyche Softwares Website"
535
+ msgstr ""
536
+
537
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:91
538
+ #: includes/wcdn-welcome.php:171
539
+ msgid "View all Premium Plugins"
540
+ msgstr ""
541
+
542
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:100
543
+ #: includes/wcdn-welcome.php:180
544
+ msgid "Meet the team"
545
+ msgstr ""
546
+
547
+ #: includes/component/welcome-page/ts-welcome.php:167
548
+ msgid "Welcome to %s %s"
549
+ msgstr ""
550
+
551
+ #: includes/wcdn-all-component.php:118
552
+ msgid ""
553
+ "Thank you for using WooCommerce Print Invoice & Delivery Note plugin! Now "
554
+ "make your deliveries more accurate by allowing customers to select their "
555
+ "preferred delivery date & time from Product Delivery Date Pro for "
556
+ "WooCommerce. <strong><a target=\"_blank\" href= \"https://www.tychesoftwares."
557
+ "com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/?"
558
+ "utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">Get "
559
+ "it now!</a></strong>"
560
+ msgstr ""
561
+
562
+ #: includes/wcdn-all-component.php:120
563
+ msgid ""
564
+ "Never login to your admin to check your deliveries by syncing the delivery "
565
+ "dates to the Google Calendar from Product Delivery Date Pro for WooCommerce. "
566
+ "<strong><a target=\"_blank\" href= \"https://www.tychesoftwares.com/store/"
567
+ "premium-plugins/product-delivery-date-pro-for-woocommerce/checkout?"
568
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
569
+ "\">Get it now!</a></strong>"
570
+ msgstr ""
571
+
572
+ #: includes/wcdn-all-component.php:122
573
+ msgid ""
574
+ "You can now view all your deliveries in list view or in calendar view from "
575
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
576
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
577
+ "delivery-date-pro-for-woocommerce/checkout?"
578
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
579
+ "\">Get it now!</a></strong>."
580
+ msgstr ""
581
+
582
+ #: includes/wcdn-all-component.php:124
583
+ msgid ""
584
+ "Allow your customers to pay extra for delivery for certain Weekdays/Dates "
585
+ "from Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
586
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
587
+ "delivery-date-pro-for-woocommerce/checkout?"
588
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
589
+ "\">Have it now!</a></strong>."
590
+ msgstr ""
591
+
592
+ #: includes/wcdn-all-component.php:126
593
+ msgid ""
594
+ "Customers can now edit the Delivery date & time on cart and checkout page or "
595
+ "they can reschedule the deliveries for the already placed orders from "
596
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
597
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
598
+ "delivery-date-pro-for-woocommerce/checkout?"
599
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
600
+ "\">Have it now!</a></strong>."
601
+ msgstr ""
602
+
603
+ #: includes/wcdn-template-functions.php:246
604
  msgid "Invoice Number"
605
  msgstr "Fakturanummer:"
606
 
607
+ #: includes/wcdn-template-functions.php:253
608
+ msgid "Invoice Date"
609
+ msgstr ""
610
+
611
  # @ woocommerce-delivery-notes
612
+ #: includes/wcdn-template-functions.php:259
613
  msgid "Order Number"
614
  msgstr "Ordrenummer"
615
 
616
  # @ woocommerce-delivery-notes
617
+ #: includes/wcdn-template-functions.php:264
618
  msgid "Order Date"
619
  msgstr "Ordredato"
620
 
621
  # @ woocommerce-delivery-notes
622
+ #: includes/wcdn-template-functions.php:269
623
  msgid "Payment Method"
624
  msgstr "Betalingsmetode"
625
 
626
  # @ woocommerce-delivery-notes
627
+ #: includes/wcdn-template-functions.php:282
628
  msgid "Telephone"
629
  msgstr "Telefon"
630
 
631
+ #: includes/wcdn-template-functions.php:315
632
  msgid "SKU:"
633
  msgstr "SKU:"
634
 
635
+ #: includes/wcdn-template-functions.php:409
636
+ #: includes/wcdn-template-functions.php:413
 
637
  msgid "(Includes %s)"
638
  msgstr "(Inkluderer %s)"
639
 
640
+ #: includes/wcdn-template-functions.php:429
641
  msgid "Refund"
642
  msgstr "Refundere"
643
 
644
+ #: includes/wcdn-template-functions.php:441
645
  msgid "Order Subtotal"
646
  msgstr "Ordre subtotal"
647
 
648
+ #: includes/wcdn-welcome.php:54
649
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note %s"
650
+ msgstr ""
651
+
652
+ #: includes/wcdn-welcome.php:55
653
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note"
654
+ msgstr ""
655
+
656
+ #: includes/wcdn-welcome.php:154
657
+ msgid ""
658
+ "f you want to change the default invoice numbers & set some numbering scheme "
659
+ "of your own, then you can set it here with a starting invoice number, a "
660
+ "prefix & suffix. For example, you could set it as: TS/001/17-18."
661
+ msgstr ""
662
+
663
+ #: includes/wcdn-welcome.php:186
664
+ msgid "Current Offers"
665
+ msgstr ""
666
+
667
  # @ woocommerce-delivery-notes
668
+ #: templates/print-order/print-content.php:28
669
  msgid "Billing Address"
670
  msgstr "Fakturaadresse"
671
 
672
  # @ woocommerce-delivery-notes
673
+ #: templates/print-order/print-content.php:31
674
+ #: templates/print-order/print-content.php:40
675
  msgid "N/A"
676
  msgstr "N/A"
677
 
678
  # @ woocommerce-delivery-notes
679
+ #: templates/print-order/print-content.php:37
680
  msgid "Shipping Address"
681
  msgstr "Leveringsadresse"
682
 
683
  # @ woocommerce-delivery-notes
684
+ #: templates/print-order/print-content.php:71
685
  msgid "Product"
686
  msgstr "Produkt"
687
 
688
+ #: templates/print-order/print-content.php:72
689
  msgid "Price"
690
  msgstr "Pris"
691
 
692
+ #: templates/print-order/print-content.php:73
693
  msgid "Quantity"
694
  msgstr "Kvantitet"
695
 
696
  # @ woocommerce-delivery-notes
697
+ #: templates/print-order/print-content.php:74
698
  msgid "Total"
699
  msgstr "Total"
700
 
701
  # @ woocommerce-delivery-notes
702
+ #: templates/print-order/print-content.php:147
703
  msgid "Download:"
704
  msgstr "Last ned:"
705
 
706
  # @ woocommerce-delivery-notes
707
+ #: templates/print-order/print-content.php:148
 
708
  msgid "%s Files"
709
  msgstr "%s filer"
710
 
711
  # @ woocommerce-delivery-notes
712
+ #: templates/print-order/print-content.php:202
713
  msgid "Customer Note"
714
  msgstr "Kundenotat"
715
 
716
+ #: woocommerce-delivery-notes.php:96 woocommerce-delivery-notes.php:103
717
+ msgid "Cheatin&#8217; huh?"
718
+ msgstr ""
719
+
720
+ #: woocommerce-delivery-notes.php:275
721
+ msgid ""
722
+ "I can't differentiate between Invoice, Delivery Notes & Receipt. The "
723
+ "templates are the same. "
724
+ msgstr ""
725
+
726
+ #: woocommerce-delivery-notes.php:281
727
+ msgid "The invoice sent through mail can't be downloaded as PDF directly."
728
+ msgstr ""
729
+
730
+ #: woocommerce-delivery-notes.php:287
731
+ msgid "The plugin is not compatible with another plugin."
732
+ msgstr ""
733
+
734
+ #: woocommerce-delivery-notes.php:293
735
+ msgid "This plugin is not useful to me."
736
+ msgstr ""
737
+
738
  # @ woocommerce-delivery-notes
739
+ #: woocommerce-delivery-notes.php:351
740
  msgid "Go to the settings page"
741
  msgstr "Gå til instillinger"
742
 
743
  # @ woocommerce-delivery-notes
744
+ #: woocommerce-delivery-notes.php:351
745
  msgid "Settings"
746
  msgstr "Instillinger"
747
 
748
  # @ woocommerce-delivery-notes
749
+ #~ msgid ""
750
+ #~ "Add some personal notes, or season greetings or whatever (e.g. Thank You "
751
+ #~ "for Your Order!, Merry Christmas!, etc.)."
752
+ #~ msgstr ""
753
+ #~ "Legg til personlig notat (f.eks. Takk for din ordre! God Jul!, etc.)."
 
 
754
 
755
  # @ woocommerce-delivery-notes
756
+ #~ msgid "Leave blank to not print any personal notes."
757
+ #~ msgstr "La stå tom for ikke å printe personlig notat."
 
758
 
759
+ # @ woocommerce-delivery-notes
760
+ #~ msgid "Returns Policy, Conditions, etc"
761
+ #~ msgstr "Returrett, salgsbetingelser, etc."
762
 
763
  # @ woocommerce-delivery-notes
764
+ #~ msgid ""
765
+ #~ "Here you can add some more policies, conditions etc. For example add a "
766
+ #~ "returns policy in case the client would like to send back some goods. In "
767
+ #~ "some countries (e.g. in the European Union) this is required so please "
768
+ #~ "add any required info in accordance with the statutory regulations."
769
+ #~ msgstr ""
770
+ #~ "Her kan du legge til flere betingelser. For eksempel en returrett i "
771
+ #~ "tilfelle kunden ønsker å sende tilbake varer. I noen land (f.eks. EU) er "
772
+ #~ "dette påkrevd så vennligst følg reglementet."
773
 
774
+ # @ woocommerce-delivery-notes
775
+ #~ msgid "Leave blank to not print any policies or conditions."
776
+ #~ msgstr "La stå tom for ikke å skrive ut."
777
 
778
+ # @ woocommerce-delivery-notes
779
+ #~ msgid ""
780
+ #~ "Add some further footer imprint, e-mail, telephone, copyright notes etc. "
781
+ #~ "This makes the printed sheets a bit more branded."
782
+ #~ msgstr "Legg til noe i bunnen, e-post, telefon eller adresse."
783
 
784
  # @ woocommerce-delivery-notes
785
+ #~ msgid "Leave blank to not print a footer."
786
+ #~ msgstr "La stå tom for ikke å skrive ut."
 
787
 
788
+ #~ msgid "Print Options"
789
+ #~ msgstr "Utskriftsvalg"
790
+
791
+ #~ msgid "Types"
792
+ #~ msgstr "Typer"
793
+
794
+ #~ msgid "Theme Options"
795
+ #~ msgstr "Temavalg"
796
 
797
  # @ woocommerce-delivery-notes
798
+ #~ msgid "Order Numbering"
799
+ #~ msgstr "Ordrenummerering"
 
800
 
801
+ #~ msgid "Invoice Numbering"
802
+ #~ msgstr "Fakturanummerering"
 
803
 
804
+ #~ msgid "Invoice Number Start"
805
+ #~ msgstr "Fakturanummer start"
 
806
 
807
+ #~ msgid "Start the numbering at the specified number."
808
+ #~ msgstr "Start nummerering på ett spesifikt nummer."
 
809
 
810
+ #~ msgid "Use only integers."
811
+ #~ msgstr "Bruk bare tall."
 
812
 
813
+ #~ msgid "Invoice Number Prefix"
814
+ #~ msgstr "Prefiks for fakturanummer"
 
815
 
816
+ #~ msgid "Leave blank to not add a prefix."
817
+ #~ msgstr "La stå blank for ikke å legge til."
 
818
 
819
+ #~ msgid "Invoice Number Suffix"
820
+ #~ msgstr "Suffiks for fakturanummer"
 
821
 
822
+ #~ msgid "Leave blank to not add a suffix."
823
+ #~ msgstr "La stå blank for ikke å legge til."
 
824
 
825
+ #~ msgid "Invoice Number Counter"
826
+ #~ msgstr "Teller for fakturanummer"
 
827
 
828
+ #~ msgid "Reset Counter …"
829
+ #~ msgstr "Nullstill teller ..."
 
830
 
831
+ #~ msgid "Sequential Order Number"
832
+ #~ msgstr "Sekvensielle ordrenummer"
 
833
 
834
  # @ woocommerce-delivery-notes
835
+ #~ msgid "Sequential numbering is enabled."
836
+ #~ msgstr "Sekvensiell nummerering er aktivert."
 
 
 
 
 
837
 
838
  # @ woocommerce-delivery-notes
839
+ #~ msgid ""
840
+ #~ "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
841
+ #~ "Numbers</a> Plugin."
842
+ #~ msgstr ""
843
+ #~ "Installer og aktiver gratisutvidelse av <a href=\"%s\">WooCommerce "
844
+ #~ "Sequential Order Numbers</a>."
845
 
846
+ #~ msgid "Enable Invoices"
847
+ #~ msgstr "Aktiver fakturaer"
 
848
 
849
+ #~ msgid "Enable Delivery Notes"
850
+ #~ msgstr "Aktiver leveringsnotater"
 
 
 
 
 
851
 
852
+ #~ msgid "Enable Receipts"
853
+ #~ msgstr "Aktiver kvitteringer"
 
 
 
 
854
 
855
+ #~ msgid ""
856
+ #~ "You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s"
857
+ #~ "\">invoice</a>, <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s\">delivery "
858
+ #~ "note</a> or <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> "
859
+ #~ "template."
860
+ #~ msgstr "Du kan forhåndsvise faktura, leveringsnotat eller kvitteringsmalen."
 
 
861
 
862
  # @ woocommerce-delivery-notes
863
+ #~ msgid ""
864
+ #~ "With the FAQ in the readme file you can learn how to customize the "
865
+ #~ "template."
866
+ #~ msgstr ""
867
+ #~ "Via FAQ i readme-fila kan du lære mer om hvordan du skreddersyr malen."
868
 
869
  # @ woocommerce-delivery-notes
870
+ #~ msgid "Company/Shop Logo"
871
+ #~ msgstr "Firma/Butikklogo"
 
872
 
873
  # @ woocommerce-delivery-notes
874
+ #~ msgid "Remove Logo"
875
+ #~ msgstr "Fjern logo"
 
876
 
877
  # @ woocommerce-delivery-notes
878
+ #~ msgid "Set Logo"
879
+ #~ msgstr "Sett logo"
 
880
 
881
  # @ woocommerce-delivery-notes
882
+ #~ msgid "A company/shop logo representing your business."
883
+ #~ msgstr "En firma/butikklogo som representerer din bedrift."
 
884
 
885
  # @ woocommerce-delivery-notes
886
+ #~ msgid "Note:"
887
+ #~ msgstr "Notat:"
 
 
 
 
 
 
 
 
 
888
 
889
  # @ woocommerce-delivery-notes
890
+ #~ msgid ""
891
+ #~ "When the image is printed, its pixel density will automatically be eight "
892
+ #~ "times higher than the original. This means, 1 printed inch will "
893
+ #~ "correspond to about 288 pixels on the screen. Example: an image with a "
894
+ #~ "width of 576 pixels and a height of 288 pixels will have a printed size "
895
+ #~ "of about 2 inches to 1 inch."
896
+ #~ msgstr ""
897
+ #~ "Når bildet skrives ut, vil pikseltettheten være åtte ganger høyere enn "
898
+ #~ "original. Hvilket betyr at 1 tomme print tilsvarer rundt 288 piksler "
899
+ #~ "på skjerm. Eksempel: ett bilde med en bredde 576 piksler og høyde på "
900
+ #~ "288 piksler vil skrives med størrelseca 2 tommer til en tomme."
 
901
 
902
  # @ woocommerce-delivery-notes
903
+ #~ msgid "Company/Shop Name"
904
+ #~ msgstr "Firma/Butikklogo"
 
905
 
906
  # @ woocommerce-delivery-notes
907
+ #~ msgid "Your company/shop name for the Delivery Note."
908
+ #~ msgstr "Ditt firma/butikknavn for leveringsnotatet."
 
909
 
910
  # @ woocommerce-delivery-notes
911
+ #~ msgid ""
912
+ #~ "Leave blank to use the default Website/Blog title defined in WordPress "
913
+ #~ "settings. The name will be ignored when a Logo is set."
914
+ #~ msgstr ""
915
+ #~ "La stå tom for å benytte standard Nettside/Blog tittel definert i "
916
+ #~ "WordPress sine instillinger. Navnet ignoreres hvis logo blir definert."
 
917
 
918
  # @ woocommerce-delivery-notes
919
+ #~ msgid "Company/Shop Address"
920
+ #~ msgstr "Firma/Butikkadresse"
 
921
 
922
  # @ woocommerce-delivery-notes
923
+ #~ msgid ""
924
+ #~ "The postal address of the company/shop or even e-mail or telephone, which "
925
+ #~ "gets printed right after the company/shop name."
926
+ #~ msgstr ""
927
+ #~ "Postadressen til firma/butikk eller e-post og telefon som vil bli skrevet "
928
+ #~ "rett etter firma/butikknavn."
 
929
 
930
  # @ woocommerce-delivery-notes
931
+ #~ msgid "Leave blank to not print an address."
932
+ #~ msgstr "La stå tom hvis du ikke ønsker å ha med adresse."
 
languages/woocommerce-delivery-notes-nl_NL.mo CHANGED
Binary file
languages/woocommerce-delivery-notes-nl_NL.po CHANGED
@@ -3,9 +3,10 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
6
- "Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
7
- "POT-Creation-Date: 2014-09-19 21:09+0100\n"
8
- "PO-Revision-Date: 2014-10-18 15:51+0100\n"
 
9
  "Last-Translator: Bas Middelham <bas@middelham.nl>\n"
10
  "Language-Team: \n"
11
  "Language: nl_NL\n"
@@ -13,177 +14,206 @@ msgstr ""
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
16
- "X-Generator: Poedit 1.6.10\n"
17
 
18
- #: ../includes/class-wcdn-settings.php:90 ../includes/class-wcdn-theme.php:48
19
- #: ../includes/class-wcdn-theme.php:83
20
- #: ../includes/wcdn-template-functions.php:120
21
- msgid "Print"
22
- msgstr "Print"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
 
24
- #: ../includes/class-wcdn-settings.php:128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  msgid "Print Order"
26
  msgstr "Print bestelling"
27
 
28
- # @ woocommerce-delivery-notes
29
- #: ../includes/class-wcdn-settings.php:147
30
- #, php-format
31
- msgid ""
32
- "You can preview the <a href=\"%1$s\" target=\"%3$s\" class=\"%4$s\">invoice "
33
- "template</a> or <a href=\"%2$s\" target=\"%3$s\" class=\"%4$s\">delivery "
34
- "note template</a>."
35
  msgstr ""
36
- "Bekijk een voorbeeld van het <a href=\"%1$s\" target=\"%3$s\" class=\"%4$s"
37
- "\">factuur sjabloon</a> of het <a href=\"%2$s\" target=\"%3$s\" class=\"%4$s"
38
- "\">pakbon sjabloon</a>."
39
 
40
- # @ woocommerce-delivery-notes
41
- #: ../includes/class-wcdn-settings.php:148
42
- msgid ""
43
- "With the FAQ in the readme file you can learn how to customize the template."
44
- msgstr ""
45
- "Lees de FAQ in het readme bestand om te leren hoe je een sjabloon kan "
46
- "aanpassen."
47
-
48
- #: ../includes/class-wcdn-settings.php:159
49
- msgid "Company/Shop Logo"
50
- msgstr "Winkel- of bedrijfslogo"
51
-
52
- #: ../includes/class-wcdn-settings.php:165
53
- msgid "Remove Logo"
54
- msgstr "Verwijder Logo"
55
-
56
- #: ../includes/class-wcdn-settings.php:166
57
- msgid "Set Logo"
58
- msgstr "Plaats Logo"
59
-
60
- #: ../includes/class-wcdn-settings.php:170
61
- msgid "A company/shop logo representing your business."
62
- msgstr "Een logo voor je winkel of bedrijf. "
63
-
64
- #: ../includes/class-wcdn-settings.php:171
65
- #: ../includes/class-wcdn-settings.php:184
66
- #: ../includes/class-wcdn-settings.php:197
67
- #: ../includes/class-wcdn-settings.php:210
68
- #: ../includes/class-wcdn-settings.php:223
69
- #: ../includes/class-wcdn-settings.php:236
70
- #: ../includes/class-wcdn-settings.php:312
71
- #: ../includes/class-wcdn-settings.php:328
72
- #: ../includes/class-wcdn-settings.php:344
73
- msgid "Note:"
74
- msgstr "Opmerking:"
75
-
76
- #: ../includes/class-wcdn-settings.php:172
77
  msgid ""
78
- "When the image is printed, its pixel density will automatically be eight "
79
- "times higher than the original. This means, 1 printed inch will correspond "
80
- "to about 288 pixels on the screen. Example: an image with a width of 576 "
81
- "pixels and a height of 288 pixels will have a printed size of about 2 inches "
82
- "to 1 inch."
83
  msgstr ""
84
- "Als de afbeelding wordt geprint is de resolutie anders is dan het origineel. "
85
- "1 cm komt overeen met 142 pixels. Voorbeeld: aan afbeelding met een breedte "
86
- "van 994 pixels en een hoogte van 568 pixels wordt afgedrukt met 7cm breedte "
87
- "en 4 cm hoogte."
88
 
89
- #: ../includes/class-wcdn-settings.php:178
90
- msgid "Company/Shop Name"
91
- msgstr "Winkel- of bedrijfsnaam"
 
 
 
 
 
92
 
93
- #: ../includes/class-wcdn-settings.php:183
94
- msgid "Your company/shop name for the Delivery Note."
95
- msgstr "Jouw winkel- of bedrijfsnaam voor op de pakbon"
96
 
97
- # @ woocommerce-delivery-notes
98
- #: ../includes/class-wcdn-settings.php:185
99
  msgid ""
100
- "Leave blank to use the default Website/Blog title defined in WordPress "
101
- "settings. The name will be ignored when a Logo is set."
102
  msgstr ""
103
- "Laat leeg om de naam te gebruiken die in de WordPress settings staat. De "
104
- "naam zal worden genegeerd als er een logo wordt gebruikt."
105
 
106
- #: ../includes/class-wcdn-settings.php:191
107
- msgid "Company/Shop Address"
108
- msgstr "Winkel- of bedrijfsadres"
109
 
110
- # @ woocommerce-delivery-notes
111
- #: ../includes/class-wcdn-settings.php:196
 
 
 
 
 
 
 
 
 
 
112
  msgid ""
113
- "The postal address of the company/shop or even e-mail or telephone, which "
114
- "gets printed right after the company/shop name."
115
  msgstr ""
116
- "Het postadres, e-mail of telefoonnummer van de winkel of het bedrijf. Deze "
117
- "wordt onder het logo of bedrijfsnaam geprint. "
118
 
119
- #: ../includes/class-wcdn-settings.php:198
120
- msgid "Leave blank to not print an address."
121
- msgstr "Laat leeg om geen adres te printen."
 
 
 
 
122
 
123
  # @ woocommerce-delivery-notes
124
- #: ../includes/class-wcdn-settings.php:204
125
  msgid "Complimentary Close"
126
  msgstr "Ondertekening"
127
 
128
- #: ../includes/class-wcdn-settings.php:209
129
- msgid ""
130
- "Add some personal notes, or season greetings or whatever (e.g. Thank You for "
131
- "Your Order!, Merry Christmas!, etc.)."
132
  msgstr ""
133
- "Voeg persoonlijke opmerkingen of andere info toe (bv. Bedankt voor uw "
134
- "bestelling!, Fijne Kerstdagen!, etc.)."
135
 
136
- #: ../includes/class-wcdn-settings.php:211
137
- msgid "Leave blank to not print any personal notes."
138
- msgstr "Laat leeg om geen opmerkingen te printen."
139
-
140
- #: ../includes/class-wcdn-settings.php:217
141
- msgid "Returns Policy, Conditions, etc"
142
- msgstr "Algemene Voorwaarden"
143
-
144
- #: ../includes/class-wcdn-settings.php:222
145
- msgid ""
146
- "Here you can add some more policies, conditions etc. For example add a "
147
- "returns policy in case the client would like to send back some goods. In "
148
- "some countries (e.g. in the European Union) this is required so please add "
149
- "any required info in accordance with the statutory regulations."
150
  msgstr ""
151
- "Voeg hier meer richtlijnen en voorwaarden toe. Bijvoorbeeld iets over de "
152
- "retourregels voor het geval de klant iets wil terugsturen. In sommige landen "
153
- "(zoals de EU) is dit verplicht."
154
 
155
- #: ../includes/class-wcdn-settings.php:224
156
- msgid "Leave blank to not print any policies or conditions."
157
- msgstr "Laat leeg om geen algemene voorwaarden te printen."
158
 
159
  # @ woocommerce-delivery-notes
160
- #: ../includes/class-wcdn-settings.php:230
161
  msgid "Footer"
162
  msgstr "Voettekst"
163
 
164
- # @ woocommerce-delivery-notes
165
- #: ../includes/class-wcdn-settings.php:235
166
  msgid ""
167
- "Add some further footer imprint, e-mail, telephone, copyright notes etc. "
168
- "This makes the printed sheets a bit more branded."
169
  msgstr ""
170
- "Voeg wat meer voettekst info toe zoals e-mail, telefoon, copyright, etc. "
171
-
172
- #: ../includes/class-wcdn-settings.php:237
173
- msgid "Leave blank to not print a footer."
174
- msgstr "Laat leeg om geen voettekst te printen."
175
 
176
- #: ../includes/class-wcdn-settings.php:244
177
- msgid "Front-end Options"
178
- msgstr "Front-end Opties"
179
 
180
  # @ woocommerce-delivery-notes
181
- #: ../includes/class-wcdn-settings.php:249
182
  msgid "Print Page Endpoint"
183
  msgstr "Printpagina Eindpunt"
184
 
185
  # @ woocommerce-delivery-notes
186
- #: ../includes/class-wcdn-settings.php:256
187
  msgid ""
188
  "The endpoint is appended to the accounts page URL to print the order. It "
189
  "should be unique."
@@ -191,249 +221,665 @@ msgstr ""
191
  "Het eindpunt wordt toegevoegd aan de URL van de accounts pagina om het te "
192
  "printen. Deze moet uniek zijn."
193
 
194
- #: ../includes/class-wcdn-settings.php:262
195
- msgid "Print Buttons"
196
- msgstr "Printknoppen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
197
 
198
  # @ woocommerce-delivery-notes
199
- #: ../includes/class-wcdn-settings.php:269
200
  msgid "Show print button on the \"View Order\" page"
201
  msgstr "Toon printknop op de \"Bekijk Bestelling\" pagina"
202
 
203
  # @ woocommerce-delivery-notes
204
- #: ../includes/class-wcdn-settings.php:276
205
  msgid "Show print buttons on the \"My Account\" page"
206
  msgstr "Toon printknop op de \"Mijn Account\" pagina"
207
 
208
- #: ../includes/class-wcdn-settings.php:284
209
- msgid "Order Numbering"
210
- msgstr "Bestelnummers"
211
-
212
- #: ../includes/class-wcdn-settings.php:289
213
- #: ../includes/wcdn-template-functions.php:209
214
- msgid "Invoice Number"
215
- msgstr "Factuurnummer"
216
 
217
- #: ../includes/class-wcdn-settings.php:297
218
  msgid "Create invoice numbers"
219
  msgstr "Maak factuurnummers"
220
 
221
- #: ../includes/class-wcdn-settings.php:304
222
- msgid "Invoice Number Start"
223
- msgstr "Factuurnummer Start"
224
-
225
- #: ../includes/class-wcdn-settings.php:311
226
- msgid "Start the numbering at the specified number."
227
- msgstr "Begin de nummering bij een specifiek getal."
228
-
229
- #: ../includes/class-wcdn-settings.php:313
230
- msgid "Use only integers."
231
- msgstr "Gebruik alleen gehele getallen."
232
 
233
- #: ../includes/class-wcdn-settings.php:314
234
- #: ../includes/class-wcdn-settings.php:330
235
- #: ../includes/class-wcdn-settings.php:346
236
- msgid "Already created invoice numbers are not affected by changes."
237
- msgstr "Reeds gemaakte factuurnummers worden niet aangepast."
238
 
239
- #: ../includes/class-wcdn-settings.php:320
240
- msgid "Invoice Number Prefix"
241
- msgstr "Factuurnummer voorvoegsel"
242
 
243
- #: ../includes/class-wcdn-settings.php:327
244
  msgid "This text will be prepended to the invoice number."
245
  msgstr "Deze tekst wordt achteraan het factuurnummer aangehecht."
246
 
247
- #: ../includes/class-wcdn-settings.php:329
248
- msgid "Leave blank to not add a prefix."
249
- msgstr "Laat leeg om geen voorvoegsel te gebruiken."
250
-
251
- #: ../includes/class-wcdn-settings.php:336
252
- msgid "Invoice Number Suffix"
253
- msgstr "Factuurnummer achtervoegsel"
254
 
255
- #: ../includes/class-wcdn-settings.php:343
256
  msgid "This text will be appended to the invoice number."
257
  msgstr "Deze tekst wordt vooraan het factuurnummer aangehecht."
258
 
259
- #: ../includes/class-wcdn-settings.php:345
260
- msgid "Leave blank to not add a suffix."
261
- msgstr "Laat leeg om geen achtervoegsel te gebruiken."
262
-
263
- #: ../includes/class-wcdn-settings.php:352
264
- msgid "Sequential Order Number"
265
- msgstr "Sequential Order Numbers"
266
 
267
- #: ../includes/class-wcdn-settings.php:356
268
- msgid "Sequential numbering is enabled."
269
- msgstr "'Sequential Order Numbers' is ingeschakeld."
 
 
270
 
271
- #: ../includes/class-wcdn-settings.php:358
272
- #, php-format
273
  msgid ""
274
- "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
275
- "Numbers</a> Plugin."
 
 
276
  msgstr ""
277
- "Installeer en activeer de gratis <a href=\"%s\">WooCommerce Sequential Order "
278
- "Numbers</a> Plugin."
279
 
280
- #: ../includes/class-wcdn-writepanel.php:83
281
- #: ../includes/class-wcdn-writepanel.php:84
282
- #: ../includes/class-wcdn-writepanel.php:108
283
- #: ../includes/class-wcdn-writepanel.php:109
284
- #: ../includes/class-wcdn-writepanel.php:204
285
- msgid "Print Invoice"
286
- msgstr "Print Factuur"
287
 
288
- #: ../includes/class-wcdn-writepanel.php:86
289
- #: ../includes/class-wcdn-writepanel.php:87
290
- #: ../includes/class-wcdn-writepanel.php:111
291
- #: ../includes/class-wcdn-writepanel.php:112
292
- #: ../includes/class-wcdn-writepanel.php:205
293
- msgid "Print Delivery Note"
294
- msgstr "Print Pakbon"
295
 
296
- #: ../includes/class-wcdn-writepanel.php:89
297
- #: ../includes/class-wcdn-writepanel.php:90
298
- #: ../includes/class-wcdn-writepanel.php:114
299
- #: ../includes/class-wcdn-writepanel.php:115
300
- #: ../includes/class-wcdn-writepanel.php:206
301
- msgid "Print Receipt"
302
- msgstr "Print Kwitantie"
303
 
304
- #: ../includes/class-wcdn-writepanel.php:175
305
- #, php-format
306
- msgid "Invoice created."
307
- msgid_plural "%s invoices created."
308
- msgstr[0] "Factuur is gemaakt."
309
- msgstr[1] "%s facturen gemaakt."
310
-
311
- #: ../includes/class-wcdn-writepanel.php:177
312
- #, php-format
313
- msgid "Delivery note created."
314
- msgid_plural "%s delivery notes created."
315
- msgstr[0] "Pakbon is gemaakt."
316
- msgstr[1] "%s pakbonnen zijn gemaakt."
317
-
318
- #: ../includes/class-wcdn-writepanel.php:179
319
- #, php-format
320
- msgid "Receipt created."
321
- msgid_plural "%s receipts created."
322
- msgstr[0] "Kwitantie is gemaakt."
323
- msgstr[1] "%s kwitanties zijn gemaakt."
324
 
325
- #: ../includes/class-wcdn-writepanel.php:183
 
 
 
 
326
  msgid "Print now"
327
  msgstr "Print nu"
328
 
329
- #: ../includes/class-wcdn-writepanel.php:194
330
  msgid "Order Printing"
331
  msgstr "Print Bestelling "
332
 
333
- #: ../includes/class-wcdn-writepanel.php:217
334
  msgid "Invoice number: "
335
  msgstr "Factuurnummer:"
336
 
337
- #: ../includes/class-wcdn-writepanel.php:218
338
  msgid "Invoice date: "
339
  msgstr "Factuurdatum:"
340
 
341
- #: ../includes/wcdn-template-functions.php:32
342
- msgid "Invoice"
343
- msgstr "Factuur"
344
 
345
- #: ../includes/wcdn-template-functions.php:34
346
- msgid "Delivery Note"
347
- msgstr "Pakbon"
348
 
349
- #: ../includes/wcdn-template-functions.php:36
350
- msgid "Receipt"
351
- msgstr "Kwitantie"
352
 
353
- #: ../includes/wcdn-template-functions.php:38
354
- msgid "Order"
355
- msgstr "Bestelling"
356
 
357
- #: ../includes/wcdn-template-functions.php:215
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
358
  msgid "Order Number"
359
  msgstr "Bestelnummer"
360
 
361
- #: ../includes/wcdn-template-functions.php:220
362
  msgid "Order Date"
363
  msgstr "Besteldatum"
364
 
365
- #: ../includes/wcdn-template-functions.php:225
366
  msgid "Payment Method"
367
  msgstr "Betaalmethode"
368
 
369
  # @ woocommerce-delivery-notes
370
- #: ../includes/wcdn-template-functions.php:231
371
- msgid "Email"
372
- msgstr "E-mail"
373
-
374
- # @ woocommerce-delivery-notes
375
- #: ../includes/wcdn-template-functions.php:238
376
  msgid "Telephone"
377
  msgstr "Telefoon"
378
 
379
- #: ../includes/wcdn-template-functions.php:271
380
  msgid "SKU:"
381
  msgstr "Art.Nr."
382
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
383
  # @ woocommerce-delivery-notes
384
- #: ../templates/print-order/print-content.php:28
385
  msgid "Billing Address"
386
  msgstr "Factuuradres"
387
 
388
- #: ../templates/print-order/print-content.php:31
389
- #: ../templates/print-order/print-content.php:42
390
  msgid "N/A"
391
  msgstr "N.v.t."
392
 
393
  # @ woocommerce-delivery-notes
394
- #: ../templates/print-order/print-content.php:39
395
  msgid "Shipping Address"
396
  msgstr "Verzendadres"
397
 
398
- #: ../templates/print-order/print-content.php:74
399
  msgid "Product"
400
  msgstr "Product"
401
 
402
- #: ../templates/print-order/print-content.php:71
403
  msgid "Price"
404
  msgstr "Prijs"
405
 
406
- #: ../templates/print-order/print-content.php:75
407
  msgid "Quantity"
408
  msgstr "Hoeveelheid"
409
 
410
- #: ../templates/print-order/print-content.php:76
411
  msgid "Total"
412
  msgstr "Totaal"
413
 
414
- #: ../templates/print-order/print-content.php:100
415
  msgid "Download:"
416
  msgstr "Download:"
417
 
418
  # @ woocommerce-delivery-notes
419
- #: ../templates/print-order/print-content.php:101
420
- #, php-format
421
  msgid "%s Files"
422
  msgstr "%s Bestanden"
423
 
424
  # @ woocommerce-delivery-notes
425
- #: ../templates/print-order/print-content.php:148
426
  msgid "Customer Note"
427
  msgstr "Klantnotitie"
428
 
429
- #: ../woocommerce-delivery-notes.php:144
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
430
  msgid "Go to the settings page"
431
  msgstr "Ga naar de instellingen"
432
 
433
- #: ../woocommerce-delivery-notes.php:144
434
  msgid "Settings"
435
  msgstr "Instellingen"
436
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
437
  #~ msgid "2.0"
438
  #~ msgstr "2.0"
439
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/woocommerce-"
7
+ "delivery-notes\n"
8
+ "POT-Creation-Date: 2018-10-22 19:02+0530\n"
9
+ "PO-Revision-Date: 2018-10-22 19:02+0530\n"
10
  "Last-Translator: Bas Middelham <bas@middelham.nl>\n"
11
  "Language-Team: \n"
12
  "Language: nl_NL\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
+ "X-Generator: Poedit 1.8.7.1\n"
18
 
19
+ #: includes/class-wcdn-print.php:39 includes/class-wcdn-settings.php:237
20
+ msgid "Invoice"
21
+ msgstr "Factuur"
22
+
23
+ #: includes/class-wcdn-print.php:40
24
+ msgid "Invoices"
25
+ msgstr ""
26
+
27
+ #: includes/class-wcdn-print.php:41
28
+ msgid "Print Invoice"
29
+ msgstr "Print Factuur"
30
+
31
+ #: includes/class-wcdn-print.php:42
32
+ msgid "Print Invoices"
33
+ msgstr ""
34
+
35
+ #: includes/class-wcdn-print.php:43
36
+ #, fuzzy
37
+ msgid "Invoice created."
38
+ msgstr "Factuur is gemaakt."
39
+
40
+ #: includes/class-wcdn-print.php:44
41
+ msgid "Invoices created."
42
+ msgstr ""
43
+
44
+ #: includes/class-wcdn-print.php:45
45
+ msgid "Show \"Print Invoice\" button"
46
+ msgstr ""
47
+
48
+ #: includes/class-wcdn-print.php:51
49
+ msgid "Delivery Note"
50
+ msgstr "Pakbon"
51
+
52
+ #: includes/class-wcdn-print.php:52
53
+ msgid "Delivery Notes"
54
+ msgstr ""
55
+
56
+ #: includes/class-wcdn-print.php:53
57
+ msgid "Print Delivery Note"
58
+ msgstr "Print Pakbon"
59
+
60
+ #: includes/class-wcdn-print.php:54
61
+ msgid "Print Delivery Notes"
62
+ msgstr ""
63
+
64
+ #: includes/class-wcdn-print.php:55
65
+ msgid "Delivery Note created."
66
+ msgstr ""
67
+
68
+ #: includes/class-wcdn-print.php:56
69
+ msgid "Delivery Notes created."
70
+ msgstr ""
71
+
72
+ #: includes/class-wcdn-print.php:57
73
+ msgid "Show \"Print Delivery Note\" button"
74
+ msgstr ""
75
+
76
+ #: includes/class-wcdn-print.php:63
77
+ msgid "Receipt"
78
+ msgstr "Kwitantie"
79
 
80
+ #: includes/class-wcdn-print.php:64
81
+ msgid "Receipts"
82
+ msgstr ""
83
+
84
+ #: includes/class-wcdn-print.php:65
85
+ msgid "Print Receipt"
86
+ msgstr "Print Kwitantie"
87
+
88
+ #: includes/class-wcdn-print.php:66
89
+ msgid "Print Receipts"
90
+ msgstr ""
91
+
92
+ #: includes/class-wcdn-print.php:67
93
+ #, fuzzy
94
+ msgid "Receipt created."
95
+ msgstr "Kwitantie is gemaakt."
96
+
97
+ #: includes/class-wcdn-print.php:68
98
+ msgid "Receipts created."
99
+ msgstr ""
100
+
101
+ #: includes/class-wcdn-print.php:69
102
+ msgid "Show \"Print Receipt\" button"
103
+ msgstr ""
104
+
105
+ #: includes/class-wcdn-print.php:78
106
+ msgid "Order"
107
+ msgstr "Bestelling"
108
+
109
+ #: includes/class-wcdn-print.php:79
110
+ msgid "Orders"
111
+ msgstr ""
112
+
113
+ #: includes/class-wcdn-print.php:80
114
  msgid "Print Order"
115
  msgstr "Print bestelling"
116
 
117
+ #: includes/class-wcdn-print.php:81
118
+ msgid "Print Orders"
 
 
 
 
 
119
  msgstr ""
 
 
 
120
 
121
+ #: includes/class-wcdn-print.php:93
122
+ msgid "Default"
123
+ msgstr ""
124
+
125
+ #: includes/class-wcdn-settings.php:67
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
126
  msgid ""
127
+ "Do you really want to reset the counter to zero? This process can't be "
128
+ "undone."
 
 
 
129
  msgstr ""
 
 
 
 
130
 
131
+ #: includes/class-wcdn-settings.php:75 includes/class-wcdn-theme.php:57
132
+ #: includes/class-wcdn-theme.php:94 includes/wcdn-template-functions.php:130
133
+ msgid "Print"
134
+ msgstr "Print"
135
+
136
+ #: includes/class-wcdn-settings.php:106
137
+ msgid "Template"
138
+ msgstr ""
139
 
140
+ #: includes/class-wcdn-settings.php:113
141
+ msgid "Style"
142
+ msgstr ""
143
 
144
+ #: includes/class-wcdn-settings.php:114
 
145
  msgid ""
146
+ "The default print style. Read the <a href=\"%1$s\">FAQ</a> to learn how to "
147
+ "customize it."
148
  msgstr ""
 
 
149
 
150
+ #: includes/class-wcdn-settings.php:124
151
+ msgid "Shop Logo"
152
+ msgstr ""
153
 
154
+ #: includes/class-wcdn-settings.php:130
155
+ msgid ""
156
+ "A shop logo representing your business. When the image is printed, its pixel "
157
+ "density will automatically be eight times higher than the original. This "
158
+ "means, 1 printed inch will correspond to about 288 pixels on the screen."
159
+ msgstr ""
160
+
161
+ #: includes/class-wcdn-settings.php:134
162
+ msgid "Shop Name"
163
+ msgstr ""
164
+
165
+ #: includes/class-wcdn-settings.php:140
166
  msgid ""
167
+ "The shop name. Leave blank to use the default Website or Blog title defined "
168
+ "in WordPress settings. The name will be ignored when a Logo is set."
169
  msgstr ""
 
 
170
 
171
+ #: includes/class-wcdn-settings.php:144
172
+ msgid "Shop Address"
173
+ msgstr ""
174
+
175
+ #: includes/class-wcdn-settings.php:145
176
+ msgid "The postal address of the shop or even e-mail or telephone."
177
+ msgstr ""
178
 
179
  # @ woocommerce-delivery-notes
180
+ #: includes/class-wcdn-settings.php:154
181
  msgid "Complimentary Close"
182
  msgstr "Ondertekening"
183
 
184
+ #: includes/class-wcdn-settings.php:155
185
+ msgid "Add a personal close, notes or season greetings."
 
 
186
  msgstr ""
 
 
187
 
188
+ #: includes/class-wcdn-settings.php:164
189
+ msgid "Policies"
 
 
 
 
 
 
 
 
 
 
 
 
190
  msgstr ""
 
 
 
191
 
192
+ #: includes/class-wcdn-settings.php:165
193
+ msgid "Add the shop policies, conditions, etc."
194
+ msgstr ""
195
 
196
  # @ woocommerce-delivery-notes
197
+ #: includes/class-wcdn-settings.php:174
198
  msgid "Footer"
199
  msgstr "Voettekst"
200
 
201
+ #: includes/class-wcdn-settings.php:175
 
202
  msgid ""
203
+ "Add a footer imprint, instructions, copyright notes, e-mail, telephone, etc."
 
204
  msgstr ""
 
 
 
 
 
205
 
206
+ #: includes/class-wcdn-settings.php:189
207
+ msgid "Pages & Buttons"
208
+ msgstr ""
209
 
210
  # @ woocommerce-delivery-notes
211
+ #: includes/class-wcdn-settings.php:196
212
  msgid "Print Page Endpoint"
213
  msgstr "Printpagina Eindpunt"
214
 
215
  # @ woocommerce-delivery-notes
216
+ #: includes/class-wcdn-settings.php:202
217
  msgid ""
218
  "The endpoint is appended to the accounts page URL to print the order. It "
219
  "should be unique."
221
  "Het eindpunt wordt toegevoegd aan de URL van de accounts pagina om het te "
222
  "printen. Deze moet uniek zijn."
223
 
224
+ # @ woocommerce-delivery-notes
225
+ #: includes/class-wcdn-settings.php:206
226
+ #: includes/wcdn-template-functions.php:275
227
+ msgid "Email"
228
+ msgstr "E-mail"
229
+
230
+ #: includes/class-wcdn-settings.php:207
231
+ msgid "Show print link in customer emails"
232
+ msgstr ""
233
+
234
+ #: includes/class-wcdn-settings.php:211
235
+ msgid ""
236
+ "This includes the emails for a new, processing and completed order. On top "
237
+ "of that the customer invoice email also includes the link."
238
+ msgstr ""
239
+
240
+ #: includes/class-wcdn-settings.php:215
241
+ msgid "My Account"
242
+ msgstr ""
243
 
244
  # @ woocommerce-delivery-notes
245
+ #: includes/class-wcdn-settings.php:216
246
  msgid "Show print button on the \"View Order\" page"
247
  msgstr "Toon printknop op de \"Bekijk Bestelling\" pagina"
248
 
249
  # @ woocommerce-delivery-notes
250
+ #: includes/class-wcdn-settings.php:224
251
  msgid "Show print buttons on the \"My Account\" page"
252
  msgstr "Toon printknop op de \"Mijn Account\" pagina"
253
 
254
+ #: includes/class-wcdn-settings.php:244
255
+ msgid "Numbering"
256
+ msgstr ""
 
 
 
 
 
257
 
258
+ #: includes/class-wcdn-settings.php:245
259
  msgid "Create invoice numbers"
260
  msgstr "Maak factuurnummers"
261
 
262
+ #: includes/class-wcdn-settings.php:253
263
+ msgid "Next Number"
264
+ msgstr ""
 
 
 
 
 
 
 
 
265
 
266
+ #: includes/class-wcdn-settings.php:260
267
+ msgid "The next invoice number."
268
+ msgstr ""
 
 
269
 
270
+ #: includes/class-wcdn-settings.php:264
271
+ msgid "Number Prefix"
272
+ msgstr ""
273
 
274
+ #: includes/class-wcdn-settings.php:271
275
  msgid "This text will be prepended to the invoice number."
276
  msgstr "Deze tekst wordt achteraan het factuurnummer aangehecht."
277
 
278
+ #: includes/class-wcdn-settings.php:275
279
+ msgid "Number Suffix"
280
+ msgstr ""
 
 
 
 
281
 
282
+ #: includes/class-wcdn-settings.php:282
283
  msgid "This text will be appended to the invoice number."
284
  msgstr "Deze tekst wordt vooraan het factuurnummer aangehecht."
285
 
286
+ #: includes/class-wcdn-settings.php:327
287
+ msgid "Admin"
288
+ msgstr ""
 
 
 
 
289
 
290
+ #: includes/class-wcdn-settings.php:330
291
+ msgid ""
292
+ "The print buttons are available on the order listing and on the order detail "
293
+ "screen."
294
+ msgstr ""
295
 
296
+ #: includes/class-wcdn-settings.php:372
 
297
  msgid ""
298
+ "This section lets you customise the content. You can preview the <a href="
299
+ "\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target="
300
+ "\"%4$s\" class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s"
301
+ "\" class=\"%5$s\">receipt</a> template."
302
  msgstr ""
 
 
303
 
304
+ #: includes/class-wcdn-settings.php:435
305
+ msgid "Select"
306
+ msgstr ""
 
 
 
 
307
 
308
+ #: includes/class-wcdn-settings.php:439
309
+ msgid "Remove"
310
+ msgstr ""
 
 
 
 
311
 
312
+ #: includes/class-wcdn-theme.php:112
313
+ msgid "Print your order"
314
+ msgstr ""
 
 
 
 
315
 
316
+ #: includes/class-wcdn-theme.php:119
317
+ msgid "Print:"
318
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
319
 
320
+ #: includes/class-wcdn-theme.php:119
321
+ msgid "Open print view in browser"
322
+ msgstr ""
323
+
324
+ #: includes/class-wcdn-writepanel.php:218
325
  msgid "Print now"
326
  msgstr "Print nu"
327
 
328
+ #: includes/class-wcdn-writepanel.php:232
329
  msgid "Order Printing"
330
  msgstr "Print Bestelling "
331
 
332
+ #: includes/class-wcdn-writepanel.php:259
333
  msgid "Invoice number: "
334
  msgstr "Factuurnummer:"
335
 
336
+ #: includes/class-wcdn-writepanel.php:260
337
  msgid "Invoice date: "
338
  msgstr "Factuurdatum:"
339
 
340
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:75
341
+ msgid "If you have a moment, please let us know why you are deactivating"
342
+ msgstr ""
343
 
344
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:76
345
+ msgid "Submit & Deactivate"
346
+ msgstr ""
347
 
348
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:77
349
+ msgid "Deactivate"
350
+ msgstr ""
351
 
352
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:78
353
+ msgid "Cancel"
354
+ msgstr ""
355
 
356
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:79
357
+ msgid "Yes - Deactivate"
358
+ msgstr ""
359
+
360
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:83
361
+ msgid "I found a better plugin"
362
+ msgstr ""
363
+
364
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:84
365
+ msgid "What's the plugin's name?"
366
+ msgstr ""
367
+
368
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:85
369
+ msgid "I only needed the plugin for a short period"
370
+ msgstr ""
371
+
372
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:86
373
+ msgid "The plugin is not working"
374
+ msgstr ""
375
+
376
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:87
377
+ msgid "Kindly share what didn't work so we can fix it for future users..."
378
+ msgstr ""
379
+
380
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:88
381
+ msgid "The plugin is great, but I need specific feature that you don't support"
382
+ msgstr ""
383
+
384
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:89
385
+ msgid "What feature?"
386
+ msgstr ""
387
+
388
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:90
389
+ msgid "I don't like to share my information with you"
390
+ msgstr ""
391
+
392
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:91
393
+ msgctxt ""
394
+ "the text of the 'other' reason for deactivating the plugin that is shown in "
395
+ "the modal box."
396
+ msgid "Other"
397
+ msgstr ""
398
+
399
+ #: includes/component/faq-support/ts-faq-support.php:127
400
+ msgid "Frequently Asked Questions for %s"
401
+ msgstr ""
402
+
403
+ #: includes/component/faq-support/ts-faq-support.php:176
404
+ msgid "FAQ & Support"
405
+ msgstr ""
406
+
407
+ #: includes/component/tracking-data/ts-tracking.php:120
408
+ #: includes/component/tracking-data/ts-tracking.php:180
409
+ msgid "Reset usage tracking"
410
+ msgstr ""
411
+
412
+ #: includes/component/tracking-data/ts-tracking.php:122
413
+ msgid ""
414
+ "This will reset your usage tracking settings, causing it to show the opt-in "
415
+ "banner again and not sending any data"
416
+ msgstr ""
417
+
418
+ #: includes/component/tracking-data/ts-tracking.php:225
419
+ msgid "Once in a Week"
420
+ msgstr ""
421
+
422
+ #: includes/component/tracking-data/ts-tracking.php:311
423
+ msgid "Allow"
424
+ msgstr ""
425
+
426
+ #: includes/component/tracking-data/ts-tracking.php:312
427
+ msgid "No thanks"
428
+ msgstr ""
429
+
430
+ #: includes/component/welcome-page/templates/social-media-elements.php:10
431
+ #: includes/wcdn-welcome.php:231
432
+ msgid "Follow %s"
433
+ msgstr ""
434
+
435
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:19
436
+ #: includes/wcdn-welcome.php:99
437
+ msgid ""
438
+ "Thank you for activating or updating to the latest version of WooCommerce "
439
+ "Print Invoice & Delivery Note! If you're a first time user, welcome! You're "
440
+ "well on your way to explore the print functionality for your WooCommerce "
441
+ "orders."
442
+ msgstr ""
443
+
444
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:29
445
+ #: includes/wcdn-welcome.php:109
446
+ msgid "Get Started with WooCommerce Print Invoice & Delivery Note"
447
+ msgstr ""
448
+
449
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:33
450
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:62
451
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:68
452
+ #: includes/wcdn-welcome.php:113 includes/wcdn-welcome.php:142
453
+ #: includes/wcdn-welcome.php:148
454
+ msgid "WooCommerce Print Invoice & Delivery Note"
455
+ msgstr ""
456
+
457
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:37
458
+ #: includes/wcdn-welcome.php:117
459
+ msgid "Add settings"
460
+ msgstr ""
461
+
462
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:39
463
+ #: includes/wcdn-welcome.php:119
464
+ msgid ""
465
+ "To enable the print functionality for your invoices, delivery notes & "
466
+ "receipts, you just need to set it up under WooCommerce -> Settings -> Print "
467
+ "page. Here you can also setup the Company Logo that will appear on the "
468
+ "printed items, Company Address & other information."
469
+ msgstr ""
470
+
471
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:41
472
+ #: includes/wcdn-welcome.php:121
473
+ msgid "Click Here to go to Print page"
474
+ msgstr ""
475
+
476
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:52
477
+ #: includes/wcdn-welcome.php:132
478
+ msgid "Enable Print button for Customers."
479
+ msgstr ""
480
+
481
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:54
482
+ #: includes/wcdn-welcome.php:134
483
+ msgid ""
484
+ "Allow customers to print the WooCommerce order invoice from the customer "
485
+ "notification email, from the My Account page or from the View Order page "
486
+ "under My Account."
487
+ msgstr ""
488
+
489
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:56
490
+ #: includes/wcdn-welcome.php:136
491
+ msgid "Click Here to Enable Print button for Customers"
492
+ msgstr ""
493
+
494
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:72
495
+ #: includes/wcdn-welcome.php:152
496
+ msgid "Enable Invoice Numbering"
497
+ msgstr ""
498
+
499
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:74
500
+ msgid ""
501
+ "If you want to change the default invoice numbers & set some numbering "
502
+ "scheme of your own, then you can set it here with a starting invoice number, "
503
+ "a prefix & suffix. For example, you could set it as: TS/001/17-18."
504
+ msgstr ""
505
+
506
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:76
507
+ #: includes/wcdn-welcome.php:156
508
+ msgid "Click Here to Enable Invoice Numbering"
509
+ msgstr ""
510
+
511
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:87
512
+ #: includes/wcdn-welcome.php:167
513
+ msgid "Getting to Know Tyche Softwares"
514
+ msgstr ""
515
+
516
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:90
517
+ #: includes/wcdn-welcome.php:170
518
+ msgid "Visit the Tyche Softwares Website"
519
+ msgstr ""
520
+
521
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:91
522
+ #: includes/wcdn-welcome.php:171
523
+ msgid "View all Premium Plugins"
524
+ msgstr ""
525
+
526
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:100
527
+ #: includes/wcdn-welcome.php:180
528
+ msgid "Meet the team"
529
+ msgstr ""
530
+
531
+ #: includes/component/welcome-page/ts-welcome.php:167
532
+ msgid "Welcome to %s %s"
533
+ msgstr ""
534
+
535
+ #: includes/wcdn-all-component.php:118
536
+ msgid ""
537
+ "Thank you for using WooCommerce Print Invoice & Delivery Note plugin! Now "
538
+ "make your deliveries more accurate by allowing customers to select their "
539
+ "preferred delivery date & time from Product Delivery Date Pro for "
540
+ "WooCommerce. <strong><a target=\"_blank\" href= \"https://www.tychesoftwares."
541
+ "com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/?"
542
+ "utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">Get "
543
+ "it now!</a></strong>"
544
+ msgstr ""
545
+
546
+ #: includes/wcdn-all-component.php:120
547
+ msgid ""
548
+ "Never login to your admin to check your deliveries by syncing the delivery "
549
+ "dates to the Google Calendar from Product Delivery Date Pro for WooCommerce. "
550
+ "<strong><a target=\"_blank\" href= \"https://www.tychesoftwares.com/store/"
551
+ "premium-plugins/product-delivery-date-pro-for-woocommerce/checkout?"
552
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
553
+ "\">Get it now!</a></strong>"
554
+ msgstr ""
555
+
556
+ #: includes/wcdn-all-component.php:122
557
+ msgid ""
558
+ "You can now view all your deliveries in list view or in calendar view from "
559
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
560
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
561
+ "delivery-date-pro-for-woocommerce/checkout?"
562
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
563
+ "\">Get it now!</a></strong>."
564
+ msgstr ""
565
+
566
+ #: includes/wcdn-all-component.php:124
567
+ msgid ""
568
+ "Allow your customers to pay extra for delivery for certain Weekdays/Dates "
569
+ "from Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
570
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
571
+ "delivery-date-pro-for-woocommerce/checkout?"
572
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
573
+ "\">Have it now!</a></strong>."
574
+ msgstr ""
575
+
576
+ #: includes/wcdn-all-component.php:126
577
+ msgid ""
578
+ "Customers can now edit the Delivery date & time on cart and checkout page or "
579
+ "they can reschedule the deliveries for the already placed orders from "
580
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
581
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
582
+ "delivery-date-pro-for-woocommerce/checkout?"
583
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
584
+ "\">Have it now!</a></strong>."
585
+ msgstr ""
586
+
587
+ #: includes/wcdn-template-functions.php:246
588
+ msgid "Invoice Number"
589
+ msgstr "Factuurnummer"
590
+
591
+ #: includes/wcdn-template-functions.php:253
592
+ msgid "Invoice Date"
593
+ msgstr ""
594
+
595
+ #: includes/wcdn-template-functions.php:259
596
  msgid "Order Number"
597
  msgstr "Bestelnummer"
598
 
599
+ #: includes/wcdn-template-functions.php:264
600
  msgid "Order Date"
601
  msgstr "Besteldatum"
602
 
603
+ #: includes/wcdn-template-functions.php:269
604
  msgid "Payment Method"
605
  msgstr "Betaalmethode"
606
 
607
  # @ woocommerce-delivery-notes
608
+ #: includes/wcdn-template-functions.php:282
 
 
 
 
 
609
  msgid "Telephone"
610
  msgstr "Telefoon"
611
 
612
+ #: includes/wcdn-template-functions.php:315
613
  msgid "SKU:"
614
  msgstr "Art.Nr."
615
 
616
+ #: includes/wcdn-template-functions.php:409
617
+ #: includes/wcdn-template-functions.php:413
618
+ msgid "(Includes %s)"
619
+ msgstr ""
620
+
621
+ #: includes/wcdn-template-functions.php:429
622
+ msgid "Refund"
623
+ msgstr ""
624
+
625
+ #: includes/wcdn-template-functions.php:441
626
+ msgid "Order Subtotal"
627
+ msgstr ""
628
+
629
+ #: includes/wcdn-welcome.php:54
630
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note %s"
631
+ msgstr ""
632
+
633
+ #: includes/wcdn-welcome.php:55
634
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note"
635
+ msgstr ""
636
+
637
+ #: includes/wcdn-welcome.php:154
638
+ msgid ""
639
+ "f you want to change the default invoice numbers & set some numbering scheme "
640
+ "of your own, then you can set it here with a starting invoice number, a "
641
+ "prefix & suffix. For example, you could set it as: TS/001/17-18."
642
+ msgstr ""
643
+
644
+ #: includes/wcdn-welcome.php:186
645
+ msgid "Current Offers"
646
+ msgstr ""
647
+
648
  # @ woocommerce-delivery-notes
649
+ #: templates/print-order/print-content.php:28
650
  msgid "Billing Address"
651
  msgstr "Factuuradres"
652
 
653
+ #: templates/print-order/print-content.php:31
654
+ #: templates/print-order/print-content.php:40
655
  msgid "N/A"
656
  msgstr "N.v.t."
657
 
658
  # @ woocommerce-delivery-notes
659
+ #: templates/print-order/print-content.php:37
660
  msgid "Shipping Address"
661
  msgstr "Verzendadres"
662
 
663
+ #: templates/print-order/print-content.php:71
664
  msgid "Product"
665
  msgstr "Product"
666
 
667
+ #: templates/print-order/print-content.php:72
668
  msgid "Price"
669
  msgstr "Prijs"
670
 
671
+ #: templates/print-order/print-content.php:73
672
  msgid "Quantity"
673
  msgstr "Hoeveelheid"
674
 
675
+ #: templates/print-order/print-content.php:74
676
  msgid "Total"
677
  msgstr "Totaal"
678
 
679
+ #: templates/print-order/print-content.php:147
680
  msgid "Download:"
681
  msgstr "Download:"
682
 
683
  # @ woocommerce-delivery-notes
684
+ #: templates/print-order/print-content.php:148
 
685
  msgid "%s Files"
686
  msgstr "%s Bestanden"
687
 
688
  # @ woocommerce-delivery-notes
689
+ #: templates/print-order/print-content.php:202
690
  msgid "Customer Note"
691
  msgstr "Klantnotitie"
692
 
693
+ #: woocommerce-delivery-notes.php:96 woocommerce-delivery-notes.php:103
694
+ msgid "Cheatin&#8217; huh?"
695
+ msgstr ""
696
+
697
+ #: woocommerce-delivery-notes.php:275
698
+ msgid ""
699
+ "I can't differentiate between Invoice, Delivery Notes & Receipt. The "
700
+ "templates are the same. "
701
+ msgstr ""
702
+
703
+ #: woocommerce-delivery-notes.php:281
704
+ msgid "The invoice sent through mail can't be downloaded as PDF directly."
705
+ msgstr ""
706
+
707
+ #: woocommerce-delivery-notes.php:287
708
+ msgid "The plugin is not compatible with another plugin."
709
+ msgstr ""
710
+
711
+ #: woocommerce-delivery-notes.php:293
712
+ msgid "This plugin is not useful to me."
713
+ msgstr ""
714
+
715
+ #: woocommerce-delivery-notes.php:351
716
  msgid "Go to the settings page"
717
  msgstr "Ga naar de instellingen"
718
 
719
+ #: woocommerce-delivery-notes.php:351
720
  msgid "Settings"
721
  msgstr "Instellingen"
722
 
723
+ # @ woocommerce-delivery-notes
724
+ #~ msgid ""
725
+ #~ "You can preview the <a href=\"%1$s\" target=\"%3$s\" class=\"%4$s"
726
+ #~ "\">invoice template</a> or <a href=\"%2$s\" target=\"%3$s\" class=\"%4$s"
727
+ #~ "\">delivery note template</a>."
728
+ #~ msgstr ""
729
+ #~ "Bekijk een voorbeeld van het <a href=\"%1$s\" target=\"%3$s\" class=\"%4$s"
730
+ #~ "\">factuur sjabloon</a> of het <a href=\"%2$s\" target=\"%3$s\" class="
731
+ #~ "\"%4$s\">pakbon sjabloon</a>."
732
+
733
+ # @ woocommerce-delivery-notes
734
+ #~ msgid ""
735
+ #~ "With the FAQ in the readme file you can learn how to customize the "
736
+ #~ "template."
737
+ #~ msgstr ""
738
+ #~ "Lees de FAQ in het readme bestand om te leren hoe je een sjabloon kan "
739
+ #~ "aanpassen."
740
+
741
+ #~ msgid "Company/Shop Logo"
742
+ #~ msgstr "Winkel- of bedrijfslogo"
743
+
744
+ #~ msgid "Remove Logo"
745
+ #~ msgstr "Verwijder Logo"
746
+
747
+ #~ msgid "Set Logo"
748
+ #~ msgstr "Plaats Logo"
749
+
750
+ #~ msgid "A company/shop logo representing your business."
751
+ #~ msgstr "Een logo voor je winkel of bedrijf. "
752
+
753
+ #~ msgid "Note:"
754
+ #~ msgstr "Opmerking:"
755
+
756
+ #~ msgid ""
757
+ #~ "When the image is printed, its pixel density will automatically be eight "
758
+ #~ "times higher than the original. This means, 1 printed inch will "
759
+ #~ "correspond to about 288 pixels on the screen. Example: an image with a "
760
+ #~ "width of 576 pixels and a height of 288 pixels will have a printed size "
761
+ #~ "of about 2 inches to 1 inch."
762
+ #~ msgstr ""
763
+ #~ "Als de afbeelding wordt geprint is de resolutie anders is dan het "
764
+ #~ "origineel. 1 cm komt overeen met 142 pixels. Voorbeeld: aan afbeelding "
765
+ #~ "met een breedte van 994 pixels en een hoogte van 568 pixels wordt "
766
+ #~ "afgedrukt met 7cm breedte en 4 cm hoogte."
767
+
768
+ #~ msgid "Company/Shop Name"
769
+ #~ msgstr "Winkel- of bedrijfsnaam"
770
+
771
+ #~ msgid "Your company/shop name for the Delivery Note."
772
+ #~ msgstr "Jouw winkel- of bedrijfsnaam voor op de pakbon"
773
+
774
+ # @ woocommerce-delivery-notes
775
+ #~ msgid ""
776
+ #~ "Leave blank to use the default Website/Blog title defined in WordPress "
777
+ #~ "settings. The name will be ignored when a Logo is set."
778
+ #~ msgstr ""
779
+ #~ "Laat leeg om de naam te gebruiken die in de WordPress settings staat. De "
780
+ #~ "naam zal worden genegeerd als er een logo wordt gebruikt."
781
+
782
+ #~ msgid "Company/Shop Address"
783
+ #~ msgstr "Winkel- of bedrijfsadres"
784
+
785
+ # @ woocommerce-delivery-notes
786
+ #~ msgid ""
787
+ #~ "The postal address of the company/shop or even e-mail or telephone, which "
788
+ #~ "gets printed right after the company/shop name."
789
+ #~ msgstr ""
790
+ #~ "Het postadres, e-mail of telefoonnummer van de winkel of het bedrijf. "
791
+ #~ "Deze wordt onder het logo of bedrijfsnaam geprint. "
792
+
793
+ #~ msgid "Leave blank to not print an address."
794
+ #~ msgstr "Laat leeg om geen adres te printen."
795
+
796
+ #~ msgid ""
797
+ #~ "Add some personal notes, or season greetings or whatever (e.g. Thank You "
798
+ #~ "for Your Order!, Merry Christmas!, etc.)."
799
+ #~ msgstr ""
800
+ #~ "Voeg persoonlijke opmerkingen of andere info toe (bv. Bedankt voor uw "
801
+ #~ "bestelling!, Fijne Kerstdagen!, etc.)."
802
+
803
+ #~ msgid "Leave blank to not print any personal notes."
804
+ #~ msgstr "Laat leeg om geen opmerkingen te printen."
805
+
806
+ #~ msgid "Returns Policy, Conditions, etc"
807
+ #~ msgstr "Algemene Voorwaarden"
808
+
809
+ #~ msgid ""
810
+ #~ "Here you can add some more policies, conditions etc. For example add a "
811
+ #~ "returns policy in case the client would like to send back some goods. In "
812
+ #~ "some countries (e.g. in the European Union) this is required so please "
813
+ #~ "add any required info in accordance with the statutory regulations."
814
+ #~ msgstr ""
815
+ #~ "Voeg hier meer richtlijnen en voorwaarden toe. Bijvoorbeeld iets over de "
816
+ #~ "retourregels voor het geval de klant iets wil terugsturen. In sommige "
817
+ #~ "landen (zoals de EU) is dit verplicht."
818
+
819
+ #~ msgid "Leave blank to not print any policies or conditions."
820
+ #~ msgstr "Laat leeg om geen algemene voorwaarden te printen."
821
+
822
+ # @ woocommerce-delivery-notes
823
+ #~ msgid ""
824
+ #~ "Add some further footer imprint, e-mail, telephone, copyright notes etc. "
825
+ #~ "This makes the printed sheets a bit more branded."
826
+ #~ msgstr ""
827
+ #~ "Voeg wat meer voettekst info toe zoals e-mail, telefoon, copyright, etc. "
828
+
829
+ #~ msgid "Leave blank to not print a footer."
830
+ #~ msgstr "Laat leeg om geen voettekst te printen."
831
+
832
+ #~ msgid "Front-end Options"
833
+ #~ msgstr "Front-end Opties"
834
+
835
+ #~ msgid "Print Buttons"
836
+ #~ msgstr "Printknoppen"
837
+
838
+ #~ msgid "Order Numbering"
839
+ #~ msgstr "Bestelnummers"
840
+
841
+ #~ msgid "Invoice Number Start"
842
+ #~ msgstr "Factuurnummer Start"
843
+
844
+ #~ msgid "Start the numbering at the specified number."
845
+ #~ msgstr "Begin de nummering bij een specifiek getal."
846
+
847
+ #~ msgid "Use only integers."
848
+ #~ msgstr "Gebruik alleen gehele getallen."
849
+
850
+ #~ msgid "Already created invoice numbers are not affected by changes."
851
+ #~ msgstr "Reeds gemaakte factuurnummers worden niet aangepast."
852
+
853
+ #~ msgid "Invoice Number Prefix"
854
+ #~ msgstr "Factuurnummer voorvoegsel"
855
+
856
+ #~ msgid "Leave blank to not add a prefix."
857
+ #~ msgstr "Laat leeg om geen voorvoegsel te gebruiken."
858
+
859
+ #~ msgid "Invoice Number Suffix"
860
+ #~ msgstr "Factuurnummer achtervoegsel"
861
+
862
+ #~ msgid "Leave blank to not add a suffix."
863
+ #~ msgstr "Laat leeg om geen achtervoegsel te gebruiken."
864
+
865
+ #~ msgid "Sequential Order Number"
866
+ #~ msgstr "Sequential Order Numbers"
867
+
868
+ #~ msgid "Sequential numbering is enabled."
869
+ #~ msgstr "'Sequential Order Numbers' is ingeschakeld."
870
+
871
+ #~ msgid ""
872
+ #~ "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
873
+ #~ "Numbers</a> Plugin."
874
+ #~ msgstr ""
875
+ #~ "Installeer en activeer de gratis <a href=\"%s\">WooCommerce Sequential "
876
+ #~ "Order Numbers</a> Plugin."
877
+
878
+ #~ msgid "Delivery note created."
879
+ #~ msgid_plural "%s delivery notes created."
880
+ #~ msgstr[0] "Pakbon is gemaakt."
881
+ #~ msgstr[1] "%s pakbonnen zijn gemaakt."
882
+
883
  #~ msgid "2.0"
884
  #~ msgstr "2.0"
885
 
languages/woocommerce-delivery-notes-pt_BR.mo CHANGED
Binary file
languages/woocommerce-delivery-notes-pt_BR.po CHANGED
@@ -8,9 +8,10 @@
8
  msgid ""
9
  msgstr ""
10
  "Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
11
- "Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
12
- "POT-Creation-Date: 2014-11-09 23:06+0100\n"
13
- "PO-Revision-Date: 2014-11-09 23:06+0100\n"
 
14
  "Last-Translator: Marcos <neookano@yahoo.com.br>\n"
15
  "Language-Team: \n"
16
  "Language: pt_BR\n"
@@ -18,7 +19,7 @@ msgstr ""
18
  "Content-Type: text/plain; charset=UTF-8\n"
19
  "Content-Transfer-Encoding: 8bit\n"
20
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
21
- "X-Generator: Poedit 1.6.10\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
24
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
@@ -27,210 +28,211 @@ msgstr ""
27
  "X-Textdomain-Support: yes\n"
28
  "X-Poedit-SearchPath-0: ..\n"
29
 
30
- #: ../includes/class-wcdn-settings.php:72
31
- msgid "Do you really want to reset the counter to zero?"
32
- msgstr "Deseja realmente zerar o contador ?"
33
-
34
  # @ woocommerce-delivery-notes
35
- #: ../includes/class-wcdn-settings.php:102 ../includes/class-wcdn-theme.php:55
36
- #: ../includes/class-wcdn-theme.php:90
37
- #: ../includes/wcdn-template-functions.php:127
38
- msgid "Print"
39
- msgstr "Imprimir"
 
 
40
 
41
  # @ woocommerce-delivery-notes
42
- #: ../includes/class-wcdn-settings.php:157
43
- msgid "Print Order"
44
- msgstr "Imprimir pedido"
45
 
46
- #: ../includes/class-wcdn-settings.php:176
47
- #, php-format
48
- msgid ""
49
- "You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</"
50
- "a>, <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s\">delivery note</a> or <a "
51
- "href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> template."
52
  msgstr ""
53
- "Você pode visualizar o template <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s"
54
- "\">fatura</a>, <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s\">nota </a> or "
55
- "<a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">recebimento</a>."
56
 
57
  # @ woocommerce-delivery-notes
58
- #: ../includes/class-wcdn-settings.php:177
59
- msgid ""
60
- "With the FAQ in the readme file you can learn how to customize the template."
 
 
 
 
61
  msgstr ""
62
- "Com o FAQ no arquivo leia-me que você pode aprender a personalizar o modelo."
63
 
64
- # @ woocommerce-delivery-notes
65
- #: ../includes/class-wcdn-settings.php:188
66
- msgid "Company/Shop Logo"
67
- msgstr "Logo da Empresa"
68
 
69
  # @ woocommerce-delivery-notes
70
- #: ../includes/class-wcdn-settings.php:194
71
- msgid "Remove Logo"
72
- msgstr "Remover Logo"
73
 
74
- # @ woocommerce-delivery-notes
75
- #: ../includes/class-wcdn-settings.php:195
76
- msgid "Set Logo"
77
- msgstr "Definir Logo"
78
 
79
  # @ woocommerce-delivery-notes
80
- #: ../includes/class-wcdn-settings.php:199
81
- msgid "A company/shop logo representing your business."
82
- msgstr "Logo da empresa."
83
 
84
- # @ woocommerce-delivery-notes
85
- #: ../includes/class-wcdn-settings.php:200
86
- #: ../includes/class-wcdn-settings.php:213
87
- #: ../includes/class-wcdn-settings.php:226
88
- #: ../includes/class-wcdn-settings.php:239
89
- #: ../includes/class-wcdn-settings.php:252
90
- #: ../includes/class-wcdn-settings.php:265
91
- #: ../includes/class-wcdn-settings.php:369
92
- #: ../includes/class-wcdn-settings.php:384
93
- #: ../includes/class-wcdn-settings.php:399
94
- msgid "Note:"
95
- msgstr "Nota:"
96
 
97
- # @ woocommerce-delivery-notes
98
- #: ../includes/class-wcdn-settings.php:201
99
- msgid ""
100
- "When the image is printed, its pixel density will automatically be eight "
101
- "times higher than the original. This means, 1 printed inch will correspond "
102
- "to about 288 pixels on the screen. Example: an image with a width of 576 "
103
- "pixels and a height of 288 pixels will have a printed size of about 2 inches "
104
- "to 1 inch."
105
  msgstr ""
106
- "Quando a imagem é imprimida, a sua densidade de pixels será automaticamente "
107
- "oito vezes mais elevadas do que o original. Isso significa, de 1 polegada "
108
- "impressa corresponderá a cerca de 288 pixels na tela. Exemplo: uma imagem "
109
- "com uma largura de 576 pixels e uma altura de 288 pixels terá um tamanho "
110
- "impresso de cerca de 2 polegadas a 1 polegada."
111
 
112
- # @ woocommerce-delivery-notes
113
- #: ../includes/class-wcdn-settings.php:207
114
- msgid "Company/Shop Name"
115
- msgstr "Empresa"
116
 
117
- # @ woocommerce-delivery-notes
118
- #: ../includes/class-wcdn-settings.php:212
119
- msgid "Your company/shop name for the Delivery Note."
120
- msgstr "Nome da empresa que envia a nota."
121
 
122
- # @ woocommerce-delivery-notes
123
- #: ../includes/class-wcdn-settings.php:214
124
- msgid ""
125
- "Leave blank to use the default Website/Blog title defined in WordPress "
126
- "settings. The name will be ignored when a Logo is set."
127
- msgstr "Deixar em branco para usar o padrão."
128
 
129
- # @ woocommerce-delivery-notes
130
- #: ../includes/class-wcdn-settings.php:220
131
- msgid "Company/Shop Address"
132
- msgstr "Endereço de cobrança"
133
 
134
- # @ woocommerce-delivery-notes
135
- #: ../includes/class-wcdn-settings.php:225
136
- msgid ""
137
- "The postal address of the company/shop or even e-mail or telephone, which "
138
- "gets printed right after the company/shop name."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
139
  msgstr ""
140
- "O endereço da empresa ou até mesmo e-mail ou telefone, que será impresso "
141
- "logo após o nome da empresa."
142
 
143
  # @ woocommerce-delivery-notes
144
- #: ../includes/class-wcdn-settings.php:227
145
- msgid "Leave blank to not print an address."
146
- msgstr "Deixe em branco para não imprimir o endereço."
147
 
148
- #: ../includes/class-wcdn-settings.php:233
149
- msgid "Complimentary Close"
150
- msgstr "Mensagem pessoal"
151
 
152
  # @ woocommerce-delivery-notes
153
- #: ../includes/class-wcdn-settings.php:238
 
 
 
 
 
 
 
 
 
 
 
 
154
  msgid ""
155
- "Add some personal notes, or season greetings or whatever (e.g. Thank You for "
156
- "Your Order!, Merry Christmas!, etc.)."
157
  msgstr ""
158
- "Adicionar algumas notas pessoais, ou os cumprimentos da estação ou o que "
159
- "quer (por exemplo, Obrigado por seu Pedido !, Feliz Natal !, etc.)."
160
 
161
  # @ woocommerce-delivery-notes
162
- #: ../includes/class-wcdn-settings.php:240
163
- msgid "Leave blank to not print any personal notes."
164
- msgstr "Deixar em branco para não imprimir nenhuma nota pessoal."
 
165
 
166
- # @ woocommerce-delivery-notes
167
- #: ../includes/class-wcdn-settings.php:246
168
- msgid "Returns Policy, Conditions, etc"
169
- msgstr "Política de Devolução, Condições, etc"
170
 
171
- # @ woocommerce-delivery-notes
172
- #: ../includes/class-wcdn-settings.php:251
 
 
 
173
  msgid ""
174
- "Here you can add some more policies, conditions etc. For example add a "
175
- "returns policy in case the client would like to send back some goods. In "
176
- "some countries (e.g. in the European Union) this is required so please add "
177
- "any required info in accordance with the statutory regulations."
178
  msgstr ""
179
- "Aqui você pode adicionar mais algumas políticas, condições etc. Por exemplo "
180
- "adicionar uma política de devoluções no caso de o cliente gostaria de enviar "
181
- "de volta alguns bens. Em alguns países (por exemplo, na União Europeia) isto "
182
- "é necessário por isso, adicionar qualquer informação necessária em "
183
- "conformidade com os regulamentos legais."
184
 
185
- # @ woocommerce-delivery-notes
186
- #: ../includes/class-wcdn-settings.php:253
187
- msgid "Leave blank to not print any policies or conditions."
188
- msgstr "Deixe em branco para não imprimir quaisquer políticas ou condições."
189
 
190
- # @ woocommerce-delivery-notes
191
- #: ../includes/class-wcdn-settings.php:259
192
- msgid "Footer"
193
- msgstr "Rodapé"
 
 
194
 
195
- # @ woocommerce-delivery-notes
196
- #: ../includes/class-wcdn-settings.php:264
 
 
 
197
  msgid ""
198
- "Add some further footer imprint, e-mail, telephone, copyright notes etc. "
199
- "This makes the printed sheets a bit more branded."
200
- msgstr "Adicionar notas no rodapé da página, notas de copyright etc."
201
 
202
- # @ woocommerce-delivery-notes
203
- #: ../includes/class-wcdn-settings.php:266
204
- msgid "Leave blank to not print a footer."
205
- msgstr "Deixe em branco para não imprimir um rodapé."
206
 
207
- #: ../includes/class-wcdn-settings.php:272
208
- msgid "Types"
209
- msgstr "Tipos"
210
 
211
- #: ../includes/class-wcdn-settings.php:279
212
- msgid "Enable Invoices"
213
- msgstr "Habilitar faturas"
214
 
215
- #: ../includes/class-wcdn-settings.php:286
216
- msgid "Enable Delivery Notes"
217
- msgstr "Habilitar entrega de notas"
218
 
219
- #: ../includes/class-wcdn-settings.php:293
220
- msgid "Enable Receipts"
221
- msgstr "Habilitar recebimento"
222
 
223
- #: ../includes/class-wcdn-settings.php:301
224
- msgid "Front-end Options"
225
- msgstr "Opções de Front-end"
226
 
227
  # @ woocommerce-delivery-notes
228
- #: ../includes/class-wcdn-settings.php:306
 
 
 
 
 
 
 
 
 
 
 
 
 
 
229
  msgid "Print Page Endpoint"
230
  msgstr "Endpoint página de impressão"
231
 
232
  # @ woocommerce-delivery-notes
233
- #: ../includes/class-wcdn-settings.php:313
234
  msgid ""
235
  "The endpoint is appended to the accounts page URL to print the order. It "
236
  "should be unique."
@@ -238,268 +240,710 @@ msgstr ""
238
  "O ponto final é anexado ao URL da página de contas para imprimir a ordem. "
239
  "Deve ser único."
240
 
241
- #: ../includes/class-wcdn-settings.php:319
242
- msgid "Print Buttons"
243
- msgstr "Botões de impressão"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
244
 
245
  # @ woocommerce-delivery-notes
246
- #: ../includes/class-wcdn-settings.php:326
247
  msgid "Show print button on the \"View Order\" page"
248
  msgstr "Mostrar botões de impressão na página \"View Order\""
249
 
250
  # @ woocommerce-delivery-notes
251
- #: ../includes/class-wcdn-settings.php:333
252
  msgid "Show print buttons on the \"My Account\" page"
253
  msgstr "Mostrar botões de impressão na página \"My Account\""
254
 
255
- # @ woocommerce-delivery-notes
256
- #: ../includes/class-wcdn-settings.php:341
257
- msgid "Order Numbering"
258
- msgstr "Número do Pedido"
259
-
260
- #: ../includes/class-wcdn-settings.php:346
261
- #: ../includes/wcdn-template-functions.php:224
262
- msgid "Invoice Number"
263
- msgstr "Número da Fatura"
264
 
265
- #: ../includes/class-wcdn-settings.php:354
266
  msgid "Create invoice numbers"
267
  msgstr "Creir número da fatura"
268
 
269
- #: ../includes/class-wcdn-settings.php:361
270
- msgid "Invoice Number Start"
271
- msgstr "Começo do número da fatura"
272
-
273
- #: ../includes/class-wcdn-settings.php:368
274
- msgid "Start the numbering at the specified number."
275
- msgstr "Iniciar a numeração para o número especificado."
276
 
277
- #: ../includes/class-wcdn-settings.php:370
278
- msgid "Use only integers."
279
- msgstr "Usar números inteiros."
280
 
281
- #: ../includes/class-wcdn-settings.php:376
282
- msgid "Invoice Number Prefix"
283
- msgstr "Prefixo do Número da Fatura"
284
 
285
- #: ../includes/class-wcdn-settings.php:383
286
  msgid "This text will be prepended to the invoice number."
287
  msgstr "Este texto será anexado ao número de fatura."
288
 
289
- #: ../includes/class-wcdn-settings.php:385
290
- msgid "Leave blank to not add a prefix."
291
- msgstr "Deixe em branco para não imprimir o prefixo."
292
-
293
- #: ../includes/class-wcdn-settings.php:391
294
- msgid "Invoice Number Suffix"
295
- msgstr "Prefixo do Número da Fatura"
296
 
297
- #: ../includes/class-wcdn-settings.php:398
298
  msgid "This text will be appended to the invoice number."
299
  msgstr "Este texto será anexado ao número de fatura."
300
 
301
- #: ../includes/class-wcdn-settings.php:400
302
- msgid "Leave blank to not add a suffix."
303
- msgstr "Deixe em branco para não imprimir o prefixo."
304
-
305
- #: ../includes/class-wcdn-settings.php:406
306
- msgid "Invoice Number Counter"
307
- msgstr "Sufixo do número da fatura"
308
-
309
- #: ../includes/class-wcdn-settings.php:415
310
- msgid "Reset Counter"
311
- msgstr "Zerar contador"
312
-
313
- #: ../includes/class-wcdn-settings.php:421
314
- msgid "Sequential Order Number"
315
- msgstr "Número de pedido sequencial"
316
-
317
- # @ woocommerce-delivery-notes
318
- #: ../includes/class-wcdn-settings.php:426
319
- msgid "Sequential numbering is enabled."
320
- msgstr "Sequential numbering ativado."
321
 
322
- # @ woocommerce-delivery-notes
323
- #: ../includes/class-wcdn-settings.php:428
324
- #, php-format
325
  msgid ""
326
- "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
327
- "Numbers</a> Plugin."
328
  msgstr ""
329
- "Instalar e ativar o plugin gratuito <a href=\"%s\">WooCommerce Sequential "
330
- "Order Numbers</a>."
331
 
332
- # @ woocommerce-delivery-notes
333
- #: ../includes/class-wcdn-writepanel.php:101
334
- #: ../includes/class-wcdn-writepanel.php:102
335
- #: ../includes/class-wcdn-writepanel.php:135
336
- #: ../includes/class-wcdn-writepanel.php:136
337
- #: ../includes/class-wcdn-writepanel.php:267
338
- msgid "Print Invoice"
339
- msgstr "Imprimir Fatura"
340
 
341
- # @ woocommerce-delivery-notes
342
- #: ../includes/class-wcdn-writepanel.php:107
343
- #: ../includes/class-wcdn-writepanel.php:108
344
- #: ../includes/class-wcdn-writepanel.php:140
345
- #: ../includes/class-wcdn-writepanel.php:141
346
- #: ../includes/class-wcdn-writepanel.php:271
347
- msgid "Print Delivery Note"
348
- msgstr "Imprimir Nota de Entrega"
349
 
350
- #: ../includes/class-wcdn-writepanel.php:113
351
- #: ../includes/class-wcdn-writepanel.php:114
352
- #: ../includes/class-wcdn-writepanel.php:145
353
- #: ../includes/class-wcdn-writepanel.php:146
354
- #: ../includes/class-wcdn-writepanel.php:275
355
- msgid "Print Receipt"
356
- msgstr "Imprimir Fatura"
357
 
358
- # @ woocommerce-delivery-notes
359
- #: ../includes/class-wcdn-writepanel.php:237
360
- #, php-format
361
- msgid "Invoice created."
362
- msgid_plural "%s invoices created."
363
- msgstr[0] "Fatura criada."
364
- msgstr[1] "%s faturas criadas."
365
 
366
- # @ woocommerce-delivery-notes
367
- #: ../includes/class-wcdn-writepanel.php:239
368
- #, php-format
369
- msgid "Delivery note created."
370
- msgid_plural "%s delivery notes created."
371
- msgstr[0] "Nota de Entrega"
372
- msgstr[1] "%s notas de Entrega"
373
 
374
- #: ../includes/class-wcdn-writepanel.php:241
375
- #, php-format
376
- msgid "Receipt created."
377
- msgid_plural "%s receipts created."
378
- msgstr[0] "Recibo criado"
379
- msgstr[1] "%s recibos creidos"
380
 
381
  # @ woocommerce-delivery-notes
382
- #: ../includes/class-wcdn-writepanel.php:245
383
  msgid "Print now"
384
  msgstr "Imprimir agora"
385
 
386
  # @ woocommerce-delivery-notes
387
- #: ../includes/class-wcdn-writepanel.php:256
388
  msgid "Order Printing"
389
  msgstr "Imprimir pedido"
390
 
391
- #: ../includes/class-wcdn-writepanel.php:288
392
  msgid "Invoice number: "
393
  msgstr "Telefone de cobrança:"
394
 
395
- #: ../includes/class-wcdn-writepanel.php:289
396
  msgid "Invoice date: "
397
  msgstr "Data da fatura:"
398
 
399
- # @ woocommerce-delivery-notes
400
- #: ../includes/wcdn-template-functions.php:39
401
- msgid "Invoice"
402
- msgstr "Fatura"
403
 
404
- # @ woocommerce-delivery-notes
405
- #: ../includes/wcdn-template-functions.php:41
406
- msgid "Delivery Note"
407
- msgstr "Nota de Entrega"
408
 
409
- #: ../includes/wcdn-template-functions.php:43
410
- msgid "Receipt"
411
- msgstr "Recebimento"
412
 
413
- # @ woocommerce-delivery-notes
414
- #: ../includes/wcdn-template-functions.php:45
415
- msgid "Order"
416
- msgstr "Pedido"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
417
 
418
  # @ woocommerce-delivery-notes
419
- #: ../includes/wcdn-template-functions.php:230
420
  msgid "Order Number"
421
  msgstr "Número do Pedido"
422
 
423
  # @ woocommerce-delivery-notes
424
- #: ../includes/wcdn-template-functions.php:235
425
  msgid "Order Date"
426
  msgstr "Data do pedido"
427
 
428
  # @ woocommerce-delivery-notes
429
- #: ../includes/wcdn-template-functions.php:240
430
  msgid "Payment Method"
431
  msgstr "Forma de pagamento"
432
 
433
  # @ woocommerce-delivery-notes
434
- #: ../includes/wcdn-template-functions.php:246
435
- msgid "Email"
436
- msgstr "Email"
437
-
438
- # @ woocommerce-delivery-notes
439
- #: ../includes/wcdn-template-functions.php:253
440
  msgid "Telephone"
441
  msgstr "Telefone"
442
 
443
- #: ../includes/wcdn-template-functions.php:286
444
  msgid "SKU:"
445
  msgstr "SKU:"
446
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
447
  # @ woocommerce-delivery-notes
448
- #: ../templates/print-order/print-content.php:28
449
  msgid "Billing Address"
450
  msgstr "Endereço de cobrança"
451
 
452
  # @ woocommerce-delivery-notes
453
- #: ../templates/print-order/print-content.php:31
454
- #: ../templates/print-order/print-content.php:40
455
  msgid "N/A"
456
  msgstr "N/A"
457
 
458
  # @ woocommerce-delivery-notes
459
- #: ../templates/print-order/print-content.php:37
460
  msgid "Shipping Address"
461
  msgstr "Endereço de entrega"
462
 
463
  # @ woocommerce-delivery-notes
464
- #: ../templates/print-order/print-content.php:70
465
  msgid "Product"
466
  msgstr "Produto"
467
 
468
- #: ../templates/print-order/print-content.php:71
469
  msgid "Price"
470
  msgstr "Preço"
471
 
472
- #: ../templates/print-order/print-content.php:72
473
  msgid "Quantity"
474
  msgstr "Quantidade"
475
 
476
  # @ woocommerce-delivery-notes
477
- #: ../templates/print-order/print-content.php:73
478
  msgid "Total"
479
  msgstr "Total"
480
 
481
  # @ woocommerce-delivery-notes
482
- #: ../templates/print-order/print-content.php:97
483
  msgid "Download:"
484
  msgstr "Download:"
485
 
486
  # @ woocommerce-delivery-notes
487
- #: ../templates/print-order/print-content.php:98
488
- #, php-format
489
  msgid "%s Files"
490
  msgstr "%s Arquivos"
491
 
492
  # @ woocommerce-delivery-notes
493
- #: ../templates/print-order/print-content.php:149
494
  msgid "Customer Note"
495
  msgstr "Notas do Cliente"
496
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
497
  # @ woocommerce-delivery-notes
498
- #: ../woocommerce-delivery-notes.php:180
499
  msgid "Go to the settings page"
500
  msgstr "Ir para configurações"
501
 
502
  # @ woocommerce-delivery-notes
503
- #: ../woocommerce-delivery-notes.php:180
504
  msgid "Settings"
505
  msgstr "Configurações"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  msgid ""
9
  msgstr ""
10
  "Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
11
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/woocommerce-"
12
+ "delivery-notes\n"
13
+ "POT-Creation-Date: 2018-10-22 19:02+0530\n"
14
+ "PO-Revision-Date: 2018-10-22 19:02+0530\n"
15
  "Last-Translator: Marcos <neookano@yahoo.com.br>\n"
16
  "Language-Team: \n"
17
  "Language: pt_BR\n"
19
  "Content-Type: text/plain; charset=UTF-8\n"
20
  "Content-Transfer-Encoding: 8bit\n"
21
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
22
+ "X-Generator: Poedit 1.8.7.1\n"
23
  "X-Poedit-SourceCharset: UTF-8\n"
24
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
25
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
28
  "X-Textdomain-Support: yes\n"
29
  "X-Poedit-SearchPath-0: ..\n"
30
 
 
 
 
 
31
  # @ woocommerce-delivery-notes
32
+ #: includes/class-wcdn-print.php:39 includes/class-wcdn-settings.php:237
33
+ msgid "Invoice"
34
+ msgstr "Fatura"
35
+
36
+ #: includes/class-wcdn-print.php:40
37
+ msgid "Invoices"
38
+ msgstr ""
39
 
40
  # @ woocommerce-delivery-notes
41
+ #: includes/class-wcdn-print.php:41
42
+ msgid "Print Invoice"
43
+ msgstr "Imprimir Fatura"
44
 
45
+ #: includes/class-wcdn-print.php:42
46
+ msgid "Print Invoices"
 
 
 
 
47
  msgstr ""
 
 
 
48
 
49
  # @ woocommerce-delivery-notes
50
+ #: includes/class-wcdn-print.php:43
51
+ #, fuzzy
52
+ msgid "Invoice created."
53
+ msgstr "Fatura criada."
54
+
55
+ #: includes/class-wcdn-print.php:44
56
+ msgid "Invoices created."
57
  msgstr ""
 
58
 
59
+ #: includes/class-wcdn-print.php:45
60
+ msgid "Show \"Print Invoice\" button"
61
+ msgstr ""
 
62
 
63
  # @ woocommerce-delivery-notes
64
+ #: includes/class-wcdn-print.php:51
65
+ msgid "Delivery Note"
66
+ msgstr "Nota de Entrega"
67
 
68
+ #: includes/class-wcdn-print.php:52
69
+ msgid "Delivery Notes"
70
+ msgstr ""
 
71
 
72
  # @ woocommerce-delivery-notes
73
+ #: includes/class-wcdn-print.php:53
74
+ msgid "Print Delivery Note"
75
+ msgstr "Imprimir Nota de Entrega"
76
 
77
+ #: includes/class-wcdn-print.php:54
78
+ msgid "Print Delivery Notes"
79
+ msgstr ""
 
 
 
 
 
 
 
 
 
80
 
81
+ #: includes/class-wcdn-print.php:55
82
+ msgid "Delivery Note created."
 
 
 
 
 
 
83
  msgstr ""
 
 
 
 
 
84
 
85
+ #: includes/class-wcdn-print.php:56
86
+ msgid "Delivery Notes created."
87
+ msgstr ""
 
88
 
89
+ #: includes/class-wcdn-print.php:57
90
+ msgid "Show \"Print Delivery Note\" button"
91
+ msgstr ""
 
92
 
93
+ #: includes/class-wcdn-print.php:63
94
+ msgid "Receipt"
95
+ msgstr "Recebimento"
 
 
 
96
 
97
+ #: includes/class-wcdn-print.php:64
98
+ msgid "Receipts"
99
+ msgstr ""
 
100
 
101
+ #: includes/class-wcdn-print.php:65
102
+ msgid "Print Receipt"
103
+ msgstr "Imprimir Fatura"
104
+
105
+ #: includes/class-wcdn-print.php:66
106
+ msgid "Print Receipts"
107
+ msgstr ""
108
+
109
+ #: includes/class-wcdn-print.php:67
110
+ #, fuzzy
111
+ msgid "Receipt created."
112
+ msgstr "Recibo criado"
113
+
114
+ #: includes/class-wcdn-print.php:68
115
+ msgid "Receipts created."
116
+ msgstr ""
117
+
118
+ #: includes/class-wcdn-print.php:69
119
+ msgid "Show \"Print Receipt\" button"
120
  msgstr ""
 
 
121
 
122
  # @ woocommerce-delivery-notes
123
+ #: includes/class-wcdn-print.php:78
124
+ msgid "Order"
125
+ msgstr "Pedido"
126
 
127
+ #: includes/class-wcdn-print.php:79
128
+ msgid "Orders"
129
+ msgstr ""
130
 
131
  # @ woocommerce-delivery-notes
132
+ #: includes/class-wcdn-print.php:80
133
+ msgid "Print Order"
134
+ msgstr "Imprimir pedido"
135
+
136
+ #: includes/class-wcdn-print.php:81
137
+ msgid "Print Orders"
138
+ msgstr ""
139
+
140
+ #: includes/class-wcdn-print.php:93
141
+ msgid "Default"
142
+ msgstr ""
143
+
144
+ #: includes/class-wcdn-settings.php:67
145
  msgid ""
146
+ "Do you really want to reset the counter to zero? This process can't be "
147
+ "undone."
148
  msgstr ""
 
 
149
 
150
  # @ woocommerce-delivery-notes
151
+ #: includes/class-wcdn-settings.php:75 includes/class-wcdn-theme.php:57
152
+ #: includes/class-wcdn-theme.php:94 includes/wcdn-template-functions.php:130
153
+ msgid "Print"
154
+ msgstr "Imprimir"
155
 
156
+ #: includes/class-wcdn-settings.php:106
157
+ msgid "Template"
158
+ msgstr ""
 
159
 
160
+ #: includes/class-wcdn-settings.php:113
161
+ msgid "Style"
162
+ msgstr ""
163
+
164
+ #: includes/class-wcdn-settings.php:114
165
  msgid ""
166
+ "The default print style. Read the <a href=\"%1$s\">FAQ</a> to learn how to "
167
+ "customize it."
 
 
168
  msgstr ""
 
 
 
 
 
169
 
170
+ #: includes/class-wcdn-settings.php:124
171
+ msgid "Shop Logo"
172
+ msgstr ""
 
173
 
174
+ #: includes/class-wcdn-settings.php:130
175
+ msgid ""
176
+ "A shop logo representing your business. When the image is printed, its pixel "
177
+ "density will automatically be eight times higher than the original. This "
178
+ "means, 1 printed inch will correspond to about 288 pixels on the screen."
179
+ msgstr ""
180
 
181
+ #: includes/class-wcdn-settings.php:134
182
+ msgid "Shop Name"
183
+ msgstr ""
184
+
185
+ #: includes/class-wcdn-settings.php:140
186
  msgid ""
187
+ "The shop name. Leave blank to use the default Website or Blog title defined "
188
+ "in WordPress settings. The name will be ignored when a Logo is set."
189
+ msgstr ""
190
 
191
+ #: includes/class-wcdn-settings.php:144
192
+ msgid "Shop Address"
193
+ msgstr ""
 
194
 
195
+ #: includes/class-wcdn-settings.php:145
196
+ msgid "The postal address of the shop or even e-mail or telephone."
197
+ msgstr ""
198
 
199
+ #: includes/class-wcdn-settings.php:154
200
+ msgid "Complimentary Close"
201
+ msgstr "Mensagem pessoal"
202
 
203
+ #: includes/class-wcdn-settings.php:155
204
+ msgid "Add a personal close, notes or season greetings."
205
+ msgstr ""
206
 
207
+ #: includes/class-wcdn-settings.php:164
208
+ msgid "Policies"
209
+ msgstr ""
210
 
211
+ #: includes/class-wcdn-settings.php:165
212
+ msgid "Add the shop policies, conditions, etc."
213
+ msgstr ""
214
 
215
  # @ woocommerce-delivery-notes
216
+ #: includes/class-wcdn-settings.php:174
217
+ msgid "Footer"
218
+ msgstr "Rodapé"
219
+
220
+ #: includes/class-wcdn-settings.php:175
221
+ msgid ""
222
+ "Add a footer imprint, instructions, copyright notes, e-mail, telephone, etc."
223
+ msgstr ""
224
+
225
+ #: includes/class-wcdn-settings.php:189
226
+ msgid "Pages & Buttons"
227
+ msgstr ""
228
+
229
+ # @ woocommerce-delivery-notes
230
+ #: includes/class-wcdn-settings.php:196
231
  msgid "Print Page Endpoint"
232
  msgstr "Endpoint página de impressão"
233
 
234
  # @ woocommerce-delivery-notes
235
+ #: includes/class-wcdn-settings.php:202
236
  msgid ""
237
  "The endpoint is appended to the accounts page URL to print the order. It "
238
  "should be unique."
240
  "O ponto final é anexado ao URL da página de contas para imprimir a ordem. "
241
  "Deve ser único."
242
 
243
+ # @ woocommerce-delivery-notes
244
+ #: includes/class-wcdn-settings.php:206
245
+ #: includes/wcdn-template-functions.php:275
246
+ msgid "Email"
247
+ msgstr "Email"
248
+
249
+ #: includes/class-wcdn-settings.php:207
250
+ msgid "Show print link in customer emails"
251
+ msgstr ""
252
+
253
+ #: includes/class-wcdn-settings.php:211
254
+ msgid ""
255
+ "This includes the emails for a new, processing and completed order. On top "
256
+ "of that the customer invoice email also includes the link."
257
+ msgstr ""
258
+
259
+ #: includes/class-wcdn-settings.php:215
260
+ msgid "My Account"
261
+ msgstr ""
262
 
263
  # @ woocommerce-delivery-notes
264
+ #: includes/class-wcdn-settings.php:216
265
  msgid "Show print button on the \"View Order\" page"
266
  msgstr "Mostrar botões de impressão na página \"View Order\""
267
 
268
  # @ woocommerce-delivery-notes
269
+ #: includes/class-wcdn-settings.php:224
270
  msgid "Show print buttons on the \"My Account\" page"
271
  msgstr "Mostrar botões de impressão na página \"My Account\""
272
 
273
+ #: includes/class-wcdn-settings.php:244
274
+ msgid "Numbering"
275
+ msgstr ""
 
 
 
 
 
 
276
 
277
+ #: includes/class-wcdn-settings.php:245
278
  msgid "Create invoice numbers"
279
  msgstr "Creir número da fatura"
280
 
281
+ #: includes/class-wcdn-settings.php:253
282
+ msgid "Next Number"
283
+ msgstr ""
 
 
 
 
284
 
285
+ #: includes/class-wcdn-settings.php:260
286
+ msgid "The next invoice number."
287
+ msgstr ""
288
 
289
+ #: includes/class-wcdn-settings.php:264
290
+ msgid "Number Prefix"
291
+ msgstr ""
292
 
293
+ #: includes/class-wcdn-settings.php:271
294
  msgid "This text will be prepended to the invoice number."
295
  msgstr "Este texto será anexado ao número de fatura."
296
 
297
+ #: includes/class-wcdn-settings.php:275
298
+ msgid "Number Suffix"
299
+ msgstr ""
 
 
 
 
300
 
301
+ #: includes/class-wcdn-settings.php:282
302
  msgid "This text will be appended to the invoice number."
303
  msgstr "Este texto será anexado ao número de fatura."
304
 
305
+ #: includes/class-wcdn-settings.php:327
306
+ msgid "Admin"
307
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
308
 
309
+ #: includes/class-wcdn-settings.php:330
 
 
310
  msgid ""
311
+ "The print buttons are available on the order listing and on the order detail "
312
+ "screen."
313
  msgstr ""
 
 
314
 
315
+ #: includes/class-wcdn-settings.php:372
316
+ msgid ""
317
+ "This section lets you customise the content. You can preview the <a href="
318
+ "\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target="
319
+ "\"%4$s\" class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s"
320
+ "\" class=\"%5$s\">receipt</a> template."
321
+ msgstr ""
 
322
 
323
+ #: includes/class-wcdn-settings.php:435
324
+ msgid "Select"
325
+ msgstr ""
 
 
 
 
 
326
 
327
+ #: includes/class-wcdn-settings.php:439
328
+ msgid "Remove"
329
+ msgstr ""
 
 
 
 
330
 
331
+ #: includes/class-wcdn-theme.php:112
332
+ msgid "Print your order"
333
+ msgstr ""
 
 
 
 
334
 
335
+ #: includes/class-wcdn-theme.php:119
336
+ msgid "Print:"
337
+ msgstr ""
 
 
 
 
338
 
339
+ #: includes/class-wcdn-theme.php:119
340
+ msgid "Open print view in browser"
341
+ msgstr ""
 
 
 
342
 
343
  # @ woocommerce-delivery-notes
344
+ #: includes/class-wcdn-writepanel.php:218
345
  msgid "Print now"
346
  msgstr "Imprimir agora"
347
 
348
  # @ woocommerce-delivery-notes
349
+ #: includes/class-wcdn-writepanel.php:232
350
  msgid "Order Printing"
351
  msgstr "Imprimir pedido"
352
 
353
+ #: includes/class-wcdn-writepanel.php:259
354
  msgid "Invoice number: "
355
  msgstr "Telefone de cobrança:"
356
 
357
+ #: includes/class-wcdn-writepanel.php:260
358
  msgid "Invoice date: "
359
  msgstr "Data da fatura:"
360
 
361
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:75
362
+ msgid "If you have a moment, please let us know why you are deactivating"
363
+ msgstr ""
 
364
 
365
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:76
366
+ msgid "Submit & Deactivate"
367
+ msgstr ""
 
368
 
369
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:77
370
+ msgid "Deactivate"
371
+ msgstr ""
372
 
373
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:78
374
+ msgid "Cancel"
375
+ msgstr ""
376
+
377
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:79
378
+ msgid "Yes - Deactivate"
379
+ msgstr ""
380
+
381
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:83
382
+ msgid "I found a better plugin"
383
+ msgstr ""
384
+
385
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:84
386
+ msgid "What's the plugin's name?"
387
+ msgstr ""
388
+
389
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:85
390
+ msgid "I only needed the plugin for a short period"
391
+ msgstr ""
392
+
393
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:86
394
+ msgid "The plugin is not working"
395
+ msgstr ""
396
+
397
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:87
398
+ msgid "Kindly share what didn't work so we can fix it for future users..."
399
+ msgstr ""
400
+
401
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:88
402
+ msgid "The plugin is great, but I need specific feature that you don't support"
403
+ msgstr ""
404
+
405
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:89
406
+ msgid "What feature?"
407
+ msgstr ""
408
+
409
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:90
410
+ msgid "I don't like to share my information with you"
411
+ msgstr ""
412
+
413
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:91
414
+ msgctxt ""
415
+ "the text of the 'other' reason for deactivating the plugin that is shown in "
416
+ "the modal box."
417
+ msgid "Other"
418
+ msgstr ""
419
+
420
+ #: includes/component/faq-support/ts-faq-support.php:127
421
+ msgid "Frequently Asked Questions for %s"
422
+ msgstr ""
423
+
424
+ #: includes/component/faq-support/ts-faq-support.php:176
425
+ msgid "FAQ & Support"
426
+ msgstr ""
427
+
428
+ #: includes/component/tracking-data/ts-tracking.php:120
429
+ #: includes/component/tracking-data/ts-tracking.php:180
430
+ msgid "Reset usage tracking"
431
+ msgstr ""
432
+
433
+ #: includes/component/tracking-data/ts-tracking.php:122
434
+ msgid ""
435
+ "This will reset your usage tracking settings, causing it to show the opt-in "
436
+ "banner again and not sending any data"
437
+ msgstr ""
438
+
439
+ #: includes/component/tracking-data/ts-tracking.php:225
440
+ msgid "Once in a Week"
441
+ msgstr ""
442
+
443
+ #: includes/component/tracking-data/ts-tracking.php:311
444
+ msgid "Allow"
445
+ msgstr ""
446
+
447
+ #: includes/component/tracking-data/ts-tracking.php:312
448
+ msgid "No thanks"
449
+ msgstr ""
450
+
451
+ #: includes/component/welcome-page/templates/social-media-elements.php:10
452
+ #: includes/wcdn-welcome.php:231
453
+ msgid "Follow %s"
454
+ msgstr ""
455
+
456
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:19
457
+ #: includes/wcdn-welcome.php:99
458
+ msgid ""
459
+ "Thank you for activating or updating to the latest version of WooCommerce "
460
+ "Print Invoice & Delivery Note! If you're a first time user, welcome! You're "
461
+ "well on your way to explore the print functionality for your WooCommerce "
462
+ "orders."
463
+ msgstr ""
464
+
465
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:29
466
+ #: includes/wcdn-welcome.php:109
467
+ msgid "Get Started with WooCommerce Print Invoice & Delivery Note"
468
+ msgstr ""
469
+
470
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:33
471
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:62
472
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:68
473
+ #: includes/wcdn-welcome.php:113 includes/wcdn-welcome.php:142
474
+ #: includes/wcdn-welcome.php:148
475
+ msgid "WooCommerce Print Invoice & Delivery Note"
476
+ msgstr ""
477
+
478
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:37
479
+ #: includes/wcdn-welcome.php:117
480
+ msgid "Add settings"
481
+ msgstr ""
482
+
483
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:39
484
+ #: includes/wcdn-welcome.php:119
485
+ msgid ""
486
+ "To enable the print functionality for your invoices, delivery notes & "
487
+ "receipts, you just need to set it up under WooCommerce -> Settings -> Print "
488
+ "page. Here you can also setup the Company Logo that will appear on the "
489
+ "printed items, Company Address & other information."
490
+ msgstr ""
491
+
492
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:41
493
+ #: includes/wcdn-welcome.php:121
494
+ msgid "Click Here to go to Print page"
495
+ msgstr ""
496
+
497
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:52
498
+ #: includes/wcdn-welcome.php:132
499
+ msgid "Enable Print button for Customers."
500
+ msgstr ""
501
+
502
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:54
503
+ #: includes/wcdn-welcome.php:134
504
+ msgid ""
505
+ "Allow customers to print the WooCommerce order invoice from the customer "
506
+ "notification email, from the My Account page or from the View Order page "
507
+ "under My Account."
508
+ msgstr ""
509
+
510
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:56
511
+ #: includes/wcdn-welcome.php:136
512
+ msgid "Click Here to Enable Print button for Customers"
513
+ msgstr ""
514
+
515
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:72
516
+ #: includes/wcdn-welcome.php:152
517
+ msgid "Enable Invoice Numbering"
518
+ msgstr ""
519
+
520
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:74
521
+ msgid ""
522
+ "If you want to change the default invoice numbers & set some numbering "
523
+ "scheme of your own, then you can set it here with a starting invoice number, "
524
+ "a prefix & suffix. For example, you could set it as: TS/001/17-18."
525
+ msgstr ""
526
+
527
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:76
528
+ #: includes/wcdn-welcome.php:156
529
+ msgid "Click Here to Enable Invoice Numbering"
530
+ msgstr ""
531
+
532
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:87
533
+ #: includes/wcdn-welcome.php:167
534
+ msgid "Getting to Know Tyche Softwares"
535
+ msgstr ""
536
+
537
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:90
538
+ #: includes/wcdn-welcome.php:170
539
+ msgid "Visit the Tyche Softwares Website"
540
+ msgstr ""
541
+
542
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:91
543
+ #: includes/wcdn-welcome.php:171
544
+ msgid "View all Premium Plugins"
545
+ msgstr ""
546
+
547
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:100
548
+ #: includes/wcdn-welcome.php:180
549
+ msgid "Meet the team"
550
+ msgstr ""
551
+
552
+ #: includes/component/welcome-page/ts-welcome.php:167
553
+ msgid "Welcome to %s %s"
554
+ msgstr ""
555
+
556
+ #: includes/wcdn-all-component.php:118
557
+ msgid ""
558
+ "Thank you for using WooCommerce Print Invoice & Delivery Note plugin! Now "
559
+ "make your deliveries more accurate by allowing customers to select their "
560
+ "preferred delivery date & time from Product Delivery Date Pro for "
561
+ "WooCommerce. <strong><a target=\"_blank\" href= \"https://www.tychesoftwares."
562
+ "com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/?"
563
+ "utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">Get "
564
+ "it now!</a></strong>"
565
+ msgstr ""
566
+
567
+ #: includes/wcdn-all-component.php:120
568
+ msgid ""
569
+ "Never login to your admin to check your deliveries by syncing the delivery "
570
+ "dates to the Google Calendar from Product Delivery Date Pro for WooCommerce. "
571
+ "<strong><a target=\"_blank\" href= \"https://www.tychesoftwares.com/store/"
572
+ "premium-plugins/product-delivery-date-pro-for-woocommerce/checkout?"
573
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
574
+ "\">Get it now!</a></strong>"
575
+ msgstr ""
576
+
577
+ #: includes/wcdn-all-component.php:122
578
+ msgid ""
579
+ "You can now view all your deliveries in list view or in calendar view from "
580
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
581
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
582
+ "delivery-date-pro-for-woocommerce/checkout?"
583
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
584
+ "\">Get it now!</a></strong>."
585
+ msgstr ""
586
+
587
+ #: includes/wcdn-all-component.php:124
588
+ msgid ""
589
+ "Allow your customers to pay extra for delivery for certain Weekdays/Dates "
590
+ "from Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
591
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
592
+ "delivery-date-pro-for-woocommerce/checkout?"
593
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
594
+ "\">Have it now!</a></strong>."
595
+ msgstr ""
596
+
597
+ #: includes/wcdn-all-component.php:126
598
+ msgid ""
599
+ "Customers can now edit the Delivery date & time on cart and checkout page or "
600
+ "they can reschedule the deliveries for the already placed orders from "
601
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
602
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
603
+ "delivery-date-pro-for-woocommerce/checkout?"
604
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
605
+ "\">Have it now!</a></strong>."
606
+ msgstr ""
607
+
608
+ #: includes/wcdn-template-functions.php:246
609
+ msgid "Invoice Number"
610
+ msgstr "Número da Fatura"
611
+
612
+ #: includes/wcdn-template-functions.php:253
613
+ msgid "Invoice Date"
614
+ msgstr ""
615
 
616
  # @ woocommerce-delivery-notes
617
+ #: includes/wcdn-template-functions.php:259
618
  msgid "Order Number"
619
  msgstr "Número do Pedido"
620
 
621
  # @ woocommerce-delivery-notes
622
+ #: includes/wcdn-template-functions.php:264
623
  msgid "Order Date"
624
  msgstr "Data do pedido"
625
 
626
  # @ woocommerce-delivery-notes
627
+ #: includes/wcdn-template-functions.php:269
628
  msgid "Payment Method"
629
  msgstr "Forma de pagamento"
630
 
631
  # @ woocommerce-delivery-notes
632
+ #: includes/wcdn-template-functions.php:282
 
 
 
 
 
633
  msgid "Telephone"
634
  msgstr "Telefone"
635
 
636
+ #: includes/wcdn-template-functions.php:315
637
  msgid "SKU:"
638
  msgstr "SKU:"
639
 
640
+ #: includes/wcdn-template-functions.php:409
641
+ #: includes/wcdn-template-functions.php:413
642
+ msgid "(Includes %s)"
643
+ msgstr ""
644
+
645
+ #: includes/wcdn-template-functions.php:429
646
+ msgid "Refund"
647
+ msgstr ""
648
+
649
+ #: includes/wcdn-template-functions.php:441
650
+ msgid "Order Subtotal"
651
+ msgstr ""
652
+
653
+ #: includes/wcdn-welcome.php:54
654
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note %s"
655
+ msgstr ""
656
+
657
+ #: includes/wcdn-welcome.php:55
658
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note"
659
+ msgstr ""
660
+
661
+ #: includes/wcdn-welcome.php:154
662
+ msgid ""
663
+ "f you want to change the default invoice numbers & set some numbering scheme "
664
+ "of your own, then you can set it here with a starting invoice number, a "
665
+ "prefix & suffix. For example, you could set it as: TS/001/17-18."
666
+ msgstr ""
667
+
668
+ #: includes/wcdn-welcome.php:186
669
+ msgid "Current Offers"
670
+ msgstr ""
671
+
672
  # @ woocommerce-delivery-notes
673
+ #: templates/print-order/print-content.php:28
674
  msgid "Billing Address"
675
  msgstr "Endereço de cobrança"
676
 
677
  # @ woocommerce-delivery-notes
678
+ #: templates/print-order/print-content.php:31
679
+ #: templates/print-order/print-content.php:40
680
  msgid "N/A"
681
  msgstr "N/A"
682
 
683
  # @ woocommerce-delivery-notes
684
+ #: templates/print-order/print-content.php:37
685
  msgid "Shipping Address"
686
  msgstr "Endereço de entrega"
687
 
688
  # @ woocommerce-delivery-notes
689
+ #: templates/print-order/print-content.php:71
690
  msgid "Product"
691
  msgstr "Produto"
692
 
693
+ #: templates/print-order/print-content.php:72
694
  msgid "Price"
695
  msgstr "Preço"
696
 
697
+ #: templates/print-order/print-content.php:73
698
  msgid "Quantity"
699
  msgstr "Quantidade"
700
 
701
  # @ woocommerce-delivery-notes
702
+ #: templates/print-order/print-content.php:74
703
  msgid "Total"
704
  msgstr "Total"
705
 
706
  # @ woocommerce-delivery-notes
707
+ #: templates/print-order/print-content.php:147
708
  msgid "Download:"
709
  msgstr "Download:"
710
 
711
  # @ woocommerce-delivery-notes
712
+ #: templates/print-order/print-content.php:148
 
713
  msgid "%s Files"
714
  msgstr "%s Arquivos"
715
 
716
  # @ woocommerce-delivery-notes
717
+ #: templates/print-order/print-content.php:202
718
  msgid "Customer Note"
719
  msgstr "Notas do Cliente"
720
 
721
+ #: woocommerce-delivery-notes.php:96 woocommerce-delivery-notes.php:103
722
+ msgid "Cheatin&#8217; huh?"
723
+ msgstr ""
724
+
725
+ #: woocommerce-delivery-notes.php:275
726
+ msgid ""
727
+ "I can't differentiate between Invoice, Delivery Notes & Receipt. The "
728
+ "templates are the same. "
729
+ msgstr ""
730
+
731
+ #: woocommerce-delivery-notes.php:281
732
+ msgid "The invoice sent through mail can't be downloaded as PDF directly."
733
+ msgstr ""
734
+
735
+ #: woocommerce-delivery-notes.php:287
736
+ msgid "The plugin is not compatible with another plugin."
737
+ msgstr ""
738
+
739
+ #: woocommerce-delivery-notes.php:293
740
+ msgid "This plugin is not useful to me."
741
+ msgstr ""
742
+
743
  # @ woocommerce-delivery-notes
744
+ #: woocommerce-delivery-notes.php:351
745
  msgid "Go to the settings page"
746
  msgstr "Ir para configurações"
747
 
748
  # @ woocommerce-delivery-notes
749
+ #: woocommerce-delivery-notes.php:351
750
  msgid "Settings"
751
  msgstr "Configurações"
752
+
753
+ #~ msgid "Do you really want to reset the counter to zero?"
754
+ #~ msgstr "Deseja realmente zerar o contador ?"
755
+
756
+ #~ msgid ""
757
+ #~ "You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s"
758
+ #~ "\">invoice</a>, <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s\">delivery "
759
+ #~ "note</a> or <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> "
760
+ #~ "template."
761
+ #~ msgstr ""
762
+ #~ "Você pode visualizar o template <a href=\"%1$s\" target=\"%4$s\" class="
763
+ #~ "\"%5$s\">fatura</a>, <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s\">nota "
764
+ #~ "</a> or <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">recebimento</a>."
765
+
766
+ # @ woocommerce-delivery-notes
767
+ #~ msgid ""
768
+ #~ "With the FAQ in the readme file you can learn how to customize the "
769
+ #~ "template."
770
+ #~ msgstr ""
771
+ #~ "Com o FAQ no arquivo leia-me que você pode aprender a personalizar o "
772
+ #~ "modelo."
773
+
774
+ # @ woocommerce-delivery-notes
775
+ #~ msgid "Company/Shop Logo"
776
+ #~ msgstr "Logo da Empresa"
777
+
778
+ # @ woocommerce-delivery-notes
779
+ #~ msgid "Remove Logo"
780
+ #~ msgstr "Remover Logo"
781
+
782
+ # @ woocommerce-delivery-notes
783
+ #~ msgid "Set Logo"
784
+ #~ msgstr "Definir Logo"
785
+
786
+ # @ woocommerce-delivery-notes
787
+ #~ msgid "A company/shop logo representing your business."
788
+ #~ msgstr "Logo da empresa."
789
+
790
+ # @ woocommerce-delivery-notes
791
+ #~ msgid "Note:"
792
+ #~ msgstr "Nota:"
793
+
794
+ # @ woocommerce-delivery-notes
795
+ #~ msgid ""
796
+ #~ "When the image is printed, its pixel density will automatically be eight "
797
+ #~ "times higher than the original. This means, 1 printed inch will "
798
+ #~ "correspond to about 288 pixels on the screen. Example: an image with a "
799
+ #~ "width of 576 pixels and a height of 288 pixels will have a printed size "
800
+ #~ "of about 2 inches to 1 inch."
801
+ #~ msgstr ""
802
+ #~ "Quando a imagem é imprimida, a sua densidade de pixels será "
803
+ #~ "automaticamente oito vezes mais elevadas do que o original. Isso "
804
+ #~ "significa, de 1 polegada impressa corresponderá a cerca de 288 pixels na "
805
+ #~ "tela. Exemplo: uma imagem com uma largura de 576 pixels e uma altura de "
806
+ #~ "288 pixels terá um tamanho impresso de cerca de 2 polegadas a 1 polegada."
807
+
808
+ # @ woocommerce-delivery-notes
809
+ #~ msgid "Company/Shop Name"
810
+ #~ msgstr "Empresa"
811
+
812
+ # @ woocommerce-delivery-notes
813
+ #~ msgid "Your company/shop name for the Delivery Note."
814
+ #~ msgstr "Nome da empresa que envia a nota."
815
+
816
+ # @ woocommerce-delivery-notes
817
+ #~ msgid ""
818
+ #~ "Leave blank to use the default Website/Blog title defined in WordPress "
819
+ #~ "settings. The name will be ignored when a Logo is set."
820
+ #~ msgstr "Deixar em branco para usar o padrão."
821
+
822
+ # @ woocommerce-delivery-notes
823
+ #~ msgid "Company/Shop Address"
824
+ #~ msgstr "Endereço de cobrança"
825
+
826
+ # @ woocommerce-delivery-notes
827
+ #~ msgid ""
828
+ #~ "The postal address of the company/shop or even e-mail or telephone, which "
829
+ #~ "gets printed right after the company/shop name."
830
+ #~ msgstr ""
831
+ #~ "O endereço da empresa ou até mesmo e-mail ou telefone, que será impresso "
832
+ #~ "logo após o nome da empresa."
833
+
834
+ # @ woocommerce-delivery-notes
835
+ #~ msgid "Leave blank to not print an address."
836
+ #~ msgstr "Deixe em branco para não imprimir o endereço."
837
+
838
+ # @ woocommerce-delivery-notes
839
+ #~ msgid ""
840
+ #~ "Add some personal notes, or season greetings or whatever (e.g. Thank You "
841
+ #~ "for Your Order!, Merry Christmas!, etc.)."
842
+ #~ msgstr ""
843
+ #~ "Adicionar algumas notas pessoais, ou os cumprimentos da estação ou o que "
844
+ #~ "quer (por exemplo, Obrigado por seu Pedido !, Feliz Natal !, etc.)."
845
+
846
+ # @ woocommerce-delivery-notes
847
+ #~ msgid "Leave blank to not print any personal notes."
848
+ #~ msgstr "Deixar em branco para não imprimir nenhuma nota pessoal."
849
+
850
+ # @ woocommerce-delivery-notes
851
+ #~ msgid "Returns Policy, Conditions, etc"
852
+ #~ msgstr "Política de Devolução, Condições, etc"
853
+
854
+ # @ woocommerce-delivery-notes
855
+ #~ msgid ""
856
+ #~ "Here you can add some more policies, conditions etc. For example add a "
857
+ #~ "returns policy in case the client would like to send back some goods. In "
858
+ #~ "some countries (e.g. in the European Union) this is required so please "
859
+ #~ "add any required info in accordance with the statutory regulations."
860
+ #~ msgstr ""
861
+ #~ "Aqui você pode adicionar mais algumas políticas, condições etc. Por "
862
+ #~ "exemplo adicionar uma política de devoluções no caso de o cliente "
863
+ #~ "gostaria de enviar de volta alguns bens. Em alguns países (por exemplo, "
864
+ #~ "na União Europeia) isto é necessário por isso, adicionar qualquer "
865
+ #~ "informação necessária em conformidade com os regulamentos legais."
866
+
867
+ # @ woocommerce-delivery-notes
868
+ #~ msgid "Leave blank to not print any policies or conditions."
869
+ #~ msgstr "Deixe em branco para não imprimir quaisquer políticas ou condições."
870
+
871
+ # @ woocommerce-delivery-notes
872
+ #~ msgid ""
873
+ #~ "Add some further footer imprint, e-mail, telephone, copyright notes etc. "
874
+ #~ "This makes the printed sheets a bit more branded."
875
+ #~ msgstr "Adicionar notas no rodapé da página, notas de copyright etc."
876
+
877
+ # @ woocommerce-delivery-notes
878
+ #~ msgid "Leave blank to not print a footer."
879
+ #~ msgstr "Deixe em branco para não imprimir um rodapé."
880
+
881
+ #~ msgid "Types"
882
+ #~ msgstr "Tipos"
883
+
884
+ #~ msgid "Enable Invoices"
885
+ #~ msgstr "Habilitar faturas"
886
+
887
+ #~ msgid "Enable Delivery Notes"
888
+ #~ msgstr "Habilitar entrega de notas"
889
+
890
+ #~ msgid "Enable Receipts"
891
+ #~ msgstr "Habilitar recebimento"
892
+
893
+ #~ msgid "Front-end Options"
894
+ #~ msgstr "Opções de Front-end"
895
+
896
+ #~ msgid "Print Buttons"
897
+ #~ msgstr "Botões de impressão"
898
+
899
+ # @ woocommerce-delivery-notes
900
+ #~ msgid "Order Numbering"
901
+ #~ msgstr "Número do Pedido"
902
+
903
+ #~ msgid "Invoice Number Start"
904
+ #~ msgstr "Começo do número da fatura"
905
+
906
+ #~ msgid "Start the numbering at the specified number."
907
+ #~ msgstr "Iniciar a numeração para o número especificado."
908
+
909
+ #~ msgid "Use only integers."
910
+ #~ msgstr "Usar números inteiros."
911
+
912
+ #~ msgid "Invoice Number Prefix"
913
+ #~ msgstr "Prefixo do Número da Fatura"
914
+
915
+ #~ msgid "Leave blank to not add a prefix."
916
+ #~ msgstr "Deixe em branco para não imprimir o prefixo."
917
+
918
+ #~ msgid "Invoice Number Suffix"
919
+ #~ msgstr "Prefixo do Número da Fatura"
920
+
921
+ #~ msgid "Leave blank to not add a suffix."
922
+ #~ msgstr "Deixe em branco para não imprimir o prefixo."
923
+
924
+ #~ msgid "Invoice Number Counter"
925
+ #~ msgstr "Sufixo do número da fatura"
926
+
927
+ #~ msgid "Reset Counter"
928
+ #~ msgstr "Zerar contador"
929
+
930
+ #~ msgid "Sequential Order Number"
931
+ #~ msgstr "Número de pedido sequencial"
932
+
933
+ # @ woocommerce-delivery-notes
934
+ #~ msgid "Sequential numbering is enabled."
935
+ #~ msgstr "Sequential numbering ativado."
936
+
937
+ # @ woocommerce-delivery-notes
938
+ #~ msgid ""
939
+ #~ "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
940
+ #~ "Numbers</a> Plugin."
941
+ #~ msgstr ""
942
+ #~ "Instalar e ativar o plugin gratuito <a href=\"%s\">WooCommerce Sequential "
943
+ #~ "Order Numbers</a>."
944
+
945
+ # @ woocommerce-delivery-notes
946
+ #~ msgid "Delivery note created."
947
+ #~ msgid_plural "%s delivery notes created."
948
+ #~ msgstr[0] "Nota de Entrega"
949
+ #~ msgstr[1] "%s notas de Entrega"
languages/woocommerce-delivery-notes-sv_SE.mo ADDED
Binary file
languages/woocommerce-delivery-notes-sv_SE.po CHANGED
@@ -8,9 +8,10 @@
8
  msgid ""
9
  msgstr ""
10
  "Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
11
- "Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
12
- "POT-Creation-Date: 2015-01-31 15:44+0100\n"
13
- "PO-Revision-Date: 2015-05-27 15:27+0100\n"
 
14
  "Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
15
  "Language-Team: \n"
16
  "Language: sv_SE\n"
@@ -18,530 +19,928 @@ msgstr ""
18
  "Content-Type: text/plain; charset=UTF-8\n"
19
  "Content-Transfer-Encoding: 8bit\n"
20
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
21
- "X-Generator: Poedit 1.7.6\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;"
24
- "_nx:4c,1,2;_nx_noop:4c,1,2;esc_attr_e;esc_attr__\n"
 
25
  "X-Poedit-Basepath: .\n"
26
  "X-Textdomain-Support: yes\n"
27
  "X-Poedit-SearchPath-0: ..\n"
28
 
29
  # @ woocommerce-delivery-notes
30
- #: ../includes/class-wcdn-print.php:41
31
  msgid "Invoice"
32
  msgstr "Faktura"
33
 
34
- #: ../includes/class-wcdn-print.php:42
35
  msgid "Invoices"
36
  msgstr "Fakturor"
37
 
38
  # @ woocommerce-delivery-notes
39
- #: ../includes/class-wcdn-print.php:43
40
  msgid "Print Invoice"
41
  msgstr "Skriv ut faktura"
42
 
43
- #: ../includes/class-wcdn-print.php:44
44
  msgid "Print Invoices"
45
  msgstr "Skriv ut fakturor"
46
 
47
  # @ woocommerce-delivery-notes
48
- #: ../includes/class-wcdn-print.php:45
49
  msgid "Invoice created."
50
  msgstr "Faktura skapad"
51
 
52
- #: ../includes/class-wcdn-print.php:46
53
  msgid "Invoices created."
54
  msgstr "Fakturor skapade."
55
 
56
- #: ../includes/class-wcdn-print.php:47
57
- msgid "Enable Invoices"
58
- msgstr "Aktivera fakturor"
59
 
60
  # @ woocommerce-delivery-notes
61
- #: ../includes/class-wcdn-print.php:53
62
  msgid "Delivery Note"
63
  msgstr "Följesedel"
64
 
65
- #: ../includes/class-wcdn-print.php:54
66
  msgid "Delivery Notes"
67
  msgstr "Följesedlar"
68
 
69
  # @ woocommerce-delivery-notes
70
- #: ../includes/class-wcdn-print.php:55
71
  msgid "Print Delivery Note"
72
  msgstr "Skriv ut följesedel"
73
 
74
- #: ../includes/class-wcdn-print.php:56
75
  msgid "Print Delivery Notes"
76
  msgstr "Skriv ut följesedlar"
77
 
78
- #: ../includes/class-wcdn-print.php:57
79
  msgid "Delivery Note created."
80
  msgstr "Följesedel skapad"
81
 
82
- #: ../includes/class-wcdn-print.php:58
83
  msgid "Delivery Notes created."
84
  msgstr "Följesedlar skapade"
85
 
86
- #: ../includes/class-wcdn-print.php:59
87
- msgid "Enable Delivery Notes"
88
- msgstr "Aktivera följesedlar"
89
 
90
- #: ../includes/class-wcdn-print.php:65
91
  msgid "Receipt"
92
  msgstr "Kvitto"
93
 
94
- #: ../includes/class-wcdn-print.php:66
95
  msgid "Receipts"
96
  msgstr "Kvitton"
97
 
98
- #: ../includes/class-wcdn-print.php:67
99
  msgid "Print Receipt"
100
  msgstr "Skriv ut kvitto"
101
 
102
- #: ../includes/class-wcdn-print.php:68
103
  msgid "Print Receipts"
104
  msgstr "Skriv ut kvitton"
105
 
106
- #: ../includes/class-wcdn-print.php:69
107
  msgid "Receipt created."
108
  msgstr "Kvitto skapad"
109
 
110
- #: ../includes/class-wcdn-print.php:70
111
  msgid "Receipts created."
112
  msgstr "Kvitton skapade"
113
 
114
- #: ../includes/class-wcdn-print.php:71
115
- msgid "Enable Receipts"
116
- msgstr "Aktivera kvitton"
117
 
118
  # @ woocommerce-delivery-notes
119
- #: ../includes/class-wcdn-print.php:80
120
  msgid "Order"
121
  msgstr "Order"
122
 
123
- #: ../includes/class-wcdn-print.php:81
124
  msgid "Orders"
125
  msgstr "Ordrar"
126
 
127
  # @ woocommerce-delivery-notes
128
- #: ../includes/class-wcdn-print.php:82 ../includes/class-wcdn-settings.php:157
129
  msgid "Print Order"
130
  msgstr "Skriv ut order"
131
 
132
- #: ../includes/class-wcdn-print.php:83
133
  msgid "Print Orders"
134
  msgstr "Skriv ut ordrar"
135
 
136
- #: ../includes/class-wcdn-settings.php:72
137
- msgid "Do you really want to reset the counter to zero? This process can't be undone."
 
 
 
 
 
 
138
  msgstr "Vill du verkligen nollställa räknaren? Detta kan inte ångras."
139
 
140
  # @ woocommerce-delivery-notes
141
- #: ../includes/class-wcdn-settings.php:102 ../includes/class-wcdn-theme.php:56 ../includes/class-wcdn-theme.php:91
142
- #: ../includes/wcdn-template-functions.php:127
143
  msgid "Print"
144
  msgstr "Skriv ut"
145
 
146
- #: ../includes/class-wcdn-settings.php:176
147
- #, php-format
148
- msgid ""
149
- "You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target=\"%4$s\" "
150
- "class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> template."
151
  msgstr ""
152
- "Du kan förhandgranska <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target=\"%4$s"
153
- "\" class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> template."
154
-
155
- # @ woocommerce-delivery-notes
156
- #: ../includes/class-wcdn-settings.php:177
157
- msgid "With the FAQ in the readme file you can learn how to customize the template."
158
- msgstr "I FAQ i readme filen kan du lära dig hur du skräddarsyr template."
159
-
160
- # @ woocommerce-delivery-notes
161
- #: ../includes/class-wcdn-settings.php:188
162
- msgid "Company/Shop Logo"
163
- msgstr "Företags/affärs logotype"
164
-
165
- # @ woocommerce-delivery-notes
166
- #: ../includes/class-wcdn-settings.php:194
167
- msgid "Remove Logo"
168
- msgstr "Ta bort logotype"
169
-
170
- # @ woocommerce-delivery-notes
171
- #: ../includes/class-wcdn-settings.php:195
172
- msgid "Set Logo"
173
- msgstr "Ange logotype"
174
-
175
- # @ woocommerce-delivery-notes
176
- #: ../includes/class-wcdn-settings.php:199
177
- msgid "A company/shop logo representing your business."
178
- msgstr "En Företags/affärs logotype som representerar ditt företag"
179
 
180
- # @ woocommerce-delivery-notes
181
- #: ../includes/class-wcdn-settings.php:200 ../includes/class-wcdn-settings.php:213
182
- #: ../includes/class-wcdn-settings.php:226 ../includes/class-wcdn-settings.php:239
183
- #: ../includes/class-wcdn-settings.php:252 ../includes/class-wcdn-settings.php:265
184
- #: ../includes/class-wcdn-settings.php:382 ../includes/class-wcdn-settings.php:397
185
- #: ../includes/class-wcdn-settings.php:412
186
- msgid "Note:"
187
- msgstr "Anteckning:"
188
 
189
- # @ woocommerce-delivery-notes
190
- #: ../includes/class-wcdn-settings.php:201
191
  msgid ""
192
- "When the image is printed, its pixel density will automatically be eight times higher than the original. This "
193
- "means, 1 printed inch will correspond to about 288 pixels on the screen. Example: an image with a width of 576 "
194
- "pixels and a height of 288 pixels will have a printed size of about 2 inches to 1 inch."
195
  msgstr ""
196
- "När bilden skrivs ut, kommer dess pixeltätheten automatiskt vara åtta gånger högre än den ursprungliga. Detta "
197
- "innebär, 2,54 cm tryckt motsvarar cirka 288 pixlar på skärmen. Exempel: en bild med en bredd på 576 pixlar och en "
198
- "höjd av 288 bildpunkter kommer att ha en tryckt storlek på ca 5 cm X 2.54 cm."
199
-
200
- # @ woocommerce-delivery-notes
201
- #: ../includes/class-wcdn-settings.php:207
202
- msgid "Company/Shop Name"
203
- msgstr "Företags/Affärsnamn"
204
 
205
- # @ woocommerce-delivery-notes
206
- #: ../includes/class-wcdn-settings.php:212
207
- msgid "Your company/shop name for the Delivery Note."
208
- msgstr "Företags/Affärsnamn för följesedeln"
209
 
210
- # @ woocommerce-delivery-notes
211
- #: ../includes/class-wcdn-settings.php:214
212
  msgid ""
213
- "Leave blank to use the default Website/Blog title defined in WordPress settings. The name will be ignored when a "
214
- "Logo is set."
 
215
  msgstr ""
216
- "Lämna tomt för att använda standard webbsida / blogg titel som definieras i Wordpress inställningarna. Namnet "
217
- "kommer att ignoreras när en logotyp är vald."
218
 
219
- # @ woocommerce-delivery-notes
220
- #: ../includes/class-wcdn-settings.php:220
221
- msgid "Company/Shop Address"
222
- msgstr "Företag/affärsadress"
223
 
224
- # @ woocommerce-delivery-notes
225
- #: ../includes/class-wcdn-settings.php:225
226
  msgid ""
227
- "The postal address of the company/shop or even e-mail or telephone, which gets printed right after the company/"
228
- "shop name."
229
  msgstr ""
230
- "Företagets/affärens postadressen eller e-post eller telefon, som blir tryckt direkt efter företaget/affärsnamnet."
231
 
232
- # @ woocommerce-delivery-notes
233
- #: ../includes/class-wcdn-settings.php:227
234
- msgid "Leave blank to not print an address."
235
- msgstr "Lämnas tomt för att inte skriva ut adressen."
236
 
237
- #: ../includes/class-wcdn-settings.php:233
 
 
 
 
238
  msgid "Complimentary Close"
239
  msgstr "Artighetsfras slut"
240
 
241
- # @ woocommerce-delivery-notes
242
- #: ../includes/class-wcdn-settings.php:238
243
- msgid ""
244
- "Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
245
  msgstr ""
246
- "Lägg till några personliga anteckningar, eller säsongs hälsning eller vad som helst (t.ex. Tack för din "
247
- "beställning !, god jul !, etc.)."
248
 
249
- # @ woocommerce-delivery-notes
250
- #: ../includes/class-wcdn-settings.php:240
251
- msgid "Leave blank to not print any personal notes."
252
- msgstr "Lämnas tomt för att inte skriva ut några personliga anteckningar."
253
-
254
- # @ woocommerce-delivery-notes
255
- #: ../includes/class-wcdn-settings.php:246
256
- msgid "Returns Policy, Conditions, etc"
257
- msgstr "Returpolicy, villkor, etc"
258
-
259
- # @ woocommerce-delivery-notes
260
- #: ../includes/class-wcdn-settings.php:251
261
- msgid ""
262
- "Here you can add some more policies, conditions etc. For example add a returns policy in case the client would "
263
- "like to send back some goods. In some countries (e.g. in the European Union) this is required so please add any "
264
- "required info in accordance with the statutory regulations."
265
  msgstr ""
266
- "Här kan du lägga till några fler regler, villkor etc. Till exempel lägga till en returpolicy i fall kunden vill "
267
- "skicka tillbaka en del varor. I vissa länder (t.ex. i EU) krävs detta, så lägg den obligatorisk information i "
268
- "enlighet med de lagstadgade reglerna."
269
 
270
- # @ woocommerce-delivery-notes
271
- #: ../includes/class-wcdn-settings.php:253
272
- msgid "Leave blank to not print any policies or conditions."
273
- msgstr "Lämna tomt för att inte skriva ut några regler eller villkor."
274
 
275
  # @ woocommerce-delivery-notes
276
- #: ../includes/class-wcdn-settings.php:259
277
  msgid "Footer"
278
  msgstr "Sidfot"
279
 
280
- # @ woocommerce-delivery-notes
281
- #: ../includes/class-wcdn-settings.php:264
282
  msgid ""
283
- "Add some further footer imprint, e-mail, telephone, copyright notes etc. This makes the printed sheets a bit more "
284
- "branded."
285
  msgstr ""
286
- "Lägg till några ytterligare sidfotstillägg, e-post, telefon, copyright anteckningar etc. Det gör de tryckta "
287
- "sidorna bli lite mer personliga."
288
 
289
- # @ woocommerce-delivery-notes
290
- #: ../includes/class-wcdn-settings.php:266
291
- msgid "Leave blank to not print a footer."
292
- msgstr "Lämna tomt för att inte skriva ut en sidfot."
293
-
294
- #: ../includes/class-wcdn-settings.php:273
295
- msgid "Print Options"
296
- msgstr "Utskriftsalternativ"
297
-
298
- #: ../includes/class-wcdn-settings.php:278
299
- msgid "Types"
300
- msgstr "Typer"
301
-
302
- #: ../includes/class-wcdn-settings.php:297
303
- msgid "Theme Options"
304
- msgstr "Alternativ för tema"
305
 
306
  # @ woocommerce-delivery-notes
307
- #: ../includes/class-wcdn-settings.php:302
308
  msgid "Print Page Endpoint"
309
  msgstr "Utskriftsidans slutpunkt"
310
 
311
  # @ woocommerce-delivery-notes
312
- #: ../includes/class-wcdn-settings.php:309
313
- msgid "The endpoint is appended to the accounts page URL to print the order. It should be unique."
314
- msgstr "Slutpunkten läggs till sidan kontots URL för att skriva ut ordern. Det bör vara unikt."
315
-
316
- #: ../includes/class-wcdn-settings.php:315
317
- msgid "My Account"
318
- msgstr "Mitt konto"
319
-
320
- # @ woocommerce-delivery-notes
321
- #: ../includes/class-wcdn-settings.php:322
322
- msgid "Show print button on the \"View Order\" page"
323
- msgstr "Visa utskriftsknappen på \"View Order\" sidan"
324
-
325
- # @ woocommerce-delivery-notes
326
- #: ../includes/class-wcdn-settings.php:329
327
- msgid "Show print buttons on the \"My Account\" page"
328
- msgstr "Visa utskriftsknappen på \"My Account\" sidan"
329
 
330
  # @ woocommerce-delivery-notes
331
- #: ../includes/class-wcdn-settings.php:336 ../includes/wcdn-template-functions.php:254
 
332
  msgid "Email"
333
  msgstr "E-post"
334
 
335
- #: ../includes/class-wcdn-settings.php:343
336
  msgid "Show print link in customer emails"
337
  msgstr "Visa utskriftslänken i kund e-post"
338
 
339
- #: ../includes/class-wcdn-settings.php:347
340
  msgid ""
341
- "This includes the emails for a new, processing and completed order. On top of that the customer invoice email "
342
- "also includes the link."
343
  msgstr ""
344
- "Detta inkluderar e-post för en ny, bearbetning och avslutade order. Utöver det innehåller även kundfakturan även "
345
- "länken."
 
 
 
 
 
 
 
 
 
346
 
347
  # @ woocommerce-delivery-notes
348
- #: ../includes/class-wcdn-settings.php:354
349
- msgid "Order Numbering"
350
- msgstr "Ordenumrering"
351
 
352
- #: ../includes/class-wcdn-settings.php:359
353
- msgid "Invoice Numbering"
354
- msgstr "Fakturanumrering"
355
 
356
- #: ../includes/class-wcdn-settings.php:367
357
  msgid "Create invoice numbers"
358
  msgstr "Skapa fakturanummer"
359
 
360
- #: ../includes/class-wcdn-settings.php:374
361
- msgid "Invoice Number Start"
362
- msgstr "Faktruranummer start"
363
-
364
- #: ../includes/class-wcdn-settings.php:381
365
- msgid "Start the numbering at the specified number."
366
- msgstr "Börja numreringen vid det angivna numret."
367
 
368
- #: ../includes/class-wcdn-settings.php:383
369
- msgid "Use only integers."
370
- msgstr "Använd endast heltal."
371
 
372
- #: ../includes/class-wcdn-settings.php:389
373
- msgid "Invoice Number Prefix"
374
- msgstr "Fakturanummer prefix"
375
 
376
- #: ../includes/class-wcdn-settings.php:396
377
  msgid "This text will be prepended to the invoice number."
378
  msgstr "Denna text kommer att infogas till fakturanumret."
379
 
380
- #: ../includes/class-wcdn-settings.php:398
381
- msgid "Leave blank to not add a prefix."
382
- msgstr "Lämna tomt för att inte lägga till ett prefix."
383
-
384
- #: ../includes/class-wcdn-settings.php:404
385
- msgid "Invoice Number Suffix"
386
- msgstr "Fakturanummer suffix"
387
 
388
- #: ../includes/class-wcdn-settings.php:411
389
  msgid "This text will be appended to the invoice number."
390
  msgstr "Denna text kommer att läggas till fakturanumret."
391
 
392
- #: ../includes/class-wcdn-settings.php:413
393
- msgid "Leave blank to not add a suffix."
394
- msgstr "Lämna tomt för att inte lägga till ett suffix."
395
-
396
- #: ../includes/class-wcdn-settings.php:419
397
- msgid "Invoice Number Counter"
398
- msgstr "Räknare för fakturanummer"
399
 
400
- #: ../includes/class-wcdn-settings.php:428
401
- msgid "Reset Counter …"
402
- msgstr "Nollställ räknaren..."
 
 
403
 
404
- #: ../includes/class-wcdn-settings.php:434
405
- msgid "Sequential Order Number"
406
- msgstr "Sekventiellt ordernummer"
 
 
 
 
407
 
408
- # @ woocommerce-delivery-notes
409
- #: ../includes/class-wcdn-settings.php:439
410
- msgid "Sequential numbering is enabled."
411
- msgstr "Sekventiellt ordernummer aktiverat"
412
 
413
- # @ woocommerce-delivery-notes
414
- #: ../includes/class-wcdn-settings.php:441
415
- #, php-format
416
- msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
417
- msgstr "Installera och aktivera <a href=\"%s\">WooCommerce Sequential Order Numbers</a> pluginen som är gratis."
418
 
419
- #: ../includes/class-wcdn-theme.php:106
420
  msgid "Print your order"
421
  msgstr "Skriv ut din order"
422
 
423
- #: ../includes/class-wcdn-theme.php:112
424
  msgid "Print:"
425
  msgstr "Skriv ut:"
426
 
427
- #: ../includes/class-wcdn-theme.php:112
428
  msgid "Open print view in browser"
429
  msgstr "Öppna utskriftsvy i webbläsaren"
430
 
431
  # @ woocommerce-delivery-notes
432
- #: ../includes/class-wcdn-writepanel.php:214
433
  msgid "Print now"
434
  msgstr "Skriv ut nu"
435
 
436
  # @ woocommerce-delivery-notes
437
- #: ../includes/class-wcdn-writepanel.php:228
438
  msgid "Order Printing"
439
  msgstr "Order utskrift"
440
 
441
- #: ../includes/class-wcdn-writepanel.php:256
442
  msgid "Invoice number: "
443
  msgstr "Fakturanummer:"
444
 
445
- #: ../includes/class-wcdn-writepanel.php:257
446
  msgid "Invoice date: "
447
  msgstr "Fakturadatum"
448
 
449
- #: ../includes/wcdn-template-functions.php:232
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
450
  msgid "Invoice Number"
451
  msgstr "Fakturanummer"
452
 
 
 
 
 
453
  # @ woocommerce-delivery-notes
454
- #: ../includes/wcdn-template-functions.php:238
455
  msgid "Order Number"
456
  msgstr "Ordernummer"
457
 
458
  # @ woocommerce-delivery-notes
459
- #: ../includes/wcdn-template-functions.php:243
460
  msgid "Order Date"
461
  msgstr "Orderdatum"
462
 
463
  # @ woocommerce-delivery-notes
464
- #: ../includes/wcdn-template-functions.php:248
465
  msgid "Payment Method"
466
  msgstr "Betalmetod"
467
 
468
  # @ woocommerce-delivery-notes
469
- #: ../includes/wcdn-template-functions.php:261
470
  msgid "Telephone"
471
  msgstr "Telefon"
472
 
473
- #: ../includes/wcdn-template-functions.php:294
474
  msgid "SKU:"
475
  msgstr "Artikelnr:"
476
 
477
- #: ../includes/wcdn-template-functions.php:380 ../includes/wcdn-template-functions.php:384
478
- #, php-format
479
  msgid "(Includes %s)"
480
  msgstr "(Includes %s)"
481
 
482
- #: ../includes/wcdn-template-functions.php:400
483
  msgid "Refund"
484
  msgstr "Återbetalning"
485
 
486
- #: ../includes/wcdn-template-functions.php:412
487
  msgid "Order Subtotal"
488
  msgstr "Order delsumma"
489
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
490
  # @ woocommerce-delivery-notes
491
- #: ../templates/print-order/print-content.php:28
492
  msgid "Billing Address"
493
  msgstr "Faktureringsadress"
494
 
495
  # @ woocommerce-delivery-notes
496
- #: ../templates/print-order/print-content.php:31 ../templates/print-order/print-content.php:40
 
497
  msgid "N/A"
498
  msgstr "Ej tillgängligt"
499
 
500
  # @ woocommerce-delivery-notes
501
- #: ../templates/print-order/print-content.php:37
502
  msgid "Shipping Address"
503
  msgstr "Leveransadress"
504
 
505
  # @ woocommerce-delivery-notes
506
- #: ../templates/print-order/print-content.php:70
507
  msgid "Product"
508
  msgstr "Produkt"
509
 
510
- #: ../templates/print-order/print-content.php:71
511
  msgid "Price"
512
  msgstr "Pris"
513
 
514
- #: ../templates/print-order/print-content.php:72
515
  msgid "Quantity"
516
  msgstr "Antal"
517
 
518
  # @ woocommerce-delivery-notes
519
- #: ../templates/print-order/print-content.php:73
520
  msgid "Total"
521
  msgstr "Totalt"
522
 
523
  # @ woocommerce-delivery-notes
524
- #: ../templates/print-order/print-content.php:97
525
  msgid "Download:"
526
  msgstr "Ladda ner:"
527
 
528
  # @ woocommerce-delivery-notes
529
- #: ../templates/print-order/print-content.php:98
530
- #, php-format
531
  msgid "%s Files"
532
  msgstr ""
533
 
534
  # @ woocommerce-delivery-notes
535
- #: ../templates/print-order/print-content.php:147
536
  msgid "Customer Note"
537
  msgstr "Kundnotering"
538
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
539
  # @ woocommerce-delivery-notes
540
- #: ../woocommerce-delivery-notes.php:181
541
  msgid "Go to the settings page"
542
  msgstr "Gå till inställningssidan"
543
 
544
  # @ woocommerce-delivery-notes
545
- #: ../woocommerce-delivery-notes.php:181
546
  msgid "Settings"
547
  msgstr "Inställningar"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  msgid ""
9
  msgstr ""
10
  "Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
11
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/woocommerce-"
12
+ "delivery-notes\n"
13
+ "POT-Creation-Date: 2018-10-22 19:03+0530\n"
14
+ "PO-Revision-Date: 2018-10-22 19:03+0530\n"
15
  "Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
16
  "Language-Team: \n"
17
  "Language: sv_SE\n"
19
  "Content-Type: text/plain; charset=UTF-8\n"
20
  "Content-Transfer-Encoding: 8bit\n"
21
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
22
+ "X-Generator: Poedit 1.8.7.1\n"
23
  "X-Poedit-SourceCharset: UTF-8\n"
24
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
25
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
26
+ "esc_attr_e;esc_attr__\n"
27
  "X-Poedit-Basepath: .\n"
28
  "X-Textdomain-Support: yes\n"
29
  "X-Poedit-SearchPath-0: ..\n"
30
 
31
  # @ woocommerce-delivery-notes
32
+ #: includes/class-wcdn-print.php:39 includes/class-wcdn-settings.php:237
33
  msgid "Invoice"
34
  msgstr "Faktura"
35
 
36
+ #: includes/class-wcdn-print.php:40
37
  msgid "Invoices"
38
  msgstr "Fakturor"
39
 
40
  # @ woocommerce-delivery-notes
41
+ #: includes/class-wcdn-print.php:41
42
  msgid "Print Invoice"
43
  msgstr "Skriv ut faktura"
44
 
45
+ #: includes/class-wcdn-print.php:42
46
  msgid "Print Invoices"
47
  msgstr "Skriv ut fakturor"
48
 
49
  # @ woocommerce-delivery-notes
50
+ #: includes/class-wcdn-print.php:43
51
  msgid "Invoice created."
52
  msgstr "Faktura skapad"
53
 
54
+ #: includes/class-wcdn-print.php:44
55
  msgid "Invoices created."
56
  msgstr "Fakturor skapade."
57
 
58
+ #: includes/class-wcdn-print.php:45
59
+ msgid "Show \"Print Invoice\" button"
60
+ msgstr ""
61
 
62
  # @ woocommerce-delivery-notes
63
+ #: includes/class-wcdn-print.php:51
64
  msgid "Delivery Note"
65
  msgstr "Följesedel"
66
 
67
+ #: includes/class-wcdn-print.php:52
68
  msgid "Delivery Notes"
69
  msgstr "Följesedlar"
70
 
71
  # @ woocommerce-delivery-notes
72
+ #: includes/class-wcdn-print.php:53
73
  msgid "Print Delivery Note"
74
  msgstr "Skriv ut följesedel"
75
 
76
+ #: includes/class-wcdn-print.php:54
77
  msgid "Print Delivery Notes"
78
  msgstr "Skriv ut följesedlar"
79
 
80
+ #: includes/class-wcdn-print.php:55
81
  msgid "Delivery Note created."
82
  msgstr "Följesedel skapad"
83
 
84
+ #: includes/class-wcdn-print.php:56
85
  msgid "Delivery Notes created."
86
  msgstr "Följesedlar skapade"
87
 
88
+ #: includes/class-wcdn-print.php:57
89
+ msgid "Show \"Print Delivery Note\" button"
90
+ msgstr ""
91
 
92
+ #: includes/class-wcdn-print.php:63
93
  msgid "Receipt"
94
  msgstr "Kvitto"
95
 
96
+ #: includes/class-wcdn-print.php:64
97
  msgid "Receipts"
98
  msgstr "Kvitton"
99
 
100
+ #: includes/class-wcdn-print.php:65
101
  msgid "Print Receipt"
102
  msgstr "Skriv ut kvitto"
103
 
104
+ #: includes/class-wcdn-print.php:66
105
  msgid "Print Receipts"
106
  msgstr "Skriv ut kvitton"
107
 
108
+ #: includes/class-wcdn-print.php:67
109
  msgid "Receipt created."
110
  msgstr "Kvitto skapad"
111
 
112
+ #: includes/class-wcdn-print.php:68
113
  msgid "Receipts created."
114
  msgstr "Kvitton skapade"
115
 
116
+ #: includes/class-wcdn-print.php:69
117
+ msgid "Show \"Print Receipt\" button"
118
+ msgstr ""
119
 
120
  # @ woocommerce-delivery-notes
121
+ #: includes/class-wcdn-print.php:78
122
  msgid "Order"
123
  msgstr "Order"
124
 
125
+ #: includes/class-wcdn-print.php:79
126
  msgid "Orders"
127
  msgstr "Ordrar"
128
 
129
  # @ woocommerce-delivery-notes
130
+ #: includes/class-wcdn-print.php:80
131
  msgid "Print Order"
132
  msgstr "Skriv ut order"
133
 
134
+ #: includes/class-wcdn-print.php:81
135
  msgid "Print Orders"
136
  msgstr "Skriv ut ordrar"
137
 
138
+ #: includes/class-wcdn-print.php:93
139
+ msgid "Default"
140
+ msgstr ""
141
+
142
+ #: includes/class-wcdn-settings.php:67
143
+ msgid ""
144
+ "Do you really want to reset the counter to zero? This process can't be "
145
+ "undone."
146
  msgstr "Vill du verkligen nollställa räknaren? Detta kan inte ångras."
147
 
148
  # @ woocommerce-delivery-notes
149
+ #: includes/class-wcdn-settings.php:75 includes/class-wcdn-theme.php:57
150
+ #: includes/class-wcdn-theme.php:94 includes/wcdn-template-functions.php:130
151
  msgid "Print"
152
  msgstr "Skriv ut"
153
 
154
+ #: includes/class-wcdn-settings.php:106
155
+ msgid "Template"
 
 
 
156
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
157
 
158
+ #: includes/class-wcdn-settings.php:113
159
+ msgid "Style"
160
+ msgstr ""
 
 
 
 
 
161
 
162
+ #: includes/class-wcdn-settings.php:114
 
163
  msgid ""
164
+ "The default print style. Read the <a href=\"%1$s\">FAQ</a> to learn how to "
165
+ "customize it."
 
166
  msgstr ""
 
 
 
 
 
 
 
 
167
 
168
+ #: includes/class-wcdn-settings.php:124
169
+ msgid "Shop Logo"
170
+ msgstr ""
 
171
 
172
+ #: includes/class-wcdn-settings.php:130
 
173
  msgid ""
174
+ "A shop logo representing your business. When the image is printed, its pixel "
175
+ "density will automatically be eight times higher than the original. This "
176
+ "means, 1 printed inch will correspond to about 288 pixels on the screen."
177
  msgstr ""
 
 
178
 
179
+ #: includes/class-wcdn-settings.php:134
180
+ msgid "Shop Name"
181
+ msgstr ""
 
182
 
183
+ #: includes/class-wcdn-settings.php:140
 
184
  msgid ""
185
+ "The shop name. Leave blank to use the default Website or Blog title defined "
186
+ "in WordPress settings. The name will be ignored when a Logo is set."
187
  msgstr ""
 
188
 
189
+ #: includes/class-wcdn-settings.php:144
190
+ msgid "Shop Address"
191
+ msgstr ""
 
192
 
193
+ #: includes/class-wcdn-settings.php:145
194
+ msgid "The postal address of the shop or even e-mail or telephone."
195
+ msgstr ""
196
+
197
+ #: includes/class-wcdn-settings.php:154
198
  msgid "Complimentary Close"
199
  msgstr "Artighetsfras slut"
200
 
201
+ #: includes/class-wcdn-settings.php:155
202
+ msgid "Add a personal close, notes or season greetings."
 
 
203
  msgstr ""
 
 
204
 
205
+ #: includes/class-wcdn-settings.php:164
206
+ msgid "Policies"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
207
  msgstr ""
 
 
 
208
 
209
+ #: includes/class-wcdn-settings.php:165
210
+ msgid "Add the shop policies, conditions, etc."
211
+ msgstr ""
 
212
 
213
  # @ woocommerce-delivery-notes
214
+ #: includes/class-wcdn-settings.php:174
215
  msgid "Footer"
216
  msgstr "Sidfot"
217
 
218
+ #: includes/class-wcdn-settings.php:175
 
219
  msgid ""
220
+ "Add a footer imprint, instructions, copyright notes, e-mail, telephone, etc."
 
221
  msgstr ""
 
 
222
 
223
+ #: includes/class-wcdn-settings.php:189
224
+ msgid "Pages & Buttons"
225
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
226
 
227
  # @ woocommerce-delivery-notes
228
+ #: includes/class-wcdn-settings.php:196
229
  msgid "Print Page Endpoint"
230
  msgstr "Utskriftsidans slutpunkt"
231
 
232
  # @ woocommerce-delivery-notes
233
+ #: includes/class-wcdn-settings.php:202
234
+ msgid ""
235
+ "The endpoint is appended to the accounts page URL to print the order. It "
236
+ "should be unique."
237
+ msgstr ""
238
+ "Slutpunkten läggs till sidan kontots URL för att skriva ut ordern. Det bör "
239
+ "vara unikt."
 
 
 
 
 
 
 
 
 
 
240
 
241
  # @ woocommerce-delivery-notes
242
+ #: includes/class-wcdn-settings.php:206
243
+ #: includes/wcdn-template-functions.php:275
244
  msgid "Email"
245
  msgstr "E-post"
246
 
247
+ #: includes/class-wcdn-settings.php:207
248
  msgid "Show print link in customer emails"
249
  msgstr "Visa utskriftslänken i kund e-post"
250
 
251
+ #: includes/class-wcdn-settings.php:211
252
  msgid ""
253
+ "This includes the emails for a new, processing and completed order. On top "
254
+ "of that the customer invoice email also includes the link."
255
  msgstr ""
256
+ "Detta inkluderar e-post för en ny, bearbetning och avslutade order. Utöver "
257
+ "det innehåller även kundfakturan även länken."
258
+
259
+ #: includes/class-wcdn-settings.php:215
260
+ msgid "My Account"
261
+ msgstr "Mitt konto"
262
+
263
+ # @ woocommerce-delivery-notes
264
+ #: includes/class-wcdn-settings.php:216
265
+ msgid "Show print button on the \"View Order\" page"
266
+ msgstr "Visa utskriftsknappen på \"View Order\" sidan"
267
 
268
  # @ woocommerce-delivery-notes
269
+ #: includes/class-wcdn-settings.php:224
270
+ msgid "Show print buttons on the \"My Account\" page"
271
+ msgstr "Visa utskriftsknappen på \"My Account\" sidan"
272
 
273
+ #: includes/class-wcdn-settings.php:244
274
+ msgid "Numbering"
275
+ msgstr ""
276
 
277
+ #: includes/class-wcdn-settings.php:245
278
  msgid "Create invoice numbers"
279
  msgstr "Skapa fakturanummer"
280
 
281
+ #: includes/class-wcdn-settings.php:253
282
+ msgid "Next Number"
283
+ msgstr ""
 
 
 
 
284
 
285
+ #: includes/class-wcdn-settings.php:260
286
+ msgid "The next invoice number."
287
+ msgstr ""
288
 
289
+ #: includes/class-wcdn-settings.php:264
290
+ msgid "Number Prefix"
291
+ msgstr ""
292
 
293
+ #: includes/class-wcdn-settings.php:271
294
  msgid "This text will be prepended to the invoice number."
295
  msgstr "Denna text kommer att infogas till fakturanumret."
296
 
297
+ #: includes/class-wcdn-settings.php:275
298
+ msgid "Number Suffix"
299
+ msgstr ""
 
 
 
 
300
 
301
+ #: includes/class-wcdn-settings.php:282
302
  msgid "This text will be appended to the invoice number."
303
  msgstr "Denna text kommer att läggas till fakturanumret."
304
 
305
+ #: includes/class-wcdn-settings.php:327
306
+ msgid "Admin"
307
+ msgstr ""
 
 
 
 
308
 
309
+ #: includes/class-wcdn-settings.php:330
310
+ msgid ""
311
+ "The print buttons are available on the order listing and on the order detail "
312
+ "screen."
313
+ msgstr ""
314
 
315
+ #: includes/class-wcdn-settings.php:372
316
+ msgid ""
317
+ "This section lets you customise the content. You can preview the <a href="
318
+ "\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target="
319
+ "\"%4$s\" class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s"
320
+ "\" class=\"%5$s\">receipt</a> template."
321
+ msgstr ""
322
 
323
+ #: includes/class-wcdn-settings.php:435
324
+ msgid "Select"
325
+ msgstr ""
 
326
 
327
+ #: includes/class-wcdn-settings.php:439
328
+ msgid "Remove"
329
+ msgstr ""
 
 
330
 
331
+ #: includes/class-wcdn-theme.php:112
332
  msgid "Print your order"
333
  msgstr "Skriv ut din order"
334
 
335
+ #: includes/class-wcdn-theme.php:119
336
  msgid "Print:"
337
  msgstr "Skriv ut:"
338
 
339
+ #: includes/class-wcdn-theme.php:119
340
  msgid "Open print view in browser"
341
  msgstr "Öppna utskriftsvy i webbläsaren"
342
 
343
  # @ woocommerce-delivery-notes
344
+ #: includes/class-wcdn-writepanel.php:218
345
  msgid "Print now"
346
  msgstr "Skriv ut nu"
347
 
348
  # @ woocommerce-delivery-notes
349
+ #: includes/class-wcdn-writepanel.php:232
350
  msgid "Order Printing"
351
  msgstr "Order utskrift"
352
 
353
+ #: includes/class-wcdn-writepanel.php:259
354
  msgid "Invoice number: "
355
  msgstr "Fakturanummer:"
356
 
357
+ #: includes/class-wcdn-writepanel.php:260
358
  msgid "Invoice date: "
359
  msgstr "Fakturadatum"
360
 
361
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:75
362
+ msgid "If you have a moment, please let us know why you are deactivating"
363
+ msgstr ""
364
+
365
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:76
366
+ msgid "Submit & Deactivate"
367
+ msgstr ""
368
+
369
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:77
370
+ msgid "Deactivate"
371
+ msgstr ""
372
+
373
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:78
374
+ msgid "Cancel"
375
+ msgstr ""
376
+
377
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:79
378
+ msgid "Yes - Deactivate"
379
+ msgstr ""
380
+
381
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:83
382
+ msgid "I found a better plugin"
383
+ msgstr ""
384
+
385
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:84
386
+ msgid "What's the plugin's name?"
387
+ msgstr ""
388
+
389
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:85
390
+ msgid "I only needed the plugin for a short period"
391
+ msgstr ""
392
+
393
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:86
394
+ msgid "The plugin is not working"
395
+ msgstr ""
396
+
397
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:87
398
+ msgid "Kindly share what didn't work so we can fix it for future users..."
399
+ msgstr ""
400
+
401
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:88
402
+ msgid "The plugin is great, but I need specific feature that you don't support"
403
+ msgstr ""
404
+
405
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:89
406
+ msgid "What feature?"
407
+ msgstr ""
408
+
409
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:90
410
+ msgid "I don't like to share my information with you"
411
+ msgstr ""
412
+
413
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:91
414
+ msgctxt ""
415
+ "the text of the 'other' reason for deactivating the plugin that is shown in "
416
+ "the modal box."
417
+ msgid "Other"
418
+ msgstr ""
419
+
420
+ #: includes/component/faq-support/ts-faq-support.php:127
421
+ msgid "Frequently Asked Questions for %s"
422
+ msgstr ""
423
+
424
+ #: includes/component/faq-support/ts-faq-support.php:176
425
+ msgid "FAQ & Support"
426
+ msgstr ""
427
+
428
+ #: includes/component/tracking-data/ts-tracking.php:120
429
+ #: includes/component/tracking-data/ts-tracking.php:180
430
+ msgid "Reset usage tracking"
431
+ msgstr ""
432
+
433
+ #: includes/component/tracking-data/ts-tracking.php:122
434
+ msgid ""
435
+ "This will reset your usage tracking settings, causing it to show the opt-in "
436
+ "banner again and not sending any data"
437
+ msgstr ""
438
+
439
+ #: includes/component/tracking-data/ts-tracking.php:225
440
+ msgid "Once in a Week"
441
+ msgstr ""
442
+
443
+ #: includes/component/tracking-data/ts-tracking.php:311
444
+ msgid "Allow"
445
+ msgstr ""
446
+
447
+ #: includes/component/tracking-data/ts-tracking.php:312
448
+ msgid "No thanks"
449
+ msgstr ""
450
+
451
+ #: includes/component/welcome-page/templates/social-media-elements.php:10
452
+ #: includes/wcdn-welcome.php:231
453
+ msgid "Follow %s"
454
+ msgstr ""
455
+
456
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:19
457
+ #: includes/wcdn-welcome.php:99
458
+ msgid ""
459
+ "Thank you for activating or updating to the latest version of WooCommerce "
460
+ "Print Invoice & Delivery Note! If you're a first time user, welcome! You're "
461
+ "well on your way to explore the print functionality for your WooCommerce "
462
+ "orders."
463
+ msgstr ""
464
+
465
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:29
466
+ #: includes/wcdn-welcome.php:109
467
+ msgid "Get Started with WooCommerce Print Invoice & Delivery Note"
468
+ msgstr ""
469
+
470
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:33
471
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:62
472
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:68
473
+ #: includes/wcdn-welcome.php:113 includes/wcdn-welcome.php:142
474
+ #: includes/wcdn-welcome.php:148
475
+ msgid "WooCommerce Print Invoice & Delivery Note"
476
+ msgstr ""
477
+
478
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:37
479
+ #: includes/wcdn-welcome.php:117
480
+ msgid "Add settings"
481
+ msgstr ""
482
+
483
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:39
484
+ #: includes/wcdn-welcome.php:119
485
+ msgid ""
486
+ "To enable the print functionality for your invoices, delivery notes & "
487
+ "receipts, you just need to set it up under WooCommerce -> Settings -> Print "
488
+ "page. Here you can also setup the Company Logo that will appear on the "
489
+ "printed items, Company Address & other information."
490
+ msgstr ""
491
+
492
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:41
493
+ #: includes/wcdn-welcome.php:121
494
+ msgid "Click Here to go to Print page"
495
+ msgstr ""
496
+
497
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:52
498
+ #: includes/wcdn-welcome.php:132
499
+ msgid "Enable Print button for Customers."
500
+ msgstr ""
501
+
502
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:54
503
+ #: includes/wcdn-welcome.php:134
504
+ msgid ""
505
+ "Allow customers to print the WooCommerce order invoice from the customer "
506
+ "notification email, from the My Account page or from the View Order page "
507
+ "under My Account."
508
+ msgstr ""
509
+
510
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:56
511
+ #: includes/wcdn-welcome.php:136
512
+ msgid "Click Here to Enable Print button for Customers"
513
+ msgstr ""
514
+
515
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:72
516
+ #: includes/wcdn-welcome.php:152
517
+ msgid "Enable Invoice Numbering"
518
+ msgstr ""
519
+
520
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:74
521
+ msgid ""
522
+ "If you want to change the default invoice numbers & set some numbering "
523
+ "scheme of your own, then you can set it here with a starting invoice number, "
524
+ "a prefix & suffix. For example, you could set it as: TS/001/17-18."
525
+ msgstr ""
526
+
527
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:76
528
+ #: includes/wcdn-welcome.php:156
529
+ msgid "Click Here to Enable Invoice Numbering"
530
+ msgstr ""
531
+
532
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:87
533
+ #: includes/wcdn-welcome.php:167
534
+ msgid "Getting to Know Tyche Softwares"
535
+ msgstr ""
536
+
537
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:90
538
+ #: includes/wcdn-welcome.php:170
539
+ msgid "Visit the Tyche Softwares Website"
540
+ msgstr ""
541
+
542
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:91
543
+ #: includes/wcdn-welcome.php:171
544
+ msgid "View all Premium Plugins"
545
+ msgstr ""
546
+
547
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:100
548
+ #: includes/wcdn-welcome.php:180
549
+ msgid "Meet the team"
550
+ msgstr ""
551
+
552
+ #: includes/component/welcome-page/ts-welcome.php:167
553
+ msgid "Welcome to %s %s"
554
+ msgstr ""
555
+
556
+ #: includes/wcdn-all-component.php:118
557
+ msgid ""
558
+ "Thank you for using WooCommerce Print Invoice & Delivery Note plugin! Now "
559
+ "make your deliveries more accurate by allowing customers to select their "
560
+ "preferred delivery date & time from Product Delivery Date Pro for "
561
+ "WooCommerce. <strong><a target=\"_blank\" href= \"https://www.tychesoftwares."
562
+ "com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/?"
563
+ "utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">Get "
564
+ "it now!</a></strong>"
565
+ msgstr ""
566
+
567
+ #: includes/wcdn-all-component.php:120
568
+ msgid ""
569
+ "Never login to your admin to check your deliveries by syncing the delivery "
570
+ "dates to the Google Calendar from Product Delivery Date Pro for WooCommerce. "
571
+ "<strong><a target=\"_blank\" href= \"https://www.tychesoftwares.com/store/"
572
+ "premium-plugins/product-delivery-date-pro-for-woocommerce/checkout?"
573
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
574
+ "\">Get it now!</a></strong>"
575
+ msgstr ""
576
+
577
+ #: includes/wcdn-all-component.php:122
578
+ msgid ""
579
+ "You can now view all your deliveries in list view or in calendar view from "
580
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
581
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
582
+ "delivery-date-pro-for-woocommerce/checkout?"
583
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
584
+ "\">Get it now!</a></strong>."
585
+ msgstr ""
586
+
587
+ #: includes/wcdn-all-component.php:124
588
+ msgid ""
589
+ "Allow your customers to pay extra for delivery for certain Weekdays/Dates "
590
+ "from Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
591
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
592
+ "delivery-date-pro-for-woocommerce/checkout?"
593
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
594
+ "\">Have it now!</a></strong>."
595
+ msgstr ""
596
+
597
+ #: includes/wcdn-all-component.php:126
598
+ msgid ""
599
+ "Customers can now edit the Delivery date & time on cart and checkout page or "
600
+ "they can reschedule the deliveries for the already placed orders from "
601
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
602
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
603
+ "delivery-date-pro-for-woocommerce/checkout?"
604
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
605
+ "\">Have it now!</a></strong>."
606
+ msgstr ""
607
+
608
+ #: includes/wcdn-template-functions.php:246
609
  msgid "Invoice Number"
610
  msgstr "Fakturanummer"
611
 
612
+ #: includes/wcdn-template-functions.php:253
613
+ msgid "Invoice Date"
614
+ msgstr ""
615
+
616
  # @ woocommerce-delivery-notes
617
+ #: includes/wcdn-template-functions.php:259
618
  msgid "Order Number"
619
  msgstr "Ordernummer"
620
 
621
  # @ woocommerce-delivery-notes
622
+ #: includes/wcdn-template-functions.php:264
623
  msgid "Order Date"
624
  msgstr "Orderdatum"
625
 
626
  # @ woocommerce-delivery-notes
627
+ #: includes/wcdn-template-functions.php:269
628
  msgid "Payment Method"
629
  msgstr "Betalmetod"
630
 
631
  # @ woocommerce-delivery-notes
632
+ #: includes/wcdn-template-functions.php:282
633
  msgid "Telephone"
634
  msgstr "Telefon"
635
 
636
+ #: includes/wcdn-template-functions.php:315
637
  msgid "SKU:"
638
  msgstr "Artikelnr:"
639
 
640
+ #: includes/wcdn-template-functions.php:409
641
+ #: includes/wcdn-template-functions.php:413
642
  msgid "(Includes %s)"
643
  msgstr "(Includes %s)"
644
 
645
+ #: includes/wcdn-template-functions.php:429
646
  msgid "Refund"
647
  msgstr "Återbetalning"
648
 
649
+ #: includes/wcdn-template-functions.php:441
650
  msgid "Order Subtotal"
651
  msgstr "Order delsumma"
652
 
653
+ #: includes/wcdn-welcome.php:54
654
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note %s"
655
+ msgstr ""
656
+
657
+ #: includes/wcdn-welcome.php:55
658
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note"
659
+ msgstr ""
660
+
661
+ #: includes/wcdn-welcome.php:154
662
+ msgid ""
663
+ "f you want to change the default invoice numbers & set some numbering scheme "
664
+ "of your own, then you can set it here with a starting invoice number, a "
665
+ "prefix & suffix. For example, you could set it as: TS/001/17-18."
666
+ msgstr ""
667
+
668
+ #: includes/wcdn-welcome.php:186
669
+ msgid "Current Offers"
670
+ msgstr ""
671
+
672
  # @ woocommerce-delivery-notes
673
+ #: templates/print-order/print-content.php:28
674
  msgid "Billing Address"
675
  msgstr "Faktureringsadress"
676
 
677
  # @ woocommerce-delivery-notes
678
+ #: templates/print-order/print-content.php:31
679
+ #: templates/print-order/print-content.php:40
680
  msgid "N/A"
681
  msgstr "Ej tillgängligt"
682
 
683
  # @ woocommerce-delivery-notes
684
+ #: templates/print-order/print-content.php:37
685
  msgid "Shipping Address"
686
  msgstr "Leveransadress"
687
 
688
  # @ woocommerce-delivery-notes
689
+ #: templates/print-order/print-content.php:71
690
  msgid "Product"
691
  msgstr "Produkt"
692
 
693
+ #: templates/print-order/print-content.php:72
694
  msgid "Price"
695
  msgstr "Pris"
696
 
697
+ #: templates/print-order/print-content.php:73
698
  msgid "Quantity"
699
  msgstr "Antal"
700
 
701
  # @ woocommerce-delivery-notes
702
+ #: templates/print-order/print-content.php:74
703
  msgid "Total"
704
  msgstr "Totalt"
705
 
706
  # @ woocommerce-delivery-notes
707
+ #: templates/print-order/print-content.php:147
708
  msgid "Download:"
709
  msgstr "Ladda ner:"
710
 
711
  # @ woocommerce-delivery-notes
712
+ #: templates/print-order/print-content.php:148
 
713
  msgid "%s Files"
714
  msgstr ""
715
 
716
  # @ woocommerce-delivery-notes
717
+ #: templates/print-order/print-content.php:202
718
  msgid "Customer Note"
719
  msgstr "Kundnotering"
720
 
721
+ #: woocommerce-delivery-notes.php:96 woocommerce-delivery-notes.php:103
722
+ msgid "Cheatin&#8217; huh?"
723
+ msgstr ""
724
+
725
+ #: woocommerce-delivery-notes.php:275
726
+ msgid ""
727
+ "I can't differentiate between Invoice, Delivery Notes & Receipt. The "
728
+ "templates are the same. "
729
+ msgstr ""
730
+
731
+ #: woocommerce-delivery-notes.php:281
732
+ msgid "The invoice sent through mail can't be downloaded as PDF directly."
733
+ msgstr ""
734
+
735
+ #: woocommerce-delivery-notes.php:287
736
+ msgid "The plugin is not compatible with another plugin."
737
+ msgstr ""
738
+
739
+ #: woocommerce-delivery-notes.php:293
740
+ msgid "This plugin is not useful to me."
741
+ msgstr ""
742
+
743
  # @ woocommerce-delivery-notes
744
+ #: woocommerce-delivery-notes.php:351
745
  msgid "Go to the settings page"
746
  msgstr "Gå till inställningssidan"
747
 
748
  # @ woocommerce-delivery-notes
749
+ #: woocommerce-delivery-notes.php:351
750
  msgid "Settings"
751
  msgstr "Inställningar"
752
+
753
+ #~ msgid "Enable Invoices"
754
+ #~ msgstr "Aktivera fakturor"
755
+
756
+ #~ msgid "Enable Delivery Notes"
757
+ #~ msgstr "Aktivera följesedlar"
758
+
759
+ #~ msgid "Enable Receipts"
760
+ #~ msgstr "Aktivera kvitton"
761
+
762
+ #~ msgid ""
763
+ #~ "You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s"
764
+ #~ "\">invoice</a>, <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s\">delivery "
765
+ #~ "note</a> or <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> "
766
+ #~ "template."
767
+ #~ msgstr ""
768
+ #~ "Du kan förhandgranska <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s"
769
+ #~ "\">invoice</a>, <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s\">delivery "
770
+ #~ "note</a> or <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> "
771
+ #~ "template."
772
+
773
+ # @ woocommerce-delivery-notes
774
+ #~ msgid ""
775
+ #~ "With the FAQ in the readme file you can learn how to customize the "
776
+ #~ "template."
777
+ #~ msgstr "I FAQ i readme filen kan du lära dig hur du skräddarsyr template."
778
+
779
+ # @ woocommerce-delivery-notes
780
+ #~ msgid "Company/Shop Logo"
781
+ #~ msgstr "Företags/affärs logotype"
782
+
783
+ # @ woocommerce-delivery-notes
784
+ #~ msgid "Remove Logo"
785
+ #~ msgstr "Ta bort logotype"
786
+
787
+ # @ woocommerce-delivery-notes
788
+ #~ msgid "Set Logo"
789
+ #~ msgstr "Ange logotype"
790
+
791
+ # @ woocommerce-delivery-notes
792
+ #~ msgid "A company/shop logo representing your business."
793
+ #~ msgstr "En Företags/affärs logotype som representerar ditt företag"
794
+
795
+ # @ woocommerce-delivery-notes
796
+ #~ msgid "Note:"
797
+ #~ msgstr "Anteckning:"
798
+
799
+ # @ woocommerce-delivery-notes
800
+ #~ msgid ""
801
+ #~ "When the image is printed, its pixel density will automatically be eight "
802
+ #~ "times higher than the original. This means, 1 printed inch will "
803
+ #~ "correspond to about 288 pixels on the screen. Example: an image with a "
804
+ #~ "width of 576 pixels and a height of 288 pixels will have a printed size "
805
+ #~ "of about 2 inches to 1 inch."
806
+ #~ msgstr ""
807
+ #~ "När bilden skrivs ut, kommer dess pixeltätheten automatiskt vara åtta "
808
+ #~ "gånger högre än den ursprungliga. Detta innebär, 2,54 cm tryckt motsvarar "
809
+ #~ "cirka 288 pixlar på skärmen. Exempel: en bild med en bredd på 576 pixlar "
810
+ #~ "och en höjd av 288 bildpunkter kommer att ha en tryckt storlek på ca 5 cm "
811
+ #~ "X 2.54 cm."
812
+
813
+ # @ woocommerce-delivery-notes
814
+ #~ msgid "Company/Shop Name"
815
+ #~ msgstr "Företags/Affärsnamn"
816
+
817
+ # @ woocommerce-delivery-notes
818
+ #~ msgid "Your company/shop name for the Delivery Note."
819
+ #~ msgstr "Företags/Affärsnamn för följesedeln"
820
+
821
+ # @ woocommerce-delivery-notes
822
+ #~ msgid ""
823
+ #~ "Leave blank to use the default Website/Blog title defined in WordPress "
824
+ #~ "settings. The name will be ignored when a Logo is set."
825
+ #~ msgstr ""
826
+ #~ "Lämna tomt för att använda standard webbsida / blogg titel som definieras "
827
+ #~ "i Wordpress inställningarna. Namnet kommer att ignoreras när en logotyp "
828
+ #~ "är vald."
829
+
830
+ # @ woocommerce-delivery-notes
831
+ #~ msgid "Company/Shop Address"
832
+ #~ msgstr "Företag/affärsadress"
833
+
834
+ # @ woocommerce-delivery-notes
835
+ #~ msgid ""
836
+ #~ "The postal address of the company/shop or even e-mail or telephone, which "
837
+ #~ "gets printed right after the company/shop name."
838
+ #~ msgstr ""
839
+ #~ "Företagets/affärens postadressen eller e-post eller telefon, som blir "
840
+ #~ "tryckt direkt efter företaget/affärsnamnet."
841
+
842
+ # @ woocommerce-delivery-notes
843
+ #~ msgid "Leave blank to not print an address."
844
+ #~ msgstr "Lämnas tomt för att inte skriva ut adressen."
845
+
846
+ # @ woocommerce-delivery-notes
847
+ #~ msgid ""
848
+ #~ "Add some personal notes, or season greetings or whatever (e.g. Thank You "
849
+ #~ "for Your Order!, Merry Christmas!, etc.)."
850
+ #~ msgstr ""
851
+ #~ "Lägg till några personliga anteckningar, eller säsongs hälsning eller vad "
852
+ #~ "som helst (t.ex. Tack för din beställning !, god jul !, etc.)."
853
+
854
+ # @ woocommerce-delivery-notes
855
+ #~ msgid "Leave blank to not print any personal notes."
856
+ #~ msgstr "Lämnas tomt för att inte skriva ut några personliga anteckningar."
857
+
858
+ # @ woocommerce-delivery-notes
859
+ #~ msgid "Returns Policy, Conditions, etc"
860
+ #~ msgstr "Returpolicy, villkor, etc"
861
+
862
+ # @ woocommerce-delivery-notes
863
+ #~ msgid ""
864
+ #~ "Here you can add some more policies, conditions etc. For example add a "
865
+ #~ "returns policy in case the client would like to send back some goods. In "
866
+ #~ "some countries (e.g. in the European Union) this is required so please "
867
+ #~ "add any required info in accordance with the statutory regulations."
868
+ #~ msgstr ""
869
+ #~ "Här kan du lägga till några fler regler, villkor etc. Till exempel lägga "
870
+ #~ "till en returpolicy i fall kunden vill skicka tillbaka en del varor. I "
871
+ #~ "vissa länder (t.ex. i EU) krävs detta, så lägg den obligatorisk "
872
+ #~ "information i enlighet med de lagstadgade reglerna."
873
+
874
+ # @ woocommerce-delivery-notes
875
+ #~ msgid "Leave blank to not print any policies or conditions."
876
+ #~ msgstr "Lämna tomt för att inte skriva ut några regler eller villkor."
877
+
878
+ # @ woocommerce-delivery-notes
879
+ #~ msgid ""
880
+ #~ "Add some further footer imprint, e-mail, telephone, copyright notes etc. "
881
+ #~ "This makes the printed sheets a bit more branded."
882
+ #~ msgstr ""
883
+ #~ "Lägg till några ytterligare sidfotstillägg, e-post, telefon, copyright "
884
+ #~ "anteckningar etc. Det gör de tryckta sidorna bli lite mer personliga."
885
+
886
+ # @ woocommerce-delivery-notes
887
+ #~ msgid "Leave blank to not print a footer."
888
+ #~ msgstr "Lämna tomt för att inte skriva ut en sidfot."
889
+
890
+ #~ msgid "Print Options"
891
+ #~ msgstr "Utskriftsalternativ"
892
+
893
+ #~ msgid "Types"
894
+ #~ msgstr "Typer"
895
+
896
+ #~ msgid "Theme Options"
897
+ #~ msgstr "Alternativ för tema"
898
+
899
+ # @ woocommerce-delivery-notes
900
+ #~ msgid "Order Numbering"
901
+ #~ msgstr "Ordenumrering"
902
+
903
+ #~ msgid "Invoice Numbering"
904
+ #~ msgstr "Fakturanumrering"
905
+
906
+ #~ msgid "Invoice Number Start"
907
+ #~ msgstr "Faktruranummer start"
908
+
909
+ #~ msgid "Start the numbering at the specified number."
910
+ #~ msgstr "Börja numreringen vid det angivna numret."
911
+
912
+ #~ msgid "Use only integers."
913
+ #~ msgstr "Använd endast heltal."
914
+
915
+ #~ msgid "Invoice Number Prefix"
916
+ #~ msgstr "Fakturanummer prefix"
917
+
918
+ #~ msgid "Leave blank to not add a prefix."
919
+ #~ msgstr "Lämna tomt för att inte lägga till ett prefix."
920
+
921
+ #~ msgid "Invoice Number Suffix"
922
+ #~ msgstr "Fakturanummer suffix"
923
+
924
+ #~ msgid "Leave blank to not add a suffix."
925
+ #~ msgstr "Lämna tomt för att inte lägga till ett suffix."
926
+
927
+ #~ msgid "Invoice Number Counter"
928
+ #~ msgstr "Räknare för fakturanummer"
929
+
930
+ #~ msgid "Reset Counter …"
931
+ #~ msgstr "Nollställ räknaren..."
932
+
933
+ #~ msgid "Sequential Order Number"
934
+ #~ msgstr "Sekventiellt ordernummer"
935
+
936
+ # @ woocommerce-delivery-notes
937
+ #~ msgid "Sequential numbering is enabled."
938
+ #~ msgstr "Sekventiellt ordernummer aktiverat"
939
+
940
+ # @ woocommerce-delivery-notes
941
+ #~ msgid ""
942
+ #~ "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
943
+ #~ "Numbers</a> Plugin."
944
+ #~ msgstr ""
945
+ #~ "Installera och aktivera <a href=\"%s\">WooCommerce Sequential Order "
946
+ #~ "Numbers</a> pluginen som är gratis."
languages/woocommerce-delivery-notes-vi_VN.mo CHANGED
Binary file
languages/woocommerce-delivery-notes-vi_VN.po CHANGED
@@ -8,532 +8,932 @@
8
  msgid ""
9
  msgstr ""
10
  "Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
11
- "Report-Msgid-Bugs-To: http://www.narga.net/contact/\n"
12
- "POT-Creation-Date: 2015-06-29 11:22+0700\n"
13
- "PO-Revision-Date: 2015-07-11 10:15+0700\n"
 
14
  "Last-Translator: Nguyễn Đình Quân <dinhquan@narga.net>\n"
15
  "Language-Team: NARGA <dinhquan@narga.net>\n"
 
16
  "MIME-Version: 1.0\n"
17
  "Content-Type: text/plain; charset=UTF-8\n"
18
  "Content-Transfer-Encoding: 8bit\n"
19
  "Plural-Forms: nplurals=1; plural=0;\n"
20
- "X-Generator: Poedit 1.8.2\n"
21
  "X-Poedit-SourceCharset: UTF-8\n"
22
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;"
23
- "_nx:4c,1,2;_nx_noop:4c,1,2;esc_attr_e;esc_attr__\n"
 
24
  "X-Poedit-Basepath: .\n"
25
  "X-Textdomain-Support: yes\n"
26
- "Language: vi_VN\n"
27
  "X-Poedit-SearchPath-0: ..\n"
28
 
29
  # @ woocommerce-delivery-notes
30
- #: ../includes/class-wcdn-print.php:41
31
  msgid "Invoice"
32
  msgstr "Hóa đơn"
33
 
34
- #: ../includes/class-wcdn-print.php:42
35
  msgid "Invoices"
36
  msgstr "Các hóa đơn"
37
 
38
  # @ woocommerce-delivery-notes
39
- #: ../includes/class-wcdn-print.php:43
40
  msgid "Print Invoice"
41
  msgstr "In hóa đơn"
42
 
43
- #: ../includes/class-wcdn-print.php:44
44
  msgid "Print Invoices"
45
  msgstr "In các hóa đơn"
46
 
47
  # @ woocommerce-delivery-notes
48
- #: ../includes/class-wcdn-print.php:45
49
  msgid "Invoice created."
50
  msgstr "Hóa đơn đã được tạo"
51
 
52
- #: ../includes/class-wcdn-print.php:46
53
  msgid "Invoices created."
54
  msgstr "Các hóa đơn đã được tạo"
55
 
56
- #: ../includes/class-wcdn-print.php:47
57
- msgid "Enable Invoices"
58
- msgstr "Sử dụng các hóa đơn"
59
 
60
  # @ woocommerce-delivery-notes
61
- #: ../includes/class-wcdn-print.php:53
62
  msgid "Delivery Note"
63
  msgstr "Ghi chú giao nhận hàng"
64
 
65
- #: ../includes/class-wcdn-print.php:54
66
  msgid "Delivery Notes"
67
  msgstr "Các ghi chú giao nhận hàng"
68
 
69
  # @ woocommerce-delivery-notes
70
- #: ../includes/class-wcdn-print.php:55
71
  msgid "Print Delivery Note"
72
  msgstr "In ghi chú giao nhận hàng"
73
 
74
- #: ../includes/class-wcdn-print.php:56
75
  msgid "Print Delivery Notes"
76
  msgstr "In các ghi chú giao nhận hàng"
77
 
78
- #: ../includes/class-wcdn-print.php:57
79
  msgid "Delivery Note created."
80
  msgstr "Ghi chú giao nhận hàng đã được tạo"
81
 
82
- #: ../includes/class-wcdn-print.php:58
83
  msgid "Delivery Notes created."
84
  msgstr "Các ghi chú giao nhận hàng đã được tạo"
85
 
86
- #: ../includes/class-wcdn-print.php:59
87
- msgid "Enable Delivery Notes"
88
- msgstr "Kích hoạt các ghi chú giao nhận hàng"
89
 
90
- #: ../includes/class-wcdn-print.php:65
91
  msgid "Receipt"
92
  msgstr "Biên lai"
93
 
94
- #: ../includes/class-wcdn-print.php:66
95
  msgid "Receipts"
96
  msgstr "Các biên lai"
97
 
98
- #: ../includes/class-wcdn-print.php:67
99
  msgid "Print Receipt"
100
  msgstr "In Biên lai"
101
 
102
- #: ../includes/class-wcdn-print.php:68
103
  msgid "Print Receipts"
104
  msgstr "In Các biên lai"
105
 
106
- #: ../includes/class-wcdn-print.php:69
107
  msgid "Receipt created."
108
  msgstr "Biên lai đã được tạo"
109
 
110
- #: ../includes/class-wcdn-print.php:70
111
  msgid "Receipts created."
112
  msgstr "Các biên lai đã được tạo"
113
 
114
- #: ../includes/class-wcdn-print.php:71
115
- msgid "Enable Receipts"
116
- msgstr "Kích hoạt Các biên lai"
117
 
118
  # @ woocommerce-delivery-notes
119
- #: ../includes/class-wcdn-print.php:80
120
  msgid "Order"
121
  msgstr "Đơn hàng"
122
 
123
- #: ../includes/class-wcdn-print.php:81
124
  msgid "Orders"
125
  msgstr "Các đơn hàng"
126
 
127
  # @ woocommerce-delivery-notes
128
- #: ../includes/class-wcdn-print.php:82 ../includes/class-wcdn-settings.php:157
129
  msgid "Print Order"
130
  msgstr "In đơn hàng"
131
 
132
- #: ../includes/class-wcdn-print.php:83
133
  msgid "Print Orders"
134
  msgstr "In Các đơn hàng"
135
 
136
- #: ../includes/class-wcdn-settings.php:72
137
- msgid "Do you really want to reset the counter to zero? This process can't be undone."
 
 
 
 
 
 
138
  msgstr "Bạn có muốn đặt lại bộ đếm về không? Thao tác này không thể phục hồi."
139
 
140
  # @ woocommerce-delivery-notes
141
- #: ../includes/class-wcdn-settings.php:102 ../includes/class-wcdn-theme.php:56 ../includes/class-wcdn-theme.php:91
142
- #: ../includes/wcdn-template-functions.php:127
143
  msgid "Print"
144
  msgstr "In"
145
 
146
- #: ../includes/class-wcdn-settings.php:176
147
- #, php-format
148
- msgid ""
149
- "You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target=\"%4$s\" "
150
- "class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> template."
151
  msgstr ""
152
- "Bạn có thể xem trước bố cục <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">hóa đơn</a>, <a href=\"%2$s\" target="
153
- "\"%4$s\" class=\"%5$s\">ghi chú giao nhận</a> hoặc <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">biên lai</a> "
154
 
155
- # @ woocommerce-delivery-notes
156
- #: ../includes/class-wcdn-settings.php:177
157
- msgid "With the FAQ in the readme file you can learn how to customize the template."
158
- msgstr "Đọc phần FAQ trong tập tin readme để biết cách thay đổi bố cục."
159
-
160
- # @ woocommerce-delivery-notes
161
- #: ../includes/class-wcdn-settings.php:188
162
- msgid "Company/Shop Logo"
163
- msgstr "Biểu tượng (logo) của cửa hàng/công ty"
164
-
165
- # @ woocommerce-delivery-notes
166
- #: ../includes/class-wcdn-settings.php:194
167
- msgid "Remove Logo"
168
- msgstr "Gỡ bỏ"
169
-
170
- # @ woocommerce-delivery-notes
171
- #: ../includes/class-wcdn-settings.php:195
172
- msgid "Set Logo"
173
- msgstr "Đặt làm biểu tượng"
174
-
175
- # @ woocommerce-delivery-notes
176
- #: ../includes/class-wcdn-settings.php:199
177
- msgid "A company/shop logo representing your business."
178
- msgstr "Biểu tượng (logo) của cửa hàng/công ty"
179
-
180
- # @ woocommerce-delivery-notes
181
- #: ../includes/class-wcdn-settings.php:200 ../includes/class-wcdn-settings.php:213
182
- #: ../includes/class-wcdn-settings.php:226 ../includes/class-wcdn-settings.php:239
183
- #: ../includes/class-wcdn-settings.php:252 ../includes/class-wcdn-settings.php:265
184
- #: ../includes/class-wcdn-settings.php:382 ../includes/class-wcdn-settings.php:397
185
- #: ../includes/class-wcdn-settings.php:412
186
- msgid "Note:"
187
- msgstr "Ghi chú:"
188
 
189
- # @ woocommerce-delivery-notes
190
- #: ../includes/class-wcdn-settings.php:201
191
  msgid ""
192
- "When the image is printed, its pixel density will automatically be eight times higher than the original. This "
193
- "means, 1 printed inch will correspond to about 288 pixels on the screen. Example: an image with a width of 576 "
194
- "pixels and a height of 288 pixels will have a printed size of about 2 inches to 1 inch."
195
  msgstr ""
196
- "Khi được in, độ phân giải sẽ được tăng thêm tám lần. Ví dụ như nếu bạn in 1 điểm rộng 1 inch trên màn hình là "
197
- "288px nhưng khi in ra nó sẽ có độ phân giải 576px để đảm bảo chất lượng."
198
 
199
- # @ woocommerce-delivery-notes
200
- #: ../includes/class-wcdn-settings.php:207
201
- msgid "Company/Shop Name"
202
- msgstr "Tên Công ty/Cửa hàng"
203
-
204
- # @ woocommerce-delivery-notes
205
- #: ../includes/class-wcdn-settings.php:212
206
- msgid "Your company/shop name for the Delivery Note."
207
- msgstr "Tên công ty/cửa hàng trên Ghi chú giao hàng."
208
 
209
- # @ woocommerce-delivery-notes
210
- #: ../includes/class-wcdn-settings.php:214
211
  msgid ""
212
- "Leave blank to use the default Website/Blog title defined in WordPress settings. The name will be ignored when a "
213
- "Logo is set."
 
214
  msgstr ""
215
- "Để trống để in Tên của Website (trong thiết lập WordPress). Nội dung này sẽ bị bỏ qua nếu bạn đặt Biểu tượng"
216
 
217
- # @ woocommerce-delivery-notes
218
- #: ../includes/class-wcdn-settings.php:220
219
- msgid "Company/Shop Address"
220
- msgstr "Địa chỉ Công ty/Cửa hàng"
221
 
222
- # @ woocommerce-delivery-notes
223
- #: ../includes/class-wcdn-settings.php:225
224
  msgid ""
225
- "The postal address of the company/shop or even e-mail or telephone, which gets printed right after the company/"
226
- "shop name."
227
- msgstr "Địa chỉ công ty/cửa hàng hoặc địa chỉ email, điện thoại sẽ được in phía dưới biểu tượng."
228
 
229
- # @ woocommerce-delivery-notes
230
- #: ../includes/class-wcdn-settings.php:227
231
- msgid "Leave blank to not print an address."
232
- msgstr "Để trống để không in địa chỉ."
 
 
 
233
 
234
- #: ../includes/class-wcdn-settings.php:233
235
  msgid "Complimentary Close"
236
  msgstr "Nội dung Hàng gửi tặng"
237
 
238
- # @ woocommerce-delivery-notes
239
- #: ../includes/class-wcdn-settings.php:238
240
- msgid ""
241
- "Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
242
- msgstr "Ghi nội dung cho người được tặng quà, ví dụ Cám ơn, Chúc mừng năm mới ...)"
243
-
244
- # @ woocommerce-delivery-notes
245
- #: ../includes/class-wcdn-settings.php:240
246
- msgid "Leave blank to not print any personal notes."
247
- msgstr "Để trống để không in ra ghi chú cá nhân."
248
-
249
- # @ woocommerce-delivery-notes
250
- #: ../includes/class-wcdn-settings.php:246
251
- msgid "Returns Policy, Conditions, etc"
252
- msgstr "Điều khoản, quy định trả hàng ..."
253
 
254
- # @ woocommerce-delivery-notes
255
- #: ../includes/class-wcdn-settings.php:251
256
- msgid ""
257
- "Here you can add some more policies, conditions etc. For example add a returns policy in case the client would "
258
- "like to send back some goods. In some countries (e.g. in the European Union) this is required so please add any "
259
- "required info in accordance with the statutory regulations."
260
  msgstr ""
261
- "Tại đây bạn có thể thêm các thông tin bổ xung như các quy định đảm bảo gửi hàng, trả hàng, hoàn tiền. Trong một "
262
- "số khu vực địa lý nhất định (ví dụ như Châu Âu) thì các điều khoản này là bắt buộc."
263
 
264
- # @ woocommerce-delivery-notes
265
- #: ../includes/class-wcdn-settings.php:253
266
- msgid "Leave blank to not print any policies or conditions."
267
- msgstr "Để trống để không in thông tin, điều khoản..."
268
 
269
  # @ woocommerce-delivery-notes
270
- #: ../includes/class-wcdn-settings.php:259
271
  msgid "Footer"
272
  msgstr "Chân trang"
273
 
274
- # @ woocommerce-delivery-notes
275
- #: ../includes/class-wcdn-settings.php:264
276
  msgid ""
277
- "Add some further footer imprint, e-mail, telephone, copyright notes etc. This makes the printed sheets a bit more "
278
- "branded."
279
- msgstr "Các nội dung cần in trong chân trang: email, điện thoại, lưu ý."
280
-
281
- # @ woocommerce-delivery-notes
282
- #: ../includes/class-wcdn-settings.php:266
283
- msgid "Leave blank to not print a footer."
284
- msgstr "Để trống để không in chân trang."
285
-
286
- #: ../includes/class-wcdn-settings.php:273
287
- msgid "Print Options"
288
- msgstr "Tùy chọn In"
289
-
290
- #: ../includes/class-wcdn-settings.php:278
291
- msgid "Types"
292
- msgstr "Các kiểu"
293
 
294
- #: ../includes/class-wcdn-settings.php:297
295
- msgid "Theme Options"
296
- msgstr "Tùy chọn chủ đề"
297
 
298
  # @ woocommerce-delivery-notes
299
- #: ../includes/class-wcdn-settings.php:302
300
  msgid "Print Page Endpoint"
301
  msgstr "In đánh dấu kết thúc trang"
302
 
303
  # @ woocommerce-delivery-notes
304
- #: ../includes/class-wcdn-settings.php:309
305
- msgid "The endpoint is appended to the accounts page URL to print the order. It should be unique."
306
- msgstr "Đánh dấu kết thúc trang sẽ được tự động gắn vào bản in. nên là biểu tượng đặc biệt."
307
-
308
- #: ../includes/class-wcdn-settings.php:315
309
- msgid "My Account"
310
- msgstr "Tài khoản của tôi"
311
-
312
- # @ woocommerce-delivery-notes
313
- #: ../includes/class-wcdn-settings.php:322
314
- msgid "Show print button on the \"View Order\" page"
315
- msgstr "Hiện nút in được trong trang \"Xem đơn hàng\""
316
-
317
- # @ woocommerce-delivery-notes
318
- #: ../includes/class-wcdn-settings.php:329
319
- msgid "Show print buttons on the \"My Account\" page"
320
- msgstr "Hiện nút in được trong trang \"Tài khoản\""
321
 
322
  # @ woocommerce-delivery-notes
323
- #: ../includes/class-wcdn-settings.php:336 ../includes/wcdn-template-functions.php:254
 
324
  msgid "Email"
325
  msgstr "Email"
326
 
327
- #: ../includes/class-wcdn-settings.php:343
328
  msgid "Show print link in customer emails"
329
  msgstr "Hiện liên kết in được trong email"
330
 
331
- #: ../includes/class-wcdn-settings.php:347
332
  msgid ""
333
- "This includes the emails for a new, processing and completed order. On top of that the customer invoice email "
334
- "also includes the link."
335
  msgstr ""
336
- "Nó bao gồm trong các email trạng thái đơn hàng: mới, đang xử lí và đã hoàn thành. Được đặt trên đầu của email và "
337
- "cũng bao gồm các liên kết."
 
 
 
 
338
 
339
  # @ woocommerce-delivery-notes
340
- #: ../includes/class-wcdn-settings.php:354
341
- msgid "Order Numbering"
342
- msgstr "Số đơn hàng"
343
 
344
- #: ../includes/class-wcdn-settings.php:359
345
- msgid "Invoice Numbering"
346
- msgstr "Số hóa đơn"
 
347
 
348
- #: ../includes/class-wcdn-settings.php:367
 
 
 
 
349
  msgid "Create invoice numbers"
350
  msgstr "Tạo số hóa đơn"
351
 
352
- #: ../includes/class-wcdn-settings.php:374
353
- msgid "Invoice Number Start"
354
- msgstr "Bắt đầu đánh số từ"
355
-
356
- #: ../includes/class-wcdn-settings.php:381
357
- msgid "Start the numbering at the specified number."
358
- msgstr "Bắt đầu đánh số "
359
 
360
- #: ../includes/class-wcdn-settings.php:383
361
- msgid "Use only integers."
362
- msgstr "Chỉ số tự nhiên"
363
 
364
- #: ../includes/class-wcdn-settings.php:389
365
- msgid "Invoice Number Prefix"
366
- msgstr "Tiền tố cho số hóa đơn"
367
 
368
- #: ../includes/class-wcdn-settings.php:396
369
  msgid "This text will be prepended to the invoice number."
370
  msgstr "Nội dung sẽ được thêm đằng trước vào số hóa đơn"
371
 
372
- #: ../includes/class-wcdn-settings.php:398
373
- msgid "Leave blank to not add a prefix."
374
- msgstr "Để trống để không thêm tiền tố"
375
-
376
- #: ../includes/class-wcdn-settings.php:404
377
- msgid "Invoice Number Suffix"
378
- msgstr "Hậu tố cho số hóa đơn"
379
 
380
- #: ../includes/class-wcdn-settings.php:411
381
  msgid "This text will be appended to the invoice number."
382
  msgstr "Nội dung sẽ được thêm đằng sau vào số hóa đơn"
383
 
384
- #: ../includes/class-wcdn-settings.php:413
385
- msgid "Leave blank to not add a suffix."
386
- msgstr "Để trống để không thêm hậu tố"
387
-
388
- #: ../includes/class-wcdn-settings.php:419
389
- msgid "Invoice Number Counter"
390
- msgstr "Bộ đếm số hóa đơn"
391
 
392
- #: ../includes/class-wcdn-settings.php:428
393
- msgid "Reset Counter …"
394
- msgstr "Đặt lại bộ đếm số..."
 
 
395
 
396
- #: ../includes/class-wcdn-settings.php:434
397
- msgid "Sequential Order Number"
398
- msgstr "Đánh số đơn hàng theo thứ tự"
 
 
 
 
399
 
400
- # @ woocommerce-delivery-notes
401
- #: ../includes/class-wcdn-settings.php:439
402
- msgid "Sequential numbering is enabled."
403
- msgstr "Đã kích hoạt đánh số theo thứ tự"
404
 
405
- # @ woocommerce-delivery-notes
406
- #: ../includes/class-wcdn-settings.php:441
407
- #, php-format
408
- msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
409
- msgstr "Cài đặt và kích hoạt phần mở rộng <a href=\"%s\">WooCommerce Sequential Order Numbers</a> miễn phí."
410
 
411
- #: ../includes/class-wcdn-theme.php:106
412
  msgid "Print your order"
413
  msgstr "In đơn hàng của bạn"
414
 
415
- #: ../includes/class-wcdn-theme.php:112
416
  msgid "Print:"
417
  msgstr "In:"
418
 
419
- #: ../includes/class-wcdn-theme.php:112
420
  msgid "Open print view in browser"
421
  msgstr "Mở bản in được trong trình duyệt"
422
 
423
  # @ woocommerce-delivery-notes
424
- #: ../includes/class-wcdn-writepanel.php:214
425
  msgid "Print now"
426
  msgstr "In"
427
 
428
  # @ woocommerce-delivery-notes
429
- #: ../includes/class-wcdn-writepanel.php:228
430
  msgid "Order Printing"
431
  msgstr "In đơn hàng"
432
 
433
- #: ../includes/class-wcdn-writepanel.php:256
434
  msgid "Invoice number: "
435
  msgstr "Hóa đơn số:"
436
 
437
- #: ../includes/class-wcdn-writepanel.php:257
438
  msgid "Invoice date: "
439
  msgstr "Ngày xuất hóa đơn:"
440
 
441
- #: ../includes/wcdn-template-functions.php:232
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
442
  msgid "Invoice Number"
443
  msgstr "Hóa đơn số"
444
 
 
 
 
 
445
  # @ woocommerce-delivery-notes
446
- #: ../includes/wcdn-template-functions.php:238
447
  msgid "Order Number"
448
  msgstr "Đơn hàng số"
449
 
450
  # @ woocommerce-delivery-notes
451
- #: ../includes/wcdn-template-functions.php:243
452
  msgid "Order Date"
453
  msgstr "Ngày đặt hàng"
454
 
455
  # @ woocommerce-delivery-notes
456
- #: ../includes/wcdn-template-functions.php:248
457
  msgid "Payment Method"
458
  msgstr "Phương thức thanh toán"
459
 
460
  # @ woocommerce-delivery-notes
461
- #: ../includes/wcdn-template-functions.php:261
462
  msgid "Telephone"
463
  msgstr "Điện thoại"
464
 
465
- #: ../includes/wcdn-template-functions.php:294
466
  msgid "SKU:"
467
  msgstr "SKU:"
468
 
469
- #: ../includes/wcdn-template-functions.php:380 ../includes/wcdn-template-functions.php:384
470
- #, php-format
471
  msgid "(Includes %s)"
472
  msgstr "(Bao gồm %s)"
473
 
474
- #: ../includes/wcdn-template-functions.php:400
475
  msgid "Refund"
476
  msgstr "Hoàn tiền"
477
 
478
- #: ../includes/wcdn-template-functions.php:412
479
  msgid "Order Subtotal"
480
  msgstr "Các mục phụ"
481
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
482
  # @ woocommerce-delivery-notes
483
- #: ../templates/print-order/print-content.php:28
484
  msgid "Billing Address"
485
  msgstr "Địa chỉ thanh toán"
486
 
487
  # @ woocommerce-delivery-notes
488
- #: ../templates/print-order/print-content.php:31 ../templates/print-order/print-content.php:40
 
489
  msgid "N/A"
490
  msgstr "Không"
491
 
492
  # @ woocommerce-delivery-notes
493
- #: ../templates/print-order/print-content.php:37
494
  msgid "Shipping Address"
495
  msgstr "Địa chỉ nhận hàng"
496
 
497
  # @ woocommerce-delivery-notes
498
- #: ../templates/print-order/print-content.php:70
499
  msgid "Product"
500
  msgstr "Sản phẩm"
501
 
502
- #: ../templates/print-order/print-content.php:71
503
  msgid "Price"
504
  msgstr "Giá"
505
 
506
- #: ../templates/print-order/print-content.php:72
507
  msgid "Quantity"
508
  msgstr "Số lượng"
509
 
510
  # @ woocommerce-delivery-notes
511
- #: ../templates/print-order/print-content.php:73
512
  msgid "Total"
513
  msgstr "Tổng cộng"
514
 
515
  # @ woocommerce-delivery-notes
516
- #: ../templates/print-order/print-content.php:97
517
  msgid "Download:"
518
  msgstr "Tải xuống"
519
 
520
  # @ woocommerce-delivery-notes
521
- #: ../templates/print-order/print-content.php:98
522
- #, php-format
523
  msgid "%s Files"
524
  msgstr "%s Tập tin"
525
 
526
  # @ woocommerce-delivery-notes
527
- #: ../templates/print-order/print-content.php:147
528
  msgid "Customer Note"
529
  msgstr "Ghi chú"
530
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
531
  # @ woocommerce-delivery-notes
532
- #: ../woocommerce-delivery-notes.php:181
533
  msgid "Go to the settings page"
534
  msgstr "Tới trang thiết lập"
535
 
536
  # @ woocommerce-delivery-notes
537
- #: ../woocommerce-delivery-notes.php:181
538
  msgid "Settings"
539
  msgstr "Thiết lập"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  msgid ""
9
  msgstr ""
10
  "Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
11
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/woocommerce-"
12
+ "delivery-notes\n"
13
+ "POT-Creation-Date: 2018-10-22 19:03+0530\n"
14
+ "PO-Revision-Date: 2018-10-22 19:03+0530\n"
15
  "Last-Translator: Nguyễn Đình Quân <dinhquan@narga.net>\n"
16
  "Language-Team: NARGA <dinhquan@narga.net>\n"
17
+ "Language: vi_VN\n"
18
  "MIME-Version: 1.0\n"
19
  "Content-Type: text/plain; charset=UTF-8\n"
20
  "Content-Transfer-Encoding: 8bit\n"
21
  "Plural-Forms: nplurals=1; plural=0;\n"
22
+ "X-Generator: Poedit 1.8.7.1\n"
23
  "X-Poedit-SourceCharset: UTF-8\n"
24
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
25
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
26
+ "esc_attr_e;esc_attr__\n"
27
  "X-Poedit-Basepath: .\n"
28
  "X-Textdomain-Support: yes\n"
 
29
  "X-Poedit-SearchPath-0: ..\n"
30
 
31
  # @ woocommerce-delivery-notes
32
+ #: includes/class-wcdn-print.php:39 includes/class-wcdn-settings.php:237
33
  msgid "Invoice"
34
  msgstr "Hóa đơn"
35
 
36
+ #: includes/class-wcdn-print.php:40
37
  msgid "Invoices"
38
  msgstr "Các hóa đơn"
39
 
40
  # @ woocommerce-delivery-notes
41
+ #: includes/class-wcdn-print.php:41
42
  msgid "Print Invoice"
43
  msgstr "In hóa đơn"
44
 
45
+ #: includes/class-wcdn-print.php:42
46
  msgid "Print Invoices"
47
  msgstr "In các hóa đơn"
48
 
49
  # @ woocommerce-delivery-notes
50
+ #: includes/class-wcdn-print.php:43
51
  msgid "Invoice created."
52
  msgstr "Hóa đơn đã được tạo"
53
 
54
+ #: includes/class-wcdn-print.php:44
55
  msgid "Invoices created."
56
  msgstr "Các hóa đơn đã được tạo"
57
 
58
+ #: includes/class-wcdn-print.php:45
59
+ msgid "Show \"Print Invoice\" button"
60
+ msgstr ""
61
 
62
  # @ woocommerce-delivery-notes
63
+ #: includes/class-wcdn-print.php:51
64
  msgid "Delivery Note"
65
  msgstr "Ghi chú giao nhận hàng"
66
 
67
+ #: includes/class-wcdn-print.php:52
68
  msgid "Delivery Notes"
69
  msgstr "Các ghi chú giao nhận hàng"
70
 
71
  # @ woocommerce-delivery-notes
72
+ #: includes/class-wcdn-print.php:53
73
  msgid "Print Delivery Note"
74
  msgstr "In ghi chú giao nhận hàng"
75
 
76
+ #: includes/class-wcdn-print.php:54
77
  msgid "Print Delivery Notes"
78
  msgstr "In các ghi chú giao nhận hàng"
79
 
80
+ #: includes/class-wcdn-print.php:55
81
  msgid "Delivery Note created."
82
  msgstr "Ghi chú giao nhận hàng đã được tạo"
83
 
84
+ #: includes/class-wcdn-print.php:56
85
  msgid "Delivery Notes created."
86
  msgstr "Các ghi chú giao nhận hàng đã được tạo"
87
 
88
+ #: includes/class-wcdn-print.php:57
89
+ msgid "Show \"Print Delivery Note\" button"
90
+ msgstr ""
91
 
92
+ #: includes/class-wcdn-print.php:63
93
  msgid "Receipt"
94
  msgstr "Biên lai"
95
 
96
+ #: includes/class-wcdn-print.php:64
97
  msgid "Receipts"
98
  msgstr "Các biên lai"
99
 
100
+ #: includes/class-wcdn-print.php:65
101
  msgid "Print Receipt"
102
  msgstr "In Biên lai"
103
 
104
+ #: includes/class-wcdn-print.php:66
105
  msgid "Print Receipts"
106
  msgstr "In Các biên lai"
107
 
108
+ #: includes/class-wcdn-print.php:67
109
  msgid "Receipt created."
110
  msgstr "Biên lai đã được tạo"
111
 
112
+ #: includes/class-wcdn-print.php:68
113
  msgid "Receipts created."
114
  msgstr "Các biên lai đã được tạo"
115
 
116
+ #: includes/class-wcdn-print.php:69
117
+ msgid "Show \"Print Receipt\" button"
118
+ msgstr ""
119
 
120
  # @ woocommerce-delivery-notes
121
+ #: includes/class-wcdn-print.php:78
122
  msgid "Order"
123
  msgstr "Đơn hàng"
124
 
125
+ #: includes/class-wcdn-print.php:79
126
  msgid "Orders"
127
  msgstr "Các đơn hàng"
128
 
129
  # @ woocommerce-delivery-notes
130
+ #: includes/class-wcdn-print.php:80
131
  msgid "Print Order"
132
  msgstr "In đơn hàng"
133
 
134
+ #: includes/class-wcdn-print.php:81
135
  msgid "Print Orders"
136
  msgstr "In Các đơn hàng"
137
 
138
+ #: includes/class-wcdn-print.php:93
139
+ msgid "Default"
140
+ msgstr ""
141
+
142
+ #: includes/class-wcdn-settings.php:67
143
+ msgid ""
144
+ "Do you really want to reset the counter to zero? This process can't be "
145
+ "undone."
146
  msgstr "Bạn có muốn đặt lại bộ đếm về không? Thao tác này không thể phục hồi."
147
 
148
  # @ woocommerce-delivery-notes
149
+ #: includes/class-wcdn-settings.php:75 includes/class-wcdn-theme.php:57
150
+ #: includes/class-wcdn-theme.php:94 includes/wcdn-template-functions.php:130
151
  msgid "Print"
152
  msgstr "In"
153
 
154
+ #: includes/class-wcdn-settings.php:106
155
+ msgid "Template"
 
 
 
156
  msgstr ""
 
 
157
 
158
+ #: includes/class-wcdn-settings.php:113
159
+ msgid "Style"
160
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
161
 
162
+ #: includes/class-wcdn-settings.php:114
 
163
  msgid ""
164
+ "The default print style. Read the <a href=\"%1$s\">FAQ</a> to learn how to "
165
+ "customize it."
 
166
  msgstr ""
 
 
167
 
168
+ #: includes/class-wcdn-settings.php:124
169
+ msgid "Shop Logo"
170
+ msgstr ""
 
 
 
 
 
 
171
 
172
+ #: includes/class-wcdn-settings.php:130
 
173
  msgid ""
174
+ "A shop logo representing your business. When the image is printed, its pixel "
175
+ "density will automatically be eight times higher than the original. This "
176
+ "means, 1 printed inch will correspond to about 288 pixels on the screen."
177
  msgstr ""
 
178
 
179
+ #: includes/class-wcdn-settings.php:134
180
+ msgid "Shop Name"
181
+ msgstr ""
 
182
 
183
+ #: includes/class-wcdn-settings.php:140
 
184
  msgid ""
185
+ "The shop name. Leave blank to use the default Website or Blog title defined "
186
+ "in WordPress settings. The name will be ignored when a Logo is set."
187
+ msgstr ""
188
 
189
+ #: includes/class-wcdn-settings.php:144
190
+ msgid "Shop Address"
191
+ msgstr ""
192
+
193
+ #: includes/class-wcdn-settings.php:145
194
+ msgid "The postal address of the shop or even e-mail or telephone."
195
+ msgstr ""
196
 
197
+ #: includes/class-wcdn-settings.php:154
198
  msgid "Complimentary Close"
199
  msgstr "Nội dung Hàng gửi tặng"
200
 
201
+ #: includes/class-wcdn-settings.php:155
202
+ msgid "Add a personal close, notes or season greetings."
203
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
204
 
205
+ #: includes/class-wcdn-settings.php:164
206
+ msgid "Policies"
 
 
 
 
207
  msgstr ""
 
 
208
 
209
+ #: includes/class-wcdn-settings.php:165
210
+ msgid "Add the shop policies, conditions, etc."
211
+ msgstr ""
 
212
 
213
  # @ woocommerce-delivery-notes
214
+ #: includes/class-wcdn-settings.php:174
215
  msgid "Footer"
216
  msgstr "Chân trang"
217
 
218
+ #: includes/class-wcdn-settings.php:175
 
219
  msgid ""
220
+ "Add a footer imprint, instructions, copyright notes, e-mail, telephone, etc."
221
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
222
 
223
+ #: includes/class-wcdn-settings.php:189
224
+ msgid "Pages & Buttons"
225
+ msgstr ""
226
 
227
  # @ woocommerce-delivery-notes
228
+ #: includes/class-wcdn-settings.php:196
229
  msgid "Print Page Endpoint"
230
  msgstr "In đánh dấu kết thúc trang"
231
 
232
  # @ woocommerce-delivery-notes
233
+ #: includes/class-wcdn-settings.php:202
234
+ msgid ""
235
+ "The endpoint is appended to the accounts page URL to print the order. It "
236
+ "should be unique."
237
+ msgstr ""
238
+ "Đánh dấu kết thúc trang sẽ được tự động gắn vào bản in. Nó nên là biểu tượng "
239
+ "đặc biệt."
 
 
 
 
 
 
 
 
 
 
240
 
241
  # @ woocommerce-delivery-notes
242
+ #: includes/class-wcdn-settings.php:206
243
+ #: includes/wcdn-template-functions.php:275
244
  msgid "Email"
245
  msgstr "Email"
246
 
247
+ #: includes/class-wcdn-settings.php:207
248
  msgid "Show print link in customer emails"
249
  msgstr "Hiện liên kết in được trong email"
250
 
251
+ #: includes/class-wcdn-settings.php:211
252
  msgid ""
253
+ "This includes the emails for a new, processing and completed order. On top "
254
+ "of that the customer invoice email also includes the link."
255
  msgstr ""
256
+ "Nó bao gồm trong các email trạng thái đơn hàng: mới, đang xử lí và đã hoàn "
257
+ "thành. Được đặt trên đầu của email và cũng bao gồm các liên kết."
258
+
259
+ #: includes/class-wcdn-settings.php:215
260
+ msgid "My Account"
261
+ msgstr "Tài khoản của tôi"
262
 
263
  # @ woocommerce-delivery-notes
264
+ #: includes/class-wcdn-settings.php:216
265
+ msgid "Show print button on the \"View Order\" page"
266
+ msgstr "Hiện nút in được trong trang \"Xem đơn hàng\""
267
 
268
+ # @ woocommerce-delivery-notes
269
+ #: includes/class-wcdn-settings.php:224
270
+ msgid "Show print buttons on the \"My Account\" page"
271
+ msgstr "Hiện nút in được trong trang \"Tài khoản\""
272
 
273
+ #: includes/class-wcdn-settings.php:244
274
+ msgid "Numbering"
275
+ msgstr ""
276
+
277
+ #: includes/class-wcdn-settings.php:245
278
  msgid "Create invoice numbers"
279
  msgstr "Tạo số hóa đơn"
280
 
281
+ #: includes/class-wcdn-settings.php:253
282
+ msgid "Next Number"
283
+ msgstr ""
 
 
 
 
284
 
285
+ #: includes/class-wcdn-settings.php:260
286
+ msgid "The next invoice number."
287
+ msgstr ""
288
 
289
+ #: includes/class-wcdn-settings.php:264
290
+ msgid "Number Prefix"
291
+ msgstr ""
292
 
293
+ #: includes/class-wcdn-settings.php:271
294
  msgid "This text will be prepended to the invoice number."
295
  msgstr "Nội dung sẽ được thêm đằng trước vào số hóa đơn"
296
 
297
+ #: includes/class-wcdn-settings.php:275
298
+ msgid "Number Suffix"
299
+ msgstr ""
 
 
 
 
300
 
301
+ #: includes/class-wcdn-settings.php:282
302
  msgid "This text will be appended to the invoice number."
303
  msgstr "Nội dung sẽ được thêm đằng sau vào số hóa đơn"
304
 
305
+ #: includes/class-wcdn-settings.php:327
306
+ msgid "Admin"
307
+ msgstr ""
 
 
 
 
308
 
309
+ #: includes/class-wcdn-settings.php:330
310
+ msgid ""
311
+ "The print buttons are available on the order listing and on the order detail "
312
+ "screen."
313
+ msgstr ""
314
 
315
+ #: includes/class-wcdn-settings.php:372
316
+ msgid ""
317
+ "This section lets you customise the content. You can preview the <a href="
318
+ "\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target="
319
+ "\"%4$s\" class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s"
320
+ "\" class=\"%5$s\">receipt</a> template."
321
+ msgstr ""
322
 
323
+ #: includes/class-wcdn-settings.php:435
324
+ msgid "Select"
325
+ msgstr ""
 
326
 
327
+ #: includes/class-wcdn-settings.php:439
328
+ msgid "Remove"
329
+ msgstr ""
 
 
330
 
331
+ #: includes/class-wcdn-theme.php:112
332
  msgid "Print your order"
333
  msgstr "In đơn hàng của bạn"
334
 
335
+ #: includes/class-wcdn-theme.php:119
336
  msgid "Print:"
337
  msgstr "In:"
338
 
339
+ #: includes/class-wcdn-theme.php:119
340
  msgid "Open print view in browser"
341
  msgstr "Mở bản in được trong trình duyệt"
342
 
343
  # @ woocommerce-delivery-notes
344
+ #: includes/class-wcdn-writepanel.php:218
345
  msgid "Print now"
346
  msgstr "In"
347
 
348
  # @ woocommerce-delivery-notes
349
+ #: includes/class-wcdn-writepanel.php:232
350
  msgid "Order Printing"
351
  msgstr "In đơn hàng"
352
 
353
+ #: includes/class-wcdn-writepanel.php:259
354
  msgid "Invoice number: "
355
  msgstr "Hóa đơn số:"
356
 
357
+ #: includes/class-wcdn-writepanel.php:260
358
  msgid "Invoice date: "
359
  msgstr "Ngày xuất hóa đơn:"
360
 
361
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:75
362
+ msgid "If you have a moment, please let us know why you are deactivating"
363
+ msgstr ""
364
+
365
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:76
366
+ msgid "Submit & Deactivate"
367
+ msgstr ""
368
+
369
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:77
370
+ msgid "Deactivate"
371
+ msgstr ""
372
+
373
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:78
374
+ msgid "Cancel"
375
+ msgstr ""
376
+
377
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:79
378
+ msgid "Yes - Deactivate"
379
+ msgstr ""
380
+
381
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:83
382
+ msgid "I found a better plugin"
383
+ msgstr ""
384
+
385
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:84
386
+ msgid "What's the plugin's name?"
387
+ msgstr ""
388
+
389
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:85
390
+ msgid "I only needed the plugin for a short period"
391
+ msgstr ""
392
+
393
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:86
394
+ msgid "The plugin is not working"
395
+ msgstr ""
396
+
397
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:87
398
+ msgid "Kindly share what didn't work so we can fix it for future users..."
399
+ msgstr ""
400
+
401
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:88
402
+ msgid "The plugin is great, but I need specific feature that you don't support"
403
+ msgstr ""
404
+
405
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:89
406
+ msgid "What feature?"
407
+ msgstr ""
408
+
409
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:90
410
+ msgid "I don't like to share my information with you"
411
+ msgstr ""
412
+
413
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:91
414
+ msgctxt ""
415
+ "the text of the 'other' reason for deactivating the plugin that is shown in "
416
+ "the modal box."
417
+ msgid "Other"
418
+ msgstr ""
419
+
420
+ #: includes/component/faq-support/ts-faq-support.php:127
421
+ msgid "Frequently Asked Questions for %s"
422
+ msgstr ""
423
+
424
+ #: includes/component/faq-support/ts-faq-support.php:176
425
+ msgid "FAQ & Support"
426
+ msgstr ""
427
+
428
+ #: includes/component/tracking-data/ts-tracking.php:120
429
+ #: includes/component/tracking-data/ts-tracking.php:180
430
+ msgid "Reset usage tracking"
431
+ msgstr ""
432
+
433
+ #: includes/component/tracking-data/ts-tracking.php:122
434
+ msgid ""
435
+ "This will reset your usage tracking settings, causing it to show the opt-in "
436
+ "banner again and not sending any data"
437
+ msgstr ""
438
+
439
+ #: includes/component/tracking-data/ts-tracking.php:225
440
+ msgid "Once in a Week"
441
+ msgstr ""
442
+
443
+ #: includes/component/tracking-data/ts-tracking.php:311
444
+ msgid "Allow"
445
+ msgstr ""
446
+
447
+ #: includes/component/tracking-data/ts-tracking.php:312
448
+ msgid "No thanks"
449
+ msgstr ""
450
+
451
+ #: includes/component/welcome-page/templates/social-media-elements.php:10
452
+ #: includes/wcdn-welcome.php:231
453
+ msgid "Follow %s"
454
+ msgstr ""
455
+
456
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:19
457
+ #: includes/wcdn-welcome.php:99
458
+ msgid ""
459
+ "Thank you for activating or updating to the latest version of WooCommerce "
460
+ "Print Invoice & Delivery Note! If you're a first time user, welcome! You're "
461
+ "well on your way to explore the print functionality for your WooCommerce "
462
+ "orders."
463
+ msgstr ""
464
+
465
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:29
466
+ #: includes/wcdn-welcome.php:109
467
+ msgid "Get Started with WooCommerce Print Invoice & Delivery Note"
468
+ msgstr ""
469
+
470
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:33
471
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:62
472
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:68
473
+ #: includes/wcdn-welcome.php:113 includes/wcdn-welcome.php:142
474
+ #: includes/wcdn-welcome.php:148
475
+ msgid "WooCommerce Print Invoice & Delivery Note"
476
+ msgstr ""
477
+
478
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:37
479
+ #: includes/wcdn-welcome.php:117
480
+ msgid "Add settings"
481
+ msgstr ""
482
+
483
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:39
484
+ #: includes/wcdn-welcome.php:119
485
+ msgid ""
486
+ "To enable the print functionality for your invoices, delivery notes & "
487
+ "receipts, you just need to set it up under WooCommerce -> Settings -> Print "
488
+ "page. Here you can also setup the Company Logo that will appear on the "
489
+ "printed items, Company Address & other information."
490
+ msgstr ""
491
+
492
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:41
493
+ #: includes/wcdn-welcome.php:121
494
+ msgid "Click Here to go to Print page"
495
+ msgstr ""
496
+
497
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:52
498
+ #: includes/wcdn-welcome.php:132
499
+ msgid "Enable Print button for Customers."
500
+ msgstr ""
501
+
502
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:54
503
+ #: includes/wcdn-welcome.php:134
504
+ msgid ""
505
+ "Allow customers to print the WooCommerce order invoice from the customer "
506
+ "notification email, from the My Account page or from the View Order page "
507
+ "under My Account."
508
+ msgstr ""
509
+
510
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:56
511
+ #: includes/wcdn-welcome.php:136
512
+ msgid "Click Here to Enable Print button for Customers"
513
+ msgstr ""
514
+
515
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:72
516
+ #: includes/wcdn-welcome.php:152
517
+ msgid "Enable Invoice Numbering"
518
+ msgstr ""
519
+
520
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:74
521
+ msgid ""
522
+ "If you want to change the default invoice numbers & set some numbering "
523
+ "scheme of your own, then you can set it here with a starting invoice number, "
524
+ "a prefix & suffix. For example, you could set it as: TS/001/17-18."
525
+ msgstr ""
526
+
527
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:76
528
+ #: includes/wcdn-welcome.php:156
529
+ msgid "Click Here to Enable Invoice Numbering"
530
+ msgstr ""
531
+
532
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:87
533
+ #: includes/wcdn-welcome.php:167
534
+ msgid "Getting to Know Tyche Softwares"
535
+ msgstr ""
536
+
537
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:90
538
+ #: includes/wcdn-welcome.php:170
539
+ msgid "Visit the Tyche Softwares Website"
540
+ msgstr ""
541
+
542
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:91
543
+ #: includes/wcdn-welcome.php:171
544
+ msgid "View all Premium Plugins"
545
+ msgstr ""
546
+
547
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:100
548
+ #: includes/wcdn-welcome.php:180
549
+ msgid "Meet the team"
550
+ msgstr ""
551
+
552
+ #: includes/component/welcome-page/ts-welcome.php:167
553
+ msgid "Welcome to %s %s"
554
+ msgstr ""
555
+
556
+ #: includes/wcdn-all-component.php:118
557
+ msgid ""
558
+ "Thank you for using WooCommerce Print Invoice & Delivery Note plugin! Now "
559
+ "make your deliveries more accurate by allowing customers to select their "
560
+ "preferred delivery date & time from Product Delivery Date Pro for "
561
+ "WooCommerce. <strong><a target=\"_blank\" href= \"https://www.tychesoftwares."
562
+ "com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/?"
563
+ "utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">Get "
564
+ "it now!</a></strong>"
565
+ msgstr ""
566
+
567
+ #: includes/wcdn-all-component.php:120
568
+ msgid ""
569
+ "Never login to your admin to check your deliveries by syncing the delivery "
570
+ "dates to the Google Calendar from Product Delivery Date Pro for WooCommerce. "
571
+ "<strong><a target=\"_blank\" href= \"https://www.tychesoftwares.com/store/"
572
+ "premium-plugins/product-delivery-date-pro-for-woocommerce/checkout?"
573
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
574
+ "\">Get it now!</a></strong>"
575
+ msgstr ""
576
+
577
+ #: includes/wcdn-all-component.php:122
578
+ msgid ""
579
+ "You can now view all your deliveries in list view or in calendar view from "
580
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
581
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
582
+ "delivery-date-pro-for-woocommerce/checkout?"
583
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
584
+ "\">Get it now!</a></strong>."
585
+ msgstr ""
586
+
587
+ #: includes/wcdn-all-component.php:124
588
+ msgid ""
589
+ "Allow your customers to pay extra for delivery for certain Weekdays/Dates "
590
+ "from Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
591
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
592
+ "delivery-date-pro-for-woocommerce/checkout?"
593
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
594
+ "\">Have it now!</a></strong>."
595
+ msgstr ""
596
+
597
+ #: includes/wcdn-all-component.php:126
598
+ msgid ""
599
+ "Customers can now edit the Delivery date & time on cart and checkout page or "
600
+ "they can reschedule the deliveries for the already placed orders from "
601
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
602
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
603
+ "delivery-date-pro-for-woocommerce/checkout?"
604
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
605
+ "\">Have it now!</a></strong>."
606
+ msgstr ""
607
+
608
+ #: includes/wcdn-template-functions.php:246
609
  msgid "Invoice Number"
610
  msgstr "Hóa đơn số"
611
 
612
+ #: includes/wcdn-template-functions.php:253
613
+ msgid "Invoice Date"
614
+ msgstr ""
615
+
616
  # @ woocommerce-delivery-notes
617
+ #: includes/wcdn-template-functions.php:259
618
  msgid "Order Number"
619
  msgstr "Đơn hàng số"
620
 
621
  # @ woocommerce-delivery-notes
622
+ #: includes/wcdn-template-functions.php:264
623
  msgid "Order Date"
624
  msgstr "Ngày đặt hàng"
625
 
626
  # @ woocommerce-delivery-notes
627
+ #: includes/wcdn-template-functions.php:269
628
  msgid "Payment Method"
629
  msgstr "Phương thức thanh toán"
630
 
631
  # @ woocommerce-delivery-notes
632
+ #: includes/wcdn-template-functions.php:282
633
  msgid "Telephone"
634
  msgstr "Điện thoại"
635
 
636
+ #: includes/wcdn-template-functions.php:315
637
  msgid "SKU:"
638
  msgstr "SKU:"
639
 
640
+ #: includes/wcdn-template-functions.php:409
641
+ #: includes/wcdn-template-functions.php:413
642
  msgid "(Includes %s)"
643
  msgstr "(Bao gồm %s)"
644
 
645
+ #: includes/wcdn-template-functions.php:429
646
  msgid "Refund"
647
  msgstr "Hoàn tiền"
648
 
649
+ #: includes/wcdn-template-functions.php:441
650
  msgid "Order Subtotal"
651
  msgstr "Các mục phụ"
652
 
653
+ #: includes/wcdn-welcome.php:54
654
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note %s"
655
+ msgstr ""
656
+
657
+ #: includes/wcdn-welcome.php:55
658
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note"
659
+ msgstr ""
660
+
661
+ #: includes/wcdn-welcome.php:154
662
+ msgid ""
663
+ "f you want to change the default invoice numbers & set some numbering scheme "
664
+ "of your own, then you can set it here with a starting invoice number, a "
665
+ "prefix & suffix. For example, you could set it as: TS/001/17-18."
666
+ msgstr ""
667
+
668
+ #: includes/wcdn-welcome.php:186
669
+ msgid "Current Offers"
670
+ msgstr ""
671
+
672
  # @ woocommerce-delivery-notes
673
+ #: templates/print-order/print-content.php:28
674
  msgid "Billing Address"
675
  msgstr "Địa chỉ thanh toán"
676
 
677
  # @ woocommerce-delivery-notes
678
+ #: templates/print-order/print-content.php:31
679
+ #: templates/print-order/print-content.php:40
680
  msgid "N/A"
681
  msgstr "Không"
682
 
683
  # @ woocommerce-delivery-notes
684
+ #: templates/print-order/print-content.php:37
685
  msgid "Shipping Address"
686
  msgstr "Địa chỉ nhận hàng"
687
 
688
  # @ woocommerce-delivery-notes
689
+ #: templates/print-order/print-content.php:71
690
  msgid "Product"
691
  msgstr "Sản phẩm"
692
 
693
+ #: templates/print-order/print-content.php:72
694
  msgid "Price"
695
  msgstr "Giá"
696
 
697
+ #: templates/print-order/print-content.php:73
698
  msgid "Quantity"
699
  msgstr "Số lượng"
700
 
701
  # @ woocommerce-delivery-notes
702
+ #: templates/print-order/print-content.php:74
703
  msgid "Total"
704
  msgstr "Tổng cộng"
705
 
706
  # @ woocommerce-delivery-notes
707
+ #: templates/print-order/print-content.php:147
708
  msgid "Download:"
709
  msgstr "Tải xuống"
710
 
711
  # @ woocommerce-delivery-notes
712
+ #: templates/print-order/print-content.php:148
 
713
  msgid "%s Files"
714
  msgstr "%s Tập tin"
715
 
716
  # @ woocommerce-delivery-notes
717
+ #: templates/print-order/print-content.php:202
718
  msgid "Customer Note"
719
  msgstr "Ghi chú"
720
 
721
+ #: woocommerce-delivery-notes.php:96 woocommerce-delivery-notes.php:103
722
+ msgid "Cheatin&#8217; huh?"
723
+ msgstr ""
724
+
725
+ #: woocommerce-delivery-notes.php:275
726
+ msgid ""
727
+ "I can't differentiate between Invoice, Delivery Notes & Receipt. The "
728
+ "templates are the same. "
729
+ msgstr ""
730
+
731
+ #: woocommerce-delivery-notes.php:281
732
+ msgid "The invoice sent through mail can't be downloaded as PDF directly."
733
+ msgstr ""
734
+
735
+ #: woocommerce-delivery-notes.php:287
736
+ msgid "The plugin is not compatible with another plugin."
737
+ msgstr ""
738
+
739
+ #: woocommerce-delivery-notes.php:293
740
+ msgid "This plugin is not useful to me."
741
+ msgstr ""
742
+
743
  # @ woocommerce-delivery-notes
744
+ #: woocommerce-delivery-notes.php:351
745
  msgid "Go to the settings page"
746
  msgstr "Tới trang thiết lập"
747
 
748
  # @ woocommerce-delivery-notes
749
+ #: woocommerce-delivery-notes.php:351
750
  msgid "Settings"
751
  msgstr "Thiết lập"
752
+
753
+ #~ msgid "Enable Invoices"
754
+ #~ msgstr "Sử dụng các hóa đơn"
755
+
756
+ #~ msgid "Enable Delivery Notes"
757
+ #~ msgstr "Kích hoạt các ghi chú giao nhận hàng"
758
+
759
+ #~ msgid "Enable Receipts"
760
+ #~ msgstr "Kích hoạt Các biên lai"
761
+
762
+ #~ msgid ""
763
+ #~ "You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s"
764
+ #~ "\">invoice</a>, <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s\">delivery "
765
+ #~ "note</a> or <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> "
766
+ #~ "template."
767
+ #~ msgstr ""
768
+ #~ "Bạn có thể xem trước bố cục <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s"
769
+ #~ "\">hóa đơn</a>, <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s\">ghi chú "
770
+ #~ "giao nhận</a> hoặc <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">biên "
771
+ #~ "lai</a> "
772
+
773
+ # @ woocommerce-delivery-notes
774
+ #~ msgid ""
775
+ #~ "With the FAQ in the readme file you can learn how to customize the "
776
+ #~ "template."
777
+ #~ msgstr "Đọc phần FAQ trong tập tin readme để biết cách thay đổi bố cục."
778
+
779
+ # @ woocommerce-delivery-notes
780
+ #~ msgid "Company/Shop Logo"
781
+ #~ msgstr "Biểu tượng (logo) của cửa hàng/công ty"
782
+
783
+ # @ woocommerce-delivery-notes
784
+ #~ msgid "Remove Logo"
785
+ #~ msgstr "Gỡ bỏ"
786
+
787
+ # @ woocommerce-delivery-notes
788
+ #~ msgid "Set Logo"
789
+ #~ msgstr "Đặt làm biểu tượng"
790
+
791
+ # @ woocommerce-delivery-notes
792
+ #~ msgid "A company/shop logo representing your business."
793
+ #~ msgstr "Biểu tượng (logo) của cửa hàng/công ty"
794
+
795
+ # @ woocommerce-delivery-notes
796
+ #~ msgid "Note:"
797
+ #~ msgstr "Ghi chú:"
798
+
799
+ # @ woocommerce-delivery-notes
800
+ #~ msgid ""
801
+ #~ "When the image is printed, its pixel density will automatically be eight "
802
+ #~ "times higher than the original. This means, 1 printed inch will "
803
+ #~ "correspond to about 288 pixels on the screen. Example: an image with a "
804
+ #~ "width of 576 pixels and a height of 288 pixels will have a printed size "
805
+ #~ "of about 2 inches to 1 inch."
806
+ #~ msgstr ""
807
+ #~ "Khi được in, độ phân giải sẽ được tăng thêm tám lần. Ví dụ như nếu bạn in "
808
+ #~ "1 điểm rộng 1 inch trên màn hình là 288px nhưng khi in ra nó sẽ có độ "
809
+ #~ "phân giải 576px để đảm bảo chất lượng."
810
+
811
+ # @ woocommerce-delivery-notes
812
+ #~ msgid "Company/Shop Name"
813
+ #~ msgstr "Tên Công ty/Cửa hàng"
814
+
815
+ # @ woocommerce-delivery-notes
816
+ #~ msgid "Your company/shop name for the Delivery Note."
817
+ #~ msgstr "Tên công ty/cửa hàng trên Ghi chú giao hàng."
818
+
819
+ # @ woocommerce-delivery-notes
820
+ #~ msgid ""
821
+ #~ "Leave blank to use the default Website/Blog title defined in WordPress "
822
+ #~ "settings. The name will be ignored when a Logo is set."
823
+ #~ msgstr ""
824
+ #~ "Để trống để in Tên của Website (trong thiết lập WordPress). Nội dung này "
825
+ #~ "sẽ bị bỏ qua nếu bạn đặt Biểu tượng"
826
+
827
+ # @ woocommerce-delivery-notes
828
+ #~ msgid "Company/Shop Address"
829
+ #~ msgstr "Địa chỉ Công ty/Cửa hàng"
830
+
831
+ # @ woocommerce-delivery-notes
832
+ #~ msgid ""
833
+ #~ "The postal address of the company/shop or even e-mail or telephone, which "
834
+ #~ "gets printed right after the company/shop name."
835
+ #~ msgstr ""
836
+ #~ "Địa chỉ công ty/cửa hàng hoặc địa chỉ email, điện thoại sẽ được in phía "
837
+ #~ "dưới biểu tượng."
838
+
839
+ # @ woocommerce-delivery-notes
840
+ #~ msgid "Leave blank to not print an address."
841
+ #~ msgstr "Để trống để không in địa chỉ."
842
+
843
+ # @ woocommerce-delivery-notes
844
+ #~ msgid ""
845
+ #~ "Add some personal notes, or season greetings or whatever (e.g. Thank You "
846
+ #~ "for Your Order!, Merry Christmas!, etc.)."
847
+ #~ msgstr ""
848
+ #~ "Ghi nội dung cho người được tặng quà, ví dụ Cám ơn, Chúc mừng năm mới ...)"
849
+
850
+ # @ woocommerce-delivery-notes
851
+ #~ msgid "Leave blank to not print any personal notes."
852
+ #~ msgstr "Để trống để không in ra ghi chú cá nhân."
853
+
854
+ # @ woocommerce-delivery-notes
855
+ #~ msgid "Returns Policy, Conditions, etc"
856
+ #~ msgstr "Điều khoản, quy định trả hàng ..."
857
+
858
+ # @ woocommerce-delivery-notes
859
+ #~ msgid ""
860
+ #~ "Here you can add some more policies, conditions etc. For example add a "
861
+ #~ "returns policy in case the client would like to send back some goods. In "
862
+ #~ "some countries (e.g. in the European Union) this is required so please "
863
+ #~ "add any required info in accordance with the statutory regulations."
864
+ #~ msgstr ""
865
+ #~ "Tại đây bạn có thể thêm các thông tin bổ xung như các quy định đảm bảo "
866
+ #~ "gửi hàng, trả hàng, hoàn tiền. Trong một số khu vực địa lý nhất định (ví "
867
+ #~ "dụ như Châu Âu) thì các điều khoản này là bắt buộc."
868
+
869
+ # @ woocommerce-delivery-notes
870
+ #~ msgid "Leave blank to not print any policies or conditions."
871
+ #~ msgstr "Để trống để không in thông tin, điều khoản..."
872
+
873
+ # @ woocommerce-delivery-notes
874
+ #~ msgid ""
875
+ #~ "Add some further footer imprint, e-mail, telephone, copyright notes etc. "
876
+ #~ "This makes the printed sheets a bit more branded."
877
+ #~ msgstr "Các nội dung cần in trong chân trang: email, điện thoại, lưu ý."
878
+
879
+ # @ woocommerce-delivery-notes
880
+ #~ msgid "Leave blank to not print a footer."
881
+ #~ msgstr "Để trống để không in chân trang."
882
+
883
+ #~ msgid "Print Options"
884
+ #~ msgstr "Tùy chọn In"
885
+
886
+ #~ msgid "Types"
887
+ #~ msgstr "Các kiểu"
888
+
889
+ #~ msgid "Theme Options"
890
+ #~ msgstr "Tùy chọn chủ đề"
891
+
892
+ # @ woocommerce-delivery-notes
893
+ #~ msgid "Order Numbering"
894
+ #~ msgstr "Số đơn hàng"
895
+
896
+ #~ msgid "Invoice Numbering"
897
+ #~ msgstr "Số hóa đơn"
898
+
899
+ #~ msgid "Invoice Number Start"
900
+ #~ msgstr "Bắt đầu đánh số từ"
901
+
902
+ #~ msgid "Start the numbering at the specified number."
903
+ #~ msgstr "Bắt đầu đánh số "
904
+
905
+ #~ msgid "Use only integers."
906
+ #~ msgstr "Chỉ số tự nhiên"
907
+
908
+ #~ msgid "Invoice Number Prefix"
909
+ #~ msgstr "Tiền tố cho số hóa đơn"
910
+
911
+ #~ msgid "Leave blank to not add a prefix."
912
+ #~ msgstr "Để trống để không thêm tiền tố"
913
+
914
+ #~ msgid "Invoice Number Suffix"
915
+ #~ msgstr "Hậu tố cho số hóa đơn"
916
+
917
+ #~ msgid "Leave blank to not add a suffix."
918
+ #~ msgstr "Để trống để không thêm hậu tố"
919
+
920
+ #~ msgid "Invoice Number Counter"
921
+ #~ msgstr "Bộ đếm số hóa đơn"
922
+
923
+ #~ msgid "Reset Counter …"
924
+ #~ msgstr "Đặt lại bộ đếm số..."
925
+
926
+ #~ msgid "Sequential Order Number"
927
+ #~ msgstr "Đánh số đơn hàng theo thứ tự"
928
+
929
+ # @ woocommerce-delivery-notes
930
+ #~ msgid "Sequential numbering is enabled."
931
+ #~ msgstr "Đã kích hoạt đánh số theo thứ tự"
932
+
933
+ # @ woocommerce-delivery-notes
934
+ #~ msgid ""
935
+ #~ "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
936
+ #~ "Numbers</a> Plugin."
937
+ #~ msgstr ""
938
+ #~ "Cài đặt và kích hoạt phần mở rộng <a href=\"%s\">WooCommerce Sequential "
939
+ #~ "Order Numbers</a> miễn phí."
languages/woocommerce-delivery-notes.pot CHANGED
@@ -1,530 +1,702 @@
1
- # This German Language File: Copyright (C) 2011-2013 by David Decker of deckerweb.de & genesisthemes.de
2
- # This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes Plugin package.
3
- #
4
- # Weitere deutsche Sprachdateien fuer WooCommerce und Extensions (Erweiterungen)
5
- # sowie fuer WordPress-Plugins und -Themes finden Sie unter:
6
- # --> http://deckerweb.de/sprachdateien/
7
- #
8
  msgid ""
9
  msgstr ""
10
- "Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
11
- "Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
12
- "POT-Creation-Date: 2015-01-31 15:44+0100\n"
13
- "PO-Revision-Date: 2015-01-31 15:44+0100\n"
14
- "Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
15
- "Language-Team: \n"
16
- "Language: en\n"
17
  "MIME-Version: 1.0\n"
18
  "Content-Type: text/plain; charset=UTF-8\n"
19
  "Content-Transfer-Encoding: 8bit\n"
20
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
21
- "X-Generator: Poedit 1.7.4\n"
22
- "X-Poedit-SourceCharset: UTF-8\n"
23
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;"
24
- "_nx:4c,1,2;_nx_noop:4c,1,2;esc_attr_e;esc_attr__\n"
25
- "X-Poedit-Basepath: .\n"
26
- "X-Textdomain-Support: yes\n"
27
- "X-Poedit-SearchPath-0: ..\n"
28
-
29
- # @ woocommerce-delivery-notes
30
- #: ../includes/class-wcdn-print.php:41
31
  msgid "Invoice"
32
  msgstr ""
33
 
34
- #: ../includes/class-wcdn-print.php:42
35
  msgid "Invoices"
36
  msgstr ""
37
 
38
- # @ woocommerce-delivery-notes
39
- #: ../includes/class-wcdn-print.php:43
40
  msgid "Print Invoice"
41
  msgstr ""
42
 
43
- #: ../includes/class-wcdn-print.php:44
44
  msgid "Print Invoices"
45
  msgstr ""
46
 
47
- # @ woocommerce-delivery-notes
48
- #: ../includes/class-wcdn-print.php:45
49
  msgid "Invoice created."
50
  msgstr ""
51
 
52
- #: ../includes/class-wcdn-print.php:46
53
  msgid "Invoices created."
54
  msgstr ""
55
 
56
- #: ../includes/class-wcdn-print.php:47
57
- msgid "Enable Invoices"
58
  msgstr ""
59
 
60
- # @ woocommerce-delivery-notes
61
- #: ../includes/class-wcdn-print.php:53
62
  msgid "Delivery Note"
63
  msgstr ""
64
 
65
- #: ../includes/class-wcdn-print.php:54
66
  msgid "Delivery Notes"
67
  msgstr ""
68
 
69
- # @ woocommerce-delivery-notes
70
- #: ../includes/class-wcdn-print.php:55
71
  msgid "Print Delivery Note"
72
  msgstr ""
73
 
74
- #: ../includes/class-wcdn-print.php:56
75
  msgid "Print Delivery Notes"
76
  msgstr ""
77
 
78
- #: ../includes/class-wcdn-print.php:57
79
  msgid "Delivery Note created."
80
  msgstr ""
81
 
82
- #: ../includes/class-wcdn-print.php:58
83
  msgid "Delivery Notes created."
84
  msgstr ""
85
 
86
- #: ../includes/class-wcdn-print.php:59
87
- msgid "Enable Delivery Notes"
88
  msgstr ""
89
 
90
- #: ../includes/class-wcdn-print.php:65
91
  msgid "Receipt"
92
  msgstr ""
93
 
94
- #: ../includes/class-wcdn-print.php:66
95
  msgid "Receipts"
96
  msgstr ""
97
 
98
- #: ../includes/class-wcdn-print.php:67
99
  msgid "Print Receipt"
100
  msgstr ""
101
 
102
- #: ../includes/class-wcdn-print.php:68
103
  msgid "Print Receipts"
104
  msgstr ""
105
 
106
- #: ../includes/class-wcdn-print.php:69
107
  msgid "Receipt created."
108
  msgstr ""
109
 
110
- #: ../includes/class-wcdn-print.php:70
111
  msgid "Receipts created."
112
  msgstr ""
113
 
114
- #: ../includes/class-wcdn-print.php:71
115
- msgid "Enable Receipts"
116
  msgstr ""
117
 
118
- # @ woocommerce-delivery-notes
119
- #: ../includes/class-wcdn-print.php:80
120
  msgid "Order"
121
  msgstr ""
122
 
123
- #: ../includes/class-wcdn-print.php:81
124
  msgid "Orders"
125
  msgstr ""
126
 
127
- # @ woocommerce-delivery-notes
128
- #: ../includes/class-wcdn-print.php:82 ../includes/class-wcdn-settings.php:157
129
  msgid "Print Order"
130
  msgstr ""
131
 
132
- #: ../includes/class-wcdn-print.php:83
133
  msgid "Print Orders"
134
  msgstr ""
135
 
136
- #: ../includes/class-wcdn-settings.php:72
137
- msgid "Do you really want to reset the counter to zero? This process can't be undone."
138
  msgstr ""
139
 
140
- # @ woocommerce-delivery-notes
141
- #: ../includes/class-wcdn-settings.php:102 ../includes/class-wcdn-theme.php:56 ../includes/class-wcdn-theme.php:91
142
- #: ../includes/wcdn-template-functions.php:127
 
 
 
 
 
143
  msgid "Print"
144
  msgstr ""
145
 
146
- #: ../includes/class-wcdn-settings.php:176
147
- #, php-format
 
 
 
 
 
 
 
148
  msgid ""
149
- "You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target=\"%4$s\" "
150
- "class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> template."
151
  msgstr ""
152
 
153
- # @ woocommerce-delivery-notes
154
- #: ../includes/class-wcdn-settings.php:177
155
- msgid "With the FAQ in the readme file you can learn how to customize the template."
156
  msgstr ""
157
 
158
- # @ woocommerce-delivery-notes
159
- #: ../includes/class-wcdn-settings.php:188
160
- msgid "Company/Shop Logo"
 
 
161
  msgstr ""
162
 
163
- # @ woocommerce-delivery-notes
164
- #: ../includes/class-wcdn-settings.php:194
165
- msgid "Remove Logo"
166
  msgstr ""
167
 
168
- # @ woocommerce-delivery-notes
169
- #: ../includes/class-wcdn-settings.php:195
170
- msgid "Set Logo"
 
171
  msgstr ""
172
 
173
- # @ woocommerce-delivery-notes
174
- #: ../includes/class-wcdn-settings.php:199
175
- msgid "A company/shop logo representing your business."
176
  msgstr ""
177
 
178
- # @ woocommerce-delivery-notes
179
- #: ../includes/class-wcdn-settings.php:200 ../includes/class-wcdn-settings.php:213
180
- #: ../includes/class-wcdn-settings.php:226 ../includes/class-wcdn-settings.php:239
181
- #: ../includes/class-wcdn-settings.php:252 ../includes/class-wcdn-settings.php:265
182
- #: ../includes/class-wcdn-settings.php:382 ../includes/class-wcdn-settings.php:397
183
- #: ../includes/class-wcdn-settings.php:412
184
- msgid "Note:"
185
  msgstr ""
186
 
187
- # @ woocommerce-delivery-notes
188
- #: ../includes/class-wcdn-settings.php:201
189
- msgid ""
190
- "When the image is printed, its pixel density will automatically be eight times higher than the original. This "
191
- "means, 1 printed inch will correspond to about 288 pixels on the screen. Example: an image with a width of 576 "
192
- "pixels and a height of 288 pixels will have a printed size of about 2 inches to 1 inch."
193
  msgstr ""
194
 
195
- # @ woocommerce-delivery-notes
196
- #: ../includes/class-wcdn-settings.php:207
197
- msgid "Company/Shop Name"
198
  msgstr ""
199
 
200
- # @ woocommerce-delivery-notes
201
- #: ../includes/class-wcdn-settings.php:212
202
- msgid "Your company/shop name for the Delivery Note."
203
  msgstr ""
204
 
205
- # @ woocommerce-delivery-notes
206
- #: ../includes/class-wcdn-settings.php:214
207
- msgid ""
208
- "Leave blank to use the default Website/Blog title defined in WordPress settings. The name will be ignored when a "
209
- "Logo is set."
210
  msgstr ""
211
 
212
- # @ woocommerce-delivery-notes
213
- #: ../includes/class-wcdn-settings.php:220
214
- msgid "Company/Shop Address"
215
  msgstr ""
216
 
217
- # @ woocommerce-delivery-notes
218
- #: ../includes/class-wcdn-settings.php:225
219
  msgid ""
220
- "The postal address of the company/shop or even e-mail or telephone, which gets printed right after the company/"
221
- "shop name."
222
  msgstr ""
223
 
224
- # @ woocommerce-delivery-notes
225
- #: ../includes/class-wcdn-settings.php:227
226
- msgid "Leave blank to not print an address."
227
  msgstr ""
228
 
229
- #: ../includes/class-wcdn-settings.php:233
230
- msgid "Complimentary Close"
231
  msgstr ""
232
 
233
- # @ woocommerce-delivery-notes
234
- #: ../includes/class-wcdn-settings.php:238
235
  msgid ""
236
- "Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
 
237
  msgstr ""
238
 
239
- # @ woocommerce-delivery-notes
240
- #: ../includes/class-wcdn-settings.php:240
241
- msgid "Leave blank to not print any personal notes."
242
  msgstr ""
243
 
244
- # @ woocommerce-delivery-notes
245
- #: ../includes/class-wcdn-settings.php:246
246
- msgid "Returns Policy, Conditions, etc"
247
  msgstr ""
248
 
249
- # @ woocommerce-delivery-notes
250
- #: ../includes/class-wcdn-settings.php:251
251
  msgid ""
252
- "Here you can add some more policies, conditions etc. For example add a returns policy in case the client would "
253
- "like to send back some goods. In some countries (e.g. in the European Union) this is required so please add any "
254
- "required info in accordance with the statutory regulations."
255
  msgstr ""
256
 
257
- # @ woocommerce-delivery-notes
258
- #: ../includes/class-wcdn-settings.php:253
259
- msgid "Leave blank to not print any policies or conditions."
260
  msgstr ""
261
 
262
- # @ woocommerce-delivery-notes
263
- #: ../includes/class-wcdn-settings.php:259
264
- msgid "Footer"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
265
  msgstr ""
266
 
267
- # @ woocommerce-delivery-notes
268
- #: ../includes/class-wcdn-settings.php:264
 
 
 
269
  msgid ""
270
- "Add some further footer imprint, e-mail, telephone, copyright notes etc. This makes the printed sheets a bit more "
271
- "branded."
272
  msgstr ""
273
 
274
- # @ woocommerce-delivery-notes
275
- #: ../includes/class-wcdn-settings.php:266
276
- msgid "Leave blank to not print a footer."
 
 
 
277
  msgstr ""
278
 
279
- #: ../includes/class-wcdn-settings.php:273
280
- msgid "Print Options"
281
  msgstr ""
282
 
283
- #: ../includes/class-wcdn-settings.php:278
284
- msgid "Types"
285
  msgstr ""
286
 
287
- #: ../includes/class-wcdn-settings.php:297
288
- msgid "Theme Options"
289
  msgstr ""
290
 
291
- # @ woocommerce-delivery-notes
292
- #: ../includes/class-wcdn-settings.php:302
293
- msgid "Print Page Endpoint"
294
  msgstr ""
295
 
296
- # @ woocommerce-delivery-notes
297
- #: ../includes/class-wcdn-settings.php:309
298
- msgid "The endpoint is appended to the accounts page URL to print the order. It should be unique."
299
  msgstr ""
300
 
301
- #: ../includes/class-wcdn-settings.php:315
302
- msgid "My Account"
303
  msgstr ""
304
 
305
- # @ woocommerce-delivery-notes
306
- #: ../includes/class-wcdn-settings.php:322
307
- msgid "Show print button on the \"View Order\" page"
308
  msgstr ""
309
 
310
- # @ woocommerce-delivery-notes
311
- #: ../includes/class-wcdn-settings.php:329
312
- msgid "Show print buttons on the \"My Account\" page"
313
  msgstr ""
314
 
315
- # @ woocommerce-delivery-notes
316
- #: ../includes/class-wcdn-settings.php:336 ../includes/wcdn-template-functions.php:254
317
- msgid "Email"
318
  msgstr ""
319
 
320
- #: ../includes/class-wcdn-settings.php:343
321
- msgid "Show print link in customer emails"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
322
  msgstr ""
323
 
324
- #: ../includes/class-wcdn-settings.php:347
 
 
 
 
 
 
 
 
 
 
 
 
 
325
  msgid ""
326
- "This includes the emails for a new, processing and completed order. On top of that the customer invoice email "
327
- "also includes the link."
328
  msgstr ""
329
 
330
- # @ woocommerce-delivery-notes
331
- #: ../includes/class-wcdn-settings.php:354
332
- msgid "Order Numbering"
333
  msgstr ""
334
 
335
- #: ../includes/class-wcdn-settings.php:359
336
- msgid "Invoice Numbering"
337
  msgstr ""
338
 
339
- #: ../includes/class-wcdn-settings.php:367
340
- msgid "Create invoice numbers"
341
  msgstr ""
342
 
343
- #: ../includes/class-wcdn-settings.php:374
344
- msgid "Invoice Number Start"
 
345
  msgstr ""
346
 
347
- #: ../includes/class-wcdn-settings.php:381
348
- msgid "Start the numbering at the specified number."
 
 
 
 
 
349
  msgstr ""
350
 
351
- #: ../includes/class-wcdn-settings.php:383
352
- msgid "Use only integers."
 
353
  msgstr ""
354
 
355
- #: ../includes/class-wcdn-settings.php:389
356
- msgid "Invoice Number Prefix"
 
 
 
 
357
  msgstr ""
358
 
359
- #: ../includes/class-wcdn-settings.php:396
360
- msgid "This text will be prepended to the invoice number."
 
361
  msgstr ""
362
 
363
- #: ../includes/class-wcdn-settings.php:398
364
- msgid "Leave blank to not add a prefix."
 
 
 
 
 
365
  msgstr ""
366
 
367
- #: ../includes/class-wcdn-settings.php:404
368
- msgid "Invoice Number Suffix"
 
369
  msgstr ""
370
 
371
- #: ../includes/class-wcdn-settings.php:411
372
- msgid "This text will be appended to the invoice number."
 
373
  msgstr ""
374
 
375
- #: ../includes/class-wcdn-settings.php:413
376
- msgid "Leave blank to not add a suffix."
 
 
 
 
377
  msgstr ""
378
 
379
- #: ../includes/class-wcdn-settings.php:419
380
- msgid "Invoice Number Counter"
 
381
  msgstr ""
382
 
383
- #: ../includes/class-wcdn-settings.php:428
384
- msgid "Reset Counter …"
 
385
  msgstr ""
386
 
387
- #: ../includes/class-wcdn-settings.php:434
388
- msgid "Sequential Order Number"
 
 
 
389
  msgstr ""
390
 
391
- # @ woocommerce-delivery-notes
392
- #: ../includes/class-wcdn-settings.php:439
393
- msgid "Sequential numbering is enabled."
394
  msgstr ""
395
 
396
- # @ woocommerce-delivery-notes
397
- #: ../includes/class-wcdn-settings.php:441
398
- #, php-format
399
- msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
400
  msgstr ""
401
 
402
- #: ../includes/class-wcdn-theme.php:106
403
- msgid "Print your order"
 
404
  msgstr ""
405
 
406
- #: ../includes/class-wcdn-theme.php:112
407
- msgid "Print:"
 
408
  msgstr ""
409
 
410
- #: ../includes/class-wcdn-theme.php:112
411
- msgid "Open print view in browser"
 
412
  msgstr ""
413
 
414
- # @ woocommerce-delivery-notes
415
- #: ../includes/class-wcdn-writepanel.php:214
416
- msgid "Print now"
417
  msgstr ""
418
 
419
- # @ woocommerce-delivery-notes
420
- #: ../includes/class-wcdn-writepanel.php:228
421
- msgid "Order Printing"
 
 
 
 
 
 
422
  msgstr ""
423
 
424
- #: ../includes/class-wcdn-writepanel.php:256
425
- msgid "Invoice number: "
 
 
 
 
 
 
426
  msgstr ""
427
 
428
- #: ../includes/class-wcdn-writepanel.php:257
429
- msgid "Invoice date: "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
430
  msgstr ""
431
 
432
- #: ../includes/wcdn-template-functions.php:232
 
 
 
 
 
 
 
 
 
 
 
433
  msgid "Invoice Number"
434
  msgstr ""
435
 
436
- # @ woocommerce-delivery-notes
437
- #: ../includes/wcdn-template-functions.php:238
 
 
 
438
  msgid "Order Number"
439
  msgstr ""
440
 
441
- # @ woocommerce-delivery-notes
442
- #: ../includes/wcdn-template-functions.php:243
443
  msgid "Order Date"
444
  msgstr ""
445
 
446
- # @ woocommerce-delivery-notes
447
- #: ../includes/wcdn-template-functions.php:248
448
  msgid "Payment Method"
449
  msgstr ""
450
 
451
- # @ woocommerce-delivery-notes
452
- #: ../includes/wcdn-template-functions.php:261
453
  msgid "Telephone"
454
  msgstr ""
455
 
456
- #: ../includes/wcdn-template-functions.php:294
457
  msgid "SKU:"
458
  msgstr ""
459
 
460
- #: ../includes/wcdn-template-functions.php:380 ../includes/wcdn-template-functions.php:384
461
- #, php-format
462
  msgid "(Includes %s)"
463
  msgstr ""
464
 
465
- #: ../includes/wcdn-template-functions.php:400
466
  msgid "Refund"
467
  msgstr ""
468
 
469
- #: ../includes/wcdn-template-functions.php:412
470
  msgid "Order Subtotal"
471
  msgstr ""
472
 
473
- # @ woocommerce-delivery-notes
474
- #: ../templates/print-order/print-content.php:28
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
475
  msgid "Billing Address"
476
  msgstr ""
477
 
478
- # @ woocommerce-delivery-notes
479
- #: ../templates/print-order/print-content.php:31 ../templates/print-order/print-content.php:40
480
  msgid "N/A"
481
  msgstr ""
482
 
483
- # @ woocommerce-delivery-notes
484
- #: ../templates/print-order/print-content.php:37
485
  msgid "Shipping Address"
486
  msgstr ""
487
 
488
- # @ woocommerce-delivery-notes
489
- #: ../templates/print-order/print-content.php:70
490
  msgid "Product"
491
  msgstr ""
492
 
493
- #: ../templates/print-order/print-content.php:71
494
  msgid "Price"
495
  msgstr ""
496
 
497
- #: ../templates/print-order/print-content.php:72
498
  msgid "Quantity"
499
  msgstr ""
500
 
501
- # @ woocommerce-delivery-notes
502
- #: ../templates/print-order/print-content.php:73
503
  msgid "Total"
504
  msgstr ""
505
 
506
- # @ woocommerce-delivery-notes
507
- #: ../templates/print-order/print-content.php:97
508
  msgid "Download:"
509
  msgstr ""
510
 
511
- # @ woocommerce-delivery-notes
512
- #: ../templates/print-order/print-content.php:98
513
- #, php-format
514
  msgid "%s Files"
515
  msgstr ""
516
 
517
- # @ woocommerce-delivery-notes
518
- #: ../templates/print-order/print-content.php:147
519
  msgid "Customer Note"
520
  msgstr ""
521
 
522
- # @ woocommerce-delivery-notes
523
- #: ../woocommerce-delivery-notes.php:181
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
524
  msgid "Go to the settings page"
525
  msgstr ""
526
 
527
- # @ woocommerce-delivery-notes
528
- #: ../woocommerce-delivery-notes.php:181
529
  msgid "Settings"
530
  msgstr ""
1
+ # Copyright (C) 2018
2
+ # This file is distributed under the same license as the package.
 
 
 
 
 
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: \n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/woocommerce-"
7
+ "delivery-notes\n"
8
+ "POT-Creation-Date: 2018-10-19 12:56:49+00:00\n"
 
 
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
13
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
+ "Language-Team: LANGUAGE <LL@li.org>\n"
15
+
16
+ #: includes/class-wcdn-print.php:39 includes/class-wcdn-settings.php:237
 
 
 
 
 
 
17
  msgid "Invoice"
18
  msgstr ""
19
 
20
+ #: includes/class-wcdn-print.php:40
21
  msgid "Invoices"
22
  msgstr ""
23
 
24
+ #: includes/class-wcdn-print.php:41
 
25
  msgid "Print Invoice"
26
  msgstr ""
27
 
28
+ #: includes/class-wcdn-print.php:42
29
  msgid "Print Invoices"
30
  msgstr ""
31
 
32
+ #: includes/class-wcdn-print.php:43
 
33
  msgid "Invoice created."
34
  msgstr ""
35
 
36
+ #: includes/class-wcdn-print.php:44
37
  msgid "Invoices created."
38
  msgstr ""
39
 
40
+ #: includes/class-wcdn-print.php:45
41
+ msgid "Show \"Print Invoice\" button"
42
  msgstr ""
43
 
44
+ #: includes/class-wcdn-print.php:51
 
45
  msgid "Delivery Note"
46
  msgstr ""
47
 
48
+ #: includes/class-wcdn-print.php:52
49
  msgid "Delivery Notes"
50
  msgstr ""
51
 
52
+ #: includes/class-wcdn-print.php:53
 
53
  msgid "Print Delivery Note"
54
  msgstr ""
55
 
56
+ #: includes/class-wcdn-print.php:54
57
  msgid "Print Delivery Notes"
58
  msgstr ""
59
 
60
+ #: includes/class-wcdn-print.php:55
61
  msgid "Delivery Note created."
62
  msgstr ""
63
 
64
+ #: includes/class-wcdn-print.php:56
65
  msgid "Delivery Notes created."
66
  msgstr ""
67
 
68
+ #: includes/class-wcdn-print.php:57
69
+ msgid "Show \"Print Delivery Note\" button"
70
  msgstr ""
71
 
72
+ #: includes/class-wcdn-print.php:63
73
  msgid "Receipt"
74
  msgstr ""
75
 
76
+ #: includes/class-wcdn-print.php:64
77
  msgid "Receipts"
78
  msgstr ""
79
 
80
+ #: includes/class-wcdn-print.php:65
81
  msgid "Print Receipt"
82
  msgstr ""
83
 
84
+ #: includes/class-wcdn-print.php:66
85
  msgid "Print Receipts"
86
  msgstr ""
87
 
88
+ #: includes/class-wcdn-print.php:67
89
  msgid "Receipt created."
90
  msgstr ""
91
 
92
+ #: includes/class-wcdn-print.php:68
93
  msgid "Receipts created."
94
  msgstr ""
95
 
96
+ #: includes/class-wcdn-print.php:69
97
+ msgid "Show \"Print Receipt\" button"
98
  msgstr ""
99
 
100
+ #: includes/class-wcdn-print.php:78
 
101
  msgid "Order"
102
  msgstr ""
103
 
104
+ #: includes/class-wcdn-print.php:79
105
  msgid "Orders"
106
  msgstr ""
107
 
108
+ #: includes/class-wcdn-print.php:80
 
109
  msgid "Print Order"
110
  msgstr ""
111
 
112
+ #: includes/class-wcdn-print.php:81
113
  msgid "Print Orders"
114
  msgstr ""
115
 
116
+ #: includes/class-wcdn-print.php:93
117
+ msgid "Default"
118
  msgstr ""
119
 
120
+ #: includes/class-wcdn-settings.php:67
121
+ msgid ""
122
+ "Do you really want to reset the counter to zero? This process can't be "
123
+ "undone."
124
+ msgstr ""
125
+
126
+ #: includes/class-wcdn-settings.php:75 includes/class-wcdn-theme.php:57
127
+ #: includes/class-wcdn-theme.php:94 includes/wcdn-template-functions.php:130
128
  msgid "Print"
129
  msgstr ""
130
 
131
+ #: includes/class-wcdn-settings.php:106
132
+ msgid "Template"
133
+ msgstr ""
134
+
135
+ #: includes/class-wcdn-settings.php:113
136
+ msgid "Style"
137
+ msgstr ""
138
+
139
+ #: includes/class-wcdn-settings.php:114
140
  msgid ""
141
+ "The default print style. Read the <a href=\"%1$s\">FAQ</a> to learn how to "
142
+ "customize it."
143
  msgstr ""
144
 
145
+ #: includes/class-wcdn-settings.php:124
146
+ msgid "Shop Logo"
 
147
  msgstr ""
148
 
149
+ #: includes/class-wcdn-settings.php:130
150
+ msgid ""
151
+ "A shop logo representing your business. When the image is printed, its pixel "
152
+ "density will automatically be eight times higher than the original. This "
153
+ "means, 1 printed inch will correspond to about 288 pixels on the screen."
154
  msgstr ""
155
 
156
+ #: includes/class-wcdn-settings.php:134
157
+ msgid "Shop Name"
 
158
  msgstr ""
159
 
160
+ #: includes/class-wcdn-settings.php:140
161
+ msgid ""
162
+ "The shop name. Leave blank to use the default Website or Blog title defined "
163
+ "in WordPress settings. The name will be ignored when a Logo is set."
164
  msgstr ""
165
 
166
+ #: includes/class-wcdn-settings.php:144
167
+ msgid "Shop Address"
 
168
  msgstr ""
169
 
170
+ #: includes/class-wcdn-settings.php:145
171
+ msgid "The postal address of the shop or even e-mail or telephone."
 
 
 
 
 
172
  msgstr ""
173
 
174
+ #: includes/class-wcdn-settings.php:154
175
+ msgid "Complimentary Close"
 
 
 
 
176
  msgstr ""
177
 
178
+ #: includes/class-wcdn-settings.php:155
179
+ msgid "Add a personal close, notes or season greetings."
 
180
  msgstr ""
181
 
182
+ #: includes/class-wcdn-settings.php:164
183
+ msgid "Policies"
 
184
  msgstr ""
185
 
186
+ #: includes/class-wcdn-settings.php:165
187
+ msgid "Add the shop policies, conditions, etc."
 
 
 
188
  msgstr ""
189
 
190
+ #: includes/class-wcdn-settings.php:174
191
+ msgid "Footer"
 
192
  msgstr ""
193
 
194
+ #: includes/class-wcdn-settings.php:175
 
195
  msgid ""
196
+ "Add a footer imprint, instructions, copyright notes, e-mail, telephone, etc."
 
197
  msgstr ""
198
 
199
+ #: includes/class-wcdn-settings.php:189
200
+ msgid "Pages & Buttons"
 
201
  msgstr ""
202
 
203
+ #: includes/class-wcdn-settings.php:196
204
+ msgid "Print Page Endpoint"
205
  msgstr ""
206
 
207
+ #: includes/class-wcdn-settings.php:202
 
208
  msgid ""
209
+ "The endpoint is appended to the accounts page URL to print the order. It "
210
+ "should be unique."
211
  msgstr ""
212
 
213
+ #: includes/class-wcdn-settings.php:206
214
+ #: includes/wcdn-template-functions.php:275
215
+ msgid "Email"
216
  msgstr ""
217
 
218
+ #: includes/class-wcdn-settings.php:207
219
+ msgid "Show print link in customer emails"
 
220
  msgstr ""
221
 
222
+ #: includes/class-wcdn-settings.php:211
 
223
  msgid ""
224
+ "This includes the emails for a new, processing and completed order. On top "
225
+ "of that the customer invoice email also includes the link."
 
226
  msgstr ""
227
 
228
+ #: includes/class-wcdn-settings.php:215
229
+ msgid "My Account"
 
230
  msgstr ""
231
 
232
+ #: includes/class-wcdn-settings.php:216
233
+ msgid "Show print button on the \"View Order\" page"
234
+ msgstr ""
235
+
236
+ #: includes/class-wcdn-settings.php:224
237
+ msgid "Show print buttons on the \"My Account\" page"
238
+ msgstr ""
239
+
240
+ #: includes/class-wcdn-settings.php:244
241
+ msgid "Numbering"
242
+ msgstr ""
243
+
244
+ #: includes/class-wcdn-settings.php:245
245
+ msgid "Create invoice numbers"
246
+ msgstr ""
247
+
248
+ #: includes/class-wcdn-settings.php:253
249
+ msgid "Next Number"
250
+ msgstr ""
251
+
252
+ #: includes/class-wcdn-settings.php:260
253
+ msgid "The next invoice number."
254
+ msgstr ""
255
+
256
+ #: includes/class-wcdn-settings.php:264
257
+ msgid "Number Prefix"
258
+ msgstr ""
259
+
260
+ #: includes/class-wcdn-settings.php:271
261
+ msgid "This text will be prepended to the invoice number."
262
+ msgstr ""
263
+
264
+ #: includes/class-wcdn-settings.php:275
265
+ msgid "Number Suffix"
266
+ msgstr ""
267
+
268
+ #: includes/class-wcdn-settings.php:282
269
+ msgid "This text will be appended to the invoice number."
270
  msgstr ""
271
 
272
+ #: includes/class-wcdn-settings.php:327
273
+ msgid "Admin"
274
+ msgstr ""
275
+
276
+ #: includes/class-wcdn-settings.php:330
277
  msgid ""
278
+ "The print buttons are available on the order listing and on the order detail "
279
+ "screen."
280
  msgstr ""
281
 
282
+ #: includes/class-wcdn-settings.php:372
283
+ msgid ""
284
+ "This section lets you customise the content. You can preview the <a href="
285
+ "\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target="
286
+ "\"%4$s\" class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s"
287
+ "\" class=\"%5$s\">receipt</a> template."
288
  msgstr ""
289
 
290
+ #: includes/class-wcdn-settings.php:435
291
+ msgid "Select"
292
  msgstr ""
293
 
294
+ #: includes/class-wcdn-settings.php:439
295
+ msgid "Remove"
296
  msgstr ""
297
 
298
+ #: includes/class-wcdn-theme.php:112
299
+ msgid "Print your order"
300
  msgstr ""
301
 
302
+ #: includes/class-wcdn-theme.php:119
303
+ msgid "Print:"
 
304
  msgstr ""
305
 
306
+ #: includes/class-wcdn-theme.php:119
307
+ msgid "Open print view in browser"
 
308
  msgstr ""
309
 
310
+ #: includes/class-wcdn-writepanel.php:218
311
+ msgid "Print now"
312
  msgstr ""
313
 
314
+ #: includes/class-wcdn-writepanel.php:232
315
+ msgid "Order Printing"
 
316
  msgstr ""
317
 
318
+ #: includes/class-wcdn-writepanel.php:259
319
+ msgid "Invoice number: "
 
320
  msgstr ""
321
 
322
+ #: includes/class-wcdn-writepanel.php:260
323
+ msgid "Invoice date: "
 
324
  msgstr ""
325
 
326
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:75
327
+ msgid "If you have a moment, please let us know why you are deactivating"
328
+ msgstr ""
329
+
330
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:76
331
+ msgid "Submit & Deactivate"
332
+ msgstr ""
333
+
334
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:77
335
+ msgid "Deactivate"
336
+ msgstr ""
337
+
338
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:78
339
+ msgid "Cancel"
340
+ msgstr ""
341
+
342
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:79
343
+ msgid "Yes - Deactivate"
344
+ msgstr ""
345
+
346
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:83
347
+ msgid "I found a better plugin"
348
+ msgstr ""
349
+
350
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:84
351
+ msgid "What's the plugin's name?"
352
+ msgstr ""
353
+
354
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:85
355
+ msgid "I only needed the plugin for a short period"
356
+ msgstr ""
357
+
358
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:86
359
+ msgid "The plugin is not working"
360
+ msgstr ""
361
+
362
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:87
363
+ msgid "Kindly share what didn't work so we can fix it for future users..."
364
+ msgstr ""
365
+
366
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:88
367
+ msgid "The plugin is great, but I need specific feature that you don't support"
368
+ msgstr ""
369
+
370
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:89
371
+ msgid "What feature?"
372
+ msgstr ""
373
+
374
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:90
375
+ msgid "I don't like to share my information with you"
376
+ msgstr ""
377
+
378
+ #: includes/component/deactivate-survey-popup/class-ts-deactivation.php:91
379
+ msgctxt ""
380
+ "the text of the 'other' reason for deactivating the plugin that is shown in "
381
+ "the modal box."
382
+ msgid "Other"
383
  msgstr ""
384
 
385
+ #: includes/component/faq-support/ts-faq-support.php:127
386
+ msgid "Frequently Asked Questions for %s"
387
+ msgstr ""
388
+
389
+ #: includes/component/faq-support/ts-faq-support.php:176
390
+ msgid "FAQ & Support"
391
+ msgstr ""
392
+
393
+ #: includes/component/tracking-data/ts-tracking.php:120
394
+ #: includes/component/tracking-data/ts-tracking.php:180
395
+ msgid "Reset usage tracking"
396
+ msgstr ""
397
+
398
+ #: includes/component/tracking-data/ts-tracking.php:122
399
  msgid ""
400
+ "This will reset your usage tracking settings, causing it to show the opt-in "
401
+ "banner again and not sending any data"
402
  msgstr ""
403
 
404
+ #: includes/component/tracking-data/ts-tracking.php:225
405
+ msgid "Once in a Week"
 
406
  msgstr ""
407
 
408
+ #: includes/component/tracking-data/ts-tracking.php:311
409
+ msgid "Allow"
410
  msgstr ""
411
 
412
+ #: includes/component/tracking-data/ts-tracking.php:312
413
+ msgid "No thanks"
414
  msgstr ""
415
 
416
+ #: includes/component/welcome-page/templates/social-media-elements.php:10
417
+ #: includes/wcdn-welcome.php:231
418
+ msgid "Follow %s"
419
  msgstr ""
420
 
421
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:19
422
+ #: includes/wcdn-welcome.php:99
423
+ msgid ""
424
+ "Thank you for activating or updating to the latest version of WooCommerce "
425
+ "Print Invoice & Delivery Note! If you're a first time user, welcome! You're "
426
+ "well on your way to explore the print functionality for your WooCommerce "
427
+ "orders."
428
  msgstr ""
429
 
430
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:29
431
+ #: includes/wcdn-welcome.php:109
432
+ msgid "Get Started with WooCommerce Print Invoice & Delivery Note"
433
  msgstr ""
434
 
435
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:33
436
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:62
437
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:68
438
+ #: includes/wcdn-welcome.php:113 includes/wcdn-welcome.php:142
439
+ #: includes/wcdn-welcome.php:148
440
+ msgid "WooCommerce Print Invoice & Delivery Note"
441
  msgstr ""
442
 
443
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:37
444
+ #: includes/wcdn-welcome.php:117
445
+ msgid "Add settings"
446
  msgstr ""
447
 
448
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:39
449
+ #: includes/wcdn-welcome.php:119
450
+ msgid ""
451
+ "To enable the print functionality for your invoices, delivery notes & "
452
+ "receipts, you just need to set it up under WooCommerce -> Settings -> Print "
453
+ "page. Here you can also setup the Company Logo that will appear on the "
454
+ "printed items, Company Address & other information."
455
  msgstr ""
456
 
457
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:41
458
+ #: includes/wcdn-welcome.php:121
459
+ msgid "Click Here to go to Print page"
460
  msgstr ""
461
 
462
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:52
463
+ #: includes/wcdn-welcome.php:132
464
+ msgid "Enable Print button for Customers."
465
  msgstr ""
466
 
467
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:54
468
+ #: includes/wcdn-welcome.php:134
469
+ msgid ""
470
+ "Allow customers to print the WooCommerce order invoice from the customer "
471
+ "notification email, from the My Account page or from the View Order page "
472
+ "under My Account."
473
  msgstr ""
474
 
475
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:56
476
+ #: includes/wcdn-welcome.php:136
477
+ msgid "Click Here to Enable Print button for Customers"
478
  msgstr ""
479
 
480
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:72
481
+ #: includes/wcdn-welcome.php:152
482
+ msgid "Enable Invoice Numbering"
483
  msgstr ""
484
 
485
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:74
486
+ msgid ""
487
+ "If you want to change the default invoice numbers & set some numbering "
488
+ "scheme of your own, then you can set it here with a starting invoice number, "
489
+ "a prefix & suffix. For example, you could set it as: TS/001/17-18."
490
  msgstr ""
491
 
492
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:76
493
+ #: includes/wcdn-welcome.php:156
494
+ msgid "Click Here to Enable Invoice Numbering"
495
  msgstr ""
496
 
497
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:87
498
+ #: includes/wcdn-welcome.php:167
499
+ msgid "Getting to Know Tyche Softwares"
 
500
  msgstr ""
501
 
502
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:90
503
+ #: includes/wcdn-welcome.php:170
504
+ msgid "Visit the Tyche Softwares Website"
505
  msgstr ""
506
 
507
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:91
508
+ #: includes/wcdn-welcome.php:171
509
+ msgid "View all Premium Plugins"
510
  msgstr ""
511
 
512
+ #: includes/component/welcome-page/templates/welcome/welcome-page.php:100
513
+ #: includes/wcdn-welcome.php:180
514
+ msgid "Meet the team"
515
  msgstr ""
516
 
517
+ #: includes/component/welcome-page/ts-welcome.php:167
518
+ msgid "Welcome to %s %s"
 
519
  msgstr ""
520
 
521
+ #: includes/wcdn-all-component.php:118
522
+ msgid ""
523
+ "Thank you for using WooCommerce Print Invoice & Delivery Note plugin! Now "
524
+ "make your deliveries more accurate by allowing customers to select their "
525
+ "preferred delivery date & time from Product Delivery Date Pro for "
526
+ "WooCommerce. <strong><a target=\"_blank\" href= \"https://www.tychesoftwares."
527
+ "com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/?"
528
+ "utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">Get "
529
+ "it now!</a></strong>"
530
  msgstr ""
531
 
532
+ #: includes/wcdn-all-component.php:120
533
+ msgid ""
534
+ "Never login to your admin to check your deliveries by syncing the delivery "
535
+ "dates to the Google Calendar from Product Delivery Date Pro for WooCommerce. "
536
+ "<strong><a target=\"_blank\" href= \"https://www.tychesoftwares.com/store/"
537
+ "premium-plugins/product-delivery-date-pro-for-woocommerce/checkout?"
538
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
539
+ "\">Get it now!</a></strong>"
540
  msgstr ""
541
 
542
+ #: includes/wcdn-all-component.php:122
543
+ msgid ""
544
+ "You can now view all your deliveries in list view or in calendar view from "
545
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
546
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
547
+ "delivery-date-pro-for-woocommerce/checkout?"
548
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
549
+ "\">Get it now!</a></strong>."
550
+ msgstr ""
551
+
552
+ #: includes/wcdn-all-component.php:124
553
+ msgid ""
554
+ "Allow your customers to pay extra for delivery for certain Weekdays/Dates "
555
+ "from Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
556
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
557
+ "delivery-date-pro-for-woocommerce/checkout?"
558
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
559
+ "\">Have it now!</a></strong>."
560
  msgstr ""
561
 
562
+ #: includes/wcdn-all-component.php:126
563
+ msgid ""
564
+ "Customers can now edit the Delivery date & time on cart and checkout page or "
565
+ "they can reschedule the deliveries for the already placed orders from "
566
+ "Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
567
+ "href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
568
+ "delivery-date-pro-for-woocommerce/checkout?"
569
+ "edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin"
570
+ "\">Have it now!</a></strong>."
571
+ msgstr ""
572
+
573
+ #: includes/wcdn-template-functions.php:246
574
  msgid "Invoice Number"
575
  msgstr ""
576
 
577
+ #: includes/wcdn-template-functions.php:253
578
+ msgid "Invoice Date"
579
+ msgstr ""
580
+
581
+ #: includes/wcdn-template-functions.php:259
582
  msgid "Order Number"
583
  msgstr ""
584
 
585
+ #: includes/wcdn-template-functions.php:264
 
586
  msgid "Order Date"
587
  msgstr ""
588
 
589
+ #: includes/wcdn-template-functions.php:269
 
590
  msgid "Payment Method"
591
  msgstr ""
592
 
593
+ #: includes/wcdn-template-functions.php:282
 
594
  msgid "Telephone"
595
  msgstr ""
596
 
597
+ #: includes/wcdn-template-functions.php:315
598
  msgid "SKU:"
599
  msgstr ""
600
 
601
+ #: includes/wcdn-template-functions.php:409
602
+ #: includes/wcdn-template-functions.php:413
603
  msgid "(Includes %s)"
604
  msgstr ""
605
 
606
+ #: includes/wcdn-template-functions.php:429
607
  msgid "Refund"
608
  msgstr ""
609
 
610
+ #: includes/wcdn-template-functions.php:441
611
  msgid "Order Subtotal"
612
  msgstr ""
613
 
614
+ #: includes/wcdn-welcome.php:54
615
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note %s"
616
+ msgstr ""
617
+
618
+ #: includes/wcdn-welcome.php:55
619
+ msgid "Welcome to WooCommerce Print Invoice & Delivery Note"
620
+ msgstr ""
621
+
622
+ #: includes/wcdn-welcome.php:154
623
+ msgid ""
624
+ "f you want to change the default invoice numbers & set some numbering scheme "
625
+ "of your own, then you can set it here with a starting invoice number, a "
626
+ "prefix & suffix. For example, you could set it as: TS/001/17-18."
627
+ msgstr ""
628
+
629
+ #: includes/wcdn-welcome.php:186
630
+ msgid "Current Offers"
631
+ msgstr ""
632
+
633
+ #: templates/print-order/print-content.php:28
634
  msgid "Billing Address"
635
  msgstr ""
636
 
637
+ #: templates/print-order/print-content.php:31
638
+ #: templates/print-order/print-content.php:40
639
  msgid "N/A"
640
  msgstr ""
641
 
642
+ #: templates/print-order/print-content.php:37
 
643
  msgid "Shipping Address"
644
  msgstr ""
645
 
646
+ #: templates/print-order/print-content.php:71
 
647
  msgid "Product"
648
  msgstr ""
649
 
650
+ #: templates/print-order/print-content.php:72
651
  msgid "Price"
652
  msgstr ""
653
 
654
+ #: templates/print-order/print-content.php:73
655
  msgid "Quantity"
656
  msgstr ""
657
 
658
+ #: templates/print-order/print-content.php:74
 
659
  msgid "Total"
660
  msgstr ""
661
 
662
+ #: templates/print-order/print-content.php:147
 
663
  msgid "Download:"
664
  msgstr ""
665
 
666
+ #: templates/print-order/print-content.php:148
 
 
667
  msgid "%s Files"
668
  msgstr ""
669
 
670
+ #: templates/print-order/print-content.php:202
 
671
  msgid "Customer Note"
672
  msgstr ""
673
 
674
+ #: woocommerce-delivery-notes.php:96 woocommerce-delivery-notes.php:103
675
+ msgid "Cheatin&#8217; huh?"
676
+ msgstr ""
677
+
678
+ #: woocommerce-delivery-notes.php:275
679
+ msgid ""
680
+ "I can't differentiate between Invoice, Delivery Notes & Receipt. The "
681
+ "templates are the same. "
682
+ msgstr ""
683
+
684
+ #: woocommerce-delivery-notes.php:281
685
+ msgid "The invoice sent through mail can't be downloaded as PDF directly."
686
+ msgstr ""
687
+
688
+ #: woocommerce-delivery-notes.php:287
689
+ msgid "The plugin is not compatible with another plugin."
690
+ msgstr ""
691
+
692
+ #: woocommerce-delivery-notes.php:293
693
+ msgid "This plugin is not useful to me."
694
+ msgstr ""
695
+
696
+ #: woocommerce-delivery-notes.php:351
697
  msgid "Go to the settings page"
698
  msgstr ""
699
 
700
+ #: woocommerce-delivery-notes.php:351
 
701
  msgid "Settings"
702
  msgstr ""
readme.txt CHANGED
@@ -4,9 +4,9 @@ Contributors: ashokrane, bhavik.kiri, tychesoftwares, rashmim
4
  Donate link: https://www.paypal.me/TycheSoftwares
5
  Tags: delivery note, packing slip, pdf invoice, delivery, shipping, print order, woocommerce, woothemes, shop
6
  Requires at least: 4.0
7
- Tested up to: 4.9.5
8
  Author URI: https://www.tychesoftwares.com/
9
- Stable tag: 4.4.2
10
  License: GPLv3 or later
11
  License URI: http://www.opensource.org/licenses/gpl-license.php
12
 
@@ -330,6 +330,32 @@ Please [contribute your translation](https://github.com/TycheSoftwares/woocommer
330
 
331
  = Minimum Requirements: WooCommerce 2.2 =
332
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
333
  = 4.4.2 (22.02.2018) =
334
 
335
  * Fix - With the latest WooCommerce version 3.3, the icons for Print were missing. This is fixed.
4
  Donate link: https://www.paypal.me/TycheSoftwares
5
  Tags: delivery note, packing slip, pdf invoice, delivery, shipping, print order, woocommerce, woothemes, shop
6
  Requires at least: 4.0
7
+ Tested up to: 5.1
8
  Author URI: https://www.tychesoftwares.com/
9
+ Stable tag: 4.4.8
10
  License: GPLv3 or later
11
  License URI: http://www.opensource.org/licenses/gpl-license.php
12
 
330
 
331
  = Minimum Requirements: WooCommerce 2.2 =
332
 
333
+ = 4.4.8 (02.04.2019) =
334
+
335
+ * Fix - When a noticed was dismissed from the plugin, then it will dismiss all other notices from other plugins also. This is fixed now.
336
+ * Fix - Some errors in debug.log file are fixed.
337
+
338
+ = 4.4.7 (24.11.2018) =
339
+
340
+ * Fix – Fixed compatibility related issue with WooCommerce Product Add-ons v3.0.x. Options were not being printed.
341
+ * Fix – Fixed compatibility related issue with Woocommerce Partial Orders Pro Plugin.
342
+
343
+ = 4.4.6 (22.10.2018) =
344
+
345
+ * .po, .mo is updated for all the other languages.
346
+
347
+ = 4.4.5 (22.10.2018) =
348
+
349
+ * .pot file updated.
350
+
351
+ = 4.4.4 (13.10.2018) =
352
+
353
+ * Removed the Welcome page of the plugin and also removed the promotional notices which were being displayed on admin end of the WordPress website.
354
+
355
+ = 4.4.3 (23.07.2018) =
356
+
357
+ * Usage Tracking has been added in the plugin. It provides an option to allow tracking of the non-sensitive data of our plugin from the website. You can read more about it [here](https://www.tychesoftwares.com/docs/docs/woocommerce-print-invoice-delivery-note/usage-tracking/).
358
+
359
  = 4.4.2 (22.02.2018) =
360
 
361
  * Fix - With the latest WooCommerce version 3.3, the icons for Print were missing. This is fixed.
templates/print-order/print-content.php CHANGED
@@ -88,79 +88,95 @@ if ( !defined( 'ABSPATH' ) ) exit;
88
  $item_meta = new WC_Order_Item_Product( $item['item_meta'], $product );
89
  }else{
90
  $item_meta = new WC_Order_Item_Meta( $item['item_meta'], $product );
91
- }
92
-
93
  ?>
94
-
95
  <tr>
96
  <td class="product-name">
97
  <?php do_action( 'wcdn_order_item_before', $product, $order ); ?>
 
 
 
 
 
 
98
 
99
- <span class="name"><?php
100
- $product_id = $item['product_id'];
101
- $prod_name = get_post( $product_id );
102
- $product_name = $prod_name->post_title;
103
-
104
 
105
- echo apply_filters( 'wcdn_order_item_name', $product_name, $item ); ?></span>
 
106
 
107
- <?php
108
- // if ( version_compare( get_option( 'woocommerce_version' ), '3.1.0', ">=" ) ) {
109
- // $item_meta->get_product();
110
-
111
- // }else {
112
-
113
- // $item_meta->display();
114
- // }
115
-
116
- if ( version_compare( get_option( 'woocommerce_version' ), '3.0.0', ">=" ) ) {
117
- if( isset( $item[ 'variation_id' ] ) && $item[ 'variation_id' ] != 0 ) {
118
- $variation = wc_get_product( $item[ 'product_id' ] );
119
- foreach ( $item[ 'item_meta' ] as $key => $value ) {
120
- if( !( 0 === strpos($key, '_' ) ) ) {
121
- $term = get_term_by( 'slug', $value, $key );
122
- $attribute_name = wc_attribute_label( $key, $variation );
123
- if( isset( $term->name ) ) {
124
- echo '<br>'.$attribute_name.':'.$term->name;
125
- } else {
126
- echo '<br>'.$attribute_name.':'.$value;
 
 
 
 
 
 
 
 
 
 
 
127
  }
128
  }
129
- }
130
- } else {
131
- foreach ( $item[ 'item_meta' ] as $key => $value ) {
132
- if( !( 0 === strpos( $key, '_' ) ) ) {
133
- echo '<br>' . $key . ':' . $value;
 
 
 
134
  }
135
  }
136
- }
137
- } else {
138
- $item_meta_new = new WC_Order_Item_Meta( $item['item_meta'], $product );
139
- $item_meta_new->display( );
140
-
141
- }
142
- ?>
143
- <br>
144
- <dl class="extras">
145
- <?php if( $product && $product->exists() && $product->is_downloadable() && $order->is_download_permitted() ) : ?>
146
-
147
- <dt><?php _e( 'Download:', 'woocommerce-delivery-notes' ); ?></dt>
148
- <dd><?php printf( __( '%s Files', 'woocommerce-delivery-notes' ), count( $item->get_item_downloads() ) ); ?></dd>
149
-
150
- <?php endif; ?>
151
-
152
- <?php
153
-
154
- $fields = apply_filters( 'wcdn_order_item_fields', array(), $product, $order );
155
 
156
- foreach ( $fields as $field ) :
157
  ?>
158
-
159
- <dt><?php echo $field['label']; ?></dt>
160
- <dd><?php echo $field['value']; ?></dd>
161
 
162
- <?php endforeach; ?>
163
- </dl>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
164
  </td>
165
  <td class="product-item-price">
166
  <span><?php echo wcdn_get_formatted_item_price( $order, $item ); ?></span>
88
  $item_meta = new WC_Order_Item_Product( $item['item_meta'], $product );
89
  }else{
90
  $item_meta = new WC_Order_Item_Meta( $item['item_meta'], $product );
91
+ }
 
92
  ?>
 
93
  <tr>
94
  <td class="product-name">
95
  <?php do_action( 'wcdn_order_item_before', $product, $order ); ?>
96
+ <span class="name">
97
+ <?php
98
+
99
+ $addon_name = $item->get_meta( '_wc_pao_addon_name', true );
100
+ $addon_value = $item->get_meta( '_wc_pao_addon_value', true );
101
+ $is_addon = ! empty( $addon_value );
102
 
103
+ if ( $is_addon ) { // Displaying options of product addon
104
+ $addon_html = '<div class="wc-pao-order-item-name">' . esc_html( $addon_name ) . '</div><div class="wc-pao-order-item-value">' . esc_html( $addon_value ) . '</div></div>';
 
 
 
105
 
106
+ echo $addon_html;
107
+ } else {
108
 
109
+ $product_id = $item['product_id'];
110
+ $prod_name = get_post( $product_id );
111
+ $product_name = $prod_name->post_title;
112
+
113
+
114
+ echo apply_filters( 'wcdn_order_item_name', $product_name, $item ); ?></span>
115
+
116
+ <?php
117
+ // if ( version_compare( get_option( 'woocommerce_version' ), '3.1.0', ">=" ) ) {
118
+ // $item_meta->get_product();
119
+
120
+ // }else {
121
+
122
+ // $item_meta->display();
123
+ // }
124
+
125
+ if ( version_compare( get_option( 'woocommerce_version' ), '3.0.0', ">=" ) ) {
126
+ if( isset( $item[ 'variation_id' ] ) && $item[ 'variation_id' ] != 0 ) {
127
+ $variation = wc_get_product( $item[ 'product_id' ] );
128
+ foreach ( $item[ 'item_meta' ] as $key => $value ) {
129
+ if( !( 0 === strpos($key, '_' ) ) ) {
130
+ if( is_array( $value ) ){
131
+ continue;
132
+ }
133
+ $term = get_term_by( 'slug', $value, $key );
134
+ $attribute_name = wc_attribute_label( $key, $variation );
135
+ if( isset( $term->name ) ) {
136
+ echo '<br>'.$attribute_name.':'.$term->name;
137
+ } else {
138
+ echo '<br>'.$attribute_name.':'.$value;
139
+ }
140
  }
141
  }
142
+ } else {
143
+ foreach ( $item[ 'item_meta' ] as $key => $value ) {
144
+ if( !( 0 === strpos( $key, '_' ) ) ) {
145
+ if( is_array( $value ) ){
146
+ continue;
147
+ }
148
+ echo '<br>' . $key . ':' . $value;
149
+ }
150
  }
151
  }
152
+ } else {
153
+ $item_meta_new = new WC_Order_Item_Meta( $item['item_meta'], $product );
154
+ $item_meta_new->display( );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
155
 
156
+ }
157
  ?>
158
+ <br>
159
+ <dl class="extras">
160
+ <?php if( $product && $product->exists() && $product->is_downloadable() && $order->is_download_permitted() ) : ?>
161
 
162
+ <dt><?php _e( 'Download:', 'woocommerce-delivery-notes' ); ?></dt>
163
+ <dd><?php printf( __( '%s Files', 'woocommerce-delivery-notes' ), count( $item->get_item_downloads() ) ); ?></dd>
164
+
165
+ <?php endif; ?>
166
+
167
+ <?php
168
+
169
+ $fields = apply_filters( 'wcdn_order_item_fields', array(), $product, $order );
170
+
171
+ foreach ( $fields as $field ) :
172
+ ?>
173
+
174
+ <dt><?php echo $field['label']; ?></dt>
175
+ <dd><?php echo $field['value']; ?></dd>
176
+
177
+ <?php endforeach; ?>
178
+ </dl>
179
+ <?php } ?>
180
  </td>
181
  <td class="product-item-price">
182
  <span><?php echo wcdn_get_formatted_item_price( $order, $item ); ?></span>
uninstall.php CHANGED
@@ -13,21 +13,18 @@ if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
13
  /**
14
  * Delete the data for the WordPress Multisite.
15
  */
16
- if ( is_multisite() ) {
17
- $wcdn_blog_list = get_sites( );
18
 
19
- foreach( $wcdn_blog_list as $wcdn_blog_list_key => $wcdn_blog_list_value ) {
20
- $wcdn_blog_id = $wcdn_blog_list_value->blog_id;
21
- delete_blog_option( $wcdn_blog_id, 'wcdn_welcome_page_shown' );
22
- delete_blog_option( $wcdn_blog_id, 'wcdn_welcome_page_shown_time' );
23
- }
24
 
25
  } else {
26
- /**
27
- * Delete the data for the single website ( Non-Multisite )
28
- */
29
- delete_option( 'wcdn_welcome_page_shown' );
30
- delete_option( 'wcdn_welcome_page_shown_time' );
31
  }
32
 
33
  wp_cache_flush();
13
  /**
14
  * Delete the data for the WordPress Multisite.
15
  */
16
+ global $wpdb;
 
17
 
18
+ if ( is_multisite() ) {
19
+ $sql_table_user_meta_cart = "DELETE FROM `" . $wpdb->prefix . "usermeta` WHERE meta_key LIKE '%wcdn_%'";
20
+ require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
21
+ $wpdb->get_results( $sql_table_user_meta_cart );
 
22
 
23
  } else {
24
+
25
+ $sql_table_user_meta_cart = "DELETE FROM `" . $wpdb->prefix . "usermeta` WHERE meta_key LIKE '%wcdn_%'";
26
+ require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
27
+ $wpdb->get_results( $sql_table_user_meta_cart );
 
28
  }
29
 
30
  wp_cache_flush();
woocommerce-delivery-notes.php CHANGED
@@ -5,7 +5,7 @@
5
  * Plugin Name: WooCommerce Print Invoice & Delivery Note
6
  * Plugin URI: https://www.tychesoftwares.com/
7
  * Description: Print Invoices & Delivery Notes for WooCommerce Orders.
8
- * Version: 4.4.2
9
  * Author: Tyche Softwares
10
  * Author URI: https://www.tychesoftwares.com/
11
  * License: GPLv3 or later
@@ -14,7 +14,7 @@
14
  * Domain Path: /languages
15
  * Requires PHP: 5.6
16
  * WC requires at least: 3.0.0
17
- * WC tested up to: 3.3.0
18
  *
19
  * Copyright 2015 Tyche Softwares
20
  *
@@ -36,6 +36,7 @@
36
  * along with WordPress. If not, see <http://www.gnu.org/licenses/>.
37
  */
38
 
 
39
  /**
40
  * Exit if accessed directly
41
  */
@@ -47,7 +48,12 @@ if ( !defined( 'ABSPATH' ) ) {
47
  * Base class
48
  */
49
  if ( !class_exists( 'WooCommerce_Delivery_Notes' ) ) {
50
-
 
 
 
 
 
51
  final class WooCommerce_Delivery_Notes {
52
 
53
  /**
@@ -58,7 +64,7 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes' ) ) {
58
  /**
59
  * Default properties
60
  */
61
- public static $plugin_version = '4.4.2';
62
  public static $plugin_url;
63
  public static $plugin_path;
64
  public static $plugin_basefile;
@@ -114,6 +120,7 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes' ) ) {
114
  public function init_hooks() {
115
  add_action( 'init', array( $this, 'localise' ) );
116
  add_action( 'woocommerce_init', array( $this, 'load' ) );
 
117
  }
118
 
119
  /**
@@ -145,8 +152,8 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes' ) ) {
145
  include_once( 'includes/class-wcdn-settings.php' );
146
  include_once( 'includes/class-wcdn-writepanel.php' );
147
  include_once( 'includes/class-wcdn-theme.php' );
148
- if ( is_admin() ) {
149
- include_once( 'includes/wcdn-welcome.php' );
150
  }
151
  }
152
 
@@ -193,12 +200,104 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes' ) ) {
193
  add_filter( 'plugin_action_links_' . self::$plugin_basefile, array( $this, 'add_settings_link') );
194
  add_action( 'admin_init', array( $this, 'update' ) );
195
  add_action( 'init', array( $this, 'include_template_functions' ) );
 
 
 
 
 
196
 
197
  // Send out the init action
198
  do_action( 'wcdn_init');
199
  }
200
  }
201
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
202
  /**
203
  * Install or update the default settings
204
  */
@@ -284,4 +383,4 @@ function WCDN() {
284
  */
285
  $GLOBALS['wcdn'] = WCDN();
286
 
287
- ?>
5
  * Plugin Name: WooCommerce Print Invoice & Delivery Note
6
  * Plugin URI: https://www.tychesoftwares.com/
7
  * Description: Print Invoices & Delivery Notes for WooCommerce Orders.
8
+ * Version: 4.4.8
9
  * Author: Tyche Softwares
10
  * Author URI: https://www.tychesoftwares.com/
11
  * License: GPLv3 or later
14
  * Domain Path: /languages
15
  * Requires PHP: 5.6
16
  * WC requires at least: 3.0.0
17
+ * WC tested up to: 3.5.7
18
  *
19
  * Copyright 2015 Tyche Softwares
20
  *
36
  * along with WordPress. If not, see <http://www.gnu.org/licenses/>.
37
  */
38
 
39
+
40
  /**
41
  * Exit if accessed directly
42
  */
48
  * Base class
49
  */
50
  if ( !class_exists( 'WooCommerce_Delivery_Notes' ) ) {
51
+ /**
52
+ * WooCommerce Delivery Notes
53
+ *
54
+ * @author Tyche Softwares
55
+ * @package WooCommerce-Delivery-Notes
56
+ */
57
  final class WooCommerce_Delivery_Notes {
58
 
59
  /**
64
  /**
65
  * Default properties
66
  */
67
+ public static $plugin_version = '4.4.8';
68
  public static $plugin_url;
69
  public static $plugin_path;
70
  public static $plugin_basefile;
120
  public function init_hooks() {
121
  add_action( 'init', array( $this, 'localise' ) );
122
  add_action( 'woocommerce_init', array( $this, 'load' ) );
123
+
124
  }
125
 
126
  /**
152
  include_once( 'includes/class-wcdn-settings.php' );
153
  include_once( 'includes/class-wcdn-writepanel.php' );
154
  include_once( 'includes/class-wcdn-theme.php' );
155
+ if ( true === is_admin() ) {
156
+ include_once( 'includes/wcdn-all-component.php' );
157
  }
158
  }
159
 
200
  add_filter( 'plugin_action_links_' . self::$plugin_basefile, array( $this, 'add_settings_link') );
201
  add_action( 'admin_init', array( $this, 'update' ) );
202
  add_action( 'init', array( $this, 'include_template_functions' ) );
203
+
204
+ add_filter( 'ts_deativate_plugin_questions', array( &$this, 'wcdn_deactivate_add_questions' ), 10, 1 );
205
+ add_filter( 'ts_tracker_data', array( &$this, 'wcdn_ts_add_plugin_tracking_data' ), 10, 1 );
206
+ add_filter( 'ts_tracker_opt_out_data', array( &$this, 'wcdn_get_data_for_opt_out' ), 10, 1 );
207
+
208
 
209
  // Send out the init action
210
  do_action( 'wcdn_init');
211
  }
212
  }
213
+
214
+ /**
215
+ * Plugin's data to be tracked when Allow option is choosed.
216
+ *
217
+ * @hook ts_tracker_data
218
+ *
219
+ * @param array $data Contains the data to be tracked.
220
+ *
221
+ * @return array Plugin's data to track.
222
+ *
223
+ */
224
+
225
+ public static function wcdn_ts_add_plugin_tracking_data ( $data ) {
226
+ if ( isset( $_GET[ 'wcdn_tracker_optin' ] ) && isset( $_GET[ 'wcdn_tracker_nonce' ] ) && wp_verify_nonce( $_GET[ 'wcdn_tracker_nonce' ], 'wcdn_tracker_optin' ) ) {
227
+
228
+ $plugin_data[ 'ts_meta_data_table_name' ] = 'ts_tracking_wcdn_meta_data';
229
+ $plugin_data[ 'ts_plugin_name' ] = 'WooCommerce Print Invoice & Delivery Note';
230
+
231
+ // Get all plugin options info
232
+ $plugin_data[ 'invoice_in_admin' ] = get_option( 'wcdn_template_type_invoice' );
233
+ $plugin_data[ 'delivery_in_admin' ] = get_option( 'wcdn_template_type_delivery-note' );
234
+ $plugin_data[ 'receipt_in_admin' ] = get_option('wcdn_template_type_receipt');
235
+ $plugin_data[ 'print_in_myaccount' ] = get_option('wcdn_print_button_on_my_account_page');
236
+ $plugin_data[ 'print_in_vieworder' ] = get_option('wcdn_print_button_on_my_account_page');
237
+ $plugin_data[ 'print_in_email' ] = get_option('wcdn_print_button_on_my_account_page');
238
+ $plugin_data[ 'wcdn_plugin_version' ] = self::$plugin_version;
239
+ $plugin_data[ 'wcdn_allow_tracking' ] = get_option ( 'wcdn_allow_tracking' );
240
+ $data[ 'plugin_data' ] = $plugin_data;
241
+ }
242
+ return $data;
243
+ }
244
+
245
+
246
+ /**
247
+ * Tracking data to send when No, thanks. button is clicked.
248
+ *
249
+ * @hook ts_tracker_opt_out_data
250
+ *
251
+ * @param array $params Parameters to pass for tracking data.
252
+ *
253
+ * @return array Data to track when opted out.
254
+ *
255
+ */
256
+ public static function wcdn_get_data_for_opt_out ( $params ) {
257
+ $plugin_data[ 'ts_meta_data_table_name'] = 'ts_tracking_wcdn_meta_data';
258
+ $plugin_data[ 'ts_plugin_name' ] = 'WooCommerce Print Invoice & Delivery Note';
259
+
260
+ // Store count info
261
+ $params[ 'plugin_data' ] = $plugin_data;
262
+
263
+ return $params;
264
+ }
265
+
266
+ /**
267
+ * It will add the question for the deactivate popup modal
268
+ * @return array $dfw_deactivate_questions All questions.
269
+ */
270
+ public static function wcdn_deactivate_add_questions ( $dfw_deactivate_questions ) {
271
+
272
+ $dfw_deactivate_questions = array(
273
+ 0 => array(
274
+ 'id' => 4,
275
+ 'text' => __( "I can't differentiate between Invoice, Delivery Notes & Receipt. The templates are the same. ", "woocommerce-delivery-notes" ),
276
+ 'input_type' => '',
277
+ 'input_placeholder' => ''
278
+ ),
279
+ 1 => array(
280
+ 'id' => 5,
281
+ 'text' => __( "The invoice sent through mail can't be downloaded as PDF directly.", "woocommerce-delivery-notes" ),
282
+ 'input_type' => '',
283
+ 'input_placeholder' => ''
284
+ ),
285
+ 2 => array(
286
+ 'id' => 6,
287
+ 'text' => __( "The plugin is not compatible with another plugin.", "woocommerce-delivery-notes" ),
288
+ 'input_type' => 'textfield',
289
+ 'input_placeholder' => 'Which plugin?'
290
+ ),
291
+ 3 => array(
292
+ 'id' => 7,
293
+ 'text' => __( "This plugin is not useful to me.", "woocommerce-delivery-notes" ),
294
+ 'input_type' => '',
295
+ 'input_placeholder' => ''
296
+ )
297
+
298
+ );
299
+ return $dfw_deactivate_questions;
300
+ }
301
  /**
302
  * Install or update the default settings
303
  */
383
  */
384
  $GLOBALS['wcdn'] = WCDN();
385
 
386
+ ?>