Plugin Directory

Changeset 3098233


Ignore:
Timestamp:
06/05/2024 10:42:06 PM (21 months ago)
Author:
DanielRiera
Message:

Update to version 1.4.5 from GitHub

Location:
estimated-delivery-for-woocommerce
Files:
4 added
30 edited
1 copied

Legend:

Unmodified
Added
Removed
  • estimated-delivery-for-woocommerce/tags/1.4.5/README.md

    r3084584 r3098233  
    44Tags: estimated delivery, delivery woocommerce, shipping date
    55Requires at least: 4.3
    6 Tested up to: 6.5.3
     6Tested up to: 6.5.4
    77Requires PHP: 5.0
    8 Stable tag: 1.4.3
    9 Licence: GPLv2 or later
     8Stable tag: 1.4.5
     9License: GPLv3
     10License URI: https://www.gnu.org/licenses/gpl-3.0.html
     11
    1012Show estimated / guaranteed delivery, simple and easy
    1113 
     
    4446== FAQ ==
    4547
     48= Report Issues =
    4649If you need support open a new ticket on [Github](https://github.com/DanielRiera/estimated-delivery-woocommerce/issues)
     50
     51= FontAwesome =
     52The plugin can add Fontawesome Library if is need
     53
     54= Icon config =
     55
     56
    4757
    4858 
    4959== 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.
    5065
    5166= 1.4.3 =
  • estimated-delivery-for-woocommerce/tags/1.4.5/estimated-delivery-woocommerce.php

    r3084584 r3098233  
    66 * Author: Daniel Riera
    77 * Author URI: https://danielriera.net
    8  * Version: 1.4.3
     8 * Version: 1.4.5
    99 * Text Domain: estimated-delivery-for-woocommerce
    1010 * Domain Path: /languages
     
    1212 * WC tested up to: 8.8.3
    1313 * 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
    1617 */
    1718if(!defined('ABSPATH')) { exit; }
     
    2021define('EDW_POSITION_SHOW', get_option('_edw_position', 'woocommerce_after_add_to_cart_button'));
    2122define('EDW_USE_JS', get_option('_edw_cache', '0'));
    22 define('EDW_Version', '1.4.3');
     23define('EDW_Fontawesome', get_option('_edw_fontawesome', '0'));
     24define('EDW_Version', '1.4.5');
    2325
    2426require_once EDW_PATH . 'class.api.php';
     
    6264            add_action('end_wcfm_products_manage', array(&$this, 'edw_wcmf_content_metabox'), 100, 4);
    6365            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            }
    6470
    6571            //WCMP Compatiblity
     
    233239                }
    234240            }
    235             if(sanitize_text_field( $_POST['_edw_days']) == '') {
     241            if(isset($_POST['_edw_days']) and sanitize_text_field( $_POST['_edw_days']) == '') {
    236242                update_post_meta($post_id, '_edw_overwrite','0');
    237243            }
     
    295301            }
    296302            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__));
    297307        }
    298308       
     
    371381           
    372382            if($productActive == '1') {
    373                 $mode = get_post_meta($product_id,'_edw_mode', true);
     383                $mode = get_post_meta($product_id,'_edw_mode', true) || '1';
    374384            }else{
    375                 $mode = get_option('_edw_mode');
     385                $mode = get_option('_edw_mode', '1');
    376386            }
    377387           
     
    445455                }
    446456            }
     457
     458            //Prevent default
     459            $maxDays = intval($maxDays);
     460            $disabledDays = $disabledDays ?: [];
    447461
    448462            $today = wp_date('Y-m-d');
     
    494508               
    495509               
    496 
     510                $iconset = get_option('_edw_icon', '');
     511
     512                $icon_html = $iconset != '' ? '<i class="' . $iconset . '"></i> ' : '';
    497513                if($mode == "1") {
    498514                    $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>';
    500516                }else{
    501517                    $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>';
    503519                }
    504520
  • estimated-delivery-for-woocommerce/tags/1.4.5/languages/estimated-delivery-for-woocommerce-es_ES.po

    r3082843 r3098233  
    22msgstr ""
    33"Project-Id-Version: edwoo\n"
    4 "POT-Creation-Date: 2024-05-07 23:32+0200\n"
    5 "PO-Revision-Date: 2024-05-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"
    66"Last-Translator: Daniel Riera <daniel@taxapro.com>\n"
    77"Language-Team: \n"
     
    1111"Content-Transfer-Encoding: 8bit\n"
    1212"Plural-Forms: nplurals=2; plural=(n != 1);\n"
    13 "X-Generator: Poedit 3.4.2\n"
     13"X-Generator: Poedit 3.4.4\n"
    1414"X-Poedit-Basepath: ..\n"
    1515"X-Poedit-KeywordsList: __;_e\n"
    1616"X-Poedit-SearchPath-0: .\n"
    1717
    18 #: estimated-delivery-woocommerce.php:143
    19 #: estimated-delivery-woocommerce.php:203
    20 #: estimated-delivery-woocommerce.php:259 views/wcfm-metabox.php:21
     18#: estimated-delivery-woocommerce.php:151
     19#: estimated-delivery-woocommerce.php:211
     20#: estimated-delivery-woocommerce.php:267 views/wcfm-metabox.php:21
    2121msgid "Estimated Delivery"
    2222msgstr "Entrega Estimada"
    2323
    24 #: estimated-delivery-woocommerce.php:265
     24#: estimated-delivery-woocommerce.php:273
    2525msgid "Disabled, use shortcode"
    2626msgstr "Deshabilitar, usaré shortcode"
    2727
    28 #: estimated-delivery-woocommerce.php:266
     28#: estimated-delivery-woocommerce.php:274
    2929msgid "After cart button"
    3030msgstr "Después del botón de añadir al carrito"
    3131
    32 #: estimated-delivery-woocommerce.php:267
     32#: estimated-delivery-woocommerce.php:275
    3333msgid "Before cart button"
    3434msgstr "Antes del botón de añadir al carrito"
    3535
    36 #: estimated-delivery-woocommerce.php:268
     36#: estimated-delivery-woocommerce.php:276
    3737msgid "After product meta"
    3838msgstr "Después de la meta del producto"
    3939
    40 #: estimated-delivery-woocommerce.php:269
     40#: estimated-delivery-woocommerce.php:277
    4141msgid "Before product summary"
    4242msgstr "Antes del resumen del producto"
    4343
    44 #: estimated-delivery-woocommerce.php:270
     44#: estimated-delivery-woocommerce.php:278
    4545msgid "After product summary"
    4646msgstr "Después del resumen del producto"
    4747
    48 #: estimated-delivery-woocommerce.php:271
     48#: estimated-delivery-woocommerce.php:279
    4949msgid "Product Thumbnail (may not work)"
    5050msgstr "Debajo de la galería (Puede no funcionar)"
    5151
    52 #: estimated-delivery-woocommerce.php:456
     52#: estimated-delivery-woocommerce.php:472
    5353msgid " on"
    5454msgstr " el"
    5555
    56 #: estimated-delivery-woocommerce.php:465
    57 #: estimated-delivery-woocommerce.php:486
     56#: estimated-delivery-woocommerce.php:481
     57#: estimated-delivery-woocommerce.php:502
    5858#, php-format
    5959msgid "this %s, %s"
    6060msgstr "este %s, %s"
    6161
    62 #: estimated-delivery-woocommerce.php:468
    63 #: estimated-delivery-woocommerce.php:489
     62#: estimated-delivery-woocommerce.php:484
     63#: estimated-delivery-woocommerce.php:505
    6464#, php-format
    6565msgid "the next %s, %s"
    6666msgstr "el próximo %s, %s"
    6767
    68 #: estimated-delivery-woocommerce.php:496
     68#: estimated-delivery-woocommerce.php:514
    6969msgid "Estimated delivery"
    7070msgstr "Entrega Estimada"
    7171
    72 #: estimated-delivery-woocommerce.php:497
     72#: estimated-delivery-woocommerce.php:515
    7373#, php-format
    7474msgid "Estimated delivery%s %s"
    7575msgstr "Entrega estimada%s %s"
    7676
    77 #: estimated-delivery-woocommerce.php:499
     77#: estimated-delivery-woocommerce.php:517
    7878msgid "Guaranteed delivery"
    7979msgstr "Entrega Garantizada"
    8080
    81 #: estimated-delivery-woocommerce.php:500
     81#: estimated-delivery-woocommerce.php:518
    8282#, php-format
    8383msgid "Guaranteed delivery%s %s"
     
    8585
    8686#: views/dokanmarketplace-metabox.php:16 views/metabox-product.php:18
    87 #: views/options.php:230 views/wcfm-metabox.php:29
     87#: views/options.php:254 views/wcfm-metabox.php:29
    8888#: views/wcmarketplace-metabox.php:12
    8989msgid "Days for Delivery"
     
    9191
    9292#: views/dokanmarketplace-metabox.php:24 views/metabox-product.php:26
    93 #: views/options.php:238 views/wcfm-metabox.php:37
     93#: views/options.php:262 views/wcfm-metabox.php:37
    9494#: views/wcmarketplace-metabox.php:20
    9595msgid "Max Days for Delivery"
     
    9999#: views/dokanmarketplace-metabox.php:59 views/metabox-product.php:27
    100100#: views/metabox-product.php:44 views/metabox-product.php:61
    101 #: views/options.php:239 views/options.php:256 views/options.php:273
     101#: views/options.php:263 views/options.php:280 views/options.php:297
    102102#: views/wcfm-metabox.php:38 views/wcfm-metabox.php:55
    103103#: views/wcfm-metabox.php:72 views/wcmarketplace-metabox.php:21
     
    108108
    109109#: views/dokanmarketplace-metabox.php:33 views/metabox-product.php:35
    110 #: views/options.php:247 views/wcfm-metabox.php:46
     110#: views/options.php:271 views/wcfm-metabox.php:46
    111111#: views/wcmarketplace-metabox.php:29
    112112msgid "Days for Delivery out of stock"
     
    114114
    115115#: views/dokanmarketplace-metabox.php:41 views/metabox-product.php:43
    116 #: views/options.php:255 views/wcfm-metabox.php:54
     116#: views/options.php:279 views/wcfm-metabox.php:54
    117117#: views/wcmarketplace-metabox.php:37
    118118msgid "Max Days for Delivery out of stock"
     
    120120
    121121#: views/dokanmarketplace-metabox.php:50 views/metabox-product.php:52
    122 #: views/options.php:264 views/wcfm-metabox.php:63
     122#: views/options.php:288 views/wcfm-metabox.php:63
    123123#: views/wcmarketplace-metabox.php:46
    124124msgid "Days for Delivery Backorders"
     
    126126
    127127#: views/dokanmarketplace-metabox.php:58 views/metabox-product.php:60
    128 #: views/options.php:272 views/wcfm-metabox.php:71
     128#: views/options.php:296 views/wcfm-metabox.php:71
    129129#: views/wcmarketplace-metabox.php:54
    130130msgid "Max Days for Delivery Backorders"
     
    132132
    133133#: views/dokanmarketplace-metabox.php:67 views/metabox-product.php:69
    134 #: views/options.php:297 views/wcfm-metabox.php:80
     134#: views/options.php:321 views/wcfm-metabox.php:80
    135135#: views/wcmarketplace-metabox.php:63
    136136msgid "Estimated or Guaranteed"
     
    138138
    139139#: views/dokanmarketplace-metabox.php:68 views/metabox-product.php:70
    140 #: views/options.php:298 views/wcfm-metabox.php:81
     140#: views/options.php:322 views/wcfm-metabox.php:81
    141141#: views/wcmarketplace-metabox.php:64
    142142msgid "The message will change."
     
    144144
    145145#: views/dokanmarketplace-metabox.php:73 views/metabox-product.php:75
    146 #: views/options.php:303 views/wcfm-metabox.php:86
     146#: views/options.php:327 views/wcfm-metabox.php:86
    147147#: views/wcmarketplace-metabox.php:69
    148148msgid "Estimated"
     
    150150
    151151#: views/dokanmarketplace-metabox.php:74 views/metabox-product.php:76
    152 #: views/options.php:304 views/wcfm-metabox.php:87
     152#: views/options.php:328 views/wcfm-metabox.php:87
    153153#: views/wcmarketplace-metabox.php:70
    154154msgid "Guaranteed"
     
    156156
    157157#: views/dokanmarketplace-metabox.php:80 views/metabox-product.php:82
    158 #: views/options.php:310 views/wcfm-metabox.php:93
     158#: views/options.php:334 views/wcfm-metabox.php:93
    159159#: views/wcmarketplace-metabox.php:76
    160160msgid "Days disabled"
     
    162162
    163163#: views/dokanmarketplace-metabox.php:81 views/metabox-product.php:83
    164 #: views/options.php:311 views/wcfm-metabox.php:94
     164#: views/options.php:335 views/wcfm-metabox.php:94
    165165#: views/wcmarketplace-metabox.php:77
    166166msgid "Select the days that NO shipments are made."
     
    168168
    169169#: views/dokanmarketplace-metabox.php:86 views/metabox-product.php:88
    170 #: views/options.php:316 views/wcfm-metabox.php:99
     170#: views/options.php:340 views/wcfm-metabox.php:99
    171171#: views/wcmarketplace-metabox.php:82
    172172msgid "Monday"
     
    174174
    175175#: views/dokanmarketplace-metabox.php:91 views/metabox-product.php:93
    176 #: views/options.php:321 views/wcfm-metabox.php:104
     176#: views/options.php:345 views/wcfm-metabox.php:104
    177177#: views/wcmarketplace-metabox.php:87
    178178msgid "Tuesday"
     
    180180
    181181#: views/dokanmarketplace-metabox.php:96 views/metabox-product.php:98
    182 #: views/options.php:326 views/wcfm-metabox.php:109
     182#: views/options.php:350 views/wcfm-metabox.php:109
    183183#: views/wcmarketplace-metabox.php:92
    184184msgid "Wednesday"
     
    186186
    187187#: views/dokanmarketplace-metabox.php:101 views/metabox-product.php:103
    188 #: views/options.php:331 views/wcfm-metabox.php:114
     188#: views/options.php:355 views/wcfm-metabox.php:114
    189189#: views/wcmarketplace-metabox.php:97
    190190msgid "Thursday"
     
    192192
    193193#: views/dokanmarketplace-metabox.php:106 views/metabox-product.php:108
    194 #: views/options.php:336 views/wcfm-metabox.php:119
     194#: views/options.php:360 views/wcfm-metabox.php:119
    195195#: views/wcmarketplace-metabox.php:102
    196196msgid "Friday"
     
    198198
    199199#: views/dokanmarketplace-metabox.php:111 views/metabox-product.php:113
    200 #: views/options.php:341 views/wcfm-metabox.php:124
     200#: views/options.php:365 views/wcfm-metabox.php:124
    201201#: views/wcmarketplace-metabox.php:107
    202202msgid "Saturday"
     
    204204
    205205#: views/dokanmarketplace-metabox.php:116 views/metabox-product.php:118
    206 #: views/options.php:346 views/wcfm-metabox.php:129
     206#: views/options.php:370 views/wcfm-metabox.php:129
    207207#: views/wcmarketplace-metabox.php:112
    208208msgid "Sunday"
     
    213213msgstr "Sobreescribir configuración"
    214214
    215 #: views/options.php:84
     215#: views/options.php:91
    216216msgid "An error has occurred, try again."
    217217msgstr "Ha ocurrido un error, pruebe de nuevo."
    218218
    219 #: views/options.php:88
     219#: views/options.php:95
    220220msgid "Welcome to newsletter :)"
    221221msgstr "Bienvenid@ al newsletter"
    222222
    223 #: views/options.php:131
     223#: views/options.php:138
    224224msgid "Estimated Delivery for Woocommerce"
    225225msgstr "Entrega Estimada para WooCommerce"
    226226
    227 #: views/options.php:132
     227#: views/options.php:139
    228228msgid "Show the estimated or guaranteed delivery for the product"
    229229msgstr "Muestra la entrega estimada o garantizada por cada producto"
    230230
    231 #: views/options.php:139
     231#: views/options.php:146
    232232msgid "Do you want to receive the latest?"
    233233msgstr "¿Quieres recibir lo último?"
    234234
    235 #: views/options.php:140
     235#: views/options.php:147
    236236msgid ""
    237237"Thank you very much for using our plugin, if you want to receive the latest "
     
    241241"ofertas, promociones, descuentos...Inscríbete en nuestro boletín. :)"
    242242
    243 #: views/options.php:142
     243#: views/options.php:149
    244244msgid "Required"
    245245msgstr "Requerido"
    246246
    247 #: views/options.php:150
     247#: views/options.php:157
    248248msgid "Submit"
    249249msgstr "Enviar"
    250250
    251 #: views/options.php:150
     251#: views/options.php:157
    252252msgid "Processing"
    253253msgstr "Procesando"
    254254
    255 #: views/options.php:163
     255#: views/options.php:170
    256256msgid ""
    257257"Developing this plugin takes time, so if you like it, we invite you to make "
     
    263263"actualizando, añadiendo novedades, esto será siempre gratis."
    264264
    265 #: views/options.php:164
     265#: views/options.php:171
    266266msgid "Make a donation now to help development"
    267267msgstr "Realiza una donación ahora par ayudar al desarrollo"
    268268
    269 #: views/options.php:173
     269#: views/options.php:180
    270270msgid "Use AJAX"
    271271msgstr "Usar AJAX"
    272272
    273 #: views/options.php:174
     273#: views/options.php:181
    274274msgid "If your site use cache system, active this option."
    275275msgstr "Si tu sitio usa cache, activa esta opción."
    276276
    277 #: views/options.php:182
     277#: views/options.php:189
    278278msgid "Delivery same day"
    279279msgstr "Envío en el mismo día"
    280280
    281 #: views/options.php:183
     281#: views/options.php:190
    282282msgid ""
    283283"When you set 0 in any option the estimated delivery is disabled, activate "
     
    285285msgstr ""
    286286"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:191
     287"esta opción para permitir establecer en 0 y mostrar la fecha."
     288
     289#: views/options.php:198
    290290msgid "Show date on order (Admin and Customer)"
    291291msgstr "Mostrar fecha en pedidos (Administrador y Clientes)"
    292292
    293 #: views/options.php:192
     293#: views/options.php:199
    294294msgid ""
    295295"If you activate this option, the date will be stored with the order, the "
     
    299299"ver la fecha en cada producto del pedido."
    300300
    301 #: views/options.php:200
     301#: views/options.php:207
    302302msgid "Show date Products Lists"
    303303msgstr "Mostrar fecha en listado de productos"
    304304
    305 #: views/options.php:201
     305#: views/options.php:208
    306306msgid ""
    307307"If you activate this option date show on each product on list, Store, "
     
    312312"página."
    313313
    314 #: views/options.php:210
     314#: views/options.php:216
     315msgid "Icon"
     316msgstr "Icono"
     317
     318#: views/options.php:217
     319msgid ""
     320"You can use always icon, fontawesome, only class name for example: fas fa-"
     321"truck-moving"
     322msgstr ""
     323"Puedes usar un icono, FontAwesome, use la clase del icono por ejemplo: fas "
     324"fa-truck-moving"
     325
     326#: views/options.php:225
     327msgid "¿Problem with Icon?"
     328msgstr "¿Problema con el icono?"
     329
     330#: views/options.php:226
     331msgid "Load FontAwesome Library."
     332msgstr "Cargue la librería FontAwesome."
     333
     334#: views/options.php:234
    315335msgid "Maximum Time"
    316336msgstr "Tiempo máximo"
    317337
    318 #: views/options.php:212
     338#: views/options.php:236
    319339#, php-format
    320340msgid ""
     
    325345"HH:mm ahora son %s"
    326346
    327 #: views/options.php:221
     347#: views/options.php:245
    328348msgid "Use Relative Dates"
    329349msgstr "Usar fechas relativas"
    330350
    331 #: views/options.php:222
     351#: views/options.php:246
    332352msgid "Only work with current and next week"
    333353msgstr "Solo funciona con la semana actual y la próxima"
    334354
    335 #: views/options.php:281
     355#: views/options.php:305
    336356msgid "Date Formats"
    337357msgstr "Formato de fechas"
    338358
    339 #: views/options.php:282
     359#: views/options.php:306
    340360msgid "You can change date format use"
    341361msgstr "Puedes cambiar el formato de fecha que usa el plugin"
    342362
    343 #: views/options.php:285
     363#: views/options.php:309
    344364msgid "Same month and year, different day (00 - 00 MM, YYYY)"
    345365msgstr "Mismo mes y año, diferente día (00 - 00 MM, YYYY)"
    346366
    347 #: views/options.php:288
     367#: views/options.php:312
    348368msgid "Same year, different day and month (00 MM - 00 MM, YYYY)"
    349369msgstr "Mismo año, diferente día y mes (00 MM - 00 MM, YYYY)"
    350370
    351 #: views/options.php:291
     371#: views/options.php:315
    352372msgid "All different (00 MM YYYY - 00 MM YYYY)"
    353373msgstr "Todo diferente (00 MM YYYY - 00 MM YYYY)"
    354374
    355 #: views/options.php:351
     375#: views/options.php:375
    356376msgid "Position"
    357377msgstr "Posición"
    358378
    359 #: views/options.php:365
     379#: views/options.php:389
    360380msgid "Holidays Dates"
    361381msgstr "Fecha de Vacaciones"
    362382
    363 #: views/options.php:366
     383#: views/options.php:390
    364384msgid ""
    365385"Dates with comma separated, YYYY/MM/DD, on YEAR use XXXX for dynamic year. "
     
    369389"ejemplo: XXXX/12/31"
    370390
    371 #: views/options.php:374
     391#: views/options.php:398
    372392msgid "Save"
    373393msgstr "Guardar"
    374394
    375 #: views/options.php:376
     395#: views/options.php:400
    376396msgid "Need style?"
    377397msgstr "Necesitas dar estilos?"
    378398
    379 #: views/options.php:377
     399#: views/options.php:401
    380400msgid "Enjoy! Paste this CSS code into your Customizer and edit as you like"
    381401msgstr ""
  • estimated-delivery-for-woocommerce/tags/1.4.5/languages/estimated-delivery-for-woocommerce-fr_FR.po

    r2906408 r3098233  
    22msgstr ""
    33"Project-Id-Version: \n"
    4 "POT-Creation-Date: 2023-05-01 02:01+0200\n"
    5 "PO-Revision-Date: 2023-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"
    66"Last-Translator: \n"
    77"Language-Team: \n"
     
    1111"Content-Transfer-Encoding: 8bit\n"
    1212"Plural-Forms: nplurals=2; plural=(n > 1);\n"
    13 "X-Generator: Poedit 3.2.2\n"
     13"X-Generator: Poedit 3.4.4\n"
    1414"X-Poedit-Basepath: ..\n"
    1515"X-Poedit-KeywordsList: __;_e\n"
    1616"X-Poedit-SearchPath-0: .\n"
    1717
    18 #: estimated-delivery-woocommerce.php:101
    19 #: estimated-delivery-woocommerce.php:156
    20 #: estimated-delivery-woocommerce.php:210
     18#: estimated-delivery-woocommerce.php:151
     19#: estimated-delivery-woocommerce.php:211
     20#: estimated-delivery-woocommerce.php:267 views/wcfm-metabox.php:21
    2121msgid "Estimated Delivery"
    2222msgstr "Livraison estimée"
    2323
    24 #: estimated-delivery-woocommerce.php:216
     24#: estimated-delivery-woocommerce.php:273
    2525msgid "Disabled, use shortcode"
    2626msgstr "Désactivé, utilisez le shortcode"
    2727
    28 #: estimated-delivery-woocommerce.php:217
     28#: estimated-delivery-woocommerce.php:274
    2929msgid "After cart button"
    3030msgstr "Bouton Après le panier"
    3131
    32 #: estimated-delivery-woocommerce.php:218
     32#: estimated-delivery-woocommerce.php:275
    3333msgid "Before cart button"
    3434msgstr "Bouton Avant le panier"
    3535
    36 #: estimated-delivery-woocommerce.php:219
     36#: estimated-delivery-woocommerce.php:276
    3737msgid "After product meta"
    3838msgstr "Méta produit après"
    3939
    40 #: estimated-delivery-woocommerce.php:220
     40#: estimated-delivery-woocommerce.php:277
    4141msgid "Before product summary"
    4242msgstr "Avant le résumé du produit"
    4343
    44 #: estimated-delivery-woocommerce.php:221
     44#: estimated-delivery-woocommerce.php:278
    4545msgid "After product summary"
    4646msgstr "Après le résumé du produit"
    4747
    48 #: estimated-delivery-woocommerce.php:222
     48#: estimated-delivery-woocommerce.php:279
    4949msgid "Product Thumbnail (may not work)"
    5050msgstr "Vignette du produit (peut ne pas fonctionner)"
    5151
    52 #: estimated-delivery-woocommerce.php:381
     52#: estimated-delivery-woocommerce.php:472
    5353msgid " on"
    5454msgstr " on"
    5555
    56 #: estimated-delivery-woocommerce.php:390
    57 #: estimated-delivery-woocommerce.php:411
     56#: estimated-delivery-woocommerce.php:481
     57#: estimated-delivery-woocommerce.php:502
    5858#, php-format
    5959msgid "this %s, %s"
    6060msgstr "ce %s, %s"
    6161
    62 #: estimated-delivery-woocommerce.php:393
    63 #: estimated-delivery-woocommerce.php:414
     62#: estimated-delivery-woocommerce.php:484
     63#: estimated-delivery-woocommerce.php:505
    6464#, php-format
    6565msgid "the next %s, %s"
    6666msgstr "les prochains %s, %s"
    6767
    68 #: estimated-delivery-woocommerce.php:421
     68#: estimated-delivery-woocommerce.php:514
    6969msgid "Estimated delivery"
    7070msgstr "Livraison estimée"
    7171
    72 #: estimated-delivery-woocommerce.php:422
     72#: estimated-delivery-woocommerce.php:515
    7373#, php-format
    7474msgid "Estimated delivery%s %s"
    7575msgstr "Livraison estimée%s %s"
    7676
    77 #: estimated-delivery-woocommerce.php:424
     77#: estimated-delivery-woocommerce.php:517
    7878msgid "Guaranteed delivery"
    7979msgstr "Livraison garantie"
    8080
    81 #: estimated-delivery-woocommerce.php:425
     81#: estimated-delivery-woocommerce.php:518
    8282#, php-format
    8383msgid "Guaranteed delivery%s %s"
     
    8585
    8686#: 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
    8889msgid "Days for Delivery"
    8990msgstr "Jours de livraison"
    9091
    9192#: 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
    9395msgid "Max Days for Delivery"
    9496msgstr "Jours maximum pour la livraison"
     
    9799#: views/dokanmarketplace-metabox.php:59 views/metabox-product.php:27
    98100#: 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
    102105msgid "Set 0 for disable. If this set more than 0 days, it will show a range."
    103106msgstr ""
     
    106109
    107110#: 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
    109113msgid "Days for Delivery out of stock"
    110114msgstr "Jours de livraison en rupture de stock"
    111115
    112116#: 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
    114119msgid "Max Days for Delivery out of stock"
    115120msgstr "Jours maximum de livraison en rupture de stock"
    116121
    117122#: 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
    119125#, fuzzy
    120126#| msgid "Days for Delivery"
     
    123129
    124130#: 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
    126133#, fuzzy
    127134#| msgid "Max Days for Delivery"
     
    130137
    131138#: 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
    133141msgid "Estimated or Guaranteed"
    134142msgstr "Estimé ou garanti"
    135143
    136144#: 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
    138147msgid "The message will change."
    139148msgstr "Le message va changer."
    140149
    141150#: 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
    143153msgid "Estimated"
    144154msgstr "Estimé"
    145155
    146156#: 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
    148159msgid "Guaranteed"
    149160msgstr "Garanti"
    150161
    151162#: 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
    153165msgid "Days disabled"
    154166msgstr "Jours désactivés"
    155167
    156168#: 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
    158171msgid "Select the days that NO shipments are made."
    159172msgstr "Sélectionnez les jours où AUCUNE expédition n'est effectuée."
    160173
    161174#: 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
    163177msgid "Monday"
    164178msgstr "Lundi"
    165179
    166180#: 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
    168183msgid "Tuesday"
    169184msgstr "Mardi"
    170185
    171186#: 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
    173189msgid "Wednesday"
    174190msgstr "Mercredi"
    175191
    176192#: 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
    178195msgid "Thursday"
    179196msgstr "Jeudi"
    180197
    181198#: 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
    183201msgid "Friday"
    184202msgstr "Vendredi"
    185203
    186204#: 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
    188207msgid "Saturday"
    189208msgstr "Samedi"
    190209
    191210#: 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
    193213msgid "Sunday"
    194214msgstr "Dimanche"
     
    198218msgstr "Ecraser les paramètres généraux"
    199219
    200 #: views/options.php:73
     220#: views/options.php:91
    201221msgid "An error has occurred, try again."
    202222msgstr "Une erreur s'est produite, réessayez."
    203223
    204 #: views/options.php:77
     224#: views/options.php:95
    205225msgid "Welcome to newsletter :)"
    206226msgstr "Bienvenue dans la newsletter :)"
    207227
    208 #: views/options.php:120
     228#: views/options.php:138
    209229msgid "Estimated Delivery for Woocommerce"
    210230msgstr "Estimation du délai de livraison pour Woocommerce"
    211231
    212 #: views/options.php:121
     232#: views/options.php:139
    213233msgid "Show the estimated or guaranteed delivery for the product"
    214234msgstr "Afficher la livraison estimée ou garantie pour le produit"
    215235
    216 #: views/options.php:128
     236#: views/options.php:146
    217237msgid "Do you want to receive the latest?"
    218238msgstr "Voulez-vous recevoir les dernières informations ?"
    219239
    220 #: views/options.php:129
     240#: views/options.php:147
    221241msgid ""
    222242"Thank you very much for using our plugin, if you want to receive the latest "
     
    227247"notre newsletter. :)"
    228248
    229 #: views/options.php:131
     249#: views/options.php:149
    230250msgid "Required"
    231251msgstr "Requis"
    232252
    233 #: views/options.php:139
     253#: views/options.php:157
    234254msgid "Submit"
    235255msgstr "Soumettre"
    236256
    237 #: views/options.php:139
     257#: views/options.php:157
    238258msgid "Processing"
    239259msgstr ""
    240260
    241 #: views/options.php:152
     261#: views/options.php:170
    242262msgid ""
    243263"Developing this plugin takes time, so if you like it, we invite you to make "
     
    249269"et mettre à jour, ajouter des nouvelles, ce sera toujours gratuit."
    250270
    251 #: views/options.php:153
     271#: views/options.php:171
    252272msgid "Make a donation now to help development"
    253273msgstr "Faites un don maintenant pour aider au développement"
    254274
    255 #: views/options.php:162
     275#: views/options.php:180
    256276msgid "Use AJAX"
    257277msgstr "Utiliser AJAX"
    258278
    259 #: views/options.php:163
     279#: views/options.php:181
    260280msgid "If your site use cache system, active this option."
    261281msgstr "Si votre site utilise un système de cache, activez cette option."
    262282
    263 #: views/options.php:171
     283#: views/options.php:189
    264284msgid "Delivery same day"
    265285msgstr ""
    266286
    267 #: views/options.php:172
     287#: views/options.php:190
    268288msgid ""
    269289"When you set 0 in any option the estimated delivery is disabled, activate "
     
    271291msgstr ""
    272292
    273 #: views/options.php:180
     293#: views/options.php:198
    274294msgid "Show date on order (Admin and Customer)"
    275295msgstr ""
    276296
    277 #: views/options.php:181
     297#: views/options.php:199
    278298msgid ""
    279299"If you activate this option, the date will be stored with the order, the "
     
    281301msgstr ""
    282302
    283 #: views/options.php:189
     303#: views/options.php:207
    284304msgid "Show date Products Lists"
    285305msgstr ""
    286306
    287 #: views/options.php:190
     307#: views/options.php:208
    288308msgid ""
    289309"If you activate this option date show on each product on list, Store, "
     
    291311msgstr ""
    292312
    293 #: views/options.php:199
     313#: views/options.php:216
     314msgid "Icon"
     315msgstr ""
     316
     317#: views/options.php:217
     318msgid ""
     319"You can use always icon, fontawesome, only class name for example: fas fa-"
     320"truck-moving"
     321msgstr ""
     322
     323#: views/options.php:225
     324msgid "¿Problem with Icon?"
     325msgstr ""
     326
     327#: views/options.php:226
     328msgid "Load FontAwesome Library."
     329msgstr ""
     330
     331#: views/options.php:234
    294332msgid "Maximum Time"
    295333msgstr ""
    296334
    297 #: views/options.php:201
     335#: views/options.php:236
    298336#, php-format
    299337msgid ""
     
    302340msgstr ""
    303341
    304 #: views/options.php:210
     342#: views/options.php:245
    305343msgid "Use Relative Dates"
    306344msgstr "Utiliser les dates relatives"
    307345
    308 #: views/options.php:211
     346#: views/options.php:246
    309347msgid "Only work with current and next week"
    310348msgstr "Ne fonctionne qu'avec la semaine en cours et la semaine prochaine"
    311349
    312 #: views/options.php:324
     350#: views/options.php:305
     351msgid "Date Formats"
     352msgstr ""
     353
     354#: views/options.php:306
     355msgid "You can change date format use"
     356msgstr ""
     357
     358#: views/options.php:309
     359msgid "Same month and year, different day (00 - 00 MM, YYYY)"
     360msgstr ""
     361
     362#: views/options.php:312
     363msgid "Same year, different day and month (00 MM - 00 MM, YYYY)"
     364msgstr ""
     365
     366#: views/options.php:315
     367msgid "All different (00 MM YYYY - 00 MM YYYY)"
     368msgstr ""
     369
     370#: views/options.php:375
    313371msgid "Position"
    314372msgstr "Position"
    315373
    316 #: views/options.php:338
     374#: views/options.php:389
     375msgid "Holidays Dates"
     376msgstr ""
     377
     378#: views/options.php:390
     379msgid ""
     380"Dates with comma separated, YYYY/MM/DD, on YEAR use XXXX for dynamic year. "
     381"Example: XXXX/12/31"
     382msgstr ""
     383
     384#: views/options.php:398
    317385msgid "Save"
    318386msgstr "Enregistrer"
    319387
    320 #: views/options.php:340
     388#: views/options.php:400
    321389msgid "Need style?"
    322390msgstr "Besoin de style ?"
    323391
    324 #: views/options.php:341
     392#: views/options.php:401
    325393msgid "Enjoy! Paste this CSS code into your Customizer and edit as you like"
    326394msgstr ""
  • estimated-delivery-for-woocommerce/tags/1.4.5/languages/estimated-delivery-for-woocommerce-it_IT.po

    r2906408 r3098233  
    55"Project-Id-Version: Plugins - Estimated Delivery for Woocomerce - Stable "
    66"(latest release)\n"
    7 "POT-Creation-Date: 2023-05-01 02:01+0200\n"
    8 "PO-Revision-Date: 2023-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"
    99"Last-Translator: \n"
    1010"Language-Team: \n"
     
    1414"Content-Transfer-Encoding: 8bit\n"
    1515"Plural-Forms: nplurals=2; plural=n != 1;\n"
    16 "X-Generator: Poedit 3.2.2\n"
    17 
    18 #: estimated-delivery-woocommerce.php:101
    19 #: estimated-delivery-woocommerce.php:156
    20 #: estimated-delivery-woocommerce.php:210
     16"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
    2121msgid "Estimated Delivery"
    2222msgstr ""
    2323
    24 #: estimated-delivery-woocommerce.php:216
     24#: estimated-delivery-woocommerce.php:273
    2525msgid "Disabled, use shortcode"
    2626msgstr ""
    2727
    28 #: estimated-delivery-woocommerce.php:217
     28#: estimated-delivery-woocommerce.php:274
    2929msgid "After cart button"
    3030msgstr ""
    3131
    32 #: estimated-delivery-woocommerce.php:218
     32#: estimated-delivery-woocommerce.php:275
    3333msgid "Before cart button"
    3434msgstr ""
    3535
    36 #: estimated-delivery-woocommerce.php:219
     36#: estimated-delivery-woocommerce.php:276
    3737msgid "After product meta"
    3838msgstr ""
    3939
    40 #: estimated-delivery-woocommerce.php:220
     40#: estimated-delivery-woocommerce.php:277
    4141msgid "Before product summary"
    4242msgstr ""
    4343
    44 #: estimated-delivery-woocommerce.php:221
     44#: estimated-delivery-woocommerce.php:278
    4545msgid "After product summary"
    4646msgstr ""
    4747
    48 #: estimated-delivery-woocommerce.php:222
     48#: estimated-delivery-woocommerce.php:279
    4949msgid "Product Thumbnail (may not work)"
    5050msgstr ""
    5151
    52 #: estimated-delivery-woocommerce.php:381
     52#: estimated-delivery-woocommerce.php:472
    5353msgid " on"
    5454msgstr ""
    5555
    56 #: estimated-delivery-woocommerce.php:390
    57 #: estimated-delivery-woocommerce.php:411
     56#: estimated-delivery-woocommerce.php:481
     57#: estimated-delivery-woocommerce.php:502
    5858#, php-format
    5959msgid "this %s, %s"
    6060msgstr ""
    6161
    62 #: estimated-delivery-woocommerce.php:393
    63 #: estimated-delivery-woocommerce.php:414
     62#: estimated-delivery-woocommerce.php:484
     63#: estimated-delivery-woocommerce.php:505
    6464#, php-format
    6565msgid "the next %s, %s"
    6666msgstr ""
    6767
    68 #: estimated-delivery-woocommerce.php:421
     68#: estimated-delivery-woocommerce.php:514
    6969msgid "Estimated delivery"
    7070msgstr ""
    7171
    72 #: estimated-delivery-woocommerce.php:422
     72#: estimated-delivery-woocommerce.php:515
    7373#, php-format
    7474msgid "Estimated delivery%s %s"
    7575msgstr ""
    7676
    77 #: estimated-delivery-woocommerce.php:424
     77#: estimated-delivery-woocommerce.php:517
    7878msgid "Guaranteed delivery"
    7979msgstr ""
    8080
    81 #: estimated-delivery-woocommerce.php:425
     81#: estimated-delivery-woocommerce.php:518
    8282#, php-format
    8383msgid "Guaranteed delivery%s %s"
     
    8585
    8686#: 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
    8889msgid "Days for Delivery"
    8990msgstr ""
    9091
    9192#: 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
    9395msgid "Max Days for Delivery"
    9496msgstr ""
     
    9799#: views/dokanmarketplace-metabox.php:59 views/metabox-product.php:27
    98100#: 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
    102105msgid "Set 0 for disable. If this set more than 0 days, it will show a range."
    103106msgstr ""
    104107
    105108#: 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
    107111msgid "Days for Delivery out of stock"
    108112msgstr ""
    109113
    110114#: 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
    112117msgid "Max Days for Delivery out of stock"
    113118msgstr ""
    114119
    115120#: 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
    117123msgid "Days for Delivery Backorders"
    118124msgstr ""
    119125
    120126#: 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
    122129msgid "Max Days for Delivery Backorders"
    123130msgstr ""
    124131
    125132#: 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
    127135msgid "Estimated or Guaranteed"
    128136msgstr ""
    129137
    130138#: 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
    132141msgid "The message will change."
    133142msgstr ""
    134143
    135144#: 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
    137147msgid "Estimated"
    138148msgstr ""
    139149
    140150#: 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
    142153msgid "Guaranteed"
    143154msgstr ""
    144155
    145156#: 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
    147159msgid "Days disabled"
    148160msgstr ""
    149161
    150162#: 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
    152165msgid "Select the days that NO shipments are made."
    153166msgstr ""
    154167
    155168#: 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
    157171msgid "Monday"
    158172msgstr ""
    159173
    160174#: 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
    162177msgid "Tuesday"
    163178msgstr ""
    164179
    165180#: 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
    167183msgid "Wednesday"
    168184msgstr ""
    169185
    170186#: 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
    172189msgid "Thursday"
    173190msgstr ""
    174191
    175192#: 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
    177195msgid "Friday"
    178196msgstr ""
    179197
    180198#: 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
    182201msgid "Saturday"
    183202msgstr ""
    184203
    185204#: 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
    187207msgid "Sunday"
    188208msgstr ""
     
    192212msgstr ""
    193213
    194 #: views/options.php:73
     214#: views/options.php:91
    195215msgid "An error has occurred, try again."
    196216msgstr ""
    197217
    198 #: views/options.php:77
     218#: views/options.php:95
    199219msgid "Welcome to newsletter :)"
    200220msgstr ""
    201221
    202 #: views/options.php:120
     222#: views/options.php:138
    203223msgid "Estimated Delivery for Woocommerce"
    204224msgstr ""
    205225
    206 #: views/options.php:121
     226#: views/options.php:139
    207227msgid "Show the estimated or guaranteed delivery for the product"
    208228msgstr ""
    209229
    210 #: views/options.php:128
     230#: views/options.php:146
    211231msgid "Do you want to receive the latest?"
    212232msgstr ""
    213233
    214 #: views/options.php:129
     234#: views/options.php:147
    215235msgid ""
    216236"Thank you very much for using our plugin, if you want to receive the latest "
     
    218238msgstr ""
    219239
    220 #: views/options.php:131
     240#: views/options.php:149
    221241msgid "Required"
    222242msgstr ""
    223243
    224 #: views/options.php:139
     244#: views/options.php:157
    225245msgid "Submit"
    226246msgstr ""
    227247
    228 #: views/options.php:139
     248#: views/options.php:157
    229249msgid "Processing"
    230250msgstr ""
    231251
    232 #: views/options.php:152
     252#: views/options.php:170
    233253msgid ""
    234254"Developing this plugin takes time, so if you like it, we invite you to make "
     
    237257msgstr ""
    238258
    239 #: views/options.php:153
     259#: views/options.php:171
    240260msgid "Make a donation now to help development"
    241261msgstr ""
    242262
    243 #: views/options.php:162
     263#: views/options.php:180
    244264msgid "Use AJAX"
    245265msgstr ""
    246266
    247 #: views/options.php:163
     267#: views/options.php:181
    248268msgid "If your site use cache system, active this option."
    249269msgstr ""
    250270
    251 #: views/options.php:171
     271#: views/options.php:189
    252272msgid "Delivery same day"
    253273msgstr ""
    254274
    255 #: views/options.php:172
     275#: views/options.php:190
    256276msgid ""
    257277"When you set 0 in any option the estimated delivery is disabled, activate "
     
    259279msgstr ""
    260280
    261 #: views/options.php:180
     281#: views/options.php:198
    262282msgid "Show date on order (Admin and Customer)"
    263283msgstr ""
    264284
    265 #: views/options.php:181
     285#: views/options.php:199
    266286msgid ""
    267287"If you activate this option, the date will be stored with the order, the "
     
    269289msgstr ""
    270290
    271 #: views/options.php:189
     291#: views/options.php:207
    272292msgid "Show date Products Lists"
    273293msgstr ""
    274294
    275 #: views/options.php:190
     295#: views/options.php:208
    276296msgid ""
    277297"If you activate this option date show on each product on list, Store, "
     
    279299msgstr ""
    280300
    281 #: views/options.php:199
     301#: views/options.php:216
     302msgid "Icon"
     303msgstr ""
     304
     305#: views/options.php:217
     306msgid ""
     307"You can use always icon, fontawesome, only class name for example: fas fa-"
     308"truck-moving"
     309msgstr ""
     310
     311#: views/options.php:225
     312msgid "¿Problem with Icon?"
     313msgstr ""
     314
     315#: views/options.php:226
     316msgid "Load FontAwesome Library."
     317msgstr ""
     318
     319#: views/options.php:234
    282320msgid "Maximum Time"
    283321msgstr ""
    284322
    285 #: views/options.php:201
     323#: views/options.php:236
    286324#, php-format
    287325msgid ""
     
    290328msgstr ""
    291329
    292 #: views/options.php:210
     330#: views/options.php:245
    293331msgid "Use Relative Dates"
    294332msgstr ""
    295333
    296 #: views/options.php:211
     334#: views/options.php:246
    297335msgid "Only work with current and next week"
    298336msgstr ""
    299337
    300 #: views/options.php:324
     338#: views/options.php:305
     339msgid "Date Formats"
     340msgstr ""
     341
     342#: views/options.php:306
     343msgid "You can change date format use"
     344msgstr ""
     345
     346#: views/options.php:309
     347msgid "Same month and year, different day (00 - 00 MM, YYYY)"
     348msgstr ""
     349
     350#: views/options.php:312
     351msgid "Same year, different day and month (00 MM - 00 MM, YYYY)"
     352msgstr ""
     353
     354#: views/options.php:315
     355msgid "All different (00 MM YYYY - 00 MM YYYY)"
     356msgstr ""
     357
     358#: views/options.php:375
    301359msgid "Position"
    302360msgstr ""
    303361
    304 #: views/options.php:338
     362#: views/options.php:389
     363msgid "Holidays Dates"
     364msgstr ""
     365
     366#: views/options.php:390
     367msgid ""
     368"Dates with comma separated, YYYY/MM/DD, on YEAR use XXXX for dynamic year. "
     369"Example: XXXX/12/31"
     370msgstr ""
     371
     372#: views/options.php:398
    305373msgid "Save"
    306374msgstr ""
    307375
    308 #: views/options.php:340
     376#: views/options.php:400
    309377msgid "Need style?"
    310378msgstr ""
    311379
    312 #: views/options.php:341
     380#: views/options.php:401
    313381msgid "Enjoy! Paste this CSS code into your Customizer and edit as you like"
    314382msgstr ""
  • estimated-delivery-for-woocommerce/tags/1.4.5/languages/estimated-delivery-for-woocommerce-nl_NL.po

    r2906408 r3098233  
    55"Project-Id-Version: Plugins - Estimated Delivery for Woocomerce - Stable "
    66"(latest release)\n"
    7 "POT-Creation-Date: 2023-05-01 02:01+0200\n"
    8 "PO-Revision-Date: 2023-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"
    99"Last-Translator: \n"
    1010"Language-Team: \n"
     
    1414"Content-Transfer-Encoding: 8bit\n"
    1515"Plural-Forms: nplurals=2; plural=n != 1;\n"
    16 "X-Generator: Poedit 3.2.2\n"
    17 
    18 #: estimated-delivery-woocommerce.php:101
    19 #: estimated-delivery-woocommerce.php:156
    20 #: estimated-delivery-woocommerce.php:210
     16"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
    2121msgid "Estimated Delivery"
    2222msgstr ""
    2323
    24 #: estimated-delivery-woocommerce.php:216
     24#: estimated-delivery-woocommerce.php:273
    2525msgid "Disabled, use shortcode"
    2626msgstr ""
    2727
    28 #: estimated-delivery-woocommerce.php:217
     28#: estimated-delivery-woocommerce.php:274
    2929msgid "After cart button"
    3030msgstr ""
    3131
    32 #: estimated-delivery-woocommerce.php:218
     32#: estimated-delivery-woocommerce.php:275
    3333msgid "Before cart button"
    3434msgstr ""
    3535
    36 #: estimated-delivery-woocommerce.php:219
     36#: estimated-delivery-woocommerce.php:276
    3737msgid "After product meta"
    3838msgstr ""
    3939
    40 #: estimated-delivery-woocommerce.php:220
     40#: estimated-delivery-woocommerce.php:277
    4141msgid "Before product summary"
    4242msgstr ""
    4343
    44 #: estimated-delivery-woocommerce.php:221
     44#: estimated-delivery-woocommerce.php:278
    4545msgid "After product summary"
    4646msgstr ""
    4747
    48 #: estimated-delivery-woocommerce.php:222
     48#: estimated-delivery-woocommerce.php:279
    4949msgid "Product Thumbnail (may not work)"
    5050msgstr ""
    5151
    52 #: estimated-delivery-woocommerce.php:381
     52#: estimated-delivery-woocommerce.php:472
    5353msgid " on"
    5454msgstr ""
    5555
    56 #: estimated-delivery-woocommerce.php:390
    57 #: estimated-delivery-woocommerce.php:411
     56#: estimated-delivery-woocommerce.php:481
     57#: estimated-delivery-woocommerce.php:502
    5858#, php-format
    5959msgid "this %s, %s"
    6060msgstr ""
    6161
    62 #: estimated-delivery-woocommerce.php:393
    63 #: estimated-delivery-woocommerce.php:414
     62#: estimated-delivery-woocommerce.php:484
     63#: estimated-delivery-woocommerce.php:505
    6464#, php-format
    6565msgid "the next %s, %s"
    6666msgstr "de volgende %s, %s"
    6767
    68 #: estimated-delivery-woocommerce.php:421
     68#: estimated-delivery-woocommerce.php:514
    6969#, fuzzy
    7070#| msgid "Estimated"
     
    7272msgstr "Geschat"
    7373
    74 #: estimated-delivery-woocommerce.php:422
     74#: estimated-delivery-woocommerce.php:515
    7575#, php-format
    7676msgid "Estimated delivery%s %s"
    7777msgstr ""
    7878
    79 #: estimated-delivery-woocommerce.php:424
     79#: estimated-delivery-woocommerce.php:517
    8080#, fuzzy
    8181#| msgid "Guaranteed"
     
    8383msgstr "gegarandeerd"
    8484
    85 #: estimated-delivery-woocommerce.php:425
     85#: estimated-delivery-woocommerce.php:518
    8686#, php-format
    8787msgid "Guaranteed delivery%s %s"
     
    8989
    9090#: 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
    9293msgid "Days for Delivery"
    9394msgstr "Dagen voor levering"
    9495
    9596#: 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
    9799msgid "Max Days for Delivery"
    98100msgstr ""
     
    101103#: views/dokanmarketplace-metabox.php:59 views/metabox-product.php:27
    102104#: 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
    106109msgid "Set 0 for disable. If this set more than 0 days, it will show a range."
    107110msgstr ""
    108111
    109112#: 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
    111115msgid "Days for Delivery out of stock"
    112116msgstr ""
    113117
    114118#: 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
    116121msgid "Max Days for Delivery out of stock"
    117122msgstr ""
    118123
    119124#: 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
    121127msgid "Days for Delivery Backorders"
    122128msgstr ""
    123129
    124130#: 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
    126133msgid "Max Days for Delivery Backorders"
    127134msgstr ""
    128135
    129136#: 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
    131139msgid "Estimated or Guaranteed"
    132140msgstr "Geschat of gegarandeerd"
    133141
    134142#: 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
    136145msgid "The message will change."
    137146msgstr "Het bericht wordt gewijzigd."
    138147
    139148#: 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
    141151msgid "Estimated"
    142152msgstr "Geschat"
    143153
    144154#: 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
    146157msgid "Guaranteed"
    147158msgstr "gegarandeerd"
    148159
    149160#: 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
    151163msgid "Days disabled"
    152164msgstr "Dagen uitgeschakeld"
    153165
    154166#: 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
    156169msgid "Select the days that NO shipments are made."
    157170msgstr "Selecteer de dagen dat er GEEN bestellingen worden verzonden."
    158171
    159172#: 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
    161175msgid "Monday"
    162176msgstr "Maandag"
    163177
    164178#: 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
    166181msgid "Tuesday"
    167182msgstr "Dinsdag"
    168183
    169184#: 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
    171187msgid "Wednesday"
    172188msgstr "Woensdag"
    173189
    174190#: 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
    176193msgid "Thursday"
    177194msgstr "Donderdag"
    178195
    179196#: 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
    181199msgid "Friday"
    182200msgstr "Vrijdag"
    183201
    184202#: 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
    186205msgid "Saturday"
    187206msgstr "Zaterdag"
    188207
    189208#: 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
    191211msgid "Sunday"
    192212msgstr "Zondag"
     
    196216msgstr ""
    197217
    198 #: views/options.php:73
     218#: views/options.php:91
    199219msgid "An error has occurred, try again."
    200220msgstr "Er is een fout opgetreden. Probeer het opnieuw."
    201221
    202 #: views/options.php:77
     222#: views/options.php:95
    203223msgid "Welcome to newsletter :)"
    204224msgstr "Welkom bij de nieuwsbrief :)"
    205225
    206 #: views/options.php:120
     226#: views/options.php:138
    207227msgid "Estimated Delivery for Woocommerce"
    208228msgstr ""
    209229
    210 #: views/options.php:121
     230#: views/options.php:139
    211231msgid "Show the estimated or guaranteed delivery for the product"
    212232msgstr ""
    213233
    214 #: views/options.php:128
     234#: views/options.php:146
    215235msgid "Do you want to receive the latest?"
    216236msgstr "Wil je het laatste nieuws ontvangen?"
    217237
    218 #: views/options.php:129
     238#: views/options.php:147
    219239msgid ""
    220240"Thank you very much for using our plugin, if you want to receive the latest "
     
    225245"voor onze nieuwsbrief. :)"
    226246
    227 #: views/options.php:131
     247#: views/options.php:149
    228248msgid "Required"
    229249msgstr "Verplicht"
    230250
    231 #: views/options.php:139
     251#: views/options.php:157
    232252msgid "Submit"
    233253msgstr "Verstuur"
    234254
    235 #: views/options.php:139
     255#: views/options.php:157
    236256msgid "Processing"
    237257msgstr "Verwerken"
    238258
    239 #: views/options.php:152
     259#: views/options.php:170
    240260msgid ""
    241261"Developing this plugin takes time, so if you like it, we invite you to make "
     
    247267"ontwikkelen, updaten en nieuws toevoegen, dit zal altijd gratis zijn."
    248268
    249 #: views/options.php:153
     269#: views/options.php:171
    250270msgid "Make a donation now to help development"
    251271msgstr "Maak een donatie om de ontwikkeling te helpen"
    252272
    253 #: views/options.php:162
     273#: views/options.php:180
    254274msgid "Use AJAX"
    255275msgstr "AJAX gebruiken"
    256276
    257 #: views/options.php:163
     277#: views/options.php:181
    258278msgid "If your site use cache system, active this option."
    259279msgstr ""
    260280
    261 #: views/options.php:171
     281#: views/options.php:189
    262282msgid "Delivery same day"
    263283msgstr "Levering op dezelfde dag"
    264284
    265 #: views/options.php:172
     285#: views/options.php:190
    266286msgid ""
    267287"When you set 0 in any option the estimated delivery is disabled, activate "
     
    269289msgstr ""
    270290
    271 #: views/options.php:180
     291#: views/options.php:198
    272292msgid "Show date on order (Admin and Customer)"
    273293msgstr ""
    274294
    275 #: views/options.php:181
     295#: views/options.php:199
    276296msgid ""
    277297"If you activate this option, the date will be stored with the order, the "
     
    279299msgstr ""
    280300
    281 #: views/options.php:189
     301#: views/options.php:207
    282302msgid "Show date Products Lists"
    283303msgstr ""
    284304
    285 #: views/options.php:190
     305#: views/options.php:208
    286306msgid ""
    287307"If you activate this option date show on each product on list, Store, "
     
    289309msgstr ""
    290310
    291 #: views/options.php:199
     311#: views/options.php:216
     312msgid "Icon"
     313msgstr ""
     314
     315#: views/options.php:217
     316msgid ""
     317"You can use always icon, fontawesome, only class name for example: fas fa-"
     318"truck-moving"
     319msgstr ""
     320
     321#: views/options.php:225
     322msgid "¿Problem with Icon?"
     323msgstr ""
     324
     325#: views/options.php:226
     326msgid "Load FontAwesome Library."
     327msgstr ""
     328
     329#: views/options.php:234
    292330msgid "Maximum Time"
    293331msgstr ""
    294332
    295 #: views/options.php:201
     333#: views/options.php:236
    296334#, php-format
    297335msgid ""
     
    300338msgstr ""
    301339
    302 #: views/options.php:210
     340#: views/options.php:245
    303341msgid "Use Relative Dates"
    304342msgstr "Gebruik relatieve datums"
    305343
    306 #: views/options.php:211
     344#: views/options.php:246
    307345msgid "Only work with current and next week"
    308346msgstr ""
    309347
    310 #: views/options.php:324
     348#: views/options.php:305
     349msgid "Date Formats"
     350msgstr ""
     351
     352#: views/options.php:306
     353msgid "You can change date format use"
     354msgstr ""
     355
     356#: views/options.php:309
     357msgid "Same month and year, different day (00 - 00 MM, YYYY)"
     358msgstr ""
     359
     360#: views/options.php:312
     361msgid "Same year, different day and month (00 MM - 00 MM, YYYY)"
     362msgstr ""
     363
     364#: views/options.php:315
     365msgid "All different (00 MM YYYY - 00 MM YYYY)"
     366msgstr ""
     367
     368#: views/options.php:375
    311369msgid "Position"
    312370msgstr "Positie"
    313371
    314 #: views/options.php:338
     372#: views/options.php:389
     373msgid "Holidays Dates"
     374msgstr ""
     375
     376#: views/options.php:390
     377msgid ""
     378"Dates with comma separated, YYYY/MM/DD, on YEAR use XXXX for dynamic year. "
     379"Example: XXXX/12/31"
     380msgstr ""
     381
     382#: views/options.php:398
    315383msgid "Save"
    316384msgstr "Opslaan"
    317385
    318 #: views/options.php:340
     386#: views/options.php:400
    319387msgid "Need style?"
    320388msgstr ""
    321389
    322 #: views/options.php:341
     390#: views/options.php:401
    323391msgid "Enjoy! Paste this CSS code into your Customizer and edit as you like"
    324392msgstr ""
  • estimated-delivery-for-woocommerce/tags/1.4.5/languages/estimated-delivery-for-woocommerce.pot

    r3082843 r3098233  
    33msgstr ""
    44"Project-Id-Version: \n"
    5 "POT-Creation-Date: 2024-05-07 23:32+0200\n"
     5"POT-Creation-Date: 2024-06-06 00:39+0200\n"
    66"PO-Revision-Date: 2019-08-28 20:35+0200\n"
    77"Last-Translator: \n"
     
    1212"Content-Transfer-Encoding: 8bit\n"
    1313"Plural-Forms: nplurals=2; plural=(n != 1);\n"
    14 "X-Generator: Poedit 3.4.2\n"
     14"X-Generator: Poedit 3.4.4\n"
    1515"X-Poedit-Basepath: ..\n"
    1616"X-Poedit-KeywordsList: __;_e\n"
    1717"X-Poedit-SearchPath-0: .\n"
    1818
    19 #: estimated-delivery-woocommerce.php:143
    20 #: estimated-delivery-woocommerce.php:203
    21 #: estimated-delivery-woocommerce.php:259 views/wcfm-metabox.php:21
     19#: estimated-delivery-woocommerce.php:151
     20#: estimated-delivery-woocommerce.php:211
     21#: estimated-delivery-woocommerce.php:267 views/wcfm-metabox.php:21
    2222msgid "Estimated Delivery"
    2323msgstr ""
    2424
    25 #: estimated-delivery-woocommerce.php:265
     25#: estimated-delivery-woocommerce.php:273
    2626msgid "Disabled, use shortcode"
    2727msgstr ""
    2828
    29 #: estimated-delivery-woocommerce.php:266
     29#: estimated-delivery-woocommerce.php:274
    3030msgid "After cart button"
    3131msgstr ""
    3232
    33 #: estimated-delivery-woocommerce.php:267
     33#: estimated-delivery-woocommerce.php:275
    3434msgid "Before cart button"
    3535msgstr ""
    3636
    37 #: estimated-delivery-woocommerce.php:268
     37#: estimated-delivery-woocommerce.php:276
    3838msgid "After product meta"
    3939msgstr ""
    4040
    41 #: estimated-delivery-woocommerce.php:269
     41#: estimated-delivery-woocommerce.php:277
    4242msgid "Before product summary"
    4343msgstr ""
    4444
    45 #: estimated-delivery-woocommerce.php:270
     45#: estimated-delivery-woocommerce.php:278
    4646msgid "After product summary"
    4747msgstr ""
    4848
    49 #: estimated-delivery-woocommerce.php:271
     49#: estimated-delivery-woocommerce.php:279
    5050msgid "Product Thumbnail (may not work)"
    5151msgstr ""
    5252
    53 #: estimated-delivery-woocommerce.php:456
     53#: estimated-delivery-woocommerce.php:472
    5454msgid " on"
    5555msgstr ""
    5656
    57 #: estimated-delivery-woocommerce.php:465
    58 #: estimated-delivery-woocommerce.php:486
     57#: estimated-delivery-woocommerce.php:481
     58#: estimated-delivery-woocommerce.php:502
    5959#, php-format
    6060msgid "this %s, %s"
    6161msgstr ""
    6262
    63 #: estimated-delivery-woocommerce.php:468
    64 #: estimated-delivery-woocommerce.php:489
     63#: estimated-delivery-woocommerce.php:484
     64#: estimated-delivery-woocommerce.php:505
    6565#, php-format
    6666msgid "the next %s, %s"
    6767msgstr ""
    6868
    69 #: estimated-delivery-woocommerce.php:496
     69#: estimated-delivery-woocommerce.php:514
    7070msgid "Estimated delivery"
    7171msgstr ""
    7272
    73 #: estimated-delivery-woocommerce.php:497
     73#: estimated-delivery-woocommerce.php:515
    7474#, php-format
    7575msgid "Estimated delivery%s %s"
    7676msgstr ""
    7777
    78 #: estimated-delivery-woocommerce.php:499
     78#: estimated-delivery-woocommerce.php:517
    7979msgid "Guaranteed delivery"
    8080msgstr ""
    8181
    82 #: estimated-delivery-woocommerce.php:500
     82#: estimated-delivery-woocommerce.php:518
    8383#, php-format
    8484msgid "Guaranteed delivery%s %s"
     
    8686
    8787#: views/dokanmarketplace-metabox.php:16 views/metabox-product.php:18
    88 #: views/options.php:230 views/wcfm-metabox.php:29
     88#: views/options.php:254 views/wcfm-metabox.php:29
    8989#: views/wcmarketplace-metabox.php:12
    9090msgid "Days for Delivery"
     
    9292
    9393#: views/dokanmarketplace-metabox.php:24 views/metabox-product.php:26
    94 #: views/options.php:238 views/wcfm-metabox.php:37
     94#: views/options.php:262 views/wcfm-metabox.php:37
    9595#: views/wcmarketplace-metabox.php:20
    9696msgid "Max Days for Delivery"
     
    100100#: views/dokanmarketplace-metabox.php:59 views/metabox-product.php:27
    101101#: views/metabox-product.php:44 views/metabox-product.php:61
    102 #: views/options.php:239 views/options.php:256 views/options.php:273
     102#: views/options.php:263 views/options.php:280 views/options.php:297
    103103#: views/wcfm-metabox.php:38 views/wcfm-metabox.php:55
    104104#: views/wcfm-metabox.php:72 views/wcmarketplace-metabox.php:21
     
    108108
    109109#: views/dokanmarketplace-metabox.php:33 views/metabox-product.php:35
    110 #: views/options.php:247 views/wcfm-metabox.php:46
     110#: views/options.php:271 views/wcfm-metabox.php:46
    111111#: views/wcmarketplace-metabox.php:29
    112112msgid "Days for Delivery out of stock"
     
    114114
    115115#: views/dokanmarketplace-metabox.php:41 views/metabox-product.php:43
    116 #: views/options.php:255 views/wcfm-metabox.php:54
     116#: views/options.php:279 views/wcfm-metabox.php:54
    117117#: views/wcmarketplace-metabox.php:37
    118118msgid "Max Days for Delivery out of stock"
     
    120120
    121121#: views/dokanmarketplace-metabox.php:50 views/metabox-product.php:52
    122 #: views/options.php:264 views/wcfm-metabox.php:63
     122#: views/options.php:288 views/wcfm-metabox.php:63
    123123#: views/wcmarketplace-metabox.php:46
    124124msgid "Days for Delivery Backorders"
     
    126126
    127127#: views/dokanmarketplace-metabox.php:58 views/metabox-product.php:60
    128 #: views/options.php:272 views/wcfm-metabox.php:71
     128#: views/options.php:296 views/wcfm-metabox.php:71
    129129#: views/wcmarketplace-metabox.php:54
    130130msgid "Max Days for Delivery Backorders"
     
    132132
    133133#: views/dokanmarketplace-metabox.php:67 views/metabox-product.php:69
    134 #: views/options.php:297 views/wcfm-metabox.php:80
     134#: views/options.php:321 views/wcfm-metabox.php:80
    135135#: views/wcmarketplace-metabox.php:63
    136136msgid "Estimated or Guaranteed"
     
    138138
    139139#: views/dokanmarketplace-metabox.php:68 views/metabox-product.php:70
    140 #: views/options.php:298 views/wcfm-metabox.php:81
     140#: views/options.php:322 views/wcfm-metabox.php:81
    141141#: views/wcmarketplace-metabox.php:64
    142142msgid "The message will change."
     
    144144
    145145#: views/dokanmarketplace-metabox.php:73 views/metabox-product.php:75
    146 #: views/options.php:303 views/wcfm-metabox.php:86
     146#: views/options.php:327 views/wcfm-metabox.php:86
    147147#: views/wcmarketplace-metabox.php:69
    148148msgid "Estimated"
     
    150150
    151151#: views/dokanmarketplace-metabox.php:74 views/metabox-product.php:76
    152 #: views/options.php:304 views/wcfm-metabox.php:87
     152#: views/options.php:328 views/wcfm-metabox.php:87
    153153#: views/wcmarketplace-metabox.php:70
    154154msgid "Guaranteed"
     
    156156
    157157#: views/dokanmarketplace-metabox.php:80 views/metabox-product.php:82
    158 #: views/options.php:310 views/wcfm-metabox.php:93
     158#: views/options.php:334 views/wcfm-metabox.php:93
    159159#: views/wcmarketplace-metabox.php:76
    160160msgid "Days disabled"
     
    162162
    163163#: views/dokanmarketplace-metabox.php:81 views/metabox-product.php:83
    164 #: views/options.php:311 views/wcfm-metabox.php:94
     164#: views/options.php:335 views/wcfm-metabox.php:94
    165165#: views/wcmarketplace-metabox.php:77
    166166msgid "Select the days that NO shipments are made."
     
    168168
    169169#: views/dokanmarketplace-metabox.php:86 views/metabox-product.php:88
    170 #: views/options.php:316 views/wcfm-metabox.php:99
     170#: views/options.php:340 views/wcfm-metabox.php:99
    171171#: views/wcmarketplace-metabox.php:82
    172172msgid "Monday"
     
    174174
    175175#: views/dokanmarketplace-metabox.php:91 views/metabox-product.php:93
    176 #: views/options.php:321 views/wcfm-metabox.php:104
     176#: views/options.php:345 views/wcfm-metabox.php:104
    177177#: views/wcmarketplace-metabox.php:87
    178178msgid "Tuesday"
     
    180180
    181181#: views/dokanmarketplace-metabox.php:96 views/metabox-product.php:98
    182 #: views/options.php:326 views/wcfm-metabox.php:109
     182#: views/options.php:350 views/wcfm-metabox.php:109
    183183#: views/wcmarketplace-metabox.php:92
    184184msgid "Wednesday"
     
    186186
    187187#: views/dokanmarketplace-metabox.php:101 views/metabox-product.php:103
    188 #: views/options.php:331 views/wcfm-metabox.php:114
     188#: views/options.php:355 views/wcfm-metabox.php:114
    189189#: views/wcmarketplace-metabox.php:97
    190190msgid "Thursday"
     
    192192
    193193#: views/dokanmarketplace-metabox.php:106 views/metabox-product.php:108
    194 #: views/options.php:336 views/wcfm-metabox.php:119
     194#: views/options.php:360 views/wcfm-metabox.php:119
    195195#: views/wcmarketplace-metabox.php:102
    196196msgid "Friday"
     
    198198
    199199#: views/dokanmarketplace-metabox.php:111 views/metabox-product.php:113
    200 #: views/options.php:341 views/wcfm-metabox.php:124
     200#: views/options.php:365 views/wcfm-metabox.php:124
    201201#: views/wcmarketplace-metabox.php:107
    202202msgid "Saturday"
     
    204204
    205205#: views/dokanmarketplace-metabox.php:116 views/metabox-product.php:118
    206 #: views/options.php:346 views/wcfm-metabox.php:129
     206#: views/options.php:370 views/wcfm-metabox.php:129
    207207#: views/wcmarketplace-metabox.php:112
    208208msgid "Sunday"
     
    213213msgstr ""
    214214
    215 #: views/options.php:84
     215#: views/options.php:91
    216216msgid "An error has occurred, try again."
    217217msgstr ""
    218218
    219 #: views/options.php:88
     219#: views/options.php:95
    220220msgid "Welcome to newsletter :)"
    221221msgstr ""
    222222
    223 #: views/options.php:131
     223#: views/options.php:138
    224224msgid "Estimated Delivery for Woocommerce"
    225225msgstr ""
    226226
    227 #: views/options.php:132
     227#: views/options.php:139
    228228msgid "Show the estimated or guaranteed delivery for the product"
    229229msgstr ""
    230230
    231 #: views/options.php:139
     231#: views/options.php:146
    232232msgid "Do you want to receive the latest?"
    233233msgstr ""
    234234
    235 #: views/options.php:140
     235#: views/options.php:147
    236236msgid "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. :)"
    237237msgstr ""
    238238
    239 #: views/options.php:142
     239#: views/options.php:149
    240240msgid "Required"
    241241msgstr ""
    242242
    243 #: views/options.php:150
     243#: views/options.php:157
    244244msgid "Submit"
    245245msgstr ""
    246246
    247 #: views/options.php:150
     247#: views/options.php:157
    248248msgid "Processing"
    249249msgstr ""
    250250
    251 #: views/options.php:163
     251#: views/options.php:170
    252252msgid "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."
    253253msgstr ""
    254254
    255 #: views/options.php:164
     255#: views/options.php:171
    256256msgid "Make a donation now to help development"
    257257msgstr ""
    258258
    259 #: views/options.php:173
     259#: views/options.php:180
    260260msgid "Use AJAX"
    261261msgstr ""
    262262
    263 #: views/options.php:174
     263#: views/options.php:181
    264264msgid "If your site use cache system, active this option."
    265265msgstr ""
    266266
    267 #: views/options.php:182
     267#: views/options.php:189
    268268msgid "Delivery same day"
    269269msgstr ""
    270270
    271 #: views/options.php:183
     271#: views/options.php:190
    272272msgid "When you set 0 in any option the estimated delivery is disabled, activate this option to allow setting 0 and displaying the estimated date."
    273273msgstr ""
    274274
    275 #: views/options.php:191
     275#: views/options.php:198
    276276msgid "Show date on order (Admin and Customer)"
    277277msgstr ""
    278278
    279 #: views/options.php:192
     279#: views/options.php:199
    280280msgid "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."
    281281msgstr ""
    282282
    283 #: views/options.php:200
     283#: views/options.php:207
    284284msgid "Show date Products Lists"
    285285msgstr ""
    286286
    287 #: views/options.php:201
     287#: views/options.php:208
    288288msgid "If you activate this option date show on each product on list, Store, Search, etc. Check style (CSS) for this, bottom on this page."
    289289msgstr ""
    290290
    291 #: views/options.php:210
     291#: views/options.php:216
     292msgid "Icon"
     293msgstr ""
     294
     295#: views/options.php:217
     296msgid "You can use always icon, fontawesome, only class name for example: fas fa-truck-moving"
     297msgstr ""
     298
     299#: views/options.php:225
     300msgid "¿Problem with Icon?"
     301msgstr ""
     302
     303#: views/options.php:226
     304msgid "Load FontAwesome Library."
     305msgstr ""
     306
     307#: views/options.php:234
    292308msgid "Maximum Time"
    293309msgstr ""
    294310
    295 #: views/options.php:212
     311#: views/options.php:236
    296312#, php-format
    297313msgid "Maximum time to consider an extra day of shipping (Server time) HH:mm now is %s"
    298314msgstr ""
    299315
    300 #: views/options.php:221
     316#: views/options.php:245
    301317msgid "Use Relative Dates"
    302318msgstr ""
    303319
    304 #: views/options.php:222
     320#: views/options.php:246
    305321msgid "Only work with current and next week"
    306322msgstr ""
    307323
    308 #: views/options.php:281
     324#: views/options.php:305
    309325msgid "Date Formats"
    310326msgstr ""
    311327
    312 #: views/options.php:282
     328#: views/options.php:306
    313329msgid "You can change date format use"
    314330msgstr ""
    315331
    316 #: views/options.php:285
     332#: views/options.php:309
    317333msgid "Same month and year, different day (00 - 00 MM, YYYY)"
    318334msgstr ""
    319335
    320 #: views/options.php:288
     336#: views/options.php:312
    321337msgid "Same year, different day and month (00 MM - 00 MM, YYYY)"
    322338msgstr ""
    323339
    324 #: views/options.php:291
     340#: views/options.php:315
    325341msgid "All different (00 MM YYYY - 00 MM YYYY)"
    326342msgstr ""
    327343
    328 #: views/options.php:351
     344#: views/options.php:375
    329345msgid "Position"
    330346msgstr ""
    331347
    332 #: views/options.php:365
     348#: views/options.php:389
    333349msgid "Holidays Dates"
    334350msgstr ""
    335351
    336 #: views/options.php:366
     352#: views/options.php:390
    337353msgid "Dates with comma separated, YYYY/MM/DD, on YEAR use XXXX for dynamic year. Example: XXXX/12/31"
    338354msgstr ""
    339355
    340 #: views/options.php:374
     356#: views/options.php:398
    341357msgid "Save"
    342358msgstr ""
    343359
    344 #: views/options.php:376
     360#: views/options.php:400
    345361msgid "Need style?"
    346362msgstr ""
    347363
    348 #: views/options.php:377
     364#: views/options.php:401
    349365msgid "Enjoy! Paste this CSS code into your Customizer and edit as you like"
    350366msgstr ""
  • estimated-delivery-for-woocommerce/tags/1.4.5/views/dokanmarketplace-metabox.php

    r2597266 r3098233  
    1313    <div class="row-padding">
    1414        <table class="form-table">
    15             <tr valign="top">
     15            <tr valign="top" class="dokan_edw_days_block">
    1616                <th scope="row"><?=__('Days for Delivery', 'estimated-delivery-for-woocommerce')?>
    1717                </th>
     
    2121                </td>
    2222            </tr>
    23             <tr valign="top">
     23            <tr valign="top" class="dokan_edw_max_days_block">
    2424                <th scope="row"><?=__('Max Days for Delivery', 'estimated-delivery-for-woocommerce')?>
    2525                <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p>
     
    3030                </td>
    3131            </tr>
    32             <tr valign="top">
     32            <tr valign="top" class="dokan_edw_days_out_stock_block">
    3333                <th scope="row"><?=__('Days for Delivery out of stock', 'estimated-delivery-for-woocommerce')?>
    3434                </th>
     
    3838                </td>
    3939            </tr>
    40             <tr valign="top">
     40            <tr valign="top" class="dokan_edw_max_days_out_stock_block">
    4141                <th scope="row"><?=__('Max Days for Delivery out of stock', 'estimated-delivery-for-woocommerce')?>
    4242                <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p>
     
    4747                </td>
    4848            </tr>
    49             <tr valign="top">
     49            <tr valign="top" class="dokan_edw_days_backorders_block">
    5050                <th scope="row"><?=__('Days for Delivery Backorders', 'estimated-delivery-for-woocommerce')?>
    5151                </th>
     
    5555                </td>
    5656            </tr>
    57             <tr valign="top">
     57            <tr valign="top" class="dokan_edw_max_days_backorders_block">
    5858                <th scope="row"><?=__('Max Days for Delivery Backorders', 'estimated-delivery-for-woocommerce')?>
    5959                <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p>
     
    6464                </td>
    6565            </tr>
    66             <tr valign="top">
     66            <tr valign="top" class="dokan_edw_mode_block">
    6767                <th scope="row"><?=__('Estimated or Guaranteed', 'estimated-delivery-for-woocommerce')?>
    6868                    <p class="description"><?=__('The message will change.','estimated-delivery-for-woocommerce')?></p>
     
    7777                </td>
    7878            </tr>
    79             <tr valign="top">
     79            <tr valign="top" class="dokan_edw_disabled_days_block">
    8080                <th scope="row"><?=__('Days disabled', 'estimated-delivery-for-woocommerce')?>
    8181                    <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  
    2323            update_option('_edw_max_hour', sanitize_text_field($_POST['_edw_max_hour']));
    2424            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
    2627            //Format dates
    2728            update_option('_edw_date_format_1_0', sanitize_textarea_field($_POST['_edw_date_format_1_0']));
     
    3738            }else{
    3839                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');
    3946            }
    4047
     
    206213                    </td>
    207214                </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>
    209233                <tr valign="top">
    210234                    <th scope="row"><?=__('Maximum Time', 'estimated-delivery-for-woocommerce')?>
  • estimated-delivery-for-woocommerce/tags/1.4.5/views/wcfm-metabox.php

    r2907221 r3098233  
    2626    <div class="row-padding">
    2727        <table class="form-table" style="text-align:left">
    28             <tr valign="top">
     28            <tr valign="top" class="wcfm_edw_days_block">
    2929                <th scope="row"><?=__('Days for Delivery', 'estimated-delivery-for-woocommerce')?>
    3030                </th>
     
    3434                </td>
    3535            </tr>
    36             <tr valign="top">
     36            <tr valign="top" class="wcfm_edw_max_days_block">
    3737                <th scope="row"><?=__('Max Days for Delivery', 'estimated-delivery-for-woocommerce')?>
    3838                <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p>
     
    4343                </td>
    4444            </tr>
    45             <tr valign="top">
     45            <tr valign="top" class="wcfm_edw_days_out_stock_block">
    4646                <th scope="row"><?=__('Days for Delivery out of stock', 'estimated-delivery-for-woocommerce')?>
    4747                </th>
     
    5151                </td>
    5252            </tr>
    53             <tr valign="top">
     53            <tr valign="top" class="wcfm_edw_max_days_out_stock_block">
    5454                <th scope="row"><?=__('Max Days for Delivery out of stock', 'estimated-delivery-for-woocommerce')?>
    5555                <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p>
     
    6060                </td>
    6161            </tr>
    62             <tr valign="top">
     62            <tr valign="top" class="wcfm_edw_days_backorders_block">
    6363                <th scope="row"><?=__('Days for Delivery Backorders', 'estimated-delivery-for-woocommerce')?>
    6464                </th>
     
    6868                </td>
    6969            </tr>
    70             <tr valign="top">
     70            <tr valign="top" class="wcfm_edw_max_days_backorders_block">
    7171                <th scope="row"><?=__('Max Days for Delivery Backorders', 'estimated-delivery-for-woocommerce')?>
    7272                <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p>
     
    7777                </td>
    7878            </tr>
    79             <tr valign="top">
     79            <tr valign="top" class="wcfm_edw_mode_block">
    8080                <th scope="row"><?=__('Estimated or Guaranteed', 'estimated-delivery-for-woocommerce')?>
    8181                    <p class="description"><?=__('The message will change.','estimated-delivery-for-woocommerce')?></p>
     
    9090                </td>
    9191            </tr>
    92             <tr valign="top">
     92            <tr valign="top" class="wcfm_edw_disabled_days_block">
    9393                <th scope="row"><?=__('Days disabled', 'estimated-delivery-for-woocommerce')?>
    9494                    <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  
    99    <div class="row-padding">
    1010        <table class="form-table">
    11             <tr valign="top">
     11            <tr valign="top" class="wcmp_edw_days_block">
    1212                <th scope="row"><?=__('Days for Delivery', 'estimated-delivery-for-woocommerce')?>
    1313                </th>
     
    1717                </td>
    1818            </tr>
    19             <tr valign="top">
     19            <tr valign="top" class="wcmp_edw_max_days_block">
    2020                <th scope="row"><?=__('Max Days for Delivery', 'estimated-delivery-for-woocommerce')?>
    2121                <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p>
     
    2626                </td>
    2727            </tr>
    28             <tr valign="top">
     28            <tr valign="top" class="wcmp_edw_days_out_stock_block">
    2929                <th scope="row"><?=__('Days for Delivery out of stock', 'estimated-delivery-for-woocommerce')?>
    3030                </th>
     
    3434                </td>
    3535            </tr>
    36             <tr valign="top">
     36            <tr valign="top" class="wcmp_edw_max_days_out_stock_block">
    3737                <th scope="row"><?=__('Max Days for Delivery out of stock', 'estimated-delivery-for-woocommerce')?>
    3838                <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p>
     
    4343                </td>
    4444            </tr>
    45             <tr valign="top">
     45            <tr valign="top" class="wcmp_edw_days_backorders_block">
    4646                <th scope="row"><?=__('Days for Delivery Backorders', 'estimated-delivery-for-woocommerce')?>
    4747                </th>
     
    5151                </td>
    5252            </tr>
    53             <tr valign="top">
     53            <tr valign="top" class="wcmp_edw_max_days_backorders_block">
    5454                <th scope="row"><?=__('Max Days for Delivery Backorders', 'estimated-delivery-for-woocommerce')?>
    5555                <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p>
     
    6060                </td>
    6161            </tr>
    62             <tr valign="top">
     62            <tr valign="top" class="wcmp_edw_mode_block">
    6363                <th scope="row"><?=__('Estimated or Guaranteed', 'estimated-delivery-for-woocommerce')?>
    6464                    <p class="description"><?=__('The message will change.','estimated-delivery-for-woocommerce')?></p>
     
    7373                </td>
    7474            </tr>
    75             <tr valign="top">
     75            <tr valign="top" class="wcmp_edw_disabled_days_block">
    7676                <th scope="row"><?=__('Days disabled', 'estimated-delivery-for-woocommerce')?>
    7777                    <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  
    44Tags: estimated delivery, delivery woocommerce, shipping date
    55Requires at least: 4.3
    6 Tested up to: 6.5.3
     6Tested up to: 6.5.4
    77Requires PHP: 5.0
    8 Stable tag: 1.4.3
    9 Licence: GPLv2 or later
     8Stable tag: 1.4.5
     9License: GPLv3
     10License URI: https://www.gnu.org/licenses/gpl-3.0.html
     11
    1012Show estimated / guaranteed delivery, simple and easy
    1113 
     
    4446== FAQ ==
    4547
     48= Report Issues =
    4649If you need support open a new ticket on [Github](https://github.com/DanielRiera/estimated-delivery-woocommerce/issues)
     50
     51= FontAwesome =
     52The plugin can add Fontawesome Library if is need
     53
     54= Icon config =
     55
     56
    4757
    4858 
    4959== 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.
    5065
    5166= 1.4.3 =
  • estimated-delivery-for-woocommerce/trunk/estimated-delivery-woocommerce.php

    r3084584 r3098233  
    66 * Author: Daniel Riera
    77 * Author URI: https://danielriera.net
    8  * Version: 1.4.3
     8 * Version: 1.4.5
    99 * Text Domain: estimated-delivery-for-woocommerce
    1010 * Domain Path: /languages
     
    1212 * WC tested up to: 8.8.3
    1313 * 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
    1617 */
    1718if(!defined('ABSPATH')) { exit; }
     
    2021define('EDW_POSITION_SHOW', get_option('_edw_position', 'woocommerce_after_add_to_cart_button'));
    2122define('EDW_USE_JS', get_option('_edw_cache', '0'));
    22 define('EDW_Version', '1.4.3');
     23define('EDW_Fontawesome', get_option('_edw_fontawesome', '0'));
     24define('EDW_Version', '1.4.5');
    2325
    2426require_once EDW_PATH . 'class.api.php';
     
    6264            add_action('end_wcfm_products_manage', array(&$this, 'edw_wcmf_content_metabox'), 100, 4);
    6365            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            }
    6470
    6571            //WCMP Compatiblity
     
    233239                }
    234240            }
    235             if(sanitize_text_field( $_POST['_edw_days']) == '') {
     241            if(isset($_POST['_edw_days']) and sanitize_text_field( $_POST['_edw_days']) == '') {
    236242                update_post_meta($post_id, '_edw_overwrite','0');
    237243            }
     
    295301            }
    296302            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__));
    297307        }
    298308       
     
    371381           
    372382            if($productActive == '1') {
    373                 $mode = get_post_meta($product_id,'_edw_mode', true);
     383                $mode = get_post_meta($product_id,'_edw_mode', true) || '1';
    374384            }else{
    375                 $mode = get_option('_edw_mode');
     385                $mode = get_option('_edw_mode', '1');
    376386            }
    377387           
     
    445455                }
    446456            }
     457
     458            //Prevent default
     459            $maxDays = intval($maxDays);
     460            $disabledDays = $disabledDays ?: [];
    447461
    448462            $today = wp_date('Y-m-d');
     
    494508               
    495509               
    496 
     510                $iconset = get_option('_edw_icon', '');
     511
     512                $icon_html = $iconset != '' ? '<i class="' . $iconset . '"></i> ' : '';
    497513                if($mode == "1") {
    498514                    $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>';
    500516                }else{
    501517                    $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>';
    503519                }
    504520
  • estimated-delivery-for-woocommerce/trunk/languages/estimated-delivery-for-woocommerce-es_ES.po

    r3082843 r3098233  
    22msgstr ""
    33"Project-Id-Version: edwoo\n"
    4 "POT-Creation-Date: 2024-05-07 23:32+0200\n"
    5 "PO-Revision-Date: 2024-05-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"
    66"Last-Translator: Daniel Riera <daniel@taxapro.com>\n"
    77"Language-Team: \n"
     
    1111"Content-Transfer-Encoding: 8bit\n"
    1212"Plural-Forms: nplurals=2; plural=(n != 1);\n"
    13 "X-Generator: Poedit 3.4.2\n"
     13"X-Generator: Poedit 3.4.4\n"
    1414"X-Poedit-Basepath: ..\n"
    1515"X-Poedit-KeywordsList: __;_e\n"
    1616"X-Poedit-SearchPath-0: .\n"
    1717
    18 #: estimated-delivery-woocommerce.php:143
    19 #: estimated-delivery-woocommerce.php:203
    20 #: estimated-delivery-woocommerce.php:259 views/wcfm-metabox.php:21
     18#: estimated-delivery-woocommerce.php:151
     19#: estimated-delivery-woocommerce.php:211
     20#: estimated-delivery-woocommerce.php:267 views/wcfm-metabox.php:21
    2121msgid "Estimated Delivery"
    2222msgstr "Entrega Estimada"
    2323
    24 #: estimated-delivery-woocommerce.php:265
     24#: estimated-delivery-woocommerce.php:273
    2525msgid "Disabled, use shortcode"
    2626msgstr "Deshabilitar, usaré shortcode"
    2727
    28 #: estimated-delivery-woocommerce.php:266
     28#: estimated-delivery-woocommerce.php:274
    2929msgid "After cart button"
    3030msgstr "Después del botón de añadir al carrito"
    3131
    32 #: estimated-delivery-woocommerce.php:267
     32#: estimated-delivery-woocommerce.php:275
    3333msgid "Before cart button"
    3434msgstr "Antes del botón de añadir al carrito"
    3535
    36 #: estimated-delivery-woocommerce.php:268
     36#: estimated-delivery-woocommerce.php:276
    3737msgid "After product meta"
    3838msgstr "Después de la meta del producto"
    3939
    40 #: estimated-delivery-woocommerce.php:269
     40#: estimated-delivery-woocommerce.php:277
    4141msgid "Before product summary"
    4242msgstr "Antes del resumen del producto"
    4343
    44 #: estimated-delivery-woocommerce.php:270
     44#: estimated-delivery-woocommerce.php:278
    4545msgid "After product summary"
    4646msgstr "Después del resumen del producto"
    4747
    48 #: estimated-delivery-woocommerce.php:271
     48#: estimated-delivery-woocommerce.php:279
    4949msgid "Product Thumbnail (may not work)"
    5050msgstr "Debajo de la galería (Puede no funcionar)"
    5151
    52 #: estimated-delivery-woocommerce.php:456
     52#: estimated-delivery-woocommerce.php:472
    5353msgid " on"
    5454msgstr " el"
    5555
    56 #: estimated-delivery-woocommerce.php:465
    57 #: estimated-delivery-woocommerce.php:486
     56#: estimated-delivery-woocommerce.php:481
     57#: estimated-delivery-woocommerce.php:502
    5858#, php-format
    5959msgid "this %s, %s"
    6060msgstr "este %s, %s"
    6161
    62 #: estimated-delivery-woocommerce.php:468
    63 #: estimated-delivery-woocommerce.php:489
     62#: estimated-delivery-woocommerce.php:484
     63#: estimated-delivery-woocommerce.php:505
    6464#, php-format
    6565msgid "the next %s, %s"
    6666msgstr "el próximo %s, %s"
    6767
    68 #: estimated-delivery-woocommerce.php:496
     68#: estimated-delivery-woocommerce.php:514
    6969msgid "Estimated delivery"
    7070msgstr "Entrega Estimada"
    7171
    72 #: estimated-delivery-woocommerce.php:497
     72#: estimated-delivery-woocommerce.php:515
    7373#, php-format
    7474msgid "Estimated delivery%s %s"
    7575msgstr "Entrega estimada%s %s"
    7676
    77 #: estimated-delivery-woocommerce.php:499
     77#: estimated-delivery-woocommerce.php:517
    7878msgid "Guaranteed delivery"
    7979msgstr "Entrega Garantizada"
    8080
    81 #: estimated-delivery-woocommerce.php:500
     81#: estimated-delivery-woocommerce.php:518
    8282#, php-format
    8383msgid "Guaranteed delivery%s %s"
     
    8585
    8686#: views/dokanmarketplace-metabox.php:16 views/metabox-product.php:18
    87 #: views/options.php:230 views/wcfm-metabox.php:29
     87#: views/options.php:254 views/wcfm-metabox.php:29
    8888#: views/wcmarketplace-metabox.php:12
    8989msgid "Days for Delivery"
     
    9191
    9292#: views/dokanmarketplace-metabox.php:24 views/metabox-product.php:26
    93 #: views/options.php:238 views/wcfm-metabox.php:37
     93#: views/options.php:262 views/wcfm-metabox.php:37
    9494#: views/wcmarketplace-metabox.php:20
    9595msgid "Max Days for Delivery"
     
    9999#: views/dokanmarketplace-metabox.php:59 views/metabox-product.php:27
    100100#: views/metabox-product.php:44 views/metabox-product.php:61
    101 #: views/options.php:239 views/options.php:256 views/options.php:273
     101#: views/options.php:263 views/options.php:280 views/options.php:297
    102102#: views/wcfm-metabox.php:38 views/wcfm-metabox.php:55
    103103#: views/wcfm-metabox.php:72 views/wcmarketplace-metabox.php:21
     
    108108
    109109#: views/dokanmarketplace-metabox.php:33 views/metabox-product.php:35
    110 #: views/options.php:247 views/wcfm-metabox.php:46
     110#: views/options.php:271 views/wcfm-metabox.php:46
    111111#: views/wcmarketplace-metabox.php:29
    112112msgid "Days for Delivery out of stock"
     
    114114
    115115#: views/dokanmarketplace-metabox.php:41 views/metabox-product.php:43
    116 #: views/options.php:255 views/wcfm-metabox.php:54
     116#: views/options.php:279 views/wcfm-metabox.php:54
    117117#: views/wcmarketplace-metabox.php:37
    118118msgid "Max Days for Delivery out of stock"
     
    120120
    121121#: views/dokanmarketplace-metabox.php:50 views/metabox-product.php:52
    122 #: views/options.php:264 views/wcfm-metabox.php:63
     122#: views/options.php:288 views/wcfm-metabox.php:63
    123123#: views/wcmarketplace-metabox.php:46
    124124msgid "Days for Delivery Backorders"
     
    126126
    127127#: views/dokanmarketplace-metabox.php:58 views/metabox-product.php:60
    128 #: views/options.php:272 views/wcfm-metabox.php:71
     128#: views/options.php:296 views/wcfm-metabox.php:71
    129129#: views/wcmarketplace-metabox.php:54
    130130msgid "Max Days for Delivery Backorders"
     
    132132
    133133#: views/dokanmarketplace-metabox.php:67 views/metabox-product.php:69
    134 #: views/options.php:297 views/wcfm-metabox.php:80
     134#: views/options.php:321 views/wcfm-metabox.php:80
    135135#: views/wcmarketplace-metabox.php:63
    136136msgid "Estimated or Guaranteed"
     
    138138
    139139#: views/dokanmarketplace-metabox.php:68 views/metabox-product.php:70
    140 #: views/options.php:298 views/wcfm-metabox.php:81
     140#: views/options.php:322 views/wcfm-metabox.php:81
    141141#: views/wcmarketplace-metabox.php:64
    142142msgid "The message will change."
     
    144144
    145145#: views/dokanmarketplace-metabox.php:73 views/metabox-product.php:75
    146 #: views/options.php:303 views/wcfm-metabox.php:86
     146#: views/options.php:327 views/wcfm-metabox.php:86
    147147#: views/wcmarketplace-metabox.php:69
    148148msgid "Estimated"
     
    150150
    151151#: views/dokanmarketplace-metabox.php:74 views/metabox-product.php:76
    152 #: views/options.php:304 views/wcfm-metabox.php:87
     152#: views/options.php:328 views/wcfm-metabox.php:87
    153153#: views/wcmarketplace-metabox.php:70
    154154msgid "Guaranteed"
     
    156156
    157157#: views/dokanmarketplace-metabox.php:80 views/metabox-product.php:82
    158 #: views/options.php:310 views/wcfm-metabox.php:93
     158#: views/options.php:334 views/wcfm-metabox.php:93
    159159#: views/wcmarketplace-metabox.php:76
    160160msgid "Days disabled"
     
    162162
    163163#: views/dokanmarketplace-metabox.php:81 views/metabox-product.php:83
    164 #: views/options.php:311 views/wcfm-metabox.php:94
     164#: views/options.php:335 views/wcfm-metabox.php:94
    165165#: views/wcmarketplace-metabox.php:77
    166166msgid "Select the days that NO shipments are made."
     
    168168
    169169#: views/dokanmarketplace-metabox.php:86 views/metabox-product.php:88
    170 #: views/options.php:316 views/wcfm-metabox.php:99
     170#: views/options.php:340 views/wcfm-metabox.php:99
    171171#: views/wcmarketplace-metabox.php:82
    172172msgid "Monday"
     
    174174
    175175#: views/dokanmarketplace-metabox.php:91 views/metabox-product.php:93
    176 #: views/options.php:321 views/wcfm-metabox.php:104
     176#: views/options.php:345 views/wcfm-metabox.php:104
    177177#: views/wcmarketplace-metabox.php:87
    178178msgid "Tuesday"
     
    180180
    181181#: views/dokanmarketplace-metabox.php:96 views/metabox-product.php:98
    182 #: views/options.php:326 views/wcfm-metabox.php:109
     182#: views/options.php:350 views/wcfm-metabox.php:109
    183183#: views/wcmarketplace-metabox.php:92
    184184msgid "Wednesday"
     
    186186
    187187#: views/dokanmarketplace-metabox.php:101 views/metabox-product.php:103
    188 #: views/options.php:331 views/wcfm-metabox.php:114
     188#: views/options.php:355 views/wcfm-metabox.php:114
    189189#: views/wcmarketplace-metabox.php:97
    190190msgid "Thursday"
     
    192192
    193193#: views/dokanmarketplace-metabox.php:106 views/metabox-product.php:108
    194 #: views/options.php:336 views/wcfm-metabox.php:119
     194#: views/options.php:360 views/wcfm-metabox.php:119
    195195#: views/wcmarketplace-metabox.php:102
    196196msgid "Friday"
     
    198198
    199199#: views/dokanmarketplace-metabox.php:111 views/metabox-product.php:113
    200 #: views/options.php:341 views/wcfm-metabox.php:124
     200#: views/options.php:365 views/wcfm-metabox.php:124
    201201#: views/wcmarketplace-metabox.php:107
    202202msgid "Saturday"
     
    204204
    205205#: views/dokanmarketplace-metabox.php:116 views/metabox-product.php:118
    206 #: views/options.php:346 views/wcfm-metabox.php:129
     206#: views/options.php:370 views/wcfm-metabox.php:129
    207207#: views/wcmarketplace-metabox.php:112
    208208msgid "Sunday"
     
    213213msgstr "Sobreescribir configuración"
    214214
    215 #: views/options.php:84
     215#: views/options.php:91
    216216msgid "An error has occurred, try again."
    217217msgstr "Ha ocurrido un error, pruebe de nuevo."
    218218
    219 #: views/options.php:88
     219#: views/options.php:95
    220220msgid "Welcome to newsletter :)"
    221221msgstr "Bienvenid@ al newsletter"
    222222
    223 #: views/options.php:131
     223#: views/options.php:138
    224224msgid "Estimated Delivery for Woocommerce"
    225225msgstr "Entrega Estimada para WooCommerce"
    226226
    227 #: views/options.php:132
     227#: views/options.php:139
    228228msgid "Show the estimated or guaranteed delivery for the product"
    229229msgstr "Muestra la entrega estimada o garantizada por cada producto"
    230230
    231 #: views/options.php:139
     231#: views/options.php:146
    232232msgid "Do you want to receive the latest?"
    233233msgstr "¿Quieres recibir lo último?"
    234234
    235 #: views/options.php:140
     235#: views/options.php:147
    236236msgid ""
    237237"Thank you very much for using our plugin, if you want to receive the latest "
     
    241241"ofertas, promociones, descuentos...Inscríbete en nuestro boletín. :)"
    242242
    243 #: views/options.php:142
     243#: views/options.php:149
    244244msgid "Required"
    245245msgstr "Requerido"
    246246
    247 #: views/options.php:150
     247#: views/options.php:157
    248248msgid "Submit"
    249249msgstr "Enviar"
    250250
    251 #: views/options.php:150
     251#: views/options.php:157
    252252msgid "Processing"
    253253msgstr "Procesando"
    254254
    255 #: views/options.php:163
     255#: views/options.php:170
    256256msgid ""
    257257"Developing this plugin takes time, so if you like it, we invite you to make "
     
    263263"actualizando, añadiendo novedades, esto será siempre gratis."
    264264
    265 #: views/options.php:164
     265#: views/options.php:171
    266266msgid "Make a donation now to help development"
    267267msgstr "Realiza una donación ahora par ayudar al desarrollo"
    268268
    269 #: views/options.php:173
     269#: views/options.php:180
    270270msgid "Use AJAX"
    271271msgstr "Usar AJAX"
    272272
    273 #: views/options.php:174
     273#: views/options.php:181
    274274msgid "If your site use cache system, active this option."
    275275msgstr "Si tu sitio usa cache, activa esta opción."
    276276
    277 #: views/options.php:182
     277#: views/options.php:189
    278278msgid "Delivery same day"
    279279msgstr "Envío en el mismo día"
    280280
    281 #: views/options.php:183
     281#: views/options.php:190
    282282msgid ""
    283283"When you set 0 in any option the estimated delivery is disabled, activate "
     
    285285msgstr ""
    286286"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:191
     287"esta opción para permitir establecer en 0 y mostrar la fecha."
     288
     289#: views/options.php:198
    290290msgid "Show date on order (Admin and Customer)"
    291291msgstr "Mostrar fecha en pedidos (Administrador y Clientes)"
    292292
    293 #: views/options.php:192
     293#: views/options.php:199
    294294msgid ""
    295295"If you activate this option, the date will be stored with the order, the "
     
    299299"ver la fecha en cada producto del pedido."
    300300
    301 #: views/options.php:200
     301#: views/options.php:207
    302302msgid "Show date Products Lists"
    303303msgstr "Mostrar fecha en listado de productos"
    304304
    305 #: views/options.php:201
     305#: views/options.php:208
    306306msgid ""
    307307"If you activate this option date show on each product on list, Store, "
     
    312312"página."
    313313
    314 #: views/options.php:210
     314#: views/options.php:216
     315msgid "Icon"
     316msgstr "Icono"
     317
     318#: views/options.php:217
     319msgid ""
     320"You can use always icon, fontawesome, only class name for example: fas fa-"
     321"truck-moving"
     322msgstr ""
     323"Puedes usar un icono, FontAwesome, use la clase del icono por ejemplo: fas "
     324"fa-truck-moving"
     325
     326#: views/options.php:225
     327msgid "¿Problem with Icon?"
     328msgstr "¿Problema con el icono?"
     329
     330#: views/options.php:226
     331msgid "Load FontAwesome Library."
     332msgstr "Cargue la librería FontAwesome."
     333
     334#: views/options.php:234
    315335msgid "Maximum Time"
    316336msgstr "Tiempo máximo"
    317337
    318 #: views/options.php:212
     338#: views/options.php:236
    319339#, php-format
    320340msgid ""
     
    325345"HH:mm ahora son %s"
    326346
    327 #: views/options.php:221
     347#: views/options.php:245
    328348msgid "Use Relative Dates"
    329349msgstr "Usar fechas relativas"
    330350
    331 #: views/options.php:222
     351#: views/options.php:246
    332352msgid "Only work with current and next week"
    333353msgstr "Solo funciona con la semana actual y la próxima"
    334354
    335 #: views/options.php:281
     355#: views/options.php:305
    336356msgid "Date Formats"
    337357msgstr "Formato de fechas"
    338358
    339 #: views/options.php:282
     359#: views/options.php:306
    340360msgid "You can change date format use"
    341361msgstr "Puedes cambiar el formato de fecha que usa el plugin"
    342362
    343 #: views/options.php:285
     363#: views/options.php:309
    344364msgid "Same month and year, different day (00 - 00 MM, YYYY)"
    345365msgstr "Mismo mes y año, diferente día (00 - 00 MM, YYYY)"
    346366
    347 #: views/options.php:288
     367#: views/options.php:312
    348368msgid "Same year, different day and month (00 MM - 00 MM, YYYY)"
    349369msgstr "Mismo año, diferente día y mes (00 MM - 00 MM, YYYY)"
    350370
    351 #: views/options.php:291
     371#: views/options.php:315
    352372msgid "All different (00 MM YYYY - 00 MM YYYY)"
    353373msgstr "Todo diferente (00 MM YYYY - 00 MM YYYY)"
    354374
    355 #: views/options.php:351
     375#: views/options.php:375
    356376msgid "Position"
    357377msgstr "Posición"
    358378
    359 #: views/options.php:365
     379#: views/options.php:389
    360380msgid "Holidays Dates"
    361381msgstr "Fecha de Vacaciones"
    362382
    363 #: views/options.php:366
     383#: views/options.php:390
    364384msgid ""
    365385"Dates with comma separated, YYYY/MM/DD, on YEAR use XXXX for dynamic year. "
     
    369389"ejemplo: XXXX/12/31"
    370390
    371 #: views/options.php:374
     391#: views/options.php:398
    372392msgid "Save"
    373393msgstr "Guardar"
    374394
    375 #: views/options.php:376
     395#: views/options.php:400
    376396msgid "Need style?"
    377397msgstr "Necesitas dar estilos?"
    378398
    379 #: views/options.php:377
     399#: views/options.php:401
    380400msgid "Enjoy! Paste this CSS code into your Customizer and edit as you like"
    381401msgstr ""
  • estimated-delivery-for-woocommerce/trunk/languages/estimated-delivery-for-woocommerce-fr_FR.po

    r2906408 r3098233  
    22msgstr ""
    33"Project-Id-Version: \n"
    4 "POT-Creation-Date: 2023-05-01 02:01+0200\n"
    5 "PO-Revision-Date: 2023-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"
    66"Last-Translator: \n"
    77"Language-Team: \n"
     
    1111"Content-Transfer-Encoding: 8bit\n"
    1212"Plural-Forms: nplurals=2; plural=(n > 1);\n"
    13 "X-Generator: Poedit 3.2.2\n"
     13"X-Generator: Poedit 3.4.4\n"
    1414"X-Poedit-Basepath: ..\n"
    1515"X-Poedit-KeywordsList: __;_e\n"
    1616"X-Poedit-SearchPath-0: .\n"
    1717
    18 #: estimated-delivery-woocommerce.php:101
    19 #: estimated-delivery-woocommerce.php:156
    20 #: estimated-delivery-woocommerce.php:210
     18#: estimated-delivery-woocommerce.php:151
     19#: estimated-delivery-woocommerce.php:211
     20#: estimated-delivery-woocommerce.php:267 views/wcfm-metabox.php:21
    2121msgid "Estimated Delivery"
    2222msgstr "Livraison estimée"
    2323
    24 #: estimated-delivery-woocommerce.php:216
     24#: estimated-delivery-woocommerce.php:273
    2525msgid "Disabled, use shortcode"
    2626msgstr "Désactivé, utilisez le shortcode"
    2727
    28 #: estimated-delivery-woocommerce.php:217
     28#: estimated-delivery-woocommerce.php:274
    2929msgid "After cart button"
    3030msgstr "Bouton Après le panier"
    3131
    32 #: estimated-delivery-woocommerce.php:218
     32#: estimated-delivery-woocommerce.php:275
    3333msgid "Before cart button"
    3434msgstr "Bouton Avant le panier"
    3535
    36 #: estimated-delivery-woocommerce.php:219
     36#: estimated-delivery-woocommerce.php:276
    3737msgid "After product meta"
    3838msgstr "Méta produit après"
    3939
    40 #: estimated-delivery-woocommerce.php:220
     40#: estimated-delivery-woocommerce.php:277
    4141msgid "Before product summary"
    4242msgstr "Avant le résumé du produit"
    4343
    44 #: estimated-delivery-woocommerce.php:221
     44#: estimated-delivery-woocommerce.php:278
    4545msgid "After product summary"
    4646msgstr "Après le résumé du produit"
    4747
    48 #: estimated-delivery-woocommerce.php:222
     48#: estimated-delivery-woocommerce.php:279
    4949msgid "Product Thumbnail (may not work)"
    5050msgstr "Vignette du produit (peut ne pas fonctionner)"
    5151
    52 #: estimated-delivery-woocommerce.php:381
     52#: estimated-delivery-woocommerce.php:472
    5353msgid " on"
    5454msgstr " on"
    5555
    56 #: estimated-delivery-woocommerce.php:390
    57 #: estimated-delivery-woocommerce.php:411
     56#: estimated-delivery-woocommerce.php:481
     57#: estimated-delivery-woocommerce.php:502
    5858#, php-format
    5959msgid "this %s, %s"
    6060msgstr "ce %s, %s"
    6161
    62 #: estimated-delivery-woocommerce.php:393
    63 #: estimated-delivery-woocommerce.php:414
     62#: estimated-delivery-woocommerce.php:484
     63#: estimated-delivery-woocommerce.php:505
    6464#, php-format
    6565msgid "the next %s, %s"
    6666msgstr "les prochains %s, %s"
    6767
    68 #: estimated-delivery-woocommerce.php:421
     68#: estimated-delivery-woocommerce.php:514
    6969msgid "Estimated delivery"
    7070msgstr "Livraison estimée"
    7171
    72 #: estimated-delivery-woocommerce.php:422
     72#: estimated-delivery-woocommerce.php:515
    7373#, php-format
    7474msgid "Estimated delivery%s %s"
    7575msgstr "Livraison estimée%s %s"
    7676
    77 #: estimated-delivery-woocommerce.php:424
     77#: estimated-delivery-woocommerce.php:517
    7878msgid "Guaranteed delivery"
    7979msgstr "Livraison garantie"
    8080
    81 #: estimated-delivery-woocommerce.php:425
     81#: estimated-delivery-woocommerce.php:518
    8282#, php-format
    8383msgid "Guaranteed delivery%s %s"
     
    8585
    8686#: 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
    8889msgid "Days for Delivery"
    8990msgstr "Jours de livraison"
    9091
    9192#: 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
    9395msgid "Max Days for Delivery"
    9496msgstr "Jours maximum pour la livraison"
     
    9799#: views/dokanmarketplace-metabox.php:59 views/metabox-product.php:27
    98100#: 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
    102105msgid "Set 0 for disable. If this set more than 0 days, it will show a range."
    103106msgstr ""
     
    106109
    107110#: 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
    109113msgid "Days for Delivery out of stock"
    110114msgstr "Jours de livraison en rupture de stock"
    111115
    112116#: 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
    114119msgid "Max Days for Delivery out of stock"
    115120msgstr "Jours maximum de livraison en rupture de stock"
    116121
    117122#: 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
    119125#, fuzzy
    120126#| msgid "Days for Delivery"
     
    123129
    124130#: 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
    126133#, fuzzy
    127134#| msgid "Max Days for Delivery"
     
    130137
    131138#: 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
    133141msgid "Estimated or Guaranteed"
    134142msgstr "Estimé ou garanti"
    135143
    136144#: 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
    138147msgid "The message will change."
    139148msgstr "Le message va changer."
    140149
    141150#: 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
    143153msgid "Estimated"
    144154msgstr "Estimé"
    145155
    146156#: 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
    148159msgid "Guaranteed"
    149160msgstr "Garanti"
    150161
    151162#: 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
    153165msgid "Days disabled"
    154166msgstr "Jours désactivés"
    155167
    156168#: 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
    158171msgid "Select the days that NO shipments are made."
    159172msgstr "Sélectionnez les jours où AUCUNE expédition n'est effectuée."
    160173
    161174#: 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
    163177msgid "Monday"
    164178msgstr "Lundi"
    165179
    166180#: 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
    168183msgid "Tuesday"
    169184msgstr "Mardi"
    170185
    171186#: 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
    173189msgid "Wednesday"
    174190msgstr "Mercredi"
    175191
    176192#: 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
    178195msgid "Thursday"
    179196msgstr "Jeudi"
    180197
    181198#: 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
    183201msgid "Friday"
    184202msgstr "Vendredi"
    185203
    186204#: 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
    188207msgid "Saturday"
    189208msgstr "Samedi"
    190209
    191210#: 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
    193213msgid "Sunday"
    194214msgstr "Dimanche"
     
    198218msgstr "Ecraser les paramètres généraux"
    199219
    200 #: views/options.php:73
     220#: views/options.php:91
    201221msgid "An error has occurred, try again."
    202222msgstr "Une erreur s'est produite, réessayez."
    203223
    204 #: views/options.php:77
     224#: views/options.php:95
    205225msgid "Welcome to newsletter :)"
    206226msgstr "Bienvenue dans la newsletter :)"
    207227
    208 #: views/options.php:120
     228#: views/options.php:138
    209229msgid "Estimated Delivery for Woocommerce"
    210230msgstr "Estimation du délai de livraison pour Woocommerce"
    211231
    212 #: views/options.php:121
     232#: views/options.php:139
    213233msgid "Show the estimated or guaranteed delivery for the product"
    214234msgstr "Afficher la livraison estimée ou garantie pour le produit"
    215235
    216 #: views/options.php:128
     236#: views/options.php:146
    217237msgid "Do you want to receive the latest?"
    218238msgstr "Voulez-vous recevoir les dernières informations ?"
    219239
    220 #: views/options.php:129
     240#: views/options.php:147
    221241msgid ""
    222242"Thank you very much for using our plugin, if you want to receive the latest "
     
    227247"notre newsletter. :)"
    228248
    229 #: views/options.php:131
     249#: views/options.php:149
    230250msgid "Required"
    231251msgstr "Requis"
    232252
    233 #: views/options.php:139
     253#: views/options.php:157
    234254msgid "Submit"
    235255msgstr "Soumettre"
    236256
    237 #: views/options.php:139
     257#: views/options.php:157
    238258msgid "Processing"
    239259msgstr ""
    240260
    241 #: views/options.php:152
     261#: views/options.php:170
    242262msgid ""
    243263"Developing this plugin takes time, so if you like it, we invite you to make "
     
    249269"et mettre à jour, ajouter des nouvelles, ce sera toujours gratuit."
    250270
    251 #: views/options.php:153
     271#: views/options.php:171
    252272msgid "Make a donation now to help development"
    253273msgstr "Faites un don maintenant pour aider au développement"
    254274
    255 #: views/options.php:162
     275#: views/options.php:180
    256276msgid "Use AJAX"
    257277msgstr "Utiliser AJAX"
    258278
    259 #: views/options.php:163
     279#: views/options.php:181
    260280msgid "If your site use cache system, active this option."
    261281msgstr "Si votre site utilise un système de cache, activez cette option."
    262282
    263 #: views/options.php:171
     283#: views/options.php:189
    264284msgid "Delivery same day"
    265285msgstr ""
    266286
    267 #: views/options.php:172
     287#: views/options.php:190
    268288msgid ""
    269289"When you set 0 in any option the estimated delivery is disabled, activate "
     
    271291msgstr ""
    272292
    273 #: views/options.php:180
     293#: views/options.php:198
    274294msgid "Show date on order (Admin and Customer)"
    275295msgstr ""
    276296
    277 #: views/options.php:181
     297#: views/options.php:199
    278298msgid ""
    279299"If you activate this option, the date will be stored with the order, the "
     
    281301msgstr ""
    282302
    283 #: views/options.php:189
     303#: views/options.php:207
    284304msgid "Show date Products Lists"
    285305msgstr ""
    286306
    287 #: views/options.php:190
     307#: views/options.php:208
    288308msgid ""
    289309"If you activate this option date show on each product on list, Store, "
     
    291311msgstr ""
    292312
    293 #: views/options.php:199
     313#: views/options.php:216
     314msgid "Icon"
     315msgstr ""
     316
     317#: views/options.php:217
     318msgid ""
     319"You can use always icon, fontawesome, only class name for example: fas fa-"
     320"truck-moving"
     321msgstr ""
     322
     323#: views/options.php:225
     324msgid "¿Problem with Icon?"
     325msgstr ""
     326
     327#: views/options.php:226
     328msgid "Load FontAwesome Library."
     329msgstr ""
     330
     331#: views/options.php:234
    294332msgid "Maximum Time"
    295333msgstr ""
    296334
    297 #: views/options.php:201
     335#: views/options.php:236
    298336#, php-format
    299337msgid ""
     
    302340msgstr ""
    303341
    304 #: views/options.php:210
     342#: views/options.php:245
    305343msgid "Use Relative Dates"
    306344msgstr "Utiliser les dates relatives"
    307345
    308 #: views/options.php:211
     346#: views/options.php:246
    309347msgid "Only work with current and next week"
    310348msgstr "Ne fonctionne qu'avec la semaine en cours et la semaine prochaine"
    311349
    312 #: views/options.php:324
     350#: views/options.php:305
     351msgid "Date Formats"
     352msgstr ""
     353
     354#: views/options.php:306
     355msgid "You can change date format use"
     356msgstr ""
     357
     358#: views/options.php:309
     359msgid "Same month and year, different day (00 - 00 MM, YYYY)"
     360msgstr ""
     361
     362#: views/options.php:312
     363msgid "Same year, different day and month (00 MM - 00 MM, YYYY)"
     364msgstr ""
     365
     366#: views/options.php:315
     367msgid "All different (00 MM YYYY - 00 MM YYYY)"
     368msgstr ""
     369
     370#: views/options.php:375
    313371msgid "Position"
    314372msgstr "Position"
    315373
    316 #: views/options.php:338
     374#: views/options.php:389
     375msgid "Holidays Dates"
     376msgstr ""
     377
     378#: views/options.php:390
     379msgid ""
     380"Dates with comma separated, YYYY/MM/DD, on YEAR use XXXX for dynamic year. "
     381"Example: XXXX/12/31"
     382msgstr ""
     383
     384#: views/options.php:398
    317385msgid "Save"
    318386msgstr "Enregistrer"
    319387
    320 #: views/options.php:340
     388#: views/options.php:400
    321389msgid "Need style?"
    322390msgstr "Besoin de style ?"
    323391
    324 #: views/options.php:341
     392#: views/options.php:401
    325393msgid "Enjoy! Paste this CSS code into your Customizer and edit as you like"
    326394msgstr ""
  • estimated-delivery-for-woocommerce/trunk/languages/estimated-delivery-for-woocommerce-it_IT.po

    r2906408 r3098233  
    55"Project-Id-Version: Plugins - Estimated Delivery for Woocomerce - Stable "
    66"(latest release)\n"
    7 "POT-Creation-Date: 2023-05-01 02:01+0200\n"
    8 "PO-Revision-Date: 2023-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"
    99"Last-Translator: \n"
    1010"Language-Team: \n"
     
    1414"Content-Transfer-Encoding: 8bit\n"
    1515"Plural-Forms: nplurals=2; plural=n != 1;\n"
    16 "X-Generator: Poedit 3.2.2\n"
    17 
    18 #: estimated-delivery-woocommerce.php:101
    19 #: estimated-delivery-woocommerce.php:156
    20 #: estimated-delivery-woocommerce.php:210
     16"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
    2121msgid "Estimated Delivery"
    2222msgstr ""
    2323
    24 #: estimated-delivery-woocommerce.php:216
     24#: estimated-delivery-woocommerce.php:273
    2525msgid "Disabled, use shortcode"
    2626msgstr ""
    2727
    28 #: estimated-delivery-woocommerce.php:217
     28#: estimated-delivery-woocommerce.php:274
    2929msgid "After cart button"
    3030msgstr ""
    3131
    32 #: estimated-delivery-woocommerce.php:218
     32#: estimated-delivery-woocommerce.php:275
    3333msgid "Before cart button"
    3434msgstr ""
    3535
    36 #: estimated-delivery-woocommerce.php:219
     36#: estimated-delivery-woocommerce.php:276
    3737msgid "After product meta"
    3838msgstr ""
    3939
    40 #: estimated-delivery-woocommerce.php:220
     40#: estimated-delivery-woocommerce.php:277
    4141msgid "Before product summary"
    4242msgstr ""
    4343
    44 #: estimated-delivery-woocommerce.php:221
     44#: estimated-delivery-woocommerce.php:278
    4545msgid "After product summary"
    4646msgstr ""
    4747
    48 #: estimated-delivery-woocommerce.php:222
     48#: estimated-delivery-woocommerce.php:279
    4949msgid "Product Thumbnail (may not work)"
    5050msgstr ""
    5151
    52 #: estimated-delivery-woocommerce.php:381
     52#: estimated-delivery-woocommerce.php:472
    5353msgid " on"
    5454msgstr ""
    5555
    56 #: estimated-delivery-woocommerce.php:390
    57 #: estimated-delivery-woocommerce.php:411
     56#: estimated-delivery-woocommerce.php:481
     57#: estimated-delivery-woocommerce.php:502
    5858#, php-format
    5959msgid "this %s, %s"
    6060msgstr ""
    6161
    62 #: estimated-delivery-woocommerce.php:393
    63 #: estimated-delivery-woocommerce.php:414
     62#: estimated-delivery-woocommerce.php:484
     63#: estimated-delivery-woocommerce.php:505
    6464#, php-format
    6565msgid "the next %s, %s"
    6666msgstr ""
    6767
    68 #: estimated-delivery-woocommerce.php:421
     68#: estimated-delivery-woocommerce.php:514
    6969msgid "Estimated delivery"
    7070msgstr ""
    7171
    72 #: estimated-delivery-woocommerce.php:422
     72#: estimated-delivery-woocommerce.php:515
    7373#, php-format
    7474msgid "Estimated delivery%s %s"
    7575msgstr ""
    7676
    77 #: estimated-delivery-woocommerce.php:424
     77#: estimated-delivery-woocommerce.php:517
    7878msgid "Guaranteed delivery"
    7979msgstr ""
    8080
    81 #: estimated-delivery-woocommerce.php:425
     81#: estimated-delivery-woocommerce.php:518
    8282#, php-format
    8383msgid "Guaranteed delivery%s %s"
     
    8585
    8686#: 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
    8889msgid "Days for Delivery"
    8990msgstr ""
    9091
    9192#: 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
    9395msgid "Max Days for Delivery"
    9496msgstr ""
     
    9799#: views/dokanmarketplace-metabox.php:59 views/metabox-product.php:27
    98100#: 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
    102105msgid "Set 0 for disable. If this set more than 0 days, it will show a range."
    103106msgstr ""
    104107
    105108#: 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
    107111msgid "Days for Delivery out of stock"
    108112msgstr ""
    109113
    110114#: 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
    112117msgid "Max Days for Delivery out of stock"
    113118msgstr ""
    114119
    115120#: 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
    117123msgid "Days for Delivery Backorders"
    118124msgstr ""
    119125
    120126#: 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
    122129msgid "Max Days for Delivery Backorders"
    123130msgstr ""
    124131
    125132#: 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
    127135msgid "Estimated or Guaranteed"
    128136msgstr ""
    129137
    130138#: 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
    132141msgid "The message will change."
    133142msgstr ""
    134143
    135144#: 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
    137147msgid "Estimated"
    138148msgstr ""
    139149
    140150#: 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
    142153msgid "Guaranteed"
    143154msgstr ""
    144155
    145156#: 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
    147159msgid "Days disabled"
    148160msgstr ""
    149161
    150162#: 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
    152165msgid "Select the days that NO shipments are made."
    153166msgstr ""
    154167
    155168#: 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
    157171msgid "Monday"
    158172msgstr ""
    159173
    160174#: 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
    162177msgid "Tuesday"
    163178msgstr ""
    164179
    165180#: 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
    167183msgid "Wednesday"
    168184msgstr ""
    169185
    170186#: 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
    172189msgid "Thursday"
    173190msgstr ""
    174191
    175192#: 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
    177195msgid "Friday"
    178196msgstr ""
    179197
    180198#: 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
    182201msgid "Saturday"
    183202msgstr ""
    184203
    185204#: 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
    187207msgid "Sunday"
    188208msgstr ""
     
    192212msgstr ""
    193213
    194 #: views/options.php:73
     214#: views/options.php:91
    195215msgid "An error has occurred, try again."
    196216msgstr ""
    197217
    198 #: views/options.php:77
     218#: views/options.php:95
    199219msgid "Welcome to newsletter :)"
    200220msgstr ""
    201221
    202 #: views/options.php:120
     222#: views/options.php:138
    203223msgid "Estimated Delivery for Woocommerce"
    204224msgstr ""
    205225
    206 #: views/options.php:121
     226#: views/options.php:139
    207227msgid "Show the estimated or guaranteed delivery for the product"
    208228msgstr ""
    209229
    210 #: views/options.php:128
     230#: views/options.php:146
    211231msgid "Do you want to receive the latest?"
    212232msgstr ""
    213233
    214 #: views/options.php:129
     234#: views/options.php:147
    215235msgid ""
    216236"Thank you very much for using our plugin, if you want to receive the latest "
     
    218238msgstr ""
    219239
    220 #: views/options.php:131
     240#: views/options.php:149
    221241msgid "Required"
    222242msgstr ""
    223243
    224 #: views/options.php:139
     244#: views/options.php:157
    225245msgid "Submit"
    226246msgstr ""
    227247
    228 #: views/options.php:139
     248#: views/options.php:157
    229249msgid "Processing"
    230250msgstr ""
    231251
    232 #: views/options.php:152
     252#: views/options.php:170
    233253msgid ""
    234254"Developing this plugin takes time, so if you like it, we invite you to make "
     
    237257msgstr ""
    238258
    239 #: views/options.php:153
     259#: views/options.php:171
    240260msgid "Make a donation now to help development"
    241261msgstr ""
    242262
    243 #: views/options.php:162
     263#: views/options.php:180
    244264msgid "Use AJAX"
    245265msgstr ""
    246266
    247 #: views/options.php:163
     267#: views/options.php:181
    248268msgid "If your site use cache system, active this option."
    249269msgstr ""
    250270
    251 #: views/options.php:171
     271#: views/options.php:189
    252272msgid "Delivery same day"
    253273msgstr ""
    254274
    255 #: views/options.php:172
     275#: views/options.php:190
    256276msgid ""
    257277"When you set 0 in any option the estimated delivery is disabled, activate "
     
    259279msgstr ""
    260280
    261 #: views/options.php:180
     281#: views/options.php:198
    262282msgid "Show date on order (Admin and Customer)"
    263283msgstr ""
    264284
    265 #: views/options.php:181
     285#: views/options.php:199
    266286msgid ""
    267287"If you activate this option, the date will be stored with the order, the "
     
    269289msgstr ""
    270290
    271 #: views/options.php:189
     291#: views/options.php:207
    272292msgid "Show date Products Lists"
    273293msgstr ""
    274294
    275 #: views/options.php:190
     295#: views/options.php:208
    276296msgid ""
    277297"If you activate this option date show on each product on list, Store, "
     
    279299msgstr ""
    280300
    281 #: views/options.php:199
     301#: views/options.php:216
     302msgid "Icon"
     303msgstr ""
     304
     305#: views/options.php:217
     306msgid ""
     307"You can use always icon, fontawesome, only class name for example: fas fa-"
     308"truck-moving"
     309msgstr ""
     310
     311#: views/options.php:225
     312msgid "¿Problem with Icon?"
     313msgstr ""
     314
     315#: views/options.php:226
     316msgid "Load FontAwesome Library."
     317msgstr ""
     318
     319#: views/options.php:234
    282320msgid "Maximum Time"
    283321msgstr ""
    284322
    285 #: views/options.php:201
     323#: views/options.php:236
    286324#, php-format
    287325msgid ""
     
    290328msgstr ""
    291329
    292 #: views/options.php:210
     330#: views/options.php:245
    293331msgid "Use Relative Dates"
    294332msgstr ""
    295333
    296 #: views/options.php:211
     334#: views/options.php:246
    297335msgid "Only work with current and next week"
    298336msgstr ""
    299337
    300 #: views/options.php:324
     338#: views/options.php:305
     339msgid "Date Formats"
     340msgstr ""
     341
     342#: views/options.php:306
     343msgid "You can change date format use"
     344msgstr ""
     345
     346#: views/options.php:309
     347msgid "Same month and year, different day (00 - 00 MM, YYYY)"
     348msgstr ""
     349
     350#: views/options.php:312
     351msgid "Same year, different day and month (00 MM - 00 MM, YYYY)"
     352msgstr ""
     353
     354#: views/options.php:315
     355msgid "All different (00 MM YYYY - 00 MM YYYY)"
     356msgstr ""
     357
     358#: views/options.php:375
    301359msgid "Position"
    302360msgstr ""
    303361
    304 #: views/options.php:338
     362#: views/options.php:389
     363msgid "Holidays Dates"
     364msgstr ""
     365
     366#: views/options.php:390
     367msgid ""
     368"Dates with comma separated, YYYY/MM/DD, on YEAR use XXXX for dynamic year. "
     369"Example: XXXX/12/31"
     370msgstr ""
     371
     372#: views/options.php:398
    305373msgid "Save"
    306374msgstr ""
    307375
    308 #: views/options.php:340
     376#: views/options.php:400
    309377msgid "Need style?"
    310378msgstr ""
    311379
    312 #: views/options.php:341
     380#: views/options.php:401
    313381msgid "Enjoy! Paste this CSS code into your Customizer and edit as you like"
    314382msgstr ""
  • estimated-delivery-for-woocommerce/trunk/languages/estimated-delivery-for-woocommerce-nl_NL.po

    r2906408 r3098233  
    55"Project-Id-Version: Plugins - Estimated Delivery for Woocomerce - Stable "
    66"(latest release)\n"
    7 "POT-Creation-Date: 2023-05-01 02:01+0200\n"
    8 "PO-Revision-Date: 2023-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"
    99"Last-Translator: \n"
    1010"Language-Team: \n"
     
    1414"Content-Transfer-Encoding: 8bit\n"
    1515"Plural-Forms: nplurals=2; plural=n != 1;\n"
    16 "X-Generator: Poedit 3.2.2\n"
    17 
    18 #: estimated-delivery-woocommerce.php:101
    19 #: estimated-delivery-woocommerce.php:156
    20 #: estimated-delivery-woocommerce.php:210
     16"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
    2121msgid "Estimated Delivery"
    2222msgstr ""
    2323
    24 #: estimated-delivery-woocommerce.php:216
     24#: estimated-delivery-woocommerce.php:273
    2525msgid "Disabled, use shortcode"
    2626msgstr ""
    2727
    28 #: estimated-delivery-woocommerce.php:217
     28#: estimated-delivery-woocommerce.php:274
    2929msgid "After cart button"
    3030msgstr ""
    3131
    32 #: estimated-delivery-woocommerce.php:218
     32#: estimated-delivery-woocommerce.php:275
    3333msgid "Before cart button"
    3434msgstr ""
    3535
    36 #: estimated-delivery-woocommerce.php:219
     36#: estimated-delivery-woocommerce.php:276
    3737msgid "After product meta"
    3838msgstr ""
    3939
    40 #: estimated-delivery-woocommerce.php:220
     40#: estimated-delivery-woocommerce.php:277
    4141msgid "Before product summary"
    4242msgstr ""
    4343
    44 #: estimated-delivery-woocommerce.php:221
     44#: estimated-delivery-woocommerce.php:278
    4545msgid "After product summary"
    4646msgstr ""
    4747
    48 #: estimated-delivery-woocommerce.php:222
     48#: estimated-delivery-woocommerce.php:279
    4949msgid "Product Thumbnail (may not work)"
    5050msgstr ""
    5151
    52 #: estimated-delivery-woocommerce.php:381
     52#: estimated-delivery-woocommerce.php:472
    5353msgid " on"
    5454msgstr ""
    5555
    56 #: estimated-delivery-woocommerce.php:390
    57 #: estimated-delivery-woocommerce.php:411
     56#: estimated-delivery-woocommerce.php:481
     57#: estimated-delivery-woocommerce.php:502
    5858#, php-format
    5959msgid "this %s, %s"
    6060msgstr ""
    6161
    62 #: estimated-delivery-woocommerce.php:393
    63 #: estimated-delivery-woocommerce.php:414
     62#: estimated-delivery-woocommerce.php:484
     63#: estimated-delivery-woocommerce.php:505
    6464#, php-format
    6565msgid "the next %s, %s"
    6666msgstr "de volgende %s, %s"
    6767
    68 #: estimated-delivery-woocommerce.php:421
     68#: estimated-delivery-woocommerce.php:514
    6969#, fuzzy
    7070#| msgid "Estimated"
     
    7272msgstr "Geschat"
    7373
    74 #: estimated-delivery-woocommerce.php:422
     74#: estimated-delivery-woocommerce.php:515
    7575#, php-format
    7676msgid "Estimated delivery%s %s"
    7777msgstr ""
    7878
    79 #: estimated-delivery-woocommerce.php:424
     79#: estimated-delivery-woocommerce.php:517
    8080#, fuzzy
    8181#| msgid "Guaranteed"
     
    8383msgstr "gegarandeerd"
    8484
    85 #: estimated-delivery-woocommerce.php:425
     85#: estimated-delivery-woocommerce.php:518
    8686#, php-format
    8787msgid "Guaranteed delivery%s %s"
     
    8989
    9090#: 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
    9293msgid "Days for Delivery"
    9394msgstr "Dagen voor levering"
    9495
    9596#: 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
    9799msgid "Max Days for Delivery"
    98100msgstr ""
     
    101103#: views/dokanmarketplace-metabox.php:59 views/metabox-product.php:27
    102104#: 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
    106109msgid "Set 0 for disable. If this set more than 0 days, it will show a range."
    107110msgstr ""
    108111
    109112#: 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
    111115msgid "Days for Delivery out of stock"
    112116msgstr ""
    113117
    114118#: 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
    116121msgid "Max Days for Delivery out of stock"
    117122msgstr ""
    118123
    119124#: 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
    121127msgid "Days for Delivery Backorders"
    122128msgstr ""
    123129
    124130#: 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
    126133msgid "Max Days for Delivery Backorders"
    127134msgstr ""
    128135
    129136#: 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
    131139msgid "Estimated or Guaranteed"
    132140msgstr "Geschat of gegarandeerd"
    133141
    134142#: 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
    136145msgid "The message will change."
    137146msgstr "Het bericht wordt gewijzigd."
    138147
    139148#: 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
    141151msgid "Estimated"
    142152msgstr "Geschat"
    143153
    144154#: 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
    146157msgid "Guaranteed"
    147158msgstr "gegarandeerd"
    148159
    149160#: 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
    151163msgid "Days disabled"
    152164msgstr "Dagen uitgeschakeld"
    153165
    154166#: 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
    156169msgid "Select the days that NO shipments are made."
    157170msgstr "Selecteer de dagen dat er GEEN bestellingen worden verzonden."
    158171
    159172#: 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
    161175msgid "Monday"
    162176msgstr "Maandag"
    163177
    164178#: 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
    166181msgid "Tuesday"
    167182msgstr "Dinsdag"
    168183
    169184#: 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
    171187msgid "Wednesday"
    172188msgstr "Woensdag"
    173189
    174190#: 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
    176193msgid "Thursday"
    177194msgstr "Donderdag"
    178195
    179196#: 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
    181199msgid "Friday"
    182200msgstr "Vrijdag"
    183201
    184202#: 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
    186205msgid "Saturday"
    187206msgstr "Zaterdag"
    188207
    189208#: 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
    191211msgid "Sunday"
    192212msgstr "Zondag"
     
    196216msgstr ""
    197217
    198 #: views/options.php:73
     218#: views/options.php:91
    199219msgid "An error has occurred, try again."
    200220msgstr "Er is een fout opgetreden. Probeer het opnieuw."
    201221
    202 #: views/options.php:77
     222#: views/options.php:95
    203223msgid "Welcome to newsletter :)"
    204224msgstr "Welkom bij de nieuwsbrief :)"
    205225
    206 #: views/options.php:120
     226#: views/options.php:138
    207227msgid "Estimated Delivery for Woocommerce"
    208228msgstr ""
    209229
    210 #: views/options.php:121
     230#: views/options.php:139
    211231msgid "Show the estimated or guaranteed delivery for the product"
    212232msgstr ""
    213233
    214 #: views/options.php:128
     234#: views/options.php:146
    215235msgid "Do you want to receive the latest?"
    216236msgstr "Wil je het laatste nieuws ontvangen?"
    217237
    218 #: views/options.php:129
     238#: views/options.php:147
    219239msgid ""
    220240"Thank you very much for using our plugin, if you want to receive the latest "
     
    225245"voor onze nieuwsbrief. :)"
    226246
    227 #: views/options.php:131
     247#: views/options.php:149
    228248msgid "Required"
    229249msgstr "Verplicht"
    230250
    231 #: views/options.php:139
     251#: views/options.php:157
    232252msgid "Submit"
    233253msgstr "Verstuur"
    234254
    235 #: views/options.php:139
     255#: views/options.php:157
    236256msgid "Processing"
    237257msgstr "Verwerken"
    238258
    239 #: views/options.php:152
     259#: views/options.php:170
    240260msgid ""
    241261"Developing this plugin takes time, so if you like it, we invite you to make "
     
    247267"ontwikkelen, updaten en nieuws toevoegen, dit zal altijd gratis zijn."
    248268
    249 #: views/options.php:153
     269#: views/options.php:171
    250270msgid "Make a donation now to help development"
    251271msgstr "Maak een donatie om de ontwikkeling te helpen"
    252272
    253 #: views/options.php:162
     273#: views/options.php:180
    254274msgid "Use AJAX"
    255275msgstr "AJAX gebruiken"
    256276
    257 #: views/options.php:163
     277#: views/options.php:181
    258278msgid "If your site use cache system, active this option."
    259279msgstr ""
    260280
    261 #: views/options.php:171
     281#: views/options.php:189
    262282msgid "Delivery same day"
    263283msgstr "Levering op dezelfde dag"
    264284
    265 #: views/options.php:172
     285#: views/options.php:190
    266286msgid ""
    267287"When you set 0 in any option the estimated delivery is disabled, activate "
     
    269289msgstr ""
    270290
    271 #: views/options.php:180
     291#: views/options.php:198
    272292msgid "Show date on order (Admin and Customer)"
    273293msgstr ""
    274294
    275 #: views/options.php:181
     295#: views/options.php:199
    276296msgid ""
    277297"If you activate this option, the date will be stored with the order, the "
     
    279299msgstr ""
    280300
    281 #: views/options.php:189
     301#: views/options.php:207
    282302msgid "Show date Products Lists"
    283303msgstr ""
    284304
    285 #: views/options.php:190
     305#: views/options.php:208
    286306msgid ""
    287307"If you activate this option date show on each product on list, Store, "
     
    289309msgstr ""
    290310
    291 #: views/options.php:199
     311#: views/options.php:216
     312msgid "Icon"
     313msgstr ""
     314
     315#: views/options.php:217
     316msgid ""
     317"You can use always icon, fontawesome, only class name for example: fas fa-"
     318"truck-moving"
     319msgstr ""
     320
     321#: views/options.php:225
     322msgid "¿Problem with Icon?"
     323msgstr ""
     324
     325#: views/options.php:226
     326msgid "Load FontAwesome Library."
     327msgstr ""
     328
     329#: views/options.php:234
    292330msgid "Maximum Time"
    293331msgstr ""
    294332
    295 #: views/options.php:201
     333#: views/options.php:236
    296334#, php-format
    297335msgid ""
     
    300338msgstr ""
    301339
    302 #: views/options.php:210
     340#: views/options.php:245
    303341msgid "Use Relative Dates"
    304342msgstr "Gebruik relatieve datums"
    305343
    306 #: views/options.php:211
     344#: views/options.php:246
    307345msgid "Only work with current and next week"
    308346msgstr ""
    309347
    310 #: views/options.php:324
     348#: views/options.php:305
     349msgid "Date Formats"
     350msgstr ""
     351
     352#: views/options.php:306
     353msgid "You can change date format use"
     354msgstr ""
     355
     356#: views/options.php:309
     357msgid "Same month and year, different day (00 - 00 MM, YYYY)"
     358msgstr ""
     359
     360#: views/options.php:312
     361msgid "Same year, different day and month (00 MM - 00 MM, YYYY)"
     362msgstr ""
     363
     364#: views/options.php:315
     365msgid "All different (00 MM YYYY - 00 MM YYYY)"
     366msgstr ""
     367
     368#: views/options.php:375
    311369msgid "Position"
    312370msgstr "Positie"
    313371
    314 #: views/options.php:338
     372#: views/options.php:389
     373msgid "Holidays Dates"
     374msgstr ""
     375
     376#: views/options.php:390
     377msgid ""
     378"Dates with comma separated, YYYY/MM/DD, on YEAR use XXXX for dynamic year. "
     379"Example: XXXX/12/31"
     380msgstr ""
     381
     382#: views/options.php:398
    315383msgid "Save"
    316384msgstr "Opslaan"
    317385
    318 #: views/options.php:340
     386#: views/options.php:400
    319387msgid "Need style?"
    320388msgstr ""
    321389
    322 #: views/options.php:341
     390#: views/options.php:401
    323391msgid "Enjoy! Paste this CSS code into your Customizer and edit as you like"
    324392msgstr ""
  • estimated-delivery-for-woocommerce/trunk/languages/estimated-delivery-for-woocommerce.pot

    r3082843 r3098233  
    33msgstr ""
    44"Project-Id-Version: \n"
    5 "POT-Creation-Date: 2024-05-07 23:32+0200\n"
     5"POT-Creation-Date: 2024-06-06 00:39+0200\n"
    66"PO-Revision-Date: 2019-08-28 20:35+0200\n"
    77"Last-Translator: \n"
     
    1212"Content-Transfer-Encoding: 8bit\n"
    1313"Plural-Forms: nplurals=2; plural=(n != 1);\n"
    14 "X-Generator: Poedit 3.4.2\n"
     14"X-Generator: Poedit 3.4.4\n"
    1515"X-Poedit-Basepath: ..\n"
    1616"X-Poedit-KeywordsList: __;_e\n"
    1717"X-Poedit-SearchPath-0: .\n"
    1818
    19 #: estimated-delivery-woocommerce.php:143
    20 #: estimated-delivery-woocommerce.php:203
    21 #: estimated-delivery-woocommerce.php:259 views/wcfm-metabox.php:21
     19#: estimated-delivery-woocommerce.php:151
     20#: estimated-delivery-woocommerce.php:211
     21#: estimated-delivery-woocommerce.php:267 views/wcfm-metabox.php:21
    2222msgid "Estimated Delivery"
    2323msgstr ""
    2424
    25 #: estimated-delivery-woocommerce.php:265
     25#: estimated-delivery-woocommerce.php:273
    2626msgid "Disabled, use shortcode"
    2727msgstr ""
    2828
    29 #: estimated-delivery-woocommerce.php:266
     29#: estimated-delivery-woocommerce.php:274
    3030msgid "After cart button"
    3131msgstr ""
    3232
    33 #: estimated-delivery-woocommerce.php:267
     33#: estimated-delivery-woocommerce.php:275
    3434msgid "Before cart button"
    3535msgstr ""
    3636
    37 #: estimated-delivery-woocommerce.php:268
     37#: estimated-delivery-woocommerce.php:276
    3838msgid "After product meta"
    3939msgstr ""
    4040
    41 #: estimated-delivery-woocommerce.php:269
     41#: estimated-delivery-woocommerce.php:277
    4242msgid "Before product summary"
    4343msgstr ""
    4444
    45 #: estimated-delivery-woocommerce.php:270
     45#: estimated-delivery-woocommerce.php:278
    4646msgid "After product summary"
    4747msgstr ""
    4848
    49 #: estimated-delivery-woocommerce.php:271
     49#: estimated-delivery-woocommerce.php:279
    5050msgid "Product Thumbnail (may not work)"
    5151msgstr ""
    5252
    53 #: estimated-delivery-woocommerce.php:456
     53#: estimated-delivery-woocommerce.php:472
    5454msgid " on"
    5555msgstr ""
    5656
    57 #: estimated-delivery-woocommerce.php:465
    58 #: estimated-delivery-woocommerce.php:486
     57#: estimated-delivery-woocommerce.php:481
     58#: estimated-delivery-woocommerce.php:502
    5959#, php-format
    6060msgid "this %s, %s"
    6161msgstr ""
    6262
    63 #: estimated-delivery-woocommerce.php:468
    64 #: estimated-delivery-woocommerce.php:489
     63#: estimated-delivery-woocommerce.php:484
     64#: estimated-delivery-woocommerce.php:505
    6565#, php-format
    6666msgid "the next %s, %s"
    6767msgstr ""
    6868
    69 #: estimated-delivery-woocommerce.php:496
     69#: estimated-delivery-woocommerce.php:514
    7070msgid "Estimated delivery"
    7171msgstr ""
    7272
    73 #: estimated-delivery-woocommerce.php:497
     73#: estimated-delivery-woocommerce.php:515
    7474#, php-format
    7575msgid "Estimated delivery%s %s"
    7676msgstr ""
    7777
    78 #: estimated-delivery-woocommerce.php:499
     78#: estimated-delivery-woocommerce.php:517
    7979msgid "Guaranteed delivery"
    8080msgstr ""
    8181
    82 #: estimated-delivery-woocommerce.php:500
     82#: estimated-delivery-woocommerce.php:518
    8383#, php-format
    8484msgid "Guaranteed delivery%s %s"
     
    8686
    8787#: views/dokanmarketplace-metabox.php:16 views/metabox-product.php:18
    88 #: views/options.php:230 views/wcfm-metabox.php:29
     88#: views/options.php:254 views/wcfm-metabox.php:29
    8989#: views/wcmarketplace-metabox.php:12
    9090msgid "Days for Delivery"
     
    9292
    9393#: views/dokanmarketplace-metabox.php:24 views/metabox-product.php:26
    94 #: views/options.php:238 views/wcfm-metabox.php:37
     94#: views/options.php:262 views/wcfm-metabox.php:37
    9595#: views/wcmarketplace-metabox.php:20
    9696msgid "Max Days for Delivery"
     
    100100#: views/dokanmarketplace-metabox.php:59 views/metabox-product.php:27
    101101#: views/metabox-product.php:44 views/metabox-product.php:61
    102 #: views/options.php:239 views/options.php:256 views/options.php:273
     102#: views/options.php:263 views/options.php:280 views/options.php:297
    103103#: views/wcfm-metabox.php:38 views/wcfm-metabox.php:55
    104104#: views/wcfm-metabox.php:72 views/wcmarketplace-metabox.php:21
     
    108108
    109109#: views/dokanmarketplace-metabox.php:33 views/metabox-product.php:35
    110 #: views/options.php:247 views/wcfm-metabox.php:46
     110#: views/options.php:271 views/wcfm-metabox.php:46
    111111#: views/wcmarketplace-metabox.php:29
    112112msgid "Days for Delivery out of stock"
     
    114114
    115115#: views/dokanmarketplace-metabox.php:41 views/metabox-product.php:43
    116 #: views/options.php:255 views/wcfm-metabox.php:54
     116#: views/options.php:279 views/wcfm-metabox.php:54
    117117#: views/wcmarketplace-metabox.php:37
    118118msgid "Max Days for Delivery out of stock"
     
    120120
    121121#: views/dokanmarketplace-metabox.php:50 views/metabox-product.php:52
    122 #: views/options.php:264 views/wcfm-metabox.php:63
     122#: views/options.php:288 views/wcfm-metabox.php:63
    123123#: views/wcmarketplace-metabox.php:46
    124124msgid "Days for Delivery Backorders"
     
    126126
    127127#: views/dokanmarketplace-metabox.php:58 views/metabox-product.php:60
    128 #: views/options.php:272 views/wcfm-metabox.php:71
     128#: views/options.php:296 views/wcfm-metabox.php:71
    129129#: views/wcmarketplace-metabox.php:54
    130130msgid "Max Days for Delivery Backorders"
     
    132132
    133133#: views/dokanmarketplace-metabox.php:67 views/metabox-product.php:69
    134 #: views/options.php:297 views/wcfm-metabox.php:80
     134#: views/options.php:321 views/wcfm-metabox.php:80
    135135#: views/wcmarketplace-metabox.php:63
    136136msgid "Estimated or Guaranteed"
     
    138138
    139139#: views/dokanmarketplace-metabox.php:68 views/metabox-product.php:70
    140 #: views/options.php:298 views/wcfm-metabox.php:81
     140#: views/options.php:322 views/wcfm-metabox.php:81
    141141#: views/wcmarketplace-metabox.php:64
    142142msgid "The message will change."
     
    144144
    145145#: views/dokanmarketplace-metabox.php:73 views/metabox-product.php:75
    146 #: views/options.php:303 views/wcfm-metabox.php:86
     146#: views/options.php:327 views/wcfm-metabox.php:86
    147147#: views/wcmarketplace-metabox.php:69
    148148msgid "Estimated"
     
    150150
    151151#: views/dokanmarketplace-metabox.php:74 views/metabox-product.php:76
    152 #: views/options.php:304 views/wcfm-metabox.php:87
     152#: views/options.php:328 views/wcfm-metabox.php:87
    153153#: views/wcmarketplace-metabox.php:70
    154154msgid "Guaranteed"
     
    156156
    157157#: views/dokanmarketplace-metabox.php:80 views/metabox-product.php:82
    158 #: views/options.php:310 views/wcfm-metabox.php:93
     158#: views/options.php:334 views/wcfm-metabox.php:93
    159159#: views/wcmarketplace-metabox.php:76
    160160msgid "Days disabled"
     
    162162
    163163#: views/dokanmarketplace-metabox.php:81 views/metabox-product.php:83
    164 #: views/options.php:311 views/wcfm-metabox.php:94
     164#: views/options.php:335 views/wcfm-metabox.php:94
    165165#: views/wcmarketplace-metabox.php:77
    166166msgid "Select the days that NO shipments are made."
     
    168168
    169169#: views/dokanmarketplace-metabox.php:86 views/metabox-product.php:88
    170 #: views/options.php:316 views/wcfm-metabox.php:99
     170#: views/options.php:340 views/wcfm-metabox.php:99
    171171#: views/wcmarketplace-metabox.php:82
    172172msgid "Monday"
     
    174174
    175175#: views/dokanmarketplace-metabox.php:91 views/metabox-product.php:93
    176 #: views/options.php:321 views/wcfm-metabox.php:104
     176#: views/options.php:345 views/wcfm-metabox.php:104
    177177#: views/wcmarketplace-metabox.php:87
    178178msgid "Tuesday"
     
    180180
    181181#: views/dokanmarketplace-metabox.php:96 views/metabox-product.php:98
    182 #: views/options.php:326 views/wcfm-metabox.php:109
     182#: views/options.php:350 views/wcfm-metabox.php:109
    183183#: views/wcmarketplace-metabox.php:92
    184184msgid "Wednesday"
     
    186186
    187187#: views/dokanmarketplace-metabox.php:101 views/metabox-product.php:103
    188 #: views/options.php:331 views/wcfm-metabox.php:114
     188#: views/options.php:355 views/wcfm-metabox.php:114
    189189#: views/wcmarketplace-metabox.php:97
    190190msgid "Thursday"
     
    192192
    193193#: views/dokanmarketplace-metabox.php:106 views/metabox-product.php:108
    194 #: views/options.php:336 views/wcfm-metabox.php:119
     194#: views/options.php:360 views/wcfm-metabox.php:119
    195195#: views/wcmarketplace-metabox.php:102
    196196msgid "Friday"
     
    198198
    199199#: views/dokanmarketplace-metabox.php:111 views/metabox-product.php:113
    200 #: views/options.php:341 views/wcfm-metabox.php:124
     200#: views/options.php:365 views/wcfm-metabox.php:124
    201201#: views/wcmarketplace-metabox.php:107
    202202msgid "Saturday"
     
    204204
    205205#: views/dokanmarketplace-metabox.php:116 views/metabox-product.php:118
    206 #: views/options.php:346 views/wcfm-metabox.php:129
     206#: views/options.php:370 views/wcfm-metabox.php:129
    207207#: views/wcmarketplace-metabox.php:112
    208208msgid "Sunday"
     
    213213msgstr ""
    214214
    215 #: views/options.php:84
     215#: views/options.php:91
    216216msgid "An error has occurred, try again."
    217217msgstr ""
    218218
    219 #: views/options.php:88
     219#: views/options.php:95
    220220msgid "Welcome to newsletter :)"
    221221msgstr ""
    222222
    223 #: views/options.php:131
     223#: views/options.php:138
    224224msgid "Estimated Delivery for Woocommerce"
    225225msgstr ""
    226226
    227 #: views/options.php:132
     227#: views/options.php:139
    228228msgid "Show the estimated or guaranteed delivery for the product"
    229229msgstr ""
    230230
    231 #: views/options.php:139
     231#: views/options.php:146
    232232msgid "Do you want to receive the latest?"
    233233msgstr ""
    234234
    235 #: views/options.php:140
     235#: views/options.php:147
    236236msgid "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. :)"
    237237msgstr ""
    238238
    239 #: views/options.php:142
     239#: views/options.php:149
    240240msgid "Required"
    241241msgstr ""
    242242
    243 #: views/options.php:150
     243#: views/options.php:157
    244244msgid "Submit"
    245245msgstr ""
    246246
    247 #: views/options.php:150
     247#: views/options.php:157
    248248msgid "Processing"
    249249msgstr ""
    250250
    251 #: views/options.php:163
     251#: views/options.php:170
    252252msgid "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."
    253253msgstr ""
    254254
    255 #: views/options.php:164
     255#: views/options.php:171
    256256msgid "Make a donation now to help development"
    257257msgstr ""
    258258
    259 #: views/options.php:173
     259#: views/options.php:180
    260260msgid "Use AJAX"
    261261msgstr ""
    262262
    263 #: views/options.php:174
     263#: views/options.php:181
    264264msgid "If your site use cache system, active this option."
    265265msgstr ""
    266266
    267 #: views/options.php:182
     267#: views/options.php:189
    268268msgid "Delivery same day"
    269269msgstr ""
    270270
    271 #: views/options.php:183
     271#: views/options.php:190
    272272msgid "When you set 0 in any option the estimated delivery is disabled, activate this option to allow setting 0 and displaying the estimated date."
    273273msgstr ""
    274274
    275 #: views/options.php:191
     275#: views/options.php:198
    276276msgid "Show date on order (Admin and Customer)"
    277277msgstr ""
    278278
    279 #: views/options.php:192
     279#: views/options.php:199
    280280msgid "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."
    281281msgstr ""
    282282
    283 #: views/options.php:200
     283#: views/options.php:207
    284284msgid "Show date Products Lists"
    285285msgstr ""
    286286
    287 #: views/options.php:201
     287#: views/options.php:208
    288288msgid "If you activate this option date show on each product on list, Store, Search, etc. Check style (CSS) for this, bottom on this page."
    289289msgstr ""
    290290
    291 #: views/options.php:210
     291#: views/options.php:216
     292msgid "Icon"
     293msgstr ""
     294
     295#: views/options.php:217
     296msgid "You can use always icon, fontawesome, only class name for example: fas fa-truck-moving"
     297msgstr ""
     298
     299#: views/options.php:225
     300msgid "¿Problem with Icon?"
     301msgstr ""
     302
     303#: views/options.php:226
     304msgid "Load FontAwesome Library."
     305msgstr ""
     306
     307#: views/options.php:234
    292308msgid "Maximum Time"
    293309msgstr ""
    294310
    295 #: views/options.php:212
     311#: views/options.php:236
    296312#, php-format
    297313msgid "Maximum time to consider an extra day of shipping (Server time) HH:mm now is %s"
    298314msgstr ""
    299315
    300 #: views/options.php:221
     316#: views/options.php:245
    301317msgid "Use Relative Dates"
    302318msgstr ""
    303319
    304 #: views/options.php:222
     320#: views/options.php:246
    305321msgid "Only work with current and next week"
    306322msgstr ""
    307323
    308 #: views/options.php:281
     324#: views/options.php:305
    309325msgid "Date Formats"
    310326msgstr ""
    311327
    312 #: views/options.php:282
     328#: views/options.php:306
    313329msgid "You can change date format use"
    314330msgstr ""
    315331
    316 #: views/options.php:285
     332#: views/options.php:309
    317333msgid "Same month and year, different day (00 - 00 MM, YYYY)"
    318334msgstr ""
    319335
    320 #: views/options.php:288
     336#: views/options.php:312
    321337msgid "Same year, different day and month (00 MM - 00 MM, YYYY)"
    322338msgstr ""
    323339
    324 #: views/options.php:291
     340#: views/options.php:315
    325341msgid "All different (00 MM YYYY - 00 MM YYYY)"
    326342msgstr ""
    327343
    328 #: views/options.php:351
     344#: views/options.php:375
    329345msgid "Position"
    330346msgstr ""
    331347
    332 #: views/options.php:365
     348#: views/options.php:389
    333349msgid "Holidays Dates"
    334350msgstr ""
    335351
    336 #: views/options.php:366
     352#: views/options.php:390
    337353msgid "Dates with comma separated, YYYY/MM/DD, on YEAR use XXXX for dynamic year. Example: XXXX/12/31"
    338354msgstr ""
    339355
    340 #: views/options.php:374
     356#: views/options.php:398
    341357msgid "Save"
    342358msgstr ""
    343359
    344 #: views/options.php:376
     360#: views/options.php:400
    345361msgid "Need style?"
    346362msgstr ""
    347363
    348 #: views/options.php:377
     364#: views/options.php:401
    349365msgid "Enjoy! Paste this CSS code into your Customizer and edit as you like"
    350366msgstr ""
  • estimated-delivery-for-woocommerce/trunk/views/dokanmarketplace-metabox.php

    r2597266 r3098233  
    1313    <div class="row-padding">
    1414        <table class="form-table">
    15             <tr valign="top">
     15            <tr valign="top" class="dokan_edw_days_block">
    1616                <th scope="row"><?=__('Days for Delivery', 'estimated-delivery-for-woocommerce')?>
    1717                </th>
     
    2121                </td>
    2222            </tr>
    23             <tr valign="top">
     23            <tr valign="top" class="dokan_edw_max_days_block">
    2424                <th scope="row"><?=__('Max Days for Delivery', 'estimated-delivery-for-woocommerce')?>
    2525                <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p>
     
    3030                </td>
    3131            </tr>
    32             <tr valign="top">
     32            <tr valign="top" class="dokan_edw_days_out_stock_block">
    3333                <th scope="row"><?=__('Days for Delivery out of stock', 'estimated-delivery-for-woocommerce')?>
    3434                </th>
     
    3838                </td>
    3939            </tr>
    40             <tr valign="top">
     40            <tr valign="top" class="dokan_edw_max_days_out_stock_block">
    4141                <th scope="row"><?=__('Max Days for Delivery out of stock', 'estimated-delivery-for-woocommerce')?>
    4242                <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p>
     
    4747                </td>
    4848            </tr>
    49             <tr valign="top">
     49            <tr valign="top" class="dokan_edw_days_backorders_block">
    5050                <th scope="row"><?=__('Days for Delivery Backorders', 'estimated-delivery-for-woocommerce')?>
    5151                </th>
     
    5555                </td>
    5656            </tr>
    57             <tr valign="top">
     57            <tr valign="top" class="dokan_edw_max_days_backorders_block">
    5858                <th scope="row"><?=__('Max Days for Delivery Backorders', 'estimated-delivery-for-woocommerce')?>
    5959                <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p>
     
    6464                </td>
    6565            </tr>
    66             <tr valign="top">
     66            <tr valign="top" class="dokan_edw_mode_block">
    6767                <th scope="row"><?=__('Estimated or Guaranteed', 'estimated-delivery-for-woocommerce')?>
    6868                    <p class="description"><?=__('The message will change.','estimated-delivery-for-woocommerce')?></p>
     
    7777                </td>
    7878            </tr>
    79             <tr valign="top">
     79            <tr valign="top" class="dokan_edw_disabled_days_block">
    8080                <th scope="row"><?=__('Days disabled', 'estimated-delivery-for-woocommerce')?>
    8181                    <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  
    2323            update_option('_edw_max_hour', sanitize_text_field($_POST['_edw_max_hour']));
    2424            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
    2627            //Format dates
    2728            update_option('_edw_date_format_1_0', sanitize_textarea_field($_POST['_edw_date_format_1_0']));
     
    3738            }else{
    3839                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');
    3946            }
    4047
     
    206213                    </td>
    207214                </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>
    209233                <tr valign="top">
    210234                    <th scope="row"><?=__('Maximum Time', 'estimated-delivery-for-woocommerce')?>
  • estimated-delivery-for-woocommerce/trunk/views/wcfm-metabox.php

    r2907221 r3098233  
    2626    <div class="row-padding">
    2727        <table class="form-table" style="text-align:left">
    28             <tr valign="top">
     28            <tr valign="top" class="wcfm_edw_days_block">
    2929                <th scope="row"><?=__('Days for Delivery', 'estimated-delivery-for-woocommerce')?>
    3030                </th>
     
    3434                </td>
    3535            </tr>
    36             <tr valign="top">
     36            <tr valign="top" class="wcfm_edw_max_days_block">
    3737                <th scope="row"><?=__('Max Days for Delivery', 'estimated-delivery-for-woocommerce')?>
    3838                <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p>
     
    4343                </td>
    4444            </tr>
    45             <tr valign="top">
     45            <tr valign="top" class="wcfm_edw_days_out_stock_block">
    4646                <th scope="row"><?=__('Days for Delivery out of stock', 'estimated-delivery-for-woocommerce')?>
    4747                </th>
     
    5151                </td>
    5252            </tr>
    53             <tr valign="top">
     53            <tr valign="top" class="wcfm_edw_max_days_out_stock_block">
    5454                <th scope="row"><?=__('Max Days for Delivery out of stock', 'estimated-delivery-for-woocommerce')?>
    5555                <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p>
     
    6060                </td>
    6161            </tr>
    62             <tr valign="top">
     62            <tr valign="top" class="wcfm_edw_days_backorders_block">
    6363                <th scope="row"><?=__('Days for Delivery Backorders', 'estimated-delivery-for-woocommerce')?>
    6464                </th>
     
    6868                </td>
    6969            </tr>
    70             <tr valign="top">
     70            <tr valign="top" class="wcfm_edw_max_days_backorders_block">
    7171                <th scope="row"><?=__('Max Days for Delivery Backorders', 'estimated-delivery-for-woocommerce')?>
    7272                <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p>
     
    7777                </td>
    7878            </tr>
    79             <tr valign="top">
     79            <tr valign="top" class="wcfm_edw_mode_block">
    8080                <th scope="row"><?=__('Estimated or Guaranteed', 'estimated-delivery-for-woocommerce')?>
    8181                    <p class="description"><?=__('The message will change.','estimated-delivery-for-woocommerce')?></p>
     
    9090                </td>
    9191            </tr>
    92             <tr valign="top">
     92            <tr valign="top" class="wcfm_edw_disabled_days_block">
    9393                <th scope="row"><?=__('Days disabled', 'estimated-delivery-for-woocommerce')?>
    9494                    <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  
    99    <div class="row-padding">
    1010        <table class="form-table">
    11             <tr valign="top">
     11            <tr valign="top" class="wcmp_edw_days_block">
    1212                <th scope="row"><?=__('Days for Delivery', 'estimated-delivery-for-woocommerce')?>
    1313                </th>
     
    1717                </td>
    1818            </tr>
    19             <tr valign="top">
     19            <tr valign="top" class="wcmp_edw_max_days_block">
    2020                <th scope="row"><?=__('Max Days for Delivery', 'estimated-delivery-for-woocommerce')?>
    2121                <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p>
     
    2626                </td>
    2727            </tr>
    28             <tr valign="top">
     28            <tr valign="top" class="wcmp_edw_days_out_stock_block">
    2929                <th scope="row"><?=__('Days for Delivery out of stock', 'estimated-delivery-for-woocommerce')?>
    3030                </th>
     
    3434                </td>
    3535            </tr>
    36             <tr valign="top">
     36            <tr valign="top" class="wcmp_edw_max_days_out_stock_block">
    3737                <th scope="row"><?=__('Max Days for Delivery out of stock', 'estimated-delivery-for-woocommerce')?>
    3838                <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p>
     
    4343                </td>
    4444            </tr>
    45             <tr valign="top">
     45            <tr valign="top" class="wcmp_edw_days_backorders_block">
    4646                <th scope="row"><?=__('Days for Delivery Backorders', 'estimated-delivery-for-woocommerce')?>
    4747                </th>
     
    5151                </td>
    5252            </tr>
    53             <tr valign="top">
     53            <tr valign="top" class="wcmp_edw_max_days_backorders_block">
    5454                <th scope="row"><?=__('Max Days for Delivery Backorders', 'estimated-delivery-for-woocommerce')?>
    5555                <p class="description"><?=__('Set 0 for disable. If this set more than 0 days, it will show a range.','estimated-delivery-for-woocommerce')?></p>
     
    6060                </td>
    6161            </tr>
    62             <tr valign="top">
     62            <tr valign="top" class="wcmp_edw_mode_block">
    6363                <th scope="row"><?=__('Estimated or Guaranteed', 'estimated-delivery-for-woocommerce')?>
    6464                    <p class="description"><?=__('The message will change.','estimated-delivery-for-woocommerce')?></p>
     
    7373                </td>
    7474            </tr>
    75             <tr valign="top">
     75            <tr valign="top" class="wcmp_edw_disabled_days_block">
    7676                <th scope="row"><?=__('Days disabled', 'estimated-delivery-for-woocommerce')?>
    7777                    <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.