Changeset 3082843
- Timestamp:
- 05/07/2024 09:37:36 PM (22 months ago)
- Location:
- estimated-delivery-for-woocommerce
- Files:
-
- 22 edited
- 1 copied
-
tags/1.4.0 (copied) (copied from estimated-delivery-for-woocommerce/trunk)
-
tags/1.4.0/README.md (modified) (4 diffs)
-
tags/1.4.0/estimated-delivery-woocommerce.php (modified) (3 diffs)
-
tags/1.4.0/languages/estimated-delivery-for-woocommerce-es_ES.mo (modified) (previous)
-
tags/1.4.0/languages/estimated-delivery-for-woocommerce-es_ES.po (modified) (12 diffs)
-
tags/1.4.0/languages/estimated-delivery-for-woocommerce.pot (modified) (5 diffs)
-
tags/1.4.0/views/options.php (modified) (3 diffs)
-
tags/1.4.0/wordpress-org/banner-1544x500.png (modified) (previous)
-
tags/1.4.0/wordpress-org/banner-1880x609.png (modified) (previous)
-
tags/1.4.0/wordpress-org/banner-772x250.png (modified) (previous)
-
tags/1.4.0/wordpress-org/icon-128x128.png (modified) (previous)
-
tags/1.4.0/wordpress-org/icon-256x256.png (modified) (previous)
-
trunk/README.md (modified) (4 diffs)
-
trunk/estimated-delivery-woocommerce.php (modified) (3 diffs)
-
trunk/languages/estimated-delivery-for-woocommerce-es_ES.mo (modified) (previous)
-
trunk/languages/estimated-delivery-for-woocommerce-es_ES.po (modified) (12 diffs)
-
trunk/languages/estimated-delivery-for-woocommerce.pot (modified) (5 diffs)
-
trunk/views/options.php (modified) (3 diffs)
-
trunk/wordpress-org/banner-1544x500.png (modified) (previous)
-
trunk/wordpress-org/banner-1880x609.png (modified) (previous)
-
trunk/wordpress-org/banner-772x250.png (modified) (previous)
-
trunk/wordpress-org/icon-128x128.png (modified) (previous)
-
trunk/wordpress-org/icon-256x256.png (modified) (previous)
Legend:
- Unmodified
- Added
- Removed
-
estimated-delivery-for-woocommerce/tags/1.4.0/README.md
r3007795 r3082843 2 2 Contributors: DanielRiera 3 3 Donate link: https://www.paypal.com/donate/?hosted_button_id=EZ67DG78KMXWQ 4 Tags: estimated delivery, delivery woocommerce 4 Tags: estimated delivery, delivery woocommerce, shipping date 5 5 Requires at least: 4.3 6 Tested up to: 6. 4.26 Tested up to: 6.5.3 7 7 Requires PHP: 5.0 8 Stable tag: 1. 3.58 Stable tag: 1.4.0 9 9 10 10 == Description == … … 12 12 Shows the estimated or guaranteed delivery date on each product, select the days on which deliveries are not made. 13 13 14 ## 🎉 + 1000 active intallations! 🎉14 ## 🎉 +2000 active intallations! 🎉 15 15 16 16 `[estimate_delivery]` shortcode available from 1.1.1 version. … … 26 26 XXXX/12/31,XXXX/01/01,2024/10/02 27 27 28 ## Date Format 29 From 1.4.0 version you can change date format 28 30 29 Do you need more options? 31 ## Support 30 32 33 Do you need more options or report a issue? 31 34 [Click here Github](https://github.com/DanielRiera/estimated-delivery-woocommerce/issues) 32 35 … … 44 47 == Changelog == 45 48 49 = 1.4.0 = 50 * Format Dates 51 * Check compatibility with latest versions WordPress and WooCommerce 52 * Change banner and icon :) 53 46 54 = 1.3.5 = 47 55 * Compatibility with High-Performance order storage (COT) -
estimated-delivery-for-woocommerce/tags/1.4.0/estimated-delivery-woocommerce.php
r3007795 r3082843 5 5 * Author: Daniel Riera 6 6 * Author URI: https://danielriera.net 7 * Version: 1. 3.57 * Version: 1.4.0 8 8 * Text Domain: estimated-delivery-for-woocommerce 9 9 * Domain Path: /languages 10 10 * WC requires at least: 3.0 11 * WC tested up to: 8. 3.111 * WC tested up to: 8.8.3 12 12 * Required WP: 5.0 13 * Tested WP: 6. 4.213 * Tested WP: 6.3.2 14 14 */ 15 15 if(!defined('ABSPATH')) { exit; } … … 18 18 define('EDW_POSITION_SHOW', get_option('_edw_position', 'woocommerce_after_add_to_cart_button')); 19 19 define('EDW_USE_JS', get_option('_edw_cache', '0')); 20 define('EDW_Version', '1. 3.5');20 define('EDW_Version', '1.4.0'); 21 21 22 22 require_once EDW_PATH . 'class.api.php'; … … 471 471 if($d && !$m && !$y) { 472 472 //00 - 00 MM, YYYY 473 $date = date_i18n( "j ", strtotime($minDate)) . ' - ' . date_i18n("j F, Y", strtotime($maxDate));473 $date = date_i18n(get_option('_edw_date_format_1_0', 'j'), strtotime($minDate)) . ' - ' . date_i18n(get_option('_edw_date_format_1_1', "j F, Y"), strtotime($maxDate)); 474 474 }elseif($d && $m && !$y) { 475 475 // 00 MM - 00 MM, YYYY 476 $date = date_i18n( "j F", strtotime($minDate)) . ' - ' . date_i18n("j F, Y", strtotime($maxDate));476 $date = date_i18n(get_option('_edw_date_format_2_0', 'j F'), strtotime($minDate)) . ' - ' . date_i18n(get_option('_edw_date_format_2_1', "j F, Y"), strtotime($maxDate)); 477 477 }else{ 478 478 // 00 MM YYYY - 00 MM YYYY 479 $date = date_i18n( "j F Y", strtotime($minDate)) . ' - ' . date_i18n("j F Y", strtotime($maxDate));479 $date = date_i18n(get_option('_edw_date_format_3_0',"j F Y"), strtotime($minDate)) . ' - ' . date_i18n(get_option('_edw_date_format_3_1',"j F Y"), strtotime($maxDate)); 480 480 } 481 481 } -
estimated-delivery-for-woocommerce/tags/1.4.0/languages/estimated-delivery-for-woocommerce-es_ES.po
r2906408 r3082843 2 2 msgstr "" 3 3 "Project-Id-Version: edwoo\n" 4 "POT-Creation-Date: 202 3-05-01 01:57+0200\n"5 "PO-Revision-Date: 202 3-05-01 02:01+0200\n"4 "POT-Creation-Date: 2024-05-07 23:32+0200\n" 5 "PO-Revision-Date: 2024-05-07 23:32+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. 2.2\n"13 "X-Generator: Poedit 3.4.2\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:143 19 #: estimated-delivery-woocommerce.php:203 20 #: estimated-delivery-woocommerce.php:259 views/wcfm-metabox.php:21 21 21 msgid "Estimated Delivery" 22 22 msgstr "Entrega Estimada" 23 23 24 #: estimated-delivery-woocommerce.php:2 1624 #: estimated-delivery-woocommerce.php:265 25 25 msgid "Disabled, use shortcode" 26 26 msgstr "Deshabilitar, usaré shortcode" 27 27 28 #: estimated-delivery-woocommerce.php:2 1728 #: estimated-delivery-woocommerce.php:266 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 1832 #: estimated-delivery-woocommerce.php:267 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 1936 #: estimated-delivery-woocommerce.php:268 37 37 msgid "After product meta" 38 38 msgstr "Después de la meta del producto" 39 39 40 #: estimated-delivery-woocommerce.php:2 2040 #: estimated-delivery-woocommerce.php:269 41 41 msgid "Before product summary" 42 42 msgstr "Antes del resumen del producto" 43 43 44 #: estimated-delivery-woocommerce.php:2 2144 #: estimated-delivery-woocommerce.php:270 45 45 msgid "After product summary" 46 46 msgstr "Después del resumen del producto" 47 47 48 #: estimated-delivery-woocommerce.php:2 2248 #: estimated-delivery-woocommerce.php:271 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: 38152 #: estimated-delivery-woocommerce.php:456 53 53 msgid " on" 54 54 msgstr " el" 55 55 56 #: estimated-delivery-woocommerce.php: 39057 #: estimated-delivery-woocommerce.php:4 1156 #: estimated-delivery-woocommerce.php:465 57 #: estimated-delivery-woocommerce.php:486 58 58 #, php-format 59 59 msgid "this %s, %s" 60 60 msgstr "este %s, %s" 61 61 62 #: estimated-delivery-woocommerce.php: 39363 #: estimated-delivery-woocommerce.php:4 1462 #: estimated-delivery-woocommerce.php:468 63 #: estimated-delivery-woocommerce.php:489 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:4 2168 #: estimated-delivery-woocommerce.php:496 69 69 msgid "Estimated delivery" 70 70 msgstr "Entrega Estimada" 71 71 72 #: estimated-delivery-woocommerce.php:4 2272 #: estimated-delivery-woocommerce.php:497 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:4 2477 #: estimated-delivery-woocommerce.php:499 78 78 msgid "Guaranteed delivery" 79 79 msgstr "Entrega Garantizada" 80 80 81 #: estimated-delivery-woocommerce.php: 42581 #: estimated-delivery-woocommerce.php:500 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:230 views/wcfm-metabox.php:29 88 #: views/wcmarketplace-metabox.php:12 88 89 msgid "Days for Delivery" 89 90 msgstr "Días para el envío" 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:238 views/wcfm-metabox.php:37 94 #: views/wcmarketplace-metabox.php:20 93 95 msgid "Max Days for Delivery" 94 96 msgstr "Máximos días para el envio" … … 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:239 views/options.php:256 views/options.php:273 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 "" … … 105 108 106 109 #: views/dokanmarketplace-metabox.php:33 views/metabox-product.php:35 107 #: views/options.php:236 views/wcmarketplace-metabox.php:29 110 #: views/options.php:247 views/wcfm-metabox.php:46 111 #: views/wcmarketplace-metabox.php:29 108 112 msgid "Days for Delivery out of stock" 109 113 msgstr "Días para el envío (Sin Stock)" 110 114 111 115 #: views/dokanmarketplace-metabox.php:41 views/metabox-product.php:43 112 #: views/options.php:244 views/wcmarketplace-metabox.php:37 116 #: views/options.php:255 views/wcfm-metabox.php:54 117 #: views/wcmarketplace-metabox.php:37 113 118 msgid "Max Days for Delivery out of stock" 114 119 msgstr "Máximos días para el envio (Sin Stock)" 115 120 116 121 #: views/dokanmarketplace-metabox.php:50 views/metabox-product.php:52 117 #: views/options.php:253 views/wcmarketplace-metabox.php:46 122 #: views/options.php:264 views/wcfm-metabox.php:63 123 #: views/wcmarketplace-metabox.php:46 118 124 msgid "Days for Delivery Backorders" 119 125 msgstr "Días para el envío Backorders" 120 126 121 127 #: views/dokanmarketplace-metabox.php:58 views/metabox-product.php:60 122 #: views/options.php:261 views/wcmarketplace-metabox.php:54 128 #: views/options.php:272 views/wcfm-metabox.php:71 129 #: views/wcmarketplace-metabox.php:54 123 130 msgid "Max Days for Delivery Backorders" 124 131 msgstr "Máximos días para el envio Backorders" 125 132 126 133 #: views/dokanmarketplace-metabox.php:67 views/metabox-product.php:69 127 #: views/options.php:270 views/wcmarketplace-metabox.php:63 134 #: views/options.php:297 views/wcfm-metabox.php:80 135 #: views/wcmarketplace-metabox.php:63 128 136 msgid "Estimated or Guaranteed" 129 137 msgstr "Estimada o Garantizada" 130 138 131 139 #: views/dokanmarketplace-metabox.php:68 views/metabox-product.php:70 132 #: views/options.php:271 views/wcmarketplace-metabox.php:64 140 #: views/options.php:298 views/wcfm-metabox.php:81 141 #: views/wcmarketplace-metabox.php:64 133 142 msgid "The message will change." 134 143 msgstr "Esto cambiará el mensaje." 135 144 136 145 #: views/dokanmarketplace-metabox.php:73 views/metabox-product.php:75 137 #: views/options.php:276 views/wcmarketplace-metabox.php:69 146 #: views/options.php:303 views/wcfm-metabox.php:86 147 #: views/wcmarketplace-metabox.php:69 138 148 msgid "Estimated" 139 149 msgstr "Estimada" 140 150 141 151 #: views/dokanmarketplace-metabox.php:74 views/metabox-product.php:76 142 #: views/options.php:277 views/wcmarketplace-metabox.php:70 152 #: views/options.php:304 views/wcfm-metabox.php:87 153 #: views/wcmarketplace-metabox.php:70 143 154 msgid "Guaranteed" 144 155 msgstr "Garantizada" 145 156 146 157 #: views/dokanmarketplace-metabox.php:80 views/metabox-product.php:82 147 #: views/options.php:283 views/wcmarketplace-metabox.php:76 158 #: views/options.php:310 views/wcfm-metabox.php:93 159 #: views/wcmarketplace-metabox.php:76 148 160 msgid "Days disabled" 149 161 msgstr "Días Deshabilitados" 150 162 151 163 #: views/dokanmarketplace-metabox.php:81 views/metabox-product.php:83 152 #: views/options.php:284 views/wcmarketplace-metabox.php:77 164 #: views/options.php:311 views/wcfm-metabox.php:94 165 #: views/wcmarketplace-metabox.php:77 153 166 msgid "Select the days that NO shipments are made." 154 167 msgstr "Selecciona los días que NO se realizan envíos." 155 168 156 169 #: views/dokanmarketplace-metabox.php:86 views/metabox-product.php:88 157 #: views/options.php:289 views/wcmarketplace-metabox.php:82 170 #: views/options.php:316 views/wcfm-metabox.php:99 171 #: views/wcmarketplace-metabox.php:82 158 172 msgid "Monday" 159 173 msgstr "Lunes" 160 174 161 175 #: views/dokanmarketplace-metabox.php:91 views/metabox-product.php:93 162 #: views/options.php:294 views/wcmarketplace-metabox.php:87 176 #: views/options.php:321 views/wcfm-metabox.php:104 177 #: views/wcmarketplace-metabox.php:87 163 178 msgid "Tuesday" 164 179 msgstr "Martes" 165 180 166 181 #: views/dokanmarketplace-metabox.php:96 views/metabox-product.php:98 167 #: views/options.php:299 views/wcmarketplace-metabox.php:92 182 #: views/options.php:326 views/wcfm-metabox.php:109 183 #: views/wcmarketplace-metabox.php:92 168 184 msgid "Wednesday" 169 185 msgstr "Miercoles" 170 186 171 187 #: views/dokanmarketplace-metabox.php:101 views/metabox-product.php:103 172 #: views/options.php:304 views/wcmarketplace-metabox.php:97 188 #: views/options.php:331 views/wcfm-metabox.php:114 189 #: views/wcmarketplace-metabox.php:97 173 190 msgid "Thursday" 174 191 msgstr "Jueves" 175 192 176 193 #: views/dokanmarketplace-metabox.php:106 views/metabox-product.php:108 177 #: views/options.php:309 views/wcmarketplace-metabox.php:102 194 #: views/options.php:336 views/wcfm-metabox.php:119 195 #: views/wcmarketplace-metabox.php:102 178 196 msgid "Friday" 179 197 msgstr "Viernes" 180 198 181 199 #: views/dokanmarketplace-metabox.php:111 views/metabox-product.php:113 182 #: views/options.php:314 views/wcmarketplace-metabox.php:107 200 #: views/options.php:341 views/wcfm-metabox.php:124 201 #: views/wcmarketplace-metabox.php:107 183 202 msgid "Saturday" 184 203 msgstr "Sábado" 185 204 186 205 #: views/dokanmarketplace-metabox.php:116 views/metabox-product.php:118 187 #: views/options.php:319 views/wcmarketplace-metabox.php:112 206 #: views/options.php:346 views/wcfm-metabox.php:129 207 #: views/wcmarketplace-metabox.php:112 188 208 msgid "Sunday" 189 209 msgstr "Domingo" … … 193 213 msgstr "Sobreescribir configuración" 194 214 195 #: views/options.php: 73215 #: views/options.php:84 196 216 msgid "An error has occurred, try again." 197 217 msgstr "Ha ocurrido un error, pruebe de nuevo." 198 218 199 #: views/options.php: 77219 #: views/options.php:88 200 220 msgid "Welcome to newsletter :)" 201 221 msgstr "Bienvenid@ al newsletter" 202 222 203 #: views/options.php:1 20223 #: views/options.php:131 204 224 msgid "Estimated Delivery for Woocommerce" 205 225 msgstr "Entrega Estimada para WooCommerce" 206 226 207 #: views/options.php:1 21227 #: views/options.php:132 208 228 msgid "Show the estimated or guaranteed delivery for the product" 209 229 msgstr "Muestra la entrega estimada o garantizada por cada producto" 210 230 211 #: views/options.php:1 28231 #: views/options.php:139 212 232 msgid "Do you want to receive the latest?" 213 233 msgstr "¿Quieres recibir lo último?" 214 234 215 #: views/options.php:1 29235 #: views/options.php:140 216 236 msgid "" 217 237 "Thank you very much for using our plugin, if you want to receive the latest " … … 221 241 "ofertas, promociones, descuentos...Inscríbete en nuestro boletín. :)" 222 242 223 #: views/options.php:1 31243 #: views/options.php:142 224 244 msgid "Required" 225 245 msgstr "Requerido" 226 246 227 #: views/options.php:1 39247 #: views/options.php:150 228 248 msgid "Submit" 229 249 msgstr "Enviar" 230 250 231 #: views/options.php:1 39251 #: views/options.php:150 232 252 msgid "Processing" 233 253 msgstr "Procesando" 234 254 235 #: views/options.php:1 52255 #: views/options.php:163 236 256 msgid "" 237 257 "Developing this plugin takes time, so if you like it, we invite you to make " … … 243 263 "actualizando, añadiendo novedades, esto será siempre gratis." 244 264 245 #: views/options.php:1 53265 #: views/options.php:164 246 266 msgid "Make a donation now to help development" 247 267 msgstr "Realiza una donación ahora par ayudar al desarrollo" 248 268 249 #: views/options.php:1 62269 #: views/options.php:173 250 270 msgid "Use AJAX" 251 271 msgstr "Usar AJAX" 252 272 253 #: views/options.php:1 63273 #: views/options.php:174 254 274 msgid "If your site use cache system, active this option." 255 275 msgstr "Si tu sitio usa cache, activa esta opción." 256 276 257 #: views/options.php:1 71277 #: views/options.php:182 258 278 msgid "Delivery same day" 259 279 msgstr "Envío en el mismo día" 260 280 261 #: views/options.php:1 72281 #: views/options.php:183 262 282 msgid "" 263 283 "When you set 0 in any option the estimated delivery is disabled, activate " … … 267 287 "esta opción para permitir establecer en 0 y mostrar la fecha" 268 288 269 #: views/options.php:1 80289 #: views/options.php:191 270 290 msgid "Show date on order (Admin and Customer)" 271 291 msgstr "Mostrar fecha en pedidos (Administrador y Clientes)" 272 292 273 #: views/options.php:1 81293 #: views/options.php:192 274 294 msgid "" 275 295 "If you activate this option, the date will be stored with the order, the " … … 279 299 "ver la fecha en cada producto del pedido." 280 300 281 #: views/options.php: 189301 #: views/options.php:200 282 302 msgid "Show date Products Lists" 283 303 msgstr "Mostrar fecha en listado de productos" 284 304 285 #: views/options.php: 190305 #: views/options.php:201 286 306 msgid "" 287 307 "If you activate this option date show on each product on list, Store, " … … 292 312 "página." 293 313 294 #: views/options.php: 199314 #: views/options.php:210 295 315 msgid "Maximum Time" 296 316 msgstr "Tiempo máximo" 297 317 298 #: views/options.php:2 01318 #: views/options.php:212 299 319 #, php-format 300 320 msgid "" … … 305 325 "HH:mm ahora son %s" 306 326 307 #: views/options.php:2 10327 #: views/options.php:221 308 328 msgid "Use Relative Dates" 309 329 msgstr "Usar fechas relativas" 310 330 311 #: views/options.php:2 11331 #: views/options.php:222 312 332 msgid "Only work with current and next week" 313 333 msgstr "Solo funciona con la semana actual y la próxima" 314 334 315 #: views/options.php:324 335 #: views/options.php:281 336 msgid "Date Formats" 337 msgstr "Formato de fechas" 338 339 #: views/options.php:282 340 msgid "You can change date format use" 341 msgstr "Puedes cambiar el formato de fecha que usa el plugin" 342 343 #: views/options.php:285 344 msgid "Same month and year, different day (00 - 00 MM, YYYY)" 345 msgstr "Mismo mes y año, diferente día (00 - 00 MM, YYYY)" 346 347 #: views/options.php:288 348 msgid "Same year, different day and month (00 MM - 00 MM, YYYY)" 349 msgstr "Mismo año, diferente día y mes (00 MM - 00 MM, YYYY)" 350 351 #: views/options.php:291 352 msgid "All different (00 MM YYYY - 00 MM YYYY)" 353 msgstr "Todo diferente (00 MM YYYY - 00 MM YYYY)" 354 355 #: views/options.php:351 316 356 msgid "Position" 317 357 msgstr "Posición" 318 358 319 #: views/options.php:338 359 #: views/options.php:365 360 msgid "Holidays Dates" 361 msgstr "Fecha de Vacaciones" 362 363 #: views/options.php:366 364 msgid "" 365 "Dates with comma separated, YYYY/MM/DD, on YEAR use XXXX for dynamic year. " 366 "Example: XXXX/12/31" 367 msgstr "" 368 "Fechas separadas por coma, YYYY/MM/DD, para año dinámico usa XXXX, por " 369 "ejemplo: XXXX/12/31" 370 371 #: views/options.php:374 320 372 msgid "Save" 321 373 msgstr "Guardar" 322 374 323 #: views/options.php:3 40375 #: views/options.php:376 324 376 msgid "Need style?" 325 377 msgstr "Necesitas dar estilos?" 326 378 327 #: views/options.php:3 41379 #: views/options.php:377 328 380 msgid "Enjoy! Paste this CSS code into your Customizer and edit as you like" 329 381 msgstr "" -
estimated-delivery-for-woocommerce/tags/1.4.0/languages/estimated-delivery-for-woocommerce.pot
r2906408 r3082843 3 3 msgstr "" 4 4 "Project-Id-Version: \n" 5 "POT-Creation-Date: 202 3-05-01 02:01+0200\n"5 "POT-Creation-Date: 2024-05-07 23:32+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. 2.2\n"14 "X-Generator: Poedit 3.4.2\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 0120 #: estimated-delivery-woocommerce.php: 15621 #: estimated-delivery-woocommerce.php:2 1019 #: estimated-delivery-woocommerce.php:143 20 #: estimated-delivery-woocommerce.php:203 21 #: estimated-delivery-woocommerce.php:259 views/wcfm-metabox.php:21 22 22 msgid "Estimated Delivery" 23 23 msgstr "" 24 24 25 #: estimated-delivery-woocommerce.php:2 1625 #: estimated-delivery-woocommerce.php:265 26 26 msgid "Disabled, use shortcode" 27 27 msgstr "" 28 28 29 #: estimated-delivery-woocommerce.php:2 1729 #: estimated-delivery-woocommerce.php:266 30 30 msgid "After cart button" 31 31 msgstr "" 32 32 33 #: estimated-delivery-woocommerce.php:2 1833 #: estimated-delivery-woocommerce.php:267 34 34 msgid "Before cart button" 35 35 msgstr "" 36 36 37 #: estimated-delivery-woocommerce.php:2 1937 #: estimated-delivery-woocommerce.php:268 38 38 msgid "After product meta" 39 39 msgstr "" 40 40 41 #: estimated-delivery-woocommerce.php:2 2041 #: estimated-delivery-woocommerce.php:269 42 42 msgid "Before product summary" 43 43 msgstr "" 44 44 45 #: estimated-delivery-woocommerce.php:2 2145 #: estimated-delivery-woocommerce.php:270 46 46 msgid "After product summary" 47 47 msgstr "" 48 48 49 #: estimated-delivery-woocommerce.php:2 2249 #: estimated-delivery-woocommerce.php:271 50 50 msgid "Product Thumbnail (may not work)" 51 51 msgstr "" 52 52 53 #: estimated-delivery-woocommerce.php: 38153 #: estimated-delivery-woocommerce.php:456 54 54 msgid " on" 55 55 msgstr "" 56 56 57 #: estimated-delivery-woocommerce.php: 39058 #: estimated-delivery-woocommerce.php:4 1157 #: estimated-delivery-woocommerce.php:465 58 #: estimated-delivery-woocommerce.php:486 59 59 #, php-format 60 60 msgid "this %s, %s" 61 61 msgstr "" 62 62 63 #: estimated-delivery-woocommerce.php: 39364 #: estimated-delivery-woocommerce.php:4 1463 #: estimated-delivery-woocommerce.php:468 64 #: estimated-delivery-woocommerce.php:489 65 65 #, php-format 66 66 msgid "the next %s, %s" 67 67 msgstr "" 68 68 69 #: estimated-delivery-woocommerce.php:4 2169 #: estimated-delivery-woocommerce.php:496 70 70 msgid "Estimated delivery" 71 71 msgstr "" 72 72 73 #: estimated-delivery-woocommerce.php:4 2273 #: estimated-delivery-woocommerce.php:497 74 74 #, php-format 75 75 msgid "Estimated delivery%s %s" 76 76 msgstr "" 77 77 78 #: estimated-delivery-woocommerce.php:4 2478 #: estimated-delivery-woocommerce.php:499 79 79 msgid "Guaranteed delivery" 80 80 msgstr "" 81 81 82 #: estimated-delivery-woocommerce.php: 42582 #: estimated-delivery-woocommerce.php:500 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:219 views/wcmarketplace-metabox.php:12 88 #: views/options.php:230 views/wcfm-metabox.php:29 89 #: views/wcmarketplace-metabox.php:12 89 90 msgid "Days for Delivery" 90 91 msgstr "" 91 92 92 93 #: views/dokanmarketplace-metabox.php:24 views/metabox-product.php:26 93 #: views/options.php:227 views/wcmarketplace-metabox.php:20 94 #: views/options.php:238 views/wcfm-metabox.php:37 95 #: views/wcmarketplace-metabox.php:20 94 96 msgid "Max Days for Delivery" 95 97 msgstr "" … … 98 100 #: views/dokanmarketplace-metabox.php:59 views/metabox-product.php:27 99 101 #: views/metabox-product.php:44 views/metabox-product.php:61 100 #: views/options.php:228 views/options.php:245 views/options.php:262 101 #: views/wcmarketplace-metabox.php:21 views/wcmarketplace-metabox.php:38 102 #: views/wcmarketplace-metabox.php:55 102 #: views/options.php:239 views/options.php:256 views/options.php:273 103 #: views/wcfm-metabox.php:38 views/wcfm-metabox.php:55 104 #: views/wcfm-metabox.php:72 views/wcmarketplace-metabox.php:21 105 #: views/wcmarketplace-metabox.php:38 views/wcmarketplace-metabox.php:55 103 106 msgid "Set 0 for disable. If this set more than 0 days, it will show a range." 104 107 msgstr "" 105 108 106 109 #: views/dokanmarketplace-metabox.php:33 views/metabox-product.php:35 107 #: views/options.php:236 views/wcmarketplace-metabox.php:29 110 #: views/options.php:247 views/wcfm-metabox.php:46 111 #: views/wcmarketplace-metabox.php:29 108 112 msgid "Days for Delivery out of stock" 109 113 msgstr "" 110 114 111 115 #: views/dokanmarketplace-metabox.php:41 views/metabox-product.php:43 112 #: views/options.php:244 views/wcmarketplace-metabox.php:37 116 #: views/options.php:255 views/wcfm-metabox.php:54 117 #: views/wcmarketplace-metabox.php:37 113 118 msgid "Max Days for Delivery out of stock" 114 119 msgstr "" 115 120 116 121 #: views/dokanmarketplace-metabox.php:50 views/metabox-product.php:52 117 #: views/options.php:253 views/wcmarketplace-metabox.php:46 122 #: views/options.php:264 views/wcfm-metabox.php:63 123 #: views/wcmarketplace-metabox.php:46 118 124 msgid "Days for Delivery Backorders" 119 125 msgstr "" 120 126 121 127 #: views/dokanmarketplace-metabox.php:58 views/metabox-product.php:60 122 #: views/options.php:261 views/wcmarketplace-metabox.php:54 128 #: views/options.php:272 views/wcfm-metabox.php:71 129 #: views/wcmarketplace-metabox.php:54 123 130 msgid "Max Days for Delivery Backorders" 124 131 msgstr "" 125 132 126 133 #: views/dokanmarketplace-metabox.php:67 views/metabox-product.php:69 127 #: views/options.php:270 views/wcmarketplace-metabox.php:63 134 #: views/options.php:297 views/wcfm-metabox.php:80 135 #: views/wcmarketplace-metabox.php:63 128 136 msgid "Estimated or Guaranteed" 129 137 msgstr "" 130 138 131 139 #: views/dokanmarketplace-metabox.php:68 views/metabox-product.php:70 132 #: views/options.php:271 views/wcmarketplace-metabox.php:64 140 #: views/options.php:298 views/wcfm-metabox.php:81 141 #: views/wcmarketplace-metabox.php:64 133 142 msgid "The message will change." 134 143 msgstr "" 135 144 136 145 #: views/dokanmarketplace-metabox.php:73 views/metabox-product.php:75 137 #: views/options.php:276 views/wcmarketplace-metabox.php:69 146 #: views/options.php:303 views/wcfm-metabox.php:86 147 #: views/wcmarketplace-metabox.php:69 138 148 msgid "Estimated" 139 149 msgstr "" 140 150 141 151 #: views/dokanmarketplace-metabox.php:74 views/metabox-product.php:76 142 #: views/options.php:277 views/wcmarketplace-metabox.php:70 152 #: views/options.php:304 views/wcfm-metabox.php:87 153 #: views/wcmarketplace-metabox.php:70 143 154 msgid "Guaranteed" 144 155 msgstr "" 145 156 146 157 #: views/dokanmarketplace-metabox.php:80 views/metabox-product.php:82 147 #: views/options.php:283 views/wcmarketplace-metabox.php:76 158 #: views/options.php:310 views/wcfm-metabox.php:93 159 #: views/wcmarketplace-metabox.php:76 148 160 msgid "Days disabled" 149 161 msgstr "" 150 162 151 163 #: views/dokanmarketplace-metabox.php:81 views/metabox-product.php:83 152 #: views/options.php:284 views/wcmarketplace-metabox.php:77 164 #: views/options.php:311 views/wcfm-metabox.php:94 165 #: views/wcmarketplace-metabox.php:77 153 166 msgid "Select the days that NO shipments are made." 154 167 msgstr "" 155 168 156 169 #: views/dokanmarketplace-metabox.php:86 views/metabox-product.php:88 157 #: views/options.php:289 views/wcmarketplace-metabox.php:82 170 #: views/options.php:316 views/wcfm-metabox.php:99 171 #: views/wcmarketplace-metabox.php:82 158 172 msgid "Monday" 159 173 msgstr "" 160 174 161 175 #: views/dokanmarketplace-metabox.php:91 views/metabox-product.php:93 162 #: views/options.php:294 views/wcmarketplace-metabox.php:87 176 #: views/options.php:321 views/wcfm-metabox.php:104 177 #: views/wcmarketplace-metabox.php:87 163 178 msgid "Tuesday" 164 179 msgstr "" 165 180 166 181 #: views/dokanmarketplace-metabox.php:96 views/metabox-product.php:98 167 #: views/options.php:299 views/wcmarketplace-metabox.php:92 182 #: views/options.php:326 views/wcfm-metabox.php:109 183 #: views/wcmarketplace-metabox.php:92 168 184 msgid "Wednesday" 169 185 msgstr "" 170 186 171 187 #: views/dokanmarketplace-metabox.php:101 views/metabox-product.php:103 172 #: views/options.php:304 views/wcmarketplace-metabox.php:97 188 #: views/options.php:331 views/wcfm-metabox.php:114 189 #: views/wcmarketplace-metabox.php:97 173 190 msgid "Thursday" 174 191 msgstr "" 175 192 176 193 #: views/dokanmarketplace-metabox.php:106 views/metabox-product.php:108 177 #: views/options.php:309 views/wcmarketplace-metabox.php:102 194 #: views/options.php:336 views/wcfm-metabox.php:119 195 #: views/wcmarketplace-metabox.php:102 178 196 msgid "Friday" 179 197 msgstr "" 180 198 181 199 #: views/dokanmarketplace-metabox.php:111 views/metabox-product.php:113 182 #: views/options.php:314 views/wcmarketplace-metabox.php:107 200 #: views/options.php:341 views/wcfm-metabox.php:124 201 #: views/wcmarketplace-metabox.php:107 183 202 msgid "Saturday" 184 203 msgstr "" 185 204 186 205 #: views/dokanmarketplace-metabox.php:116 views/metabox-product.php:118 187 #: views/options.php:319 views/wcmarketplace-metabox.php:112 206 #: views/options.php:346 views/wcfm-metabox.php:129 207 #: views/wcmarketplace-metabox.php:112 188 208 msgid "Sunday" 189 209 msgstr "" … … 193 213 msgstr "" 194 214 195 #: views/options.php: 73215 #: views/options.php:84 196 216 msgid "An error has occurred, try again." 197 217 msgstr "" 198 218 199 #: views/options.php: 77219 #: views/options.php:88 200 220 msgid "Welcome to newsletter :)" 201 221 msgstr "" 202 222 203 #: views/options.php:1 20223 #: views/options.php:131 204 224 msgid "Estimated Delivery for Woocommerce" 205 225 msgstr "" 206 226 207 #: views/options.php:1 21227 #: views/options.php:132 208 228 msgid "Show the estimated or guaranteed delivery for the product" 209 229 msgstr "" 210 230 211 #: views/options.php:1 28231 #: views/options.php:139 212 232 msgid "Do you want to receive the latest?" 213 233 msgstr "" 214 234 215 #: views/options.php:1 29235 #: views/options.php:140 216 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. :)" 217 237 msgstr "" 218 238 219 #: views/options.php:1 31239 #: views/options.php:142 220 240 msgid "Required" 221 241 msgstr "" 222 242 223 #: views/options.php:1 39243 #: views/options.php:150 224 244 msgid "Submit" 225 245 msgstr "" 226 246 227 #: views/options.php:1 39247 #: views/options.php:150 228 248 msgid "Processing" 229 249 msgstr "" 230 250 231 #: views/options.php:1 52251 #: views/options.php:163 232 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." 233 253 msgstr "" 234 254 235 #: views/options.php:1 53255 #: views/options.php:164 236 256 msgid "Make a donation now to help development" 237 257 msgstr "" 238 258 239 #: views/options.php:1 62259 #: views/options.php:173 240 260 msgid "Use AJAX" 241 261 msgstr "" 242 262 243 #: views/options.php:1 63263 #: views/options.php:174 244 264 msgid "If your site use cache system, active this option." 245 265 msgstr "" 246 266 247 #: views/options.php:1 71267 #: views/options.php:182 248 268 msgid "Delivery same day" 249 269 msgstr "" 250 270 251 #: views/options.php:1 72271 #: views/options.php:183 252 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." 253 273 msgstr "" 254 274 255 #: views/options.php:1 80275 #: views/options.php:191 256 276 msgid "Show date on order (Admin and Customer)" 257 277 msgstr "" 258 278 259 #: views/options.php:1 81279 #: views/options.php:192 260 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." 261 281 msgstr "" 262 282 263 #: views/options.php: 189283 #: views/options.php:200 264 284 msgid "Show date Products Lists" 265 285 msgstr "" 266 286 267 #: views/options.php: 190287 #: views/options.php:201 268 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." 269 289 msgstr "" 270 290 271 #: views/options.php: 199291 #: views/options.php:210 272 292 msgid "Maximum Time" 273 293 msgstr "" 274 294 275 #: views/options.php:2 01295 #: views/options.php:212 276 296 #, php-format 277 297 msgid "Maximum time to consider an extra day of shipping (Server time) HH:mm now is %s" 278 298 msgstr "" 279 299 280 #: views/options.php:2 10300 #: views/options.php:221 281 301 msgid "Use Relative Dates" 282 302 msgstr "" 283 303 284 #: views/options.php:2 11304 #: views/options.php:222 285 305 msgid "Only work with current and next week" 286 306 msgstr "" 287 307 288 #: views/options.php:324 308 #: views/options.php:281 309 msgid "Date Formats" 310 msgstr "" 311 312 #: views/options.php:282 313 msgid "You can change date format use" 314 msgstr "" 315 316 #: views/options.php:285 317 msgid "Same month and year, different day (00 - 00 MM, YYYY)" 318 msgstr "" 319 320 #: views/options.php:288 321 msgid "Same year, different day and month (00 MM - 00 MM, YYYY)" 322 msgstr "" 323 324 #: views/options.php:291 325 msgid "All different (00 MM YYYY - 00 MM YYYY)" 326 msgstr "" 327 328 #: views/options.php:351 289 329 msgid "Position" 290 330 msgstr "" 291 331 292 #: views/options.php:338 332 #: views/options.php:365 333 msgid "Holidays Dates" 334 msgstr "" 335 336 #: views/options.php:366 337 msgid "Dates with comma separated, YYYY/MM/DD, on YEAR use XXXX for dynamic year. Example: XXXX/12/31" 338 msgstr "" 339 340 #: views/options.php:374 293 341 msgid "Save" 294 342 msgstr "" 295 343 296 #: views/options.php:3 40344 #: views/options.php:376 297 345 msgid "Need style?" 298 346 msgstr "" 299 347 300 #: views/options.php:3 41348 #: views/options.php:377 301 349 msgid "Enjoy! Paste this CSS code into your Customizer and edit as you like" 302 350 msgstr "" -
estimated-delivery-for-woocommerce/tags/1.4.0/views/options.php
r3007795 r3082843 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 26 //Format dates 27 update_option('_edw_date_format_1_0', sanitize_textarea_field($_POST['_edw_date_format_1_0'])); 28 update_option('_edw_date_format_1_1', sanitize_textarea_field($_POST['_edw_date_format_1_1'])); 29 update_option('_edw_date_format_2_0', sanitize_textarea_field($_POST['_edw_date_format_2_0'])); 30 update_option('_edw_date_format_2_1', sanitize_textarea_field($_POST['_edw_date_format_2_1'])); 31 update_option('_edw_date_format_3_0', sanitize_textarea_field($_POST['_edw_date_format_3_0'])); 32 update_option('_edw_date_format_3_1', sanitize_textarea_field($_POST['_edw_date_format_3_1'])); 33 34 25 35 if(isset($_POST['_edw_relative_dates'])) { 26 36 update_option('_edw_relative_dates', '1'); … … 269 279 </tr> 270 280 <tr valign="top"> 281 <th scope="row"><?=__('Date Formats', 'estimated-delivery-for-woocommerce')?> 282 <p class="description"><?=__('You can change date format use','estimated-delivery-for-woocommerce')?></p> 283 </th> 284 <td> 285 <p><?=__('Same month and year, different day (00 - 00 MM, YYYY)','estimated-delivery-for-woocommerce')?></p> 286 <input type="text" name="_edw_date_format_1_0" value="<?=get_option('_edw_date_format_1_0', 'j')?>" /> - 287 <input type="text" name="_edw_date_format_1_1" value="<?=get_option('_edw_date_format_1_1', 'j F, Y')?>" /> 288 <p><?=__('Same year, different day and month (00 MM - 00 MM, YYYY)','estimated-delivery-for-woocommerce')?></p> 289 <input type="text" name="_edw_date_format_2_0" value="<?=get_option('_edw_date_format_2_0', 'j F')?>" /> - 290 <input type="text" name="_edw_date_format_2_1" value="<?=get_option('_edw_date_format_2_1', 'j F, Y')?>" /> 291 <p><?=__('All different (00 MM YYYY - 00 MM YYYY)','estimated-delivery-for-woocommerce')?></p> 292 <input type="text" name="_edw_date_format_3_0" value="<?=get_option('_edw_date_format_3_0', 'j F Y')?>" /> - 293 <input type="text" name="_edw_date_format_3_1" value="<?=get_option('_edw_date_format_3_1', 'j F, Y')?>" /> 294 </td> 295 </tr> 296 <tr valign="top"> 271 297 <th scope="row"><?=__('Estimated or Guaranteed', 'estimated-delivery-for-woocommerce')?> 272 298 <p class="description"><?=__('The message will change.','estimated-delivery-for-woocommerce')?></p> … … 338 364 <tr valign="top"> 339 365 <th scope="row"><?=__('Holidays Dates', 'estimated-delivery-for-woocommerce')?> 340 <p class="description"><?=__('Dates with comma separated, YYYY/MM/DD, on YEAR use XXXX for dynamic year. Example: XXXX/ 31/12','estimated-delivery-for-woocommerce')?></p>366 <p class="description"><?=__('Dates with comma separated, YYYY/MM/DD, on YEAR use XXXX for dynamic year. Example: XXXX/12/31','estimated-delivery-for-woocommerce')?></p> 341 367 </th> 342 368 <td> -
estimated-delivery-for-woocommerce/trunk/README.md
r3007795 r3082843 2 2 Contributors: DanielRiera 3 3 Donate link: https://www.paypal.com/donate/?hosted_button_id=EZ67DG78KMXWQ 4 Tags: estimated delivery, delivery woocommerce 4 Tags: estimated delivery, delivery woocommerce, shipping date 5 5 Requires at least: 4.3 6 Tested up to: 6. 4.26 Tested up to: 6.5.3 7 7 Requires PHP: 5.0 8 Stable tag: 1. 3.58 Stable tag: 1.4.0 9 9 10 10 == Description == … … 12 12 Shows the estimated or guaranteed delivery date on each product, select the days on which deliveries are not made. 13 13 14 ## 🎉 + 1000 active intallations! 🎉14 ## 🎉 +2000 active intallations! 🎉 15 15 16 16 `[estimate_delivery]` shortcode available from 1.1.1 version. … … 26 26 XXXX/12/31,XXXX/01/01,2024/10/02 27 27 28 ## Date Format 29 From 1.4.0 version you can change date format 28 30 29 Do you need more options? 31 ## Support 30 32 33 Do you need more options or report a issue? 31 34 [Click here Github](https://github.com/DanielRiera/estimated-delivery-woocommerce/issues) 32 35 … … 44 47 == Changelog == 45 48 49 = 1.4.0 = 50 * Format Dates 51 * Check compatibility with latest versions WordPress and WooCommerce 52 * Change banner and icon :) 53 46 54 = 1.3.5 = 47 55 * Compatibility with High-Performance order storage (COT) -
estimated-delivery-for-woocommerce/trunk/estimated-delivery-woocommerce.php
r3007795 r3082843 5 5 * Author: Daniel Riera 6 6 * Author URI: https://danielriera.net 7 * Version: 1. 3.57 * Version: 1.4.0 8 8 * Text Domain: estimated-delivery-for-woocommerce 9 9 * Domain Path: /languages 10 10 * WC requires at least: 3.0 11 * WC tested up to: 8. 3.111 * WC tested up to: 8.8.3 12 12 * Required WP: 5.0 13 * Tested WP: 6. 4.213 * Tested WP: 6.3.2 14 14 */ 15 15 if(!defined('ABSPATH')) { exit; } … … 18 18 define('EDW_POSITION_SHOW', get_option('_edw_position', 'woocommerce_after_add_to_cart_button')); 19 19 define('EDW_USE_JS', get_option('_edw_cache', '0')); 20 define('EDW_Version', '1. 3.5');20 define('EDW_Version', '1.4.0'); 21 21 22 22 require_once EDW_PATH . 'class.api.php'; … … 471 471 if($d && !$m && !$y) { 472 472 //00 - 00 MM, YYYY 473 $date = date_i18n( "j ", strtotime($minDate)) . ' - ' . date_i18n("j F, Y", strtotime($maxDate));473 $date = date_i18n(get_option('_edw_date_format_1_0', 'j'), strtotime($minDate)) . ' - ' . date_i18n(get_option('_edw_date_format_1_1', "j F, Y"), strtotime($maxDate)); 474 474 }elseif($d && $m && !$y) { 475 475 // 00 MM - 00 MM, YYYY 476 $date = date_i18n( "j F", strtotime($minDate)) . ' - ' . date_i18n("j F, Y", strtotime($maxDate));476 $date = date_i18n(get_option('_edw_date_format_2_0', 'j F'), strtotime($minDate)) . ' - ' . date_i18n(get_option('_edw_date_format_2_1', "j F, Y"), strtotime($maxDate)); 477 477 }else{ 478 478 // 00 MM YYYY - 00 MM YYYY 479 $date = date_i18n( "j F Y", strtotime($minDate)) . ' - ' . date_i18n("j F Y", strtotime($maxDate));479 $date = date_i18n(get_option('_edw_date_format_3_0',"j F Y"), strtotime($minDate)) . ' - ' . date_i18n(get_option('_edw_date_format_3_1',"j F Y"), strtotime($maxDate)); 480 480 } 481 481 } -
estimated-delivery-for-woocommerce/trunk/languages/estimated-delivery-for-woocommerce-es_ES.po
r2906408 r3082843 2 2 msgstr "" 3 3 "Project-Id-Version: edwoo\n" 4 "POT-Creation-Date: 202 3-05-01 01:57+0200\n"5 "PO-Revision-Date: 202 3-05-01 02:01+0200\n"4 "POT-Creation-Date: 2024-05-07 23:32+0200\n" 5 "PO-Revision-Date: 2024-05-07 23:32+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. 2.2\n"13 "X-Generator: Poedit 3.4.2\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:143 19 #: estimated-delivery-woocommerce.php:203 20 #: estimated-delivery-woocommerce.php:259 views/wcfm-metabox.php:21 21 21 msgid "Estimated Delivery" 22 22 msgstr "Entrega Estimada" 23 23 24 #: estimated-delivery-woocommerce.php:2 1624 #: estimated-delivery-woocommerce.php:265 25 25 msgid "Disabled, use shortcode" 26 26 msgstr "Deshabilitar, usaré shortcode" 27 27 28 #: estimated-delivery-woocommerce.php:2 1728 #: estimated-delivery-woocommerce.php:266 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 1832 #: estimated-delivery-woocommerce.php:267 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 1936 #: estimated-delivery-woocommerce.php:268 37 37 msgid "After product meta" 38 38 msgstr "Después de la meta del producto" 39 39 40 #: estimated-delivery-woocommerce.php:2 2040 #: estimated-delivery-woocommerce.php:269 41 41 msgid "Before product summary" 42 42 msgstr "Antes del resumen del producto" 43 43 44 #: estimated-delivery-woocommerce.php:2 2144 #: estimated-delivery-woocommerce.php:270 45 45 msgid "After product summary" 46 46 msgstr "Después del resumen del producto" 47 47 48 #: estimated-delivery-woocommerce.php:2 2248 #: estimated-delivery-woocommerce.php:271 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: 38152 #: estimated-delivery-woocommerce.php:456 53 53 msgid " on" 54 54 msgstr " el" 55 55 56 #: estimated-delivery-woocommerce.php: 39057 #: estimated-delivery-woocommerce.php:4 1156 #: estimated-delivery-woocommerce.php:465 57 #: estimated-delivery-woocommerce.php:486 58 58 #, php-format 59 59 msgid "this %s, %s" 60 60 msgstr "este %s, %s" 61 61 62 #: estimated-delivery-woocommerce.php: 39363 #: estimated-delivery-woocommerce.php:4 1462 #: estimated-delivery-woocommerce.php:468 63 #: estimated-delivery-woocommerce.php:489 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:4 2168 #: estimated-delivery-woocommerce.php:496 69 69 msgid "Estimated delivery" 70 70 msgstr "Entrega Estimada" 71 71 72 #: estimated-delivery-woocommerce.php:4 2272 #: estimated-delivery-woocommerce.php:497 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:4 2477 #: estimated-delivery-woocommerce.php:499 78 78 msgid "Guaranteed delivery" 79 79 msgstr "Entrega Garantizada" 80 80 81 #: estimated-delivery-woocommerce.php: 42581 #: estimated-delivery-woocommerce.php:500 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:230 views/wcfm-metabox.php:29 88 #: views/wcmarketplace-metabox.php:12 88 89 msgid "Days for Delivery" 89 90 msgstr "Días para el envío" 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:238 views/wcfm-metabox.php:37 94 #: views/wcmarketplace-metabox.php:20 93 95 msgid "Max Days for Delivery" 94 96 msgstr "Máximos días para el envio" … … 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:239 views/options.php:256 views/options.php:273 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 "" … … 105 108 106 109 #: views/dokanmarketplace-metabox.php:33 views/metabox-product.php:35 107 #: views/options.php:236 views/wcmarketplace-metabox.php:29 110 #: views/options.php:247 views/wcfm-metabox.php:46 111 #: views/wcmarketplace-metabox.php:29 108 112 msgid "Days for Delivery out of stock" 109 113 msgstr "Días para el envío (Sin Stock)" 110 114 111 115 #: views/dokanmarketplace-metabox.php:41 views/metabox-product.php:43 112 #: views/options.php:244 views/wcmarketplace-metabox.php:37 116 #: views/options.php:255 views/wcfm-metabox.php:54 117 #: views/wcmarketplace-metabox.php:37 113 118 msgid "Max Days for Delivery out of stock" 114 119 msgstr "Máximos días para el envio (Sin Stock)" 115 120 116 121 #: views/dokanmarketplace-metabox.php:50 views/metabox-product.php:52 117 #: views/options.php:253 views/wcmarketplace-metabox.php:46 122 #: views/options.php:264 views/wcfm-metabox.php:63 123 #: views/wcmarketplace-metabox.php:46 118 124 msgid "Days for Delivery Backorders" 119 125 msgstr "Días para el envío Backorders" 120 126 121 127 #: views/dokanmarketplace-metabox.php:58 views/metabox-product.php:60 122 #: views/options.php:261 views/wcmarketplace-metabox.php:54 128 #: views/options.php:272 views/wcfm-metabox.php:71 129 #: views/wcmarketplace-metabox.php:54 123 130 msgid "Max Days for Delivery Backorders" 124 131 msgstr "Máximos días para el envio Backorders" 125 132 126 133 #: views/dokanmarketplace-metabox.php:67 views/metabox-product.php:69 127 #: views/options.php:270 views/wcmarketplace-metabox.php:63 134 #: views/options.php:297 views/wcfm-metabox.php:80 135 #: views/wcmarketplace-metabox.php:63 128 136 msgid "Estimated or Guaranteed" 129 137 msgstr "Estimada o Garantizada" 130 138 131 139 #: views/dokanmarketplace-metabox.php:68 views/metabox-product.php:70 132 #: views/options.php:271 views/wcmarketplace-metabox.php:64 140 #: views/options.php:298 views/wcfm-metabox.php:81 141 #: views/wcmarketplace-metabox.php:64 133 142 msgid "The message will change." 134 143 msgstr "Esto cambiará el mensaje." 135 144 136 145 #: views/dokanmarketplace-metabox.php:73 views/metabox-product.php:75 137 #: views/options.php:276 views/wcmarketplace-metabox.php:69 146 #: views/options.php:303 views/wcfm-metabox.php:86 147 #: views/wcmarketplace-metabox.php:69 138 148 msgid "Estimated" 139 149 msgstr "Estimada" 140 150 141 151 #: views/dokanmarketplace-metabox.php:74 views/metabox-product.php:76 142 #: views/options.php:277 views/wcmarketplace-metabox.php:70 152 #: views/options.php:304 views/wcfm-metabox.php:87 153 #: views/wcmarketplace-metabox.php:70 143 154 msgid "Guaranteed" 144 155 msgstr "Garantizada" 145 156 146 157 #: views/dokanmarketplace-metabox.php:80 views/metabox-product.php:82 147 #: views/options.php:283 views/wcmarketplace-metabox.php:76 158 #: views/options.php:310 views/wcfm-metabox.php:93 159 #: views/wcmarketplace-metabox.php:76 148 160 msgid "Days disabled" 149 161 msgstr "Días Deshabilitados" 150 162 151 163 #: views/dokanmarketplace-metabox.php:81 views/metabox-product.php:83 152 #: views/options.php:284 views/wcmarketplace-metabox.php:77 164 #: views/options.php:311 views/wcfm-metabox.php:94 165 #: views/wcmarketplace-metabox.php:77 153 166 msgid "Select the days that NO shipments are made." 154 167 msgstr "Selecciona los días que NO se realizan envíos." 155 168 156 169 #: views/dokanmarketplace-metabox.php:86 views/metabox-product.php:88 157 #: views/options.php:289 views/wcmarketplace-metabox.php:82 170 #: views/options.php:316 views/wcfm-metabox.php:99 171 #: views/wcmarketplace-metabox.php:82 158 172 msgid "Monday" 159 173 msgstr "Lunes" 160 174 161 175 #: views/dokanmarketplace-metabox.php:91 views/metabox-product.php:93 162 #: views/options.php:294 views/wcmarketplace-metabox.php:87 176 #: views/options.php:321 views/wcfm-metabox.php:104 177 #: views/wcmarketplace-metabox.php:87 163 178 msgid "Tuesday" 164 179 msgstr "Martes" 165 180 166 181 #: views/dokanmarketplace-metabox.php:96 views/metabox-product.php:98 167 #: views/options.php:299 views/wcmarketplace-metabox.php:92 182 #: views/options.php:326 views/wcfm-metabox.php:109 183 #: views/wcmarketplace-metabox.php:92 168 184 msgid "Wednesday" 169 185 msgstr "Miercoles" 170 186 171 187 #: views/dokanmarketplace-metabox.php:101 views/metabox-product.php:103 172 #: views/options.php:304 views/wcmarketplace-metabox.php:97 188 #: views/options.php:331 views/wcfm-metabox.php:114 189 #: views/wcmarketplace-metabox.php:97 173 190 msgid "Thursday" 174 191 msgstr "Jueves" 175 192 176 193 #: views/dokanmarketplace-metabox.php:106 views/metabox-product.php:108 177 #: views/options.php:309 views/wcmarketplace-metabox.php:102 194 #: views/options.php:336 views/wcfm-metabox.php:119 195 #: views/wcmarketplace-metabox.php:102 178 196 msgid "Friday" 179 197 msgstr "Viernes" 180 198 181 199 #: views/dokanmarketplace-metabox.php:111 views/metabox-product.php:113 182 #: views/options.php:314 views/wcmarketplace-metabox.php:107 200 #: views/options.php:341 views/wcfm-metabox.php:124 201 #: views/wcmarketplace-metabox.php:107 183 202 msgid "Saturday" 184 203 msgstr "Sábado" 185 204 186 205 #: views/dokanmarketplace-metabox.php:116 views/metabox-product.php:118 187 #: views/options.php:319 views/wcmarketplace-metabox.php:112 206 #: views/options.php:346 views/wcfm-metabox.php:129 207 #: views/wcmarketplace-metabox.php:112 188 208 msgid "Sunday" 189 209 msgstr "Domingo" … … 193 213 msgstr "Sobreescribir configuración" 194 214 195 #: views/options.php: 73215 #: views/options.php:84 196 216 msgid "An error has occurred, try again." 197 217 msgstr "Ha ocurrido un error, pruebe de nuevo." 198 218 199 #: views/options.php: 77219 #: views/options.php:88 200 220 msgid "Welcome to newsletter :)" 201 221 msgstr "Bienvenid@ al newsletter" 202 222 203 #: views/options.php:1 20223 #: views/options.php:131 204 224 msgid "Estimated Delivery for Woocommerce" 205 225 msgstr "Entrega Estimada para WooCommerce" 206 226 207 #: views/options.php:1 21227 #: views/options.php:132 208 228 msgid "Show the estimated or guaranteed delivery for the product" 209 229 msgstr "Muestra la entrega estimada o garantizada por cada producto" 210 230 211 #: views/options.php:1 28231 #: views/options.php:139 212 232 msgid "Do you want to receive the latest?" 213 233 msgstr "¿Quieres recibir lo último?" 214 234 215 #: views/options.php:1 29235 #: views/options.php:140 216 236 msgid "" 217 237 "Thank you very much for using our plugin, if you want to receive the latest " … … 221 241 "ofertas, promociones, descuentos...Inscríbete en nuestro boletín. :)" 222 242 223 #: views/options.php:1 31243 #: views/options.php:142 224 244 msgid "Required" 225 245 msgstr "Requerido" 226 246 227 #: views/options.php:1 39247 #: views/options.php:150 228 248 msgid "Submit" 229 249 msgstr "Enviar" 230 250 231 #: views/options.php:1 39251 #: views/options.php:150 232 252 msgid "Processing" 233 253 msgstr "Procesando" 234 254 235 #: views/options.php:1 52255 #: views/options.php:163 236 256 msgid "" 237 257 "Developing this plugin takes time, so if you like it, we invite you to make " … … 243 263 "actualizando, añadiendo novedades, esto será siempre gratis." 244 264 245 #: views/options.php:1 53265 #: views/options.php:164 246 266 msgid "Make a donation now to help development" 247 267 msgstr "Realiza una donación ahora par ayudar al desarrollo" 248 268 249 #: views/options.php:1 62269 #: views/options.php:173 250 270 msgid "Use AJAX" 251 271 msgstr "Usar AJAX" 252 272 253 #: views/options.php:1 63273 #: views/options.php:174 254 274 msgid "If your site use cache system, active this option." 255 275 msgstr "Si tu sitio usa cache, activa esta opción." 256 276 257 #: views/options.php:1 71277 #: views/options.php:182 258 278 msgid "Delivery same day" 259 279 msgstr "Envío en el mismo día" 260 280 261 #: views/options.php:1 72281 #: views/options.php:183 262 282 msgid "" 263 283 "When you set 0 in any option the estimated delivery is disabled, activate " … … 267 287 "esta opción para permitir establecer en 0 y mostrar la fecha" 268 288 269 #: views/options.php:1 80289 #: views/options.php:191 270 290 msgid "Show date on order (Admin and Customer)" 271 291 msgstr "Mostrar fecha en pedidos (Administrador y Clientes)" 272 292 273 #: views/options.php:1 81293 #: views/options.php:192 274 294 msgid "" 275 295 "If you activate this option, the date will be stored with the order, the " … … 279 299 "ver la fecha en cada producto del pedido." 280 300 281 #: views/options.php: 189301 #: views/options.php:200 282 302 msgid "Show date Products Lists" 283 303 msgstr "Mostrar fecha en listado de productos" 284 304 285 #: views/options.php: 190305 #: views/options.php:201 286 306 msgid "" 287 307 "If you activate this option date show on each product on list, Store, " … … 292 312 "página." 293 313 294 #: views/options.php: 199314 #: views/options.php:210 295 315 msgid "Maximum Time" 296 316 msgstr "Tiempo máximo" 297 317 298 #: views/options.php:2 01318 #: views/options.php:212 299 319 #, php-format 300 320 msgid "" … … 305 325 "HH:mm ahora son %s" 306 326 307 #: views/options.php:2 10327 #: views/options.php:221 308 328 msgid "Use Relative Dates" 309 329 msgstr "Usar fechas relativas" 310 330 311 #: views/options.php:2 11331 #: views/options.php:222 312 332 msgid "Only work with current and next week" 313 333 msgstr "Solo funciona con la semana actual y la próxima" 314 334 315 #: views/options.php:324 335 #: views/options.php:281 336 msgid "Date Formats" 337 msgstr "Formato de fechas" 338 339 #: views/options.php:282 340 msgid "You can change date format use" 341 msgstr "Puedes cambiar el formato de fecha que usa el plugin" 342 343 #: views/options.php:285 344 msgid "Same month and year, different day (00 - 00 MM, YYYY)" 345 msgstr "Mismo mes y año, diferente día (00 - 00 MM, YYYY)" 346 347 #: views/options.php:288 348 msgid "Same year, different day and month (00 MM - 00 MM, YYYY)" 349 msgstr "Mismo año, diferente día y mes (00 MM - 00 MM, YYYY)" 350 351 #: views/options.php:291 352 msgid "All different (00 MM YYYY - 00 MM YYYY)" 353 msgstr "Todo diferente (00 MM YYYY - 00 MM YYYY)" 354 355 #: views/options.php:351 316 356 msgid "Position" 317 357 msgstr "Posición" 318 358 319 #: views/options.php:338 359 #: views/options.php:365 360 msgid "Holidays Dates" 361 msgstr "Fecha de Vacaciones" 362 363 #: views/options.php:366 364 msgid "" 365 "Dates with comma separated, YYYY/MM/DD, on YEAR use XXXX for dynamic year. " 366 "Example: XXXX/12/31" 367 msgstr "" 368 "Fechas separadas por coma, YYYY/MM/DD, para año dinámico usa XXXX, por " 369 "ejemplo: XXXX/12/31" 370 371 #: views/options.php:374 320 372 msgid "Save" 321 373 msgstr "Guardar" 322 374 323 #: views/options.php:3 40375 #: views/options.php:376 324 376 msgid "Need style?" 325 377 msgstr "Necesitas dar estilos?" 326 378 327 #: views/options.php:3 41379 #: views/options.php:377 328 380 msgid "Enjoy! Paste this CSS code into your Customizer and edit as you like" 329 381 msgstr "" -
estimated-delivery-for-woocommerce/trunk/languages/estimated-delivery-for-woocommerce.pot
r2906408 r3082843 3 3 msgstr "" 4 4 "Project-Id-Version: \n" 5 "POT-Creation-Date: 202 3-05-01 02:01+0200\n"5 "POT-Creation-Date: 2024-05-07 23:32+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. 2.2\n"14 "X-Generator: Poedit 3.4.2\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 0120 #: estimated-delivery-woocommerce.php: 15621 #: estimated-delivery-woocommerce.php:2 1019 #: estimated-delivery-woocommerce.php:143 20 #: estimated-delivery-woocommerce.php:203 21 #: estimated-delivery-woocommerce.php:259 views/wcfm-metabox.php:21 22 22 msgid "Estimated Delivery" 23 23 msgstr "" 24 24 25 #: estimated-delivery-woocommerce.php:2 1625 #: estimated-delivery-woocommerce.php:265 26 26 msgid "Disabled, use shortcode" 27 27 msgstr "" 28 28 29 #: estimated-delivery-woocommerce.php:2 1729 #: estimated-delivery-woocommerce.php:266 30 30 msgid "After cart button" 31 31 msgstr "" 32 32 33 #: estimated-delivery-woocommerce.php:2 1833 #: estimated-delivery-woocommerce.php:267 34 34 msgid "Before cart button" 35 35 msgstr "" 36 36 37 #: estimated-delivery-woocommerce.php:2 1937 #: estimated-delivery-woocommerce.php:268 38 38 msgid "After product meta" 39 39 msgstr "" 40 40 41 #: estimated-delivery-woocommerce.php:2 2041 #: estimated-delivery-woocommerce.php:269 42 42 msgid "Before product summary" 43 43 msgstr "" 44 44 45 #: estimated-delivery-woocommerce.php:2 2145 #: estimated-delivery-woocommerce.php:270 46 46 msgid "After product summary" 47 47 msgstr "" 48 48 49 #: estimated-delivery-woocommerce.php:2 2249 #: estimated-delivery-woocommerce.php:271 50 50 msgid "Product Thumbnail (may not work)" 51 51 msgstr "" 52 52 53 #: estimated-delivery-woocommerce.php: 38153 #: estimated-delivery-woocommerce.php:456 54 54 msgid " on" 55 55 msgstr "" 56 56 57 #: estimated-delivery-woocommerce.php: 39058 #: estimated-delivery-woocommerce.php:4 1157 #: estimated-delivery-woocommerce.php:465 58 #: estimated-delivery-woocommerce.php:486 59 59 #, php-format 60 60 msgid "this %s, %s" 61 61 msgstr "" 62 62 63 #: estimated-delivery-woocommerce.php: 39364 #: estimated-delivery-woocommerce.php:4 1463 #: estimated-delivery-woocommerce.php:468 64 #: estimated-delivery-woocommerce.php:489 65 65 #, php-format 66 66 msgid "the next %s, %s" 67 67 msgstr "" 68 68 69 #: estimated-delivery-woocommerce.php:4 2169 #: estimated-delivery-woocommerce.php:496 70 70 msgid "Estimated delivery" 71 71 msgstr "" 72 72 73 #: estimated-delivery-woocommerce.php:4 2273 #: estimated-delivery-woocommerce.php:497 74 74 #, php-format 75 75 msgid "Estimated delivery%s %s" 76 76 msgstr "" 77 77 78 #: estimated-delivery-woocommerce.php:4 2478 #: estimated-delivery-woocommerce.php:499 79 79 msgid "Guaranteed delivery" 80 80 msgstr "" 81 81 82 #: estimated-delivery-woocommerce.php: 42582 #: estimated-delivery-woocommerce.php:500 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:219 views/wcmarketplace-metabox.php:12 88 #: views/options.php:230 views/wcfm-metabox.php:29 89 #: views/wcmarketplace-metabox.php:12 89 90 msgid "Days for Delivery" 90 91 msgstr "" 91 92 92 93 #: views/dokanmarketplace-metabox.php:24 views/metabox-product.php:26 93 #: views/options.php:227 views/wcmarketplace-metabox.php:20 94 #: views/options.php:238 views/wcfm-metabox.php:37 95 #: views/wcmarketplace-metabox.php:20 94 96 msgid "Max Days for Delivery" 95 97 msgstr "" … … 98 100 #: views/dokanmarketplace-metabox.php:59 views/metabox-product.php:27 99 101 #: views/metabox-product.php:44 views/metabox-product.php:61 100 #: views/options.php:228 views/options.php:245 views/options.php:262 101 #: views/wcmarketplace-metabox.php:21 views/wcmarketplace-metabox.php:38 102 #: views/wcmarketplace-metabox.php:55 102 #: views/options.php:239 views/options.php:256 views/options.php:273 103 #: views/wcfm-metabox.php:38 views/wcfm-metabox.php:55 104 #: views/wcfm-metabox.php:72 views/wcmarketplace-metabox.php:21 105 #: views/wcmarketplace-metabox.php:38 views/wcmarketplace-metabox.php:55 103 106 msgid "Set 0 for disable. If this set more than 0 days, it will show a range." 104 107 msgstr "" 105 108 106 109 #: views/dokanmarketplace-metabox.php:33 views/metabox-product.php:35 107 #: views/options.php:236 views/wcmarketplace-metabox.php:29 110 #: views/options.php:247 views/wcfm-metabox.php:46 111 #: views/wcmarketplace-metabox.php:29 108 112 msgid "Days for Delivery out of stock" 109 113 msgstr "" 110 114 111 115 #: views/dokanmarketplace-metabox.php:41 views/metabox-product.php:43 112 #: views/options.php:244 views/wcmarketplace-metabox.php:37 116 #: views/options.php:255 views/wcfm-metabox.php:54 117 #: views/wcmarketplace-metabox.php:37 113 118 msgid "Max Days for Delivery out of stock" 114 119 msgstr "" 115 120 116 121 #: views/dokanmarketplace-metabox.php:50 views/metabox-product.php:52 117 #: views/options.php:253 views/wcmarketplace-metabox.php:46 122 #: views/options.php:264 views/wcfm-metabox.php:63 123 #: views/wcmarketplace-metabox.php:46 118 124 msgid "Days for Delivery Backorders" 119 125 msgstr "" 120 126 121 127 #: views/dokanmarketplace-metabox.php:58 views/metabox-product.php:60 122 #: views/options.php:261 views/wcmarketplace-metabox.php:54 128 #: views/options.php:272 views/wcfm-metabox.php:71 129 #: views/wcmarketplace-metabox.php:54 123 130 msgid "Max Days for Delivery Backorders" 124 131 msgstr "" 125 132 126 133 #: views/dokanmarketplace-metabox.php:67 views/metabox-product.php:69 127 #: views/options.php:270 views/wcmarketplace-metabox.php:63 134 #: views/options.php:297 views/wcfm-metabox.php:80 135 #: views/wcmarketplace-metabox.php:63 128 136 msgid "Estimated or Guaranteed" 129 137 msgstr "" 130 138 131 139 #: views/dokanmarketplace-metabox.php:68 views/metabox-product.php:70 132 #: views/options.php:271 views/wcmarketplace-metabox.php:64 140 #: views/options.php:298 views/wcfm-metabox.php:81 141 #: views/wcmarketplace-metabox.php:64 133 142 msgid "The message will change." 134 143 msgstr "" 135 144 136 145 #: views/dokanmarketplace-metabox.php:73 views/metabox-product.php:75 137 #: views/options.php:276 views/wcmarketplace-metabox.php:69 146 #: views/options.php:303 views/wcfm-metabox.php:86 147 #: views/wcmarketplace-metabox.php:69 138 148 msgid "Estimated" 139 149 msgstr "" 140 150 141 151 #: views/dokanmarketplace-metabox.php:74 views/metabox-product.php:76 142 #: views/options.php:277 views/wcmarketplace-metabox.php:70 152 #: views/options.php:304 views/wcfm-metabox.php:87 153 #: views/wcmarketplace-metabox.php:70 143 154 msgid "Guaranteed" 144 155 msgstr "" 145 156 146 157 #: views/dokanmarketplace-metabox.php:80 views/metabox-product.php:82 147 #: views/options.php:283 views/wcmarketplace-metabox.php:76 158 #: views/options.php:310 views/wcfm-metabox.php:93 159 #: views/wcmarketplace-metabox.php:76 148 160 msgid "Days disabled" 149 161 msgstr "" 150 162 151 163 #: views/dokanmarketplace-metabox.php:81 views/metabox-product.php:83 152 #: views/options.php:284 views/wcmarketplace-metabox.php:77 164 #: views/options.php:311 views/wcfm-metabox.php:94 165 #: views/wcmarketplace-metabox.php:77 153 166 msgid "Select the days that NO shipments are made." 154 167 msgstr "" 155 168 156 169 #: views/dokanmarketplace-metabox.php:86 views/metabox-product.php:88 157 #: views/options.php:289 views/wcmarketplace-metabox.php:82 170 #: views/options.php:316 views/wcfm-metabox.php:99 171 #: views/wcmarketplace-metabox.php:82 158 172 msgid "Monday" 159 173 msgstr "" 160 174 161 175 #: views/dokanmarketplace-metabox.php:91 views/metabox-product.php:93 162 #: views/options.php:294 views/wcmarketplace-metabox.php:87 176 #: views/options.php:321 views/wcfm-metabox.php:104 177 #: views/wcmarketplace-metabox.php:87 163 178 msgid "Tuesday" 164 179 msgstr "" 165 180 166 181 #: views/dokanmarketplace-metabox.php:96 views/metabox-product.php:98 167 #: views/options.php:299 views/wcmarketplace-metabox.php:92 182 #: views/options.php:326 views/wcfm-metabox.php:109 183 #: views/wcmarketplace-metabox.php:92 168 184 msgid "Wednesday" 169 185 msgstr "" 170 186 171 187 #: views/dokanmarketplace-metabox.php:101 views/metabox-product.php:103 172 #: views/options.php:304 views/wcmarketplace-metabox.php:97 188 #: views/options.php:331 views/wcfm-metabox.php:114 189 #: views/wcmarketplace-metabox.php:97 173 190 msgid "Thursday" 174 191 msgstr "" 175 192 176 193 #: views/dokanmarketplace-metabox.php:106 views/metabox-product.php:108 177 #: views/options.php:309 views/wcmarketplace-metabox.php:102 194 #: views/options.php:336 views/wcfm-metabox.php:119 195 #: views/wcmarketplace-metabox.php:102 178 196 msgid "Friday" 179 197 msgstr "" 180 198 181 199 #: views/dokanmarketplace-metabox.php:111 views/metabox-product.php:113 182 #: views/options.php:314 views/wcmarketplace-metabox.php:107 200 #: views/options.php:341 views/wcfm-metabox.php:124 201 #: views/wcmarketplace-metabox.php:107 183 202 msgid "Saturday" 184 203 msgstr "" 185 204 186 205 #: views/dokanmarketplace-metabox.php:116 views/metabox-product.php:118 187 #: views/options.php:319 views/wcmarketplace-metabox.php:112 206 #: views/options.php:346 views/wcfm-metabox.php:129 207 #: views/wcmarketplace-metabox.php:112 188 208 msgid "Sunday" 189 209 msgstr "" … … 193 213 msgstr "" 194 214 195 #: views/options.php: 73215 #: views/options.php:84 196 216 msgid "An error has occurred, try again." 197 217 msgstr "" 198 218 199 #: views/options.php: 77219 #: views/options.php:88 200 220 msgid "Welcome to newsletter :)" 201 221 msgstr "" 202 222 203 #: views/options.php:1 20223 #: views/options.php:131 204 224 msgid "Estimated Delivery for Woocommerce" 205 225 msgstr "" 206 226 207 #: views/options.php:1 21227 #: views/options.php:132 208 228 msgid "Show the estimated or guaranteed delivery for the product" 209 229 msgstr "" 210 230 211 #: views/options.php:1 28231 #: views/options.php:139 212 232 msgid "Do you want to receive the latest?" 213 233 msgstr "" 214 234 215 #: views/options.php:1 29235 #: views/options.php:140 216 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. :)" 217 237 msgstr "" 218 238 219 #: views/options.php:1 31239 #: views/options.php:142 220 240 msgid "Required" 221 241 msgstr "" 222 242 223 #: views/options.php:1 39243 #: views/options.php:150 224 244 msgid "Submit" 225 245 msgstr "" 226 246 227 #: views/options.php:1 39247 #: views/options.php:150 228 248 msgid "Processing" 229 249 msgstr "" 230 250 231 #: views/options.php:1 52251 #: views/options.php:163 232 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." 233 253 msgstr "" 234 254 235 #: views/options.php:1 53255 #: views/options.php:164 236 256 msgid "Make a donation now to help development" 237 257 msgstr "" 238 258 239 #: views/options.php:1 62259 #: views/options.php:173 240 260 msgid "Use AJAX" 241 261 msgstr "" 242 262 243 #: views/options.php:1 63263 #: views/options.php:174 244 264 msgid "If your site use cache system, active this option." 245 265 msgstr "" 246 266 247 #: views/options.php:1 71267 #: views/options.php:182 248 268 msgid "Delivery same day" 249 269 msgstr "" 250 270 251 #: views/options.php:1 72271 #: views/options.php:183 252 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." 253 273 msgstr "" 254 274 255 #: views/options.php:1 80275 #: views/options.php:191 256 276 msgid "Show date on order (Admin and Customer)" 257 277 msgstr "" 258 278 259 #: views/options.php:1 81279 #: views/options.php:192 260 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." 261 281 msgstr "" 262 282 263 #: views/options.php: 189283 #: views/options.php:200 264 284 msgid "Show date Products Lists" 265 285 msgstr "" 266 286 267 #: views/options.php: 190287 #: views/options.php:201 268 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." 269 289 msgstr "" 270 290 271 #: views/options.php: 199291 #: views/options.php:210 272 292 msgid "Maximum Time" 273 293 msgstr "" 274 294 275 #: views/options.php:2 01295 #: views/options.php:212 276 296 #, php-format 277 297 msgid "Maximum time to consider an extra day of shipping (Server time) HH:mm now is %s" 278 298 msgstr "" 279 299 280 #: views/options.php:2 10300 #: views/options.php:221 281 301 msgid "Use Relative Dates" 282 302 msgstr "" 283 303 284 #: views/options.php:2 11304 #: views/options.php:222 285 305 msgid "Only work with current and next week" 286 306 msgstr "" 287 307 288 #: views/options.php:324 308 #: views/options.php:281 309 msgid "Date Formats" 310 msgstr "" 311 312 #: views/options.php:282 313 msgid "You can change date format use" 314 msgstr "" 315 316 #: views/options.php:285 317 msgid "Same month and year, different day (00 - 00 MM, YYYY)" 318 msgstr "" 319 320 #: views/options.php:288 321 msgid "Same year, different day and month (00 MM - 00 MM, YYYY)" 322 msgstr "" 323 324 #: views/options.php:291 325 msgid "All different (00 MM YYYY - 00 MM YYYY)" 326 msgstr "" 327 328 #: views/options.php:351 289 329 msgid "Position" 290 330 msgstr "" 291 331 292 #: views/options.php:338 332 #: views/options.php:365 333 msgid "Holidays Dates" 334 msgstr "" 335 336 #: views/options.php:366 337 msgid "Dates with comma separated, YYYY/MM/DD, on YEAR use XXXX for dynamic year. Example: XXXX/12/31" 338 msgstr "" 339 340 #: views/options.php:374 293 341 msgid "Save" 294 342 msgstr "" 295 343 296 #: views/options.php:3 40344 #: views/options.php:376 297 345 msgid "Need style?" 298 346 msgstr "" 299 347 300 #: views/options.php:3 41348 #: views/options.php:377 301 349 msgid "Enjoy! Paste this CSS code into your Customizer and edit as you like" 302 350 msgstr "" -
estimated-delivery-for-woocommerce/trunk/views/options.php
r3007795 r3082843 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 26 //Format dates 27 update_option('_edw_date_format_1_0', sanitize_textarea_field($_POST['_edw_date_format_1_0'])); 28 update_option('_edw_date_format_1_1', sanitize_textarea_field($_POST['_edw_date_format_1_1'])); 29 update_option('_edw_date_format_2_0', sanitize_textarea_field($_POST['_edw_date_format_2_0'])); 30 update_option('_edw_date_format_2_1', sanitize_textarea_field($_POST['_edw_date_format_2_1'])); 31 update_option('_edw_date_format_3_0', sanitize_textarea_field($_POST['_edw_date_format_3_0'])); 32 update_option('_edw_date_format_3_1', sanitize_textarea_field($_POST['_edw_date_format_3_1'])); 33 34 25 35 if(isset($_POST['_edw_relative_dates'])) { 26 36 update_option('_edw_relative_dates', '1'); … … 269 279 </tr> 270 280 <tr valign="top"> 281 <th scope="row"><?=__('Date Formats', 'estimated-delivery-for-woocommerce')?> 282 <p class="description"><?=__('You can change date format use','estimated-delivery-for-woocommerce')?></p> 283 </th> 284 <td> 285 <p><?=__('Same month and year, different day (00 - 00 MM, YYYY)','estimated-delivery-for-woocommerce')?></p> 286 <input type="text" name="_edw_date_format_1_0" value="<?=get_option('_edw_date_format_1_0', 'j')?>" /> - 287 <input type="text" name="_edw_date_format_1_1" value="<?=get_option('_edw_date_format_1_1', 'j F, Y')?>" /> 288 <p><?=__('Same year, different day and month (00 MM - 00 MM, YYYY)','estimated-delivery-for-woocommerce')?></p> 289 <input type="text" name="_edw_date_format_2_0" value="<?=get_option('_edw_date_format_2_0', 'j F')?>" /> - 290 <input type="text" name="_edw_date_format_2_1" value="<?=get_option('_edw_date_format_2_1', 'j F, Y')?>" /> 291 <p><?=__('All different (00 MM YYYY - 00 MM YYYY)','estimated-delivery-for-woocommerce')?></p> 292 <input type="text" name="_edw_date_format_3_0" value="<?=get_option('_edw_date_format_3_0', 'j F Y')?>" /> - 293 <input type="text" name="_edw_date_format_3_1" value="<?=get_option('_edw_date_format_3_1', 'j F, Y')?>" /> 294 </td> 295 </tr> 296 <tr valign="top"> 271 297 <th scope="row"><?=__('Estimated or Guaranteed', 'estimated-delivery-for-woocommerce')?> 272 298 <p class="description"><?=__('The message will change.','estimated-delivery-for-woocommerce')?></p> … … 338 364 <tr valign="top"> 339 365 <th scope="row"><?=__('Holidays Dates', 'estimated-delivery-for-woocommerce')?> 340 <p class="description"><?=__('Dates with comma separated, YYYY/MM/DD, on YEAR use XXXX for dynamic year. Example: XXXX/ 31/12','estimated-delivery-for-woocommerce')?></p>366 <p class="description"><?=__('Dates with comma separated, YYYY/MM/DD, on YEAR use XXXX for dynamic year. Example: XXXX/12/31','estimated-delivery-for-woocommerce')?></p> 341 367 </th> 342 368 <td>
Note: See TracChangeset
for help on using the changeset viewer.