Version Description
(06.12.2022) = * Fix :- Logo was not showing on Android phone earlier. This is fixed now. * Fix :- Display labels for shipping and billing address * Fix :- Removed redundant "Refund" line. * Fix :- Compatibility with WooCommerce Product Addons plugin. All the fields from the plugin will be shown in the Invoice, Receipt & Delivery Note.
Download this release
Release Info
| Developer | tychesoftwares |
| Plugin | |
| Version | 4.7.0 |
| Comparing to | |
| See all releases | |
Code changes from version 4.6.5 to 4.7.0
- readme.md → README.md +0 -0
- includes/class-woocommerce-delivery-notes.php +1 -1
- includes/component/deactivate-survey-popup/class-ts-deactivation.php +230 -230
- includes/component/deactivate-survey-popup/template/ts-deactivate-modal.php +387 -387
- includes/wcdn-template-functions.php +25 -3
- languages/woocommerce-delivery-notes-el.po +796 -796
- languages/woocommerce-delivery-notes-ko_KR.po +744 -744
- readme.txt +8 -2
- templates/print-order/print-content.php +27 -4
- templates/print-order/style.css +2 -2
- woocommerce-delivery-notes-el.mo +0 -0
- woocommerce-delivery-notes-el.po +796 -0
- woocommerce-delivery-notes.php +1 -1
readme.md → README.md
RENAMED
|
File without changes
|
includes/class-woocommerce-delivery-notes.php
CHANGED
|
@@ -36,7 +36,7 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes' ) ) {
|
|
| 36 |
*
|
| 37 |
* @var string $plugin_version Current plugin version number
|
| 38 |
*/
|
| 39 |
-
public static $plugin_version = '4.
|
| 40 |
|
| 41 |
/**
|
| 42 |
* Plugin URL on current installation
|
| 36 |
*
|
| 37 |
* @var string $plugin_version Current plugin version number
|
| 38 |
*/
|
| 39 |
+
public static $plugin_version = '4.7.0';
|
| 40 |
|
| 41 |
/**
|
| 42 |
* Plugin URL on current installation
|
includes/component/deactivate-survey-popup/class-ts-deactivation.php
CHANGED
|
@@ -1,231 +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 |
}
|
| 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
CHANGED
|
@@ -1,387 +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>
|
| 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/wcdn-template-functions.php
CHANGED
|
@@ -200,12 +200,33 @@ function wcdn_company_logo() {
|
|
| 200 |
if ( $attachment_id ) {
|
| 201 |
$attachment_src = wp_get_attachment_image_src( $attachment_id, 'full', false );
|
| 202 |
|
| 203 |
-
|
| 204 |
?>
|
| 205 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 206 |
<?php
|
|
|
|
| 207 |
}
|
| 208 |
-
}
|
| 209 |
|
| 210 |
/**
|
| 211 |
* Return default title name of Delivery Note
|
|
@@ -516,6 +537,7 @@ function wcdn_remove_semicolon_from_totals( $total_rows, $order ) {
|
|
| 516 |
*/
|
| 517 |
function wcdn_remove_payment_method_from_totals( $total_rows, $order ) {
|
| 518 |
unset( $total_rows['payment_method'] );
|
|
|
|
| 519 |
return $total_rows;
|
| 520 |
}
|
| 521 |
|
| 200 |
if ( $attachment_id ) {
|
| 201 |
$attachment_src = wp_get_attachment_image_src( $attachment_id, 'full', false );
|
| 202 |
|
| 203 |
+
// resize the image to a 1/4 of the original size to have a printing point density of about 288ppi.
|
| 204 |
?>
|
| 205 |
+
<style>
|
| 206 |
+
/* hide mobile version by default */
|
| 207 |
+
.logo .mobile {
|
| 208 |
+
display: none;
|
| 209 |
+
}
|
| 210 |
+
/* when screen is less than 600px wide show mobile version and hide desktop */
|
| 211 |
+
@media ( max-width: 600px ) {
|
| 212 |
+
.logo .mobile {
|
| 213 |
+
display: block;
|
| 214 |
+
}
|
| 215 |
+
.logo .desktop {
|
| 216 |
+
display: none;
|
| 217 |
+
}
|
| 218 |
+
}
|
| 219 |
+
</style>
|
| 220 |
+
|
| 221 |
+
<div class="logo">
|
| 222 |
+
<img src="<?php echo esc_url( $attachment_src[0] ); ?>" class="desktop" width="<?php echo esc_attr( round( $attachment_src[1] / 4 ) ); ?>" height="<?php echo esc_attr( round( $attachment_src[2] / 4 ) ); ?>" alt="<?php echo esc_attr( $company ); ?>" />
|
| 223 |
+
<img src="<?php echo esc_url( $attachment_src[0] ); ?>" class="mobile" width="<?php echo esc_attr( round( $attachment_src[1] / 4 ) ); ?>" height="<?php echo esc_attr( round( $attachment_src[2] / 4 ) ); ?>" alt="<?php echo esc_attr( $company ); ?>" />
|
| 224 |
+
</div>
|
| 225 |
+
|
| 226 |
<?php
|
| 227 |
+
|
| 228 |
}
|
| 229 |
+
}
|
| 230 |
|
| 231 |
/**
|
| 232 |
* Return default title name of Delivery Note
|
| 537 |
*/
|
| 538 |
function wcdn_remove_payment_method_from_totals( $total_rows, $order ) {
|
| 539 |
unset( $total_rows['payment_method'] );
|
| 540 |
+
unset( $total_rows['refund_0'] );
|
| 541 |
return $total_rows;
|
| 542 |
}
|
| 543 |
|
languages/woocommerce-delivery-notes-el.po
CHANGED
|
@@ -1,796 +1,796 @@
|
|
| 1 |
-
# Copyright (C) 2018
|
| 2 |
-
# This file is distributed under the same license as the package.
|
| 3 |
-
msgid ""
|
| 4 |
-
msgstr ""
|
| 5 |
-
"Project-Id-Version: Print Invoice & Delivery Notes for WooCommerce\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: 2020-05-22 10:14+0000\n"
|
| 13 |
-
"Last-Translator: \n"
|
| 14 |
-
"Language-Team: Ελληνικά\n"
|
| 15 |
-
"Language: el\n"
|
| 16 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
| 17 |
-
"X-Generator: Loco https://localise.biz/\n"
|
| 18 |
-
"X-Loco-Version: 2.3.4; wp-5.4.1"
|
| 19 |
-
|
| 20 |
-
#: includes/class-wcdn-print.php:39 includes/class-wcdn-settings.php:237
|
| 21 |
-
msgid "Invoice"
|
| 22 |
-
msgstr "Τιμολόγιο"
|
| 23 |
-
|
| 24 |
-
#: includes/class-wcdn-print.php:40
|
| 25 |
-
msgid "Invoices"
|
| 26 |
-
msgstr "Τιμολόγια"
|
| 27 |
-
|
| 28 |
-
#: includes/class-wcdn-print.php:41
|
| 29 |
-
msgid "Print Invoice"
|
| 30 |
-
msgstr "Εκτύπωση Τιμολογίου"
|
| 31 |
-
|
| 32 |
-
#: includes/class-wcdn-print.php:42
|
| 33 |
-
msgid "Print Invoices"
|
| 34 |
-
msgstr "Εκτύπωση Τιμολογίων"
|
| 35 |
-
|
| 36 |
-
#: includes/class-wcdn-print.php:43
|
| 37 |
-
msgid "Invoice created."
|
| 38 |
-
msgstr "Το Τιμολόγιο Δημιουργήθηκε"
|
| 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 "Δελτίο παράδοσης"
|
| 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 "Εκτύπωση Δελτίου Αποστολής"
|
| 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 "Παραγγελία"
|
| 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 "Εκτύπωση Παραγγελίας"
|
| 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 |
-
"αυτής της διαδικασίας."
|
| 131 |
-
|
| 132 |
-
#: includes/class-wcdn-settings.php:75 includes/class-wcdn-theme.php:57
|
| 133 |
-
#: includes/class-wcdn-theme.php:94 includes/wcdn-template-functions.php:130
|
| 134 |
-
msgid "Print"
|
| 135 |
-
msgstr "Εκτύπωση"
|
| 136 |
-
|
| 137 |
-
#: includes/class-wcdn-settings.php:106
|
| 138 |
-
msgid "Template"
|
| 139 |
-
msgstr "Πρότυπο"
|
| 140 |
-
|
| 141 |
-
#: includes/class-wcdn-settings.php:113
|
| 142 |
-
msgid "Style"
|
| 143 |
-
msgstr "Στύλ"
|
| 144 |
-
|
| 145 |
-
#: includes/class-wcdn-settings.php:114
|
| 146 |
-
msgid ""
|
| 147 |
-
"The default print style. Read the <a href=\"%1$s\">FAQ</a> to learn how to "
|
| 148 |
-
"customize it."
|
| 149 |
-
msgstr ""
|
| 150 |
-
"Το προεπιλεγμένο στυλ εκτύπωσης. Διαβάστε τις <a href=\"%1$s\"> Συνήθεις "
|
| 151 |
-
"ερωτήσεις </a> για να μάθετε πώς να το προσαρμόσετε."
|
| 152 |
-
|
| 153 |
-
#: includes/class-wcdn-settings.php:124
|
| 154 |
-
msgid "Shop Logo"
|
| 155 |
-
msgstr "Λογότυπο Καταστήματος "
|
| 156 |
-
|
| 157 |
-
#: includes/class-wcdn-settings.php:130
|
| 158 |
-
msgid ""
|
| 159 |
-
"A shop logo representing your business. When the image is printed, its pixel "
|
| 160 |
-
"density will automatically be eight times higher than the original. This "
|
| 161 |
-
"means, 1 printed inch will correspond to about 288 pixels on the screen."
|
| 162 |
-
msgstr ""
|
| 163 |
-
"Το λογότυπο καταστήματος που αντιπροσωπεύει την επιχείρησή σας. Όταν "
|
| 164 |
-
"εκτυπώνεται η εικόνα, η πυκνότητα των εικονοστοιχείων της θα είναι αυτόματα "
|
| 165 |
-
"οκτώ φορές υψηλότερη από την αρχική. Αυτό σημαίνει, 1 τυπωμένη ίντσα θα "
|
| 166 |
-
"αντιστοιχεί σε περίπου 288 pixel στην οθόνη."
|
| 167 |
-
|
| 168 |
-
#: includes/class-wcdn-settings.php:134
|
| 169 |
-
msgid "Shop Name"
|
| 170 |
-
msgstr "Όνομα Καταστήματος"
|
| 171 |
-
|
| 172 |
-
#: includes/class-wcdn-settings.php:140
|
| 173 |
-
msgid ""
|
| 174 |
-
"The shop name. Leave blank to use the default Website or Blog title defined "
|
| 175 |
-
"in WordPress settings. The name will be ignored when a Logo is set."
|
| 176 |
-
msgstr ""
|
| 177 |
-
"Το όνομα του καταστήματος. Αφήστε κενό για να χρησιμοποιήσετε τον "
|
| 178 |
-
"προεπιλεγμένο ιστότοπο ή τον τίτλο ιστολογίου που ορίζεται στις ρυθμίσεις "
|
| 179 |
-
"του WordPress. Το όνομα θα αγνοηθεί όταν έχει οριστεί ένα λογότυπο."
|
| 180 |
-
|
| 181 |
-
#: includes/class-wcdn-settings.php:144
|
| 182 |
-
msgid "Shop Address"
|
| 183 |
-
msgstr "Διεύθυνση καταστήματος"
|
| 184 |
-
|
| 185 |
-
#: includes/class-wcdn-settings.php:145
|
| 186 |
-
msgid "The postal address of the shop or even e-mail or telephone."
|
| 187 |
-
msgstr ""
|
| 188 |
-
"Η ταχυδρομική διεύθυνση του καταστήματος ή ακόμα και e-mail ή τηλέφωνο."
|
| 189 |
-
|
| 190 |
-
#: includes/class-wcdn-settings.php:154
|
| 191 |
-
msgid "Complimentary Close"
|
| 192 |
-
msgstr "Ευχαριστήριο Mήνυμα"
|
| 193 |
-
|
| 194 |
-
#: includes/class-wcdn-settings.php:155
|
| 195 |
-
msgid "Add a personal close, notes or season greetings."
|
| 196 |
-
msgstr ""
|
| 197 |
-
"Προσθέστε ένα προσωπικό μήνυμα κλείσιματος, σημειώσεις ή χαιρετισμούς σεζόν."
|
| 198 |
-
|
| 199 |
-
#: includes/class-wcdn-settings.php:164
|
| 200 |
-
msgid "Policies"
|
| 201 |
-
msgstr "Πολιτικές"
|
| 202 |
-
|
| 203 |
-
#: includes/class-wcdn-settings.php:165
|
| 204 |
-
msgid "Add the shop policies, conditions, etc."
|
| 205 |
-
msgstr "Προσθέστε τις πολιτικές καταστήματος, τους όρους κ.λπ."
|
| 206 |
-
|
| 207 |
-
#: includes/class-wcdn-settings.php:174
|
| 208 |
-
msgid "Footer"
|
| 209 |
-
msgstr "Υποσέλιδο"
|
| 210 |
-
|
| 211 |
-
#: includes/class-wcdn-settings.php:175
|
| 212 |
-
msgid ""
|
| 213 |
-
"Add a footer imprint, instructions, copyright notes, e-mail, telephone, etc."
|
| 214 |
-
msgstr ""
|
| 215 |
-
"Προσθέστε ένα αποτύπωμα στο υποσέλιδο , οδηγίες, σημειώσεις πνευματικών "
|
| 216 |
-
"δικαιωμάτων, e-mail, τηλέφωνο κ.λπ."
|
| 217 |
-
|
| 218 |
-
#: includes/class-wcdn-settings.php:189
|
| 219 |
-
msgid "Pages & Buttons"
|
| 220 |
-
msgstr "Σελίδες & Κουμπία"
|
| 221 |
-
|
| 222 |
-
#: includes/class-wcdn-settings.php:196
|
| 223 |
-
msgid "Print Page Endpoint"
|
| 224 |
-
msgstr "Εκτύπωση Σελίδας Τελικού Σημείου"
|
| 225 |
-
|
| 226 |
-
#: includes/class-wcdn-settings.php:202
|
| 227 |
-
msgid ""
|
| 228 |
-
"The endpoint is appended to the accounts page URL to print the order. It "
|
| 229 |
-
"should be unique."
|
| 230 |
-
msgstr ""
|
| 231 |
-
"Το τελικό σημείο προσαρτάται στη διεύθυνση URL της σελίδας λογαριασμών για "
|
| 232 |
-
"την εκτύπωση της παραγγελίας. Θα πρέπει να είναι μοναδικό."
|
| 233 |
-
|
| 234 |
-
#: includes/class-wcdn-settings.php:206
|
| 235 |
-
#: includes/wcdn-template-functions.php:275
|
| 236 |
-
msgid "Email"
|
| 237 |
-
msgstr "Email"
|
| 238 |
-
|
| 239 |
-
#: includes/class-wcdn-settings.php:207
|
| 240 |
-
msgid "Show print link in customer emails"
|
| 241 |
-
msgstr "Εμφάνιση συνδέσμου εκτύπωσης στο email του πελάτη"
|
| 242 |
-
|
| 243 |
-
#: includes/class-wcdn-settings.php:211
|
| 244 |
-
msgid ""
|
| 245 |
-
"This includes the emails for a new, processing and completed order. On top "
|
| 246 |
-
"of that the customer invoice email also includes the link."
|
| 247 |
-
msgstr ""
|
| 248 |
-
"Αυτό περιλαμβάνει τα μηνύματα ηλεκτρονικού ταχυδρομείου για μια νέα, "
|
| 249 |
-
"επεξεργασμένη και ολοκληρωμένη παραγγελία. Επιπλέον, το email τιμολογίου "
|
| 250 |
-
"πελάτη περιλαμβάνει επίσης τον σύνδεσμο."
|
| 251 |
-
|
| 252 |
-
#: includes/class-wcdn-settings.php:215
|
| 253 |
-
msgid "My Account"
|
| 254 |
-
msgstr "Ο Λογαριασμός μου"
|
| 255 |
-
|
| 256 |
-
#: includes/class-wcdn-settings.php:216
|
| 257 |
-
msgid "Show print button on the \"View Order\" page"
|
| 258 |
-
msgstr "Εμφάνιση κουμπιόυ εκτύπωσης στην σελίδα \"Προβολή παραγγελίας\""
|
| 259 |
-
|
| 260 |
-
#: includes/class-wcdn-settings.php:224
|
| 261 |
-
msgid "Show print buttons on the \"My Account\" page"
|
| 262 |
-
msgstr "Εμφάνιση κουμπιόυ εκτύπωσης στην σελίδα \"Ο Λογαριασμός μου\""
|
| 263 |
-
|
| 264 |
-
#: includes/class-wcdn-settings.php:244
|
| 265 |
-
msgid "Numbering"
|
| 266 |
-
msgstr "Αρίθμηση"
|
| 267 |
-
|
| 268 |
-
#: includes/class-wcdn-settings.php:245
|
| 269 |
-
msgid "Create invoice numbers"
|
| 270 |
-
msgstr "Δημιουργήστε αριθμό τιμολογίων"
|
| 271 |
-
|
| 272 |
-
#: includes/class-wcdn-settings.php:253
|
| 273 |
-
msgid "Next Number"
|
| 274 |
-
msgstr "Επόμενος αριθμός"
|
| 275 |
-
|
| 276 |
-
#: includes/class-wcdn-settings.php:260
|
| 277 |
-
msgid "The next invoice number."
|
| 278 |
-
msgstr "Ο επόμενος αριθμός τιμολογίου."
|
| 279 |
-
|
| 280 |
-
#: includes/class-wcdn-settings.php:264
|
| 281 |
-
msgid "Number Prefix"
|
| 282 |
-
msgstr "Πρόθεμα αριθμού"
|
| 283 |
-
|
| 284 |
-
#: includes/class-wcdn-settings.php:271
|
| 285 |
-
msgid "This text will be prepended to the invoice number."
|
| 286 |
-
msgstr "Αυτό το κείμενο θα προστεθεί στον αριθμό τιμολογίου."
|
| 287 |
-
|
| 288 |
-
#: includes/class-wcdn-settings.php:275
|
| 289 |
-
msgid "Number Suffix"
|
| 290 |
-
msgstr "Επίθημα αριθμού"
|
| 291 |
-
|
| 292 |
-
#: includes/class-wcdn-settings.php:282
|
| 293 |
-
msgid "This text will be appended to the invoice number."
|
| 294 |
-
msgstr "Αυτό το κείμενο θα προσαρτηθεί στον αριθμό τιμολογίου."
|
| 295 |
-
|
| 296 |
-
#: includes/class-wcdn-settings.php:327
|
| 297 |
-
msgid "Admin"
|
| 298 |
-
msgstr "Διαχειριστής"
|
| 299 |
-
|
| 300 |
-
#: includes/class-wcdn-settings.php:330
|
| 301 |
-
msgid ""
|
| 302 |
-
"The print buttons are available on the order listing and on the order detail "
|
| 303 |
-
"screen."
|
| 304 |
-
msgstr ""
|
| 305 |
-
"Τα κουμπιά εκτύπωσης είναι διαθέσιμα στην λίστα παραγγελιών και στην οθόνη "
|
| 306 |
-
"λεπτομερειών παραγγελίας."
|
| 307 |
-
|
| 308 |
-
#: includes/class-wcdn-settings.php:372
|
| 309 |
-
msgid ""
|
| 310 |
-
"This section lets you customise the content. You can preview the <a "
|
| 311 |
-
"href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" "
|
| 312 |
-
"target=\"%4$s\" class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" "
|
| 313 |
-
"target=\"%4$s\" class=\"%5$s\">receipt</a> template."
|
| 314 |
-
msgstr ""
|
| 315 |
-
"Αυτή η ενότητα σάς επιτρέπει να προσαρμόσετε το περιεχόμενο. Μπορείτε να "
|
| 316 |
-
"κάνετε προεπισκόπηση των προτύπων <a href=\"%1$s\" target=\"%4$s\" "
|
| 317 |
-
"class=\"%5$s\"> τιμολογίο</a>, <a href = \"% 2 $ s\" target = \" % 4 $ s "
|
| 318 |
-
"\"class =\"% 5 $ s \"> δελτίο παράδοσης </a> ή <a href=\"%3$s\" "
|
| 319 |
-
"target=\"%4$s\" class=\"%5$s\"> απόδειξη < / a>."
|
| 320 |
-
|
| 321 |
-
#: includes/class-wcdn-settings.php:435
|
| 322 |
-
msgid "Select"
|
| 323 |
-
msgstr "Επιλογή"
|
| 324 |
-
|
| 325 |
-
#: includes/class-wcdn-settings.php:439
|
| 326 |
-
msgid "Remove"
|
| 327 |
-
msgstr "Αφαίρεση"
|
| 328 |
-
|
| 329 |
-
#: includes/class-wcdn-theme.php:112
|
| 330 |
-
msgid "Print your order"
|
| 331 |
-
msgstr "Εκτυπώστε την παραγγελια σας"
|
| 332 |
-
|
| 333 |
-
#: includes/class-wcdn-theme.php:119
|
| 334 |
-
msgid "Print:"
|
| 335 |
-
msgstr "Εκτύπωση :"
|
| 336 |
-
|
| 337 |
-
#: includes/class-wcdn-theme.php:119
|
| 338 |
-
msgid "Open print view in browser"
|
| 339 |
-
msgstr "Ανοίξτε την προβολή εκτύπωσης στο πρόγραμμα περιήγησης"
|
| 340 |
-
|
| 341 |
-
#: includes/class-wcdn-writepanel.php:218
|
| 342 |
-
msgid "Print now"
|
| 343 |
-
msgstr "Εκτώπωση Τώρα"
|
| 344 |
-
|
| 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 |
-
"μελλοντικούς χρήστες..."
|
| 398 |
-
|
| 399 |
-
#: includes/component/deactivate-survey-popup/class-ts-deactivation.php:88
|
| 400 |
-
msgid "The plugin is great, but I need specific feature that you don't support"
|
| 401 |
-
msgstr ""
|
| 402 |
-
"Το πρόσθετο είναι εξαιρετικό , αλλά χρειάζομαι συγκεκριμένη δυνατότητα που "
|
| 403 |
-
"δεν υποστηρίζετε"
|
| 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 "Συχνές Ερωτήσεις για% s"
|
| 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 |
-
"εμφανίσει ξανά το μήνυμα και δεν θα σταθεί κανένα δεδομένο"
|
| 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 "Ακολουθήστε το% s"
|
| 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 |
-
"WooCommerce Print Invoice & Delivery Note! Εάν είστε για πρώτη φορά χρήστης ,"
|
| 468 |
-
" καλώς ήλθατε! Είστε έτοιμοι να εξερευνήσετε τη λειτουργικότητα εκτύπωσης "
|
| 469 |
-
"για τις παραγγελίες σας στο WooCommerce."
|
| 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 "Ξεκινήστε με το WooCommerce Print Invoice & Delivery Note"
|
| 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 "WooCommerce Print Invoice & Delivery Note"
|
| 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 |
-
"σημειώσεις παράδοσης και τις αποδείξεις, απλώς πρέπει να το ρυθμίσετε στην "
|
| 499 |
-
"ενότητα WooCommerce -> Ρυθμίσεις -> Εκτύπωση σελίδας. Εδώ μπορείτε επίσης να "
|
| 500 |
-
"ρυθμίσετε το Εταιρικό Λογότυπο που θα εμφανίζεται στα έντυπα αντικείμενα, "
|
| 501 |
-
"Διεύθυνση Εταιρείας και άλλες πληροφορίες."
|
| 502 |
-
|
| 503 |
-
#: includes/component/welcome-page/templates/welcome/welcome-page.php:41
|
| 504 |
-
#: includes/wcdn-welcome.php:121
|
| 505 |
-
msgid "Click Here to go to Print page"
|
| 506 |
-
msgstr "Κάντε Κλικ Εδώ για να Μεταβείτε στη Σελίδα Εκτύπωση"
|
| 507 |
-
|
| 508 |
-
#: includes/component/welcome-page/templates/welcome/welcome-page.php:52
|
| 509 |
-
#: includes/wcdn-welcome.php:132
|
| 510 |
-
msgid "Enable Print button for Customers."
|
| 511 |
-
msgstr "Ενεργοποίηση κουμπιού εκτύπωσης για τους πελάτες."
|
| 512 |
-
|
| 513 |
-
#: includes/component/welcome-page/templates/welcome/welcome-page.php:54
|
| 514 |
-
#: includes/wcdn-welcome.php:134
|
| 515 |
-
msgid ""
|
| 516 |
-
"Allow customers to print the WooCommerce order invoice from the customer "
|
| 517 |
-
"notification email, from the My Account page or from the View Order page "
|
| 518 |
-
"under My Account."
|
| 519 |
-
msgstr ""
|
| 520 |
-
"Να επιτρέπεται στους πελάτες να εκτυπώνουν το τιμολόγιο παραγγελίας "
|
| 521 |
-
"WooCommerce από το email ειδοποίησης πελάτη, από τη σελίδα Ο λογαριασμός μου "
|
| 522 |
-
"ή από τη σελίδα Προβολή παραγγελίας στην ενότητα Ο λογαριασμός μου."
|
| 523 |
-
|
| 524 |
-
#: includes/component/welcome-page/templates/welcome/welcome-page.php:56
|
| 525 |
-
#: includes/wcdn-welcome.php:136
|
| 526 |
-
msgid "Click Here to Enable Print button for Customers"
|
| 527 |
-
msgstr ""
|
| 528 |
-
"Κάντε Kλικ Eδώ για να Eνεργοποιήσετε το Kουμπί Eκτύπωσης για τους Πελάτες"
|
| 529 |
-
|
| 530 |
-
#: includes/component/welcome-page/templates/welcome/welcome-page.php:72
|
| 531 |
-
#: includes/wcdn-welcome.php:152
|
| 532 |
-
msgid "Enable Invoice Numbering"
|
| 533 |
-
msgstr "Ενεργοποίηση αρίθμησης τιμολογίων"
|
| 534 |
-
|
| 535 |
-
#: includes/component/welcome-page/templates/welcome/welcome-page.php:74
|
| 536 |
-
msgid ""
|
| 537 |
-
"If you want to change the default invoice numbers & set some numbering "
|
| 538 |
-
"scheme of your own, then you can set it here with a starting invoice number, "
|
| 539 |
-
"a prefix & suffix. For example, you could set it as: TS/001/17-18."
|
| 540 |
-
msgstr ""
|
| 541 |
-
"Αν θέλετε να αλλάξετε τους προεπιλεγμένους αριθμούς τιμολογίου & να ορίσετε "
|
| 542 |
-
"κάποιο δικό σας πρότυπο αρίθμησης, τότε μπορείτε να το ορίσετε εδώ με έναν "
|
| 543 |
-
"αρχικό αριθμό τιμολογίου, ένα πρόθεμα και ένα επίθημα. Για παράδειγμα, θα "
|
| 544 |
-
"μπορούσατε να το ορίσετε ως: TS / 001 / 17-18"
|
| 545 |
-
|
| 546 |
-
#: includes/component/welcome-page/templates/welcome/welcome-page.php:76
|
| 547 |
-
#: includes/wcdn-welcome.php:156
|
| 548 |
-
msgid "Click Here to Enable Invoice Numbering"
|
| 549 |
-
msgstr "Κάντε Kλικ Eδώ για να Eνεργοποιήσετε την Aρίθμηση Tιμολογίων"
|
| 550 |
-
|
| 551 |
-
#: includes/component/welcome-page/templates/welcome/welcome-page.php:87
|
| 552 |
-
#: includes/wcdn-welcome.php:167
|
| 553 |
-
msgid "Getting to Know Tyche Softwares"
|
| 554 |
-
msgstr "Γνωρίστε τα λογισμικά Tyche"
|
| 555 |
-
|
| 556 |
-
#: includes/component/welcome-page/templates/welcome/welcome-page.php:90
|
| 557 |
-
#: includes/wcdn-welcome.php:170
|
| 558 |
-
msgid "Visit the Tyche Softwares Website"
|
| 559 |
-
msgstr "Επισκευθείτε την ιστοσελίδα Tyche Softwares"
|
| 560 |
-
|
| 561 |
-
#: includes/component/welcome-page/templates/welcome/welcome-page.php:91
|
| 562 |
-
#: includes/wcdn-welcome.php:171
|
| 563 |
-
msgid "View all Premium Plugins"
|
| 564 |
-
msgstr "Εμφάνιση όλων των Premium Προσθέτων"
|
| 565 |
-
|
| 566 |
-
#: includes/component/welcome-page/templates/welcome/welcome-page.php:100
|
| 567 |
-
#: includes/wcdn-welcome.php:180
|
| 568 |
-
msgid "Meet the team"
|
| 569 |
-
msgstr "Γνωρίστε την ομάδα"
|
| 570 |
-
|
| 571 |
-
#: includes/component/welcome-page/ts-welcome.php:167
|
| 572 |
-
msgid "Welcome to %s %s"
|
| 573 |
-
msgstr "Καλώς ορίσατε στο% s% s"
|
| 574 |
-
|
| 575 |
-
#: includes/wcdn-all-component.php:118
|
| 576 |
-
msgid ""
|
| 577 |
-
"Thank you for using WooCommerce Print Invoice & Delivery Note plugin! Now "
|
| 578 |
-
"make your deliveries more accurate by allowing customers to select their "
|
| 579 |
-
"preferred delivery date & time from Product Delivery Date Pro for "
|
| 580 |
-
"WooCommerce. <strong><a target=\"_blank\" href= \"https://www.tychesoftwares."
|
| 581 |
-
"com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/?"
|
| 582 |
-
"utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">Get "
|
| 583 |
-
"it now!</a></strong>"
|
| 584 |
-
msgstr ""
|
| 585 |
-
"Σας ευχαριστούμε που χρησιμοποιείτε το πρόσθετο WooCommerce Print Invoice & "
|
| 586 |
-
"Delivery Note! Τώρα κάντε τις παραδόσεις σας πιο ακριβείς επιτρέποντας στους "
|
| 587 |
-
"πελάτες να επιλέξουν την προτιμώμενη ημερομηνία και ώρα παράδοσης από το "
|
| 588 |
-
"Product Delivery Date Pro για το WooCommerce.<strong><a target=\"_blank\" "
|
| 589 |
-
"href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
|
| 590 |
-
"delivery-date-pro-for-woocommerce/?"
|
| 591 |
-
"utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">"
|
| 592 |
-
"Αποκτήστε το τώρα!</a></strong>"
|
| 593 |
-
|
| 594 |
-
#: includes/wcdn-all-component.php:120
|
| 595 |
-
msgid ""
|
| 596 |
-
"Never login to your admin to check your deliveries by syncing the delivery "
|
| 597 |
-
"dates to the Google Calendar from Product Delivery Date Pro for WooCommerce. "
|
| 598 |
-
"<strong><a target=\"_blank\" href= \"https://www.tychesoftwares."
|
| 599 |
-
"com/store/premium-plugins/product-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 |
-
">Get it now!</a></strong>"
|
| 602 |
-
msgstr ""
|
| 603 |
-
"Χώρις να χρειάζεται να συνδεθείτε στον λογαριασμο διαχείρηστη σας ελέγξτε "
|
| 604 |
-
"τις παραδόσεις σας συγχρονίζοντας τις ημερομηνίες παράδοσης στο Ημερολόγιο "
|
| 605 |
-
"Google από το Product Delivery Date Pro για το WooCommerce.<strong><a "
|
| 606 |
-
"target=\"_blank\" href= \"https://www.tychesoftwares.com/store/premium-"
|
| 607 |
-
"plugins/product-delivery-date-pro-for-woocommerce/checkout?"
|
| 608 |
-
"edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\""
|
| 609 |
-
">Αποκτήστε το τώρα!</a></strong>"
|
| 610 |
-
|
| 611 |
-
#: includes/wcdn-all-component.php:122
|
| 612 |
-
msgid ""
|
| 613 |
-
"You can now view all your deliveries in list view or in calendar view from "
|
| 614 |
-
"Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
|
| 615 |
-
"href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
|
| 616 |
-
"delivery-date-pro-for-woocommerce/checkout?"
|
| 617 |
-
"edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\""
|
| 618 |
-
">Get it now!</a></strong>."
|
| 619 |
-
msgstr ""
|
| 620 |
-
"Τώρα μπορείτε να δείτε όλες τις παραδόσεις σας σε προβολή λίστας ή σε "
|
| 621 |
-
"προβολή ημερολογίου από το Product Delivery Date Pro για το WooCommerce. "
|
| 622 |
-
"<strong><a target=\"_blank\" href= \"https://www.tychesoftwares."
|
| 623 |
-
"com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/checkout?"
|
| 624 |
-
"edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\""
|
| 625 |
-
"> Αποκτήστε το τώρα! </a> </strong>."
|
| 626 |
-
|
| 627 |
-
#: includes/wcdn-all-component.php:124
|
| 628 |
-
msgid ""
|
| 629 |
-
"Allow your customers to pay extra for delivery for certain Weekdays/Dates "
|
| 630 |
-
"from Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
|
| 631 |
-
"href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
|
| 632 |
-
"delivery-date-pro-for-woocommerce/checkout?"
|
| 633 |
-
"edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\""
|
| 634 |
-
">Have it now!</a></strong>."
|
| 635 |
-
msgstr ""
|
| 636 |
-
"Επιτρέψτε στους πελάτες σας να πληρώνουν επιπλέον για παράδοση για "
|
| 637 |
-
"συγκεκριμένες ημερομηνίες/καθημερινές από το Product Delivery Date Pro για "
|
| 638 |
-
"το WooCommerce.<strong><a target=\"_blank\" href= \"https://www."
|
| 639 |
-
"tychesoftwares.com/store/premium-plugins/product-delivery-date-pro-for-"
|
| 640 |
-
"woocommerce/checkout?"
|
| 641 |
-
"edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\""
|
| 642 |
-
">Αποκτήστε το τώρα!</a></strong>."
|
| 643 |
-
|
| 644 |
-
#: includes/wcdn-all-component.php:126
|
| 645 |
-
msgid ""
|
| 646 |
-
"Customers can now edit the Delivery date & time on cart and checkout page or "
|
| 647 |
-
"they can reschedule the deliveries for the already placed orders from "
|
| 648 |
-
"Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
|
| 649 |
-
"href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
|
| 650 |
-
"delivery-date-pro-for-woocommerce/checkout?"
|
| 651 |
-
"edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\""
|
| 652 |
-
">Have it now!</a></strong>."
|
| 653 |
-
msgstr ""
|
| 654 |
-
"Οι πελάτες σας πλέον μπορούν να επεξεργαστούν την ημερομηνία και ώρα "
|
| 655 |
-
"παράδοσης στο καλάθι και στη σελίδα ολοκλήρωσης αγοράς ή μπορούν να "
|
| 656 |
-
"επαναπρογραμματίσουν τις παραδόσεις για τις παραγγελίες που έχουν ήδη "
|
| 657 |
-
"τοποθετηθεί από το Product Delivery Date Pro για το WooCommerce."
|
| 658 |
-
|
| 659 |
-
#: includes/wcdn-template-functions.php:246
|
| 660 |
-
msgid "Invoice Number"
|
| 661 |
-
msgstr "Αριθμός Τιμολογίου"
|
| 662 |
-
|
| 663 |
-
#: includes/wcdn-template-functions.php:253
|
| 664 |
-
msgid "Invoice Date"
|
| 665 |
-
msgstr "Ημερομηνία Τιμολογίου"
|
| 666 |
-
|
| 667 |
-
#: includes/wcdn-template-functions.php:259
|
| 668 |
-
msgid "Order Number"
|
| 669 |
-
msgstr "Αρ. Παραγγελίας"
|
| 670 |
-
|
| 671 |
-
#: includes/wcdn-template-functions.php:264
|
| 672 |
-
msgid "Order Date"
|
| 673 |
-
msgstr "Ημερομηνία Παραγγελίας"
|
| 674 |
-
|
| 675 |
-
#: includes/wcdn-template-functions.php:269
|
| 676 |
-
msgid "Payment Method"
|
| 677 |
-
msgstr "Μέθοδος Πληρωμής"
|
| 678 |
-
|
| 679 |
-
#: includes/wcdn-template-functions.php:282
|
| 680 |
-
msgid "Telephone"
|
| 681 |
-
msgstr "Τηλέφωνο"
|
| 682 |
-
|
| 683 |
-
#: includes/wcdn-template-functions.php:315
|
| 684 |
-
msgid "SKU:"
|
| 685 |
-
msgstr "SKU:"
|
| 686 |
-
|
| 687 |
-
#: includes/wcdn-template-functions.php:409
|
| 688 |
-
#: includes/wcdn-template-functions.php:413
|
| 689 |
-
msgid "(Includes %s)"
|
| 690 |
-
msgstr "(Includes %s)"
|
| 691 |
-
|
| 692 |
-
#: includes/wcdn-template-functions.php:429
|
| 693 |
-
msgid "Refund"
|
| 694 |
-
msgstr "Επιστροφή χρημάτων"
|
| 695 |
-
|
| 696 |
-
#: includes/wcdn-template-functions.php:441
|
| 697 |
-
msgid "Order Subtotal"
|
| 698 |
-
msgstr "Υποσύνολο Παραγγελίας"
|
| 699 |
-
|
| 700 |
-
#: includes/wcdn-welcome.php:54
|
| 701 |
-
msgid "Welcome to WooCommerce Print Invoice & Delivery Note %s"
|
| 702 |
-
msgstr "Καλώς ήλθατε στο WooCommerce Print Invoice & Delivery Note %s"
|
| 703 |
-
|
| 704 |
-
#: includes/wcdn-welcome.php:55
|
| 705 |
-
msgid "Welcome to WooCommerce Print Invoice & Delivery Note"
|
| 706 |
-
msgstr "Καλώς ήλθατε στο WooCommerce Print Invoice & Delivery Note"
|
| 707 |
-
|
| 708 |
-
#: includes/wcdn-welcome.php:154
|
| 709 |
-
msgid ""
|
| 710 |
-
"f you want to change the default invoice numbers & set some numbering scheme "
|
| 711 |
-
"of your own, then you can set it here with a starting invoice number, a "
|
| 712 |
-
"prefix & suffix. For example, you could set it as: TS/001/17-18."
|
| 713 |
-
msgstr ""
|
| 714 |
-
"Εάν θέλετε να αλλάξετε τους προεπιλεγμένους αριθμούς τιμολογίου και να "
|
| 715 |
-
"ορίσετε κάποιο δικό σας πρότυπο αρίθμησης, τότε μπορείτε να το ορίσετε εδώ "
|
| 716 |
-
"με έναν αρχικό αριθμό τιμολογίου, ένα πρόθεμα και ένα επίθημα. Για "
|
| 717 |
-
"παράδειγμα, θα μπορούσατε να το ορίσετε ως: TS / 001 / 17-18."
|
| 718 |
-
|
| 719 |
-
#: includes/wcdn-welcome.php:186
|
| 720 |
-
msgid "Current Offers"
|
| 721 |
-
msgstr "Τρέχουσες προσφορές"
|
| 722 |
-
|
| 723 |
-
#: templates/print-order/print-content.php:28
|
| 724 |
-
msgid "Billing Address"
|
| 725 |
-
msgstr "Διεύθυνση Χρέωσης"
|
| 726 |
-
|
| 727 |
-
#: templates/print-order/print-content.php:31
|
| 728 |
-
#: templates/print-order/print-content.php:40
|
| 729 |
-
msgid "N/A"
|
| 730 |
-
msgstr "Χ/Α"
|
| 731 |
-
|
| 732 |
-
#: templates/print-order/print-content.php:37
|
| 733 |
-
msgid "Shipping Address"
|
| 734 |
-
msgstr "Διεύθυνση αποστολής"
|
| 735 |
-
|
| 736 |
-
#: templates/print-order/print-content.php:71
|
| 737 |
-
msgid "Product"
|
| 738 |
-
msgstr "Προϊον"
|
| 739 |
-
|
| 740 |
-
#: templates/print-order/print-content.php:72
|
| 741 |
-
msgid "Price"
|
| 742 |
-
msgstr "Τιμή"
|
| 743 |
-
|
| 744 |
-
#: templates/print-order/print-content.php:73
|
| 745 |
-
msgid "Quantity"
|
| 746 |
-
msgstr "Ποσότητα"
|
| 747 |
-
|
| 748 |
-
#: templates/print-order/print-content.php:74
|
| 749 |
-
msgid "Total"
|
| 750 |
-
msgstr "Σύνολο"
|
| 751 |
-
|
| 752 |
-
#: templates/print-order/print-content.php:147
|
| 753 |
-
msgid "Download:"
|
| 754 |
-
msgstr "Κατέβασμα:"
|
| 755 |
-
|
| 756 |
-
#: templates/print-order/print-content.php:148
|
| 757 |
-
msgid "%s Files"
|
| 758 |
-
msgstr "%s Files"
|
| 759 |
-
|
| 760 |
-
#: templates/print-order/print-content.php:202
|
| 761 |
-
msgid "Customer Note"
|
| 762 |
-
msgstr "Σημείωση Πελάτη"
|
| 763 |
-
|
| 764 |
-
#: woocommerce-delivery-notes.php:96 woocommerce-delivery-notes.php:103
|
| 765 |
-
msgid "Cheatin’ huh?"
|
| 766 |
-
msgstr "Είσαι Ζαβολιάρης’ ε;"
|
| 767 |
-
|
| 768 |
-
#: woocommerce-delivery-notes.php:275
|
| 769 |
-
msgid ""
|
| 770 |
-
"I can't differentiate between Invoice, Delivery Notes & Receipt. The "
|
| 771 |
-
"templates are the same. "
|
| 772 |
-
msgstr ""
|
| 773 |
-
"Δεν μπορώ να διακρίνω την διαφορά μεταξύ τιμολογίου, σημειώσεων παράδοσης "
|
| 774 |
-
"και απόδειξης. Τα πρότυπα είναι τα ίδια."
|
| 775 |
-
|
| 776 |
-
#: woocommerce-delivery-notes.php:281
|
| 777 |
-
msgid "The invoice sent through mail can't be downloaded as PDF directly."
|
| 778 |
-
msgstr ""
|
| 779 |
-
"Το τιμολόγιο που στάλθηκε μέσω ηλεκτρονικού ταχυδρομίου δεν είναι διαθέσιμο "
|
| 780 |
-
"για απευθείας λήψη σε μορφή PDF."
|
| 781 |
-
|
| 782 |
-
#: woocommerce-delivery-notes.php:287
|
| 783 |
-
msgid "The plugin is not compatible with another plugin."
|
| 784 |
-
msgstr "Το πρόσθετο δεν είναι συμβατό με άλλο πρόσθετο."
|
| 785 |
-
|
| 786 |
-
#: woocommerce-delivery-notes.php:293
|
| 787 |
-
msgid "This plugin is not useful to me."
|
| 788 |
-
msgstr "Αυτό το πρόσθετο δεν είναι μου είναι χρήσιμο."
|
| 789 |
-
|
| 790 |
-
#: woocommerce-delivery-notes.php:351
|
| 791 |
-
msgid "Go to the settings page"
|
| 792 |
-
msgstr "Μεταβείτε στη σελίδα ρυθμίσεων"
|
| 793 |
-
|
| 794 |
-
#: woocommerce-delivery-notes.php:351
|
| 795 |
-
msgid "Settings"
|
| 796 |
-
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: Print Invoice & Delivery Notes for WooCommerce\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: 2020-05-22 10:14+0000\n"
|
| 13 |
+
"Last-Translator: \n"
|
| 14 |
+
"Language-Team: Ελληνικά\n"
|
| 15 |
+
"Language: el\n"
|
| 16 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
| 17 |
+
"X-Generator: Loco https://localise.biz/\n"
|
| 18 |
+
"X-Loco-Version: 2.3.4; wp-5.4.1"
|
| 19 |
+
|
| 20 |
+
#: includes/class-wcdn-print.php:39 includes/class-wcdn-settings.php:237
|
| 21 |
+
msgid "Invoice"
|
| 22 |
+
msgstr "Τιμολόγιο"
|
| 23 |
+
|
| 24 |
+
#: includes/class-wcdn-print.php:40
|
| 25 |
+
msgid "Invoices"
|
| 26 |
+
msgstr "Τιμολόγια"
|
| 27 |
+
|
| 28 |
+
#: includes/class-wcdn-print.php:41
|
| 29 |
+
msgid "Print Invoice"
|
| 30 |
+
msgstr "Εκτύπωση Τιμολογίου"
|
| 31 |
+
|
| 32 |
+
#: includes/class-wcdn-print.php:42
|
| 33 |
+
msgid "Print Invoices"
|
| 34 |
+
msgstr "Εκτύπωση Τιμολογίων"
|
| 35 |
+
|
| 36 |
+
#: includes/class-wcdn-print.php:43
|
| 37 |
+
msgid "Invoice created."
|
| 38 |
+
msgstr "Το Τιμολόγιο Δημιουργήθηκε"
|
| 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 "Δελτίο παράδοσης"
|
| 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 "Εκτύπωση Δελτίου Αποστολής"
|
| 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 "Παραγγελία"
|
| 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 "Εκτύπωση Παραγγελίας"
|
| 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 |
+
"αυτής της διαδικασίας."
|
| 131 |
+
|
| 132 |
+
#: includes/class-wcdn-settings.php:75 includes/class-wcdn-theme.php:57
|
| 133 |
+
#: includes/class-wcdn-theme.php:94 includes/wcdn-template-functions.php:130
|
| 134 |
+
msgid "Print"
|
| 135 |
+
msgstr "Εκτύπωση"
|
| 136 |
+
|
| 137 |
+
#: includes/class-wcdn-settings.php:106
|
| 138 |
+
msgid "Template"
|
| 139 |
+
msgstr "Πρότυπο"
|
| 140 |
+
|
| 141 |
+
#: includes/class-wcdn-settings.php:113
|
| 142 |
+
msgid "Style"
|
| 143 |
+
msgstr "Στύλ"
|
| 144 |
+
|
| 145 |
+
#: includes/class-wcdn-settings.php:114
|
| 146 |
+
msgid ""
|
| 147 |
+
"The default print style. Read the <a href=\"%1$s\">FAQ</a> to learn how to "
|
| 148 |
+
"customize it."
|
| 149 |
+
msgstr ""
|
| 150 |
+
"Το προεπιλεγμένο στυλ εκτύπωσης. Διαβάστε τις <a href=\"%1$s\"> Συνήθεις "
|
| 151 |
+
"ερωτήσεις </a> για να μάθετε πώς να το προσαρμόσετε."
|
| 152 |
+
|
| 153 |
+
#: includes/class-wcdn-settings.php:124
|
| 154 |
+
msgid "Shop Logo"
|
| 155 |
+
msgstr "Λογότυπο Καταστήματος "
|
| 156 |
+
|
| 157 |
+
#: includes/class-wcdn-settings.php:130
|
| 158 |
+
msgid ""
|
| 159 |
+
"A shop logo representing your business. When the image is printed, its pixel "
|
| 160 |
+
"density will automatically be eight times higher than the original. This "
|
| 161 |
+
"means, 1 printed inch will correspond to about 288 pixels on the screen."
|
| 162 |
+
msgstr ""
|
| 163 |
+
"Το λογότυπο καταστήματος που αντιπροσωπεύει την επιχείρησή σας. Όταν "
|
| 164 |
+
"εκτυπώνεται η εικόνα, η πυκνότητα των εικονοστοιχείων της θα είναι αυτόματα "
|
| 165 |
+
"οκτώ φορές υψηλότερη από την αρχική. Αυτό σημαίνει, 1 τυπωμένη ίντσα θα "
|
| 166 |
+
"αντιστοιχεί σε περίπου 288 pixel στην οθόνη."
|
| 167 |
+
|
| 168 |
+
#: includes/class-wcdn-settings.php:134
|
| 169 |
+
msgid "Shop Name"
|
| 170 |
+
msgstr "Όνομα Καταστήματος"
|
| 171 |
+
|
| 172 |
+
#: includes/class-wcdn-settings.php:140
|
| 173 |
+
msgid ""
|
| 174 |
+
"The shop name. Leave blank to use the default Website or Blog title defined "
|
| 175 |
+
"in WordPress settings. The name will be ignored when a Logo is set."
|
| 176 |
+
msgstr ""
|
| 177 |
+
"Το όνομα του καταστήματος. Αφήστε κενό για να χρησιμοποιήσετε τον "
|
| 178 |
+
"προεπιλεγμένο ιστότοπο ή τον τίτλο ιστολογίου που ορίζεται στις ρυθμίσεις "
|
| 179 |
+
"του WordPress. Το όνομα θα αγνοηθεί όταν έχει οριστεί ένα λογότυπο."
|
| 180 |
+
|
| 181 |
+
#: includes/class-wcdn-settings.php:144
|
| 182 |
+
msgid "Shop Address"
|
| 183 |
+
msgstr "Διεύθυνση καταστήματος"
|
| 184 |
+
|
| 185 |
+
#: includes/class-wcdn-settings.php:145
|
| 186 |
+
msgid "The postal address of the shop or even e-mail or telephone."
|
| 187 |
+
msgstr ""
|
| 188 |
+
"Η ταχυδρομική διεύθυνση του καταστήματος ή ακόμα και e-mail ή τηλέφωνο."
|
| 189 |
+
|
| 190 |
+
#: includes/class-wcdn-settings.php:154
|
| 191 |
+
msgid "Complimentary Close"
|
| 192 |
+
msgstr "Ευχαριστήριο Mήνυμα"
|
| 193 |
+
|
| 194 |
+
#: includes/class-wcdn-settings.php:155
|
| 195 |
+
msgid "Add a personal close, notes or season greetings."
|
| 196 |
+
msgstr ""
|
| 197 |
+
"Προσθέστε ένα προσωπικό μήνυμα κλείσιματος, σημειώσεις ή χαιρετισμούς σεζόν."
|
| 198 |
+
|
| 199 |
+
#: includes/class-wcdn-settings.php:164
|
| 200 |
+
msgid "Policies"
|
| 201 |
+
msgstr "Πολιτικές"
|
| 202 |
+
|
| 203 |
+
#: includes/class-wcdn-settings.php:165
|
| 204 |
+
msgid "Add the shop policies, conditions, etc."
|
| 205 |
+
msgstr "Προσθέστε τις πολιτικές καταστήματος, τους όρους κ.λπ."
|
| 206 |
+
|
| 207 |
+
#: includes/class-wcdn-settings.php:174
|
| 208 |
+
msgid "Footer"
|
| 209 |
+
msgstr "Υποσέλιδο"
|
| 210 |
+
|
| 211 |
+
#: includes/class-wcdn-settings.php:175
|
| 212 |
+
msgid ""
|
| 213 |
+
"Add a footer imprint, instructions, copyright notes, e-mail, telephone, etc."
|
| 214 |
+
msgstr ""
|
| 215 |
+
"Προσθέστε ένα αποτύπωμα στο υποσέλιδο , οδηγίες, σημειώσεις πνευματικών "
|
| 216 |
+
"δικαιωμάτων, e-mail, τηλέφωνο κ.λπ."
|
| 217 |
+
|
| 218 |
+
#: includes/class-wcdn-settings.php:189
|
| 219 |
+
msgid "Pages & Buttons"
|
| 220 |
+
msgstr "Σελίδες & Κουμπία"
|
| 221 |
+
|
| 222 |
+
#: includes/class-wcdn-settings.php:196
|
| 223 |
+
msgid "Print Page Endpoint"
|
| 224 |
+
msgstr "Εκτύπωση Σελίδας Τελικού Σημείου"
|
| 225 |
+
|
| 226 |
+
#: includes/class-wcdn-settings.php:202
|
| 227 |
+
msgid ""
|
| 228 |
+
"The endpoint is appended to the accounts page URL to print the order. It "
|
| 229 |
+
"should be unique."
|
| 230 |
+
msgstr ""
|
| 231 |
+
"Το τελικό σημείο προσαρτάται στη διεύθυνση URL της σελίδας λογαριασμών για "
|
| 232 |
+
"την εκτύπωση της παραγγελίας. Θα πρέπει να είναι μοναδικό."
|
| 233 |
+
|
| 234 |
+
#: includes/class-wcdn-settings.php:206
|
| 235 |
+
#: includes/wcdn-template-functions.php:275
|
| 236 |
+
msgid "Email"
|
| 237 |
+
msgstr "Email"
|
| 238 |
+
|
| 239 |
+
#: includes/class-wcdn-settings.php:207
|
| 240 |
+
msgid "Show print link in customer emails"
|
| 241 |
+
msgstr "Εμφάνιση συνδέσμου εκτύπωσης στο email του πελάτη"
|
| 242 |
+
|
| 243 |
+
#: includes/class-wcdn-settings.php:211
|
| 244 |
+
msgid ""
|
| 245 |
+
"This includes the emails for a new, processing and completed order. On top "
|
| 246 |
+
"of that the customer invoice email also includes the link."
|
| 247 |
+
msgstr ""
|
| 248 |
+
"Αυτό περιλαμβάνει τα μηνύματα ηλεκτρονικού ταχυδρομείου για μια νέα, "
|
| 249 |
+
"επεξεργασμένη και ολοκληρωμένη παραγγελία. Επιπλέον, το email τιμολογίου "
|
| 250 |
+
"πελάτη περιλαμβάνει επίσης τον σύνδεσμο."
|
| 251 |
+
|
| 252 |
+
#: includes/class-wcdn-settings.php:215
|
| 253 |
+
msgid "My Account"
|
| 254 |
+
msgstr "Ο Λογαριασμός μου"
|
| 255 |
+
|
| 256 |
+
#: includes/class-wcdn-settings.php:216
|
| 257 |
+
msgid "Show print button on the \"View Order\" page"
|
| 258 |
+
msgstr "Εμφάνιση κουμπιόυ εκτύπωσης στην σελίδα \"Προβολή παραγγελίας\""
|
| 259 |
+
|
| 260 |
+
#: includes/class-wcdn-settings.php:224
|
| 261 |
+
msgid "Show print buttons on the \"My Account\" page"
|
| 262 |
+
msgstr "Εμφάνιση κουμπιόυ εκτύπωσης στην σελίδα \"Ο Λογαριασμός μου\""
|
| 263 |
+
|
| 264 |
+
#: includes/class-wcdn-settings.php:244
|
| 265 |
+
msgid "Numbering"
|
| 266 |
+
msgstr "Αρίθμηση"
|
| 267 |
+
|
| 268 |
+
#: includes/class-wcdn-settings.php:245
|
| 269 |
+
msgid "Create invoice numbers"
|
| 270 |
+
msgstr "Δημιουργήστε αριθμό τιμολογίων"
|
| 271 |
+
|
| 272 |
+
#: includes/class-wcdn-settings.php:253
|
| 273 |
+
msgid "Next Number"
|
| 274 |
+
msgstr "Επόμενος αριθμός"
|
| 275 |
+
|
| 276 |
+
#: includes/class-wcdn-settings.php:260
|
| 277 |
+
msgid "The next invoice number."
|
| 278 |
+
msgstr "Ο επόμενος αριθμός τιμολογίου."
|
| 279 |
+
|
| 280 |
+
#: includes/class-wcdn-settings.php:264
|
| 281 |
+
msgid "Number Prefix"
|
| 282 |
+
msgstr "Πρόθεμα αριθμού"
|
| 283 |
+
|
| 284 |
+
#: includes/class-wcdn-settings.php:271
|
| 285 |
+
msgid "This text will be prepended to the invoice number."
|
| 286 |
+
msgstr "Αυτό το κείμενο θα προστεθεί στον αριθμό τιμολογίου."
|
| 287 |
+
|
| 288 |
+
#: includes/class-wcdn-settings.php:275
|
| 289 |
+
msgid "Number Suffix"
|
| 290 |
+
msgstr "Επίθημα αριθμού"
|
| 291 |
+
|
| 292 |
+
#: includes/class-wcdn-settings.php:282
|
| 293 |
+
msgid "This text will be appended to the invoice number."
|
| 294 |
+
msgstr "Αυτό το κείμενο θα προσαρτηθεί στον αριθμό τιμολογίου."
|
| 295 |
+
|
| 296 |
+
#: includes/class-wcdn-settings.php:327
|
| 297 |
+
msgid "Admin"
|
| 298 |
+
msgstr "Διαχειριστής"
|
| 299 |
+
|
| 300 |
+
#: includes/class-wcdn-settings.php:330
|
| 301 |
+
msgid ""
|
| 302 |
+
"The print buttons are available on the order listing and on the order detail "
|
| 303 |
+
"screen."
|
| 304 |
+
msgstr ""
|
| 305 |
+
"Τα κουμπιά εκτύπωσης είναι διαθέσιμα στην λίστα παραγγελιών και στην οθόνη "
|
| 306 |
+
"λεπτομερειών παραγγελίας."
|
| 307 |
+
|
| 308 |
+
#: includes/class-wcdn-settings.php:372
|
| 309 |
+
msgid ""
|
| 310 |
+
"This section lets you customise the content. You can preview the <a "
|
| 311 |
+
"href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" "
|
| 312 |
+
"target=\"%4$s\" class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" "
|
| 313 |
+
"target=\"%4$s\" class=\"%5$s\">receipt</a> template."
|
| 314 |
+
msgstr ""
|
| 315 |
+
"Αυτή η ενότητα σάς επιτρέπει να προσαρμόσετε το περιεχόμενο. Μπορείτε να "
|
| 316 |
+
"κάνετε προεπισκόπηση των προτύπων <a href=\"%1$s\" target=\"%4$s\" "
|
| 317 |
+
"class=\"%5$s\"> τιμολογίο</a>, <a href = \"% 2 $ s\" target = \" % 4 $ s "
|
| 318 |
+
"\"class =\"% 5 $ s \"> δελτίο παράδοσης </a> ή <a href=\"%3$s\" "
|
| 319 |
+
"target=\"%4$s\" class=\"%5$s\"> απόδειξη < / a>."
|
| 320 |
+
|
| 321 |
+
#: includes/class-wcdn-settings.php:435
|
| 322 |
+
msgid "Select"
|
| 323 |
+
msgstr "Επιλογή"
|
| 324 |
+
|
| 325 |
+
#: includes/class-wcdn-settings.php:439
|
| 326 |
+
msgid "Remove"
|
| 327 |
+
msgstr "Αφαίρεση"
|
| 328 |
+
|
| 329 |
+
#: includes/class-wcdn-theme.php:112
|
| 330 |
+
msgid "Print your order"
|
| 331 |
+
msgstr "Εκτυπώστε την παραγγελια σας"
|
| 332 |
+
|
| 333 |
+
#: includes/class-wcdn-theme.php:119
|
| 334 |
+
msgid "Print:"
|
| 335 |
+
msgstr "Εκτύπωση :"
|
| 336 |
+
|
| 337 |
+
#: includes/class-wcdn-theme.php:119
|
| 338 |
+
msgid "Open print view in browser"
|
| 339 |
+
msgstr "Ανοίξτε την προβολή εκτύπωσης στο πρόγραμμα περιήγησης"
|
| 340 |
+
|
| 341 |
+
#: includes/class-wcdn-writepanel.php:218
|
| 342 |
+
msgid "Print now"
|
| 343 |
+
msgstr "Εκτώπωση Τώρα"
|
| 344 |
+
|
| 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 |
+
"μελλοντικούς χρήστες..."
|
| 398 |
+
|
| 399 |
+
#: includes/component/deactivate-survey-popup/class-ts-deactivation.php:88
|
| 400 |
+
msgid "The plugin is great, but I need specific feature that you don't support"
|
| 401 |
+
msgstr ""
|
| 402 |
+
"Το πρόσθετο είναι εξαιρετικό , αλλά χρειάζομαι συγκεκριμένη δυνατότητα που "
|
| 403 |
+
"δεν υποστηρίζετε"
|
| 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 "Συχνές Ερωτήσεις για% s"
|
| 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 |
+
"εμφανίσει ξανά το μήνυμα και δεν θα σταθεί κανένα δεδομένο"
|
| 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 "Ακολουθήστε το% s"
|
| 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 |
+
"WooCommerce Print Invoice & Delivery Note! Εάν είστε για πρώτη φορά χρήστης ,"
|
| 468 |
+
" καλώς ήλθατε! Είστε έτοιμοι να εξερευνήσετε τη λειτουργικότητα εκτύπωσης "
|
| 469 |
+
"για τις παραγγελίες σας στο WooCommerce."
|
| 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 "Ξεκινήστε με το WooCommerce Print Invoice & Delivery Note"
|
| 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 "WooCommerce Print Invoice & Delivery Note"
|
| 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 |
+
"σημειώσεις παράδοσης και τις αποδείξεις, απλώς πρέπει να το ρυθμίσετε στην "
|
| 499 |
+
"ενότητα WooCommerce -> Ρυθμίσεις -> Εκτύπωση σελίδας. Εδώ μπορείτε επίσης να "
|
| 500 |
+
"ρυθμίσετε το Εταιρικό Λογότυπο που θα εμφανίζεται στα έντυπα αντικείμενα, "
|
| 501 |
+
"Διεύθυνση Εταιρείας και άλλες πληροφορίες."
|
| 502 |
+
|
| 503 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:41
|
| 504 |
+
#: includes/wcdn-welcome.php:121
|
| 505 |
+
msgid "Click Here to go to Print page"
|
| 506 |
+
msgstr "Κάντε Κλικ Εδώ για να Μεταβείτε στη Σελίδα Εκτύπωση"
|
| 507 |
+
|
| 508 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:52
|
| 509 |
+
#: includes/wcdn-welcome.php:132
|
| 510 |
+
msgid "Enable Print button for Customers."
|
| 511 |
+
msgstr "Ενεργοποίηση κουμπιού εκτύπωσης για τους πελάτες."
|
| 512 |
+
|
| 513 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:54
|
| 514 |
+
#: includes/wcdn-welcome.php:134
|
| 515 |
+
msgid ""
|
| 516 |
+
"Allow customers to print the WooCommerce order invoice from the customer "
|
| 517 |
+
"notification email, from the My Account page or from the View Order page "
|
| 518 |
+
"under My Account."
|
| 519 |
+
msgstr ""
|
| 520 |
+
"Να επιτρέπεται στους πελάτες να εκτυπώνουν το τιμολόγιο παραγγελίας "
|
| 521 |
+
"WooCommerce από το email ειδοποίησης πελάτη, από τη σελίδα Ο λογαριασμός μου "
|
| 522 |
+
"ή από τη σελίδα Προβολή παραγγελίας στην ενότητα Ο λογαριασμός μου."
|
| 523 |
+
|
| 524 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:56
|
| 525 |
+
#: includes/wcdn-welcome.php:136
|
| 526 |
+
msgid "Click Here to Enable Print button for Customers"
|
| 527 |
+
msgstr ""
|
| 528 |
+
"Κάντε Kλικ Eδώ για να Eνεργοποιήσετε το Kουμπί Eκτύπωσης για τους Πελάτες"
|
| 529 |
+
|
| 530 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:72
|
| 531 |
+
#: includes/wcdn-welcome.php:152
|
| 532 |
+
msgid "Enable Invoice Numbering"
|
| 533 |
+
msgstr "Ενεργοποίηση αρίθμησης τιμολογίων"
|
| 534 |
+
|
| 535 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:74
|
| 536 |
+
msgid ""
|
| 537 |
+
"If you want to change the default invoice numbers & set some numbering "
|
| 538 |
+
"scheme of your own, then you can set it here with a starting invoice number, "
|
| 539 |
+
"a prefix & suffix. For example, you could set it as: TS/001/17-18."
|
| 540 |
+
msgstr ""
|
| 541 |
+
"Αν θέλετε να αλλάξετε τους προεπιλεγμένους αριθμούς τιμολογίου & να ορίσετε "
|
| 542 |
+
"κάποιο δικό σας πρότυπο αρίθμησης, τότε μπορείτε να το ορίσετε εδώ με έναν "
|
| 543 |
+
"αρχικό αριθμό τιμολογίου, ένα πρόθεμα και ένα επίθημα. Για παράδειγμα, θα "
|
| 544 |
+
"μπορούσατε να το ορίσετε ως: TS / 001 / 17-18"
|
| 545 |
+
|
| 546 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:76
|
| 547 |
+
#: includes/wcdn-welcome.php:156
|
| 548 |
+
msgid "Click Here to Enable Invoice Numbering"
|
| 549 |
+
msgstr "Κάντε Kλικ Eδώ για να Eνεργοποιήσετε την Aρίθμηση Tιμολογίων"
|
| 550 |
+
|
| 551 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:87
|
| 552 |
+
#: includes/wcdn-welcome.php:167
|
| 553 |
+
msgid "Getting to Know Tyche Softwares"
|
| 554 |
+
msgstr "Γνωρίστε τα λογισμικά Tyche"
|
| 555 |
+
|
| 556 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:90
|
| 557 |
+
#: includes/wcdn-welcome.php:170
|
| 558 |
+
msgid "Visit the Tyche Softwares Website"
|
| 559 |
+
msgstr "Επισκευθείτε την ιστοσελίδα Tyche Softwares"
|
| 560 |
+
|
| 561 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:91
|
| 562 |
+
#: includes/wcdn-welcome.php:171
|
| 563 |
+
msgid "View all Premium Plugins"
|
| 564 |
+
msgstr "Εμφάνιση όλων των Premium Προσθέτων"
|
| 565 |
+
|
| 566 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:100
|
| 567 |
+
#: includes/wcdn-welcome.php:180
|
| 568 |
+
msgid "Meet the team"
|
| 569 |
+
msgstr "Γνωρίστε την ομάδα"
|
| 570 |
+
|
| 571 |
+
#: includes/component/welcome-page/ts-welcome.php:167
|
| 572 |
+
msgid "Welcome to %s %s"
|
| 573 |
+
msgstr "Καλώς ορίσατε στο% s% s"
|
| 574 |
+
|
| 575 |
+
#: includes/wcdn-all-component.php:118
|
| 576 |
+
msgid ""
|
| 577 |
+
"Thank you for using WooCommerce Print Invoice & Delivery Note plugin! Now "
|
| 578 |
+
"make your deliveries more accurate by allowing customers to select their "
|
| 579 |
+
"preferred delivery date & time from Product Delivery Date Pro for "
|
| 580 |
+
"WooCommerce. <strong><a target=\"_blank\" href= \"https://www.tychesoftwares."
|
| 581 |
+
"com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/?"
|
| 582 |
+
"utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">Get "
|
| 583 |
+
"it now!</a></strong>"
|
| 584 |
+
msgstr ""
|
| 585 |
+
"Σας ευχαριστούμε που χρησιμοποιείτε το πρόσθετο WooCommerce Print Invoice & "
|
| 586 |
+
"Delivery Note! Τώρα κάντε τις παραδόσεις σας πιο ακριβείς επιτρέποντας στους "
|
| 587 |
+
"πελάτες να επιλέξουν την προτιμώμενη ημερομηνία και ώρα παράδοσης από το "
|
| 588 |
+
"Product Delivery Date Pro για το WooCommerce.<strong><a target=\"_blank\" "
|
| 589 |
+
"href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
|
| 590 |
+
"delivery-date-pro-for-woocommerce/?"
|
| 591 |
+
"utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">"
|
| 592 |
+
"Αποκτήστε το τώρα!</a></strong>"
|
| 593 |
+
|
| 594 |
+
#: includes/wcdn-all-component.php:120
|
| 595 |
+
msgid ""
|
| 596 |
+
"Never login to your admin to check your deliveries by syncing the delivery "
|
| 597 |
+
"dates to the Google Calendar from Product Delivery Date Pro for WooCommerce. "
|
| 598 |
+
"<strong><a target=\"_blank\" href= \"https://www.tychesoftwares."
|
| 599 |
+
"com/store/premium-plugins/product-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 |
+
">Get it now!</a></strong>"
|
| 602 |
+
msgstr ""
|
| 603 |
+
"Χώρις να χρειάζεται να συνδεθείτε στον λογαριασμο διαχείρηστη σας ελέγξτε "
|
| 604 |
+
"τις παραδόσεις σας συγχρονίζοντας τις ημερομηνίες παράδοσης στο Ημερολόγιο "
|
| 605 |
+
"Google από το Product Delivery Date Pro για το WooCommerce.<strong><a "
|
| 606 |
+
"target=\"_blank\" href= \"https://www.tychesoftwares.com/store/premium-"
|
| 607 |
+
"plugins/product-delivery-date-pro-for-woocommerce/checkout?"
|
| 608 |
+
"edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\""
|
| 609 |
+
">Αποκτήστε το τώρα!</a></strong>"
|
| 610 |
+
|
| 611 |
+
#: includes/wcdn-all-component.php:122
|
| 612 |
+
msgid ""
|
| 613 |
+
"You can now view all your deliveries in list view or in calendar view from "
|
| 614 |
+
"Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
|
| 615 |
+
"href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
|
| 616 |
+
"delivery-date-pro-for-woocommerce/checkout?"
|
| 617 |
+
"edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\""
|
| 618 |
+
">Get it now!</a></strong>."
|
| 619 |
+
msgstr ""
|
| 620 |
+
"Τώρα μπορείτε να δείτε όλες τις παραδόσεις σας σε προβολή λίστας ή σε "
|
| 621 |
+
"προβολή ημερολογίου από το Product Delivery Date Pro για το WooCommerce. "
|
| 622 |
+
"<strong><a target=\"_blank\" href= \"https://www.tychesoftwares."
|
| 623 |
+
"com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/checkout?"
|
| 624 |
+
"edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\""
|
| 625 |
+
"> Αποκτήστε το τώρα! </a> </strong>."
|
| 626 |
+
|
| 627 |
+
#: includes/wcdn-all-component.php:124
|
| 628 |
+
msgid ""
|
| 629 |
+
"Allow your customers to pay extra for delivery for certain Weekdays/Dates "
|
| 630 |
+
"from Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
|
| 631 |
+
"href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
|
| 632 |
+
"delivery-date-pro-for-woocommerce/checkout?"
|
| 633 |
+
"edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\""
|
| 634 |
+
">Have it now!</a></strong>."
|
| 635 |
+
msgstr ""
|
| 636 |
+
"Επιτρέψτε στους πελάτες σας να πληρώνουν επιπλέον για παράδοση για "
|
| 637 |
+
"συγκεκριμένες ημερομηνίες/καθημερινές από το Product Delivery Date Pro για "
|
| 638 |
+
"το WooCommerce.<strong><a target=\"_blank\" href= \"https://www."
|
| 639 |
+
"tychesoftwares.com/store/premium-plugins/product-delivery-date-pro-for-"
|
| 640 |
+
"woocommerce/checkout?"
|
| 641 |
+
"edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\""
|
| 642 |
+
">Αποκτήστε το τώρα!</a></strong>."
|
| 643 |
+
|
| 644 |
+
#: includes/wcdn-all-component.php:126
|
| 645 |
+
msgid ""
|
| 646 |
+
"Customers can now edit the Delivery date & time on cart and checkout page or "
|
| 647 |
+
"they can reschedule the deliveries for the already placed orders from "
|
| 648 |
+
"Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
|
| 649 |
+
"href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
|
| 650 |
+
"delivery-date-pro-for-woocommerce/checkout?"
|
| 651 |
+
"edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\""
|
| 652 |
+
">Have it now!</a></strong>."
|
| 653 |
+
msgstr ""
|
| 654 |
+
"Οι πελάτες σας πλέον μπορούν να επεξεργαστούν την ημερομηνία και ώρα "
|
| 655 |
+
"παράδοσης στο καλάθι και στη σελίδα ολοκλήρωσης αγοράς ή μπορούν να "
|
| 656 |
+
"επαναπρογραμματίσουν τις παραδόσεις για τις παραγγελίες που έχουν ήδη "
|
| 657 |
+
"τοποθετηθεί από το Product Delivery Date Pro για το WooCommerce."
|
| 658 |
+
|
| 659 |
+
#: includes/wcdn-template-functions.php:246
|
| 660 |
+
msgid "Invoice Number"
|
| 661 |
+
msgstr "Αριθμός Τιμολογίου"
|
| 662 |
+
|
| 663 |
+
#: includes/wcdn-template-functions.php:253
|
| 664 |
+
msgid "Invoice Date"
|
| 665 |
+
msgstr "Ημερομηνία Τιμολογίου"
|
| 666 |
+
|
| 667 |
+
#: includes/wcdn-template-functions.php:259
|
| 668 |
+
msgid "Order Number"
|
| 669 |
+
msgstr "Αρ. Παραγγελίας"
|
| 670 |
+
|
| 671 |
+
#: includes/wcdn-template-functions.php:264
|
| 672 |
+
msgid "Order Date"
|
| 673 |
+
msgstr "Ημερομηνία Παραγγελίας"
|
| 674 |
+
|
| 675 |
+
#: includes/wcdn-template-functions.php:269
|
| 676 |
+
msgid "Payment Method"
|
| 677 |
+
msgstr "Μέθοδος Πληρωμής"
|
| 678 |
+
|
| 679 |
+
#: includes/wcdn-template-functions.php:282
|
| 680 |
+
msgid "Telephone"
|
| 681 |
+
msgstr "Τηλέφωνο"
|
| 682 |
+
|
| 683 |
+
#: includes/wcdn-template-functions.php:315
|
| 684 |
+
msgid "SKU:"
|
| 685 |
+
msgstr "SKU:"
|
| 686 |
+
|
| 687 |
+
#: includes/wcdn-template-functions.php:409
|
| 688 |
+
#: includes/wcdn-template-functions.php:413
|
| 689 |
+
msgid "(Includes %s)"
|
| 690 |
+
msgstr "(Includes %s)"
|
| 691 |
+
|
| 692 |
+
#: includes/wcdn-template-functions.php:429
|
| 693 |
+
msgid "Refund"
|
| 694 |
+
msgstr "Επιστροφή χρημάτων"
|
| 695 |
+
|
| 696 |
+
#: includes/wcdn-template-functions.php:441
|
| 697 |
+
msgid "Order Subtotal"
|
| 698 |
+
msgstr "Υποσύνολο Παραγγελίας"
|
| 699 |
+
|
| 700 |
+
#: includes/wcdn-welcome.php:54
|
| 701 |
+
msgid "Welcome to WooCommerce Print Invoice & Delivery Note %s"
|
| 702 |
+
msgstr "Καλώς ήλθατε στο WooCommerce Print Invoice & Delivery Note %s"
|
| 703 |
+
|
| 704 |
+
#: includes/wcdn-welcome.php:55
|
| 705 |
+
msgid "Welcome to WooCommerce Print Invoice & Delivery Note"
|
| 706 |
+
msgstr "Καλώς ήλθατε στο WooCommerce Print Invoice & Delivery Note"
|
| 707 |
+
|
| 708 |
+
#: includes/wcdn-welcome.php:154
|
| 709 |
+
msgid ""
|
| 710 |
+
"f you want to change the default invoice numbers & set some numbering scheme "
|
| 711 |
+
"of your own, then you can set it here with a starting invoice number, a "
|
| 712 |
+
"prefix & suffix. For example, you could set it as: TS/001/17-18."
|
| 713 |
+
msgstr ""
|
| 714 |
+
"Εάν θέλετε να αλλάξετε τους προεπιλεγμένους αριθμούς τιμολογίου και να "
|
| 715 |
+
"ορίσετε κάποιο δικό σας πρότυπο αρίθμησης, τότε μπορείτε να το ορίσετε εδώ "
|
| 716 |
+
"με έναν αρχικό αριθμό τιμολογίου, ένα πρόθεμα και ένα επίθημα. Για "
|
| 717 |
+
"παράδειγμα, θα μπορούσατε να το ορίσετε ως: TS / 001 / 17-18."
|
| 718 |
+
|
| 719 |
+
#: includes/wcdn-welcome.php:186
|
| 720 |
+
msgid "Current Offers"
|
| 721 |
+
msgstr "Τρέχουσες προσφορές"
|
| 722 |
+
|
| 723 |
+
#: templates/print-order/print-content.php:28
|
| 724 |
+
msgid "Billing Address"
|
| 725 |
+
msgstr "Διεύθυνση Χρέωσης"
|
| 726 |
+
|
| 727 |
+
#: templates/print-order/print-content.php:31
|
| 728 |
+
#: templates/print-order/print-content.php:40
|
| 729 |
+
msgid "N/A"
|
| 730 |
+
msgstr "Χ/Α"
|
| 731 |
+
|
| 732 |
+
#: templates/print-order/print-content.php:37
|
| 733 |
+
msgid "Shipping Address"
|
| 734 |
+
msgstr "Διεύθυνση αποστολής"
|
| 735 |
+
|
| 736 |
+
#: templates/print-order/print-content.php:71
|
| 737 |
+
msgid "Product"
|
| 738 |
+
msgstr "Προϊον"
|
| 739 |
+
|
| 740 |
+
#: templates/print-order/print-content.php:72
|
| 741 |
+
msgid "Price"
|
| 742 |
+
msgstr "Τιμή"
|
| 743 |
+
|
| 744 |
+
#: templates/print-order/print-content.php:73
|
| 745 |
+
msgid "Quantity"
|
| 746 |
+
msgstr "Ποσότητα"
|
| 747 |
+
|
| 748 |
+
#: templates/print-order/print-content.php:74
|
| 749 |
+
msgid "Total"
|
| 750 |
+
msgstr "Σύνολο"
|
| 751 |
+
|
| 752 |
+
#: templates/print-order/print-content.php:147
|
| 753 |
+
msgid "Download:"
|
| 754 |
+
msgstr "Κατέβασμα:"
|
| 755 |
+
|
| 756 |
+
#: templates/print-order/print-content.php:148
|
| 757 |
+
msgid "%s Files"
|
| 758 |
+
msgstr "%s Files"
|
| 759 |
+
|
| 760 |
+
#: templates/print-order/print-content.php:202
|
| 761 |
+
msgid "Customer Note"
|
| 762 |
+
msgstr "Σημείωση Πελάτη"
|
| 763 |
+
|
| 764 |
+
#: woocommerce-delivery-notes.php:96 woocommerce-delivery-notes.php:103
|
| 765 |
+
msgid "Cheatin’ huh?"
|
| 766 |
+
msgstr "Είσαι Ζαβολιάρης’ ε;"
|
| 767 |
+
|
| 768 |
+
#: woocommerce-delivery-notes.php:275
|
| 769 |
+
msgid ""
|
| 770 |
+
"I can't differentiate between Invoice, Delivery Notes & Receipt. The "
|
| 771 |
+
"templates are the same. "
|
| 772 |
+
msgstr ""
|
| 773 |
+
"Δεν μπορώ να διακρίνω την διαφορά μεταξύ τιμολογίου, σημειώσεων παράδοσης "
|
| 774 |
+
"και απόδειξης. Τα πρότυπα είναι τα ίδια."
|
| 775 |
+
|
| 776 |
+
#: woocommerce-delivery-notes.php:281
|
| 777 |
+
msgid "The invoice sent through mail can't be downloaded as PDF directly."
|
| 778 |
+
msgstr ""
|
| 779 |
+
"Το τιμολόγιο που στάλθηκε μέσω ηλεκτρονικού ταχυδρομίου δεν είναι διαθέσιμο "
|
| 780 |
+
"για απευθείας λήψη σε μορφή PDF."
|
| 781 |
+
|
| 782 |
+
#: woocommerce-delivery-notes.php:287
|
| 783 |
+
msgid "The plugin is not compatible with another plugin."
|
| 784 |
+
msgstr "Το πρόσθετο δεν είναι συμβατό με άλλο πρόσθετο."
|
| 785 |
+
|
| 786 |
+
#: woocommerce-delivery-notes.php:293
|
| 787 |
+
msgid "This plugin is not useful to me."
|
| 788 |
+
msgstr "Αυτό το πρόσθετο δεν είναι μου είναι χρήσιμο."
|
| 789 |
+
|
| 790 |
+
#: woocommerce-delivery-notes.php:351
|
| 791 |
+
msgid "Go to the settings page"
|
| 792 |
+
msgstr "Μεταβείτε στη σελίδα ρυθμίσεων"
|
| 793 |
+
|
| 794 |
+
#: woocommerce-delivery-notes.php:351
|
| 795 |
+
msgid "Settings"
|
| 796 |
+
msgstr "Ρυθμίσεις"
|
languages/woocommerce-delivery-notes-ko_KR.po
CHANGED
|
@@ -1,744 +1,744 @@
|
|
| 1 |
-
# This Korean Language File: Copyright (C) 2021 by Seok-Hyun Ga (http://www.seokhyun.ga)
|
| 2 |
-
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes Plugin package.
|
| 3 |
-
#
|
| 4 |
-
#
|
| 5 |
-
msgid ""
|
| 6 |
-
msgstr ""
|
| 7 |
-
"Project-Id-Version: Print Invoice & Delivery Note V4.1.3 Korean Translation\n"
|
| 8 |
-
"Report-Msgid-Bugs-To: https://wordpress.org/support/theme/woocommerce-delivery-notes\n"
|
| 9 |
-
"POT-Creation-Date: 2021-03-24 19:00+0900\n"
|
| 10 |
-
"PO-Revision-Date: 2021-03-24 13:14+0900\n"
|
| 11 |
-
"Last-Translator: Seok-Hyun Ga <shga89@naver.com>\n"
|
| 12 |
-
"Language-Team: Seok-Hyun Ga <shga89@naver.com>\n"
|
| 13 |
-
"Language: ko_KR\n"
|
| 14 |
-
"MIME-Version: 1.0\n"
|
| 15 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
| 16 |
-
"Content-Transfer-Encoding: 8bit\n"
|
| 17 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
| 18 |
-
"X-Generator: Poedit 2.4.2\n"
|
| 19 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
| 20 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;esc_attr_e;esc_attr__\n"
|
| 21 |
-
"X-Poedit-Basepath: .\n"
|
| 22 |
-
"X-Textdomain-Support: yes\n"
|
| 23 |
-
"X-Poedit-SearchPath-0: ..\n"
|
| 24 |
-
|
| 25 |
-
# @ woocommerce-delivery-notes
|
| 26 |
-
#: includes/class-wcdn-print.php:39 includes/class-wcdn-settings.php:237
|
| 27 |
-
msgid "Invoice"
|
| 28 |
-
msgstr "거래명세서"
|
| 29 |
-
|
| 30 |
-
#: includes/class-wcdn-print.php:40
|
| 31 |
-
msgid "Invoices"
|
| 32 |
-
msgstr "거래명세서"
|
| 33 |
-
|
| 34 |
-
# @ woocommerce-delivery-notes
|
| 35 |
-
#: includes/class-wcdn-print.php:41
|
| 36 |
-
msgid "Print Invoice"
|
| 37 |
-
msgstr "거래명세서 인쇄"
|
| 38 |
-
|
| 39 |
-
#: includes/class-wcdn-print.php:42
|
| 40 |
-
msgid "Print Invoices"
|
| 41 |
-
msgstr "거래명세서 인쇄"
|
| 42 |
-
|
| 43 |
-
# @ woocommerce-delivery-notes
|
| 44 |
-
#: includes/class-wcdn-print.php:43
|
| 45 |
-
msgid "Invoice created."
|
| 46 |
-
msgstr "거래명세서가 생성되었습니다."
|
| 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 "배송 정보"
|
| 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 "배송 정보 인쇄"
|
| 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 "영수증"
|
| 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 "영수증 인쇄"
|
| 97 |
-
|
| 98 |
-
#: includes/class-wcdn-print.php:66
|
| 99 |
-
msgid "Print Receipts"
|
| 100 |
-
msgstr "영수증 인쇄"
|
| 101 |
-
|
| 102 |
-
#: includes/class-wcdn-print.php:67
|
| 103 |
-
msgid "Receipt created."
|
| 104 |
-
msgstr "영수증이 생성되었습니다."
|
| 105 |
-
|
| 106 |
-
#: includes/class-wcdn-print.php:68
|
| 107 |
-
msgid "Receipts created."
|
| 108 |
-
msgstr "영수증이 생성되었습니다."
|
| 109 |
-
|
| 110 |
-
#: includes/class-wcdn-print.php:69
|
| 111 |
-
msgid "Show \"Print Receipt\" button"
|
| 112 |
-
msgstr "\"영수증 인쇄\" 버튼 보이기"
|
| 113 |
-
|
| 114 |
-
# @ woocommerce-delivery-notes
|
| 115 |
-
#: includes/class-wcdn-print.php:78
|
| 116 |
-
msgid "Order"
|
| 117 |
-
msgstr "주문"
|
| 118 |
-
|
| 119 |
-
#: includes/class-wcdn-print.php:79
|
| 120 |
-
msgid "Orders"
|
| 121 |
-
msgstr "주문"
|
| 122 |
-
|
| 123 |
-
# @ woocommerce-delivery-notes
|
| 124 |
-
#: includes/class-wcdn-print.php:80
|
| 125 |
-
msgid "Print Order"
|
| 126 |
-
msgstr "주문 인쇄"
|
| 127 |
-
|
| 128 |
-
#: includes/class-wcdn-print.php:81
|
| 129 |
-
msgid "Print Orders"
|
| 130 |
-
msgstr "주문 인쇄"
|
| 131 |
-
|
| 132 |
-
#: includes/class-wcdn-print.php:93
|
| 133 |
-
msgid "Default"
|
| 134 |
-
msgstr "기본값"
|
| 135 |
-
|
| 136 |
-
#: includes/class-wcdn-settings.php:67
|
| 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:75 includes/class-wcdn-theme.php:57
|
| 142 |
-
#: includes/class-wcdn-theme.php:94 includes/wcdn-template-functions.php:130
|
| 143 |
-
msgid "Print"
|
| 144 |
-
msgstr "인쇄"
|
| 145 |
-
|
| 146 |
-
#: includes/class-wcdn-settings.php:106
|
| 147 |
-
msgid "Template"
|
| 148 |
-
msgstr "템플릿"
|
| 149 |
-
|
| 150 |
-
#: includes/class-wcdn-settings.php:113
|
| 151 |
-
msgid "Style"
|
| 152 |
-
msgstr "스타일"
|
| 153 |
-
|
| 154 |
-
#: includes/class-wcdn-settings.php:114
|
| 155 |
-
msgid "The default print style. Read the <a href=\"%1$s\">FAQ</a> to learn how to customize it."
|
| 156 |
-
msgstr "기본 인쇄 스타일. 사용자가 임의로 스타일을 변경하시려면 <a href=\"%1$s\">FAQ</a>를 참조하세요."
|
| 157 |
-
|
| 158 |
-
#: includes/class-wcdn-settings.php:124
|
| 159 |
-
msgid "Shop Logo"
|
| 160 |
-
msgstr "상점 로고"
|
| 161 |
-
|
| 162 |
-
#: includes/class-wcdn-settings.php:130
|
| 163 |
-
msgid "A shop logo representing your business. 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."
|
| 164 |
-
msgstr ""
|
| 165 |
-
|
| 166 |
-
#: includes/class-wcdn-settings.php:134
|
| 167 |
-
msgid "Shop Name"
|
| 168 |
-
msgstr "상점 이름"
|
| 169 |
-
|
| 170 |
-
#: includes/class-wcdn-settings.php:140
|
| 171 |
-
msgid "The shop name. Leave blank to use the default Website or Blog title defined in WordPress settings. The name will be ignored when a Logo is set."
|
| 172 |
-
msgstr ""
|
| 173 |
-
|
| 174 |
-
#: includes/class-wcdn-settings.php:144
|
| 175 |
-
msgid "Shop Address"
|
| 176 |
-
msgstr "상점 주소"
|
| 177 |
-
|
| 178 |
-
#: includes/class-wcdn-settings.php:145
|
| 179 |
-
msgid "The postal address of the shop or even e-mail or telephone."
|
| 180 |
-
msgstr ""
|
| 181 |
-
|
| 182 |
-
#: includes/class-wcdn-settings.php:154
|
| 183 |
-
msgid "Complimentary Close"
|
| 184 |
-
msgstr "끝인사"
|
| 185 |
-
|
| 186 |
-
#: includes/class-wcdn-settings.php:155
|
| 187 |
-
msgid "Add a personal close, notes or season greetings."
|
| 188 |
-
msgstr ""
|
| 189 |
-
|
| 190 |
-
#: includes/class-wcdn-settings.php:164
|
| 191 |
-
msgid "Policies"
|
| 192 |
-
msgstr "정책"
|
| 193 |
-
|
| 194 |
-
#: includes/class-wcdn-settings.php:165
|
| 195 |
-
msgid "Add the shop policies, conditions, etc."
|
| 196 |
-
msgstr ""
|
| 197 |
-
|
| 198 |
-
# @ woocommerce-delivery-notes
|
| 199 |
-
#: includes/class-wcdn-settings.php:174
|
| 200 |
-
msgid "Footer"
|
| 201 |
-
msgstr "꼬릿말"
|
| 202 |
-
|
| 203 |
-
#: includes/class-wcdn-settings.php:175
|
| 204 |
-
msgid "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 "페이지 끝 표시 인쇄"
|
| 215 |
-
|
| 216 |
-
# @ woocommerce-delivery-notes
|
| 217 |
-
#: includes/class-wcdn-settings.php:202
|
| 218 |
-
msgid "The endpoint is appended to the accounts page URL to print the order. It should be unique."
|
| 219 |
-
msgstr ""
|
| 220 |
-
|
| 221 |
-
# @ woocommerce-delivery-notes
|
| 222 |
-
#: includes/class-wcdn-settings.php:206
|
| 223 |
-
#: includes/wcdn-template-functions.php:275
|
| 224 |
-
msgid "Email"
|
| 225 |
-
msgstr ""
|
| 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 "This includes the emails for a new, processing and completed order. On top of that the customer invoice email also includes the link."
|
| 233 |
-
msgstr ""
|
| 234 |
-
|
| 235 |
-
#: includes/class-wcdn-settings.php:215
|
| 236 |
-
msgid "My Account"
|
| 237 |
-
msgstr "내 계정"
|
| 238 |
-
|
| 239 |
-
# @ woocommerce-delivery-notes
|
| 240 |
-
#: includes/class-wcdn-settings.php:216
|
| 241 |
-
msgid "Show print button on the \"View Order\" page"
|
| 242 |
-
msgstr "\"주문 보기\" 페이지에 프린트 버튼 보이기"
|
| 243 |
-
|
| 244 |
-
# @ woocommerce-delivery-notes
|
| 245 |
-
#: includes/class-wcdn-settings.php:224
|
| 246 |
-
msgid "Show print buttons on the \"My Account\" page"
|
| 247 |
-
msgstr "\"내 계정\" 페이지에 프린트 버튼 보이기"
|
| 248 |
-
|
| 249 |
-
#: includes/class-wcdn-settings.php:244
|
| 250 |
-
msgid "Numbering"
|
| 251 |
-
msgstr "연번"
|
| 252 |
-
|
| 253 |
-
#: includes/class-wcdn-settings.php:245
|
| 254 |
-
msgid "Create invoice numbers"
|
| 255 |
-
msgstr "거래명세서 연번 생성"
|
| 256 |
-
|
| 257 |
-
#: includes/class-wcdn-settings.php:253
|
| 258 |
-
msgid "Next Number"
|
| 259 |
-
msgstr "다음 번호"
|
| 260 |
-
|
| 261 |
-
#: includes/class-wcdn-settings.php:260
|
| 262 |
-
msgid "The next invoice number."
|
| 263 |
-
msgstr "다음 거래명세서 번호."
|
| 264 |
-
|
| 265 |
-
#: includes/class-wcdn-settings.php:264
|
| 266 |
-
msgid "Number Prefix"
|
| 267 |
-
msgstr "번호 접두사"
|
| 268 |
-
|
| 269 |
-
#: includes/class-wcdn-settings.php:271
|
| 270 |
-
msgid "This text will be prepended to the invoice number."
|
| 271 |
-
msgstr ""
|
| 272 |
-
|
| 273 |
-
#: includes/class-wcdn-settings.php:275
|
| 274 |
-
msgid "Number Suffix"
|
| 275 |
-
msgstr "번호 접미사"
|
| 276 |
-
|
| 277 |
-
#: includes/class-wcdn-settings.php:282
|
| 278 |
-
msgid "This text will be appended to the invoice number."
|
| 279 |
-
msgstr "이 문구는 거리명세서 번호에 덧붙여집니다."
|
| 280 |
-
|
| 281 |
-
#: includes/class-wcdn-settings.php:327
|
| 282 |
-
msgid "Admin"
|
| 283 |
-
msgstr "관리자"
|
| 284 |
-
|
| 285 |
-
#: includes/class-wcdn-settings.php:330
|
| 286 |
-
msgid "The print buttons are available on the order listing and on the order detail screen."
|
| 287 |
-
msgstr ""
|
| 288 |
-
|
| 289 |
-
#: includes/class-wcdn-settings.php:372
|
| 290 |
-
msgid "This section lets you customise the content. You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s\" 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 |
-
# @ woocommerce-delivery-notes
|
| 314 |
-
#: includes/class-wcdn-writepanel.php:218
|
| 315 |
-
msgid "Print now"
|
| 316 |
-
msgstr "바로 인쇄"
|
| 317 |
-
|
| 318 |
-
# @ woocommerce-delivery-notes
|
| 319 |
-
#: includes/class-wcdn-writepanel.php:232
|
| 320 |
-
msgid "Order Printing"
|
| 321 |
-
msgstr "주문 인쇄"
|
| 322 |
-
|
| 323 |
-
#: includes/class-wcdn-writepanel.php:259
|
| 324 |
-
msgid "Invoice number: "
|
| 325 |
-
msgstr "거래명세서 번호: "
|
| 326 |
-
|
| 327 |
-
#: includes/class-wcdn-writepanel.php:260
|
| 328 |
-
msgid "Invoice date: "
|
| 329 |
-
msgstr "거래명세서 날짜: "
|
| 330 |
-
|
| 331 |
-
#: includes/component/deactivate-survey-popup/class-ts-deactivation.php:75
|
| 332 |
-
msgid "If you have a moment, please let us know why you are deactivating"
|
| 333 |
-
msgstr ""
|
| 334 |
-
|
| 335 |
-
#: includes/component/deactivate-survey-popup/class-ts-deactivation.php:76
|
| 336 |
-
msgid "Submit & Deactivate"
|
| 337 |
-
msgstr "제출 & 비활성화"
|
| 338 |
-
|
| 339 |
-
#: includes/component/deactivate-survey-popup/class-ts-deactivation.php:77
|
| 340 |
-
msgid "Deactivate"
|
| 341 |
-
msgstr "비활성화"
|
| 342 |
-
|
| 343 |
-
#: includes/component/deactivate-survey-popup/class-ts-deactivation.php:78
|
| 344 |
-
msgid "Cancel"
|
| 345 |
-
msgstr "취소"
|
| 346 |
-
|
| 347 |
-
#: includes/component/deactivate-survey-popup/class-ts-deactivation.php:79
|
| 348 |
-
msgid "Yes - Deactivate"
|
| 349 |
-
msgstr "예 - 비활성화"
|
| 350 |
-
|
| 351 |
-
#: includes/component/deactivate-survey-popup/class-ts-deactivation.php:83
|
| 352 |
-
msgid "I found a better plugin"
|
| 353 |
-
msgstr "더 나은 플러그인을 발견"
|
| 354 |
-
|
| 355 |
-
#: includes/component/deactivate-survey-popup/class-ts-deactivation.php:84
|
| 356 |
-
msgid "What's the plugin's name?"
|
| 357 |
-
msgstr "플러그인 이름이 무엇입니까?"
|
| 358 |
-
|
| 359 |
-
#: includes/component/deactivate-survey-popup/class-ts-deactivation.php:85
|
| 360 |
-
msgid "I only needed the plugin for a short period"
|
| 361 |
-
msgstr ""
|
| 362 |
-
|
| 363 |
-
#: includes/component/deactivate-survey-popup/class-ts-deactivation.php:86
|
| 364 |
-
msgid "The plugin is not working"
|
| 365 |
-
msgstr "플러그인이 제대로 작동하지 않음"
|
| 366 |
-
|
| 367 |
-
#: includes/component/deactivate-survey-popup/class-ts-deactivation.php:87
|
| 368 |
-
msgid "Kindly share what didn't work so we can fix it for future users..."
|
| 369 |
-
msgstr ""
|
| 370 |
-
|
| 371 |
-
#: includes/component/deactivate-survey-popup/class-ts-deactivation.php:88
|
| 372 |
-
msgid "The plugin is great, but I need specific feature that you don't support"
|
| 373 |
-
msgstr ""
|
| 374 |
-
|
| 375 |
-
#: includes/component/deactivate-survey-popup/class-ts-deactivation.php:89
|
| 376 |
-
msgid "What feature?"
|
| 377 |
-
msgstr "어떤 기능?"
|
| 378 |
-
|
| 379 |
-
#: includes/component/deactivate-survey-popup/class-ts-deactivation.php:90
|
| 380 |
-
msgid "I don't like to share my information with you"
|
| 381 |
-
msgstr ""
|
| 382 |
-
|
| 383 |
-
#: includes/component/deactivate-survey-popup/class-ts-deactivation.php:91
|
| 384 |
-
msgctxt "the text of the 'other' reason for deactivating the plugin that is shown in 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 "This will reset your usage tracking settings, causing it to show the opt-in banner again and not sending any data"
|
| 403 |
-
msgstr ""
|
| 404 |
-
|
| 405 |
-
#: includes/component/tracking-data/ts-tracking.php:225
|
| 406 |
-
msgid "Once in a Week"
|
| 407 |
-
msgstr "1주일에 한 번"
|
| 408 |
-
|
| 409 |
-
#: includes/component/tracking-data/ts-tracking.php:311
|
| 410 |
-
msgid "Allow"
|
| 411 |
-
msgstr "허용"
|
| 412 |
-
|
| 413 |
-
#: includes/component/tracking-data/ts-tracking.php:312
|
| 414 |
-
msgid "No thanks"
|
| 415 |
-
msgstr "원치 않습니다"
|
| 416 |
-
|
| 417 |
-
#: includes/component/welcome-page/templates/social-media-elements.php:10
|
| 418 |
-
#: includes/wcdn-welcome.php:231
|
| 419 |
-
msgid "Follow %s"
|
| 420 |
-
msgstr ""
|
| 421 |
-
|
| 422 |
-
#: includes/component/welcome-page/templates/welcome/welcome-page.php:19
|
| 423 |
-
#: includes/wcdn-welcome.php:99
|
| 424 |
-
msgid "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."
|
| 425 |
-
msgstr ""
|
| 426 |
-
|
| 427 |
-
#: includes/component/welcome-page/templates/welcome/welcome-page.php:29
|
| 428 |
-
#: includes/wcdn-welcome.php:109
|
| 429 |
-
msgid "Get Started with WooCommerce Print Invoice & Delivery Note"
|
| 430 |
-
msgstr ""
|
| 431 |
-
|
| 432 |
-
#: includes/component/welcome-page/templates/welcome/welcome-page.php:33
|
| 433 |
-
#: includes/component/welcome-page/templates/welcome/welcome-page.php:62
|
| 434 |
-
#: includes/component/welcome-page/templates/welcome/welcome-page.php:68
|
| 435 |
-
#: includes/wcdn-welcome.php:113 includes/wcdn-welcome.php:142
|
| 436 |
-
#: includes/wcdn-welcome.php:148
|
| 437 |
-
msgid "WooCommerce Print Invoice & Delivery Note"
|
| 438 |
-
msgstr ""
|
| 439 |
-
|
| 440 |
-
#: includes/component/welcome-page/templates/welcome/welcome-page.php:37
|
| 441 |
-
#: includes/wcdn-welcome.php:117
|
| 442 |
-
msgid "Add settings"
|
| 443 |
-
msgstr ""
|
| 444 |
-
|
| 445 |
-
#: includes/component/welcome-page/templates/welcome/welcome-page.php:39
|
| 446 |
-
#: includes/wcdn-welcome.php:119
|
| 447 |
-
msgid "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."
|
| 448 |
-
msgstr ""
|
| 449 |
-
|
| 450 |
-
#: includes/component/welcome-page/templates/welcome/welcome-page.php:41
|
| 451 |
-
#: includes/wcdn-welcome.php:121
|
| 452 |
-
msgid "Click Here to go to Print page"
|
| 453 |
-
msgstr ""
|
| 454 |
-
|
| 455 |
-
#: includes/component/welcome-page/templates/welcome/welcome-page.php:52
|
| 456 |
-
#: includes/wcdn-welcome.php:132
|
| 457 |
-
msgid "Enable Print button for Customers."
|
| 458 |
-
msgstr ""
|
| 459 |
-
|
| 460 |
-
#: includes/component/welcome-page/templates/welcome/welcome-page.php:54
|
| 461 |
-
#: includes/wcdn-welcome.php:134
|
| 462 |
-
msgid "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."
|
| 463 |
-
msgstr ""
|
| 464 |
-
|
| 465 |
-
#: includes/component/welcome-page/templates/welcome/welcome-page.php:56
|
| 466 |
-
#: includes/wcdn-welcome.php:136
|
| 467 |
-
msgid "Click Here to Enable Print button for Customers"
|
| 468 |
-
msgstr ""
|
| 469 |
-
|
| 470 |
-
#: includes/component/welcome-page/templates/welcome/welcome-page.php:72
|
| 471 |
-
#: includes/wcdn-welcome.php:152
|
| 472 |
-
msgid "Enable Invoice Numbering"
|
| 473 |
-
msgstr ""
|
| 474 |
-
|
| 475 |
-
#: includes/component/welcome-page/templates/welcome/welcome-page.php:74
|
| 476 |
-
msgid "If 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."
|
| 477 |
-
msgstr ""
|
| 478 |
-
|
| 479 |
-
#: includes/component/welcome-page/templates/welcome/welcome-page.php:76
|
| 480 |
-
#: includes/wcdn-welcome.php:156
|
| 481 |
-
msgid "Click Here to Enable Invoice Numbering"
|
| 482 |
-
msgstr ""
|
| 483 |
-
|
| 484 |
-
#: includes/component/welcome-page/templates/welcome/welcome-page.php:87
|
| 485 |
-
#: includes/wcdn-welcome.php:167
|
| 486 |
-
msgid "Getting to Know Tyche Softwares"
|
| 487 |
-
msgstr ""
|
| 488 |
-
|
| 489 |
-
#: includes/component/welcome-page/templates/welcome/welcome-page.php:90
|
| 490 |
-
#: includes/wcdn-welcome.php:170
|
| 491 |
-
msgid "Visit the Tyche Softwares Website"
|
| 492 |
-
msgstr ""
|
| 493 |
-
|
| 494 |
-
#: includes/component/welcome-page/templates/welcome/welcome-page.php:91
|
| 495 |
-
#: includes/wcdn-welcome.php:171
|
| 496 |
-
msgid "View all Premium Plugins"
|
| 497 |
-
msgstr ""
|
| 498 |
-
|
| 499 |
-
#: includes/component/welcome-page/templates/welcome/welcome-page.php:100
|
| 500 |
-
#: includes/wcdn-welcome.php:180
|
| 501 |
-
msgid "Meet the team"
|
| 502 |
-
msgstr ""
|
| 503 |
-
|
| 504 |
-
#: includes/component/welcome-page/ts-welcome.php:167
|
| 505 |
-
msgid "Welcome to %s %s"
|
| 506 |
-
msgstr ""
|
| 507 |
-
|
| 508 |
-
#: includes/wcdn-all-component.php:118
|
| 509 |
-
msgid "Thank you for using WooCommerce Print Invoice & Delivery Note plugin! Now make your deliveries more accurate by allowing customers to select their preferred delivery date & time from Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" href= \"https://www.tychesoftwares.com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/?utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">Get it now!</a></strong>"
|
| 510 |
-
msgstr ""
|
| 511 |
-
|
| 512 |
-
#: includes/wcdn-all-component.php:120
|
| 513 |
-
msgid "Never login to your admin to check your deliveries by syncing the delivery dates to the Google Calendar from Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" href= \"https://www.tychesoftwares.com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/checkout?edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">Get it now!</a></strong>"
|
| 514 |
-
msgstr ""
|
| 515 |
-
|
| 516 |
-
#: includes/wcdn-all-component.php:122
|
| 517 |
-
msgid "You can now view all your deliveries in list view or in calendar view from Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" href= \"https://www.tychesoftwares.com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/checkout?edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">Get it now!</a></strong>."
|
| 518 |
-
msgstr ""
|
| 519 |
-
|
| 520 |
-
#: includes/wcdn-all-component.php:124
|
| 521 |
-
msgid "Allow your customers to pay extra for delivery for certain Weekdays/Dates from Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" href= \"https://www.tychesoftwares.com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/checkout?edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">Have it now!</a></strong>."
|
| 522 |
-
msgstr ""
|
| 523 |
-
|
| 524 |
-
#: includes/wcdn-all-component.php:126
|
| 525 |
-
msgid "Customers can now edit the Delivery date & time on cart and checkout page or they can reschedule the deliveries for the already placed orders from Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" href= \"https://www.tychesoftwares.com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/checkout?edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">Have it now!</a></strong>."
|
| 526 |
-
msgstr ""
|
| 527 |
-
|
| 528 |
-
#: includes/wcdn-template-functions.php:246
|
| 529 |
-
msgid "Invoice Number"
|
| 530 |
-
msgstr "거래명세서 날짜"
|
| 531 |
-
|
| 532 |
-
#: includes/wcdn-template-functions.php:253
|
| 533 |
-
msgid "Invoice Date"
|
| 534 |
-
msgstr "거래명세서 날짜"
|
| 535 |
-
|
| 536 |
-
# @ woocommerce-delivery-notes
|
| 537 |
-
#: includes/wcdn-template-functions.php:259
|
| 538 |
-
msgid "Order Number"
|
| 539 |
-
msgstr "주문 번호"
|
| 540 |
-
|
| 541 |
-
# @ woocommerce-delivery-notes
|
| 542 |
-
#: includes/wcdn-template-functions.php:264
|
| 543 |
-
msgid "Order Date"
|
| 544 |
-
msgstr "주문 날짜"
|
| 545 |
-
|
| 546 |
-
# @ woocommerce-delivery-notes
|
| 547 |
-
#: includes/wcdn-template-functions.php:269
|
| 548 |
-
msgid "Payment Method"
|
| 549 |
-
msgstr "결제 방법"
|
| 550 |
-
|
| 551 |
-
# @ woocommerce-delivery-notes
|
| 552 |
-
#: includes/wcdn-template-functions.php:282
|
| 553 |
-
msgid "Telephone"
|
| 554 |
-
msgstr "전화"
|
| 555 |
-
|
| 556 |
-
#: includes/wcdn-template-functions.php:315
|
| 557 |
-
msgid "SKU:"
|
| 558 |
-
msgstr "재고관리코드 :"
|
| 559 |
-
|
| 560 |
-
#: includes/wcdn-template-functions.php:409
|
| 561 |
-
#: includes/wcdn-template-functions.php:413
|
| 562 |
-
msgid "(Includes %s)"
|
| 563 |
-
msgstr "(%s 포함)"
|
| 564 |
-
|
| 565 |
-
#: includes/wcdn-template-functions.php:429
|
| 566 |
-
msgid "Refund"
|
| 567 |
-
msgstr "환불"
|
| 568 |
-
|
| 569 |
-
#: includes/wcdn-template-functions.php:441
|
| 570 |
-
msgid "Order Subtotal"
|
| 571 |
-
msgstr "주문 소계"
|
| 572 |
-
|
| 573 |
-
#: includes/wcdn-welcome.php:54
|
| 574 |
-
msgid "Welcome to WooCommerce Print Invoice & Delivery Note %s"
|
| 575 |
-
msgstr ""
|
| 576 |
-
|
| 577 |
-
#: includes/wcdn-welcome.php:55
|
| 578 |
-
msgid "Welcome to WooCommerce Print Invoice & Delivery Note"
|
| 579 |
-
msgstr ""
|
| 580 |
-
|
| 581 |
-
#: includes/wcdn-welcome.php:154
|
| 582 |
-
msgid "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."
|
| 583 |
-
msgstr ""
|
| 584 |
-
|
| 585 |
-
#: includes/wcdn-welcome.php:186
|
| 586 |
-
msgid "Current Offers"
|
| 587 |
-
msgstr "현재 제아"
|
| 588 |
-
|
| 589 |
-
# @ woocommerce-delivery-notes
|
| 590 |
-
#: templates/print-order/print-content.php:28
|
| 591 |
-
msgid "Billing Address"
|
| 592 |
-
msgstr "청구 주소"
|
| 593 |
-
|
| 594 |
-
# @ woocommerce-delivery-notes
|
| 595 |
-
#: templates/print-order/print-content.php:31
|
| 596 |
-
#: templates/print-order/print-content.php:40
|
| 597 |
-
msgid "N/A"
|
| 598 |
-
msgstr "N/A"
|
| 599 |
-
|
| 600 |
-
# @ woocommerce-delivery-notes
|
| 601 |
-
#: templates/print-order/print-content.php:37
|
| 602 |
-
msgid "Shipping Address"
|
| 603 |
-
msgstr "배송 주소"
|
| 604 |
-
|
| 605 |
-
# @ woocommerce-delivery-notes
|
| 606 |
-
#: templates/print-order/print-content.php:71
|
| 607 |
-
msgid "Product"
|
| 608 |
-
msgstr "제품"
|
| 609 |
-
|
| 610 |
-
#: templates/print-order/print-content.php:72
|
| 611 |
-
msgid "Price"
|
| 612 |
-
msgstr "가격"
|
| 613 |
-
|
| 614 |
-
#: templates/print-order/print-content.php:73
|
| 615 |
-
msgid "Quantity"
|
| 616 |
-
msgstr "수량"
|
| 617 |
-
|
| 618 |
-
# @ woocommerce-delivery-notes
|
| 619 |
-
#: templates/print-order/print-content.php:74
|
| 620 |
-
msgid "Total"
|
| 621 |
-
msgstr "합계"
|
| 622 |
-
|
| 623 |
-
# @ woocommerce-delivery-notes
|
| 624 |
-
#: templates/print-order/print-content.php:147
|
| 625 |
-
msgid "Download:"
|
| 626 |
-
msgstr "다운로드 :"
|
| 627 |
-
|
| 628 |
-
# @ woocommerce-delivery-notes
|
| 629 |
-
#: templates/print-order/print-content.php:148
|
| 630 |
-
msgid "%s Files"
|
| 631 |
-
msgstr "%s 파일"
|
| 632 |
-
|
| 633 |
-
# @ woocommerce-delivery-notes
|
| 634 |
-
#: templates/print-order/print-content.php:202
|
| 635 |
-
msgid "Customer Note"
|
| 636 |
-
msgstr "고객 메모"
|
| 637 |
-
|
| 638 |
-
#: woocommerce-delivery-notes.php:96 woocommerce-delivery-notes.php:103
|
| 639 |
-
msgid "Cheatin’ huh?"
|
| 640 |
-
msgstr ""
|
| 641 |
-
|
| 642 |
-
#: woocommerce-delivery-notes.php:275
|
| 643 |
-
msgid "I can't differentiate between Invoice, Delivery Notes & Receipt. The templates are the same. "
|
| 644 |
-
msgstr ""
|
| 645 |
-
|
| 646 |
-
#: woocommerce-delivery-notes.php:281
|
| 647 |
-
msgid "The invoice sent through mail can't be downloaded as PDF directly."
|
| 648 |
-
msgstr ""
|
| 649 |
-
|
| 650 |
-
#: woocommerce-delivery-notes.php:287
|
| 651 |
-
msgid "The plugin is not compatible with another plugin."
|
| 652 |
-
msgstr "이 플러그인은 다른 플러그인과 호환이 되지 않습니다."
|
| 653 |
-
|
| 654 |
-
#: woocommerce-delivery-notes.php:293
|
| 655 |
-
msgid "This plugin is not useful to me."
|
| 656 |
-
msgstr "이 플러그인은 나에게 유용하지 않습니다."
|
| 657 |
-
|
| 658 |
-
# @ woocommerce-delivery-notes
|
| 659 |
-
#: woocommerce-delivery-notes.php:351
|
| 660 |
-
msgid "Go to the settings page"
|
| 661 |
-
msgstr "설정 페이지로 이동"
|
| 662 |
-
|
| 663 |
-
# @ woocommerce-delivery-notes
|
| 664 |
-
#: woocommerce-delivery-notes.php:351
|
| 665 |
-
msgid "Settings"
|
| 666 |
-
msgstr "설정"
|
| 667 |
-
|
| 668 |
-
#~ msgid "Enable Invoices"
|
| 669 |
-
#~ msgstr "거래명세서 사용"
|
| 670 |
-
|
| 671 |
-
#~ msgid "Enable Delivery Notes"
|
| 672 |
-
#~ msgstr "배송 정보 사용"
|
| 673 |
-
|
| 674 |
-
#~ msgid "Enable Receipts"
|
| 675 |
-
#~ msgstr "영수증 사용"
|
| 676 |
-
|
| 677 |
-
# @ woocommerce-delivery-notes
|
| 678 |
-
#~ msgid "Company/Shop Logo"
|
| 679 |
-
#~ msgstr "회사/상점 로고"
|
| 680 |
-
|
| 681 |
-
# @ woocommerce-delivery-notes
|
| 682 |
-
#~ msgid "Remove Logo"
|
| 683 |
-
#~ msgstr "로고 삭제"
|
| 684 |
-
|
| 685 |
-
# @ woocommerce-delivery-notes
|
| 686 |
-
#~ msgid "Set Logo"
|
| 687 |
-
#~ msgstr "로고 설정"
|
| 688 |
-
|
| 689 |
-
# @ woocommerce-delivery-notes
|
| 690 |
-
#~ msgid "A company/shop logo representing your business."
|
| 691 |
-
#~ msgstr "당신의 비즈니스를 설명하는 회사/상점의 로고."
|
| 692 |
-
|
| 693 |
-
# @ woocommerce-delivery-notes
|
| 694 |
-
#~ msgid "Note:"
|
| 695 |
-
#~ msgstr "메모:"
|
| 696 |
-
|
| 697 |
-
# @ woocommerce-delivery-notes
|
| 698 |
-
#~ msgid "Company/Shop Name"
|
| 699 |
-
#~ msgstr "회사/상점 이름"
|
| 700 |
-
|
| 701 |
-
# @ woocommerce-delivery-notes
|
| 702 |
-
#~ msgid "Company/Shop Address"
|
| 703 |
-
#~ msgstr "회사/상점 주소"
|
| 704 |
-
|
| 705 |
-
#~ msgid "Print Options"
|
| 706 |
-
#~ msgstr "인쇄 옵션"
|
| 707 |
-
|
| 708 |
-
#~ msgid "Types"
|
| 709 |
-
#~ msgstr "종류"
|
| 710 |
-
|
| 711 |
-
#~ msgid "Theme Options"
|
| 712 |
-
#~ msgstr "테마 옵션"
|
| 713 |
-
|
| 714 |
-
# @ woocommerce-delivery-notes
|
| 715 |
-
#~ msgid "Order Numbering"
|
| 716 |
-
#~ msgstr "주문 연번"
|
| 717 |
-
|
| 718 |
-
#~ msgid "Invoice Numbering"
|
| 719 |
-
#~ msgstr "거래명세서 연번"
|
| 720 |
-
|
| 721 |
-
#~ msgid "Invoice Number Start"
|
| 722 |
-
#~ msgstr "거래명세서 번호 시작"
|
| 723 |
-
|
| 724 |
-
#~ msgid "Use only integers."
|
| 725 |
-
#~ msgstr "정수만 사용이 가능합니다."
|
| 726 |
-
|
| 727 |
-
#~ msgid "Invoice Number Prefix"
|
| 728 |
-
#~ msgstr "거래명세서 번호 접두사"
|
| 729 |
-
|
| 730 |
-
#~ msgid "Invoice Number Suffix"
|
| 731 |
-
#~ msgstr "거래명세서 번호 접미사"
|
| 732 |
-
|
| 733 |
-
#~ msgid "Invoice Number Counter"
|
| 734 |
-
#~ msgstr "거래명세서 번호 카운터"
|
| 735 |
-
|
| 736 |
-
#~ msgid "Reset Counter …"
|
| 737 |
-
#~ msgstr "카운터 초기화 ..."
|
| 738 |
-
|
| 739 |
-
#~ msgid "Sequential Order Number"
|
| 740 |
-
#~ msgstr "순차적인 주문 번호"
|
| 741 |
-
|
| 742 |
-
# @ woocommerce-delivery-notes
|
| 743 |
-
#~ msgid "Sequential numbering is enabled."
|
| 744 |
-
#~ msgstr "순차적인 주문 번호가 활성화되었습니다."
|
| 1 |
+
# This Korean Language File: Copyright (C) 2021 by Seok-Hyun Ga (http://www.seokhyun.ga)
|
| 2 |
+
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes Plugin package.
|
| 3 |
+
#
|
| 4 |
+
#
|
| 5 |
+
msgid ""
|
| 6 |
+
msgstr ""
|
| 7 |
+
"Project-Id-Version: Print Invoice & Delivery Note V4.1.3 Korean Translation\n"
|
| 8 |
+
"Report-Msgid-Bugs-To: https://wordpress.org/support/theme/woocommerce-delivery-notes\n"
|
| 9 |
+
"POT-Creation-Date: 2021-03-24 19:00+0900\n"
|
| 10 |
+
"PO-Revision-Date: 2021-03-24 13:14+0900\n"
|
| 11 |
+
"Last-Translator: Seok-Hyun Ga <shga89@naver.com>\n"
|
| 12 |
+
"Language-Team: Seok-Hyun Ga <shga89@naver.com>\n"
|
| 13 |
+
"Language: ko_KR\n"
|
| 14 |
+
"MIME-Version: 1.0\n"
|
| 15 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
| 16 |
+
"Content-Transfer-Encoding: 8bit\n"
|
| 17 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
| 18 |
+
"X-Generator: Poedit 2.4.2\n"
|
| 19 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
| 20 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;esc_attr_e;esc_attr__\n"
|
| 21 |
+
"X-Poedit-Basepath: .\n"
|
| 22 |
+
"X-Textdomain-Support: yes\n"
|
| 23 |
+
"X-Poedit-SearchPath-0: ..\n"
|
| 24 |
+
|
| 25 |
+
# @ woocommerce-delivery-notes
|
| 26 |
+
#: includes/class-wcdn-print.php:39 includes/class-wcdn-settings.php:237
|
| 27 |
+
msgid "Invoice"
|
| 28 |
+
msgstr "거래명세서"
|
| 29 |
+
|
| 30 |
+
#: includes/class-wcdn-print.php:40
|
| 31 |
+
msgid "Invoices"
|
| 32 |
+
msgstr "거래명세서"
|
| 33 |
+
|
| 34 |
+
# @ woocommerce-delivery-notes
|
| 35 |
+
#: includes/class-wcdn-print.php:41
|
| 36 |
+
msgid "Print Invoice"
|
| 37 |
+
msgstr "거래명세서 인쇄"
|
| 38 |
+
|
| 39 |
+
#: includes/class-wcdn-print.php:42
|
| 40 |
+
msgid "Print Invoices"
|
| 41 |
+
msgstr "거래명세서 인쇄"
|
| 42 |
+
|
| 43 |
+
# @ woocommerce-delivery-notes
|
| 44 |
+
#: includes/class-wcdn-print.php:43
|
| 45 |
+
msgid "Invoice created."
|
| 46 |
+
msgstr "거래명세서가 생성되었습니다."
|
| 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 "배송 정보"
|
| 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 "배송 정보 인쇄"
|
| 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 "영수증"
|
| 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 "영수증 인쇄"
|
| 97 |
+
|
| 98 |
+
#: includes/class-wcdn-print.php:66
|
| 99 |
+
msgid "Print Receipts"
|
| 100 |
+
msgstr "영수증 인쇄"
|
| 101 |
+
|
| 102 |
+
#: includes/class-wcdn-print.php:67
|
| 103 |
+
msgid "Receipt created."
|
| 104 |
+
msgstr "영수증이 생성되었습니다."
|
| 105 |
+
|
| 106 |
+
#: includes/class-wcdn-print.php:68
|
| 107 |
+
msgid "Receipts created."
|
| 108 |
+
msgstr "영수증이 생성되었습니다."
|
| 109 |
+
|
| 110 |
+
#: includes/class-wcdn-print.php:69
|
| 111 |
+
msgid "Show \"Print Receipt\" button"
|
| 112 |
+
msgstr "\"영수증 인쇄\" 버튼 보이기"
|
| 113 |
+
|
| 114 |
+
# @ woocommerce-delivery-notes
|
| 115 |
+
#: includes/class-wcdn-print.php:78
|
| 116 |
+
msgid "Order"
|
| 117 |
+
msgstr "주문"
|
| 118 |
+
|
| 119 |
+
#: includes/class-wcdn-print.php:79
|
| 120 |
+
msgid "Orders"
|
| 121 |
+
msgstr "주문"
|
| 122 |
+
|
| 123 |
+
# @ woocommerce-delivery-notes
|
| 124 |
+
#: includes/class-wcdn-print.php:80
|
| 125 |
+
msgid "Print Order"
|
| 126 |
+
msgstr "주문 인쇄"
|
| 127 |
+
|
| 128 |
+
#: includes/class-wcdn-print.php:81
|
| 129 |
+
msgid "Print Orders"
|
| 130 |
+
msgstr "주문 인쇄"
|
| 131 |
+
|
| 132 |
+
#: includes/class-wcdn-print.php:93
|
| 133 |
+
msgid "Default"
|
| 134 |
+
msgstr "기본값"
|
| 135 |
+
|
| 136 |
+
#: includes/class-wcdn-settings.php:67
|
| 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:75 includes/class-wcdn-theme.php:57
|
| 142 |
+
#: includes/class-wcdn-theme.php:94 includes/wcdn-template-functions.php:130
|
| 143 |
+
msgid "Print"
|
| 144 |
+
msgstr "인쇄"
|
| 145 |
+
|
| 146 |
+
#: includes/class-wcdn-settings.php:106
|
| 147 |
+
msgid "Template"
|
| 148 |
+
msgstr "템플릿"
|
| 149 |
+
|
| 150 |
+
#: includes/class-wcdn-settings.php:113
|
| 151 |
+
msgid "Style"
|
| 152 |
+
msgstr "스타일"
|
| 153 |
+
|
| 154 |
+
#: includes/class-wcdn-settings.php:114
|
| 155 |
+
msgid "The default print style. Read the <a href=\"%1$s\">FAQ</a> to learn how to customize it."
|
| 156 |
+
msgstr "기본 인쇄 스타일. 사용자가 임의로 스타일을 변경하시려면 <a href=\"%1$s\">FAQ</a>를 참조하세요."
|
| 157 |
+
|
| 158 |
+
#: includes/class-wcdn-settings.php:124
|
| 159 |
+
msgid "Shop Logo"
|
| 160 |
+
msgstr "상점 로고"
|
| 161 |
+
|
| 162 |
+
#: includes/class-wcdn-settings.php:130
|
| 163 |
+
msgid "A shop logo representing your business. 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."
|
| 164 |
+
msgstr ""
|
| 165 |
+
|
| 166 |
+
#: includes/class-wcdn-settings.php:134
|
| 167 |
+
msgid "Shop Name"
|
| 168 |
+
msgstr "상점 이름"
|
| 169 |
+
|
| 170 |
+
#: includes/class-wcdn-settings.php:140
|
| 171 |
+
msgid "The shop name. Leave blank to use the default Website or Blog title defined in WordPress settings. The name will be ignored when a Logo is set."
|
| 172 |
+
msgstr ""
|
| 173 |
+
|
| 174 |
+
#: includes/class-wcdn-settings.php:144
|
| 175 |
+
msgid "Shop Address"
|
| 176 |
+
msgstr "상점 주소"
|
| 177 |
+
|
| 178 |
+
#: includes/class-wcdn-settings.php:145
|
| 179 |
+
msgid "The postal address of the shop or even e-mail or telephone."
|
| 180 |
+
msgstr ""
|
| 181 |
+
|
| 182 |
+
#: includes/class-wcdn-settings.php:154
|
| 183 |
+
msgid "Complimentary Close"
|
| 184 |
+
msgstr "끝인사"
|
| 185 |
+
|
| 186 |
+
#: includes/class-wcdn-settings.php:155
|
| 187 |
+
msgid "Add a personal close, notes or season greetings."
|
| 188 |
+
msgstr ""
|
| 189 |
+
|
| 190 |
+
#: includes/class-wcdn-settings.php:164
|
| 191 |
+
msgid "Policies"
|
| 192 |
+
msgstr "정책"
|
| 193 |
+
|
| 194 |
+
#: includes/class-wcdn-settings.php:165
|
| 195 |
+
msgid "Add the shop policies, conditions, etc."
|
| 196 |
+
msgstr ""
|
| 197 |
+
|
| 198 |
+
# @ woocommerce-delivery-notes
|
| 199 |
+
#: includes/class-wcdn-settings.php:174
|
| 200 |
+
msgid "Footer"
|
| 201 |
+
msgstr "꼬릿말"
|
| 202 |
+
|
| 203 |
+
#: includes/class-wcdn-settings.php:175
|
| 204 |
+
msgid "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 "페이지 끝 표시 인쇄"
|
| 215 |
+
|
| 216 |
+
# @ woocommerce-delivery-notes
|
| 217 |
+
#: includes/class-wcdn-settings.php:202
|
| 218 |
+
msgid "The endpoint is appended to the accounts page URL to print the order. It should be unique."
|
| 219 |
+
msgstr ""
|
| 220 |
+
|
| 221 |
+
# @ woocommerce-delivery-notes
|
| 222 |
+
#: includes/class-wcdn-settings.php:206
|
| 223 |
+
#: includes/wcdn-template-functions.php:275
|
| 224 |
+
msgid "Email"
|
| 225 |
+
msgstr ""
|
| 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 "This includes the emails for a new, processing and completed order. On top of that the customer invoice email also includes the link."
|
| 233 |
+
msgstr ""
|
| 234 |
+
|
| 235 |
+
#: includes/class-wcdn-settings.php:215
|
| 236 |
+
msgid "My Account"
|
| 237 |
+
msgstr "내 계정"
|
| 238 |
+
|
| 239 |
+
# @ woocommerce-delivery-notes
|
| 240 |
+
#: includes/class-wcdn-settings.php:216
|
| 241 |
+
msgid "Show print button on the \"View Order\" page"
|
| 242 |
+
msgstr "\"주문 보기\" 페이지에 프린트 버튼 보이기"
|
| 243 |
+
|
| 244 |
+
# @ woocommerce-delivery-notes
|
| 245 |
+
#: includes/class-wcdn-settings.php:224
|
| 246 |
+
msgid "Show print buttons on the \"My Account\" page"
|
| 247 |
+
msgstr "\"내 계정\" 페이지에 프린트 버튼 보이기"
|
| 248 |
+
|
| 249 |
+
#: includes/class-wcdn-settings.php:244
|
| 250 |
+
msgid "Numbering"
|
| 251 |
+
msgstr "연번"
|
| 252 |
+
|
| 253 |
+
#: includes/class-wcdn-settings.php:245
|
| 254 |
+
msgid "Create invoice numbers"
|
| 255 |
+
msgstr "거래명세서 연번 생성"
|
| 256 |
+
|
| 257 |
+
#: includes/class-wcdn-settings.php:253
|
| 258 |
+
msgid "Next Number"
|
| 259 |
+
msgstr "다음 번호"
|
| 260 |
+
|
| 261 |
+
#: includes/class-wcdn-settings.php:260
|
| 262 |
+
msgid "The next invoice number."
|
| 263 |
+
msgstr "다음 거래명세서 번호."
|
| 264 |
+
|
| 265 |
+
#: includes/class-wcdn-settings.php:264
|
| 266 |
+
msgid "Number Prefix"
|
| 267 |
+
msgstr "번호 접두사"
|
| 268 |
+
|
| 269 |
+
#: includes/class-wcdn-settings.php:271
|
| 270 |
+
msgid "This text will be prepended to the invoice number."
|
| 271 |
+
msgstr ""
|
| 272 |
+
|
| 273 |
+
#: includes/class-wcdn-settings.php:275
|
| 274 |
+
msgid "Number Suffix"
|
| 275 |
+
msgstr "번호 접미사"
|
| 276 |
+
|
| 277 |
+
#: includes/class-wcdn-settings.php:282
|
| 278 |
+
msgid "This text will be appended to the invoice number."
|
| 279 |
+
msgstr "이 문구는 거리명세서 번호에 덧붙여집니다."
|
| 280 |
+
|
| 281 |
+
#: includes/class-wcdn-settings.php:327
|
| 282 |
+
msgid "Admin"
|
| 283 |
+
msgstr "관리자"
|
| 284 |
+
|
| 285 |
+
#: includes/class-wcdn-settings.php:330
|
| 286 |
+
msgid "The print buttons are available on the order listing and on the order detail screen."
|
| 287 |
+
msgstr ""
|
| 288 |
+
|
| 289 |
+
#: includes/class-wcdn-settings.php:372
|
| 290 |
+
msgid "This section lets you customise the content. You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s\" 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 |
+
# @ woocommerce-delivery-notes
|
| 314 |
+
#: includes/class-wcdn-writepanel.php:218
|
| 315 |
+
msgid "Print now"
|
| 316 |
+
msgstr "바로 인쇄"
|
| 317 |
+
|
| 318 |
+
# @ woocommerce-delivery-notes
|
| 319 |
+
#: includes/class-wcdn-writepanel.php:232
|
| 320 |
+
msgid "Order Printing"
|
| 321 |
+
msgstr "주문 인쇄"
|
| 322 |
+
|
| 323 |
+
#: includes/class-wcdn-writepanel.php:259
|
| 324 |
+
msgid "Invoice number: "
|
| 325 |
+
msgstr "거래명세서 번호: "
|
| 326 |
+
|
| 327 |
+
#: includes/class-wcdn-writepanel.php:260
|
| 328 |
+
msgid "Invoice date: "
|
| 329 |
+
msgstr "거래명세서 날짜: "
|
| 330 |
+
|
| 331 |
+
#: includes/component/deactivate-survey-popup/class-ts-deactivation.php:75
|
| 332 |
+
msgid "If you have a moment, please let us know why you are deactivating"
|
| 333 |
+
msgstr ""
|
| 334 |
+
|
| 335 |
+
#: includes/component/deactivate-survey-popup/class-ts-deactivation.php:76
|
| 336 |
+
msgid "Submit & Deactivate"
|
| 337 |
+
msgstr "제출 & 비활성화"
|
| 338 |
+
|
| 339 |
+
#: includes/component/deactivate-survey-popup/class-ts-deactivation.php:77
|
| 340 |
+
msgid "Deactivate"
|
| 341 |
+
msgstr "비활성화"
|
| 342 |
+
|
| 343 |
+
#: includes/component/deactivate-survey-popup/class-ts-deactivation.php:78
|
| 344 |
+
msgid "Cancel"
|
| 345 |
+
msgstr "취소"
|
| 346 |
+
|
| 347 |
+
#: includes/component/deactivate-survey-popup/class-ts-deactivation.php:79
|
| 348 |
+
msgid "Yes - Deactivate"
|
| 349 |
+
msgstr "예 - 비활성화"
|
| 350 |
+
|
| 351 |
+
#: includes/component/deactivate-survey-popup/class-ts-deactivation.php:83
|
| 352 |
+
msgid "I found a better plugin"
|
| 353 |
+
msgstr "더 나은 플러그인을 발견"
|
| 354 |
+
|
| 355 |
+
#: includes/component/deactivate-survey-popup/class-ts-deactivation.php:84
|
| 356 |
+
msgid "What's the plugin's name?"
|
| 357 |
+
msgstr "플러그인 이름이 무엇입니까?"
|
| 358 |
+
|
| 359 |
+
#: includes/component/deactivate-survey-popup/class-ts-deactivation.php:85
|
| 360 |
+
msgid "I only needed the plugin for a short period"
|
| 361 |
+
msgstr ""
|
| 362 |
+
|
| 363 |
+
#: includes/component/deactivate-survey-popup/class-ts-deactivation.php:86
|
| 364 |
+
msgid "The plugin is not working"
|
| 365 |
+
msgstr "플러그인이 제대로 작동하지 않음"
|
| 366 |
+
|
| 367 |
+
#: includes/component/deactivate-survey-popup/class-ts-deactivation.php:87
|
| 368 |
+
msgid "Kindly share what didn't work so we can fix it for future users..."
|
| 369 |
+
msgstr ""
|
| 370 |
+
|
| 371 |
+
#: includes/component/deactivate-survey-popup/class-ts-deactivation.php:88
|
| 372 |
+
msgid "The plugin is great, but I need specific feature that you don't support"
|
| 373 |
+
msgstr ""
|
| 374 |
+
|
| 375 |
+
#: includes/component/deactivate-survey-popup/class-ts-deactivation.php:89
|
| 376 |
+
msgid "What feature?"
|
| 377 |
+
msgstr "어떤 기능?"
|
| 378 |
+
|
| 379 |
+
#: includes/component/deactivate-survey-popup/class-ts-deactivation.php:90
|
| 380 |
+
msgid "I don't like to share my information with you"
|
| 381 |
+
msgstr ""
|
| 382 |
+
|
| 383 |
+
#: includes/component/deactivate-survey-popup/class-ts-deactivation.php:91
|
| 384 |
+
msgctxt "the text of the 'other' reason for deactivating the plugin that is shown in 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 "This will reset your usage tracking settings, causing it to show the opt-in banner again and not sending any data"
|
| 403 |
+
msgstr ""
|
| 404 |
+
|
| 405 |
+
#: includes/component/tracking-data/ts-tracking.php:225
|
| 406 |
+
msgid "Once in a Week"
|
| 407 |
+
msgstr "1주일에 한 번"
|
| 408 |
+
|
| 409 |
+
#: includes/component/tracking-data/ts-tracking.php:311
|
| 410 |
+
msgid "Allow"
|
| 411 |
+
msgstr "허용"
|
| 412 |
+
|
| 413 |
+
#: includes/component/tracking-data/ts-tracking.php:312
|
| 414 |
+
msgid "No thanks"
|
| 415 |
+
msgstr "원치 않습니다"
|
| 416 |
+
|
| 417 |
+
#: includes/component/welcome-page/templates/social-media-elements.php:10
|
| 418 |
+
#: includes/wcdn-welcome.php:231
|
| 419 |
+
msgid "Follow %s"
|
| 420 |
+
msgstr ""
|
| 421 |
+
|
| 422 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:19
|
| 423 |
+
#: includes/wcdn-welcome.php:99
|
| 424 |
+
msgid "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."
|
| 425 |
+
msgstr ""
|
| 426 |
+
|
| 427 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:29
|
| 428 |
+
#: includes/wcdn-welcome.php:109
|
| 429 |
+
msgid "Get Started with WooCommerce Print Invoice & Delivery Note"
|
| 430 |
+
msgstr ""
|
| 431 |
+
|
| 432 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:33
|
| 433 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:62
|
| 434 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:68
|
| 435 |
+
#: includes/wcdn-welcome.php:113 includes/wcdn-welcome.php:142
|
| 436 |
+
#: includes/wcdn-welcome.php:148
|
| 437 |
+
msgid "WooCommerce Print Invoice & Delivery Note"
|
| 438 |
+
msgstr ""
|
| 439 |
+
|
| 440 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:37
|
| 441 |
+
#: includes/wcdn-welcome.php:117
|
| 442 |
+
msgid "Add settings"
|
| 443 |
+
msgstr ""
|
| 444 |
+
|
| 445 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:39
|
| 446 |
+
#: includes/wcdn-welcome.php:119
|
| 447 |
+
msgid "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."
|
| 448 |
+
msgstr ""
|
| 449 |
+
|
| 450 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:41
|
| 451 |
+
#: includes/wcdn-welcome.php:121
|
| 452 |
+
msgid "Click Here to go to Print page"
|
| 453 |
+
msgstr ""
|
| 454 |
+
|
| 455 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:52
|
| 456 |
+
#: includes/wcdn-welcome.php:132
|
| 457 |
+
msgid "Enable Print button for Customers."
|
| 458 |
+
msgstr ""
|
| 459 |
+
|
| 460 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:54
|
| 461 |
+
#: includes/wcdn-welcome.php:134
|
| 462 |
+
msgid "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."
|
| 463 |
+
msgstr ""
|
| 464 |
+
|
| 465 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:56
|
| 466 |
+
#: includes/wcdn-welcome.php:136
|
| 467 |
+
msgid "Click Here to Enable Print button for Customers"
|
| 468 |
+
msgstr ""
|
| 469 |
+
|
| 470 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:72
|
| 471 |
+
#: includes/wcdn-welcome.php:152
|
| 472 |
+
msgid "Enable Invoice Numbering"
|
| 473 |
+
msgstr ""
|
| 474 |
+
|
| 475 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:74
|
| 476 |
+
msgid "If 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."
|
| 477 |
+
msgstr ""
|
| 478 |
+
|
| 479 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:76
|
| 480 |
+
#: includes/wcdn-welcome.php:156
|
| 481 |
+
msgid "Click Here to Enable Invoice Numbering"
|
| 482 |
+
msgstr ""
|
| 483 |
+
|
| 484 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:87
|
| 485 |
+
#: includes/wcdn-welcome.php:167
|
| 486 |
+
msgid "Getting to Know Tyche Softwares"
|
| 487 |
+
msgstr ""
|
| 488 |
+
|
| 489 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:90
|
| 490 |
+
#: includes/wcdn-welcome.php:170
|
| 491 |
+
msgid "Visit the Tyche Softwares Website"
|
| 492 |
+
msgstr ""
|
| 493 |
+
|
| 494 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:91
|
| 495 |
+
#: includes/wcdn-welcome.php:171
|
| 496 |
+
msgid "View all Premium Plugins"
|
| 497 |
+
msgstr ""
|
| 498 |
+
|
| 499 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:100
|
| 500 |
+
#: includes/wcdn-welcome.php:180
|
| 501 |
+
msgid "Meet the team"
|
| 502 |
+
msgstr ""
|
| 503 |
+
|
| 504 |
+
#: includes/component/welcome-page/ts-welcome.php:167
|
| 505 |
+
msgid "Welcome to %s %s"
|
| 506 |
+
msgstr ""
|
| 507 |
+
|
| 508 |
+
#: includes/wcdn-all-component.php:118
|
| 509 |
+
msgid "Thank you for using WooCommerce Print Invoice & Delivery Note plugin! Now make your deliveries more accurate by allowing customers to select their preferred delivery date & time from Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" href= \"https://www.tychesoftwares.com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/?utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">Get it now!</a></strong>"
|
| 510 |
+
msgstr ""
|
| 511 |
+
|
| 512 |
+
#: includes/wcdn-all-component.php:120
|
| 513 |
+
msgid "Never login to your admin to check your deliveries by syncing the delivery dates to the Google Calendar from Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" href= \"https://www.tychesoftwares.com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/checkout?edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">Get it now!</a></strong>"
|
| 514 |
+
msgstr ""
|
| 515 |
+
|
| 516 |
+
#: includes/wcdn-all-component.php:122
|
| 517 |
+
msgid "You can now view all your deliveries in list view or in calendar view from Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" href= \"https://www.tychesoftwares.com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/checkout?edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">Get it now!</a></strong>."
|
| 518 |
+
msgstr ""
|
| 519 |
+
|
| 520 |
+
#: includes/wcdn-all-component.php:124
|
| 521 |
+
msgid "Allow your customers to pay extra for delivery for certain Weekdays/Dates from Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" href= \"https://www.tychesoftwares.com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/checkout?edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">Have it now!</a></strong>."
|
| 522 |
+
msgstr ""
|
| 523 |
+
|
| 524 |
+
#: includes/wcdn-all-component.php:126
|
| 525 |
+
msgid "Customers can now edit the Delivery date & time on cart and checkout page or they can reschedule the deliveries for the already placed orders from Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" href= \"https://www.tychesoftwares.com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/checkout?edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">Have it now!</a></strong>."
|
| 526 |
+
msgstr ""
|
| 527 |
+
|
| 528 |
+
#: includes/wcdn-template-functions.php:246
|
| 529 |
+
msgid "Invoice Number"
|
| 530 |
+
msgstr "거래명세서 날짜"
|
| 531 |
+
|
| 532 |
+
#: includes/wcdn-template-functions.php:253
|
| 533 |
+
msgid "Invoice Date"
|
| 534 |
+
msgstr "거래명세서 날짜"
|
| 535 |
+
|
| 536 |
+
# @ woocommerce-delivery-notes
|
| 537 |
+
#: includes/wcdn-template-functions.php:259
|
| 538 |
+
msgid "Order Number"
|
| 539 |
+
msgstr "주문 번호"
|
| 540 |
+
|
| 541 |
+
# @ woocommerce-delivery-notes
|
| 542 |
+
#: includes/wcdn-template-functions.php:264
|
| 543 |
+
msgid "Order Date"
|
| 544 |
+
msgstr "주문 날짜"
|
| 545 |
+
|
| 546 |
+
# @ woocommerce-delivery-notes
|
| 547 |
+
#: includes/wcdn-template-functions.php:269
|
| 548 |
+
msgid "Payment Method"
|
| 549 |
+
msgstr "결제 방법"
|
| 550 |
+
|
| 551 |
+
# @ woocommerce-delivery-notes
|
| 552 |
+
#: includes/wcdn-template-functions.php:282
|
| 553 |
+
msgid "Telephone"
|
| 554 |
+
msgstr "전화"
|
| 555 |
+
|
| 556 |
+
#: includes/wcdn-template-functions.php:315
|
| 557 |
+
msgid "SKU:"
|
| 558 |
+
msgstr "재고관리코드 :"
|
| 559 |
+
|
| 560 |
+
#: includes/wcdn-template-functions.php:409
|
| 561 |
+
#: includes/wcdn-template-functions.php:413
|
| 562 |
+
msgid "(Includes %s)"
|
| 563 |
+
msgstr "(%s 포함)"
|
| 564 |
+
|
| 565 |
+
#: includes/wcdn-template-functions.php:429
|
| 566 |
+
msgid "Refund"
|
| 567 |
+
msgstr "환불"
|
| 568 |
+
|
| 569 |
+
#: includes/wcdn-template-functions.php:441
|
| 570 |
+
msgid "Order Subtotal"
|
| 571 |
+
msgstr "주문 소계"
|
| 572 |
+
|
| 573 |
+
#: includes/wcdn-welcome.php:54
|
| 574 |
+
msgid "Welcome to WooCommerce Print Invoice & Delivery Note %s"
|
| 575 |
+
msgstr ""
|
| 576 |
+
|
| 577 |
+
#: includes/wcdn-welcome.php:55
|
| 578 |
+
msgid "Welcome to WooCommerce Print Invoice & Delivery Note"
|
| 579 |
+
msgstr ""
|
| 580 |
+
|
| 581 |
+
#: includes/wcdn-welcome.php:154
|
| 582 |
+
msgid "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."
|
| 583 |
+
msgstr ""
|
| 584 |
+
|
| 585 |
+
#: includes/wcdn-welcome.php:186
|
| 586 |
+
msgid "Current Offers"
|
| 587 |
+
msgstr "현재 제아"
|
| 588 |
+
|
| 589 |
+
# @ woocommerce-delivery-notes
|
| 590 |
+
#: templates/print-order/print-content.php:28
|
| 591 |
+
msgid "Billing Address"
|
| 592 |
+
msgstr "청구 주소"
|
| 593 |
+
|
| 594 |
+
# @ woocommerce-delivery-notes
|
| 595 |
+
#: templates/print-order/print-content.php:31
|
| 596 |
+
#: templates/print-order/print-content.php:40
|
| 597 |
+
msgid "N/A"
|
| 598 |
+
msgstr "N/A"
|
| 599 |
+
|
| 600 |
+
# @ woocommerce-delivery-notes
|
| 601 |
+
#: templates/print-order/print-content.php:37
|
| 602 |
+
msgid "Shipping Address"
|
| 603 |
+
msgstr "배송 주소"
|
| 604 |
+
|
| 605 |
+
# @ woocommerce-delivery-notes
|
| 606 |
+
#: templates/print-order/print-content.php:71
|
| 607 |
+
msgid "Product"
|
| 608 |
+
msgstr "제품"
|
| 609 |
+
|
| 610 |
+
#: templates/print-order/print-content.php:72
|
| 611 |
+
msgid "Price"
|
| 612 |
+
msgstr "가격"
|
| 613 |
+
|
| 614 |
+
#: templates/print-order/print-content.php:73
|
| 615 |
+
msgid "Quantity"
|
| 616 |
+
msgstr "수량"
|
| 617 |
+
|
| 618 |
+
# @ woocommerce-delivery-notes
|
| 619 |
+
#: templates/print-order/print-content.php:74
|
| 620 |
+
msgid "Total"
|
| 621 |
+
msgstr "합계"
|
| 622 |
+
|
| 623 |
+
# @ woocommerce-delivery-notes
|
| 624 |
+
#: templates/print-order/print-content.php:147
|
| 625 |
+
msgid "Download:"
|
| 626 |
+
msgstr "다운로드 :"
|
| 627 |
+
|
| 628 |
+
# @ woocommerce-delivery-notes
|
| 629 |
+
#: templates/print-order/print-content.php:148
|
| 630 |
+
msgid "%s Files"
|
| 631 |
+
msgstr "%s 파일"
|
| 632 |
+
|
| 633 |
+
# @ woocommerce-delivery-notes
|
| 634 |
+
#: templates/print-order/print-content.php:202
|
| 635 |
+
msgid "Customer Note"
|
| 636 |
+
msgstr "고객 메모"
|
| 637 |
+
|
| 638 |
+
#: woocommerce-delivery-notes.php:96 woocommerce-delivery-notes.php:103
|
| 639 |
+
msgid "Cheatin’ huh?"
|
| 640 |
+
msgstr ""
|
| 641 |
+
|
| 642 |
+
#: woocommerce-delivery-notes.php:275
|
| 643 |
+
msgid "I can't differentiate between Invoice, Delivery Notes & Receipt. The templates are the same. "
|
| 644 |
+
msgstr ""
|
| 645 |
+
|
| 646 |
+
#: woocommerce-delivery-notes.php:281
|
| 647 |
+
msgid "The invoice sent through mail can't be downloaded as PDF directly."
|
| 648 |
+
msgstr ""
|
| 649 |
+
|
| 650 |
+
#: woocommerce-delivery-notes.php:287
|
| 651 |
+
msgid "The plugin is not compatible with another plugin."
|
| 652 |
+
msgstr "이 플러그인은 다른 플러그인과 호환이 되지 않습니다."
|
| 653 |
+
|
| 654 |
+
#: woocommerce-delivery-notes.php:293
|
| 655 |
+
msgid "This plugin is not useful to me."
|
| 656 |
+
msgstr "이 플러그인은 나에게 유용하지 않습니다."
|
| 657 |
+
|
| 658 |
+
# @ woocommerce-delivery-notes
|
| 659 |
+
#: woocommerce-delivery-notes.php:351
|
| 660 |
+
msgid "Go to the settings page"
|
| 661 |
+
msgstr "설정 페이지로 이동"
|
| 662 |
+
|
| 663 |
+
# @ woocommerce-delivery-notes
|
| 664 |
+
#: woocommerce-delivery-notes.php:351
|
| 665 |
+
msgid "Settings"
|
| 666 |
+
msgstr "설정"
|
| 667 |
+
|
| 668 |
+
#~ msgid "Enable Invoices"
|
| 669 |
+
#~ msgstr "거래명세서 사용"
|
| 670 |
+
|
| 671 |
+
#~ msgid "Enable Delivery Notes"
|
| 672 |
+
#~ msgstr "배송 정보 사용"
|
| 673 |
+
|
| 674 |
+
#~ msgid "Enable Receipts"
|
| 675 |
+
#~ msgstr "영수증 사용"
|
| 676 |
+
|
| 677 |
+
# @ woocommerce-delivery-notes
|
| 678 |
+
#~ msgid "Company/Shop Logo"
|
| 679 |
+
#~ msgstr "회사/상점 로고"
|
| 680 |
+
|
| 681 |
+
# @ woocommerce-delivery-notes
|
| 682 |
+
#~ msgid "Remove Logo"
|
| 683 |
+
#~ msgstr "로고 삭제"
|
| 684 |
+
|
| 685 |
+
# @ woocommerce-delivery-notes
|
| 686 |
+
#~ msgid "Set Logo"
|
| 687 |
+
#~ msgstr "로고 설정"
|
| 688 |
+
|
| 689 |
+
# @ woocommerce-delivery-notes
|
| 690 |
+
#~ msgid "A company/shop logo representing your business."
|
| 691 |
+
#~ msgstr "당신의 비즈니스를 설명하는 회사/상점의 로고."
|
| 692 |
+
|
| 693 |
+
# @ woocommerce-delivery-notes
|
| 694 |
+
#~ msgid "Note:"
|
| 695 |
+
#~ msgstr "메모:"
|
| 696 |
+
|
| 697 |
+
# @ woocommerce-delivery-notes
|
| 698 |
+
#~ msgid "Company/Shop Name"
|
| 699 |
+
#~ msgstr "회사/상점 이름"
|
| 700 |
+
|
| 701 |
+
# @ woocommerce-delivery-notes
|
| 702 |
+
#~ msgid "Company/Shop Address"
|
| 703 |
+
#~ msgstr "회사/상점 주소"
|
| 704 |
+
|
| 705 |
+
#~ msgid "Print Options"
|
| 706 |
+
#~ msgstr "인쇄 옵션"
|
| 707 |
+
|
| 708 |
+
#~ msgid "Types"
|
| 709 |
+
#~ msgstr "종류"
|
| 710 |
+
|
| 711 |
+
#~ msgid "Theme Options"
|
| 712 |
+
#~ msgstr "테마 옵션"
|
| 713 |
+
|
| 714 |
+
# @ woocommerce-delivery-notes
|
| 715 |
+
#~ msgid "Order Numbering"
|
| 716 |
+
#~ msgstr "주문 연번"
|
| 717 |
+
|
| 718 |
+
#~ msgid "Invoice Numbering"
|
| 719 |
+
#~ msgstr "거래명세서 연번"
|
| 720 |
+
|
| 721 |
+
#~ msgid "Invoice Number Start"
|
| 722 |
+
#~ msgstr "거래명세서 번호 시작"
|
| 723 |
+
|
| 724 |
+
#~ msgid "Use only integers."
|
| 725 |
+
#~ msgstr "정수만 사용이 가능합니다."
|
| 726 |
+
|
| 727 |
+
#~ msgid "Invoice Number Prefix"
|
| 728 |
+
#~ msgstr "거래명세서 번호 접두사"
|
| 729 |
+
|
| 730 |
+
#~ msgid "Invoice Number Suffix"
|
| 731 |
+
#~ msgstr "거래명세서 번호 접미사"
|
| 732 |
+
|
| 733 |
+
#~ msgid "Invoice Number Counter"
|
| 734 |
+
#~ msgstr "거래명세서 번호 카운터"
|
| 735 |
+
|
| 736 |
+
#~ msgid "Reset Counter …"
|
| 737 |
+
#~ msgstr "카운터 초기화 ..."
|
| 738 |
+
|
| 739 |
+
#~ msgid "Sequential Order Number"
|
| 740 |
+
#~ msgstr "순차적인 주문 번호"
|
| 741 |
+
|
| 742 |
+
# @ woocommerce-delivery-notes
|
| 743 |
+
#~ msgid "Sequential numbering is enabled."
|
| 744 |
+
#~ msgstr "순차적인 주문 번호가 활성화되었습니다."
|
readme.txt
CHANGED
|
@@ -1,10 +1,10 @@
|
|
| 1 |
=== Print Invoice & Delivery Notes for WooCommerce ===
|
| 2 |
|
| 3 |
-
Contributors: ashokrane, tychesoftwares
|
| 4 |
Donate link: https://www.paypal.me/TycheSoftwares
|
| 5 |
Tags: packing slips, invoice, pdf invoice, delivery notes, woocommerce print invoice, print, pdf, invoices
|
| 6 |
Requires at least: 4.0
|
| 7 |
-
Tested up to:
|
| 8 |
Author URI: https://www.tychesoftwares.com/
|
| 9 |
Stable tag: trunk
|
| 10 |
License: GPLv3 or later
|
|
@@ -338,6 +338,12 @@ Please [contribute your translation](https://github.com/TycheSoftwares/woocommer
|
|
| 338 |
|
| 339 |
== Changelog ==
|
| 340 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 341 |
= 4.6.5 (08.02.2022) =
|
| 342 |
* Enhancement :- Added an option to print the invoice text in Right to Left direction.
|
| 343 |
* Enhancement :- Added a filter called 'wcdn_product_meta_data' to remove the meta fields of the product in the invoice.
|
| 1 |
=== Print Invoice & Delivery Notes for WooCommerce ===
|
| 2 |
|
| 3 |
+
Contributors: ashokrane, tychesoftwares
|
| 4 |
Donate link: https://www.paypal.me/TycheSoftwares
|
| 5 |
Tags: packing slips, invoice, pdf invoice, delivery notes, woocommerce print invoice, print, pdf, invoices
|
| 6 |
Requires at least: 4.0
|
| 7 |
+
Tested up to: 6.1
|
| 8 |
Author URI: https://www.tychesoftwares.com/
|
| 9 |
Stable tag: trunk
|
| 10 |
License: GPLv3 or later
|
| 338 |
|
| 339 |
== Changelog ==
|
| 340 |
|
| 341 |
+
= 4.7.0 (06.12.2022) =
|
| 342 |
+
* Fix :- Logo was not showing on Android phone earlier. This is fixed now.
|
| 343 |
+
* Fix :- Display labels for shipping and billing address
|
| 344 |
+
* Fix :- Removed redundant "Refund" line.
|
| 345 |
+
* Fix :- Compatibility with WooCommerce Product Addons plugin. All the fields from the plugin will be shown in the Invoice, Receipt & Delivery Note.
|
| 346 |
+
|
| 347 |
= 4.6.5 (08.02.2022) =
|
| 348 |
* Enhancement :- Added an option to print the invoice text in Right to Left direction.
|
| 349 |
* Enhancement :- Added a filter called 'wcdn_product_meta_data' to remove the meta fields of the product in the invoice.
|
templates/print-order/print-content.php
CHANGED
|
@@ -36,10 +36,21 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
| 36 |
<address>
|
| 37 |
|
| 38 |
<?php
|
|
|
|
| 39 |
if ( ! $order->get_formatted_billing_address() ) {
|
| 40 |
esc_attr_e( 'N/A', 'woocommerce-delivery-notes' );
|
| 41 |
} else {
|
| 42 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
}
|
| 44 |
?>
|
| 45 |
|
|
@@ -54,7 +65,17 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
| 54 |
if ( ! $order->get_formatted_shipping_address() ) {
|
| 55 |
esc_attr_e( 'N/A', 'woocommerce-delivery-notes' );
|
| 56 |
} else {
|
| 57 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
}
|
| 59 |
?>
|
| 60 |
|
|
@@ -139,7 +160,10 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
| 139 |
</span>
|
| 140 |
|
| 141 |
<?php
|
| 142 |
-
$item_meta_fields = apply_filters( 'wcdn_product_meta_data', $item['item_meta'], $item );
|
|
|
|
|
|
|
|
|
|
| 143 |
|
| 144 |
$product_addons = array();
|
| 145 |
$woocommerce_product_addon = 'woocommerce-product-addons/woocommerce-product-addons.php';
|
|
@@ -198,7 +222,6 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
| 198 |
|
| 199 |
}
|
| 200 |
?>
|
| 201 |
-
<br>
|
| 202 |
<dl class="extras">
|
| 203 |
<?php if ( $product && $product->exists() && $product->is_downloadable() && $order->is_download_permitted() ) : ?>
|
| 204 |
|
| 36 |
<address>
|
| 37 |
|
| 38 |
<?php
|
| 39 |
+
|
| 40 |
if ( ! $order->get_formatted_billing_address() ) {
|
| 41 |
esc_attr_e( 'N/A', 'woocommerce-delivery-notes' );
|
| 42 |
} else {
|
| 43 |
+
$country = $order->get_billing_country();
|
| 44 |
+
$state = $order->get_billing_state();
|
| 45 |
+
$full_name_state = WC()->countries->get_states( $country )[$state];
|
| 46 |
+
$billing_address = 'Company : ' . $order->get_billing_company() . '<br>' .
|
| 47 |
+
'Name : ' . $order->get_formatted_billing_full_name() . '<br>' .
|
| 48 |
+
'Address 1: ' . $order->get_billing_address_1() .',<br>' .
|
| 49 |
+
'Address 2: ' . $order->get_billing_address_2() . ',<br>' .
|
| 50 |
+
'City: ' . $order->get_billing_city() . ' ' . $order->get_billing_postcode() .',<br>' .
|
| 51 |
+
'State: ' . $full_name_state . '.';
|
| 52 |
+
|
| 53 |
+
echo wp_kses_post( apply_filters( 'wcdn_address_billing', $billing_address , $order ) );
|
| 54 |
}
|
| 55 |
?>
|
| 56 |
|
| 65 |
if ( ! $order->get_formatted_shipping_address() ) {
|
| 66 |
esc_attr_e( 'N/A', 'woocommerce-delivery-notes' );
|
| 67 |
} else {
|
| 68 |
+
$country = $order->get_shipping_country();
|
| 69 |
+
$state = $order->get_shipping_state();
|
| 70 |
+
$full_name_state = WC()->countries->get_states( $country )[$state];
|
| 71 |
+
$shipping_address = 'Company : ' . $order->get_shipping_company() . '<br>' .
|
| 72 |
+
'Name : ' . $order->get_formatted_shipping_full_name() . '<br>' .
|
| 73 |
+
'Address 1: ' . $order->get_shipping_address_1() .',<br>' .
|
| 74 |
+
'Address 2: ' . $order->get_shipping_address_2() . ',<br>' .
|
| 75 |
+
'City: ' . $order->get_shipping_city() . ' ' . $order->get_shipping_postcode() .',<br>' .
|
| 76 |
+
'State: ' . $full_name_state . '.' ;
|
| 77 |
+
|
| 78 |
+
echo wp_kses_post( apply_filters( 'wcdn_address_shipping', $shipping_address , $order ) );
|
| 79 |
}
|
| 80 |
?>
|
| 81 |
|
| 160 |
</span>
|
| 161 |
|
| 162 |
<?php
|
| 163 |
+
$item_meta_fields = wc_display_item_meta( $item, apply_filters( 'wcdn_product_meta_data', $item['item_meta'] , $item ) );
|
| 164 |
+
if ( $item_meta_fields === null ) {
|
| 165 |
+
$item_meta_fields = array();
|
| 166 |
+
}
|
| 167 |
|
| 168 |
$product_addons = array();
|
| 169 |
$woocommerce_product_addon = 'woocommerce-product-addons/woocommerce-product-addons.php';
|
| 222 |
|
| 223 |
}
|
| 224 |
?>
|
|
|
|
| 225 |
<dl class="extras">
|
| 226 |
<?php if ( $product && $product->exists() && $product->is_downloadable() && $order->is_download_permitted() ) : ?>
|
| 227 |
|
templates/print-order/style.css
CHANGED
|
@@ -47,13 +47,13 @@ h4 {
|
|
| 47 |
}
|
| 48 |
|
| 49 |
ul {
|
| 50 |
-
margin-bottom:
|
| 51 |
}
|
| 52 |
|
| 53 |
li,
|
| 54 |
dt,
|
| 55 |
dd {
|
| 56 |
-
padding: 0.
|
| 57 |
}
|
| 58 |
|
| 59 |
dt {
|
| 47 |
}
|
| 48 |
|
| 49 |
ul {
|
| 50 |
+
margin-bottom: 0.1em;
|
| 51 |
}
|
| 52 |
|
| 53 |
li,
|
| 54 |
dt,
|
| 55 |
dd {
|
| 56 |
+
padding: 0.1em 0;
|
| 57 |
}
|
| 58 |
|
| 59 |
dt {
|
woocommerce-delivery-notes-el.mo
ADDED
|
Binary file
|
woocommerce-delivery-notes-el.po
ADDED
|
@@ -0,0 +1,796 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Copyright (C) 2018
|
| 2 |
+
# This file is distributed under the same license as the package.
|
| 3 |
+
msgid ""
|
| 4 |
+
msgstr ""
|
| 5 |
+
"Project-Id-Version: Print Invoice & Delivery Notes for WooCommerce\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: 2020-05-22 10:14+0000\n"
|
| 13 |
+
"Last-Translator: \n"
|
| 14 |
+
"Language-Team: Ελληνικά\n"
|
| 15 |
+
"Language: el\n"
|
| 16 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
| 17 |
+
"X-Generator: Loco https://localise.biz/\n"
|
| 18 |
+
"X-Loco-Version: 2.3.4; wp-5.4.1"
|
| 19 |
+
|
| 20 |
+
#: includes/class-wcdn-print.php:39 includes/class-wcdn-settings.php:237
|
| 21 |
+
msgid "Invoice"
|
| 22 |
+
msgstr "Τιμολόγιο"
|
| 23 |
+
|
| 24 |
+
#: includes/class-wcdn-print.php:40
|
| 25 |
+
msgid "Invoices"
|
| 26 |
+
msgstr "Τιμολόγια"
|
| 27 |
+
|
| 28 |
+
#: includes/class-wcdn-print.php:41
|
| 29 |
+
msgid "Print Invoice"
|
| 30 |
+
msgstr "Εκτύπωση Τιμολογίου"
|
| 31 |
+
|
| 32 |
+
#: includes/class-wcdn-print.php:42
|
| 33 |
+
msgid "Print Invoices"
|
| 34 |
+
msgstr "Εκτύπωση Τιμολογίων"
|
| 35 |
+
|
| 36 |
+
#: includes/class-wcdn-print.php:43
|
| 37 |
+
msgid "Invoice created."
|
| 38 |
+
msgstr "Το Τιμολόγιο Δημιουργήθηκε"
|
| 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 "Δελτίο παράδοσης"
|
| 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 "Εκτύπωση Δελτίου Αποστολής"
|
| 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 "Παραγγελία"
|
| 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 "Εκτύπωση Παραγγελίας"
|
| 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 |
+
"αυτής της διαδικασίας."
|
| 131 |
+
|
| 132 |
+
#: includes/class-wcdn-settings.php:75 includes/class-wcdn-theme.php:57
|
| 133 |
+
#: includes/class-wcdn-theme.php:94 includes/wcdn-template-functions.php:130
|
| 134 |
+
msgid "Print"
|
| 135 |
+
msgstr "Εκτύπωση"
|
| 136 |
+
|
| 137 |
+
#: includes/class-wcdn-settings.php:106
|
| 138 |
+
msgid "Template"
|
| 139 |
+
msgstr "Πρότυπο"
|
| 140 |
+
|
| 141 |
+
#: includes/class-wcdn-settings.php:113
|
| 142 |
+
msgid "Style"
|
| 143 |
+
msgstr "Στύλ"
|
| 144 |
+
|
| 145 |
+
#: includes/class-wcdn-settings.php:114
|
| 146 |
+
msgid ""
|
| 147 |
+
"The default print style. Read the <a href=\"%1$s\">FAQ</a> to learn how to "
|
| 148 |
+
"customize it."
|
| 149 |
+
msgstr ""
|
| 150 |
+
"Το προεπιλεγμένο στυλ εκτύπωσης. Διαβάστε τις <a href=\"%1$s\"> Συνήθεις "
|
| 151 |
+
"ερωτήσεις </a> για να μάθετε πώς να το προσαρμόσετε."
|
| 152 |
+
|
| 153 |
+
#: includes/class-wcdn-settings.php:124
|
| 154 |
+
msgid "Shop Logo"
|
| 155 |
+
msgstr "Λογότυπο Καταστήματος "
|
| 156 |
+
|
| 157 |
+
#: includes/class-wcdn-settings.php:130
|
| 158 |
+
msgid ""
|
| 159 |
+
"A shop logo representing your business. When the image is printed, its pixel "
|
| 160 |
+
"density will automatically be eight times higher than the original. This "
|
| 161 |
+
"means, 1 printed inch will correspond to about 288 pixels on the screen."
|
| 162 |
+
msgstr ""
|
| 163 |
+
"Το λογότυπο καταστήματος που αντιπροσωπεύει την επιχείρησή σας. Όταν "
|
| 164 |
+
"εκτυπώνεται η εικόνα, η πυκνότητα των εικονοστοιχείων της θα είναι αυτόματα "
|
| 165 |
+
"οκτώ φορές υψηλότερη από την αρχική. Αυτό σημαίνει, 1 τυπωμένη ίντσα θα "
|
| 166 |
+
"αντιστοιχεί σε περίπου 288 pixel στην οθόνη."
|
| 167 |
+
|
| 168 |
+
#: includes/class-wcdn-settings.php:134
|
| 169 |
+
msgid "Shop Name"
|
| 170 |
+
msgstr "Όνομα Καταστήματος"
|
| 171 |
+
|
| 172 |
+
#: includes/class-wcdn-settings.php:140
|
| 173 |
+
msgid ""
|
| 174 |
+
"The shop name. Leave blank to use the default Website or Blog title defined "
|
| 175 |
+
"in WordPress settings. The name will be ignored when a Logo is set."
|
| 176 |
+
msgstr ""
|
| 177 |
+
"Το όνομα του καταστήματος. Αφήστε κενό για να χρησιμοποιήσετε τον "
|
| 178 |
+
"προεπιλεγμένο ιστότοπο ή τον τίτλο ιστολογίου που ορίζεται στις ρυθμίσεις "
|
| 179 |
+
"του WordPress. Το όνομα θα αγνοηθεί όταν έχει οριστεί ένα λογότυπο."
|
| 180 |
+
|
| 181 |
+
#: includes/class-wcdn-settings.php:144
|
| 182 |
+
msgid "Shop Address"
|
| 183 |
+
msgstr "Διεύθυνση καταστήματος"
|
| 184 |
+
|
| 185 |
+
#: includes/class-wcdn-settings.php:145
|
| 186 |
+
msgid "The postal address of the shop or even e-mail or telephone."
|
| 187 |
+
msgstr ""
|
| 188 |
+
"Η ταχυδρομική διεύθυνση του καταστήματος ή ακόμα και e-mail ή τηλέφωνο."
|
| 189 |
+
|
| 190 |
+
#: includes/class-wcdn-settings.php:154
|
| 191 |
+
msgid "Complimentary Close"
|
| 192 |
+
msgstr "Ευχαριστήριο Mήνυμα"
|
| 193 |
+
|
| 194 |
+
#: includes/class-wcdn-settings.php:155
|
| 195 |
+
msgid "Add a personal close, notes or season greetings."
|
| 196 |
+
msgstr ""
|
| 197 |
+
"Προσθέστε ένα προσωπικό μήνυμα κλείσιματος, σημειώσεις ή χαιρετισμούς σεζόν."
|
| 198 |
+
|
| 199 |
+
#: includes/class-wcdn-settings.php:164
|
| 200 |
+
msgid "Policies"
|
| 201 |
+
msgstr "Πολιτικές"
|
| 202 |
+
|
| 203 |
+
#: includes/class-wcdn-settings.php:165
|
| 204 |
+
msgid "Add the shop policies, conditions, etc."
|
| 205 |
+
msgstr "Προσθέστε τις πολιτικές καταστήματος, τους όρους κ.λπ."
|
| 206 |
+
|
| 207 |
+
#: includes/class-wcdn-settings.php:174
|
| 208 |
+
msgid "Footer"
|
| 209 |
+
msgstr "Υποσέλιδο"
|
| 210 |
+
|
| 211 |
+
#: includes/class-wcdn-settings.php:175
|
| 212 |
+
msgid ""
|
| 213 |
+
"Add a footer imprint, instructions, copyright notes, e-mail, telephone, etc."
|
| 214 |
+
msgstr ""
|
| 215 |
+
"Προσθέστε ένα αποτύπωμα στο υποσέλιδο , οδηγίες, σημειώσεις πνευματικών "
|
| 216 |
+
"δικαιωμάτων, e-mail, τηλέφωνο κ.λπ."
|
| 217 |
+
|
| 218 |
+
#: includes/class-wcdn-settings.php:189
|
| 219 |
+
msgid "Pages & Buttons"
|
| 220 |
+
msgstr "Σελίδες & Κουμπία"
|
| 221 |
+
|
| 222 |
+
#: includes/class-wcdn-settings.php:196
|
| 223 |
+
msgid "Print Page Endpoint"
|
| 224 |
+
msgstr "Εκτύπωση Σελίδας Τελικού Σημείου"
|
| 225 |
+
|
| 226 |
+
#: includes/class-wcdn-settings.php:202
|
| 227 |
+
msgid ""
|
| 228 |
+
"The endpoint is appended to the accounts page URL to print the order. It "
|
| 229 |
+
"should be unique."
|
| 230 |
+
msgstr ""
|
| 231 |
+
"Το τελικό σημείο προσαρτάται στη διεύθυνση URL της σελίδας λογαριασμών για "
|
| 232 |
+
"την εκτύπωση της παραγγελίας. Θα πρέπει να είναι μοναδικό."
|
| 233 |
+
|
| 234 |
+
#: includes/class-wcdn-settings.php:206
|
| 235 |
+
#: includes/wcdn-template-functions.php:275
|
| 236 |
+
msgid "Email"
|
| 237 |
+
msgstr "Email"
|
| 238 |
+
|
| 239 |
+
#: includes/class-wcdn-settings.php:207
|
| 240 |
+
msgid "Show print link in customer emails"
|
| 241 |
+
msgstr "Εμφάνιση συνδέσμου εκτύπωσης στο email του πελάτη"
|
| 242 |
+
|
| 243 |
+
#: includes/class-wcdn-settings.php:211
|
| 244 |
+
msgid ""
|
| 245 |
+
"This includes the emails for a new, processing and completed order. On top "
|
| 246 |
+
"of that the customer invoice email also includes the link."
|
| 247 |
+
msgstr ""
|
| 248 |
+
"Αυτό περιλαμβάνει τα μηνύματα ηλεκτρονικού ταχυδρομείου για μια νέα, "
|
| 249 |
+
"επεξεργασμένη και ολοκληρωμένη παραγγελία. Επιπλέον, το email τιμολογίου "
|
| 250 |
+
"πελάτη περιλαμβάνει επίσης τον σύνδεσμο."
|
| 251 |
+
|
| 252 |
+
#: includes/class-wcdn-settings.php:215
|
| 253 |
+
msgid "My Account"
|
| 254 |
+
msgstr "Ο Λογαριασμός μου"
|
| 255 |
+
|
| 256 |
+
#: includes/class-wcdn-settings.php:216
|
| 257 |
+
msgid "Show print button on the \"View Order\" page"
|
| 258 |
+
msgstr "Εμφάνιση κουμπιόυ εκτύπωσης στην σελίδα \"Προβολή παραγγελίας\""
|
| 259 |
+
|
| 260 |
+
#: includes/class-wcdn-settings.php:224
|
| 261 |
+
msgid "Show print buttons on the \"My Account\" page"
|
| 262 |
+
msgstr "Εμφάνιση κουμπιόυ εκτύπωσης στην σελίδα \"Ο Λογαριασμός μου\""
|
| 263 |
+
|
| 264 |
+
#: includes/class-wcdn-settings.php:244
|
| 265 |
+
msgid "Numbering"
|
| 266 |
+
msgstr "Αρίθμηση"
|
| 267 |
+
|
| 268 |
+
#: includes/class-wcdn-settings.php:245
|
| 269 |
+
msgid "Create invoice numbers"
|
| 270 |
+
msgstr "Δημιουργήστε αριθμό τιμολογίων"
|
| 271 |
+
|
| 272 |
+
#: includes/class-wcdn-settings.php:253
|
| 273 |
+
msgid "Next Number"
|
| 274 |
+
msgstr "Επόμενος αριθμός"
|
| 275 |
+
|
| 276 |
+
#: includes/class-wcdn-settings.php:260
|
| 277 |
+
msgid "The next invoice number."
|
| 278 |
+
msgstr "Ο επόμενος αριθμός τιμολογίου."
|
| 279 |
+
|
| 280 |
+
#: includes/class-wcdn-settings.php:264
|
| 281 |
+
msgid "Number Prefix"
|
| 282 |
+
msgstr "Πρόθεμα αριθμού"
|
| 283 |
+
|
| 284 |
+
#: includes/class-wcdn-settings.php:271
|
| 285 |
+
msgid "This text will be prepended to the invoice number."
|
| 286 |
+
msgstr "Αυτό το κείμενο θα προστεθεί στον αριθμό τιμολογίου."
|
| 287 |
+
|
| 288 |
+
#: includes/class-wcdn-settings.php:275
|
| 289 |
+
msgid "Number Suffix"
|
| 290 |
+
msgstr "Επίθημα αριθμού"
|
| 291 |
+
|
| 292 |
+
#: includes/class-wcdn-settings.php:282
|
| 293 |
+
msgid "This text will be appended to the invoice number."
|
| 294 |
+
msgstr "Αυτό το κείμενο θα προσαρτηθεί στον αριθμό τιμολογίου."
|
| 295 |
+
|
| 296 |
+
#: includes/class-wcdn-settings.php:327
|
| 297 |
+
msgid "Admin"
|
| 298 |
+
msgstr "Διαχειριστής"
|
| 299 |
+
|
| 300 |
+
#: includes/class-wcdn-settings.php:330
|
| 301 |
+
msgid ""
|
| 302 |
+
"The print buttons are available on the order listing and on the order detail "
|
| 303 |
+
"screen."
|
| 304 |
+
msgstr ""
|
| 305 |
+
"Τα κουμπιά εκτύπωσης είναι διαθέσιμα στην λίστα παραγγελιών και στην οθόνη "
|
| 306 |
+
"λεπτομερειών παραγγελίας."
|
| 307 |
+
|
| 308 |
+
#: includes/class-wcdn-settings.php:372
|
| 309 |
+
msgid ""
|
| 310 |
+
"This section lets you customise the content. You can preview the <a "
|
| 311 |
+
"href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" "
|
| 312 |
+
"target=\"%4$s\" class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" "
|
| 313 |
+
"target=\"%4$s\" class=\"%5$s\">receipt</a> template."
|
| 314 |
+
msgstr ""
|
| 315 |
+
"Αυτή η ενότητα σάς επιτρέπει να προσαρμόσετε το περιεχόμενο. Μπορείτε να "
|
| 316 |
+
"κάνετε προεπισκόπηση των προτύπων <a href=\"%1$s\" target=\"%4$s\" "
|
| 317 |
+
"class=\"%5$s\"> τιμολογίο</a>, <a href = \"% 2 $ s\" target = \" % 4 $ s "
|
| 318 |
+
"\"class =\"% 5 $ s \"> δελτίο παράδοσης </a> ή <a href=\"%3$s\" "
|
| 319 |
+
"target=\"%4$s\" class=\"%5$s\"> απόδειξη < / a>."
|
| 320 |
+
|
| 321 |
+
#: includes/class-wcdn-settings.php:435
|
| 322 |
+
msgid "Select"
|
| 323 |
+
msgstr "Επιλογή"
|
| 324 |
+
|
| 325 |
+
#: includes/class-wcdn-settings.php:439
|
| 326 |
+
msgid "Remove"
|
| 327 |
+
msgstr "Αφαίρεση"
|
| 328 |
+
|
| 329 |
+
#: includes/class-wcdn-theme.php:112
|
| 330 |
+
msgid "Print your order"
|
| 331 |
+
msgstr "Εκτυπώστε την παραγγελια σας"
|
| 332 |
+
|
| 333 |
+
#: includes/class-wcdn-theme.php:119
|
| 334 |
+
msgid "Print:"
|
| 335 |
+
msgstr "Εκτύπωση :"
|
| 336 |
+
|
| 337 |
+
#: includes/class-wcdn-theme.php:119
|
| 338 |
+
msgid "Open print view in browser"
|
| 339 |
+
msgstr "Ανοίξτε την προβολή εκτύπωσης στο πρόγραμμα περιήγησης"
|
| 340 |
+
|
| 341 |
+
#: includes/class-wcdn-writepanel.php:218
|
| 342 |
+
msgid "Print now"
|
| 343 |
+
msgstr "Εκτώπωση Τώρα"
|
| 344 |
+
|
| 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 |
+
"μελλοντικούς χρήστες..."
|
| 398 |
+
|
| 399 |
+
#: includes/component/deactivate-survey-popup/class-ts-deactivation.php:88
|
| 400 |
+
msgid "The plugin is great, but I need specific feature that you don't support"
|
| 401 |
+
msgstr ""
|
| 402 |
+
"Το πρόσθετο είναι εξαιρετικό , αλλά χρειάζομαι συγκεκριμένη δυνατότητα που "
|
| 403 |
+
"δεν υποστηρίζετε"
|
| 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 "Συχνές Ερωτήσεις για% s"
|
| 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 |
+
"εμφανίσει ξανά το μήνυμα και δεν θα σταθεί κανένα δεδομένο"
|
| 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 "Ακολουθήστε το% s"
|
| 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 |
+
"WooCommerce Print Invoice & Delivery Note! Εάν είστε για πρώτη φορά χρήστης ,"
|
| 468 |
+
" καλώς ήλθατε! Είστε έτοιμοι να εξερευνήσετε τη λειτουργικότητα εκτύπωσης "
|
| 469 |
+
"για τις παραγγελίες σας στο WooCommerce."
|
| 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 "Ξεκινήστε με το WooCommerce Print Invoice & Delivery Note"
|
| 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 "WooCommerce Print Invoice & Delivery Note"
|
| 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 |
+
"σημειώσεις παράδοσης και τις αποδείξεις, απλώς πρέπει να το ρυθμίσετε στην "
|
| 499 |
+
"ενότητα WooCommerce -> Ρυθμίσεις -> Εκτύπωση σελίδας. Εδώ μπορείτε επίσης να "
|
| 500 |
+
"ρυθμίσετε το Εταιρικό Λογότυπο που θα εμφανίζεται στα έντυπα αντικείμενα, "
|
| 501 |
+
"Διεύθυνση Εταιρείας και άλλες πληροφορίες."
|
| 502 |
+
|
| 503 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:41
|
| 504 |
+
#: includes/wcdn-welcome.php:121
|
| 505 |
+
msgid "Click Here to go to Print page"
|
| 506 |
+
msgstr "Κάντε Κλικ Εδώ για να Μεταβείτε στη Σελίδα Εκτύπωση"
|
| 507 |
+
|
| 508 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:52
|
| 509 |
+
#: includes/wcdn-welcome.php:132
|
| 510 |
+
msgid "Enable Print button for Customers."
|
| 511 |
+
msgstr "Ενεργοποίηση κουμπιού εκτύπωσης για τους πελάτες."
|
| 512 |
+
|
| 513 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:54
|
| 514 |
+
#: includes/wcdn-welcome.php:134
|
| 515 |
+
msgid ""
|
| 516 |
+
"Allow customers to print the WooCommerce order invoice from the customer "
|
| 517 |
+
"notification email, from the My Account page or from the View Order page "
|
| 518 |
+
"under My Account."
|
| 519 |
+
msgstr ""
|
| 520 |
+
"Να επιτρέπεται στους πελάτες να εκτυπώνουν το τιμολόγιο παραγγελίας "
|
| 521 |
+
"WooCommerce από το email ειδοποίησης πελάτη, από τη σελίδα Ο λογαριασμός μου "
|
| 522 |
+
"ή από τη σελίδα Προβολή παραγγελίας στην ενότητα Ο λογαριασμός μου."
|
| 523 |
+
|
| 524 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:56
|
| 525 |
+
#: includes/wcdn-welcome.php:136
|
| 526 |
+
msgid "Click Here to Enable Print button for Customers"
|
| 527 |
+
msgstr ""
|
| 528 |
+
"Κάντε Kλικ Eδώ για να Eνεργοποιήσετε το Kουμπί Eκτύπωσης για τους Πελάτες"
|
| 529 |
+
|
| 530 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:72
|
| 531 |
+
#: includes/wcdn-welcome.php:152
|
| 532 |
+
msgid "Enable Invoice Numbering"
|
| 533 |
+
msgstr "Ενεργοποίηση αρίθμησης τιμολογίων"
|
| 534 |
+
|
| 535 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:74
|
| 536 |
+
msgid ""
|
| 537 |
+
"If you want to change the default invoice numbers & set some numbering "
|
| 538 |
+
"scheme of your own, then you can set it here with a starting invoice number, "
|
| 539 |
+
"a prefix & suffix. For example, you could set it as: TS/001/17-18."
|
| 540 |
+
msgstr ""
|
| 541 |
+
"Αν θέλετε να αλλάξετε τους προεπιλεγμένους αριθμούς τιμολογίου & να ορίσετε "
|
| 542 |
+
"κάποιο δικό σας πρότυπο αρίθμησης, τότε μπορείτε να το ορίσετε εδώ με έναν "
|
| 543 |
+
"αρχικό αριθμό τιμολογίου, ένα πρόθεμα και ένα επίθημα. Για παράδειγμα, θα "
|
| 544 |
+
"μπορούσατε να το ορίσετε ως: TS / 001 / 17-18"
|
| 545 |
+
|
| 546 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:76
|
| 547 |
+
#: includes/wcdn-welcome.php:156
|
| 548 |
+
msgid "Click Here to Enable Invoice Numbering"
|
| 549 |
+
msgstr "Κάντε Kλικ Eδώ για να Eνεργοποιήσετε την Aρίθμηση Tιμολογίων"
|
| 550 |
+
|
| 551 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:87
|
| 552 |
+
#: includes/wcdn-welcome.php:167
|
| 553 |
+
msgid "Getting to Know Tyche Softwares"
|
| 554 |
+
msgstr "Γνωρίστε τα λογισμικά Tyche"
|
| 555 |
+
|
| 556 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:90
|
| 557 |
+
#: includes/wcdn-welcome.php:170
|
| 558 |
+
msgid "Visit the Tyche Softwares Website"
|
| 559 |
+
msgstr "Επισκευθείτε την ιστοσελίδα Tyche Softwares"
|
| 560 |
+
|
| 561 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:91
|
| 562 |
+
#: includes/wcdn-welcome.php:171
|
| 563 |
+
msgid "View all Premium Plugins"
|
| 564 |
+
msgstr "Εμφάνιση όλων των Premium Προσθέτων"
|
| 565 |
+
|
| 566 |
+
#: includes/component/welcome-page/templates/welcome/welcome-page.php:100
|
| 567 |
+
#: includes/wcdn-welcome.php:180
|
| 568 |
+
msgid "Meet the team"
|
| 569 |
+
msgstr "Γνωρίστε την ομάδα"
|
| 570 |
+
|
| 571 |
+
#: includes/component/welcome-page/ts-welcome.php:167
|
| 572 |
+
msgid "Welcome to %s %s"
|
| 573 |
+
msgstr "Καλώς ορίσατε στο% s% s"
|
| 574 |
+
|
| 575 |
+
#: includes/wcdn-all-component.php:118
|
| 576 |
+
msgid ""
|
| 577 |
+
"Thank you for using WooCommerce Print Invoice & Delivery Note plugin! Now "
|
| 578 |
+
"make your deliveries more accurate by allowing customers to select their "
|
| 579 |
+
"preferred delivery date & time from Product Delivery Date Pro for "
|
| 580 |
+
"WooCommerce. <strong><a target=\"_blank\" href= \"https://www.tychesoftwares."
|
| 581 |
+
"com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/?"
|
| 582 |
+
"utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">Get "
|
| 583 |
+
"it now!</a></strong>"
|
| 584 |
+
msgstr ""
|
| 585 |
+
"Σας ευχαριστούμε που χρησιμοποιείτε το πρόσθετο WooCommerce Print Invoice & "
|
| 586 |
+
"Delivery Note! Τώρα κάντε τις παραδόσεις σας πιο ακριβείς επιτρέποντας στους "
|
| 587 |
+
"πελάτες να επιλέξουν την προτιμώμενη ημερομηνία και ώρα παράδοσης από το "
|
| 588 |
+
"Product Delivery Date Pro για το WooCommerce.<strong><a target=\"_blank\" "
|
| 589 |
+
"href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
|
| 590 |
+
"delivery-date-pro-for-woocommerce/?"
|
| 591 |
+
"utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\">"
|
| 592 |
+
"Αποκτήστε το τώρα!</a></strong>"
|
| 593 |
+
|
| 594 |
+
#: includes/wcdn-all-component.php:120
|
| 595 |
+
msgid ""
|
| 596 |
+
"Never login to your admin to check your deliveries by syncing the delivery "
|
| 597 |
+
"dates to the Google Calendar from Product Delivery Date Pro for WooCommerce. "
|
| 598 |
+
"<strong><a target=\"_blank\" href= \"https://www.tychesoftwares."
|
| 599 |
+
"com/store/premium-plugins/product-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 |
+
">Get it now!</a></strong>"
|
| 602 |
+
msgstr ""
|
| 603 |
+
"Χώρις να χρειάζεται να συνδεθείτε στον λογαριασμο διαχείρηστη σας ελέγξτε "
|
| 604 |
+
"τις παραδόσεις σας συγχρονίζοντας τις ημερομηνίες παράδοσης στο Ημερολόγιο "
|
| 605 |
+
"Google από το Product Delivery Date Pro για το WooCommerce.<strong><a "
|
| 606 |
+
"target=\"_blank\" href= \"https://www.tychesoftwares.com/store/premium-"
|
| 607 |
+
"plugins/product-delivery-date-pro-for-woocommerce/checkout?"
|
| 608 |
+
"edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\""
|
| 609 |
+
">Αποκτήστε το τώρα!</a></strong>"
|
| 610 |
+
|
| 611 |
+
#: includes/wcdn-all-component.php:122
|
| 612 |
+
msgid ""
|
| 613 |
+
"You can now view all your deliveries in list view or in calendar view from "
|
| 614 |
+
"Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
|
| 615 |
+
"href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
|
| 616 |
+
"delivery-date-pro-for-woocommerce/checkout?"
|
| 617 |
+
"edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\""
|
| 618 |
+
">Get it now!</a></strong>."
|
| 619 |
+
msgstr ""
|
| 620 |
+
"Τώρα μπορείτε να δείτε όλες τις παραδόσεις σας σε προβολή λίστας ή σε "
|
| 621 |
+
"προβολή ημερολογίου από το Product Delivery Date Pro για το WooCommerce. "
|
| 622 |
+
"<strong><a target=\"_blank\" href= \"https://www.tychesoftwares."
|
| 623 |
+
"com/store/premium-plugins/product-delivery-date-pro-for-woocommerce/checkout?"
|
| 624 |
+
"edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\""
|
| 625 |
+
"> Αποκτήστε το τώρα! </a> </strong>."
|
| 626 |
+
|
| 627 |
+
#: includes/wcdn-all-component.php:124
|
| 628 |
+
msgid ""
|
| 629 |
+
"Allow your customers to pay extra for delivery for certain Weekdays/Dates "
|
| 630 |
+
"from Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
|
| 631 |
+
"href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
|
| 632 |
+
"delivery-date-pro-for-woocommerce/checkout?"
|
| 633 |
+
"edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\""
|
| 634 |
+
">Have it now!</a></strong>."
|
| 635 |
+
msgstr ""
|
| 636 |
+
"Επιτρέψτε στους πελάτες σας να πληρώνουν επιπλέον για παράδοση για "
|
| 637 |
+
"συγκεκριμένες ημερομηνίες/καθημερινές από το Product Delivery Date Pro για "
|
| 638 |
+
"το WooCommerce.<strong><a target=\"_blank\" href= \"https://www."
|
| 639 |
+
"tychesoftwares.com/store/premium-plugins/product-delivery-date-pro-for-"
|
| 640 |
+
"woocommerce/checkout?"
|
| 641 |
+
"edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\""
|
| 642 |
+
">Αποκτήστε το τώρα!</a></strong>."
|
| 643 |
+
|
| 644 |
+
#: includes/wcdn-all-component.php:126
|
| 645 |
+
msgid ""
|
| 646 |
+
"Customers can now edit the Delivery date & time on cart and checkout page or "
|
| 647 |
+
"they can reschedule the deliveries for the already placed orders from "
|
| 648 |
+
"Product Delivery Date Pro for WooCommerce. <strong><a target=\"_blank\" "
|
| 649 |
+
"href= \"https://www.tychesoftwares.com/store/premium-plugins/product-"
|
| 650 |
+
"delivery-date-pro-for-woocommerce/checkout?"
|
| 651 |
+
"edd_action=add_to_cart&download_id=16&utm_source=wpnotice&utm_medium=first&utm_campaign=PrintInvoicePlugin\""
|
| 652 |
+
">Have it now!</a></strong>."
|
| 653 |
+
msgstr ""
|
| 654 |
+
"Οι πελάτες σας πλέον μπορούν να επεξεργαστούν την ημερομηνία και ώρα "
|
| 655 |
+
"παράδοσης στο καλάθι και στη σελίδα ολοκλήρωσης αγοράς ή μπορούν να "
|
| 656 |
+
"επαναπρογραμματίσουν τις παραδόσεις για τις παραγγελίες που έχουν ήδη "
|
| 657 |
+
"τοποθετηθεί από το Product Delivery Date Pro για το WooCommerce."
|
| 658 |
+
|
| 659 |
+
#: includes/wcdn-template-functions.php:246
|
| 660 |
+
msgid "Invoice Number"
|
| 661 |
+
msgstr "Αριθμός Τιμολογίου"
|
| 662 |
+
|
| 663 |
+
#: includes/wcdn-template-functions.php:253
|
| 664 |
+
msgid "Invoice Date"
|
| 665 |
+
msgstr "Ημερομηνία Τιμολογίου"
|
| 666 |
+
|
| 667 |
+
#: includes/wcdn-template-functions.php:259
|
| 668 |
+
msgid "Order Number"
|
| 669 |
+
msgstr "Αρ. Παραγγελίας"
|
| 670 |
+
|
| 671 |
+
#: includes/wcdn-template-functions.php:264
|
| 672 |
+
msgid "Order Date"
|
| 673 |
+
msgstr "Ημερομηνία Παραγγελίας"
|
| 674 |
+
|
| 675 |
+
#: includes/wcdn-template-functions.php:269
|
| 676 |
+
msgid "Payment Method"
|
| 677 |
+
msgstr "Μέθοδος Πληρωμής"
|
| 678 |
+
|
| 679 |
+
#: includes/wcdn-template-functions.php:282
|
| 680 |
+
msgid "Telephone"
|
| 681 |
+
msgstr "Τηλέφωνο"
|
| 682 |
+
|
| 683 |
+
#: includes/wcdn-template-functions.php:315
|
| 684 |
+
msgid "SKU:"
|
| 685 |
+
msgstr "SKU:"
|
| 686 |
+
|
| 687 |
+
#: includes/wcdn-template-functions.php:409
|
| 688 |
+
#: includes/wcdn-template-functions.php:413
|
| 689 |
+
msgid "(Includes %s)"
|
| 690 |
+
msgstr "(Includes %s)"
|
| 691 |
+
|
| 692 |
+
#: includes/wcdn-template-functions.php:429
|
| 693 |
+
msgid "Refund"
|
| 694 |
+
msgstr "Επιστροφή χρημάτων"
|
| 695 |
+
|
| 696 |
+
#: includes/wcdn-template-functions.php:441
|
| 697 |
+
msgid "Order Subtotal"
|
| 698 |
+
msgstr "Υποσύνολο Παραγγελίας"
|
| 699 |
+
|
| 700 |
+
#: includes/wcdn-welcome.php:54
|
| 701 |
+
msgid "Welcome to WooCommerce Print Invoice & Delivery Note %s"
|
| 702 |
+
msgstr "Καλώς ήλθατε στο WooCommerce Print Invoice & Delivery Note %s"
|
| 703 |
+
|
| 704 |
+
#: includes/wcdn-welcome.php:55
|
| 705 |
+
msgid "Welcome to WooCommerce Print Invoice & Delivery Note"
|
| 706 |
+
msgstr "Καλώς ήλθατε στο WooCommerce Print Invoice & Delivery Note"
|
| 707 |
+
|
| 708 |
+
#: includes/wcdn-welcome.php:154
|
| 709 |
+
msgid ""
|
| 710 |
+
"f you want to change the default invoice numbers & set some numbering scheme "
|
| 711 |
+
"of your own, then you can set it here with a starting invoice number, a "
|
| 712 |
+
"prefix & suffix. For example, you could set it as: TS/001/17-18."
|
| 713 |
+
msgstr ""
|
| 714 |
+
"Εάν θέλετε να αλλάξετε τους προεπιλεγμένους αριθμούς τιμολογίου και να "
|
| 715 |
+
"ορίσετε κάποιο δικό σας πρότυπο αρίθμησης, τότε μπορείτε να το ορίσετε εδώ "
|
| 716 |
+
"με έναν αρχικό αριθμό τιμολογίου, ένα πρόθεμα και ένα επίθημα. Για "
|
| 717 |
+
"παράδειγμα, θα μπορούσατε να το ορίσετε ως: TS / 001 / 17-18."
|
| 718 |
+
|
| 719 |
+
#: includes/wcdn-welcome.php:186
|
| 720 |
+
msgid "Current Offers"
|
| 721 |
+
msgstr "Τρέχουσες προσφορές"
|
| 722 |
+
|
| 723 |
+
#: templates/print-order/print-content.php:28
|
| 724 |
+
msgid "Billing Address"
|
| 725 |
+
msgstr "Διεύθυνση Χρέωσης"
|
| 726 |
+
|
| 727 |
+
#: templates/print-order/print-content.php:31
|
| 728 |
+
#: templates/print-order/print-content.php:40
|
| 729 |
+
msgid "N/A"
|
| 730 |
+
msgstr "Χ/Α"
|
| 731 |
+
|
| 732 |
+
#: templates/print-order/print-content.php:37
|
| 733 |
+
msgid "Shipping Address"
|
| 734 |
+
msgstr "Διεύθυνση αποστολής"
|
| 735 |
+
|
| 736 |
+
#: templates/print-order/print-content.php:71
|
| 737 |
+
msgid "Product"
|
| 738 |
+
msgstr "Προϊον"
|
| 739 |
+
|
| 740 |
+
#: templates/print-order/print-content.php:72
|
| 741 |
+
msgid "Price"
|
| 742 |
+
msgstr "Τιμή"
|
| 743 |
+
|
| 744 |
+
#: templates/print-order/print-content.php:73
|
| 745 |
+
msgid "Quantity"
|
| 746 |
+
msgstr "Ποσότητα"
|
| 747 |
+
|
| 748 |
+
#: templates/print-order/print-content.php:74
|
| 749 |
+
msgid "Total"
|
| 750 |
+
msgstr "Σύνολο"
|
| 751 |
+
|
| 752 |
+
#: templates/print-order/print-content.php:147
|
| 753 |
+
msgid "Download:"
|
| 754 |
+
msgstr "Κατέβασμα:"
|
| 755 |
+
|
| 756 |
+
#: templates/print-order/print-content.php:148
|
| 757 |
+
msgid "%s Files"
|
| 758 |
+
msgstr "%s Files"
|
| 759 |
+
|
| 760 |
+
#: templates/print-order/print-content.php:202
|
| 761 |
+
msgid "Customer Note"
|
| 762 |
+
msgstr "Σημείωση Πελάτη"
|
| 763 |
+
|
| 764 |
+
#: woocommerce-delivery-notes.php:96 woocommerce-delivery-notes.php:103
|
| 765 |
+
msgid "Cheatin’ huh?"
|
| 766 |
+
msgstr "Είσαι Ζαβολιάρης’ ε;"
|
| 767 |
+
|
| 768 |
+
#: woocommerce-delivery-notes.php:275
|
| 769 |
+
msgid ""
|
| 770 |
+
"I can't differentiate between Invoice, Delivery Notes & Receipt. The "
|
| 771 |
+
"templates are the same. "
|
| 772 |
+
msgstr ""
|
| 773 |
+
"Δεν μπορώ να διακρίνω την διαφορά μεταξύ τιμολογίου, σημειώσεων παράδοσης "
|
| 774 |
+
"και απόδειξης. Τα πρότυπα είναι τα ίδια."
|
| 775 |
+
|
| 776 |
+
#: woocommerce-delivery-notes.php:281
|
| 777 |
+
msgid "The invoice sent through mail can't be downloaded as PDF directly."
|
| 778 |
+
msgstr ""
|
| 779 |
+
"Το τιμολόγιο που στάλθηκε μέσω ηλεκτρονικού ταχυδρομίου δεν είναι διαθέσιμο "
|
| 780 |
+
"για απευθείας λήψη σε μορφή PDF."
|
| 781 |
+
|
| 782 |
+
#: woocommerce-delivery-notes.php:287
|
| 783 |
+
msgid "The plugin is not compatible with another plugin."
|
| 784 |
+
msgstr "Το πρόσθετο δεν είναι συμβατό με άλλο πρόσθετο."
|
| 785 |
+
|
| 786 |
+
#: woocommerce-delivery-notes.php:293
|
| 787 |
+
msgid "This plugin is not useful to me."
|
| 788 |
+
msgstr "Αυτό το πρόσθετο δεν είναι μου είναι χρήσιμο."
|
| 789 |
+
|
| 790 |
+
#: woocommerce-delivery-notes.php:351
|
| 791 |
+
msgid "Go to the settings page"
|
| 792 |
+
msgstr "Μεταβείτε στη σελίδα ρυθμίσεων"
|
| 793 |
+
|
| 794 |
+
#: woocommerce-delivery-notes.php:351
|
| 795 |
+
msgid "Settings"
|
| 796 |
+
msgstr "Ρυθμίσεις"
|
woocommerce-delivery-notes.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* Plugin Name: Print Invoice & Delivery Notes for WooCommerce
|
| 6 |
* Plugin URI: https://www.tychesoftwares.com/
|
| 7 |
* Description: Print Invoices & Delivery Notes for WooCommerce Orders.
|
| 8 |
-
* Version: 4.
|
| 9 |
* Author: Tyche Softwares
|
| 10 |
* Author URI: https://www.tychesoftwares.com/
|
| 11 |
* License: GPLv3 or later
|
| 5 |
* Plugin Name: Print Invoice & Delivery Notes for WooCommerce
|
| 6 |
* Plugin URI: https://www.tychesoftwares.com/
|
| 7 |
* Description: Print Invoices & Delivery Notes for WooCommerce Orders.
|
| 8 |
+
* Version: 4.7.0
|
| 9 |
* Author: Tyche Softwares
|
| 10 |
* Author URI: https://www.tychesoftwares.com/
|
| 11 |
* License: GPLv3 or later
|
