Changeset 3098233
- Timestamp:
- 06/05/2024 10:42:06 PM (21 months ago)
- Location:
- estimated-delivery-for-woocommerce
- Files:
-
- 4 added
- 30 edited
- 1 copied
-
tags/1.4.5 (copied) (copied from estimated-delivery-for-woocommerce/trunk)
-
tags/1.4.5/README.md (modified) (2 diffs)
-
tags/1.4.5/assets/fontawesome (added)
-
tags/1.4.5/assets/fontawesome/all.min.css (added)
-
tags/1.4.5/estimated-delivery-woocommerce.php (modified) (9 diffs)
-
tags/1.4.5/languages/estimated-delivery-for-woocommerce-es_ES.mo (modified) (previous)
-
tags/1.4.5/languages/estimated-delivery-for-woocommerce-es_ES.po (modified) (30 diffs)
-
tags/1.4.5/languages/estimated-delivery-for-woocommerce-fr_FR.mo (modified) (previous)
-
tags/1.4.5/languages/estimated-delivery-for-woocommerce-fr_FR.po (modified) (14 diffs)
-
tags/1.4.5/languages/estimated-delivery-for-woocommerce-it_IT.mo (modified) (previous)
-
tags/1.4.5/languages/estimated-delivery-for-woocommerce-it_IT.po (modified) (11 diffs)
-
tags/1.4.5/languages/estimated-delivery-for-woocommerce-nl_NL.mo (modified) (previous)
-
tags/1.4.5/languages/estimated-delivery-for-woocommerce-nl_NL.po (modified) (13 diffs)
-
tags/1.4.5/languages/estimated-delivery-for-woocommerce.pot (modified) (23 diffs)
-
tags/1.4.5/views/dokanmarketplace-metabox.php (modified) (8 diffs)
-
tags/1.4.5/views/options.php (modified) (3 diffs)
-
tags/1.4.5/views/wcfm-metabox.php (modified) (8 diffs)
-
tags/1.4.5/views/wcmarketplace-metabox.php (modified) (8 diffs)
-
trunk/README.md (modified) (2 diffs)
-
trunk/assets/fontawesome (added)
-
trunk/assets/fontawesome/all.min.css (added)
-
trunk/estimated-delivery-woocommerce.php (modified) (9 diffs)
-
trunk/languages/estimated-delivery-for-woocommerce-es_ES.mo (modified) (previous)
-
trunk/languages/estimated-delivery-for-woocommerce-es_ES.po (modified) (30 diffs)
-
trunk/languages/estimated-delivery-for-woocommerce-fr_FR.mo (modified) (previous)
-
trunk/languages/estimated-delivery-for-woocommerce-fr_FR.po (modified) (14 diffs)
-
trunk/languages/estimated-delivery-for-woocommerce-it_IT.mo (modified) (previous)
-
trunk/languages/estimated-delivery-for-woocommerce-it_IT.po (modified) (11 diffs)
-
trunk/languages/estimated-delivery-for-woocommerce-nl_NL.mo (modified) (previous)
-
trunk/languages/estimated-delivery-for-woocommerce-nl_NL.po (modified) (13 diffs)
-
trunk/languages/estimated-delivery-for-woocommerce.pot (modified) (23 diffs)
-
trunk/views/dokanmarketplace-metabox.php (modified) (8 diffs)
-
trunk/views/options.php (modified) (3 diffs)
-
trunk/views/wcfm-metabox.php (modified) (8 diffs)
-
trunk/views/wcmarketplace-metabox.php (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
estimated-delivery-for-woocommerce/tags/1.4.5/README.md
r3084584 r3098233 4 4 Tags: estimated delivery, delivery woocommerce, shipping date 5 5 Requires at least: 4.3 6 Tested up to: 6.5. 36 Tested up to: 6.5.4 7 7 Requires PHP: 5.0 8 Stable tag: 1.4.3 9 Licence: GPLv2 or later 8 Stable tag: 1.4.5 9 License: GPLv3 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html 11 10 12 Show estimated / guaranteed delivery, simple and easy 11 13 … … 44 46 == FAQ == 45 47 48 = Report Issues = 46 49 If you need support open a new ticket on [Github](https://github.com/DanielRiera/estimated-delivery-woocommerce/issues) 50 51 = FontAwesome = 52 The plugin can add Fontawesome Library if is need 53 54 = Icon config = 55 56 47 57 48 58 49 59 == Changelog == 60 61 = 1.4.5 = 62 * Add Icon support. 63 * Add library Fontawesome 6.5.2 if is need. 64 * Fix Import CSV product Overwrite. 50 65 51 66 = 1.4.3 = -
estimated-delivery-for-woocommerce/tags/1.4.5/estimated-delivery-woocommerce.php
r3084584 r3098233 6 6 * Author: Daniel Riera 7 7 * Author URI: https://danielriera.net 8 * Version: 1.4. 38 * Version: 1.4.5 9 9 * Text Domain: estimated-delivery-for-woocommerce 10 10 * Domain Path: /languages … … 12 12 * WC tested up to: 8.8.3 13 13 * Required WP: 5.0 14 * Tested WP: 6.3.2 15 * Licence: GPLv2 or later 14 * Tested WP: 6.5.4 15 * License: GPLv3 16 * License URI: https://www.gnu.org/licenses/gpl-3.0.html 16 17 */ 17 18 if(!defined('ABSPATH')) { exit; } … … 20 21 define('EDW_POSITION_SHOW', get_option('_edw_position', 'woocommerce_after_add_to_cart_button')); 21 22 define('EDW_USE_JS', get_option('_edw_cache', '0')); 22 define('EDW_Version', '1.4.3'); 23 define('EDW_Fontawesome', get_option('_edw_fontawesome', '0')); 24 define('EDW_Version', '1.4.5'); 23 25 24 26 require_once EDW_PATH . 'class.api.php'; … … 62 64 add_action('end_wcfm_products_manage', array(&$this, 'edw_wcmf_content_metabox'), 100, 4); 63 65 add_action('after_wcfm_products_manage_meta_save', array(&$this, 'edw_wcmf_save_data'), 501, 2); 66 67 if(EDW_Fontawesome == '1') { 68 add_action( 'wp_enqueue_scripts', array($this, 'edw_load_fontawesome') ); 69 } 64 70 65 71 //WCMP Compatiblity … … 233 239 } 234 240 } 235 if( sanitize_text_field( $_POST['_edw_days']) == '') {241 if(isset($_POST['_edw_days']) and sanitize_text_field( $_POST['_edw_days']) == '') { 236 242 update_post_meta($post_id, '_edw_overwrite','0'); 237 243 } … … 295 301 } 296 302 return false; 303 } 304 305 function edw_load_fontawesome() { 306 wp_enqueue_style( 'edw-fontawesome', plugins_url('assets/fontawesome/all.min.css?v='.EDW_Version, __FILE__)); 297 307 } 298 308 … … 371 381 372 382 if($productActive == '1') { 373 $mode = get_post_meta($product_id,'_edw_mode', true) ;383 $mode = get_post_meta($product_id,'_edw_mode', true) || '1'; 374 384 }else{ 375 $mode = get_option('_edw_mode' );385 $mode = get_option('_edw_mode', '1'); 376 386 } 377 387 … … 445 455 } 446 456 } 457 458 //Prevent default 459 $maxDays = intval($maxDays); 460 $disabledDays = $disabledDays ?: []; 447 461 448 462 $today = wp_date('Y-m-d'); … … 494 508 495 509 496 510 $iconset = get_option('_edw_icon', ''); 511 512 $icon_html = $iconset != '' ? '<i class="' . $iconset . '"></i> ' : ''; 497 513 if($mode == "1") { 498 514 $separed_title = __('Estimated delivery', 'estimated-delivery-for-woocommerce'); 499 $string = '<div class="edw_date">'. sprintf(__('Estimated delivery%s %s','estimated-delivery-for-woocommerce'), $elon, $date).'</div>';515 $string = '<div class="edw_date">'.$icon_html.sprintf(__('Estimated delivery%s %s','estimated-delivery-for-woocommerce'), $elon, $date).'</div>'; 500 516 }else{ 501 517 $separed_title = __('Guaranteed delivery','estimated-delivery-for-woocommerce'); 502 $string = '<div class="edw_date">'. sprintf(__('Guaranteed delivery%s %s','estimated-delivery-for-woocommerce'), $elon, $date).'</div>';518 $string = '<div class="edw_date">'.$icon_html.sprintf(__('Guaranteed delivery%s %s','estimated-delivery-for-woocommerce'), $elon, $date).'</div>'; 503 519 } 504 520 -
estimated-delivery-for-woocommerce/tags/1.4.5/languages/estimated-delivery-for-woocommerce-es_ES.po
r3082843 r3098233 2 2 msgstr "" 3 3 "Project-Id-Version: edwoo\n" 4 "POT-Creation-Date: 2024-0 5-07 23:32+0200\n"5 "PO-Revision-Date: 2024-0 5-07 23:32+0200\n"4 "POT-Creation-Date: 2024-06-06 00:37+0200\n" 5 "PO-Revision-Date: 2024-06-06 00:38+0200\n" 6 6 "Last-Translator: Daniel Riera <daniel@taxapro.com>\n" 7 7 "Language-Team: \n" … … 11 11 "Content-Transfer-Encoding: 8bit\n" 12 12 "Plural-Forms: nplurals=2; plural=(n != 1);\n" 13 "X-Generator: Poedit 3.4. 2\n"13 "X-Generator: Poedit 3.4.4\n" 14 14 "X-Poedit-Basepath: ..\n" 15 15 "X-Poedit-KeywordsList: __;_e\n" 16 16 "X-Poedit-SearchPath-0: .\n" 17 17 18 #: estimated-delivery-woocommerce.php:1 4319 #: estimated-delivery-woocommerce.php:2 0320 #: estimated-delivery-woocommerce.php:2 59views/wcfm-metabox.php:2118 #: estimated-delivery-woocommerce.php:151 19 #: estimated-delivery-woocommerce.php:211 20 #: estimated-delivery-woocommerce.php:267 views/wcfm-metabox.php:21 21 21 msgid "Estimated Delivery" 22 22 msgstr "Entrega Estimada" 23 23 24 #: estimated-delivery-woocommerce.php:2 6524 #: estimated-delivery-woocommerce.php:273 25 25 msgid "Disabled, use shortcode" 26 26 msgstr "Deshabilitar, usaré shortcode" 27 27 28 #: estimated-delivery-woocommerce.php:2 6628 #: estimated-delivery-woocommerce.php:274 29 29 msgid "After cart button" 30 30 msgstr "Después del botón de añadir al carrito" 31 31 32 #: estimated-delivery-woocommerce.php:2 6732 #: estimated-delivery-woocommerce.php:275 33 33 msgid "Before cart button" 34 34 msgstr "Antes del botón de añadir al carrito" 35 35 36 #: estimated-delivery-woocommerce.php:2 6836 #: estimated-delivery-woocommerce.php:276 37 37 msgid "After product meta" 38 38 msgstr "Después de la meta del producto" 39 39 40 #: estimated-delivery-woocommerce.php:2 6940 #: estimated-delivery-woocommerce.php:277 41 41 msgid "Before product summary" 42 42 msgstr "Antes del resumen del producto" 43 43 44 #: estimated-delivery-woocommerce.php:27 044 #: estimated-delivery-woocommerce.php:278 45 45 msgid "After product summary" 46 46 msgstr "Después del resumen del producto" 47 47 48 #: estimated-delivery-woocommerce.php:27 148 #: estimated-delivery-woocommerce.php:279 49 49 msgid "Product Thumbnail (may not work)" 50 50 msgstr "Debajo de la galería (Puede no funcionar)" 51 51 52 #: estimated-delivery-woocommerce.php:4 5652 #: estimated-delivery-woocommerce.php:472 53 53 msgid " on" 54 54 msgstr " el" 55 55 56 #: estimated-delivery-woocommerce.php:4 6557 #: estimated-delivery-woocommerce.php: 48656 #: estimated-delivery-woocommerce.php:481 57 #: estimated-delivery-woocommerce.php:502 58 58 #, php-format 59 59 msgid "this %s, %s" 60 60 msgstr "este %s, %s" 61 61 62 #: estimated-delivery-woocommerce.php:4 6863 #: estimated-delivery-woocommerce.php: 48962 #: estimated-delivery-woocommerce.php:484 63 #: estimated-delivery-woocommerce.php:505 64 64 #, php-format 65 65 msgid "the next %s, %s" 66 66 msgstr "el próximo %s, %s" 67 67 68 #: estimated-delivery-woocommerce.php: 49668 #: estimated-delivery-woocommerce.php:514 69 69 msgid "Estimated delivery" 70 70 msgstr "Entrega Estimada" 71 71 72 #: estimated-delivery-woocommerce.php: 49772 #: estimated-delivery-woocommerce.php:515 73 73 #, php-format 74 74 msgid "Estimated delivery%s %s" 75 75 msgstr "Entrega estimada%s %s" 76 76 77 #: estimated-delivery-woocommerce.php: 49977 #: estimated-delivery-woocommerce.php:517 78 78 msgid "Guaranteed delivery" 79 79 msgstr "Entrega Garantizada" 80 80 81 #: estimated-delivery-woocommerce.php:5 0081 #: estimated-delivery-woocommerce.php:518 82 82 #, php-format 83 83 msgid "Guaranteed delivery%s %s" … … 85 85 86 86 #: views/dokanmarketplace-metabox.php:16 views/metabox-product.php:18 87 #: views/options.php:2 30views/wcfm-metabox.php:2987 #: views/options.php:254 views/wcfm-metabox.php:29 88 88 #: views/wcmarketplace-metabox.php:12 89 89 msgid "Days for Delivery" … … 91 91 92 92 #: views/dokanmarketplace-metabox.php:24 views/metabox-product.php:26 93 #: views/options.php:2 38views/wcfm-metabox.php:3793 #: views/options.php:262 views/wcfm-metabox.php:37 94 94 #: views/wcmarketplace-metabox.php:20 95 95 msgid "Max Days for Delivery" … … 99 99 #: views/dokanmarketplace-metabox.php:59 views/metabox-product.php:27 100 100 #: views/metabox-product.php:44 views/metabox-product.php:61 101 #: views/options.php:2 39 views/options.php:256 views/options.php:273101 #: views/options.php:263 views/options.php:280 views/options.php:297 102 102 #: views/wcfm-metabox.php:38 views/wcfm-metabox.php:55 103 103 #: views/wcfm-metabox.php:72 views/wcmarketplace-metabox.php:21 … … 108 108 109 109 #: views/dokanmarketplace-metabox.php:33 views/metabox-product.php:35 110 #: views/options.php:2 47views/wcfm-metabox.php:46110 #: views/options.php:271 views/wcfm-metabox.php:46 111 111 #: views/wcmarketplace-metabox.php:29 112 112 msgid "Days for Delivery out of stock" … … 114 114 115 115 #: views/dokanmarketplace-metabox.php:41 views/metabox-product.php:43 116 #: views/options.php:2 55views/wcfm-metabox.php:54116 #: views/options.php:279 views/wcfm-metabox.php:54 117 117 #: views/wcmarketplace-metabox.php:37 118 118 msgid "Max Days for Delivery out of stock" … … 120 120 121 121 #: views/dokanmarketplace-metabox.php:50 views/metabox-product.php:52 122 #: views/options.php:2 64views/wcfm-metabox.php:63122 #: views/options.php:288 views/wcfm-metabox.php:63 123 123 #: views/wcmarketplace-metabox.php:46 124 124 msgid "Days for Delivery Backorders" … … 126 126 127 127 #: views/dokanmarketplace-metabox.php:58 views/metabox-product.php:60 128 #: views/options.php:2 72views/wcfm-metabox.php:71128 #: views/options.php:296 views/wcfm-metabox.php:71 129 129 #: views/wcmarketplace-metabox.php:54 130 130 msgid "Max Days for Delivery Backorders" … … 132 132 133 133 #: views/dokanmarketplace-metabox.php:67 views/metabox-product.php:69 134 #: views/options.php: 297views/wcfm-metabox.php:80134 #: views/options.php:321 views/wcfm-metabox.php:80 135 135 #: views/wcmarketplace-metabox.php:63 136 136 msgid "Estimated or Guaranteed" … … 138 138 139 139 #: views/dokanmarketplace-metabox.php:68 views/metabox-product.php:70 140 #: views/options.php: 298views/wcfm-metabox.php:81140 #: views/options.php:322 views/wcfm-metabox.php:81 141 141 #: views/wcmarketplace-metabox.php:64 142 142 msgid "The message will change." … … 144 144 145 145 #: views/dokanmarketplace-metabox.php:73 views/metabox-product.php:75 146 #: views/options.php:3 03views/wcfm-metabox.php:86146 #: views/options.php:327 views/wcfm-metabox.php:86 147 147 #: views/wcmarketplace-metabox.php:69 148 148 msgid "Estimated" … … 150 150 151 151 #: views/dokanmarketplace-metabox.php:74 views/metabox-product.php:76 152 #: views/options.php:3 04views/wcfm-metabox.php:87152 #: views/options.php:328 views/wcfm-metabox.php:87 153 153 #: views/wcmarketplace-metabox.php:70 154 154 msgid "Guaranteed" … … 156 156 157 157 #: views/dokanmarketplace-metabox.php:80 views/metabox-product.php:82 158 #: views/options.php:3 10views/wcfm-metabox.php:93158 #: views/options.php:334 views/wcfm-metabox.php:93 159 159 #: views/wcmarketplace-metabox.php:76 160 160 msgid "Days disabled" … … 162 162 163 163 #: views/dokanmarketplace-metabox.php:81 views/metabox-product.php:83 164 #: views/options.php:3 11views/wcfm-metabox.php:94164 #: views/options.php:335 views/wcfm-metabox.php:94 165 165 #: views/wcmarketplace-metabox.php:77 166 166 msgid "Select the days that NO shipments are made." … … 168 168 169 169 #: views/dokanmarketplace-metabox.php:86 views/metabox-product.php:88 170 #: views/options.php:3 16views/wcfm-metabox.php:99170 #: views/options.php:340 views/wcfm-metabox.php:99 171 171 #: views/wcmarketplace-metabox.php:82 172 172 msgid "Monday" … … 174 174 175 175 #: views/dokanmarketplace-metabox.php:91 views/metabox-product.php:93 176 #: views/options.php:3 21views/wcfm-metabox.php:104176 #: views/options.php:345 views/wcfm-metabox.php:104 177 177 #: views/wcmarketplace-metabox.php:87 178 178 msgid "Tuesday" … … 180 180 181 181 #: views/dokanmarketplace-metabox.php:96 views/metabox-product.php:98 182 #: views/options.php:3 26views/wcfm-metabox.php:109182 #: views/options.php:350 views/wcfm-metabox.php:109 183 183 #: views/wcmarketplace-metabox.php:92 184 184 msgid "Wednesday" … … 186 186 187 187 #: views/dokanmarketplace-metabox.php:101 views/metabox-product.php:103 188 #: views/options.php:3 31views/wcfm-metabox.php:114188 #: views/options.php:355 views/wcfm-metabox.php:114 189 189 #: views/wcmarketplace-metabox.php:97 190 190 msgid "Thursday" … … 192 192 193 193 #: views/dokanmarketplace-metabox.php:106 views/metabox-product.php:108 194 #: views/options.php:3 36views/wcfm-metabox.php:119194 #: views/options.php:360 views/wcfm-metabox.php:119 195 195 #: views/wcmarketplace-metabox.php:102 196 196 msgid "Friday" … … 198 198 199 199 #: views/dokanmarketplace-metabox.php:111 views/metabox-product.php:113 200 #: views/options.php:3 41views/wcfm-metabox.php:124200 #: views/options.php:365 views/wcfm-metabox.php:124 201 201 #: views/wcmarketplace-metabox.php:107 202 202 msgid "Saturday" … … 204 204 205 205 #: views/dokanmarketplace-metabox.php:116 views/metabox-product.php:118 206 #: views/options.php:3 46views/wcfm-metabox.php:129206 #: views/options.php:370 views/wcfm-metabox.php:129 207 207 #: views/wcmarketplace-metabox.php:112 208 208 msgid "Sunday" … … 213 213 msgstr "Sobreescribir configuración" 214 214 215 #: views/options.php: 84215 #: views/options.php:91 216 216 msgid "An error has occurred, try again." 217 217 msgstr "Ha ocurrido un error, pruebe de nuevo." 218 218 219 #: views/options.php: 88219 #: views/options.php:95 220 220 msgid "Welcome to newsletter :)" 221 221 msgstr "Bienvenid@ al newsletter" 222 222 223 #: views/options.php:13 1223 #: views/options.php:138 224 224 msgid "Estimated Delivery for Woocommerce" 225 225 msgstr "Entrega Estimada para WooCommerce" 226 226 227 #: views/options.php:13 2227 #: views/options.php:139 228 228 msgid "Show the estimated or guaranteed delivery for the product" 229 229 msgstr "Muestra la entrega estimada o garantizada por cada producto" 230 230 231 #: views/options.php:1 39231 #: views/options.php:146 232 232 msgid "Do you want to receive the latest?" 233 233 msgstr "¿Quieres recibir lo último?" 234 234 235 #: views/options.php:14 0235 #: views/options.php:147 236 236 msgid "" 237 237 "Thank you very much for using our plugin, if you want to receive the latest " … … 241 241 "ofertas, promociones, descuentos...Inscríbete en nuestro boletín. :)" 242 242 243 #: views/options.php:14 2243 #: views/options.php:149 244 244 msgid "Required" 245 245 msgstr "Requerido" 246 246 247 #: views/options.php:15 0247 #: views/options.php:157 248 248 msgid "Submit" 249 249 msgstr "Enviar" 250 250 251 #: views/options.php:15 0251 #: views/options.php:157 252 252 msgid "Processing" 253 253 msgstr "Procesando" 254 254 255 #: views/options.php:1 63255 #: views/options.php:170 256 256 msgid "" 257 257 "Developing this plugin takes time, so if you like it, we invite you to make " … … 263 263 "actualizando, añadiendo novedades, esto será siempre gratis." 264 264 265 #: views/options.php:1 64265 #: views/options.php:171 266 266 msgid "Make a donation now to help development" 267 267 msgstr "Realiza una donación ahora par ayudar al desarrollo" 268 268 269 #: views/options.php:1 73269 #: views/options.php:180 270 270 msgid "Use AJAX" 271 271 msgstr "Usar AJAX" 272 272 273 #: views/options.php:1 74273 #: views/options.php:181 274 274 msgid "If your site use cache system, active this option." 275 275 msgstr "Si tu sitio usa cache, activa esta opción." 276 276 277 #: views/options.php:18 2277 #: views/options.php:189 278 278 msgid "Delivery same day" 279 279 msgstr "Envío en el mismo día" 280 280 281 #: views/options.php:1 83281 #: views/options.php:190 282 282 msgid "" 283 283 "When you set 0 in any option the estimated delivery is disabled, activate " … … 285 285 msgstr "" 286 286 "Cuando estableces en 0 cualquier opción de días, se deshabilitan, activa " 287 "esta opción para permitir establecer en 0 y mostrar la fecha "288 289 #: views/options.php:19 1287 "esta opción para permitir establecer en 0 y mostrar la fecha." 288 289 #: views/options.php:198 290 290 msgid "Show date on order (Admin and Customer)" 291 291 msgstr "Mostrar fecha en pedidos (Administrador y Clientes)" 292 292 293 #: views/options.php:19 2293 #: views/options.php:199 294 294 msgid "" 295 295 "If you activate this option, the date will be stored with the order, the " … … 299 299 "ver la fecha en cada producto del pedido." 300 300 301 #: views/options.php:20 0301 #: views/options.php:207 302 302 msgid "Show date Products Lists" 303 303 msgstr "Mostrar fecha en listado de productos" 304 304 305 #: views/options.php:20 1305 #: views/options.php:208 306 306 msgid "" 307 307 "If you activate this option date show on each product on list, Store, " … … 312 312 "página." 313 313 314 #: views/options.php:210 314 #: views/options.php:216 315 msgid "Icon" 316 msgstr "Icono" 317 318 #: views/options.php:217 319 msgid "" 320 "You can use always icon, fontawesome, only class name for example: fas fa-" 321 "truck-moving" 322 msgstr "" 323 "Puedes usar un icono, FontAwesome, use la clase del icono por ejemplo: fas " 324 "fa-truck-moving" 325 326 #: views/options.php:225 327 msgid "¿Problem with Icon?" 328 msgstr "¿Problema con el icono?" 329 330 #: views/options.php:226 331 msgid "Load FontAwesome Library." 332 msgstr "Cargue la librería FontAwesome." 333 334 #: views/options.php:234 315 335 msgid "Maximum Time" 316 336 msgstr "Tiempo máximo" 317 337 318 #: views/options.php:2 12338 #: views/options.php:236 319 339 #, php-format 320 340 msgid "" … … 325 345 "HH:mm ahora son %s" 326 346 327 #: views/options.php:2 21347 #: views/options.php:245 328 348 msgid "Use Relative Dates" 329 349 msgstr "Usar fechas relativas" 330 350 331 #: views/options.php:2 22351 #: views/options.php:246 332 352 msgid "Only work with current and next week" 333 353 msgstr "Solo funciona con la semana actual y la próxima" 334 354 335 #: views/options.php: 281355 #: views/options.php:305 336 356 msgid "Date Formats" 337 357 msgstr "Formato de fechas" 338 358 339 #: views/options.php: 282359 #: views/options.php:306 340 360 msgid "You can change date format use" 341 361 msgstr "Puedes cambiar el formato de fecha que usa el plugin" 342 362 343 #: views/options.php: 285363 #: views/options.php:309 344 364 msgid "Same month and year, different day (00 - 00 MM, YYYY)" 345 365 msgstr "Mismo mes y año, diferente día (00 - 00 MM, YYYY)" 346 366 347 #: views/options.php: 288367 #: views/options.php:312 348 368 msgid "Same year, different day and month (00 MM - 00 MM, YYYY)" 349 369 msgstr "Mismo año, diferente día y mes (00 MM - 00 MM, YYYY)" 350 370 351 #: views/options.php: 291371 #: views/options.php:315 352 372 msgid "All different (00 MM YYYY - 00 MM YYYY)" 353 373 msgstr "Todo diferente (00 MM YYYY - 00 MM YYYY)" 354 374 355 #: views/options.php:3 51375 #: views/options.php:375 356 376 msgid "Position" 357 377 msgstr "Posición" 358 378 359 #: views/options.php:3 65379 #: views/options.php:389 360 380 msgid "Holidays Dates" 361 381 msgstr "Fecha de Vacaciones" 362 382 363 #: views/options.php:3 66383 #: views/options.php:390 364 384 msgid "" 365 385 "Dates with comma separated, YYYY/MM/DD, on YEAR use XXXX for dynamic year. " … … 369 389 "ejemplo: XXXX/12/31" 370 390 371 #: views/options.php:3 74391 #: views/options.php:398 372 392 msgid "Save" 373 393 msgstr "Guardar" 374 394 375 #: views/options.php: 376395 #: views/options.php:400 376 396 msgid "Need style?" 377 397 msgstr "Necesitas dar estilos?" 378 398 379 #: views/options.php: 377399 #: views/options.php:401 380 400 msgid "Enjoy! Paste this CSS code into your Customizer and edit as you like" 381 401 msgstr "" -
estimated-delivery-for-woocommerce/tags/1.4.5/languages/estimated-delivery-for-woocommerce-fr_FR.po
r2906408 r3098233 2 2 msgstr "" 3 3 "Project-Id-Version: \n" 4 "POT-Creation-Date: 202 3-05-01 02:01+0200\n"5 "PO-Revision-Date: 202 3-05-01 02:01+0200\n"4 "POT-Creation-Date: 2024-06-06 00:39+0200\n" 5 "PO-Revision-Date: 2024-06-06 00:39+0200\n" 6 6 "Last-Translator: \n" 7 7 "Language-Team: \n" … … 11 11 "Content-Transfer-Encoding: 8bit\n" 12 12 "Plural-Forms: nplurals=2; plural=(n > 1);\n" 13 "X-Generator: Poedit 3. 2.2\n"13 "X-Generator: Poedit 3.4.4\n" 14 14 "X-Poedit-Basepath: ..\n" 15 15 "X-Poedit-KeywordsList: __;_e\n" 16 16 "X-Poedit-SearchPath-0: .\n" 17 17 18 #: estimated-delivery-woocommerce.php:1 0119 #: estimated-delivery-woocommerce.php: 15620 #: estimated-delivery-woocommerce.php:2 1018 #: estimated-delivery-woocommerce.php:151 19 #: estimated-delivery-woocommerce.php:211 20 #: estimated-delivery-woocommerce.php:267 views/wcfm-metabox.php:21 21 21 msgid "Estimated Delivery" 22 22 msgstr "Livraison estimée" 23 23 24 #: estimated-delivery-woocommerce.php:2 1624 #: estimated-delivery-woocommerce.php:273 25 25 msgid "Disabled, use shortcode" 26 26 msgstr "Désactivé, utilisez le shortcode" 27 27 28 #: estimated-delivery-woocommerce.php:2 1728 #: estimated-delivery-woocommerce.php:274 29 29 msgid "After cart button" 30 30 msgstr "Bouton Après le panier" 31 31 32 #: estimated-delivery-woocommerce.php:2 1832 #: estimated-delivery-woocommerce.php:275 33 33 msgid "Before cart button" 34 34 msgstr "Bouton Avant le panier" 35 35 36 #: estimated-delivery-woocommerce.php:2 1936 #: estimated-delivery-woocommerce.php:276 37 37 msgid "After product meta" 38 38 msgstr "Méta produit après" 39 39 40 #: estimated-delivery-woocommerce.php:2 2040 #: estimated-delivery-woocommerce.php:277 41 41 msgid "Before product summary" 42 42 msgstr "Avant le résumé du produit" 43 43 44 #: estimated-delivery-woocommerce.php:2 2144 #: estimated-delivery-woocommerce.php:278 45 45 msgid "After product summary" 46 46 msgstr "Après le résumé du produit" 47 47 48 #: estimated-delivery-woocommerce.php:2 2248 #: estimated-delivery-woocommerce.php:279 49 49 msgid "Product Thumbnail (may not work)" 50 50 msgstr "Vignette du produit (peut ne pas fonctionner)" 51 51 52 #: estimated-delivery-woocommerce.php: 38152 #: estimated-delivery-woocommerce.php:472 53 53 msgid " on" 54 54 msgstr " on" 55 55 56 #: estimated-delivery-woocommerce.php: 39057 #: estimated-delivery-woocommerce.php: 41156 #: estimated-delivery-woocommerce.php:481 57 #: estimated-delivery-woocommerce.php:502 58 58 #, php-format 59 59 msgid "this %s, %s" 60 60 msgstr "ce %s, %s" 61 61 62 #: estimated-delivery-woocommerce.php: 39363 #: estimated-delivery-woocommerce.php: 41462 #: estimated-delivery-woocommerce.php:484 63 #: estimated-delivery-woocommerce.php:505 64 64 #, php-format 65 65 msgid "the next %s, %s" 66 66 msgstr "les prochains %s, %s" 67 67 68 #: estimated-delivery-woocommerce.php: 42168 #: estimated-delivery-woocommerce.php:514 69 69 msgid "Estimated delivery" 70 70 msgstr "Livraison estimée" 71 71 72 #: estimated-delivery-woocommerce.php: 42272 #: estimated-delivery-woocommerce.php:515 73 73 #, php-format 74 74 msgid "Estimated delivery%s %s" 75 75 msgstr "Livraison estimée%s %s" 76 76 77 #: estimated-delivery-woocommerce.php: 42477 #: estimated-delivery-woocommerce.php:517 78 78 msgid "Guaranteed delivery" 79 79 msgstr "Livraison garantie" 80 80 81 #: estimated-delivery-woocommerce.php: 42581 #: estimated-delivery-woocommerce.php:518 82 82 #, php-format 83 83 msgid "Guaranteed delivery%s %s" … … 85 85 86 86 #: views/dokanmarketplace-metabox.php:16 views/metabox-product.php:18 87 #: views/options.php:219 views/wcmarketplace-metabox.php:12 87 #: views/options.php:254 views/wcfm-metabox.php:29 88 #: views/wcmarketplace-metabox.php:12 88 89 msgid "Days for Delivery" 89 90 msgstr "Jours de livraison" 90 91 91 92 #: views/dokanmarketplace-metabox.php:24 views/metabox-product.php:26 92 #: views/options.php:227 views/wcmarketplace-metabox.php:20 93 #: views/options.php:262 views/wcfm-metabox.php:37 94 #: views/wcmarketplace-metabox.php:20 93 95 msgid "Max Days for Delivery" 94 96 msgstr "Jours maximum pour la livraison" … … 97 99 #: views/dokanmarketplace-metabox.php:59 views/metabox-product.php:27 98 100 #: views/metabox-product.php:44 views/metabox-product.php:61 99 #: views/options.php:228 views/options.php:245 views/options.php:262 100 #: views/wcmarketplace-metabox.php:21 views/wcmarketplace-metabox.php:38 101 #: views/wcmarketplace-metabox.php:55 101 #: views/options.php:263 views/options.php:280 views/options.php:297 102 #: views/wcfm-metabox.php:38 views/wcfm-metabox.php:55 103 #: views/wcfm-metabox.php:72 views/wcmarketplace-metabox.php:21 104 #: views/wcmarketplace-metabox.php:38 views/wcmarketplace-metabox.php:55 102 105 msgid "Set 0 for disable. If this set more than 0 days, it will show a range." 103 106 msgstr "" … … 106 109 107 110 #: views/dokanmarketplace-metabox.php:33 views/metabox-product.php:35 108 #: views/options.php:236 views/wcmarketplace-metabox.php:29 111 #: views/options.php:271 views/wcfm-metabox.php:46 112 #: views/wcmarketplace-metabox.php:29 109 113 msgid "Days for Delivery out of stock" 110 114 msgstr "Jours de livraison en rupture de stock" 111 115 112 116 #: views/dokanmarketplace-metabox.php:41 views/metabox-product.php:43 113 #: views/options.php:244 views/wcmarketplace-metabox.php:37 117 #: views/options.php:279 views/wcfm-metabox.php:54 118 #: views/wcmarketplace-metabox.php:37 114 119 msgid "Max Days for Delivery out of stock" 115 120 msgstr "Jours maximum de livraison en rupture de stock" 116 121 117 122 #: views/dokanmarketplace-metabox.php:50 views/metabox-product.php:52 118 #: views/options.php:253 views/wcmarketplace-metabox.php:46 123 #: views/options.php:288 views/wcfm-metabox.php:63 124 #: views/wcmarketplace-metabox.php:46 119 125 #, fuzzy 120 126 #| msgid "Days for Delivery" … … 123 129 124 130 #: views/dokanmarketplace-metabox.php:58 views/metabox-product.php:60 125 #: views/options.php:261 views/wcmarketplace-metabox.php:54 131 #: views/options.php:296 views/wcfm-metabox.php:71 132 #: views/wcmarketplace-metabox.php:54 126 133 #, fuzzy 127 134 #| msgid "Max Days for Delivery" … … 130 137 131 138 #: views/dokanmarketplace-metabox.php:67 views/metabox-product.php:69 132 #: views/options.php:270 views/wcmarketplace-metabox.php:63 139 #: views/options.php:321 views/wcfm-metabox.php:80 140 #: views/wcmarketplace-metabox.php:63 133 141 msgid "Estimated or Guaranteed" 134 142 msgstr "Estimé ou garanti" 135 143 136 144 #: views/dokanmarketplace-metabox.php:68 views/metabox-product.php:70 137 #: views/options.php:271 views/wcmarketplace-metabox.php:64 145 #: views/options.php:322 views/wcfm-metabox.php:81 146 #: views/wcmarketplace-metabox.php:64 138 147 msgid "The message will change." 139 148 msgstr "Le message va changer." 140 149 141 150 #: views/dokanmarketplace-metabox.php:73 views/metabox-product.php:75 142 #: views/options.php:276 views/wcmarketplace-metabox.php:69 151 #: views/options.php:327 views/wcfm-metabox.php:86 152 #: views/wcmarketplace-metabox.php:69 143 153 msgid "Estimated" 144 154 msgstr "Estimé" 145 155 146 156 #: views/dokanmarketplace-metabox.php:74 views/metabox-product.php:76 147 #: views/options.php:277 views/wcmarketplace-metabox.php:70 157 #: views/options.php:328 views/wcfm-metabox.php:87 158 #: views/wcmarketplace-metabox.php:70 148 159 msgid "Guaranteed" 149 160 msgstr "Garanti" 150 161 151 162 #: views/dokanmarketplace-metabox.php:80 views/metabox-product.php:82 152 #: views/options.php:283 views/wcmarketplace-metabox.php:76 163 #: views/options.php:334 views/wcfm-metabox.php:93 164 #: views/wcmarketplace-metabox.php:76 153 165 msgid "Days disabled" 154 166 msgstr "Jours désactivés" 155 167 156 168 #: views/dokanmarketplace-metabox.php:81 views/metabox-product.php:83 157 #: views/options.php:284 views/wcmarketplace-metabox.php:77 169 #: views/options.php:335 views/wcfm-metabox.php:94 170 #: views/wcmarketplace-metabox.php:77 158 171 msgid "Select the days that NO shipments are made." 159 172 msgstr "Sélectionnez les jours où AUCUNE expédition n'est effectuée." 160 173 161 174 #: views/dokanmarketplace-metabox.php:86 views/metabox-product.php:88 162 #: views/options.php:289 views/wcmarketplace-metabox.php:82 175 #: views/options.php:340 views/wcfm-metabox.php:99 176 #: views/wcmarketplace-metabox.php:82 163 177 msgid "Monday" 164 178 msgstr "Lundi" 165 179 166 180 #: views/dokanmarketplace-metabox.php:91 views/metabox-product.php:93 167 #: views/options.php:294 views/wcmarketplace-metabox.php:87 181 #: views/options.php:345 views/wcfm-metabox.php:104 182 #: views/wcmarketplace-metabox.php:87 168 183 msgid "Tuesday" 169 184 msgstr "Mardi" 170 185 171 186 #: views/dokanmarketplace-metabox.php:96 views/metabox-product.php:98 172 #: views/options.php:299 views/wcmarketplace-metabox.php:92 187 #: views/options.php:350 views/wcfm-metabox.php:109 188 #: views/wcmarketplace-metabox.php:92 173 189 msgid "Wednesday" 174 190 msgstr "Mercredi" 175 191 176 192 #: views/dokanmarketplace-metabox.php:101 views/metabox-product.php:103 177 #: views/options.php:304 views/wcmarketplace-metabox.php:97 193 #: views/options.php:355 views/wcfm-metabox.php:114 194 #: views/wcmarketplace-metabox.php:97 178 195 msgid "Thursday" 179 196 msgstr "Jeudi" 180 197 181 198 #: views/dokanmarketplace-metabox.php:106 views/metabox-product.php:108 182 #: views/options.php:309 views/wcmarketplace-metabox.php:102 199 #: views/options.php:360 views/wcfm-metabox.php:119 200 #: views/wcmarketplace-metabox.php:102 183 201 msgid "Friday" 184 202 msgstr "Vendredi" 185 203 186 204 #: views/dokanmarketplace-metabox.php:111 views/metabox-product.php:113 187 #: views/options.php:314 views/wcmarketplace-metabox.php:107 205 #: views/options.php:365 views/wcfm-metabox.php:124 206 #: views/wcmarketplace-metabox.php:107 188 207 msgid "Saturday" 189 208 msgstr "Samedi" 190 209 191 210 #: views/dokanmarketplace-metabox.php:116 views/metabox-product.php:118 192 #: views/options.php:319 views/wcmarketplace-metabox.php:112 211 #: views/options.php:370 views/wcfm-metabox.php:129 212 #: views/wcmarketplace-metabox.php:112 193 213 msgid "Sunday" 194 214 msgstr "Dimanche" … … 198 218 msgstr "Ecraser les paramètres généraux" 199 219 200 #: views/options.php: 73220 #: views/options.php:91 201 221 msgid "An error has occurred, try again." 202 222 msgstr "Une erreur s'est produite, réessayez." 203 223 204 #: views/options.php: 77224 #: views/options.php:95 205 225 msgid "Welcome to newsletter :)" 206 226 msgstr "Bienvenue dans la newsletter :)" 207 227 208 #: views/options.php:1 20228 #: views/options.php:138 209 229 msgid "Estimated Delivery for Woocommerce" 210 230 msgstr "Estimation du délai de livraison pour Woocommerce" 211 231 212 #: views/options.php:1 21232 #: views/options.php:139 213 233 msgid "Show the estimated or guaranteed delivery for the product" 214 234 msgstr "Afficher la livraison estimée ou garantie pour le produit" 215 235 216 #: views/options.php:1 28236 #: views/options.php:146 217 237 msgid "Do you want to receive the latest?" 218 238 msgstr "Voulez-vous recevoir les dernières informations ?" 219 239 220 #: views/options.php:1 29240 #: views/options.php:147 221 241 msgid "" 222 242 "Thank you very much for using our plugin, if you want to receive the latest " … … 227 247 "notre newsletter. :)" 228 248 229 #: views/options.php:1 31249 #: views/options.php:149 230 250 msgid "Required" 231 251 msgstr "Requis" 232 252 233 #: views/options.php:1 39253 #: views/options.php:157 234 254 msgid "Submit" 235 255 msgstr "Soumettre" 236 256 237 #: views/options.php:1 39257 #: views/options.php:157 238 258 msgid "Processing" 239 259 msgstr "" 240 260 241 #: views/options.php:1 52261 #: views/options.php:170 242 262 msgid "" 243 263 "Developing this plugin takes time, so if you like it, we invite you to make " … … 249 269 "et mettre à jour, ajouter des nouvelles, ce sera toujours gratuit." 250 270 251 #: views/options.php:1 53271 #: views/options.php:171 252 272 msgid "Make a donation now to help development" 253 273 msgstr "Faites un don maintenant pour aider au développement" 254 274 255 #: views/options.php:1 62275 #: views/options.php:180 256 276 msgid "Use AJAX" 257 277 msgstr "Utiliser AJAX" 258 278 259 #: views/options.php:1 63279 #: views/options.php:181 260 280 msgid "If your site use cache system, active this option." 261 281 msgstr "Si votre site utilise un système de cache, activez cette option." 262 282 263 #: views/options.php:1 71283 #: views/options.php:189 264 284 msgid "Delivery same day" 265 285 msgstr "" 266 286 267 #: views/options.php:1 72287 #: views/options.php:190 268 288 msgid "" 269 289 "When you set 0 in any option the estimated delivery is disabled, activate " … … 271 291 msgstr "" 272 292 273 #: views/options.php:1 80293 #: views/options.php:198 274 294 msgid "Show date on order (Admin and Customer)" 275 295 msgstr "" 276 296 277 #: views/options.php:1 81297 #: views/options.php:199 278 298 msgid "" 279 299 "If you activate this option, the date will be stored with the order, the " … … 281 301 msgstr "" 282 302 283 #: views/options.php: 189303 #: views/options.php:207 284 304 msgid "Show date Products Lists" 285 305 msgstr "" 286 306 287 #: views/options.php: 190307 #: views/options.php:208 288 308 msgid "" 289 309 "If you activate this option date show on each product on list, Store, " … … 291 311 msgstr "" 292 312 293 #: views/options.php:199 313 #: views/options.php:216 314 msgid "Icon" 315 msgstr "" 316 317 #: views/options.php:217 318 msgid "" 319 "You can use always icon, fontawesome, only class name for example: fas fa-" 320 "truck-moving" 321 msgstr "" 322 323 #: views/options.php:225 324 msgid "¿Problem with Icon?" 325 msgstr "" 326 327 #: views/options.php:226 328 msgid "Load FontAwesome Library." 329 msgstr "" 330 331 #: views/options.php:234 294 332 msgid "Maximum Time" 295 333 msgstr "" 296 334 297 #: views/options.php:2 01335 #: views/options.php:236 298 336 #, php-format 299 337 msgid "" … … 302 340 msgstr "" 303 341 304 #: views/options.php:2 10342 #: views/options.php:245 305 343 msgid "Use Relative Dates" 306 344 msgstr "Utiliser les dates relatives" 307 345 308 #: views/options.php:2 11346 #: views/options.php:246 309 347 msgid "Only work with current and next week" 310 348 msgstr "Ne fonctionne qu'avec la semaine en cours et la semaine prochaine" 311 349 312 #: views/options.php:324 350 #: views/options.php:305 351 msgid "Date Formats" 352 msgstr "" 353 354 #: views/options.php:306 355 msgid "You can change date format use" 356 msgstr "" 357 358 #: views/options.php:309 359 msgid "Same month and year, different day (00 - 00 MM, YYYY)" 360 msgstr "" 361 362 #: views/options.php:312 363 msgid "Same year, different day and month (00 MM - 00 MM, YYYY)" 364 msgstr "" 365 366 #: views/options.php:315 367 msgid "All different (00 MM YYYY - 00 MM YYYY)" 368 msgstr "" 369 370 #: views/options.php:375 313 371 msgid "Position" 314 372 msgstr "Position" 315 373 316 #: views/options.php:338 374 #: views/options.php:389 375 msgid "Holidays Dates" 376 msgstr "" 377 378 #: views/options.php:390 379 msgid "" 380 "Dates with comma separated, YYYY/MM/DD, on YEAR use XXXX for dynamic year. " 381 "Example: XXXX/12/31" 382 msgstr "" 383 384 #: views/options.php:398 317 385 msgid "Save" 318 386 msgstr "Enregistrer" 319 387 320 #: views/options.php: 340388 #: views/options.php:400 321 389 msgid "Need style?" 322 390 msgstr "Besoin de style ?" 323 391 324 #: views/options.php: 341392 #: views/options.php:401 325 393 msgid "Enjoy! Paste this CSS code into your Customizer and edit as you like" 326 394 msgstr "" -
estimated-delivery-for-woocommerce/tags/1.4.5/languages/estimated-delivery-for-woocommerce-it_IT.po
r2906408 r3098233 5 5 "Project-Id-Version: Plugins - Estimated Delivery for Woocomerce - Stable " 6 6 "(latest release)\n" 7 "POT-Creation-Date: 202 3-05-01 02:01+0200\n"8 "PO-Revision-Date: 202 3-05-01 02:03+0200\n"7 "POT-Creation-Date: 2024-06-06 00:39+0200\n" 8 "PO-Revision-Date: 2024-06-06 00:39+0200\n" 9 9 "Last-Translator: \n" 10 10 "Language-Team: \n" … … 14 14 "Content-Transfer-Encoding: 8bit\n" 15 15 "Plural-Forms: nplurals=2; plural=n != 1;\n" 16 "X-Generator: Poedit 3. 2.2\n"17 18 #: estimated-delivery-woocommerce.php:1 0119 #: estimated-delivery-woocommerce.php: 15620 #: estimated-delivery-woocommerce.php:2 1016 "X-Generator: Poedit 3.4.4\n" 17 18 #: estimated-delivery-woocommerce.php:151 19 #: estimated-delivery-woocommerce.php:211 20 #: estimated-delivery-woocommerce.php:267 views/wcfm-metabox.php:21 21 21 msgid "Estimated Delivery" 22 22 msgstr "" 23 23 24 #: estimated-delivery-woocommerce.php:2 1624 #: estimated-delivery-woocommerce.php:273 25 25 msgid "Disabled, use shortcode" 26 26 msgstr "" 27 27 28 #: estimated-delivery-woocommerce.php:2 1728 #: estimated-delivery-woocommerce.php:274 29 29 msgid "After cart button" 30 30 msgstr "" 31 31 32 #: estimated-delivery-woocommerce.php:2 1832 #: estimated-delivery-woocommerce.php:275 33 33 msgid "Before cart button" 34 34 msgstr "" 35 35 36 #: estimated-delivery-woocommerce.php:2 1936 #: estimated-delivery-woocommerce.php:276 37 37 msgid "After product meta" 38 38 msgstr "" 39 39 40 #: estimated-delivery-woocommerce.php:2 2040 #: estimated-delivery-woocommerce.php:277 41 41 msgid "Before product summary" 42 42 msgstr "" 43 43 44 #: estimated-delivery-woocommerce.php:2 2144 #: estimated-delivery-woocommerce.php:278 45 45 msgid "After product summary" 46 46 msgstr "" 47 47 48 #: estimated-delivery-woocommerce.php:2 2248 #: estimated-delivery-woocommerce.php:279 49 49 msgid "Product Thumbnail (may not work)" 50 50 msgstr "" 51 51 52 #: estimated-delivery-woocommerce.php: 38152 #: estimated-delivery-woocommerce.php:472 53 53 msgid " on" 54 54 msgstr "" 55 55 56 #: estimated-delivery-woocommerce.php: 39057 #: estimated-delivery-woocommerce.php: 41156 #: estimated-delivery-woocommerce.php:481 57 #: estimated-delivery-woocommerce.php:502 58 58 #, php-format 59 59 msgid "this %s, %s" 60 60 msgstr "" 61 61 62 #: estimated-delivery-woocommerce.php: 39363 #: estimated-delivery-woocommerce.php: 41462 #: estimated-delivery-woocommerce.php:484 63 #: estimated-delivery-woocommerce.php:505 64 64 #, php-format 65 65 msgid "the next %s, %s" 66 66 msgstr "" 67 67 68 #: estimated-delivery-woocommerce.php: 42168 #: estimated-delivery-woocommerce.php:514 69 69 msgid "Estimated delivery" 70 70 msgstr "" 71 71 72 #: estimated-delivery-woocommerce.php: 42272 #: estimated-delivery-woocommerce.php:515 73 73 #, php-format 74 74 msgid "Estimated delivery%s %s" 75 75 msgstr "" 76 76 77 #: estimated-delivery-woocommerce.php: 42477 #: estimated-delivery-woocommerce.php:517 78 78 msgid "Guaranteed delivery" 79 79 msgstr "" 80 80 81 #: estimated-delivery-woocommerce.php: 42581 #: estimated-delivery-woocommerce.php:518 82 82 #, php-format 83 83 msgid "Guaranteed delivery%s %s" … … 85 85 86 86 #: views/dokanmarketplace-metabox.php:16 views/metabox-product.php:18 87 #: views/options.php:219 views/wcmarketplace-metabox.php:12 87 #: views/options.php:254 views/wcfm-metabox.php:29 88 #: views/wcmarketplace-metabox.php:12 88 89 msgid "Days for Delivery" 89 90 msgstr "" 90 91 91 92 #: views/dokanmarketplace-metabox.php:24 views/metabox-product.php:26 92 #: views/options.php:227 views/wcmarketplace-metabox.php:20 93 #: views/options.php:262 views/wcfm-metabox.php:37 94 #: views/wcmarketplace-metabox.php:20 93 95 msgid "Max Days for Delivery" 94 96 msgstr "" … … 97 99 #: views/dokanmarketplace-metabox.php:59 views/metabox-product.php:27 98 100 #: views/metabox-product.php:44 views/metabox-product.php:61 99 #: views/options.php:228 views/options.php:245 views/options.php:262 100 #: views/wcmarketplace-metabox.php:21 views/wcmarketplace-metabox.php:38 101 #: views/wcmarketplace-metabox.php:55 101 #: views/options.php:263 views/options.php:280 views/options.php:297 102 #: views/wcfm-metabox.php:38 views/wcfm-metabox.php:55 103 #: views/wcfm-metabox.php:72 views/wcmarketplace-metabox.php:21 104 #: views/wcmarketplace-metabox.php:38 views/wcmarketplace-metabox.php:55 102 105 msgid "Set 0 for disable. If this set more than 0 days, it will show a range." 103 106 msgstr "" 104 107 105 108 #: views/dokanmarketplace-metabox.php:33 views/metabox-product.php:35 106 #: views/options.php:236 views/wcmarketplace-metabox.php:29 109 #: views/options.php:271 views/wcfm-metabox.php:46 110 #: views/wcmarketplace-metabox.php:29 107 111 msgid "Days for Delivery out of stock" 108 112 msgstr "" 109 113 110 114 #: views/dokanmarketplace-metabox.php:41 views/metabox-product.php:43 111 #: views/options.php:244 views/wcmarketplace-metabox.php:37 115 #: views/options.php:279 views/wcfm-metabox.php:54 116 #: views/wcmarketplace-metabox.php:37 112 117 msgid "Max Days for Delivery out of stock" 113 118 msgstr "" 114 119 115 120 #: views/dokanmarketplace-metabox.php:50 views/metabox-product.php:52 116 #: views/options.php:253 views/wcmarketplace-metabox.php:46 121 #: views/options.php:288 views/wcfm-metabox.php:63 122 #: views/wcmarketplace-metabox.php:46 117 123 msgid "Days for Delivery Backorders" 118 124 msgstr "" 119 125 120 126 #: views/dokanmarketplace-metabox.php:58 views/metabox-product.php:60 121 #: views/options.php:261 views/wcmarketplace-metabox.php:54 127 #: views/options.php:296 views/wcfm-metabox.php:71 128 #: views/wcmarketplace-metabox.php:54 122 129 msgid "Max Days for Delivery Backorders" 123 130 msgstr "" 124 131 125 132 #: views/dokanmarketplace-metabox.php:67 views/metabox-product.php:69 126 #: views/options.php:270 views/wcmarketplace-metabox.php:63 133 #: views/options.php:321 views/wcfm-metabox.php:80 134 #: views/wcmarketplace-metabox.php:63 127 135 msgid "Estimated or Guaranteed" 128 136 msgstr "" 129 137 130 138 #: views/dokanmarketplace-metabox.php:68 views/metabox-product.php:70 131 #: views/options.php:271 views/wcmarketplace-metabox.php:64 139 #: views/options.php:322 views/wcfm-metabox.php:81 140 #: views/wcmarketplace-metabox.php:64 132 141 msgid "The message will change." 133 142 msgstr "" 134 143 135 144 #: views/dokanmarketplace-metabox.php:73 views/metabox-product.php:75 136 #: views/options.php:276 views/wcmarketplace-metabox.php:69 145 #: views/options.php:327 views/wcfm-metabox.php:86 146 #: views/wcmarketplace-metabox.php:69 137 147 msgid "Estimated" 138 148 msgstr "" 139 149 140 150 #: views/dokanmarketplace-metabox.php:74 views/metabox-product.php:76 141 #: views/options.php:277 views/wcmarketplace-metabox.php:70 151 #: views/options.php:328 views/wcfm-metabox.php:87 152 #: views/wcmarketplace-metabox.php:70 142 153 msgid "Guaranteed" 143 154 msgstr "" 144 155 145 156 #: views/dokanmarketplace-metabox.php:80 views/metabox-product.php:82 146 #: views/options.php:283 views/wcmarketplace-metabox.php:76 157 #: views/options.php:334 views/wcfm-metabox.php:93 158 #: views/wcmarketplace-metabox.php:76 147 159 msgid "Days disabled" 148 160 msgstr "" 149 161 150 162 #: views/dokanmarketplace-metabox.php:81 views/metabox-product.php:83 151 #: views/options.php:284 views/wcmarketplace-metabox.php:77 163 #: views/options.php:335 views/wcfm-metabox.php:94 164 #: views/wcmarketplace-metabox.php:77 152 165 msgid "Select the days that NO shipments are made." 153 166 msgstr "" 154 167 155 168 #: views/dokanmarketplace-metabox.php:86 views/metabox-product.php:88 156 #: views/options.php:289 views/wcmarketplace-metabox.php:82 169 #: views/options.php:340 views/wcfm-metabox.php:99 170 #: views/wcmarketplace-metabox.php:82 157 171 msgid "Monday" 158 172 msgstr "" 159 173 160 174 #: views/dokanmarketplace-metabox.php:91 views/metabox-product.php:93 161 #: views/options.php:294 views/wcmarketplace-metabox.php:87 175 #: views/options.php:345 views/wcfm-metabox.php:104 176 #: views/wcmarketplace-metabox.php:87 162 177 msgid "Tuesday" 163 178 msgstr "" 164 179 165 180 #: views/dokanmarketplace-metabox.php:96 views/metabox-product.php:98 166 #: views/options.php:299 views/wcmarketplace-metabox.php:92 181 #: views/options.php:350 views/wcfm-metabox.php:109 182 #: views/wcmarketplace-metabox.php:92 167 183 msgid "Wednesday" 168 184 msgstr "" 169 185 170 186 #: views/dokanmarketplace-metabox.php:101 views/metabox-product.php:103 171 #: views/options.php:304 views/wcmarketplace-metabox.php:97 187 #: views/options.php:355 views/wcfm-metabox.php:114 188 #: views/wcmarketplace-metabox.php:97 172 189 msgid "Thursday" 173 190 msgstr "" 174 191 175 192 #: views/dokanmarketplace-metabox.php:106 views/metabox-product.php:108 176 #: views/options.php:309 views/wcmarketplace-metabox.php:102 193 #: views/options.php:360 views/wcfm-metabox.php:119 194 #: views/wcmarketplace-metabox.php:102 177 195 msgid "Friday" 178 196 msgstr "" 179 197 180 198 #: views/dokanmarketplace-metabox.php:111 views/metabox-product.php:113 181 #: views/options.php:314 views/wcmarketplace-metabox.php:107 199 #: views/options.php:365 views/wcfm-metabox.php:124 200 #: views/wcmarketplace-metabox.php:107 182 201 msgid "Saturday" 183 202 msgstr "" 184 203 185 204 #: views/dokanmarketplace-metabox.php:116 views/metabox-product.php:118 186 #: views/options.php:319 views/wcmarketplace-metabox.php:112 205 #: views/options.php:370 views/wcfm-metabox.php:129 206 #: views/wcmarketplace-metabox.php:112 187 207 msgid "Sunday" 188 208 msgstr "" … … 192 212 msgstr "" 193 213 194 #: views/options.php: 73214 #: views/options.php:91 195 215 msgid "An error has occurred, try again." 196 216 msgstr "" 197 217 198 #: views/options.php: 77218 #: views/options.php:95 199 219 msgid "Welcome to newsletter :)" 200 220 msgstr "" 201 221 202 #: views/options.php:1 20222 #: views/options.php:138 203 223 msgid "Estimated Delivery for Woocommerce" 204 224 msgstr "" 205 225 206 #: views/options.php:1 21226 #: views/options.php:139 207 227 msgid "Show the estimated or guaranteed delivery for the product" 208 228 msgstr "" 209 229 210 #: views/options.php:1 28230 #: views/options.php:146 211 231 msgid "Do you want to receive the latest?" 212 232 msgstr "" 213 233 214 #: views/options.php:1 29234 #: views/options.php:147 215 235 msgid "" 216 236 "Thank you very much for using our plugin, if you want to receive the latest " … … 218 238 msgstr "" 219 239 220 #: views/options.php:1 31240 #: views/options.php:149 221 241 msgid "Required" 222 242 msgstr "" 223 243 224 #: views/options.php:1 39244 #: views/options.php:157 225 245 msgid "Submit" 226 246 msgstr "" 227 247 228 #: views/options.php:1 39248 #: views/options.php:157 229 249 msgid "Processing" 230 250 msgstr "" 231 251 232 #: views/options.php:1 52252 #: views/options.php:170 233 253 msgid "" 234 254 "Developing this plugin takes time, so if you like it, we invite you to make " … … 237 257 msgstr "" 238 258 239 #: views/options.php:1 53259 #: views/options.php:171 240 260 msgid "Make a donation now to help development" 241 261 msgstr "" 242 262 243 #: views/options.php:1 62263 #: views/options.php:180 244 264 msgid "Use AJAX" 245 265 msgstr "" 246 266 247 #: views/options.php:1 63267 #: views/options.php:181 248 268 msgid "If your site use cache system, active this option." 249 269 msgstr "" 250 270 251 #: views/options.php:1 71271 #: views/options.php:189 252 272 msgid "Delivery same day" 253 273 msgstr "" 254 274 255 #: views/options.php:1 72275 #: views/options.php:190 256 276 msgid "" 257 277 "When you set 0 in any option the estimated delivery is disabled, activate " … … 259 279 msgstr "" 260 280 261 #: views/options.php:1 80281 #: views/options.php:198 262 282 msgid "Show date on order (Admin and Customer)" 263 283 msgstr "" 264 284 265 #: views/options.php:1 81285 #: views/options.php:199 266 286 msgid "" 267 287 "If you activate this option, the date will be stored with the order, the " … … 269 289 msgstr "" 270 290 271 #: views/options.php: 189291 #: views/options.php:207 272 292 msgid "Show date Products Lists" 273 293 msgstr "" 274 294 275 #: views/options.php: 190295 #: views/options.php:208 276 296 msgid "" 277 297 "If you activate this option date show on each product on list, Store, " … … 279 299 msgstr "" 280 300 281 #: views/options.php:199 301 #: views/options.php:216 302 msgid "Icon" 303 msgstr "" 304 305 #: views/options.php:217 306 msgid "" 307 "You can use always icon, fontawesome, only class name for example: fas fa-" 308 "truck-moving" 309 msgstr "" 310 311 #: views/options.php:225 312 msgid "¿Problem with Icon?" 313 msgstr "" 314 315 #: views/options.php:226 316 msgid "Load FontAwesome Library." 317 msgstr "" 318 319 #: views/options.php:234 282 320 msgid "Maximum Time" 283 321 msgstr "" 284 322 285 #: views/options.php:2 01323 #: views/options.php:236 286 324 #, php-format 287 325 msgid "" … … 290 328 msgstr "" 291 329 292 #: views/options.php:2 10330 #: views/options.php:245 293 331 msgid "Use Relative Dates" 294 332 msgstr "" 295 333 296 #: views/options.php:2 11334 #: views/options.php:246 297 335 msgid "Only work with current and next week" 298 336 msgstr "" 299 337 300 #: views/options.php:324 338 #: views/options.php:305 339 msgid "Date Formats" 340 msgstr "" 341 342 #: views/options.php:306 343 msgid "You can change date format use" 344 msgstr "" 345 346 #: views/options.php:309 347 msgid "Same month and year, different day (00 - 00 MM, YYYY)" 348 msgstr "" 349 350 #: views/options.php:312 351 msgid "Same year, different day and month (00 MM - 00 MM, YYYY)" 352 msgstr "" 353 354 #: views/options.php:315 355 msgid "All different (00 MM YYYY - 00 MM YYYY)" 356 msgstr "" 357 358 #: views/options.php:375 301 359 msgid "Position" 302 360 msgstr "" 303 361 304 #: views/options.php:338 362 #: views/options.php:389 363 msgid "Holidays Dates" 364 msgstr "" 365 366 #: views/options.php:390 367 msgid "" 368 "Dates with comma separated, YYYY/MM/DD, on YEAR use XXXX for dynamic year. " 369 "Example: XXXX/12/31" 370 msgstr "" 371 372 #: views/options.php:398 305 373 msgid "Save" 306 374 msgstr "" 307 375 308 #: views/options.php: 340376 #: views/options.php:400 309 377 msgid "Need style?" 310 378 msgstr "" 311 379 312 #: views/options.php: 341380 #: views/options.php:401 313 381 msgid "Enjoy! Paste this CSS code into your Customizer and edit as you like" 314 382 msgstr "" -
estimated-delivery-for-woocommerce/tags/1.4.5/languages/estimated-delivery-for-woocommerce-nl_NL.po
r2906408 r3098233 5 5 "Project-Id-Version: Plugins - Estimated Delivery for Woocomerce - Stable " 6 6 "(latest release)\n" 7 "POT-Creation-Date: 202 3-05-01 02:01+0200\n"8 "PO-Revision-Date: 202 3-05-01 02:02+0200\n"7 "POT-Creation-Date: 2024-06-06 00:39+0200\n" 8 "PO-Revision-Date: 2024-06-06 00:39+0200\n" 9 9 "Last-Translator: \n" 10 10 "Language-Team: \n" … … 14 14 "Content-Transfer-Encoding: 8bit\n" 15 15 "Plural-Forms: nplurals=2; plural=n != 1;\n" 16 "X-Generator: Poedit 3. 2.2\n"17 18 #: estimated-delivery-woocommerce.php:1 0119 #: estimated-delivery-woocommerce.php: 15620 #: estimated-delivery-woocommerce.php:2 1016 "X-Generator: Poedit 3.4.4\n" 17 18 #: estimated-delivery-woocommerce.php:151 19 #: estimated-delivery-woocommerce.php:211 20 #: estimated-delivery-woocommerce.php:267 views/wcfm-metabox.php:21 21 21 msgid "Estimated Delivery" 22 22 msgstr "" 23 23 24 #: estimated-delivery-woocommerce.php:2 1624 #: estimated-delivery-woocommerce.php:273 25 25 msgid "Disabled, use shortcode" 26 26 msgstr "" 27 27 28 #: estimated-delivery-woocommerce.php:2 1728 #: estimated-delivery-woocommerce.php:274 29 29 msgid "After cart button" 30 30 msgstr "" 31 31 32 #: estimated-delivery-woocommerce.php:2 1832 #: estimated-delivery-woocommerce.php:275 33 33 msgid "Before cart button" 34 34 msgstr "" 35 35 36 #: estimated-delivery-woocommerce.php:2 1936 #: estimated-delivery-woocommerce.php:276 37 37 msgid "After product meta" 38 38 msgstr "" 39 39 40 #: estimated-delivery-woocommerce.php:2 2040 #: estimated-delivery-woocommerce.php:277 41 41 msgid "Before product summary" 42 42 msgstr "" 43 43 44 #: estimated-delivery-woocommerce.php:2 2144 #: estimated-delivery-woocommerce.php:278 45 45 msgid "After product summary" 46 46 msgstr "" 47 47 48 #: estimated-delivery-woocommerce.php:2 2248 #: estimated-delivery-woocommerce.php:279 49 49 msgid "Product Thumbnail (may not work)" 50 50 msgstr "" 51 51 52 #: estimated-delivery-woocommerce.php: 38152 #: estimated-delivery-woocommerce.php:472 53 53 msgid " on" 54 54 msgstr "" 55 55 56 #: estimated-delivery-woocommerce.php: 39057 #: estimated-delivery-woocommerce.php: 41156 #: estimated-delivery-woocommerce.php:481 57 #: estimated-delivery-woocommerce.php:502 58 58 #, php-format 59 59 msgid "this %s, %s" 60 60 msgstr "" 61 61 62 #: estimated-delivery-woocommerce.php: 39363 #: estimated-delivery-woocommerce.php: 41462 #: estimated-delivery-woocommerce.php:484 63 #: estimated-delivery-woocommerce.php:505 64 64 #, php-format 65 65 msgid "the next %s, %s" 66 66 msgstr "de volgende %s, %s" 67 67 68 #: estimated-delivery-woocommerce.php: 42168 #: estimated-delivery-woocommerce.php:514 69 69 #, fuzzy 70 70 #| msgid "Estimated" … … 72 72 msgstr "Geschat" 73 73 74 #: estimated-delivery-woocommerce.php: 42274 #: estimated-delivery-woocommerce.php:515 75 75 #, php-format 76 76 msgid "Estimated delivery%s %s" 77 77 msgstr "" 78 78 79 #: estimated-delivery-woocommerce.php: 42479 #: estimated-delivery-woocommerce.php:517 80 80 #, fuzzy 81 81 #| msgid "Guaranteed" … … 83 83 msgstr "gegarandeerd" 84 84 85 #: estimated-delivery-woocommerce.php: 42585 #: estimated-delivery-woocommerce.php:518 86 86 #, php-format 87 87 msgid "Guaranteed delivery%s %s" … … 89 89 90 90 #: views/dokanmarketplace-metabox.php:16 views/metabox-product.php:18 91 #: views/options.php:219 views/wcmarketplace-metabox.php:12 91 #: views/options.php:254 views/wcfm-metabox.php:29 92 #: views/wcmarketplace-metabox.php:12 92 93 msgid "Days for Delivery" 93 94 msgstr "Dagen voor levering" 94 95 95 96 #: views/dokanmarketplace-metabox.php:24 views/metabox-product.php:26 96 #: views/options.php:227 views/wcmarketplace-metabox.php:20 97 #: views/options.php:262 views/wcfm-metabox.php:37 98 #: views/wcmarketplace-metabox.php:20 97 99 msgid "Max Days for Delivery" 98 100 msgstr "" … … 101 103 #: views/dokanmarketplace-metabox.php:59 views/metabox-product.php:27 102 104 #: views/metabox-product.php:44 views/metabox-product.php:61 103 #: views/options.php:228 views/options.php:245 views/options.php:262 104 #: views/wcmarketplace-metabox.php:21 views/wcmarketplace-metabox.php:38 105 #: views/wcmarketplace-metabox.php:55 105 #: views/options.php:263 views/options.php:280 views/options.php:297 106 #: views/wcfm-metabox.php:38 views/wcfm-metabox.php:55 107 #: views/wcfm-metabox.php:72 views/wcmarketplace-metabox.php:21 108 #: views/wcmarketplace-metabox.php:38 views/wcmarketplace-metabox.php:55 106 109 msgid "Set 0 for disable. If this set more than 0 days, it will show a range." 107 110 msgstr "" 108 111 109 112 #: views/dokanmarketplace-metabox.php:33 views/metabox-product.php:35 110 #: views/options.php:236 views/wcmarketplace-metabox.php:29 113 #: views/options.php:271 views/wcfm-metabox.php:46 114 #: views/wcmarketplace-metabox.php:29 111 115 msgid "Days for Delivery out of stock" 112 116 msgstr "" 113 117 114 118 #: views/dokanmarketplace-metabox.php:41 views/metabox-product.php:43 115 #: views/options.php:244 views/wcmarketplace-metabox.php:37 119 #: views/options.php:279 views/wcfm-metabox.php:54 120 #: views/wcmarketplace-metabox.php:37 116 121 msgid "Max Days for Delivery out of stock" 117 122 msgstr "" 118 123 119 124 #: views/dokanmarketplace-metabox.php:50 views/metabox-product.php:52 120 #: views/options.php:253 views/wcmarketplace-metabox.php:46 125 #: views/options.php:288 views/wcfm-metabox.php:63 126 #: views/wcmarketplace-metabox.php:46 121 127 msgid "Days for Delivery Backorders" 122 128 msgstr "" 123 129 124 130 #: views/dokanmarketplace-metabox.php:58 views/metabox-product.php:60 125 #: views/options.php:261 views/wcmarketplace-metabox.php:54 131 #: views/options.php:296 views/wcfm-metabox.php:71 132 #: views/wcmarketplace-metabox.php:54 126 133 msgid "Max Days for Delivery Backorders" 127 134 msgstr "" 128 135 129 136 #: views/dokanmarketplace-metabox.php:67 views/metabox-product.php:69 130 #: views/options.php:270 views/wcmarketplace-metabox.php:63 137 #: views/options.php:321 views/wcfm-metabox.php:80 138 #: views/wcmarketplace-metabox.php:63 131 139 msgid "Estimated or Guaranteed" 132 140 msgstr "Geschat of gegarandeerd" 133 141 134 142 #: views/dokanmarketplace-metabox.php:68 views/metabox-product.php:70 135 #: views/options.php:271 views/wcmarketplace-metabox.php:64 143 #: views/options.php:322 views/wcfm-metabox.php:81 144 #: views/wcmarketplace-metabox.php:64 136 145 msgid "The message will change." 137 146 msgstr "Het bericht wordt gewijzigd." 138 147 139 148 #: views/dokanmarketplace-metabox.php:73 views/metabox-product.php:75 140 #: views/options.php:276 views/wcmarketplace-metabox.php:69 149 #: views/options.php:327 views/wcfm-metabox.php:86 150 #: views/wcmarketplace-metabox.php:69 141 151 msgid "Estimated" 142 152 msgstr "Geschat" 143 153 144 154 #: views/dokanmarketplace-metabox.php:74 views/metabox-product.php:76 145 #: views/options.php:277 views/wcmarketplace-metabox.php:70 155 #: views/options.php:328 views/wcfm-metabox.php:87 156 #: views/wcmarketplace-metabox.php:70 146 157 msgid "Guaranteed" 147 158 msgstr "gegarandeerd" 148 159 149 160 #: views/dokanmarketplace-metabox.php:80 views/metabox-product.php:82 150 #: views/options.php:283 views/wcmarketplace-metabox.php:76 161 #: views/options.php:334 views/wcfm-metabox.php:93 162 #: views/wcmarketplace-metabox.php:76 151 163 msgid "Days disabled" 152 164 msgstr "Dagen uitgeschakeld" 153 165 154 166 #: views/dokanmarketplace-metabox.php:81 views/metabox-product.php:83 155 #: views/options.php:284 views/wcmarketplace-metabox.php:77 167 #: views/options.php:335 views/wcfm-metabox.php:94 168 #: views/wcmarketplace-metabox.php:77 156 169 msgid "Select the days that NO shipments are made." 157 170 msgstr "Selecteer de dagen dat er GEEN bestellingen worden verzonden." 158 171 159 172 #: views/dokanmarketplace-metabox.php:86 views/metabox-product.php:88 160 #: views/options.php:289 views/wcmarketplace-metabox.php:82 173 #: views/options.php:340 views/wcfm-metabox.php:99 174 #: views/wcmarketplace-metabox.php:82 161 175 msgid "Monday" 162 176 msgstr "Maandag" 163 177 164 178 #: views/dokanmarketplace-metabox.php:91 views/metabox-product.php:93 165 #: views/options.php:294 views/wcmarketplace-metabox.php:87 179 #: views/options.php:345 views/wcfm-metabox.php:104 180 #: views/wcmarketplace-metabox.php:87 166 181 msgid "Tuesday" 167 182 msgstr "Dinsdag" 168 183 169 184 #: views/dokanmarketplace-metabox.php:96 views/metabox-product.php:98 170 #: views/options.php:299 views/wcmarketplace-metabox.php:92 185 #: views/options.php:350 views/wcfm-metabox.php:109 186 #: views/wcmarketplace-metabox.php:92 171 187 msgid "Wednesday" 172 188 msgstr "Woensdag" 173 189 174 190 #: views/dokanmarketplace-metabox.php:101 views/metabox-product.php:103 175 #: views/options.php:304 views/wcmarketplace-metabox.php:97 191 #: views/options.php:355 views/wcfm-metabox.php:114 192 #: views/wcmarketplace-metabox.php:97 176 193 msgid "Thursday" 177 194 msgstr "Donderdag" 178 195 179 196 #: views/dokanmarketplace-metabox.php:106 views/metabox-product.php:108 180 #: views/options.php:309 views/wcmarketplace-metabox.php:102 197 #: views/options.php:360 views/wcfm-metabox.php:119 198 #: views/wcmarketplace-metabox.php:102 181 199 msgid "Friday" 182 200 msgstr "Vrijdag" 183 201 184 202 #: views/dokanmarketplace-metabox.php:111 views/metabox-product.php:113 185 #: views/options.php:314 views/wcmarketplace-metabox.php:107 203 #: views/options.php:365 views/wcfm-metabox.php:124 204 #: views/wcmarketplace-metabox.php:107 186 205 msgid "Saturday" 187 206 msgstr "Zaterdag" 188 207 189 208 #: views/dokanmarketplace-metabox.php:116 views/metabox-product.php:118 190 #: views/options.php:319 views/wcmarketplace-metabox.php:112 209 #: views/options.php:370 views/wcfm-metabox.php:129 210 #: views/wcmarketplace-metabox.php:112 191 211 msgid "Sunday" 192 212 msgstr "Zondag" … … 196 216 msgstr "" 197 217 198 #: views/options.php: 73218 #: views/options.php:91 199 219 msgid "An error has occurred, try again." 200 220 msgstr "Er is een fout opgetreden. Probeer het opnieuw." 201 221 202 #: views/options.php: 77222 #: views/options.php:95 203 223 msgid "Welcome to newsletter :)" 204 224 msgstr "Welkom bij de nieuwsbrief :)" 205 225 206 #: views/options.php:1 20226 #: views/options.php:138 207 227 msgid "Estimated Delivery for Woocommerce" 208 228 msgstr "" 209 229 210 #: views/options.php:1 21230 #: views/options.php:139 211 231 msgid "Show the estimated or guaranteed delivery for the product" 212 232 msgstr "" 213 233 214 #: views/options.php:1 28234 #: views/options.php:146 215 235 msgid "Do you want to receive the latest?" 216 236 msgstr "Wil je het laatste nieuws ontvangen?" 217 237 218 #: views/options.php:1 29238 #: views/options.php:147 219 239 msgid "" 220 240 "Thank you very much for using our plugin, if you want to receive the latest " … … 225 245 "voor onze nieuwsbrief. :)" 226 246 227 #: views/options.php:1 31247 #: views/options.php:149 228 248 msgid "Required" 229 249 msgstr "Verplicht" 230 250 231 #: views/options.php:1 39251 #: views/options.php:157 232 252 msgid "Submit" 233 253 msgstr "Verstuur" 234 254 235 #: views/options.php:1 39255 #: views/options.php:157 236 256 msgid "Processing" 237 257 msgstr "Verwerken" 238 258 239 #: views/options.php:1 52259 #: views/options.php:170 240 260 msgid "" 241 261 "Developing this plugin takes time, so if you like it, we invite you to make " … … 247 267 "ontwikkelen, updaten en nieuws toevoegen, dit zal altijd gratis zijn." 248 268 249 #: views/options.php:1 53269 #: views/options.php:171 250 270 msgid "Make a donation now to help development" 251 271 msgstr "Maak een donatie om de ontwikkeling te helpen" 252 272 253 #: views/options.php:1 62273 #: views/options.php:180 254 274 msgid "Use AJAX" 255 275 msgstr "AJAX gebruiken" 256 276 257 #: views/options.php:1 63277 #: views/options.php:181 258 278 msgid "If your site use cache system, active this option." 259 279 msgstr "" 260 280 261 #: views/options.php:1 71281 #: views/options.php:189 262 282 msgid "Delivery same day" 263 283 msgstr "Levering op dezelfde dag" 264 284 265 #: views/options.php:1 72285 #: views/options.php:190 266 286 msgid "" 267 287 "When you set 0 in any option the estimated delivery is disabled, activate " … … 269 289 msgstr "" 270 290 271 #: views/options.php:1 80291 #: views/options.php:198 272 292 msgid "Show date on order (Admin and Customer)" 273 293 msgstr "" 274 294 275 #: views/options.php:1 81295 #: views/options.php:199 276 296 msgid "" 277 297 "If you activate this option, the date will be stored with the order, the " … … 279 299 msgstr "" 280 300 281 #: views/options.php: 189301 #: views/options.php:207 282 302 msgid "Show date Products Lists" 283 303 msgstr "" 284 304 285 #: views/options.php: 190305 #: views/options.php:208 286 306 msgid "" 287 307 "If you activate this option date show on each product on list, Store, " … … 289 309 msgstr "" 290 310 291 #: views/options.php:199 311 #: views/options.php:216 312 msgid "Icon" 313 msgstr "" 314 315 #: views/options.php:217 316 msgid "" 317 "You can use always icon, fontawesome, only class name for example: fas fa-" 318 "truck-moving" 319 msgstr "" 320 321 #: views/options.php:225 322 msgid "¿Problem with Icon?" 323 msgstr "" 324 325 #: views/options.php:226 326 msgid "Load FontAwesome Library." 327 msgstr "" 328 329 #: views/options.php:234 292 330 msgid "Maximum Time" 293 331 msgstr "" 294 332 295 #: views/options.php:2 01333 #: views/options.php:236 296 334 #, php-format 297 335 msgid "" … … 300 338 msgstr "" 301 339 302 #: views/options.php:2 10340 #: views/options.php:245 303 341 msgid "Use Relative Dates" 304 342 msgstr "Gebruik relatieve datums" 305 343 306 #: views/options.php:2 11344 #: views/options.php:246 307 345 msgid "Only work with current and next week" 308 346 msgstr "" 309 347 310 #: views/options.php:324 348 #: views/options.php:305 349 msgid "Date Formats" 350 msgstr "" 351 352 #: views/options.php:306 353 msgid "You can change date format use" 354 msgstr "" 355 356 #: views/options.php:309 357 msgid "Same month and year, different day (00 - 00 MM, YYYY)" 358 msgstr "" 359 360 #: views/options.php:312 361 msgid "Same year, different day and month (00 MM - 00 MM, YYYY)" 362 msgstr "" 363 364 #: views/options.php:315 365 msgid "All different (00 MM YYYY - 00 MM YYYY)" 366 msgstr "" 367 368 #: views/options.php:375 311 369 msgid "Position" 312 370 msgstr "Positie" 313 371 314 #: views/options.php:338 372 #: views/options.php:389 373 msgid "Holidays Dates" 374 msgstr "" 375 376 #: views/options.php:390 377 msgid "" 378 "Dates with comma separated, YYYY/MM/DD, on YEAR use XXXX for dynamic year. " 379 "Example: XXXX/12/31" 380 msgstr "" 381 382 #: views/options.php:398 315 383 msgid "Save" 316 384 msgstr "Opslaan" 317 385 318 #: views/options.php: 340386 #: views/options.php:400 319 387 msgid "Need style?" 320 388 msgstr "" 321 389 322 #: views/options.php: 341390 #: views/options.php:401 323 391 msgid "Enjoy! Paste this CSS code into your Customizer and edit as you like" 324 392 msgstr "" -
estimated-delivery-for-woocommerce/tags/1.4.5/languages/estimated-delivery-for-woocommerce.pot
r3082843 r3098233 3 3 msgstr "" 4 4 "Project-Id-Version: \n" 5 "POT-Creation-Date: 2024-0 5-07 23:32+0200\n"5 "POT-Creation-Date: 2024-06-06 00:39+0200\n" 6 6 "PO-Revision-Date: 2019-08-28 20:35+0200\n" 7 7 "Last-Translator: \n" … … 12 12 "Content-Transfer-Encoding: 8bit\n" 13 13 "Plural-Forms: nplurals=2; plural=(n != 1);\n" 14 "X-Generator: Poedit 3.4. 2\n"14 "X-Generator: Poedit 3.4.4\n" 15 15 "X-Poedit-Basepath: ..\n" 16 16 "X-Poedit-KeywordsList: __;_e\n" 17 17 "X-Poedit-SearchPath-0: .\n" 18 18 19 #: estimated-delivery-woocommerce.php:1 4320 #: estimated-delivery-woocommerce.php:2 0321 #: estimated-delivery-woocommerce.php:2 59views/wcfm-metabox.php:2119 #: estimated-delivery-woocommerce.php:151 20 #: estimated-delivery-woocommerce.php:211 21 #: estimated-delivery-woocommerce.php:267 views/wcfm-metabox.php:21 22 22 msgid "Estimated Delivery" 23 23 msgstr "" 24 24 25 #: estimated-delivery-woocommerce.php:2 6525 #: estimated-delivery-woocommerce.php:273 26 26 msgid "Disabled, use shortcode" 27 27 msgstr "" 28 28 29 #: estimated-delivery-woocommerce.php:2 6629 #: estimated-delivery-woocommerce.php:274 30 30 msgid "After cart button" 31 31 msgstr "" 32 32 33 #: estimated-delivery-woocommerce.php:2 6733 #: estimated-delivery-woocommerce.php:275 34 34 msgid "Before cart button" 35 35 msgstr "" 36 36 37 #: estimated-delivery-woocommerce.php:2 6837 #: estimated-delivery-woocommerce.php:276 38 38 msgid "After product meta" 39 39 msgstr "" 40 40 41 #: estimated-delivery-woocommerce.php:2 6941 #: estimated-delivery-woocommerce.php:277 42 42 msgid "Before product summary" 43 43 msgstr "" 44 44 45 #: estimated-delivery-woocommerce.php:27 045 #: estimated-delivery-woocommerce.php:278 46 46 msgid "After product summary" 47 47 msgstr "" 48 48 49 #: estimated-delivery-woocommerce.php:27 149 #: estimated-delivery-woocommerce.php:279 50 50 msgid "Product Thumbnail (may not work)" 51 51 msgstr "" 52 52 53 #: estimated-delivery-woocommerce.php:4 5653 #: estimated-delivery-woocommerce.php:472 54 54 msgid " on" 55 55 msgstr "" 56 56 57 #: estimated-delivery-woocommerce.php:4 6558 #: estimated-delivery-woocommerce.php: 48657 #: estimated-delivery-woocommerce.php:481 58 #: estimated-delivery-woocommerce.php:502 59 59 #, php-format 60 60 msgid "this %s, %s" 61 61 msgstr "" 62 62 63 #: estimated-delivery-woocommerce.php:4 6864 #: estimated-delivery-woocommerce.php: 48963 #: estimated-delivery-woocommerce.php:484 64 #: estimated-delivery-woocommerce.php:505 65 65 #, php-format 66 66 msgid "the next %s, %s" 67 67 msgstr "" 68 68 69 #: estimated-delivery-woocommerce.php: 49669 #: estimated-delivery-woocommerce.php:514 70 70 msgid "Estimated delivery" 71 71 msgstr "" 72 72 73 #: estimated-delivery-woocommerce.php: 49773 #: estimated-delivery-woocommerce.php:515 74 74 #, php-format 75 75 msgid "Estimated delivery%s %s" 76 76 msgstr "" 77 77 78 #: estimated-delivery-woocommerce.php: 49978 #: estimated-delivery-woocommerce.php:517 79 79 msgid "Guaranteed delivery" 80 80 msgstr "" 81 81 82 #: estimated-delivery-woocommerce.php:5 0082 #: estimated-delivery-woocommerce.php:518 83 83 #, php-format 84 84 msgid "Guaranteed delivery%s %s" … … 86 86 87 87 #: views/dokanmarketplace-metabox.php:16 views/metabox-product.php:18 88 #: views/options.php:2 30views/wcfm-metabox.php:2988 #: views/options.php:254 views/wcfm-metabox.php:29 89 89 #: views/wcmarketplace-metabox.php:12 90 90 msgid "Days for Delivery" … … 92 92 93 93 #: views/dokanmarketplace-metabox.php:24 views/metabox-product.php:26 94 #: views/options.php:2 38views/wcfm-metabox.php:3794 #: views/options.php:262 views/wcfm-metabox.php:37 95 95 #: views/wcmarketplace-metabox.php:20 96 96 msgid "Max Days for Delivery" … … 100 100 #: views/dokanmarketplace-metabox.php:59 views/metabox-product.php:27 101 101 #: views/metabox-product.php:44 views/metabox-product.php:61 102 #: views/options.php:2 39 views/options.php:256 views/options.php:273102 #: views/options.php:263 views/options.php:280 views/options.php:297 103 103 #: views/wcfm-metabox.php:38 views/wcfm-metabox.php:55 104 104 #: views/wcfm-metabox.php:72 views/wcmarketplace-metabox.php:21 … … 108 108 109 109 #: views/dokanmarketplace-metabox.php:33 views/metabox-product.php:35 110 #: views/options.php:2 47views/wcfm-metabox.php:46110 #: views/options.php:271 views/wcfm-metabox.php:46 111 111 #: views/wcmarketplace-metabox.php:29 112 112 msgid "Days for Delivery out of stock" … … 114 114 115 115 #: views/dokanmarketplace-metabox.php:41 views/metabox-product.php:43 116 #: views/options.php:2 55views/wcfm-metabox.php:54116 #: views/options.php:279 views/wcfm-metabox.php:54 117 117 #: views/wcmarketplace-metabox.php:37 118 118 msgid "Max Days for Delivery out of stock" … … 120 120 121 121 #: views/dokanmarketplace-metabox.php:50 views/metabox-product.php:52 122 #: views/options.php:2 64views/wcfm-metabox.php:63122 #: views/options.php:288 views/wcfm-metabox.php:63 123 123 #: views/wcmarketplace-metabox.php:46 124 124 msgid "Days for Delivery Backorders" … … 126 126 127 127 #: views/dokanmarketplace-metabox.php:58 views/metabox-product.php:60 128 #: views/options.php:2 72views/wcfm-metabox.php:71128 #: views/options.php:296 views/wcfm-metabox.php:71 129 129 #: views/wcmarketplace-metabox.php:54 130 130 msgid "Max Days for Delivery Backorders" … … 132 132 133 133 #: views/dokanmarketplace-metabox.php:67 views/metabox-product.php:69 134 #: views/options.php: 297views/wcfm-metabox.php:80134 #: views/options.php:321 views/wcfm-metabox.php:80 135 135 #: views/wcmarketplace-metabox.php:63 136 136 msgid "Estimated or Guaranteed" … … 138 138 139 139 #: views/dokanmarketplace-metabox.php:68 views/metabox-product.php:70 140 #: views/options.php: 298views/wcfm-metabox.php:81140 #: views/options.php:322 views/wcfm-metabox.php:81 141 141 #: views/wcmarketplace-metabox.php:64 142 142 msgid "The message will change." … … 144 144 145 145 #: views/dokanmarketplace-metabox.php:73 views/metabox-product.php:75 146 #: views/options.php:3 03views/wcfm-metabox.php:86146 #: views/options.php:327 views/wcfm-metabox.php:86 147 147 #: views/wcmarketplace-metabox.php:69 148 148 msgid "Estimated" … … 150 150 151 151 #: views/dokanmarketplace-metabox.php:74 views/metabox-product.php:76 152 #: views/options.php:3 04views/wcfm-metabox.php:87152 #: views/options.php:328 views/wcfm-metabox.php:87 153 153 #: views/wcmarketplace-metabox.php:70 154 154 msgid "Guaranteed" … … 156 156 157 157 #: views/dokanmarketplace-metabox.php:80 views/metabox-product.php:82 158 #: views/options.php:3 10views/wcfm-metabox.php:93158 #: views/options.php:334 views/wcfm-metabox.php:93 159 159 #: views/wcmarketplace-metabox.php:76 160 160 msgid "Days disabled" … … 162 162 163 163 #: views/dokanmarketplace-metabox.php:81 views/metabox-product.php:83 164 #: views/options.php:3 11views/wcfm-metabox.php:94164 #: views/options.php:335 views/wcfm-metabox.php:94 165 165 #: views/wcmarketplace-metabox.php:77 166 166 msgid "Select the days that NO shipments are made." … … 168 168 169 169 #: views/dokanmarketplace-metabox.php:86 views/metabox-product.php:88 170 #: views/options.php:3 16views/wcfm-metabox.php:99170 #: views/options.php:340 views/wcfm-metabox.php:99 171 171 #: views/wcmarketplace-metabox.php:82 172 172 msgid "Monday" … … 174 174 175 175 #: views/dokanmarketplace-metabox.php:91 views/metabox-product.php:93 176 #: views/options.php:3 21views/wcfm-metabox.php:104176 #: views/options.php:345 views/wcfm-metabox.php:104 177 177 #: views/wcmarketplace-metabox.php:87 178 178 msgid "Tuesday" … … 180 180 181 181 #: views/dokanmarketplace-metabox.php:96 views/metabox-product.php:98 182 #: views/options.php:3 26views/wcfm-metabox.php:109182 #: views/options.php:350 views/wcfm-metabox.php:109 183 183 #: views/wcmarketplace-metabox.php:92 184 184 msgid "Wednesday" … … 186 186 187 187 #: views/dokanmarketplace-metabox.php:101 views/metabox-product.php:103 188 #: views/options.php:3 31views/wcfm-metabox.php:114188 #: views/options.php:355 views/wcfm-metabox.php:114 189 189 #: views/wcmarketplace-metabox.php:97 190 190 msgid "Thursday" … … 192 192 193 193 #: views/dokanmarketplace-metabox.php:106 views/metabox-product.php:108 194 #: views/options.php:3 36views/wcfm-metabox.php:119194 #: views/options.php:360 views/wcfm-metabox.php:119 195 195 #: views/wcmarketplace-metabox.php:102 196 196 msgid "Friday" … … 198 198 199 199 #: views/dokanmarketplace-metabox.php:111 views/metabox-product.php:113 200 #: views/options.php:3 41views/wcfm-metabox.php:124200 #: views/options.php:365 views/wcfm-metabox.php:124 201 201 #: views/wcmarketplace-metabox.php:107 202 202 msgid "Saturday" … … 204 204 205 205 #: views/dokanmarketplace-metabox.php:116 views/metabox-product.php:118 206 #: views/options.php:3 46views/wcfm-metabox.php:129206 #: views/options.php:370 views/wcfm-metabox.php:129 207 207 #: views/wcmarketplace-metabox.php:112 208 208 msgid "Sunday" … … 213 213 msgstr "" 214 214 215 #: views/options.php: 84215 #: views/options.php:91 216 216 msgid "An error has occurred, try again." 217 217 msgstr "" 218 218 219 #: views/options.php: 88219 #: views/options.php:95 220 220 msgid "Welcome to newsletter :)" 221 221 msgstr "" 222 222 223 #: views/options.php:13 1223 #: views/options.php:138 224 224 msgid "Estimated Delivery for Woocommerce" 225 225 msgstr "" 226 226 227 #: views/options.php:13 2227 #: views/options.php:139 228 228 msgid "Show the estimated or guaranteed delivery for the product" 229 229 msgstr "" 230 230 231 #: views/options.php:1 39231 #: views/options.php:146 232 232 msgid "Do you want to receive the latest?" 233 233 msgstr "" 234 234 235 #: views/options.php:14 0235 #: views/options.php:147 236 236 msgid "Thank you very much for using our plugin, if you want to receive the latest news, offers, promotions, discounts, etc ... Sign up for our newsletter. :)" 237 237 msgstr "" 238 238 239 #: views/options.php:14 2239 #: views/options.php:149 240 240 msgid "Required" 241 241 msgstr "" 242 242 243 #: views/options.php:15 0243 #: views/options.php:157 244 244 msgid "Submit" 245 245 msgstr "" 246 246 247 #: views/options.php:15 0247 #: views/options.php:157 248 248 msgid "Processing" 249 249 msgstr "" 250 250 251 #: views/options.php:1 63251 #: views/options.php:170 252 252 msgid "Developing this plugin takes time, so if you like it, we invite you to make a donation so that we can continue developing and updating, adding news, this will always be free." 253 253 msgstr "" 254 254 255 #: views/options.php:1 64255 #: views/options.php:171 256 256 msgid "Make a donation now to help development" 257 257 msgstr "" 258 258 259 #: views/options.php:1 73259 #: views/options.php:180 260 260 msgid "Use AJAX" 261 261 msgstr "" 262 262 263 #: views/options.php:1 74263 #: views/options.php:181 264 264 msgid "If your site use cache system, active this option." 265 265 msgstr "" 266 266 267 #: views/options.php:18 2267 #: views/options.php:189 268 268 msgid "Delivery same day" 269 269 msgstr "" 270 270 271 #: views/options.php:1 83271 #: views/options.php:190 272 272 msgid "When you set 0 in any option the estimated delivery is disabled, activate this option to allow setting 0 and displaying the estimated date." 273 273 msgstr "" 274 274 275 #: views/options.php:19 1275 #: views/options.php:198 276 276 msgid "Show date on order (Admin and Customer)" 277 277 msgstr "" 278 278 279 #: views/options.php:19 2279 #: views/options.php:199 280 280 msgid "If you activate this option, the date will be stored with the order, the customer and you will be able to see the date on each product in the order." 281 281 msgstr "" 282 282 283 #: views/options.php:20 0283 #: views/options.php:207 284 284 msgid "Show date Products Lists" 285 285 msgstr "" 286 286 287 #: views/options.php:20 1287 #: views/options.php:208 288 288 msgid "If you activate this option date show on each product on list, Store, Search, etc. Check style (CSS) for this, bottom on this page." 289 289 msgstr "" 290 290 291 #: views/options.php:210 291 #: views/options.php:216 292 msgid "Icon" 293 msgstr "" 294 295 #: views/options.php:217 296 msgid "You can use always icon, fontawesome, only class name for example: fas fa-truck-moving" 297 msgstr "" 298 299 #: views/options.php:225 300 msgid "¿Problem with Icon?" 301 msgstr "" 302 303 #: views/options.php:226 304 msgid "Load FontAwesome Library." 305 msgstr "" 306 307 #: views/options.php:234 292 308 msgid "Maximum Time" 293 309 msgstr "" 294 310 295 #: views/options.php:2 12311 #: views/options.php:236 296 312 #, php-format 297 313 msgid "Maximum time to consider an extra day of shipping (Server time) HH:mm now is %s" 298 314 msgstr "" 299 315 300 #: views/options.php:2 21316 #: views/options.php:245 301 317 msgid "Use Relative Dates" 302 318 msgstr "" 303 319 304 #: views/options.php:2 22320 #: views/options.php:246 305 321 msgid "Only work with current and next week" 306 322 msgstr "" 307 323 308 #: views/options.php: 281324 #: views/options.php:305 309 325 msgid "Date Formats" 310 326 msgstr "" 311 327 312 #: views/options.php: 282328 #: views/options.php:306 313 329 msgid "You can change date format use" 314 330 msgstr "" 315 331 316 #: views/options.php: 285332 #: views/options.php:309 317 333 msgid "Same month and year, different day (00 - 00 MM, YYYY)" 318 334 msgstr "" 319 335 320 #: views/options.php: 288336 #: views/options.php:312 321 337 msgid "Same year, different day and month (00 MM - 00 MM, YYYY)" 322 338 msgstr "" 323 339 324 #: views/options.php: 291340 #: views/options.php:315 325 341 msgid "All different (00 MM YYYY - 00 MM YYYY)" 326 342 msgstr "" 327 343 328 #: views/options.php:3 51344 #: views/options.php:375 329 345 msgid "Position" 330 346 msgstr "" 331 347 332 #: views/options.php:3 65348 #: views/options.php:389 333 349 msgid "Holidays Dates" 334 350 msgstr "" 335 351 336 #: views/options.php:3 66352 #: views/options.php:390 337 353 msgid "Dates with comma separated, YYYY/MM/DD, on YEAR use XXXX for dynamic year. Example: XXXX/12/31" 338 354 msgstr "" 339 355 340 #: views/options.php:3 74356 #: views/options.php:398 341 357 msgid "Save" 342 358 msgstr "" 343 359 344 #: views/options.php: 376360 #: views/options.php:400 345 361 msgid "Need style?" 346 362 msgstr "" 347 363 348 #: views/options.php: 377364 #: views/options.php:401 349 365 msgid "Enjoy! Paste this CSS code into your Customizer and edit as you like" 350 366 msgstr "" -
estimated-delivery-for-woocommerce/tags/1.4.5/views/dokanmarketplace-metabox.php
r2597266 r3098233 13 13 <div class="row-padding"> 14 14 <table class="form-table"> 15 <tr valign="top" >15 <tr valign="top" class="dokan_edw_days_block"> 16 16 <th scope="row"><?=__('Days for Delivery', 'estimated-delivery-for-woocommerce')?> 17 17 </th> … … 21 21 </td> 22 22 </tr> 23 <tr valign="top" >23 <tr valign="top" class="dokan_edw_max_days_block"> 24 24 <th scope="row"><?=__('Max Days for Delivery', 'estimated-delivery-for-woocommerce')?> 25 25 <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p> … … 30 30 </td> 31 31 </tr> 32 <tr valign="top" >32 <tr valign="top" class="dokan_edw_days_out_stock_block"> 33 33 <th scope="row"><?=__('Days for Delivery out of stock', 'estimated-delivery-for-woocommerce')?> 34 34 </th> … … 38 38 </td> 39 39 </tr> 40 <tr valign="top" >40 <tr valign="top" class="dokan_edw_max_days_out_stock_block"> 41 41 <th scope="row"><?=__('Max Days for Delivery out of stock', 'estimated-delivery-for-woocommerce')?> 42 42 <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p> … … 47 47 </td> 48 48 </tr> 49 <tr valign="top" >49 <tr valign="top" class="dokan_edw_days_backorders_block"> 50 50 <th scope="row"><?=__('Days for Delivery Backorders', 'estimated-delivery-for-woocommerce')?> 51 51 </th> … … 55 55 </td> 56 56 </tr> 57 <tr valign="top" >57 <tr valign="top" class="dokan_edw_max_days_backorders_block"> 58 58 <th scope="row"><?=__('Max Days for Delivery Backorders', 'estimated-delivery-for-woocommerce')?> 59 59 <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p> … … 64 64 </td> 65 65 </tr> 66 <tr valign="top" >66 <tr valign="top" class="dokan_edw_mode_block"> 67 67 <th scope="row"><?=__('Estimated or Guaranteed', 'estimated-delivery-for-woocommerce')?> 68 68 <p class="description"><?=__('The message will change.','estimated-delivery-for-woocommerce')?></p> … … 77 77 </td> 78 78 </tr> 79 <tr valign="top" >79 <tr valign="top" class="dokan_edw_disabled_days_block"> 80 80 <th scope="row"><?=__('Days disabled', 'estimated-delivery-for-woocommerce')?> 81 81 <p class="description"><?=__('Select the days that NO shipments are made.','estimated-delivery-for-woocommerce')?></p> -
estimated-delivery-for-woocommerce/tags/1.4.5/views/options.php
r3082843 r3098233 23 23 update_option('_edw_max_hour', sanitize_text_field($_POST['_edw_max_hour'])); 24 24 update_option('_edw_holidays_dates', sanitize_textarea_field($_POST['_edw_holidays_dates'])); 25 25 update_option('_edw_icon', sanitize_text_field($_POST['_edw_icon'])); 26 26 27 //Format dates 27 28 update_option('_edw_date_format_1_0', sanitize_textarea_field($_POST['_edw_date_format_1_0'])); … … 37 38 }else{ 38 39 update_option('_edw_relative_dates', '0'); 40 } 41 42 if(isset($_POST['_edw_icon']) and sanitize_text_field($_POST['_edw_icon']) != '' and isset($_POST['_edw_fontawesome'])) { 43 update_option('_edw_fontawesome','1'); 44 }else{ 45 update_option('_edw_fontawesome','0'); 39 46 } 40 47 … … 206 213 </td> 207 214 </tr> 208 215 <tr valign="top"> 216 <th scope="row"><?=__('Icon', 'estimated-delivery-for-woocommerce')?> 217 <p class="description"><?=__('You can use always icon, fontawesome, only class name for example: fas fa-truck-moving','estimated-delivery-for-woocommerce')?></p> 218 </th> 219 <td> 220 <label> 221 <input type="text" name="_edw_icon" value="<?php echo get_option('_edw_icon', '') ?>" /></label> 222 </td> 223 </tr> 224 <tr valign="top"> 225 <th scope="row"><?=__('¿Problem with Icon?', 'estimated-delivery-for-woocommerce')?> 226 <p class="description"><?=__('Load FontAwesome Library.','estimated-delivery-for-woocommerce')?></p> 227 </th> 228 <td> 229 <label> 230 <input type="checkbox" name="_edw_fontawesome" value="1" <?=checked('1', get_option('_edw_fontawesome', '0'))?> /></label> 231 </td> 232 </tr> 209 233 <tr valign="top"> 210 234 <th scope="row"><?=__('Maximum Time', 'estimated-delivery-for-woocommerce')?> -
estimated-delivery-for-woocommerce/tags/1.4.5/views/wcfm-metabox.php
r2907221 r3098233 26 26 <div class="row-padding"> 27 27 <table class="form-table" style="text-align:left"> 28 <tr valign="top" >28 <tr valign="top" class="wcfm_edw_days_block"> 29 29 <th scope="row"><?=__('Days for Delivery', 'estimated-delivery-for-woocommerce')?> 30 30 </th> … … 34 34 </td> 35 35 </tr> 36 <tr valign="top" >36 <tr valign="top" class="wcfm_edw_max_days_block"> 37 37 <th scope="row"><?=__('Max Days for Delivery', 'estimated-delivery-for-woocommerce')?> 38 38 <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p> … … 43 43 </td> 44 44 </tr> 45 <tr valign="top" >45 <tr valign="top" class="wcfm_edw_days_out_stock_block"> 46 46 <th scope="row"><?=__('Days for Delivery out of stock', 'estimated-delivery-for-woocommerce')?> 47 47 </th> … … 51 51 </td> 52 52 </tr> 53 <tr valign="top" >53 <tr valign="top" class="wcfm_edw_max_days_out_stock_block"> 54 54 <th scope="row"><?=__('Max Days for Delivery out of stock', 'estimated-delivery-for-woocommerce')?> 55 55 <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p> … … 60 60 </td> 61 61 </tr> 62 <tr valign="top" >62 <tr valign="top" class="wcfm_edw_days_backorders_block"> 63 63 <th scope="row"><?=__('Days for Delivery Backorders', 'estimated-delivery-for-woocommerce')?> 64 64 </th> … … 68 68 </td> 69 69 </tr> 70 <tr valign="top" >70 <tr valign="top" class="wcfm_edw_max_days_backorders_block"> 71 71 <th scope="row"><?=__('Max Days for Delivery Backorders', 'estimated-delivery-for-woocommerce')?> 72 72 <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p> … … 77 77 </td> 78 78 </tr> 79 <tr valign="top" >79 <tr valign="top" class="wcfm_edw_mode_block"> 80 80 <th scope="row"><?=__('Estimated or Guaranteed', 'estimated-delivery-for-woocommerce')?> 81 81 <p class="description"><?=__('The message will change.','estimated-delivery-for-woocommerce')?></p> … … 90 90 </td> 91 91 </tr> 92 <tr valign="top" >92 <tr valign="top" class="wcfm_edw_disabled_days_block"> 93 93 <th scope="row"><?=__('Days disabled', 'estimated-delivery-for-woocommerce')?> 94 94 <p class="description"><?=__('Select the days that NO shipments are made.','estimated-delivery-for-woocommerce')?></p> -
estimated-delivery-for-woocommerce/tags/1.4.5/views/wcmarketplace-metabox.php
r2597266 r3098233 9 9 <div class="row-padding"> 10 10 <table class="form-table"> 11 <tr valign="top" >11 <tr valign="top" class="wcmp_edw_days_block"> 12 12 <th scope="row"><?=__('Days for Delivery', 'estimated-delivery-for-woocommerce')?> 13 13 </th> … … 17 17 </td> 18 18 </tr> 19 <tr valign="top" >19 <tr valign="top" class="wcmp_edw_max_days_block"> 20 20 <th scope="row"><?=__('Max Days for Delivery', 'estimated-delivery-for-woocommerce')?> 21 21 <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p> … … 26 26 </td> 27 27 </tr> 28 <tr valign="top" >28 <tr valign="top" class="wcmp_edw_days_out_stock_block"> 29 29 <th scope="row"><?=__('Days for Delivery out of stock', 'estimated-delivery-for-woocommerce')?> 30 30 </th> … … 34 34 </td> 35 35 </tr> 36 <tr valign="top" >36 <tr valign="top" class="wcmp_edw_max_days_out_stock_block"> 37 37 <th scope="row"><?=__('Max Days for Delivery out of stock', 'estimated-delivery-for-woocommerce')?> 38 38 <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p> … … 43 43 </td> 44 44 </tr> 45 <tr valign="top" >45 <tr valign="top" class="wcmp_edw_days_backorders_block"> 46 46 <th scope="row"><?=__('Days for Delivery Backorders', 'estimated-delivery-for-woocommerce')?> 47 47 </th> … … 51 51 </td> 52 52 </tr> 53 <tr valign="top" >53 <tr valign="top" class="wcmp_edw_max_days_backorders_block"> 54 54 <th scope="row"><?=__('Max Days for Delivery Backorders', 'estimated-delivery-for-woocommerce')?> 55 55 <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p> … … 60 60 </td> 61 61 </tr> 62 <tr valign="top" >62 <tr valign="top" class="wcmp_edw_mode_block"> 63 63 <th scope="row"><?=__('Estimated or Guaranteed', 'estimated-delivery-for-woocommerce')?> 64 64 <p class="description"><?=__('The message will change.','estimated-delivery-for-woocommerce')?></p> … … 73 73 </td> 74 74 </tr> 75 <tr valign="top" >75 <tr valign="top" class="wcmp_edw_disabled_days_block"> 76 76 <th scope="row"><?=__('Days disabled', 'estimated-delivery-for-woocommerce')?> 77 77 <p class="description"><?=__('Select the days that NO shipments are made.','estimated-delivery-for-woocommerce')?></p> -
estimated-delivery-for-woocommerce/trunk/README.md
r3084584 r3098233 4 4 Tags: estimated delivery, delivery woocommerce, shipping date 5 5 Requires at least: 4.3 6 Tested up to: 6.5. 36 Tested up to: 6.5.4 7 7 Requires PHP: 5.0 8 Stable tag: 1.4.3 9 Licence: GPLv2 or later 8 Stable tag: 1.4.5 9 License: GPLv3 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html 11 10 12 Show estimated / guaranteed delivery, simple and easy 11 13 … … 44 46 == FAQ == 45 47 48 = Report Issues = 46 49 If you need support open a new ticket on [Github](https://github.com/DanielRiera/estimated-delivery-woocommerce/issues) 50 51 = FontAwesome = 52 The plugin can add Fontawesome Library if is need 53 54 = Icon config = 55 56 47 57 48 58 49 59 == Changelog == 60 61 = 1.4.5 = 62 * Add Icon support. 63 * Add library Fontawesome 6.5.2 if is need. 64 * Fix Import CSV product Overwrite. 50 65 51 66 = 1.4.3 = -
estimated-delivery-for-woocommerce/trunk/estimated-delivery-woocommerce.php
r3084584 r3098233 6 6 * Author: Daniel Riera 7 7 * Author URI: https://danielriera.net 8 * Version: 1.4. 38 * Version: 1.4.5 9 9 * Text Domain: estimated-delivery-for-woocommerce 10 10 * Domain Path: /languages … … 12 12 * WC tested up to: 8.8.3 13 13 * Required WP: 5.0 14 * Tested WP: 6.3.2 15 * Licence: GPLv2 or later 14 * Tested WP: 6.5.4 15 * License: GPLv3 16 * License URI: https://www.gnu.org/licenses/gpl-3.0.html 16 17 */ 17 18 if(!defined('ABSPATH')) { exit; } … … 20 21 define('EDW_POSITION_SHOW', get_option('_edw_position', 'woocommerce_after_add_to_cart_button')); 21 22 define('EDW_USE_JS', get_option('_edw_cache', '0')); 22 define('EDW_Version', '1.4.3'); 23 define('EDW_Fontawesome', get_option('_edw_fontawesome', '0')); 24 define('EDW_Version', '1.4.5'); 23 25 24 26 require_once EDW_PATH . 'class.api.php'; … … 62 64 add_action('end_wcfm_products_manage', array(&$this, 'edw_wcmf_content_metabox'), 100, 4); 63 65 add_action('after_wcfm_products_manage_meta_save', array(&$this, 'edw_wcmf_save_data'), 501, 2); 66 67 if(EDW_Fontawesome == '1') { 68 add_action( 'wp_enqueue_scripts', array($this, 'edw_load_fontawesome') ); 69 } 64 70 65 71 //WCMP Compatiblity … … 233 239 } 234 240 } 235 if( sanitize_text_field( $_POST['_edw_days']) == '') {241 if(isset($_POST['_edw_days']) and sanitize_text_field( $_POST['_edw_days']) == '') { 236 242 update_post_meta($post_id, '_edw_overwrite','0'); 237 243 } … … 295 301 } 296 302 return false; 303 } 304 305 function edw_load_fontawesome() { 306 wp_enqueue_style( 'edw-fontawesome', plugins_url('assets/fontawesome/all.min.css?v='.EDW_Version, __FILE__)); 297 307 } 298 308 … … 371 381 372 382 if($productActive == '1') { 373 $mode = get_post_meta($product_id,'_edw_mode', true) ;383 $mode = get_post_meta($product_id,'_edw_mode', true) || '1'; 374 384 }else{ 375 $mode = get_option('_edw_mode' );385 $mode = get_option('_edw_mode', '1'); 376 386 } 377 387 … … 445 455 } 446 456 } 457 458 //Prevent default 459 $maxDays = intval($maxDays); 460 $disabledDays = $disabledDays ?: []; 447 461 448 462 $today = wp_date('Y-m-d'); … … 494 508 495 509 496 510 $iconset = get_option('_edw_icon', ''); 511 512 $icon_html = $iconset != '' ? '<i class="' . $iconset . '"></i> ' : ''; 497 513 if($mode == "1") { 498 514 $separed_title = __('Estimated delivery', 'estimated-delivery-for-woocommerce'); 499 $string = '<div class="edw_date">'. sprintf(__('Estimated delivery%s %s','estimated-delivery-for-woocommerce'), $elon, $date).'</div>';515 $string = '<div class="edw_date">'.$icon_html.sprintf(__('Estimated delivery%s %s','estimated-delivery-for-woocommerce'), $elon, $date).'</div>'; 500 516 }else{ 501 517 $separed_title = __('Guaranteed delivery','estimated-delivery-for-woocommerce'); 502 $string = '<div class="edw_date">'. sprintf(__('Guaranteed delivery%s %s','estimated-delivery-for-woocommerce'), $elon, $date).'</div>';518 $string = '<div class="edw_date">'.$icon_html.sprintf(__('Guaranteed delivery%s %s','estimated-delivery-for-woocommerce'), $elon, $date).'</div>'; 503 519 } 504 520 -
estimated-delivery-for-woocommerce/trunk/languages/estimated-delivery-for-woocommerce-es_ES.po
r3082843 r3098233 2 2 msgstr "" 3 3 "Project-Id-Version: edwoo\n" 4 "POT-Creation-Date: 2024-0 5-07 23:32+0200\n"5 "PO-Revision-Date: 2024-0 5-07 23:32+0200\n"4 "POT-Creation-Date: 2024-06-06 00:37+0200\n" 5 "PO-Revision-Date: 2024-06-06 00:38+0200\n" 6 6 "Last-Translator: Daniel Riera <daniel@taxapro.com>\n" 7 7 "Language-Team: \n" … … 11 11 "Content-Transfer-Encoding: 8bit\n" 12 12 "Plural-Forms: nplurals=2; plural=(n != 1);\n" 13 "X-Generator: Poedit 3.4. 2\n"13 "X-Generator: Poedit 3.4.4\n" 14 14 "X-Poedit-Basepath: ..\n" 15 15 "X-Poedit-KeywordsList: __;_e\n" 16 16 "X-Poedit-SearchPath-0: .\n" 17 17 18 #: estimated-delivery-woocommerce.php:1 4319 #: estimated-delivery-woocommerce.php:2 0320 #: estimated-delivery-woocommerce.php:2 59views/wcfm-metabox.php:2118 #: estimated-delivery-woocommerce.php:151 19 #: estimated-delivery-woocommerce.php:211 20 #: estimated-delivery-woocommerce.php:267 views/wcfm-metabox.php:21 21 21 msgid "Estimated Delivery" 22 22 msgstr "Entrega Estimada" 23 23 24 #: estimated-delivery-woocommerce.php:2 6524 #: estimated-delivery-woocommerce.php:273 25 25 msgid "Disabled, use shortcode" 26 26 msgstr "Deshabilitar, usaré shortcode" 27 27 28 #: estimated-delivery-woocommerce.php:2 6628 #: estimated-delivery-woocommerce.php:274 29 29 msgid "After cart button" 30 30 msgstr "Después del botón de añadir al carrito" 31 31 32 #: estimated-delivery-woocommerce.php:2 6732 #: estimated-delivery-woocommerce.php:275 33 33 msgid "Before cart button" 34 34 msgstr "Antes del botón de añadir al carrito" 35 35 36 #: estimated-delivery-woocommerce.php:2 6836 #: estimated-delivery-woocommerce.php:276 37 37 msgid "After product meta" 38 38 msgstr "Después de la meta del producto" 39 39 40 #: estimated-delivery-woocommerce.php:2 6940 #: estimated-delivery-woocommerce.php:277 41 41 msgid "Before product summary" 42 42 msgstr "Antes del resumen del producto" 43 43 44 #: estimated-delivery-woocommerce.php:27 044 #: estimated-delivery-woocommerce.php:278 45 45 msgid "After product summary" 46 46 msgstr "Después del resumen del producto" 47 47 48 #: estimated-delivery-woocommerce.php:27 148 #: estimated-delivery-woocommerce.php:279 49 49 msgid "Product Thumbnail (may not work)" 50 50 msgstr "Debajo de la galería (Puede no funcionar)" 51 51 52 #: estimated-delivery-woocommerce.php:4 5652 #: estimated-delivery-woocommerce.php:472 53 53 msgid " on" 54 54 msgstr " el" 55 55 56 #: estimated-delivery-woocommerce.php:4 6557 #: estimated-delivery-woocommerce.php: 48656 #: estimated-delivery-woocommerce.php:481 57 #: estimated-delivery-woocommerce.php:502 58 58 #, php-format 59 59 msgid "this %s, %s" 60 60 msgstr "este %s, %s" 61 61 62 #: estimated-delivery-woocommerce.php:4 6863 #: estimated-delivery-woocommerce.php: 48962 #: estimated-delivery-woocommerce.php:484 63 #: estimated-delivery-woocommerce.php:505 64 64 #, php-format 65 65 msgid "the next %s, %s" 66 66 msgstr "el próximo %s, %s" 67 67 68 #: estimated-delivery-woocommerce.php: 49668 #: estimated-delivery-woocommerce.php:514 69 69 msgid "Estimated delivery" 70 70 msgstr "Entrega Estimada" 71 71 72 #: estimated-delivery-woocommerce.php: 49772 #: estimated-delivery-woocommerce.php:515 73 73 #, php-format 74 74 msgid "Estimated delivery%s %s" 75 75 msgstr "Entrega estimada%s %s" 76 76 77 #: estimated-delivery-woocommerce.php: 49977 #: estimated-delivery-woocommerce.php:517 78 78 msgid "Guaranteed delivery" 79 79 msgstr "Entrega Garantizada" 80 80 81 #: estimated-delivery-woocommerce.php:5 0081 #: estimated-delivery-woocommerce.php:518 82 82 #, php-format 83 83 msgid "Guaranteed delivery%s %s" … … 85 85 86 86 #: views/dokanmarketplace-metabox.php:16 views/metabox-product.php:18 87 #: views/options.php:2 30views/wcfm-metabox.php:2987 #: views/options.php:254 views/wcfm-metabox.php:29 88 88 #: views/wcmarketplace-metabox.php:12 89 89 msgid "Days for Delivery" … … 91 91 92 92 #: views/dokanmarketplace-metabox.php:24 views/metabox-product.php:26 93 #: views/options.php:2 38views/wcfm-metabox.php:3793 #: views/options.php:262 views/wcfm-metabox.php:37 94 94 #: views/wcmarketplace-metabox.php:20 95 95 msgid "Max Days for Delivery" … … 99 99 #: views/dokanmarketplace-metabox.php:59 views/metabox-product.php:27 100 100 #: views/metabox-product.php:44 views/metabox-product.php:61 101 #: views/options.php:2 39 views/options.php:256 views/options.php:273101 #: views/options.php:263 views/options.php:280 views/options.php:297 102 102 #: views/wcfm-metabox.php:38 views/wcfm-metabox.php:55 103 103 #: views/wcfm-metabox.php:72 views/wcmarketplace-metabox.php:21 … … 108 108 109 109 #: views/dokanmarketplace-metabox.php:33 views/metabox-product.php:35 110 #: views/options.php:2 47views/wcfm-metabox.php:46110 #: views/options.php:271 views/wcfm-metabox.php:46 111 111 #: views/wcmarketplace-metabox.php:29 112 112 msgid "Days for Delivery out of stock" … … 114 114 115 115 #: views/dokanmarketplace-metabox.php:41 views/metabox-product.php:43 116 #: views/options.php:2 55views/wcfm-metabox.php:54116 #: views/options.php:279 views/wcfm-metabox.php:54 117 117 #: views/wcmarketplace-metabox.php:37 118 118 msgid "Max Days for Delivery out of stock" … … 120 120 121 121 #: views/dokanmarketplace-metabox.php:50 views/metabox-product.php:52 122 #: views/options.php:2 64views/wcfm-metabox.php:63122 #: views/options.php:288 views/wcfm-metabox.php:63 123 123 #: views/wcmarketplace-metabox.php:46 124 124 msgid "Days for Delivery Backorders" … … 126 126 127 127 #: views/dokanmarketplace-metabox.php:58 views/metabox-product.php:60 128 #: views/options.php:2 72views/wcfm-metabox.php:71128 #: views/options.php:296 views/wcfm-metabox.php:71 129 129 #: views/wcmarketplace-metabox.php:54 130 130 msgid "Max Days for Delivery Backorders" … … 132 132 133 133 #: views/dokanmarketplace-metabox.php:67 views/metabox-product.php:69 134 #: views/options.php: 297views/wcfm-metabox.php:80134 #: views/options.php:321 views/wcfm-metabox.php:80 135 135 #: views/wcmarketplace-metabox.php:63 136 136 msgid "Estimated or Guaranteed" … … 138 138 139 139 #: views/dokanmarketplace-metabox.php:68 views/metabox-product.php:70 140 #: views/options.php: 298views/wcfm-metabox.php:81140 #: views/options.php:322 views/wcfm-metabox.php:81 141 141 #: views/wcmarketplace-metabox.php:64 142 142 msgid "The message will change." … … 144 144 145 145 #: views/dokanmarketplace-metabox.php:73 views/metabox-product.php:75 146 #: views/options.php:3 03views/wcfm-metabox.php:86146 #: views/options.php:327 views/wcfm-metabox.php:86 147 147 #: views/wcmarketplace-metabox.php:69 148 148 msgid "Estimated" … … 150 150 151 151 #: views/dokanmarketplace-metabox.php:74 views/metabox-product.php:76 152 #: views/options.php:3 04views/wcfm-metabox.php:87152 #: views/options.php:328 views/wcfm-metabox.php:87 153 153 #: views/wcmarketplace-metabox.php:70 154 154 msgid "Guaranteed" … … 156 156 157 157 #: views/dokanmarketplace-metabox.php:80 views/metabox-product.php:82 158 #: views/options.php:3 10views/wcfm-metabox.php:93158 #: views/options.php:334 views/wcfm-metabox.php:93 159 159 #: views/wcmarketplace-metabox.php:76 160 160 msgid "Days disabled" … … 162 162 163 163 #: views/dokanmarketplace-metabox.php:81 views/metabox-product.php:83 164 #: views/options.php:3 11views/wcfm-metabox.php:94164 #: views/options.php:335 views/wcfm-metabox.php:94 165 165 #: views/wcmarketplace-metabox.php:77 166 166 msgid "Select the days that NO shipments are made." … … 168 168 169 169 #: views/dokanmarketplace-metabox.php:86 views/metabox-product.php:88 170 #: views/options.php:3 16views/wcfm-metabox.php:99170 #: views/options.php:340 views/wcfm-metabox.php:99 171 171 #: views/wcmarketplace-metabox.php:82 172 172 msgid "Monday" … … 174 174 175 175 #: views/dokanmarketplace-metabox.php:91 views/metabox-product.php:93 176 #: views/options.php:3 21views/wcfm-metabox.php:104176 #: views/options.php:345 views/wcfm-metabox.php:104 177 177 #: views/wcmarketplace-metabox.php:87 178 178 msgid "Tuesday" … … 180 180 181 181 #: views/dokanmarketplace-metabox.php:96 views/metabox-product.php:98 182 #: views/options.php:3 26views/wcfm-metabox.php:109182 #: views/options.php:350 views/wcfm-metabox.php:109 183 183 #: views/wcmarketplace-metabox.php:92 184 184 msgid "Wednesday" … … 186 186 187 187 #: views/dokanmarketplace-metabox.php:101 views/metabox-product.php:103 188 #: views/options.php:3 31views/wcfm-metabox.php:114188 #: views/options.php:355 views/wcfm-metabox.php:114 189 189 #: views/wcmarketplace-metabox.php:97 190 190 msgid "Thursday" … … 192 192 193 193 #: views/dokanmarketplace-metabox.php:106 views/metabox-product.php:108 194 #: views/options.php:3 36views/wcfm-metabox.php:119194 #: views/options.php:360 views/wcfm-metabox.php:119 195 195 #: views/wcmarketplace-metabox.php:102 196 196 msgid "Friday" … … 198 198 199 199 #: views/dokanmarketplace-metabox.php:111 views/metabox-product.php:113 200 #: views/options.php:3 41views/wcfm-metabox.php:124200 #: views/options.php:365 views/wcfm-metabox.php:124 201 201 #: views/wcmarketplace-metabox.php:107 202 202 msgid "Saturday" … … 204 204 205 205 #: views/dokanmarketplace-metabox.php:116 views/metabox-product.php:118 206 #: views/options.php:3 46views/wcfm-metabox.php:129206 #: views/options.php:370 views/wcfm-metabox.php:129 207 207 #: views/wcmarketplace-metabox.php:112 208 208 msgid "Sunday" … … 213 213 msgstr "Sobreescribir configuración" 214 214 215 #: views/options.php: 84215 #: views/options.php:91 216 216 msgid "An error has occurred, try again." 217 217 msgstr "Ha ocurrido un error, pruebe de nuevo." 218 218 219 #: views/options.php: 88219 #: views/options.php:95 220 220 msgid "Welcome to newsletter :)" 221 221 msgstr "Bienvenid@ al newsletter" 222 222 223 #: views/options.php:13 1223 #: views/options.php:138 224 224 msgid "Estimated Delivery for Woocommerce" 225 225 msgstr "Entrega Estimada para WooCommerce" 226 226 227 #: views/options.php:13 2227 #: views/options.php:139 228 228 msgid "Show the estimated or guaranteed delivery for the product" 229 229 msgstr "Muestra la entrega estimada o garantizada por cada producto" 230 230 231 #: views/options.php:1 39231 #: views/options.php:146 232 232 msgid "Do you want to receive the latest?" 233 233 msgstr "¿Quieres recibir lo último?" 234 234 235 #: views/options.php:14 0235 #: views/options.php:147 236 236 msgid "" 237 237 "Thank you very much for using our plugin, if you want to receive the latest " … … 241 241 "ofertas, promociones, descuentos...Inscríbete en nuestro boletín. :)" 242 242 243 #: views/options.php:14 2243 #: views/options.php:149 244 244 msgid "Required" 245 245 msgstr "Requerido" 246 246 247 #: views/options.php:15 0247 #: views/options.php:157 248 248 msgid "Submit" 249 249 msgstr "Enviar" 250 250 251 #: views/options.php:15 0251 #: views/options.php:157 252 252 msgid "Processing" 253 253 msgstr "Procesando" 254 254 255 #: views/options.php:1 63255 #: views/options.php:170 256 256 msgid "" 257 257 "Developing this plugin takes time, so if you like it, we invite you to make " … … 263 263 "actualizando, añadiendo novedades, esto será siempre gratis." 264 264 265 #: views/options.php:1 64265 #: views/options.php:171 266 266 msgid "Make a donation now to help development" 267 267 msgstr "Realiza una donación ahora par ayudar al desarrollo" 268 268 269 #: views/options.php:1 73269 #: views/options.php:180 270 270 msgid "Use AJAX" 271 271 msgstr "Usar AJAX" 272 272 273 #: views/options.php:1 74273 #: views/options.php:181 274 274 msgid "If your site use cache system, active this option." 275 275 msgstr "Si tu sitio usa cache, activa esta opción." 276 276 277 #: views/options.php:18 2277 #: views/options.php:189 278 278 msgid "Delivery same day" 279 279 msgstr "Envío en el mismo día" 280 280 281 #: views/options.php:1 83281 #: views/options.php:190 282 282 msgid "" 283 283 "When you set 0 in any option the estimated delivery is disabled, activate " … … 285 285 msgstr "" 286 286 "Cuando estableces en 0 cualquier opción de días, se deshabilitan, activa " 287 "esta opción para permitir establecer en 0 y mostrar la fecha "288 289 #: views/options.php:19 1287 "esta opción para permitir establecer en 0 y mostrar la fecha." 288 289 #: views/options.php:198 290 290 msgid "Show date on order (Admin and Customer)" 291 291 msgstr "Mostrar fecha en pedidos (Administrador y Clientes)" 292 292 293 #: views/options.php:19 2293 #: views/options.php:199 294 294 msgid "" 295 295 "If you activate this option, the date will be stored with the order, the " … … 299 299 "ver la fecha en cada producto del pedido." 300 300 301 #: views/options.php:20 0301 #: views/options.php:207 302 302 msgid "Show date Products Lists" 303 303 msgstr "Mostrar fecha en listado de productos" 304 304 305 #: views/options.php:20 1305 #: views/options.php:208 306 306 msgid "" 307 307 "If you activate this option date show on each product on list, Store, " … … 312 312 "página." 313 313 314 #: views/options.php:210 314 #: views/options.php:216 315 msgid "Icon" 316 msgstr "Icono" 317 318 #: views/options.php:217 319 msgid "" 320 "You can use always icon, fontawesome, only class name for example: fas fa-" 321 "truck-moving" 322 msgstr "" 323 "Puedes usar un icono, FontAwesome, use la clase del icono por ejemplo: fas " 324 "fa-truck-moving" 325 326 #: views/options.php:225 327 msgid "¿Problem with Icon?" 328 msgstr "¿Problema con el icono?" 329 330 #: views/options.php:226 331 msgid "Load FontAwesome Library." 332 msgstr "Cargue la librería FontAwesome." 333 334 #: views/options.php:234 315 335 msgid "Maximum Time" 316 336 msgstr "Tiempo máximo" 317 337 318 #: views/options.php:2 12338 #: views/options.php:236 319 339 #, php-format 320 340 msgid "" … … 325 345 "HH:mm ahora son %s" 326 346 327 #: views/options.php:2 21347 #: views/options.php:245 328 348 msgid "Use Relative Dates" 329 349 msgstr "Usar fechas relativas" 330 350 331 #: views/options.php:2 22351 #: views/options.php:246 332 352 msgid "Only work with current and next week" 333 353 msgstr "Solo funciona con la semana actual y la próxima" 334 354 335 #: views/options.php: 281355 #: views/options.php:305 336 356 msgid "Date Formats" 337 357 msgstr "Formato de fechas" 338 358 339 #: views/options.php: 282359 #: views/options.php:306 340 360 msgid "You can change date format use" 341 361 msgstr "Puedes cambiar el formato de fecha que usa el plugin" 342 362 343 #: views/options.php: 285363 #: views/options.php:309 344 364 msgid "Same month and year, different day (00 - 00 MM, YYYY)" 345 365 msgstr "Mismo mes y año, diferente día (00 - 00 MM, YYYY)" 346 366 347 #: views/options.php: 288367 #: views/options.php:312 348 368 msgid "Same year, different day and month (00 MM - 00 MM, YYYY)" 349 369 msgstr "Mismo año, diferente día y mes (00 MM - 00 MM, YYYY)" 350 370 351 #: views/options.php: 291371 #: views/options.php:315 352 372 msgid "All different (00 MM YYYY - 00 MM YYYY)" 353 373 msgstr "Todo diferente (00 MM YYYY - 00 MM YYYY)" 354 374 355 #: views/options.php:3 51375 #: views/options.php:375 356 376 msgid "Position" 357 377 msgstr "Posición" 358 378 359 #: views/options.php:3 65379 #: views/options.php:389 360 380 msgid "Holidays Dates" 361 381 msgstr "Fecha de Vacaciones" 362 382 363 #: views/options.php:3 66383 #: views/options.php:390 364 384 msgid "" 365 385 "Dates with comma separated, YYYY/MM/DD, on YEAR use XXXX for dynamic year. " … … 369 389 "ejemplo: XXXX/12/31" 370 390 371 #: views/options.php:3 74391 #: views/options.php:398 372 392 msgid "Save" 373 393 msgstr "Guardar" 374 394 375 #: views/options.php: 376395 #: views/options.php:400 376 396 msgid "Need style?" 377 397 msgstr "Necesitas dar estilos?" 378 398 379 #: views/options.php: 377399 #: views/options.php:401 380 400 msgid "Enjoy! Paste this CSS code into your Customizer and edit as you like" 381 401 msgstr "" -
estimated-delivery-for-woocommerce/trunk/languages/estimated-delivery-for-woocommerce-fr_FR.po
r2906408 r3098233 2 2 msgstr "" 3 3 "Project-Id-Version: \n" 4 "POT-Creation-Date: 202 3-05-01 02:01+0200\n"5 "PO-Revision-Date: 202 3-05-01 02:01+0200\n"4 "POT-Creation-Date: 2024-06-06 00:39+0200\n" 5 "PO-Revision-Date: 2024-06-06 00:39+0200\n" 6 6 "Last-Translator: \n" 7 7 "Language-Team: \n" … … 11 11 "Content-Transfer-Encoding: 8bit\n" 12 12 "Plural-Forms: nplurals=2; plural=(n > 1);\n" 13 "X-Generator: Poedit 3. 2.2\n"13 "X-Generator: Poedit 3.4.4\n" 14 14 "X-Poedit-Basepath: ..\n" 15 15 "X-Poedit-KeywordsList: __;_e\n" 16 16 "X-Poedit-SearchPath-0: .\n" 17 17 18 #: estimated-delivery-woocommerce.php:1 0119 #: estimated-delivery-woocommerce.php: 15620 #: estimated-delivery-woocommerce.php:2 1018 #: estimated-delivery-woocommerce.php:151 19 #: estimated-delivery-woocommerce.php:211 20 #: estimated-delivery-woocommerce.php:267 views/wcfm-metabox.php:21 21 21 msgid "Estimated Delivery" 22 22 msgstr "Livraison estimée" 23 23 24 #: estimated-delivery-woocommerce.php:2 1624 #: estimated-delivery-woocommerce.php:273 25 25 msgid "Disabled, use shortcode" 26 26 msgstr "Désactivé, utilisez le shortcode" 27 27 28 #: estimated-delivery-woocommerce.php:2 1728 #: estimated-delivery-woocommerce.php:274 29 29 msgid "After cart button" 30 30 msgstr "Bouton Après le panier" 31 31 32 #: estimated-delivery-woocommerce.php:2 1832 #: estimated-delivery-woocommerce.php:275 33 33 msgid "Before cart button" 34 34 msgstr "Bouton Avant le panier" 35 35 36 #: estimated-delivery-woocommerce.php:2 1936 #: estimated-delivery-woocommerce.php:276 37 37 msgid "After product meta" 38 38 msgstr "Méta produit après" 39 39 40 #: estimated-delivery-woocommerce.php:2 2040 #: estimated-delivery-woocommerce.php:277 41 41 msgid "Before product summary" 42 42 msgstr "Avant le résumé du produit" 43 43 44 #: estimated-delivery-woocommerce.php:2 2144 #: estimated-delivery-woocommerce.php:278 45 45 msgid "After product summary" 46 46 msgstr "Après le résumé du produit" 47 47 48 #: estimated-delivery-woocommerce.php:2 2248 #: estimated-delivery-woocommerce.php:279 49 49 msgid "Product Thumbnail (may not work)" 50 50 msgstr "Vignette du produit (peut ne pas fonctionner)" 51 51 52 #: estimated-delivery-woocommerce.php: 38152 #: estimated-delivery-woocommerce.php:472 53 53 msgid " on" 54 54 msgstr " on" 55 55 56 #: estimated-delivery-woocommerce.php: 39057 #: estimated-delivery-woocommerce.php: 41156 #: estimated-delivery-woocommerce.php:481 57 #: estimated-delivery-woocommerce.php:502 58 58 #, php-format 59 59 msgid "this %s, %s" 60 60 msgstr "ce %s, %s" 61 61 62 #: estimated-delivery-woocommerce.php: 39363 #: estimated-delivery-woocommerce.php: 41462 #: estimated-delivery-woocommerce.php:484 63 #: estimated-delivery-woocommerce.php:505 64 64 #, php-format 65 65 msgid "the next %s, %s" 66 66 msgstr "les prochains %s, %s" 67 67 68 #: estimated-delivery-woocommerce.php: 42168 #: estimated-delivery-woocommerce.php:514 69 69 msgid "Estimated delivery" 70 70 msgstr "Livraison estimée" 71 71 72 #: estimated-delivery-woocommerce.php: 42272 #: estimated-delivery-woocommerce.php:515 73 73 #, php-format 74 74 msgid "Estimated delivery%s %s" 75 75 msgstr "Livraison estimée%s %s" 76 76 77 #: estimated-delivery-woocommerce.php: 42477 #: estimated-delivery-woocommerce.php:517 78 78 msgid "Guaranteed delivery" 79 79 msgstr "Livraison garantie" 80 80 81 #: estimated-delivery-woocommerce.php: 42581 #: estimated-delivery-woocommerce.php:518 82 82 #, php-format 83 83 msgid "Guaranteed delivery%s %s" … … 85 85 86 86 #: views/dokanmarketplace-metabox.php:16 views/metabox-product.php:18 87 #: views/options.php:219 views/wcmarketplace-metabox.php:12 87 #: views/options.php:254 views/wcfm-metabox.php:29 88 #: views/wcmarketplace-metabox.php:12 88 89 msgid "Days for Delivery" 89 90 msgstr "Jours de livraison" 90 91 91 92 #: views/dokanmarketplace-metabox.php:24 views/metabox-product.php:26 92 #: views/options.php:227 views/wcmarketplace-metabox.php:20 93 #: views/options.php:262 views/wcfm-metabox.php:37 94 #: views/wcmarketplace-metabox.php:20 93 95 msgid "Max Days for Delivery" 94 96 msgstr "Jours maximum pour la livraison" … … 97 99 #: views/dokanmarketplace-metabox.php:59 views/metabox-product.php:27 98 100 #: views/metabox-product.php:44 views/metabox-product.php:61 99 #: views/options.php:228 views/options.php:245 views/options.php:262 100 #: views/wcmarketplace-metabox.php:21 views/wcmarketplace-metabox.php:38 101 #: views/wcmarketplace-metabox.php:55 101 #: views/options.php:263 views/options.php:280 views/options.php:297 102 #: views/wcfm-metabox.php:38 views/wcfm-metabox.php:55 103 #: views/wcfm-metabox.php:72 views/wcmarketplace-metabox.php:21 104 #: views/wcmarketplace-metabox.php:38 views/wcmarketplace-metabox.php:55 102 105 msgid "Set 0 for disable. If this set more than 0 days, it will show a range." 103 106 msgstr "" … … 106 109 107 110 #: views/dokanmarketplace-metabox.php:33 views/metabox-product.php:35 108 #: views/options.php:236 views/wcmarketplace-metabox.php:29 111 #: views/options.php:271 views/wcfm-metabox.php:46 112 #: views/wcmarketplace-metabox.php:29 109 113 msgid "Days for Delivery out of stock" 110 114 msgstr "Jours de livraison en rupture de stock" 111 115 112 116 #: views/dokanmarketplace-metabox.php:41 views/metabox-product.php:43 113 #: views/options.php:244 views/wcmarketplace-metabox.php:37 117 #: views/options.php:279 views/wcfm-metabox.php:54 118 #: views/wcmarketplace-metabox.php:37 114 119 msgid "Max Days for Delivery out of stock" 115 120 msgstr "Jours maximum de livraison en rupture de stock" 116 121 117 122 #: views/dokanmarketplace-metabox.php:50 views/metabox-product.php:52 118 #: views/options.php:253 views/wcmarketplace-metabox.php:46 123 #: views/options.php:288 views/wcfm-metabox.php:63 124 #: views/wcmarketplace-metabox.php:46 119 125 #, fuzzy 120 126 #| msgid "Days for Delivery" … … 123 129 124 130 #: views/dokanmarketplace-metabox.php:58 views/metabox-product.php:60 125 #: views/options.php:261 views/wcmarketplace-metabox.php:54 131 #: views/options.php:296 views/wcfm-metabox.php:71 132 #: views/wcmarketplace-metabox.php:54 126 133 #, fuzzy 127 134 #| msgid "Max Days for Delivery" … … 130 137 131 138 #: views/dokanmarketplace-metabox.php:67 views/metabox-product.php:69 132 #: views/options.php:270 views/wcmarketplace-metabox.php:63 139 #: views/options.php:321 views/wcfm-metabox.php:80 140 #: views/wcmarketplace-metabox.php:63 133 141 msgid "Estimated or Guaranteed" 134 142 msgstr "Estimé ou garanti" 135 143 136 144 #: views/dokanmarketplace-metabox.php:68 views/metabox-product.php:70 137 #: views/options.php:271 views/wcmarketplace-metabox.php:64 145 #: views/options.php:322 views/wcfm-metabox.php:81 146 #: views/wcmarketplace-metabox.php:64 138 147 msgid "The message will change." 139 148 msgstr "Le message va changer." 140 149 141 150 #: views/dokanmarketplace-metabox.php:73 views/metabox-product.php:75 142 #: views/options.php:276 views/wcmarketplace-metabox.php:69 151 #: views/options.php:327 views/wcfm-metabox.php:86 152 #: views/wcmarketplace-metabox.php:69 143 153 msgid "Estimated" 144 154 msgstr "Estimé" 145 155 146 156 #: views/dokanmarketplace-metabox.php:74 views/metabox-product.php:76 147 #: views/options.php:277 views/wcmarketplace-metabox.php:70 157 #: views/options.php:328 views/wcfm-metabox.php:87 158 #: views/wcmarketplace-metabox.php:70 148 159 msgid "Guaranteed" 149 160 msgstr "Garanti" 150 161 151 162 #: views/dokanmarketplace-metabox.php:80 views/metabox-product.php:82 152 #: views/options.php:283 views/wcmarketplace-metabox.php:76 163 #: views/options.php:334 views/wcfm-metabox.php:93 164 #: views/wcmarketplace-metabox.php:76 153 165 msgid "Days disabled" 154 166 msgstr "Jours désactivés" 155 167 156 168 #: views/dokanmarketplace-metabox.php:81 views/metabox-product.php:83 157 #: views/options.php:284 views/wcmarketplace-metabox.php:77 169 #: views/options.php:335 views/wcfm-metabox.php:94 170 #: views/wcmarketplace-metabox.php:77 158 171 msgid "Select the days that NO shipments are made." 159 172 msgstr "Sélectionnez les jours où AUCUNE expédition n'est effectuée." 160 173 161 174 #: views/dokanmarketplace-metabox.php:86 views/metabox-product.php:88 162 #: views/options.php:289 views/wcmarketplace-metabox.php:82 175 #: views/options.php:340 views/wcfm-metabox.php:99 176 #: views/wcmarketplace-metabox.php:82 163 177 msgid "Monday" 164 178 msgstr "Lundi" 165 179 166 180 #: views/dokanmarketplace-metabox.php:91 views/metabox-product.php:93 167 #: views/options.php:294 views/wcmarketplace-metabox.php:87 181 #: views/options.php:345 views/wcfm-metabox.php:104 182 #: views/wcmarketplace-metabox.php:87 168 183 msgid "Tuesday" 169 184 msgstr "Mardi" 170 185 171 186 #: views/dokanmarketplace-metabox.php:96 views/metabox-product.php:98 172 #: views/options.php:299 views/wcmarketplace-metabox.php:92 187 #: views/options.php:350 views/wcfm-metabox.php:109 188 #: views/wcmarketplace-metabox.php:92 173 189 msgid "Wednesday" 174 190 msgstr "Mercredi" 175 191 176 192 #: views/dokanmarketplace-metabox.php:101 views/metabox-product.php:103 177 #: views/options.php:304 views/wcmarketplace-metabox.php:97 193 #: views/options.php:355 views/wcfm-metabox.php:114 194 #: views/wcmarketplace-metabox.php:97 178 195 msgid "Thursday" 179 196 msgstr "Jeudi" 180 197 181 198 #: views/dokanmarketplace-metabox.php:106 views/metabox-product.php:108 182 #: views/options.php:309 views/wcmarketplace-metabox.php:102 199 #: views/options.php:360 views/wcfm-metabox.php:119 200 #: views/wcmarketplace-metabox.php:102 183 201 msgid "Friday" 184 202 msgstr "Vendredi" 185 203 186 204 #: views/dokanmarketplace-metabox.php:111 views/metabox-product.php:113 187 #: views/options.php:314 views/wcmarketplace-metabox.php:107 205 #: views/options.php:365 views/wcfm-metabox.php:124 206 #: views/wcmarketplace-metabox.php:107 188 207 msgid "Saturday" 189 208 msgstr "Samedi" 190 209 191 210 #: views/dokanmarketplace-metabox.php:116 views/metabox-product.php:118 192 #: views/options.php:319 views/wcmarketplace-metabox.php:112 211 #: views/options.php:370 views/wcfm-metabox.php:129 212 #: views/wcmarketplace-metabox.php:112 193 213 msgid "Sunday" 194 214 msgstr "Dimanche" … … 198 218 msgstr "Ecraser les paramètres généraux" 199 219 200 #: views/options.php: 73220 #: views/options.php:91 201 221 msgid "An error has occurred, try again." 202 222 msgstr "Une erreur s'est produite, réessayez." 203 223 204 #: views/options.php: 77224 #: views/options.php:95 205 225 msgid "Welcome to newsletter :)" 206 226 msgstr "Bienvenue dans la newsletter :)" 207 227 208 #: views/options.php:1 20228 #: views/options.php:138 209 229 msgid "Estimated Delivery for Woocommerce" 210 230 msgstr "Estimation du délai de livraison pour Woocommerce" 211 231 212 #: views/options.php:1 21232 #: views/options.php:139 213 233 msgid "Show the estimated or guaranteed delivery for the product" 214 234 msgstr "Afficher la livraison estimée ou garantie pour le produit" 215 235 216 #: views/options.php:1 28236 #: views/options.php:146 217 237 msgid "Do you want to receive the latest?" 218 238 msgstr "Voulez-vous recevoir les dernières informations ?" 219 239 220 #: views/options.php:1 29240 #: views/options.php:147 221 241 msgid "" 222 242 "Thank you very much for using our plugin, if you want to receive the latest " … … 227 247 "notre newsletter. :)" 228 248 229 #: views/options.php:1 31249 #: views/options.php:149 230 250 msgid "Required" 231 251 msgstr "Requis" 232 252 233 #: views/options.php:1 39253 #: views/options.php:157 234 254 msgid "Submit" 235 255 msgstr "Soumettre" 236 256 237 #: views/options.php:1 39257 #: views/options.php:157 238 258 msgid "Processing" 239 259 msgstr "" 240 260 241 #: views/options.php:1 52261 #: views/options.php:170 242 262 msgid "" 243 263 "Developing this plugin takes time, so if you like it, we invite you to make " … … 249 269 "et mettre à jour, ajouter des nouvelles, ce sera toujours gratuit." 250 270 251 #: views/options.php:1 53271 #: views/options.php:171 252 272 msgid "Make a donation now to help development" 253 273 msgstr "Faites un don maintenant pour aider au développement" 254 274 255 #: views/options.php:1 62275 #: views/options.php:180 256 276 msgid "Use AJAX" 257 277 msgstr "Utiliser AJAX" 258 278 259 #: views/options.php:1 63279 #: views/options.php:181 260 280 msgid "If your site use cache system, active this option." 261 281 msgstr "Si votre site utilise un système de cache, activez cette option." 262 282 263 #: views/options.php:1 71283 #: views/options.php:189 264 284 msgid "Delivery same day" 265 285 msgstr "" 266 286 267 #: views/options.php:1 72287 #: views/options.php:190 268 288 msgid "" 269 289 "When you set 0 in any option the estimated delivery is disabled, activate " … … 271 291 msgstr "" 272 292 273 #: views/options.php:1 80293 #: views/options.php:198 274 294 msgid "Show date on order (Admin and Customer)" 275 295 msgstr "" 276 296 277 #: views/options.php:1 81297 #: views/options.php:199 278 298 msgid "" 279 299 "If you activate this option, the date will be stored with the order, the " … … 281 301 msgstr "" 282 302 283 #: views/options.php: 189303 #: views/options.php:207 284 304 msgid "Show date Products Lists" 285 305 msgstr "" 286 306 287 #: views/options.php: 190307 #: views/options.php:208 288 308 msgid "" 289 309 "If you activate this option date show on each product on list, Store, " … … 291 311 msgstr "" 292 312 293 #: views/options.php:199 313 #: views/options.php:216 314 msgid "Icon" 315 msgstr "" 316 317 #: views/options.php:217 318 msgid "" 319 "You can use always icon, fontawesome, only class name for example: fas fa-" 320 "truck-moving" 321 msgstr "" 322 323 #: views/options.php:225 324 msgid "¿Problem with Icon?" 325 msgstr "" 326 327 #: views/options.php:226 328 msgid "Load FontAwesome Library." 329 msgstr "" 330 331 #: views/options.php:234 294 332 msgid "Maximum Time" 295 333 msgstr "" 296 334 297 #: views/options.php:2 01335 #: views/options.php:236 298 336 #, php-format 299 337 msgid "" … … 302 340 msgstr "" 303 341 304 #: views/options.php:2 10342 #: views/options.php:245 305 343 msgid "Use Relative Dates" 306 344 msgstr "Utiliser les dates relatives" 307 345 308 #: views/options.php:2 11346 #: views/options.php:246 309 347 msgid "Only work with current and next week" 310 348 msgstr "Ne fonctionne qu'avec la semaine en cours et la semaine prochaine" 311 349 312 #: views/options.php:324 350 #: views/options.php:305 351 msgid "Date Formats" 352 msgstr "" 353 354 #: views/options.php:306 355 msgid "You can change date format use" 356 msgstr "" 357 358 #: views/options.php:309 359 msgid "Same month and year, different day (00 - 00 MM, YYYY)" 360 msgstr "" 361 362 #: views/options.php:312 363 msgid "Same year, different day and month (00 MM - 00 MM, YYYY)" 364 msgstr "" 365 366 #: views/options.php:315 367 msgid "All different (00 MM YYYY - 00 MM YYYY)" 368 msgstr "" 369 370 #: views/options.php:375 313 371 msgid "Position" 314 372 msgstr "Position" 315 373 316 #: views/options.php:338 374 #: views/options.php:389 375 msgid "Holidays Dates" 376 msgstr "" 377 378 #: views/options.php:390 379 msgid "" 380 "Dates with comma separated, YYYY/MM/DD, on YEAR use XXXX for dynamic year. " 381 "Example: XXXX/12/31" 382 msgstr "" 383 384 #: views/options.php:398 317 385 msgid "Save" 318 386 msgstr "Enregistrer" 319 387 320 #: views/options.php: 340388 #: views/options.php:400 321 389 msgid "Need style?" 322 390 msgstr "Besoin de style ?" 323 391 324 #: views/options.php: 341392 #: views/options.php:401 325 393 msgid "Enjoy! Paste this CSS code into your Customizer and edit as you like" 326 394 msgstr "" -
estimated-delivery-for-woocommerce/trunk/languages/estimated-delivery-for-woocommerce-it_IT.po
r2906408 r3098233 5 5 "Project-Id-Version: Plugins - Estimated Delivery for Woocomerce - Stable " 6 6 "(latest release)\n" 7 "POT-Creation-Date: 202 3-05-01 02:01+0200\n"8 "PO-Revision-Date: 202 3-05-01 02:03+0200\n"7 "POT-Creation-Date: 2024-06-06 00:39+0200\n" 8 "PO-Revision-Date: 2024-06-06 00:39+0200\n" 9 9 "Last-Translator: \n" 10 10 "Language-Team: \n" … … 14 14 "Content-Transfer-Encoding: 8bit\n" 15 15 "Plural-Forms: nplurals=2; plural=n != 1;\n" 16 "X-Generator: Poedit 3. 2.2\n"17 18 #: estimated-delivery-woocommerce.php:1 0119 #: estimated-delivery-woocommerce.php: 15620 #: estimated-delivery-woocommerce.php:2 1016 "X-Generator: Poedit 3.4.4\n" 17 18 #: estimated-delivery-woocommerce.php:151 19 #: estimated-delivery-woocommerce.php:211 20 #: estimated-delivery-woocommerce.php:267 views/wcfm-metabox.php:21 21 21 msgid "Estimated Delivery" 22 22 msgstr "" 23 23 24 #: estimated-delivery-woocommerce.php:2 1624 #: estimated-delivery-woocommerce.php:273 25 25 msgid "Disabled, use shortcode" 26 26 msgstr "" 27 27 28 #: estimated-delivery-woocommerce.php:2 1728 #: estimated-delivery-woocommerce.php:274 29 29 msgid "After cart button" 30 30 msgstr "" 31 31 32 #: estimated-delivery-woocommerce.php:2 1832 #: estimated-delivery-woocommerce.php:275 33 33 msgid "Before cart button" 34 34 msgstr "" 35 35 36 #: estimated-delivery-woocommerce.php:2 1936 #: estimated-delivery-woocommerce.php:276 37 37 msgid "After product meta" 38 38 msgstr "" 39 39 40 #: estimated-delivery-woocommerce.php:2 2040 #: estimated-delivery-woocommerce.php:277 41 41 msgid "Before product summary" 42 42 msgstr "" 43 43 44 #: estimated-delivery-woocommerce.php:2 2144 #: estimated-delivery-woocommerce.php:278 45 45 msgid "After product summary" 46 46 msgstr "" 47 47 48 #: estimated-delivery-woocommerce.php:2 2248 #: estimated-delivery-woocommerce.php:279 49 49 msgid "Product Thumbnail (may not work)" 50 50 msgstr "" 51 51 52 #: estimated-delivery-woocommerce.php: 38152 #: estimated-delivery-woocommerce.php:472 53 53 msgid " on" 54 54 msgstr "" 55 55 56 #: estimated-delivery-woocommerce.php: 39057 #: estimated-delivery-woocommerce.php: 41156 #: estimated-delivery-woocommerce.php:481 57 #: estimated-delivery-woocommerce.php:502 58 58 #, php-format 59 59 msgid "this %s, %s" 60 60 msgstr "" 61 61 62 #: estimated-delivery-woocommerce.php: 39363 #: estimated-delivery-woocommerce.php: 41462 #: estimated-delivery-woocommerce.php:484 63 #: estimated-delivery-woocommerce.php:505 64 64 #, php-format 65 65 msgid "the next %s, %s" 66 66 msgstr "" 67 67 68 #: estimated-delivery-woocommerce.php: 42168 #: estimated-delivery-woocommerce.php:514 69 69 msgid "Estimated delivery" 70 70 msgstr "" 71 71 72 #: estimated-delivery-woocommerce.php: 42272 #: estimated-delivery-woocommerce.php:515 73 73 #, php-format 74 74 msgid "Estimated delivery%s %s" 75 75 msgstr "" 76 76 77 #: estimated-delivery-woocommerce.php: 42477 #: estimated-delivery-woocommerce.php:517 78 78 msgid "Guaranteed delivery" 79 79 msgstr "" 80 80 81 #: estimated-delivery-woocommerce.php: 42581 #: estimated-delivery-woocommerce.php:518 82 82 #, php-format 83 83 msgid "Guaranteed delivery%s %s" … … 85 85 86 86 #: views/dokanmarketplace-metabox.php:16 views/metabox-product.php:18 87 #: views/options.php:219 views/wcmarketplace-metabox.php:12 87 #: views/options.php:254 views/wcfm-metabox.php:29 88 #: views/wcmarketplace-metabox.php:12 88 89 msgid "Days for Delivery" 89 90 msgstr "" 90 91 91 92 #: views/dokanmarketplace-metabox.php:24 views/metabox-product.php:26 92 #: views/options.php:227 views/wcmarketplace-metabox.php:20 93 #: views/options.php:262 views/wcfm-metabox.php:37 94 #: views/wcmarketplace-metabox.php:20 93 95 msgid "Max Days for Delivery" 94 96 msgstr "" … … 97 99 #: views/dokanmarketplace-metabox.php:59 views/metabox-product.php:27 98 100 #: views/metabox-product.php:44 views/metabox-product.php:61 99 #: views/options.php:228 views/options.php:245 views/options.php:262 100 #: views/wcmarketplace-metabox.php:21 views/wcmarketplace-metabox.php:38 101 #: views/wcmarketplace-metabox.php:55 101 #: views/options.php:263 views/options.php:280 views/options.php:297 102 #: views/wcfm-metabox.php:38 views/wcfm-metabox.php:55 103 #: views/wcfm-metabox.php:72 views/wcmarketplace-metabox.php:21 104 #: views/wcmarketplace-metabox.php:38 views/wcmarketplace-metabox.php:55 102 105 msgid "Set 0 for disable. If this set more than 0 days, it will show a range." 103 106 msgstr "" 104 107 105 108 #: views/dokanmarketplace-metabox.php:33 views/metabox-product.php:35 106 #: views/options.php:236 views/wcmarketplace-metabox.php:29 109 #: views/options.php:271 views/wcfm-metabox.php:46 110 #: views/wcmarketplace-metabox.php:29 107 111 msgid "Days for Delivery out of stock" 108 112 msgstr "" 109 113 110 114 #: views/dokanmarketplace-metabox.php:41 views/metabox-product.php:43 111 #: views/options.php:244 views/wcmarketplace-metabox.php:37 115 #: views/options.php:279 views/wcfm-metabox.php:54 116 #: views/wcmarketplace-metabox.php:37 112 117 msgid "Max Days for Delivery out of stock" 113 118 msgstr "" 114 119 115 120 #: views/dokanmarketplace-metabox.php:50 views/metabox-product.php:52 116 #: views/options.php:253 views/wcmarketplace-metabox.php:46 121 #: views/options.php:288 views/wcfm-metabox.php:63 122 #: views/wcmarketplace-metabox.php:46 117 123 msgid "Days for Delivery Backorders" 118 124 msgstr "" 119 125 120 126 #: views/dokanmarketplace-metabox.php:58 views/metabox-product.php:60 121 #: views/options.php:261 views/wcmarketplace-metabox.php:54 127 #: views/options.php:296 views/wcfm-metabox.php:71 128 #: views/wcmarketplace-metabox.php:54 122 129 msgid "Max Days for Delivery Backorders" 123 130 msgstr "" 124 131 125 132 #: views/dokanmarketplace-metabox.php:67 views/metabox-product.php:69 126 #: views/options.php:270 views/wcmarketplace-metabox.php:63 133 #: views/options.php:321 views/wcfm-metabox.php:80 134 #: views/wcmarketplace-metabox.php:63 127 135 msgid "Estimated or Guaranteed" 128 136 msgstr "" 129 137 130 138 #: views/dokanmarketplace-metabox.php:68 views/metabox-product.php:70 131 #: views/options.php:271 views/wcmarketplace-metabox.php:64 139 #: views/options.php:322 views/wcfm-metabox.php:81 140 #: views/wcmarketplace-metabox.php:64 132 141 msgid "The message will change." 133 142 msgstr "" 134 143 135 144 #: views/dokanmarketplace-metabox.php:73 views/metabox-product.php:75 136 #: views/options.php:276 views/wcmarketplace-metabox.php:69 145 #: views/options.php:327 views/wcfm-metabox.php:86 146 #: views/wcmarketplace-metabox.php:69 137 147 msgid "Estimated" 138 148 msgstr "" 139 149 140 150 #: views/dokanmarketplace-metabox.php:74 views/metabox-product.php:76 141 #: views/options.php:277 views/wcmarketplace-metabox.php:70 151 #: views/options.php:328 views/wcfm-metabox.php:87 152 #: views/wcmarketplace-metabox.php:70 142 153 msgid "Guaranteed" 143 154 msgstr "" 144 155 145 156 #: views/dokanmarketplace-metabox.php:80 views/metabox-product.php:82 146 #: views/options.php:283 views/wcmarketplace-metabox.php:76 157 #: views/options.php:334 views/wcfm-metabox.php:93 158 #: views/wcmarketplace-metabox.php:76 147 159 msgid "Days disabled" 148 160 msgstr "" 149 161 150 162 #: views/dokanmarketplace-metabox.php:81 views/metabox-product.php:83 151 #: views/options.php:284 views/wcmarketplace-metabox.php:77 163 #: views/options.php:335 views/wcfm-metabox.php:94 164 #: views/wcmarketplace-metabox.php:77 152 165 msgid "Select the days that NO shipments are made." 153 166 msgstr "" 154 167 155 168 #: views/dokanmarketplace-metabox.php:86 views/metabox-product.php:88 156 #: views/options.php:289 views/wcmarketplace-metabox.php:82 169 #: views/options.php:340 views/wcfm-metabox.php:99 170 #: views/wcmarketplace-metabox.php:82 157 171 msgid "Monday" 158 172 msgstr "" 159 173 160 174 #: views/dokanmarketplace-metabox.php:91 views/metabox-product.php:93 161 #: views/options.php:294 views/wcmarketplace-metabox.php:87 175 #: views/options.php:345 views/wcfm-metabox.php:104 176 #: views/wcmarketplace-metabox.php:87 162 177 msgid "Tuesday" 163 178 msgstr "" 164 179 165 180 #: views/dokanmarketplace-metabox.php:96 views/metabox-product.php:98 166 #: views/options.php:299 views/wcmarketplace-metabox.php:92 181 #: views/options.php:350 views/wcfm-metabox.php:109 182 #: views/wcmarketplace-metabox.php:92 167 183 msgid "Wednesday" 168 184 msgstr "" 169 185 170 186 #: views/dokanmarketplace-metabox.php:101 views/metabox-product.php:103 171 #: views/options.php:304 views/wcmarketplace-metabox.php:97 187 #: views/options.php:355 views/wcfm-metabox.php:114 188 #: views/wcmarketplace-metabox.php:97 172 189 msgid "Thursday" 173 190 msgstr "" 174 191 175 192 #: views/dokanmarketplace-metabox.php:106 views/metabox-product.php:108 176 #: views/options.php:309 views/wcmarketplace-metabox.php:102 193 #: views/options.php:360 views/wcfm-metabox.php:119 194 #: views/wcmarketplace-metabox.php:102 177 195 msgid "Friday" 178 196 msgstr "" 179 197 180 198 #: views/dokanmarketplace-metabox.php:111 views/metabox-product.php:113 181 #: views/options.php:314 views/wcmarketplace-metabox.php:107 199 #: views/options.php:365 views/wcfm-metabox.php:124 200 #: views/wcmarketplace-metabox.php:107 182 201 msgid "Saturday" 183 202 msgstr "" 184 203 185 204 #: views/dokanmarketplace-metabox.php:116 views/metabox-product.php:118 186 #: views/options.php:319 views/wcmarketplace-metabox.php:112 205 #: views/options.php:370 views/wcfm-metabox.php:129 206 #: views/wcmarketplace-metabox.php:112 187 207 msgid "Sunday" 188 208 msgstr "" … … 192 212 msgstr "" 193 213 194 #: views/options.php: 73214 #: views/options.php:91 195 215 msgid "An error has occurred, try again." 196 216 msgstr "" 197 217 198 #: views/options.php: 77218 #: views/options.php:95 199 219 msgid "Welcome to newsletter :)" 200 220 msgstr "" 201 221 202 #: views/options.php:1 20222 #: views/options.php:138 203 223 msgid "Estimated Delivery for Woocommerce" 204 224 msgstr "" 205 225 206 #: views/options.php:1 21226 #: views/options.php:139 207 227 msgid "Show the estimated or guaranteed delivery for the product" 208 228 msgstr "" 209 229 210 #: views/options.php:1 28230 #: views/options.php:146 211 231 msgid "Do you want to receive the latest?" 212 232 msgstr "" 213 233 214 #: views/options.php:1 29234 #: views/options.php:147 215 235 msgid "" 216 236 "Thank you very much for using our plugin, if you want to receive the latest " … … 218 238 msgstr "" 219 239 220 #: views/options.php:1 31240 #: views/options.php:149 221 241 msgid "Required" 222 242 msgstr "" 223 243 224 #: views/options.php:1 39244 #: views/options.php:157 225 245 msgid "Submit" 226 246 msgstr "" 227 247 228 #: views/options.php:1 39248 #: views/options.php:157 229 249 msgid "Processing" 230 250 msgstr "" 231 251 232 #: views/options.php:1 52252 #: views/options.php:170 233 253 msgid "" 234 254 "Developing this plugin takes time, so if you like it, we invite you to make " … … 237 257 msgstr "" 238 258 239 #: views/options.php:1 53259 #: views/options.php:171 240 260 msgid "Make a donation now to help development" 241 261 msgstr "" 242 262 243 #: views/options.php:1 62263 #: views/options.php:180 244 264 msgid "Use AJAX" 245 265 msgstr "" 246 266 247 #: views/options.php:1 63267 #: views/options.php:181 248 268 msgid "If your site use cache system, active this option." 249 269 msgstr "" 250 270 251 #: views/options.php:1 71271 #: views/options.php:189 252 272 msgid "Delivery same day" 253 273 msgstr "" 254 274 255 #: views/options.php:1 72275 #: views/options.php:190 256 276 msgid "" 257 277 "When you set 0 in any option the estimated delivery is disabled, activate " … … 259 279 msgstr "" 260 280 261 #: views/options.php:1 80281 #: views/options.php:198 262 282 msgid "Show date on order (Admin and Customer)" 263 283 msgstr "" 264 284 265 #: views/options.php:1 81285 #: views/options.php:199 266 286 msgid "" 267 287 "If you activate this option, the date will be stored with the order, the " … … 269 289 msgstr "" 270 290 271 #: views/options.php: 189291 #: views/options.php:207 272 292 msgid "Show date Products Lists" 273 293 msgstr "" 274 294 275 #: views/options.php: 190295 #: views/options.php:208 276 296 msgid "" 277 297 "If you activate this option date show on each product on list, Store, " … … 279 299 msgstr "" 280 300 281 #: views/options.php:199 301 #: views/options.php:216 302 msgid "Icon" 303 msgstr "" 304 305 #: views/options.php:217 306 msgid "" 307 "You can use always icon, fontawesome, only class name for example: fas fa-" 308 "truck-moving" 309 msgstr "" 310 311 #: views/options.php:225 312 msgid "¿Problem with Icon?" 313 msgstr "" 314 315 #: views/options.php:226 316 msgid "Load FontAwesome Library." 317 msgstr "" 318 319 #: views/options.php:234 282 320 msgid "Maximum Time" 283 321 msgstr "" 284 322 285 #: views/options.php:2 01323 #: views/options.php:236 286 324 #, php-format 287 325 msgid "" … … 290 328 msgstr "" 291 329 292 #: views/options.php:2 10330 #: views/options.php:245 293 331 msgid "Use Relative Dates" 294 332 msgstr "" 295 333 296 #: views/options.php:2 11334 #: views/options.php:246 297 335 msgid "Only work with current and next week" 298 336 msgstr "" 299 337 300 #: views/options.php:324 338 #: views/options.php:305 339 msgid "Date Formats" 340 msgstr "" 341 342 #: views/options.php:306 343 msgid "You can change date format use" 344 msgstr "" 345 346 #: views/options.php:309 347 msgid "Same month and year, different day (00 - 00 MM, YYYY)" 348 msgstr "" 349 350 #: views/options.php:312 351 msgid "Same year, different day and month (00 MM - 00 MM, YYYY)" 352 msgstr "" 353 354 #: views/options.php:315 355 msgid "All different (00 MM YYYY - 00 MM YYYY)" 356 msgstr "" 357 358 #: views/options.php:375 301 359 msgid "Position" 302 360 msgstr "" 303 361 304 #: views/options.php:338 362 #: views/options.php:389 363 msgid "Holidays Dates" 364 msgstr "" 365 366 #: views/options.php:390 367 msgid "" 368 "Dates with comma separated, YYYY/MM/DD, on YEAR use XXXX for dynamic year. " 369 "Example: XXXX/12/31" 370 msgstr "" 371 372 #: views/options.php:398 305 373 msgid "Save" 306 374 msgstr "" 307 375 308 #: views/options.php: 340376 #: views/options.php:400 309 377 msgid "Need style?" 310 378 msgstr "" 311 379 312 #: views/options.php: 341380 #: views/options.php:401 313 381 msgid "Enjoy! Paste this CSS code into your Customizer and edit as you like" 314 382 msgstr "" -
estimated-delivery-for-woocommerce/trunk/languages/estimated-delivery-for-woocommerce-nl_NL.po
r2906408 r3098233 5 5 "Project-Id-Version: Plugins - Estimated Delivery for Woocomerce - Stable " 6 6 "(latest release)\n" 7 "POT-Creation-Date: 202 3-05-01 02:01+0200\n"8 "PO-Revision-Date: 202 3-05-01 02:02+0200\n"7 "POT-Creation-Date: 2024-06-06 00:39+0200\n" 8 "PO-Revision-Date: 2024-06-06 00:39+0200\n" 9 9 "Last-Translator: \n" 10 10 "Language-Team: \n" … … 14 14 "Content-Transfer-Encoding: 8bit\n" 15 15 "Plural-Forms: nplurals=2; plural=n != 1;\n" 16 "X-Generator: Poedit 3. 2.2\n"17 18 #: estimated-delivery-woocommerce.php:1 0119 #: estimated-delivery-woocommerce.php: 15620 #: estimated-delivery-woocommerce.php:2 1016 "X-Generator: Poedit 3.4.4\n" 17 18 #: estimated-delivery-woocommerce.php:151 19 #: estimated-delivery-woocommerce.php:211 20 #: estimated-delivery-woocommerce.php:267 views/wcfm-metabox.php:21 21 21 msgid "Estimated Delivery" 22 22 msgstr "" 23 23 24 #: estimated-delivery-woocommerce.php:2 1624 #: estimated-delivery-woocommerce.php:273 25 25 msgid "Disabled, use shortcode" 26 26 msgstr "" 27 27 28 #: estimated-delivery-woocommerce.php:2 1728 #: estimated-delivery-woocommerce.php:274 29 29 msgid "After cart button" 30 30 msgstr "" 31 31 32 #: estimated-delivery-woocommerce.php:2 1832 #: estimated-delivery-woocommerce.php:275 33 33 msgid "Before cart button" 34 34 msgstr "" 35 35 36 #: estimated-delivery-woocommerce.php:2 1936 #: estimated-delivery-woocommerce.php:276 37 37 msgid "After product meta" 38 38 msgstr "" 39 39 40 #: estimated-delivery-woocommerce.php:2 2040 #: estimated-delivery-woocommerce.php:277 41 41 msgid "Before product summary" 42 42 msgstr "" 43 43 44 #: estimated-delivery-woocommerce.php:2 2144 #: estimated-delivery-woocommerce.php:278 45 45 msgid "After product summary" 46 46 msgstr "" 47 47 48 #: estimated-delivery-woocommerce.php:2 2248 #: estimated-delivery-woocommerce.php:279 49 49 msgid "Product Thumbnail (may not work)" 50 50 msgstr "" 51 51 52 #: estimated-delivery-woocommerce.php: 38152 #: estimated-delivery-woocommerce.php:472 53 53 msgid " on" 54 54 msgstr "" 55 55 56 #: estimated-delivery-woocommerce.php: 39057 #: estimated-delivery-woocommerce.php: 41156 #: estimated-delivery-woocommerce.php:481 57 #: estimated-delivery-woocommerce.php:502 58 58 #, php-format 59 59 msgid "this %s, %s" 60 60 msgstr "" 61 61 62 #: estimated-delivery-woocommerce.php: 39363 #: estimated-delivery-woocommerce.php: 41462 #: estimated-delivery-woocommerce.php:484 63 #: estimated-delivery-woocommerce.php:505 64 64 #, php-format 65 65 msgid "the next %s, %s" 66 66 msgstr "de volgende %s, %s" 67 67 68 #: estimated-delivery-woocommerce.php: 42168 #: estimated-delivery-woocommerce.php:514 69 69 #, fuzzy 70 70 #| msgid "Estimated" … … 72 72 msgstr "Geschat" 73 73 74 #: estimated-delivery-woocommerce.php: 42274 #: estimated-delivery-woocommerce.php:515 75 75 #, php-format 76 76 msgid "Estimated delivery%s %s" 77 77 msgstr "" 78 78 79 #: estimated-delivery-woocommerce.php: 42479 #: estimated-delivery-woocommerce.php:517 80 80 #, fuzzy 81 81 #| msgid "Guaranteed" … … 83 83 msgstr "gegarandeerd" 84 84 85 #: estimated-delivery-woocommerce.php: 42585 #: estimated-delivery-woocommerce.php:518 86 86 #, php-format 87 87 msgid "Guaranteed delivery%s %s" … … 89 89 90 90 #: views/dokanmarketplace-metabox.php:16 views/metabox-product.php:18 91 #: views/options.php:219 views/wcmarketplace-metabox.php:12 91 #: views/options.php:254 views/wcfm-metabox.php:29 92 #: views/wcmarketplace-metabox.php:12 92 93 msgid "Days for Delivery" 93 94 msgstr "Dagen voor levering" 94 95 95 96 #: views/dokanmarketplace-metabox.php:24 views/metabox-product.php:26 96 #: views/options.php:227 views/wcmarketplace-metabox.php:20 97 #: views/options.php:262 views/wcfm-metabox.php:37 98 #: views/wcmarketplace-metabox.php:20 97 99 msgid "Max Days for Delivery" 98 100 msgstr "" … … 101 103 #: views/dokanmarketplace-metabox.php:59 views/metabox-product.php:27 102 104 #: views/metabox-product.php:44 views/metabox-product.php:61 103 #: views/options.php:228 views/options.php:245 views/options.php:262 104 #: views/wcmarketplace-metabox.php:21 views/wcmarketplace-metabox.php:38 105 #: views/wcmarketplace-metabox.php:55 105 #: views/options.php:263 views/options.php:280 views/options.php:297 106 #: views/wcfm-metabox.php:38 views/wcfm-metabox.php:55 107 #: views/wcfm-metabox.php:72 views/wcmarketplace-metabox.php:21 108 #: views/wcmarketplace-metabox.php:38 views/wcmarketplace-metabox.php:55 106 109 msgid "Set 0 for disable. If this set more than 0 days, it will show a range." 107 110 msgstr "" 108 111 109 112 #: views/dokanmarketplace-metabox.php:33 views/metabox-product.php:35 110 #: views/options.php:236 views/wcmarketplace-metabox.php:29 113 #: views/options.php:271 views/wcfm-metabox.php:46 114 #: views/wcmarketplace-metabox.php:29 111 115 msgid "Days for Delivery out of stock" 112 116 msgstr "" 113 117 114 118 #: views/dokanmarketplace-metabox.php:41 views/metabox-product.php:43 115 #: views/options.php:244 views/wcmarketplace-metabox.php:37 119 #: views/options.php:279 views/wcfm-metabox.php:54 120 #: views/wcmarketplace-metabox.php:37 116 121 msgid "Max Days for Delivery out of stock" 117 122 msgstr "" 118 123 119 124 #: views/dokanmarketplace-metabox.php:50 views/metabox-product.php:52 120 #: views/options.php:253 views/wcmarketplace-metabox.php:46 125 #: views/options.php:288 views/wcfm-metabox.php:63 126 #: views/wcmarketplace-metabox.php:46 121 127 msgid "Days for Delivery Backorders" 122 128 msgstr "" 123 129 124 130 #: views/dokanmarketplace-metabox.php:58 views/metabox-product.php:60 125 #: views/options.php:261 views/wcmarketplace-metabox.php:54 131 #: views/options.php:296 views/wcfm-metabox.php:71 132 #: views/wcmarketplace-metabox.php:54 126 133 msgid "Max Days for Delivery Backorders" 127 134 msgstr "" 128 135 129 136 #: views/dokanmarketplace-metabox.php:67 views/metabox-product.php:69 130 #: views/options.php:270 views/wcmarketplace-metabox.php:63 137 #: views/options.php:321 views/wcfm-metabox.php:80 138 #: views/wcmarketplace-metabox.php:63 131 139 msgid "Estimated or Guaranteed" 132 140 msgstr "Geschat of gegarandeerd" 133 141 134 142 #: views/dokanmarketplace-metabox.php:68 views/metabox-product.php:70 135 #: views/options.php:271 views/wcmarketplace-metabox.php:64 143 #: views/options.php:322 views/wcfm-metabox.php:81 144 #: views/wcmarketplace-metabox.php:64 136 145 msgid "The message will change." 137 146 msgstr "Het bericht wordt gewijzigd." 138 147 139 148 #: views/dokanmarketplace-metabox.php:73 views/metabox-product.php:75 140 #: views/options.php:276 views/wcmarketplace-metabox.php:69 149 #: views/options.php:327 views/wcfm-metabox.php:86 150 #: views/wcmarketplace-metabox.php:69 141 151 msgid "Estimated" 142 152 msgstr "Geschat" 143 153 144 154 #: views/dokanmarketplace-metabox.php:74 views/metabox-product.php:76 145 #: views/options.php:277 views/wcmarketplace-metabox.php:70 155 #: views/options.php:328 views/wcfm-metabox.php:87 156 #: views/wcmarketplace-metabox.php:70 146 157 msgid "Guaranteed" 147 158 msgstr "gegarandeerd" 148 159 149 160 #: views/dokanmarketplace-metabox.php:80 views/metabox-product.php:82 150 #: views/options.php:283 views/wcmarketplace-metabox.php:76 161 #: views/options.php:334 views/wcfm-metabox.php:93 162 #: views/wcmarketplace-metabox.php:76 151 163 msgid "Days disabled" 152 164 msgstr "Dagen uitgeschakeld" 153 165 154 166 #: views/dokanmarketplace-metabox.php:81 views/metabox-product.php:83 155 #: views/options.php:284 views/wcmarketplace-metabox.php:77 167 #: views/options.php:335 views/wcfm-metabox.php:94 168 #: views/wcmarketplace-metabox.php:77 156 169 msgid "Select the days that NO shipments are made." 157 170 msgstr "Selecteer de dagen dat er GEEN bestellingen worden verzonden." 158 171 159 172 #: views/dokanmarketplace-metabox.php:86 views/metabox-product.php:88 160 #: views/options.php:289 views/wcmarketplace-metabox.php:82 173 #: views/options.php:340 views/wcfm-metabox.php:99 174 #: views/wcmarketplace-metabox.php:82 161 175 msgid "Monday" 162 176 msgstr "Maandag" 163 177 164 178 #: views/dokanmarketplace-metabox.php:91 views/metabox-product.php:93 165 #: views/options.php:294 views/wcmarketplace-metabox.php:87 179 #: views/options.php:345 views/wcfm-metabox.php:104 180 #: views/wcmarketplace-metabox.php:87 166 181 msgid "Tuesday" 167 182 msgstr "Dinsdag" 168 183 169 184 #: views/dokanmarketplace-metabox.php:96 views/metabox-product.php:98 170 #: views/options.php:299 views/wcmarketplace-metabox.php:92 185 #: views/options.php:350 views/wcfm-metabox.php:109 186 #: views/wcmarketplace-metabox.php:92 171 187 msgid "Wednesday" 172 188 msgstr "Woensdag" 173 189 174 190 #: views/dokanmarketplace-metabox.php:101 views/metabox-product.php:103 175 #: views/options.php:304 views/wcmarketplace-metabox.php:97 191 #: views/options.php:355 views/wcfm-metabox.php:114 192 #: views/wcmarketplace-metabox.php:97 176 193 msgid "Thursday" 177 194 msgstr "Donderdag" 178 195 179 196 #: views/dokanmarketplace-metabox.php:106 views/metabox-product.php:108 180 #: views/options.php:309 views/wcmarketplace-metabox.php:102 197 #: views/options.php:360 views/wcfm-metabox.php:119 198 #: views/wcmarketplace-metabox.php:102 181 199 msgid "Friday" 182 200 msgstr "Vrijdag" 183 201 184 202 #: views/dokanmarketplace-metabox.php:111 views/metabox-product.php:113 185 #: views/options.php:314 views/wcmarketplace-metabox.php:107 203 #: views/options.php:365 views/wcfm-metabox.php:124 204 #: views/wcmarketplace-metabox.php:107 186 205 msgid "Saturday" 187 206 msgstr "Zaterdag" 188 207 189 208 #: views/dokanmarketplace-metabox.php:116 views/metabox-product.php:118 190 #: views/options.php:319 views/wcmarketplace-metabox.php:112 209 #: views/options.php:370 views/wcfm-metabox.php:129 210 #: views/wcmarketplace-metabox.php:112 191 211 msgid "Sunday" 192 212 msgstr "Zondag" … … 196 216 msgstr "" 197 217 198 #: views/options.php: 73218 #: views/options.php:91 199 219 msgid "An error has occurred, try again." 200 220 msgstr "Er is een fout opgetreden. Probeer het opnieuw." 201 221 202 #: views/options.php: 77222 #: views/options.php:95 203 223 msgid "Welcome to newsletter :)" 204 224 msgstr "Welkom bij de nieuwsbrief :)" 205 225 206 #: views/options.php:1 20226 #: views/options.php:138 207 227 msgid "Estimated Delivery for Woocommerce" 208 228 msgstr "" 209 229 210 #: views/options.php:1 21230 #: views/options.php:139 211 231 msgid "Show the estimated or guaranteed delivery for the product" 212 232 msgstr "" 213 233 214 #: views/options.php:1 28234 #: views/options.php:146 215 235 msgid "Do you want to receive the latest?" 216 236 msgstr "Wil je het laatste nieuws ontvangen?" 217 237 218 #: views/options.php:1 29238 #: views/options.php:147 219 239 msgid "" 220 240 "Thank you very much for using our plugin, if you want to receive the latest " … … 225 245 "voor onze nieuwsbrief. :)" 226 246 227 #: views/options.php:1 31247 #: views/options.php:149 228 248 msgid "Required" 229 249 msgstr "Verplicht" 230 250 231 #: views/options.php:1 39251 #: views/options.php:157 232 252 msgid "Submit" 233 253 msgstr "Verstuur" 234 254 235 #: views/options.php:1 39255 #: views/options.php:157 236 256 msgid "Processing" 237 257 msgstr "Verwerken" 238 258 239 #: views/options.php:1 52259 #: views/options.php:170 240 260 msgid "" 241 261 "Developing this plugin takes time, so if you like it, we invite you to make " … … 247 267 "ontwikkelen, updaten en nieuws toevoegen, dit zal altijd gratis zijn." 248 268 249 #: views/options.php:1 53269 #: views/options.php:171 250 270 msgid "Make a donation now to help development" 251 271 msgstr "Maak een donatie om de ontwikkeling te helpen" 252 272 253 #: views/options.php:1 62273 #: views/options.php:180 254 274 msgid "Use AJAX" 255 275 msgstr "AJAX gebruiken" 256 276 257 #: views/options.php:1 63277 #: views/options.php:181 258 278 msgid "If your site use cache system, active this option." 259 279 msgstr "" 260 280 261 #: views/options.php:1 71281 #: views/options.php:189 262 282 msgid "Delivery same day" 263 283 msgstr "Levering op dezelfde dag" 264 284 265 #: views/options.php:1 72285 #: views/options.php:190 266 286 msgid "" 267 287 "When you set 0 in any option the estimated delivery is disabled, activate " … … 269 289 msgstr "" 270 290 271 #: views/options.php:1 80291 #: views/options.php:198 272 292 msgid "Show date on order (Admin and Customer)" 273 293 msgstr "" 274 294 275 #: views/options.php:1 81295 #: views/options.php:199 276 296 msgid "" 277 297 "If you activate this option, the date will be stored with the order, the " … … 279 299 msgstr "" 280 300 281 #: views/options.php: 189301 #: views/options.php:207 282 302 msgid "Show date Products Lists" 283 303 msgstr "" 284 304 285 #: views/options.php: 190305 #: views/options.php:208 286 306 msgid "" 287 307 "If you activate this option date show on each product on list, Store, " … … 289 309 msgstr "" 290 310 291 #: views/options.php:199 311 #: views/options.php:216 312 msgid "Icon" 313 msgstr "" 314 315 #: views/options.php:217 316 msgid "" 317 "You can use always icon, fontawesome, only class name for example: fas fa-" 318 "truck-moving" 319 msgstr "" 320 321 #: views/options.php:225 322 msgid "¿Problem with Icon?" 323 msgstr "" 324 325 #: views/options.php:226 326 msgid "Load FontAwesome Library." 327 msgstr "" 328 329 #: views/options.php:234 292 330 msgid "Maximum Time" 293 331 msgstr "" 294 332 295 #: views/options.php:2 01333 #: views/options.php:236 296 334 #, php-format 297 335 msgid "" … … 300 338 msgstr "" 301 339 302 #: views/options.php:2 10340 #: views/options.php:245 303 341 msgid "Use Relative Dates" 304 342 msgstr "Gebruik relatieve datums" 305 343 306 #: views/options.php:2 11344 #: views/options.php:246 307 345 msgid "Only work with current and next week" 308 346 msgstr "" 309 347 310 #: views/options.php:324 348 #: views/options.php:305 349 msgid "Date Formats" 350 msgstr "" 351 352 #: views/options.php:306 353 msgid "You can change date format use" 354 msgstr "" 355 356 #: views/options.php:309 357 msgid "Same month and year, different day (00 - 00 MM, YYYY)" 358 msgstr "" 359 360 #: views/options.php:312 361 msgid "Same year, different day and month (00 MM - 00 MM, YYYY)" 362 msgstr "" 363 364 #: views/options.php:315 365 msgid "All different (00 MM YYYY - 00 MM YYYY)" 366 msgstr "" 367 368 #: views/options.php:375 311 369 msgid "Position" 312 370 msgstr "Positie" 313 371 314 #: views/options.php:338 372 #: views/options.php:389 373 msgid "Holidays Dates" 374 msgstr "" 375 376 #: views/options.php:390 377 msgid "" 378 "Dates with comma separated, YYYY/MM/DD, on YEAR use XXXX for dynamic year. " 379 "Example: XXXX/12/31" 380 msgstr "" 381 382 #: views/options.php:398 315 383 msgid "Save" 316 384 msgstr "Opslaan" 317 385 318 #: views/options.php: 340386 #: views/options.php:400 319 387 msgid "Need style?" 320 388 msgstr "" 321 389 322 #: views/options.php: 341390 #: views/options.php:401 323 391 msgid "Enjoy! Paste this CSS code into your Customizer and edit as you like" 324 392 msgstr "" -
estimated-delivery-for-woocommerce/trunk/languages/estimated-delivery-for-woocommerce.pot
r3082843 r3098233 3 3 msgstr "" 4 4 "Project-Id-Version: \n" 5 "POT-Creation-Date: 2024-0 5-07 23:32+0200\n"5 "POT-Creation-Date: 2024-06-06 00:39+0200\n" 6 6 "PO-Revision-Date: 2019-08-28 20:35+0200\n" 7 7 "Last-Translator: \n" … … 12 12 "Content-Transfer-Encoding: 8bit\n" 13 13 "Plural-Forms: nplurals=2; plural=(n != 1);\n" 14 "X-Generator: Poedit 3.4. 2\n"14 "X-Generator: Poedit 3.4.4\n" 15 15 "X-Poedit-Basepath: ..\n" 16 16 "X-Poedit-KeywordsList: __;_e\n" 17 17 "X-Poedit-SearchPath-0: .\n" 18 18 19 #: estimated-delivery-woocommerce.php:1 4320 #: estimated-delivery-woocommerce.php:2 0321 #: estimated-delivery-woocommerce.php:2 59views/wcfm-metabox.php:2119 #: estimated-delivery-woocommerce.php:151 20 #: estimated-delivery-woocommerce.php:211 21 #: estimated-delivery-woocommerce.php:267 views/wcfm-metabox.php:21 22 22 msgid "Estimated Delivery" 23 23 msgstr "" 24 24 25 #: estimated-delivery-woocommerce.php:2 6525 #: estimated-delivery-woocommerce.php:273 26 26 msgid "Disabled, use shortcode" 27 27 msgstr "" 28 28 29 #: estimated-delivery-woocommerce.php:2 6629 #: estimated-delivery-woocommerce.php:274 30 30 msgid "After cart button" 31 31 msgstr "" 32 32 33 #: estimated-delivery-woocommerce.php:2 6733 #: estimated-delivery-woocommerce.php:275 34 34 msgid "Before cart button" 35 35 msgstr "" 36 36 37 #: estimated-delivery-woocommerce.php:2 6837 #: estimated-delivery-woocommerce.php:276 38 38 msgid "After product meta" 39 39 msgstr "" 40 40 41 #: estimated-delivery-woocommerce.php:2 6941 #: estimated-delivery-woocommerce.php:277 42 42 msgid "Before product summary" 43 43 msgstr "" 44 44 45 #: estimated-delivery-woocommerce.php:27 045 #: estimated-delivery-woocommerce.php:278 46 46 msgid "After product summary" 47 47 msgstr "" 48 48 49 #: estimated-delivery-woocommerce.php:27 149 #: estimated-delivery-woocommerce.php:279 50 50 msgid "Product Thumbnail (may not work)" 51 51 msgstr "" 52 52 53 #: estimated-delivery-woocommerce.php:4 5653 #: estimated-delivery-woocommerce.php:472 54 54 msgid " on" 55 55 msgstr "" 56 56 57 #: estimated-delivery-woocommerce.php:4 6558 #: estimated-delivery-woocommerce.php: 48657 #: estimated-delivery-woocommerce.php:481 58 #: estimated-delivery-woocommerce.php:502 59 59 #, php-format 60 60 msgid "this %s, %s" 61 61 msgstr "" 62 62 63 #: estimated-delivery-woocommerce.php:4 6864 #: estimated-delivery-woocommerce.php: 48963 #: estimated-delivery-woocommerce.php:484 64 #: estimated-delivery-woocommerce.php:505 65 65 #, php-format 66 66 msgid "the next %s, %s" 67 67 msgstr "" 68 68 69 #: estimated-delivery-woocommerce.php: 49669 #: estimated-delivery-woocommerce.php:514 70 70 msgid "Estimated delivery" 71 71 msgstr "" 72 72 73 #: estimated-delivery-woocommerce.php: 49773 #: estimated-delivery-woocommerce.php:515 74 74 #, php-format 75 75 msgid "Estimated delivery%s %s" 76 76 msgstr "" 77 77 78 #: estimated-delivery-woocommerce.php: 49978 #: estimated-delivery-woocommerce.php:517 79 79 msgid "Guaranteed delivery" 80 80 msgstr "" 81 81 82 #: estimated-delivery-woocommerce.php:5 0082 #: estimated-delivery-woocommerce.php:518 83 83 #, php-format 84 84 msgid "Guaranteed delivery%s %s" … … 86 86 87 87 #: views/dokanmarketplace-metabox.php:16 views/metabox-product.php:18 88 #: views/options.php:2 30views/wcfm-metabox.php:2988 #: views/options.php:254 views/wcfm-metabox.php:29 89 89 #: views/wcmarketplace-metabox.php:12 90 90 msgid "Days for Delivery" … … 92 92 93 93 #: views/dokanmarketplace-metabox.php:24 views/metabox-product.php:26 94 #: views/options.php:2 38views/wcfm-metabox.php:3794 #: views/options.php:262 views/wcfm-metabox.php:37 95 95 #: views/wcmarketplace-metabox.php:20 96 96 msgid "Max Days for Delivery" … … 100 100 #: views/dokanmarketplace-metabox.php:59 views/metabox-product.php:27 101 101 #: views/metabox-product.php:44 views/metabox-product.php:61 102 #: views/options.php:2 39 views/options.php:256 views/options.php:273102 #: views/options.php:263 views/options.php:280 views/options.php:297 103 103 #: views/wcfm-metabox.php:38 views/wcfm-metabox.php:55 104 104 #: views/wcfm-metabox.php:72 views/wcmarketplace-metabox.php:21 … … 108 108 109 109 #: views/dokanmarketplace-metabox.php:33 views/metabox-product.php:35 110 #: views/options.php:2 47views/wcfm-metabox.php:46110 #: views/options.php:271 views/wcfm-metabox.php:46 111 111 #: views/wcmarketplace-metabox.php:29 112 112 msgid "Days for Delivery out of stock" … … 114 114 115 115 #: views/dokanmarketplace-metabox.php:41 views/metabox-product.php:43 116 #: views/options.php:2 55views/wcfm-metabox.php:54116 #: views/options.php:279 views/wcfm-metabox.php:54 117 117 #: views/wcmarketplace-metabox.php:37 118 118 msgid "Max Days for Delivery out of stock" … … 120 120 121 121 #: views/dokanmarketplace-metabox.php:50 views/metabox-product.php:52 122 #: views/options.php:2 64views/wcfm-metabox.php:63122 #: views/options.php:288 views/wcfm-metabox.php:63 123 123 #: views/wcmarketplace-metabox.php:46 124 124 msgid "Days for Delivery Backorders" … … 126 126 127 127 #: views/dokanmarketplace-metabox.php:58 views/metabox-product.php:60 128 #: views/options.php:2 72views/wcfm-metabox.php:71128 #: views/options.php:296 views/wcfm-metabox.php:71 129 129 #: views/wcmarketplace-metabox.php:54 130 130 msgid "Max Days for Delivery Backorders" … … 132 132 133 133 #: views/dokanmarketplace-metabox.php:67 views/metabox-product.php:69 134 #: views/options.php: 297views/wcfm-metabox.php:80134 #: views/options.php:321 views/wcfm-metabox.php:80 135 135 #: views/wcmarketplace-metabox.php:63 136 136 msgid "Estimated or Guaranteed" … … 138 138 139 139 #: views/dokanmarketplace-metabox.php:68 views/metabox-product.php:70 140 #: views/options.php: 298views/wcfm-metabox.php:81140 #: views/options.php:322 views/wcfm-metabox.php:81 141 141 #: views/wcmarketplace-metabox.php:64 142 142 msgid "The message will change." … … 144 144 145 145 #: views/dokanmarketplace-metabox.php:73 views/metabox-product.php:75 146 #: views/options.php:3 03views/wcfm-metabox.php:86146 #: views/options.php:327 views/wcfm-metabox.php:86 147 147 #: views/wcmarketplace-metabox.php:69 148 148 msgid "Estimated" … … 150 150 151 151 #: views/dokanmarketplace-metabox.php:74 views/metabox-product.php:76 152 #: views/options.php:3 04views/wcfm-metabox.php:87152 #: views/options.php:328 views/wcfm-metabox.php:87 153 153 #: views/wcmarketplace-metabox.php:70 154 154 msgid "Guaranteed" … … 156 156 157 157 #: views/dokanmarketplace-metabox.php:80 views/metabox-product.php:82 158 #: views/options.php:3 10views/wcfm-metabox.php:93158 #: views/options.php:334 views/wcfm-metabox.php:93 159 159 #: views/wcmarketplace-metabox.php:76 160 160 msgid "Days disabled" … … 162 162 163 163 #: views/dokanmarketplace-metabox.php:81 views/metabox-product.php:83 164 #: views/options.php:3 11views/wcfm-metabox.php:94164 #: views/options.php:335 views/wcfm-metabox.php:94 165 165 #: views/wcmarketplace-metabox.php:77 166 166 msgid "Select the days that NO shipments are made." … … 168 168 169 169 #: views/dokanmarketplace-metabox.php:86 views/metabox-product.php:88 170 #: views/options.php:3 16views/wcfm-metabox.php:99170 #: views/options.php:340 views/wcfm-metabox.php:99 171 171 #: views/wcmarketplace-metabox.php:82 172 172 msgid "Monday" … … 174 174 175 175 #: views/dokanmarketplace-metabox.php:91 views/metabox-product.php:93 176 #: views/options.php:3 21views/wcfm-metabox.php:104176 #: views/options.php:345 views/wcfm-metabox.php:104 177 177 #: views/wcmarketplace-metabox.php:87 178 178 msgid "Tuesday" … … 180 180 181 181 #: views/dokanmarketplace-metabox.php:96 views/metabox-product.php:98 182 #: views/options.php:3 26views/wcfm-metabox.php:109182 #: views/options.php:350 views/wcfm-metabox.php:109 183 183 #: views/wcmarketplace-metabox.php:92 184 184 msgid "Wednesday" … … 186 186 187 187 #: views/dokanmarketplace-metabox.php:101 views/metabox-product.php:103 188 #: views/options.php:3 31views/wcfm-metabox.php:114188 #: views/options.php:355 views/wcfm-metabox.php:114 189 189 #: views/wcmarketplace-metabox.php:97 190 190 msgid "Thursday" … … 192 192 193 193 #: views/dokanmarketplace-metabox.php:106 views/metabox-product.php:108 194 #: views/options.php:3 36views/wcfm-metabox.php:119194 #: views/options.php:360 views/wcfm-metabox.php:119 195 195 #: views/wcmarketplace-metabox.php:102 196 196 msgid "Friday" … … 198 198 199 199 #: views/dokanmarketplace-metabox.php:111 views/metabox-product.php:113 200 #: views/options.php:3 41views/wcfm-metabox.php:124200 #: views/options.php:365 views/wcfm-metabox.php:124 201 201 #: views/wcmarketplace-metabox.php:107 202 202 msgid "Saturday" … … 204 204 205 205 #: views/dokanmarketplace-metabox.php:116 views/metabox-product.php:118 206 #: views/options.php:3 46views/wcfm-metabox.php:129206 #: views/options.php:370 views/wcfm-metabox.php:129 207 207 #: views/wcmarketplace-metabox.php:112 208 208 msgid "Sunday" … … 213 213 msgstr "" 214 214 215 #: views/options.php: 84215 #: views/options.php:91 216 216 msgid "An error has occurred, try again." 217 217 msgstr "" 218 218 219 #: views/options.php: 88219 #: views/options.php:95 220 220 msgid "Welcome to newsletter :)" 221 221 msgstr "" 222 222 223 #: views/options.php:13 1223 #: views/options.php:138 224 224 msgid "Estimated Delivery for Woocommerce" 225 225 msgstr "" 226 226 227 #: views/options.php:13 2227 #: views/options.php:139 228 228 msgid "Show the estimated or guaranteed delivery for the product" 229 229 msgstr "" 230 230 231 #: views/options.php:1 39231 #: views/options.php:146 232 232 msgid "Do you want to receive the latest?" 233 233 msgstr "" 234 234 235 #: views/options.php:14 0235 #: views/options.php:147 236 236 msgid "Thank you very much for using our plugin, if you want to receive the latest news, offers, promotions, discounts, etc ... Sign up for our newsletter. :)" 237 237 msgstr "" 238 238 239 #: views/options.php:14 2239 #: views/options.php:149 240 240 msgid "Required" 241 241 msgstr "" 242 242 243 #: views/options.php:15 0243 #: views/options.php:157 244 244 msgid "Submit" 245 245 msgstr "" 246 246 247 #: views/options.php:15 0247 #: views/options.php:157 248 248 msgid "Processing" 249 249 msgstr "" 250 250 251 #: views/options.php:1 63251 #: views/options.php:170 252 252 msgid "Developing this plugin takes time, so if you like it, we invite you to make a donation so that we can continue developing and updating, adding news, this will always be free." 253 253 msgstr "" 254 254 255 #: views/options.php:1 64255 #: views/options.php:171 256 256 msgid "Make a donation now to help development" 257 257 msgstr "" 258 258 259 #: views/options.php:1 73259 #: views/options.php:180 260 260 msgid "Use AJAX" 261 261 msgstr "" 262 262 263 #: views/options.php:1 74263 #: views/options.php:181 264 264 msgid "If your site use cache system, active this option." 265 265 msgstr "" 266 266 267 #: views/options.php:18 2267 #: views/options.php:189 268 268 msgid "Delivery same day" 269 269 msgstr "" 270 270 271 #: views/options.php:1 83271 #: views/options.php:190 272 272 msgid "When you set 0 in any option the estimated delivery is disabled, activate this option to allow setting 0 and displaying the estimated date." 273 273 msgstr "" 274 274 275 #: views/options.php:19 1275 #: views/options.php:198 276 276 msgid "Show date on order (Admin and Customer)" 277 277 msgstr "" 278 278 279 #: views/options.php:19 2279 #: views/options.php:199 280 280 msgid "If you activate this option, the date will be stored with the order, the customer and you will be able to see the date on each product in the order." 281 281 msgstr "" 282 282 283 #: views/options.php:20 0283 #: views/options.php:207 284 284 msgid "Show date Products Lists" 285 285 msgstr "" 286 286 287 #: views/options.php:20 1287 #: views/options.php:208 288 288 msgid "If you activate this option date show on each product on list, Store, Search, etc. Check style (CSS) for this, bottom on this page." 289 289 msgstr "" 290 290 291 #: views/options.php:210 291 #: views/options.php:216 292 msgid "Icon" 293 msgstr "" 294 295 #: views/options.php:217 296 msgid "You can use always icon, fontawesome, only class name for example: fas fa-truck-moving" 297 msgstr "" 298 299 #: views/options.php:225 300 msgid "¿Problem with Icon?" 301 msgstr "" 302 303 #: views/options.php:226 304 msgid "Load FontAwesome Library." 305 msgstr "" 306 307 #: views/options.php:234 292 308 msgid "Maximum Time" 293 309 msgstr "" 294 310 295 #: views/options.php:2 12311 #: views/options.php:236 296 312 #, php-format 297 313 msgid "Maximum time to consider an extra day of shipping (Server time) HH:mm now is %s" 298 314 msgstr "" 299 315 300 #: views/options.php:2 21316 #: views/options.php:245 301 317 msgid "Use Relative Dates" 302 318 msgstr "" 303 319 304 #: views/options.php:2 22320 #: views/options.php:246 305 321 msgid "Only work with current and next week" 306 322 msgstr "" 307 323 308 #: views/options.php: 281324 #: views/options.php:305 309 325 msgid "Date Formats" 310 326 msgstr "" 311 327 312 #: views/options.php: 282328 #: views/options.php:306 313 329 msgid "You can change date format use" 314 330 msgstr "" 315 331 316 #: views/options.php: 285332 #: views/options.php:309 317 333 msgid "Same month and year, different day (00 - 00 MM, YYYY)" 318 334 msgstr "" 319 335 320 #: views/options.php: 288336 #: views/options.php:312 321 337 msgid "Same year, different day and month (00 MM - 00 MM, YYYY)" 322 338 msgstr "" 323 339 324 #: views/options.php: 291340 #: views/options.php:315 325 341 msgid "All different (00 MM YYYY - 00 MM YYYY)" 326 342 msgstr "" 327 343 328 #: views/options.php:3 51344 #: views/options.php:375 329 345 msgid "Position" 330 346 msgstr "" 331 347 332 #: views/options.php:3 65348 #: views/options.php:389 333 349 msgid "Holidays Dates" 334 350 msgstr "" 335 351 336 #: views/options.php:3 66352 #: views/options.php:390 337 353 msgid "Dates with comma separated, YYYY/MM/DD, on YEAR use XXXX for dynamic year. Example: XXXX/12/31" 338 354 msgstr "" 339 355 340 #: views/options.php:3 74356 #: views/options.php:398 341 357 msgid "Save" 342 358 msgstr "" 343 359 344 #: views/options.php: 376360 #: views/options.php:400 345 361 msgid "Need style?" 346 362 msgstr "" 347 363 348 #: views/options.php: 377364 #: views/options.php:401 349 365 msgid "Enjoy! Paste this CSS code into your Customizer and edit as you like" 350 366 msgstr "" -
estimated-delivery-for-woocommerce/trunk/views/dokanmarketplace-metabox.php
r2597266 r3098233 13 13 <div class="row-padding"> 14 14 <table class="form-table"> 15 <tr valign="top" >15 <tr valign="top" class="dokan_edw_days_block"> 16 16 <th scope="row"><?=__('Days for Delivery', 'estimated-delivery-for-woocommerce')?> 17 17 </th> … … 21 21 </td> 22 22 </tr> 23 <tr valign="top" >23 <tr valign="top" class="dokan_edw_max_days_block"> 24 24 <th scope="row"><?=__('Max Days for Delivery', 'estimated-delivery-for-woocommerce')?> 25 25 <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p> … … 30 30 </td> 31 31 </tr> 32 <tr valign="top" >32 <tr valign="top" class="dokan_edw_days_out_stock_block"> 33 33 <th scope="row"><?=__('Days for Delivery out of stock', 'estimated-delivery-for-woocommerce')?> 34 34 </th> … … 38 38 </td> 39 39 </tr> 40 <tr valign="top" >40 <tr valign="top" class="dokan_edw_max_days_out_stock_block"> 41 41 <th scope="row"><?=__('Max Days for Delivery out of stock', 'estimated-delivery-for-woocommerce')?> 42 42 <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p> … … 47 47 </td> 48 48 </tr> 49 <tr valign="top" >49 <tr valign="top" class="dokan_edw_days_backorders_block"> 50 50 <th scope="row"><?=__('Days for Delivery Backorders', 'estimated-delivery-for-woocommerce')?> 51 51 </th> … … 55 55 </td> 56 56 </tr> 57 <tr valign="top" >57 <tr valign="top" class="dokan_edw_max_days_backorders_block"> 58 58 <th scope="row"><?=__('Max Days for Delivery Backorders', 'estimated-delivery-for-woocommerce')?> 59 59 <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p> … … 64 64 </td> 65 65 </tr> 66 <tr valign="top" >66 <tr valign="top" class="dokan_edw_mode_block"> 67 67 <th scope="row"><?=__('Estimated or Guaranteed', 'estimated-delivery-for-woocommerce')?> 68 68 <p class="description"><?=__('The message will change.','estimated-delivery-for-woocommerce')?></p> … … 77 77 </td> 78 78 </tr> 79 <tr valign="top" >79 <tr valign="top" class="dokan_edw_disabled_days_block"> 80 80 <th scope="row"><?=__('Days disabled', 'estimated-delivery-for-woocommerce')?> 81 81 <p class="description"><?=__('Select the days that NO shipments are made.','estimated-delivery-for-woocommerce')?></p> -
estimated-delivery-for-woocommerce/trunk/views/options.php
r3082843 r3098233 23 23 update_option('_edw_max_hour', sanitize_text_field($_POST['_edw_max_hour'])); 24 24 update_option('_edw_holidays_dates', sanitize_textarea_field($_POST['_edw_holidays_dates'])); 25 25 update_option('_edw_icon', sanitize_text_field($_POST['_edw_icon'])); 26 26 27 //Format dates 27 28 update_option('_edw_date_format_1_0', sanitize_textarea_field($_POST['_edw_date_format_1_0'])); … … 37 38 }else{ 38 39 update_option('_edw_relative_dates', '0'); 40 } 41 42 if(isset($_POST['_edw_icon']) and sanitize_text_field($_POST['_edw_icon']) != '' and isset($_POST['_edw_fontawesome'])) { 43 update_option('_edw_fontawesome','1'); 44 }else{ 45 update_option('_edw_fontawesome','0'); 39 46 } 40 47 … … 206 213 </td> 207 214 </tr> 208 215 <tr valign="top"> 216 <th scope="row"><?=__('Icon', 'estimated-delivery-for-woocommerce')?> 217 <p class="description"><?=__('You can use always icon, fontawesome, only class name for example: fas fa-truck-moving','estimated-delivery-for-woocommerce')?></p> 218 </th> 219 <td> 220 <label> 221 <input type="text" name="_edw_icon" value="<?php echo get_option('_edw_icon', '') ?>" /></label> 222 </td> 223 </tr> 224 <tr valign="top"> 225 <th scope="row"><?=__('¿Problem with Icon?', 'estimated-delivery-for-woocommerce')?> 226 <p class="description"><?=__('Load FontAwesome Library.','estimated-delivery-for-woocommerce')?></p> 227 </th> 228 <td> 229 <label> 230 <input type="checkbox" name="_edw_fontawesome" value="1" <?=checked('1', get_option('_edw_fontawesome', '0'))?> /></label> 231 </td> 232 </tr> 209 233 <tr valign="top"> 210 234 <th scope="row"><?=__('Maximum Time', 'estimated-delivery-for-woocommerce')?> -
estimated-delivery-for-woocommerce/trunk/views/wcfm-metabox.php
r2907221 r3098233 26 26 <div class="row-padding"> 27 27 <table class="form-table" style="text-align:left"> 28 <tr valign="top" >28 <tr valign="top" class="wcfm_edw_days_block"> 29 29 <th scope="row"><?=__('Days for Delivery', 'estimated-delivery-for-woocommerce')?> 30 30 </th> … … 34 34 </td> 35 35 </tr> 36 <tr valign="top" >36 <tr valign="top" class="wcfm_edw_max_days_block"> 37 37 <th scope="row"><?=__('Max Days for Delivery', 'estimated-delivery-for-woocommerce')?> 38 38 <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p> … … 43 43 </td> 44 44 </tr> 45 <tr valign="top" >45 <tr valign="top" class="wcfm_edw_days_out_stock_block"> 46 46 <th scope="row"><?=__('Days for Delivery out of stock', 'estimated-delivery-for-woocommerce')?> 47 47 </th> … … 51 51 </td> 52 52 </tr> 53 <tr valign="top" >53 <tr valign="top" class="wcfm_edw_max_days_out_stock_block"> 54 54 <th scope="row"><?=__('Max Days for Delivery out of stock', 'estimated-delivery-for-woocommerce')?> 55 55 <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p> … … 60 60 </td> 61 61 </tr> 62 <tr valign="top" >62 <tr valign="top" class="wcfm_edw_days_backorders_block"> 63 63 <th scope="row"><?=__('Days for Delivery Backorders', 'estimated-delivery-for-woocommerce')?> 64 64 </th> … … 68 68 </td> 69 69 </tr> 70 <tr valign="top" >70 <tr valign="top" class="wcfm_edw_max_days_backorders_block"> 71 71 <th scope="row"><?=__('Max Days for Delivery Backorders', 'estimated-delivery-for-woocommerce')?> 72 72 <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p> … … 77 77 </td> 78 78 </tr> 79 <tr valign="top" >79 <tr valign="top" class="wcfm_edw_mode_block"> 80 80 <th scope="row"><?=__('Estimated or Guaranteed', 'estimated-delivery-for-woocommerce')?> 81 81 <p class="description"><?=__('The message will change.','estimated-delivery-for-woocommerce')?></p> … … 90 90 </td> 91 91 </tr> 92 <tr valign="top" >92 <tr valign="top" class="wcfm_edw_disabled_days_block"> 93 93 <th scope="row"><?=__('Days disabled', 'estimated-delivery-for-woocommerce')?> 94 94 <p class="description"><?=__('Select the days that NO shipments are made.','estimated-delivery-for-woocommerce')?></p> -
estimated-delivery-for-woocommerce/trunk/views/wcmarketplace-metabox.php
r2597266 r3098233 9 9 <div class="row-padding"> 10 10 <table class="form-table"> 11 <tr valign="top" >11 <tr valign="top" class="wcmp_edw_days_block"> 12 12 <th scope="row"><?=__('Days for Delivery', 'estimated-delivery-for-woocommerce')?> 13 13 </th> … … 17 17 </td> 18 18 </tr> 19 <tr valign="top" >19 <tr valign="top" class="wcmp_edw_max_days_block"> 20 20 <th scope="row"><?=__('Max Days for Delivery', 'estimated-delivery-for-woocommerce')?> 21 21 <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p> … … 26 26 </td> 27 27 </tr> 28 <tr valign="top" >28 <tr valign="top" class="wcmp_edw_days_out_stock_block"> 29 29 <th scope="row"><?=__('Days for Delivery out of stock', 'estimated-delivery-for-woocommerce')?> 30 30 </th> … … 34 34 </td> 35 35 </tr> 36 <tr valign="top" >36 <tr valign="top" class="wcmp_edw_max_days_out_stock_block"> 37 37 <th scope="row"><?=__('Max Days for Delivery out of stock', 'estimated-delivery-for-woocommerce')?> 38 38 <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p> … … 43 43 </td> 44 44 </tr> 45 <tr valign="top" >45 <tr valign="top" class="wcmp_edw_days_backorders_block"> 46 46 <th scope="row"><?=__('Days for Delivery Backorders', 'estimated-delivery-for-woocommerce')?> 47 47 </th> … … 51 51 </td> 52 52 </tr> 53 <tr valign="top" >53 <tr valign="top" class="wcmp_edw_max_days_backorders_block"> 54 54 <th scope="row"><?=__('Max Days for Delivery Backorders', 'estimated-delivery-for-woocommerce')?> 55 55 <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p> … … 60 60 </td> 61 61 </tr> 62 <tr valign="top" >62 <tr valign="top" class="wcmp_edw_mode_block"> 63 63 <th scope="row"><?=__('Estimated or Guaranteed', 'estimated-delivery-for-woocommerce')?> 64 64 <p class="description"><?=__('The message will change.','estimated-delivery-for-woocommerce')?></p> … … 73 73 </td> 74 74 </tr> 75 <tr valign="top" >75 <tr valign="top" class="wcmp_edw_disabled_days_block"> 76 76 <th scope="row"><?=__('Days disabled', 'estimated-delivery-for-woocommerce')?> 77 77 <p class="description"><?=__('Select the days that NO shipments are made.','estimated-delivery-for-woocommerce')?></p>
Note: See TracChangeset
for help on using the changeset viewer.