Plugin Directory

Changeset 3275095


Ignore:
Timestamp:
04/16/2025 07:35:07 PM (12 months ago)
Author:
kevinweber
Message:

v2.18.4

Location:
lazy-load-for-videos/trunk
Files:
5 added
9 edited

Legend:

Unmodified
Added
Removed
  • lazy-load-for-videos/trunk/README.md

    r2970971 r3275095  
    1 Lazy Load for Videos by [Kevin Weber](https://www.kweber.com)
    2 ====================
     1# Lazy Load for Videos by [Kevin Weber](https://www.kweber.com)
    32
    43This plugin improves page load time and increases your Google PageSpeed Score. It works with oEmbed and replaces embedded Youtube and Vimeo videos with a clickable preview image.
     
    2625You can override when the JS and CSS of this plugin should be loaded. If you always return `true` as shown in the example below, the scripts will always be loaded, no matter if the page has a video embed or not.
    2726
    28 ```
     27```php
    2928function custom_theme_plugin__should_scripts_be_loaded($value) {
    3029 // return $value;
  • lazy-load-for-videos/trunk/codeispoetry.php

    r2980310 r3275095  
    55 * Description: Lazy Load for Videos speeds up your site by replacing embedded Youtube and Vimeo videos with a clickable preview image. Visitors simply click on the image to play the video.
    66 * Author: Kevin Weber
    7  * Version: 2.18.3
     7 * Version: 2.18.4
    88 * Author URI: https://www.kweber.com/
    99 * License: GPL v3
     
    1313
    1414/*
    15     Copyright (C) 2021 Kevin Weber
     15    Copyright (C) 2025 Kevin Weber
    1616
    1717    This program is free software: you can redistribute it and/or modify
     
    3434
    3535if (!defined('LL_VERSION'))
    36     define('LL_VERSION', '2.18.3');
     36    define('LL_VERSION', '2.18.4');
    3737if (!defined('LL_VERSION_KEY'))
    3838    define('LL_VERSION_KEY', LL_OPTION_KEY.'_version');
     
    5050    define( 'LL_URL', plugin_dir_url( __FILE__ ) );
    5151
     52/**
     53 * Definitions for admin page
     54 */
     55if ( !defined( 'LL_ADMIN_URL' ) )
     56    define( 'LL_ADMIN_URL', 'lazyload.php' );
    5257
    53 require_once( LL_PATH . 'src/php/inc/define.php' );
    5458require_once( LL_PATH . 'src/php/class-register.php' );
    5559
     
    6165  load_plugin_textdomain( LL_TD, false, dirname( plugin_basename( LL_FILE ) ) . '/languages/' );
    6266}
    63 add_action( 'plugins_loaded', 'lazyload_load_textdomain' );
     67
     68add_action( 'init', 'lazyload_load_textdomain' );
    6469
    6570function lazyload_videos_init_plugins_loaded() {
     
    6974}
    7075
    71 add_action( 'plugins_loaded', 'lazyload_videos_init_plugins_loaded', 15 );
     76add_action( 'init', 'lazyload_videos_init_plugins_loaded' );
    7277
    7378
     
    9196
    9297if ( is_admin() ) {
    93     add_action( 'plugins_loaded', 'lazyload_videos_admin_init', 16 );
     98    add_action( 'init', 'lazyload_videos_admin_init', 16 );
    9499} else {
    95     add_action( 'plugins_loaded', 'lazyload_videos_frontend_init', 16 );
     100    add_action( 'init', 'lazyload_videos_frontend_init', 16 );
    96101}
    97102
  • lazy-load-for-videos/trunk/languages/lazy-load-for-videos.pot

    r2001493 r3275095  
    1 # Copyright (C) 2015 Lazy Load for Videos
     1# Copyright (C) 2015-2025 Lazy Load for Videos
    22# This file is distributed under the same license as the Lazy Load for Videos package.
    33msgid ""
     
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/lazy-load-for-"
    77"videos\n"
    8 "POT-Creation-Date: 2015-10-16 10:07:24+00:00\n"
     8"POT-Creation-Date: 2025-03-15 16:02+0100\n"
    99"MIME-Version: 1.0\n"
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n"
     12"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1313"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
    1414"Language-Team: LANGUAGE <LL@li.org>\n"
    1515
    16 #: admin/class-admin-options.php:43
     16#: src/php/class-meta.php:65 src/php/class-admin-options.php:242
     17msgid "Thumbnail quality"
     18msgstr ""
     19
     20#: src/php/class-meta.php:69
     21msgid "Default"
     22msgstr ""
     23
     24#: src/php/class-meta.php:70 src/php/class-admin-options.php:245
     25msgid "Standard quality"
     26msgstr ""
     27
     28#: src/php/class-meta.php:71 src/php/class-admin-options.php:246
     29msgid "Higher quality"
     30msgstr ""
     31
     32#: src/php/class-meta.php:72 src/php/class-admin-options.php:247
     33msgid "Max resolution"
     34msgstr ""
     35
     36#: src/php/inc/define.php:5
     37msgid ""
     38"To suggest and vote for new features: Let the developer come into contact "
     39"with you."
     40msgstr ""
     41
     42#: src/php/inc/define.php:6
     43msgid "Get contacted"
     44msgstr ""
     45
     46#: src/php/inc/define.php:7
     47msgid "Enter your email address"
     48msgstr ""
     49
     50#: src/php/inc/define.php:8
     51msgid "Signup via Plugin"
     52msgstr ""
     53
     54#: src/php/class-admin-options.php:48
    1755msgid "Settings"
    1856msgstr ""
    1957
    20 #. #-#-#-#-#  plugin.pot (Lazy Load for Videos 2.2.1)  #-#-#-#-#
    21 #. Plugin Name of the plugin/theme
    22 #: admin/class-admin-options.php:108 admin/class-admin-options.php:156
     58#: src/php/class-admin-options.php:137 src/php/class-admin-options.php:184
    2359msgid "Lazy Load for Videos"
    2460msgstr ""
    2561
    26 #: admin/class-admin-options.php:152
     62#: src/php/class-admin-options.php:180
    2763msgid "Your posts have been updated successfully."
    2864msgstr ""
    2965
    30 #: admin/class-admin-options.php:156
     66#: src/php/class-admin-options.php:184
    3167msgid "by"
    3268msgstr ""
    3369
    34 #: admin/class-admin-options.php:156
     70#: src/php/class-admin-options.php:184
    3571msgid "Website by Kevin Weber"
    3672msgstr ""
    3773
    38 #: admin/class-admin-options.php:156
     74#: src/php/class-admin-options.php:184
    3975msgid "Version"
    4076msgstr ""
    4177
    42 #: admin/class-admin-options.php:157
     78#: src/php/class-admin-options.php:185
    4379msgid "Speed up your site and customise your video player!"
    4480msgstr ""
    4581
    46 #: admin/class-admin-options.php:161 admin/class-admin-options.php:176
     82#: src/php/class-admin-options.php:188 src/php/class-admin-options.php:203
    4783msgid "General/Styling"
    4884msgstr ""
    4985
    50 #: admin/class-admin-options.php:162
    51 msgid "Youtube"
    52 msgstr ""
    53 
    54 #: admin/class-admin-options.php:163
     86#: src/php/class-admin-options.php:189
     87msgid "YouTube"
     88msgstr ""
     89
     90#: src/php/class-admin-options.php:190
    5591msgid "Vimeo"
    5692msgstr ""
    5793
    58 #: admin/class-admin-options.php:181
     94#: src/php/class-admin-options.php:208
    5995msgid "Only load CSS/JS when needed"
    6096msgstr ""
    6197
    62 #: admin/class-admin-options.php:181
     98#: src/php/class-admin-options.php:208
    6399msgid "to improve performance"
    64100msgstr ""
    65101
    66 #: admin/class-admin-options.php:183
    67 msgid ""
    68 "It can happen that &ndash; when this option is checked &ndash; videos on "
    69 "pages do not lazy load although they should. It works on most sites. Simply "
    70 "test it."
    71 msgstr ""
    72 
    73 #: admin/class-admin-options.php:187
    74 msgid "Responsive Mode"
    75 msgstr ""
    76 
    77 #: admin/class-admin-options.php:187
    78 msgid "Tip"
    79 msgstr ""
    80 
    81 #: admin/class-admin-options.php:189
    82 msgid "Check this to improve responsiveness. Video aspect ratio will be 16:9."
    83 msgstr ""
    84 
    85 #: admin/class-admin-options.php:193
     102#: src/php/class-admin-options.php:210 src/php/class-admin-options.php:299
     103#: src/php/class-admin-options.php:383 src/php/class-admin-options.php:389
     104msgid "Important:"
     105msgstr ""
     106
     107#: src/php/class-admin-options.php:210
     108msgid ""
     109"When this option is checked, some videos might not lazy load if posts with "
     110"videos are loaded using Ajax."
     111msgstr ""
     112
     113#: src/php/class-admin-options.php:214
    86114msgid "Play Button"
    87115msgstr ""
    88116
    89 #: admin/class-admin-options.php:196
     117#: src/php/class-admin-options.php:217
    90118msgid "White (CSS-only)"
    91119msgstr ""
    92120
    93 #: admin/class-admin-options.php:197
     121#: src/php/class-admin-options.php:218
    94122msgid "White Pulse (CSS-only)"
    95123msgstr ""
    96124
    97 #: admin/class-admin-options.php:198
     125#: src/php/class-admin-options.php:219
    98126msgid "Black (CSS-only)"
    99127msgstr ""
    100128
    101 #: admin/class-admin-options.php:199
     129#: src/php/class-admin-options.php:220
    102130msgid "Black Pulse (CSS-only)"
    103131msgstr ""
    104132
    105 #: admin/class-admin-options.php:200
    106 msgid "Youtube button image"
    107 msgstr ""
    108 
    109 #: admin/class-admin-options.php:201
     133#: src/php/class-admin-options.php:221
     134msgid "Old Youtube button image"
     135msgstr ""
     136
     137#: src/php/class-admin-options.php:222
    110138msgid "Red Youtube button image"
    111139msgstr ""
    112140
    113 #: admin/class-admin-options.php:206
    114 msgid "Thumbnail Size"
    115 msgstr ""
    116 
    117 #: admin/class-admin-options.php:209
    118 msgid "Cover"
    119 msgstr ""
    120 
    121 #: admin/class-admin-options.php:210
    122 msgid "Contain"
    123 msgstr ""
    124 
    125 #: admin/class-admin-options.php:215
     141#: src/php/class-admin-options.php:223
     142msgid "No play button"
     143msgstr ""
     144
     145#: src/php/class-admin-options.php:228
     146msgid "Thumbnails/Patterns"
     147msgstr ""
     148
     149#: src/php/class-admin-options.php:231
     150msgid "Thumbnail covering the video element"
     151msgstr ""
     152
     153#: src/php/class-admin-options.php:232
     154msgid "Thumbnail contained within the video element"
     155msgstr ""
     156
     157#: src/php/class-admin-options.php:233
     158msgid "Pattern: Carbon"
     159msgstr ""
     160
     161#: src/php/class-admin-options.php:234
     162msgid "Pattern: Dots"
     163msgstr ""
     164
     165#: src/php/class-admin-options.php:235
     166msgid "Pattern: Light Seigaiha"
     167msgstr ""
     168
     169#: src/php/class-admin-options.php:236
     170msgid "None"
     171msgstr ""
     172
     173#: src/php/class-admin-options.php:238
     174msgid ""
     175"For a thumbnail to be displayed, a request needs to be made to the server of "
     176"a video platform. You can display one of the available patterns instead, or "
     177"nothing at all."
     178msgstr ""
     179
     180#: src/php/class-admin-options.php:249
     181msgid ""
     182"Define which thumbnail quality should be used by default. When a maximum "
     183"resolution thumbnail is not available, a lower quality thumbnail will be "
     184"loaded. This setting can be overridden on every individual page/post."
     185msgstr ""
     186
     187#: src/php/class-admin-options.php:253
    126188msgid "Custom CSS"
    127189msgstr ""
    128190
    129 #: admin/class-admin-options.php:221
    130 msgid "Schema.org Markup"
    131 msgstr ""
    132 
    133 #: admin/class-admin-options.php:225
    134 msgid ""
    135 "Add schema.org markup to your Youtube and Vimeo videos. Those changes don't "
    136 "seem to affect your search ranking because videos and schema.org markup "
    137 "%1$sshould be visible%2$s without JavaScript (but that cannot be the case "
    138 "when videos are lazy loaded)."
    139 msgstr ""
    140 
    141 #: admin/class-admin-options.php:230 admin/class-admin-options.php:275
    142 #: admin/class-admin-options.php:370
    143 msgid "Important:"
    144 msgstr ""
    145 
    146 #: admin/class-admin-options.php:230 admin/class-admin-options.php:275
    147 #: admin/class-admin-options.php:370
    148 msgid ""
    149 "Updates on this option will only affect new posts and posts you update "
    150 "afterwards with the \"Update Posts\" button at the bottom of this form."
    151 msgstr ""
    152 
    153 #: admin/class-admin-options.php:234
     191#: src/php/class-admin-options.php:259
    154192msgid "Support for TablePress"
    155193msgstr ""
    156194
    157 #: admin/class-admin-options.php:236
     195#: src/php/class-admin-options.php:261
    158196msgid ""
    159197"Only check this box if you actually use this feature (for reason of "
     
    162200msgstr ""
    163201
    164 #: admin/class-admin-options.php:240
     202#: src/php/class-admin-options.php:265
    165203msgid "Attribution"
    166204msgstr ""
    167205
    168 #: admin/class-admin-options.php:240
    169 msgid "give appropriate credit for my time-consuming efforts"
    170 msgstr ""
    171 
    172 #: admin/class-admin-options.php:243
     206#: src/php/class-admin-options.php:265
     207#, php-format
     208msgid ""
     209"Are you thankful for this plugin? I've invested months and months of work. "
     210"This plugin is 100% free and open source."
     211msgstr ""
     212
     213#: src/php/class-admin-options.php:268
    173214msgid ""
    174215"No attribution: \"I can not afford to give appropriate credit for this free "
     
    176217msgstr ""
    177218
    178 #: admin/class-admin-options.php:244
    179 msgid ""
    180 "Link attribution: Display a subtle \"i\" (information link) that is placed "
    181 "in the top right of every video and helps that the plugin gets spread."
    182 msgstr ""
    183 
    184 #: admin/class-admin-options.php:247
     219#: src/php/class-admin-options.php:271
    185220msgid "Donation: \"I have donated already or will do so soon.\""
    186221msgstr ""
    187222
    188 #: admin/class-admin-options.php:248
    189 msgid ""
    190 "Please %1$sdonate now%2$s so that I can keep up the development of this "
     223#: src/php/class-admin-options.php:272
     224#, php-format
     225msgid ""
     226"Please %1$sdonate now%2$s so I can keep maintaining and improving this "
    191227"plugin."
    192228msgstr ""
    193229
    194 #: admin/class-admin-options.php:262
     230#: src/php/class-admin-options.php:286
    195231msgid "Lazy Load for Youtube"
    196232msgstr ""
    197233
    198 #: admin/class-admin-options.php:267
     234#: src/php/class-admin-options.php:291
    199235msgid "Disable Lazy Load for Youtube"
    200236msgstr ""
    201237
    202 #: admin/class-admin-options.php:271
     238#: src/php/class-admin-options.php:295 src/php/class-admin-options.php:379
     239#, php-format
    203240msgid "If checked, Lazy Load will not be used for %1$s videos."
    204241msgstr ""
    205242
    206 #: admin/class-admin-options.php:279
     243#: src/php/class-admin-options.php:299 src/php/class-admin-options.php:383
     244msgid ""
     245"Updates on this option will only affect new posts and posts you update "
     246"afterwards with the \"Update Posts\" button at the bottom of this form."
     247msgstr ""
     248
     249#: src/php/class-admin-options.php:303
    207250msgid "Display Youtube title"
    208251msgstr ""
    209252
    210 #: admin/class-admin-options.php:281
     253#: src/php/class-admin-options.php:305
    211254msgid "If checked, the Youtube video title will be displayed on preview image."
    212255msgstr ""
    213256
    214 #: admin/class-admin-options.php:285
     257#: src/php/class-admin-options.php:309 src/php/class-admin-options.php:393
     258msgid "Text Overlay"
     259msgstr ""
     260
     261#: src/php/class-admin-options.php:313
     262msgid ""
     263"Enter text to be displayed on top of all video thumbnails, for example a "
     264"privacy disclaimer. Supports HTML."
     265msgstr ""
     266
     267#: src/php/class-admin-options.php:317
    215268msgid "Pre-roll/post-roll ads"
    216269msgstr ""
    217270
    218 #: admin/class-admin-options.php:287
     271#: src/php/class-admin-options.php:319
    219272msgid "Pre-roll"
    220273msgstr ""
    221274
    222 #: admin/class-admin-options.php:288
     275#: src/php/class-admin-options.php:320
    223276msgid "Post-roll"
    224277msgstr ""
    225278
    226 #: admin/class-admin-options.php:288
     279#: src/php/class-admin-options.php:320
    227280msgid "(multiple IDs allowed)"
    228281msgstr ""
    229282
    230 #: admin/class-admin-options.php:291
     283#: src/php/class-admin-options.php:323
     284#, php-format
    231285msgid ""
    232286"Convert all Youtube videos into a playlist and automatically add your "
     
    236290msgstr ""
    237291
    238 #: admin/class-admin-options.php:300
    239 msgid "Thumbnail quality"
    240 msgstr ""
    241 
    242 #: admin/class-admin-options.php:300
    243 msgid "Updated"
    244 msgstr ""
    245 
    246 #: admin/class-admin-options.php:303 admin/class-meta.php:70
    247 msgid "Standard quality"
    248 msgstr ""
    249 
    250 #: admin/class-admin-options.php:304 admin/class-meta.php:71
    251 msgid "Max resolution"
    252 msgstr ""
    253 
    254 #: admin/class-admin-options.php:306
    255 msgid ""
    256 "Define which thumbnail quality should be used by default. When a maximum "
    257 "resolution thumbnail is not available, the standard thumbnail will be "
    258 "loaded. This setting can be overridden on every individual page/post."
    259 msgstr ""
    260 
    261 #: admin/class-admin-options.php:310
    262 msgid "Player colour"
    263 msgstr ""
    264 
    265 #: admin/class-admin-options.php:313
    266 msgid "Dark (default)"
    267 msgstr ""
    268 
    269 #: admin/class-admin-options.php:314
    270 msgid "Light"
    271 msgstr ""
    272 
    273 #: admin/class-admin-options.php:319
     292#: src/php/class-admin-options.php:332
    274293msgid "Colour of progress bar"
    275294msgstr ""
    276295
    277 #: admin/class-admin-options.php:322
     296#: src/php/class-admin-options.php:335
    278297msgid "Red (default)"
    279298msgstr ""
    280299
    281 #: admin/class-admin-options.php:323
     300#: src/php/class-admin-options.php:336
    282301msgid "White"
    283302msgstr ""
    284303
    285 #: admin/class-admin-options.php:328
     304#: src/php/class-admin-options.php:341
    286305msgid "Hide annotations"
    287306msgstr ""
    288307
    289 #: admin/class-admin-options.php:330
     308#: src/php/class-admin-options.php:343
    290309msgid ""
    291310"If checked, video annotations (like \"subscribe to channel\") will not be "
     
    293312msgstr ""
    294313
    295 #: admin/class-admin-options.php:334
    296 msgid "Hide title/uploader"
    297 msgstr ""
    298 
    299 #: admin/class-admin-options.php:336
    300 msgid ""
    301 "If checked, information like the video title and uploader will not be "
    302 "displayed when the video starts playing. This option only affects the "
    303 "playing video, not the video thumbnail."
    304 msgstr ""
    305 
    306 #: admin/class-admin-options.php:340
    307 msgid "Hide related videos"
    308 msgstr ""
    309 
    310 #: admin/class-admin-options.php:342
    311 msgid ""
    312 "If checked, related videos at the end of your videos will not be displayed."
    313 msgstr ""
    314 
    315 #: admin/class-admin-options.php:346
     314#: src/php/class-admin-options.php:347
    316315msgid "Hide player controls"
    317316msgstr ""
    318317
    319 #: admin/class-admin-options.php:348
     318#: src/php/class-admin-options.php:349
    320319msgid "If checked, Youtube player controls will not be displayed."
    321320msgstr ""
    322321
    323 #: admin/class-admin-options.php:352
     322#: src/php/class-admin-options.php:353
     323msgid "Enable Youtube cookies"
     324msgstr ""
     325
     326#: src/php/class-admin-options.php:355
     327msgid ""
     328"If checked, Youtube videos will have a URL with \"youtube.com\" instead of "
     329"\"youtube-nocookie.com\". This means Youtube video creators will get more "
     330"extensive tracking stats at the expense of the privacy of your users."
     331msgstr ""
     332
     333#: src/php/class-admin-options.php:359
    324334msgid "Support for widgets"
    325335msgstr ""
    326336
    327 #: admin/class-admin-options.php:354
     337#: src/php/class-admin-options.php:361
    328338msgid ""
    329339"Only check this box if you actually use this feature (for reason of "
     
    332342msgstr ""
    333343
    334 #: admin/class-admin-options.php:363
     344#: src/php/class-admin-options.php:370
    335345msgid "Lazy Load for Vimeo"
    336346msgstr ""
    337347
    338 #: admin/class-admin-options.php:368
     348#: src/php/class-admin-options.php:375
    339349msgid "Disable Lazy Load for Vimeo"
    340350msgstr ""
    341351
    342 #: admin/class-admin-options.php:370
    343 msgid "If checked, Lazy Load will not be used for <b>Vimeo</b> videos."
    344 msgstr ""
    345 
    346 #: admin/class-admin-options.php:374
     352#: src/php/class-admin-options.php:387
    347353msgid "Display Vimeo title"
    348354msgstr ""
    349355
    350 #: admin/class-admin-options.php:376
     356#: src/php/class-admin-options.php:389
    351357msgid "If checked, the Vimeo video title will be displayed on preview image."
    352358msgstr ""
    353359
    354 #: admin/class-admin-options.php:380
     360#: src/php/class-admin-options.php:397
     361msgid ""
     362"Enter text to be displayed on top of all video thumbnails, for example a "
     363"privacy disclaimer. No HTML."
     364msgstr ""
     365
     366#: src/php/class-admin-options.php:401
    355367msgid "Colour of the vimeo controls"
    356368msgstr ""
    357369
    358 #: admin/class-admin-options.php:400
     370#: src/php/class-admin-options.php:407
     371msgid "Enable Vimeo cookies"
     372msgstr ""
     373
     374#: src/php/class-admin-options.php:409
     375msgid ""
     376"If checked, Vimeo videos will have a URL with \"dnt=0\" instead of "
     377"\"dnt=1\". This means that Vimeo video creators will get more extensive "
     378"tracking stats at the expense of the privacy of your users."
     379msgstr ""
     380
     381#: src/php/class-admin-options.php:425
     382msgid "Update Posts"
     383msgstr ""
     384
     385#: src/php/class-admin-options.php:428
     386msgid "Save changes first."
     387msgstr ""
     388
     389#: src/php/class-admin-options.php:428
    359390msgid ""
    360391"Update posts to setup your plugin for the first time or when recommended "
     
    362393msgstr ""
    363394
    364 #: admin/class-admin-options.php:410
     395#: src/php/class-admin-options.php:438
    365396msgid "that's me."
    366397msgstr ""
    367398
    368 #: admin/class-admin-options.php:411
     399#: src/php/class-admin-options.php:439
    369400msgid "I'm the developer of this plugin. Love it!"
    370401msgstr ""
    371402
    372 #: admin/class-admin-options.php:414
     403#: src/php/class-admin-options.php:442
    373404msgid "It's free!"
    374405msgstr ""
    375406
    376 #: admin/class-admin-options.php:415
     407#: src/php/class-admin-options.php:443
     408#, php-format
    377409msgid ""
    378410"Support me with %1$sa delicious lunch%2$s or give this plugin a 5 star "
     
    380412msgstr ""
    381413
    382 #: admin/class-admin-options.php:425
     414#: src/php/class-admin-options.php:453
    383415msgid "Personal tip: Must use plugins"
    384416msgstr ""
    385417
    386 #: admin/class-admin-options.php:427
     418#: src/php/class-admin-options.php:455
    387419msgid "wBounce"
    388420msgstr ""
    389421
    390 #: admin/class-admin-options.php:427 admin/class-admin-options.php:429
     422#: src/php/class-admin-options.php:455
    391423msgid "(on my part)"
    392424msgstr ""
    393425
    394 #: admin/class-admin-options.php:428
     426#: src/php/class-admin-options.php:456
    395427msgid "WordPress SEO"
    396428msgstr ""
    397429
    398 #: admin/class-admin-options.php:428
     430#: src/php/class-admin-options.php:456
    399431msgid "(by Yoast)"
    400432msgstr ""
    401433
    402 #: admin/class-admin-options.php:429
    403 msgid "Inline Comments"
    404 msgstr ""
    405 
    406 #: admin/class-admin-options.php:430
     434#: src/php/class-admin-options.php:457
    407435msgid "Broken Link Checker"
    408436msgstr ""
    409437
    410 #: admin/class-admin-options.php:430
     438#: src/php/class-admin-options.php:457
    411439msgid "(by Janis Elsts)"
    412440msgstr ""
    413 
    414 #: admin/class-meta.php:65
    415 msgid "Youtube thumbnail quality"
    416 msgstr ""
    417 
    418 #: admin/class-meta.php:69
    419 msgid "Default"
    420 msgstr ""
    421 
    422 #: admin/inc/define.php:5
    423 msgid ""
    424 "To suggest and vote for new features: Let the developer come into contact "
    425 "with you."
    426 msgstr ""
    427 
    428 #: admin/inc/define.php:6
    429 msgid "Get contacted"
    430 msgstr ""
    431 
    432 #: admin/inc/define.php:7
    433 msgid "Signup via Plugin"
    434 msgstr ""
    435 
    436 #. Plugin URI of the plugin/theme
    437 msgid "https://www.kweber.com/lazy-load-videos/"
    438 msgstr ""
    439 
    440 #. Description of the plugin/theme
    441 msgid ""
    442 "Lazy Load for Videos speeds up your site by replacing embedded Youtube and "
    443 "Vimeo videos with a clickable preview image. Visitors simply click on the "
    444 "image to play the video."
    445 msgstr ""
    446 
    447 #. Author of the plugin/theme
    448 msgid "Kevin Weber"
    449 msgstr ""
    450 
    451 #. Author URI of the plugin/theme
    452 msgid "https://www.kweber.com/"
    453 msgstr ""
  • lazy-load-for-videos/trunk/package-lock.json

    r2958250 r3275095  
    6464    },
    6565    "node_modules/@babel/code-frame": {
    66       "version": "7.18.6",
    67       "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz",
    68       "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==",
    69       "dependencies": {
    70         "@babel/highlight": "^7.18.6"
     66      "version": "7.22.13",
     67      "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz",
     68      "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==",
     69      "dependencies": {
     70        "@babel/highlight": "^7.22.13",
     71        "chalk": "^2.4.2"
    7172      },
    7273      "engines": {
     
    130131    },
    131132    "node_modules/@babel/generator": {
    132       "version": "7.19.3",
    133       "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.19.3.tgz",
    134       "integrity": "sha512-fqVZnmp1ncvZU757UzDheKZpfPgatqY59XtW2/j/18H7u76akb8xqvjw82f+i2UKd/ksYsSick/BCLQUUtJ/qQ==",
    135       "dependencies": {
    136         "@babel/types": "^7.19.3",
     133      "version": "7.23.0",
     134      "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.0.tgz",
     135      "integrity": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==",
     136      "dependencies": {
     137        "@babel/types": "^7.23.0",
    137138        "@jridgewell/gen-mapping": "^0.3.2",
     139        "@jridgewell/trace-mapping": "^0.3.17",
    138140        "jsesc": "^2.5.1"
    139141      },
     
    252254    },
    253255    "node_modules/@babel/helper-environment-visitor": {
    254       "version": "7.18.9",
    255       "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz",
    256       "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==",
     256      "version": "7.22.20",
     257      "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz",
     258      "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==",
    257259      "engines": {
    258260        "node": ">=6.9.0"
     
    272274    },
    273275    "node_modules/@babel/helper-function-name": {
    274       "version": "7.19.0",
    275       "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz",
    276       "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==",
    277       "dependencies": {
    278         "@babel/template": "^7.18.10",
    279         "@babel/types": "^7.19.0"
     276      "version": "7.23.0",
     277      "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz",
     278      "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==",
     279      "dependencies": {
     280        "@babel/template": "^7.22.15",
     281        "@babel/types": "^7.23.0"
    280282      },
    281283      "engines": {
     
    284286    },
    285287    "node_modules/@babel/helper-hoist-variables": {
    286       "version": "7.18.6",
    287       "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz",
    288       "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==",
    289       "dependencies": {
    290         "@babel/types": "^7.18.6"
     288      "version": "7.22.5",
     289      "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz",
     290      "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==",
     291      "dependencies": {
     292        "@babel/types": "^7.22.5"
    291293      },
    292294      "engines": {
     
    413415    },
    414416    "node_modules/@babel/helper-split-export-declaration": {
    415       "version": "7.18.6",
    416       "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz",
    417       "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==",
    418       "dependencies": {
    419         "@babel/types": "^7.18.6"
     417      "version": "7.22.6",
     418      "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz",
     419      "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==",
     420      "dependencies": {
     421        "@babel/types": "^7.22.5"
    420422      },
    421423      "engines": {
     
    424426    },
    425427    "node_modules/@babel/helper-string-parser": {
    426       "version": "7.18.10",
    427       "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz",
    428       "integrity": "sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==",
     428      "version": "7.22.5",
     429      "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz",
     430      "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==",
    429431      "engines": {
    430432        "node": ">=6.9.0"
     
    432434    },
    433435    "node_modules/@babel/helper-validator-identifier": {
    434       "version": "7.19.1",
    435       "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz",
    436       "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==",
     436      "version": "7.22.20",
     437      "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz",
     438      "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==",
    437439      "engines": {
    438440        "node": ">=6.9.0"
     
    476478    },
    477479    "node_modules/@babel/highlight": {
    478       "version": "7.18.6",
    479       "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz",
    480       "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==",
    481       "dependencies": {
    482         "@babel/helper-validator-identifier": "^7.18.6",
    483         "chalk": "^2.0.0",
     480      "version": "7.22.20",
     481      "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz",
     482      "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==",
     483      "dependencies": {
     484        "@babel/helper-validator-identifier": "^7.22.20",
     485        "chalk": "^2.4.2",
    484486        "js-tokens": "^4.0.0"
    485487      },
     
    489491    },
    490492    "node_modules/@babel/parser": {
    491       "version": "7.19.3",
    492       "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.19.3.tgz",
    493       "integrity": "sha512-pJ9xOlNWHiy9+FuFP09DEAFbAn4JskgRsVcc169w2xRBC3FRGuQEwjeIMMND9L2zc0iEhO/tGv4Zq+km+hxNpQ==",
     493      "version": "7.23.0",
     494      "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.0.tgz",
     495      "integrity": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==",
    494496      "bin": {
    495497        "parser": "bin/babel-parser.js"
     
    17361738    },
    17371739    "node_modules/@babel/template": {
    1738       "version": "7.18.10",
    1739       "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz",
    1740       "integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==",
    1741       "dependencies": {
    1742         "@babel/code-frame": "^7.18.6",
    1743         "@babel/parser": "^7.18.10",
    1744         "@babel/types": "^7.18.10"
     1740      "version": "7.22.15",
     1741      "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz",
     1742      "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==",
     1743      "dependencies": {
     1744        "@babel/code-frame": "^7.22.13",
     1745        "@babel/parser": "^7.22.15",
     1746        "@babel/types": "^7.22.15"
    17451747      },
    17461748      "engines": {
     
    17491751    },
    17501752    "node_modules/@babel/traverse": {
    1751       "version": "7.19.3",
    1752       "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.19.3.tgz",
    1753       "integrity": "sha512-qh5yf6149zhq2sgIXmwjnsvmnNQC2iw70UFjp4olxucKrWd/dvlUsBI88VSLUsnMNF7/vnOiA+nk1+yLoCqROQ==",
    1754       "dependencies": {
    1755         "@babel/code-frame": "^7.18.6",
    1756         "@babel/generator": "^7.19.3",
    1757         "@babel/helper-environment-visitor": "^7.18.9",
    1758         "@babel/helper-function-name": "^7.19.0",
    1759         "@babel/helper-hoist-variables": "^7.18.6",
    1760         "@babel/helper-split-export-declaration": "^7.18.6",
    1761         "@babel/parser": "^7.19.3",
    1762         "@babel/types": "^7.19.3",
     1753      "version": "7.23.2",
     1754      "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.2.tgz",
     1755      "integrity": "sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==",
     1756      "dependencies": {
     1757        "@babel/code-frame": "^7.22.13",
     1758        "@babel/generator": "^7.23.0",
     1759        "@babel/helper-environment-visitor": "^7.22.20",
     1760        "@babel/helper-function-name": "^7.23.0",
     1761        "@babel/helper-hoist-variables": "^7.22.5",
     1762        "@babel/helper-split-export-declaration": "^7.22.6",
     1763        "@babel/parser": "^7.23.0",
     1764        "@babel/types": "^7.23.0",
    17631765        "debug": "^4.1.0",
    17641766        "globals": "^11.1.0"
     
    17691771    },
    17701772    "node_modules/@babel/types": {
    1771       "version": "7.19.3",
    1772       "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.19.3.tgz",
    1773       "integrity": "sha512-hGCaQzIY22DJlDh9CH7NOxgKkFjBk0Cw9xDO1Xmh2151ti7wiGfQ3LauXzL4HP1fmFlTX6XjpRETTpUcv7wQLw==",
    1774       "dependencies": {
    1775         "@babel/helper-string-parser": "^7.18.10",
    1776         "@babel/helper-validator-identifier": "^7.19.1",
     1773      "version": "7.23.0",
     1774      "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.0.tgz",
     1775      "integrity": "sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==",
     1776      "dependencies": {
     1777        "@babel/helper-string-parser": "^7.22.5",
     1778        "@babel/helper-validator-identifier": "^7.22.20",
    17771779        "to-fast-properties": "^2.0.0"
    17781780      },
     
    29032905    },
    29042906    "node_modules/@jridgewell/trace-mapping": {
    2905       "version": "0.3.15",
    2906       "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz",
    2907       "integrity": "sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==",
    2908       "dependencies": {
    2909         "@jridgewell/resolve-uri": "^3.0.3",
    2910         "@jridgewell/sourcemap-codec": "^1.4.10"
     2907      "version": "0.3.20",
     2908      "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz",
     2909      "integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==",
     2910      "dependencies": {
     2911        "@jridgewell/resolve-uri": "^3.1.0",
     2912        "@jridgewell/sourcemap-codec": "^1.4.14"
    29112913      }
    29122914    },
     
    1520115203    },
    1520215204    "@babel/code-frame": {
    15203       "version": "7.18.6",
    15204       "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz",
    15205       "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==",
    15206       "requires": {
    15207         "@babel/highlight": "^7.18.6"
     15205      "version": "7.22.13",
     15206      "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz",
     15207      "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==",
     15208      "requires": {
     15209        "@babel/highlight": "^7.22.13",
     15210        "chalk": "^2.4.2"
    1520815211      }
    1520915212    },
     
    1524715250    },
    1524815251    "@babel/generator": {
    15249       "version": "7.19.3",
    15250       "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.19.3.tgz",
    15251       "integrity": "sha512-fqVZnmp1ncvZU757UzDheKZpfPgatqY59XtW2/j/18H7u76akb8xqvjw82f+i2UKd/ksYsSick/BCLQUUtJ/qQ==",
    15252       "requires": {
    15253         "@babel/types": "^7.19.3",
     15252      "version": "7.23.0",
     15253      "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.0.tgz",
     15254      "integrity": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==",
     15255      "requires": {
     15256        "@babel/types": "^7.23.0",
    1525415257        "@jridgewell/gen-mapping": "^0.3.2",
     15258        "@jridgewell/trace-mapping": "^0.3.17",
    1525515259        "jsesc": "^2.5.1"
    1525615260      },
     
    1533815342    },
    1533915343    "@babel/helper-environment-visitor": {
    15340       "version": "7.18.9",
    15341       "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz",
    15342       "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg=="
     15344      "version": "7.22.20",
     15345      "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz",
     15346      "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA=="
    1534315347    },
    1534415348    "@babel/helper-explode-assignable-expression": {
     
    1535215356    },
    1535315357    "@babel/helper-function-name": {
    15354       "version": "7.19.0",
    15355       "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz",
    15356       "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==",
    15357       "requires": {
    15358         "@babel/template": "^7.18.10",
    15359         "@babel/types": "^7.19.0"
     15358      "version": "7.23.0",
     15359      "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz",
     15360      "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==",
     15361      "requires": {
     15362        "@babel/template": "^7.22.15",
     15363        "@babel/types": "^7.23.0"
    1536015364      }
    1536115365    },
    1536215366    "@babel/helper-hoist-variables": {
    15363       "version": "7.18.6",
    15364       "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz",
    15365       "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==",
    15366       "requires": {
    15367         "@babel/types": "^7.18.6"
     15367      "version": "7.22.5",
     15368      "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz",
     15369      "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==",
     15370      "requires": {
     15371        "@babel/types": "^7.22.5"
    1536815372      }
    1536915373    },
     
    1545715461    },
    1545815462    "@babel/helper-split-export-declaration": {
    15459       "version": "7.18.6",
    15460       "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz",
    15461       "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==",
    15462       "requires": {
    15463         "@babel/types": "^7.18.6"
     15463      "version": "7.22.6",
     15464      "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz",
     15465      "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==",
     15466      "requires": {
     15467        "@babel/types": "^7.22.5"
    1546415468      }
    1546515469    },
    1546615470    "@babel/helper-string-parser": {
    15467       "version": "7.18.10",
    15468       "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz",
    15469       "integrity": "sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw=="
     15471      "version": "7.22.5",
     15472      "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz",
     15473      "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="
    1547015474    },
    1547115475    "@babel/helper-validator-identifier": {
    15472       "version": "7.19.1",
    15473       "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz",
    15474       "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w=="
     15476      "version": "7.22.20",
     15477      "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz",
     15478      "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A=="
    1547515479    },
    1547615480    "@babel/helper-validator-option": {
     
    1550215506    },
    1550315507    "@babel/highlight": {
    15504       "version": "7.18.6",
    15505       "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz",
    15506       "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==",
    15507       "requires": {
    15508         "@babel/helper-validator-identifier": "^7.18.6",
    15509         "chalk": "^2.0.0",
     15508      "version": "7.22.20",
     15509      "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz",
     15510      "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==",
     15511      "requires": {
     15512        "@babel/helper-validator-identifier": "^7.22.20",
     15513        "chalk": "^2.4.2",
    1551015514        "js-tokens": "^4.0.0"
    1551115515      }
    1551215516    },
    1551315517    "@babel/parser": {
    15514       "version": "7.19.3",
    15515       "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.19.3.tgz",
    15516       "integrity": "sha512-pJ9xOlNWHiy9+FuFP09DEAFbAn4JskgRsVcc169w2xRBC3FRGuQEwjeIMMND9L2zc0iEhO/tGv4Zq+km+hxNpQ=="
     15518      "version": "7.23.0",
     15519      "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.0.tgz",
     15520      "integrity": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw=="
    1551715521    },
    1551815522    "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
     
    1634216346    },
    1634316347    "@babel/template": {
    16344       "version": "7.18.10",
    16345       "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz",
    16346       "integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==",
    16347       "requires": {
    16348         "@babel/code-frame": "^7.18.6",
    16349         "@babel/parser": "^7.18.10",
    16350         "@babel/types": "^7.18.10"
     16348      "version": "7.22.15",
     16349      "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz",
     16350      "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==",
     16351      "requires": {
     16352        "@babel/code-frame": "^7.22.13",
     16353        "@babel/parser": "^7.22.15",
     16354        "@babel/types": "^7.22.15"
    1635116355      }
    1635216356    },
    1635316357    "@babel/traverse": {
    16354       "version": "7.19.3",
    16355       "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.19.3.tgz",
    16356       "integrity": "sha512-qh5yf6149zhq2sgIXmwjnsvmnNQC2iw70UFjp4olxucKrWd/dvlUsBI88VSLUsnMNF7/vnOiA+nk1+yLoCqROQ==",
    16357       "requires": {
    16358         "@babel/code-frame": "^7.18.6",
    16359         "@babel/generator": "^7.19.3",
    16360         "@babel/helper-environment-visitor": "^7.18.9",
    16361         "@babel/helper-function-name": "^7.19.0",
    16362         "@babel/helper-hoist-variables": "^7.18.6",
    16363         "@babel/helper-split-export-declaration": "^7.18.6",
    16364         "@babel/parser": "^7.19.3",
    16365         "@babel/types": "^7.19.3",
     16358      "version": "7.23.2",
     16359      "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.2.tgz",
     16360      "integrity": "sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==",
     16361      "requires": {
     16362        "@babel/code-frame": "^7.22.13",
     16363        "@babel/generator": "^7.23.0",
     16364        "@babel/helper-environment-visitor": "^7.22.20",
     16365        "@babel/helper-function-name": "^7.23.0",
     16366        "@babel/helper-hoist-variables": "^7.22.5",
     16367        "@babel/helper-split-export-declaration": "^7.22.6",
     16368        "@babel/parser": "^7.23.0",
     16369        "@babel/types": "^7.23.0",
    1636616370        "debug": "^4.1.0",
    1636716371        "globals": "^11.1.0"
     
    1636916373    },
    1637016374    "@babel/types": {
    16371       "version": "7.19.3",
    16372       "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.19.3.tgz",
    16373       "integrity": "sha512-hGCaQzIY22DJlDh9CH7NOxgKkFjBk0Cw9xDO1Xmh2151ti7wiGfQ3LauXzL4HP1fmFlTX6XjpRETTpUcv7wQLw==",
    16374       "requires": {
    16375         "@babel/helper-string-parser": "^7.18.10",
    16376         "@babel/helper-validator-identifier": "^7.19.1",
     16375      "version": "7.23.0",
     16376      "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.0.tgz",
     16377      "integrity": "sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==",
     16378      "requires": {
     16379        "@babel/helper-string-parser": "^7.22.5",
     16380        "@babel/helper-validator-identifier": "^7.22.20",
    1637716381        "to-fast-properties": "^2.0.0"
    1637816382      }
     
    1723217236    },
    1723317237    "@jridgewell/trace-mapping": {
    17234       "version": "0.3.15",
    17235       "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz",
    17236       "integrity": "sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==",
    17237       "requires": {
    17238         "@jridgewell/resolve-uri": "^3.0.3",
    17239         "@jridgewell/sourcemap-codec": "^1.4.10"
     17238      "version": "0.3.20",
     17239      "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz",
     17240      "integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==",
     17241      "requires": {
     17242        "@jridgewell/resolve-uri": "^3.1.0",
     17243        "@jridgewell/sourcemap-codec": "^1.4.14"
    1724017244      }
    1724117245    },
  • lazy-load-for-videos/trunk/readme.txt

    r3085463 r3275095  
    155155
    156156== Changelog ==
     157
     158= 2.18.4 =
     159* Improve translations and add Catalan/Esperanto. Thanks to @martin-steghoefer's [PR](https://github.com/kevinweber/lazy-load-for-videos/pull/84)
     160* Resolve warning about the timing of translation loading
    157161
    158162= 2.18.3 =
  • lazy-load-for-videos/trunk/src/php/class-admin-options.php

    r2980310 r3275095  
    186186
    187187            <ul class="nav-tab-wrapper">
    188                 <li class="nav-tab"><a href="#general"><?php esc_html_e('General/Styling', LL_TD); ?><span class="newred_dot">&bull;</span></a></li>
     188                <li class="nav-tab"><a href="#general"><?php esc_html_e('General/Styling', LL_TD); ?></a></li>
    189189                <li class="nav-tab"><a href="#youtube"><?php esc_html_e('YouTube', LL_TD); ?></a></li>
    190190                <li class="nav-tab"><a href="#vimeo"><?php esc_html_e('Vimeo', LL_TD); ?><span class="newred_dot">&bull;</span></a></li>
     
    212212                            </tr>
    213213                            <tr valign="top">
    214                                 <th scope="row"><label><?php esc_html_e( 'Play Button', LL_TD ); ?><span class="newred">Updated</span></label></th>
     214                                <th scope="row"><label><?php esc_html_e( 'Play Button', LL_TD ); ?></label></th>
    215215                                <td>
    216216                                    <select class="select" typle="select" name="ll_opt_button_style">
     
    423423                   <?php wp_nonce_field( 'lazyloadvideos_with_oembed_nonce', 'with_oembed_nonce' ); ?>
    424424                   <input type="hidden" name="update_posts" value="with_oembed" />
    425                    <input class="button update-posts" type="submit" value="Update Posts" />
     425                   <button class="button update-posts" type="submit" value="Update Posts"><?php esc_html_e( 'Update Posts', LL_TD ); ?></button>
    426426                </form>
    427427                <div class="help">
    428                     <span class="tooltip-right info-icon" data-tooltip="Save changes first.">?</span> <span><?php esc_html_e( 'Update posts to setup your plugin for the first time or when recommended somewhere.', LL_TD ); ?></span>
     428                    <span class="tooltip-right info-icon" data-tooltip="<?php esc_html_e( 'Save changes first.', LL_TD ); ?>">?</span> <span><?php esc_html_e( 'Update posts to setup your plugin for the first time or when recommended somewhere.', LL_TD ); ?></span>
    429429                </div>
    430430            </div>
  • lazy-load-for-videos/trunk/src/php/class-register.php

    r2504544 r3275095  
    22require_once( LL_PATH . 'src/php/static-update-posts.php' );
    33/**
    4  * register_activation_hook() and register_deactivation_hook() MUST NOT be called with action 'plugins_loaded' or any 'admin_init'
     4 * register_activation_hook() and register_deactivation_hook() MUST be called DIRECTLY in the main plugin file, not inside any other hook or function.
    55 */
    66register_activation_hook( LL_FILE, 'lazyloadvideos_plugin_activation' );
     
    99
    1010function lazyloadvideos_plugin_activation() {
     11    require_once( LL_PATH . 'src/php/inc/signup-define.php' );
     12
    1113    $signup = '<div id="mc_embed_signup">
    1214            <form action="'.LL_NEWS_ACTION_URL.'" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
    1315                <div class="mc-field-group">
    1416                    <label for="mce-EMAIL" style="line-height:2.5em">'.LL_NEWS_TEXT.'</label><br>
    15                     <input type="email" value="Enter your email address" name="EMAIL" class="required email" id="mce-EMAIL" onclick="this.focus();this.select()" onfocus="if(this.value == \'\') { this.value = this.defaultValue; }" onblur="if(this.value == \'\') { this.value = this.defaultValue; }">
     17                    <input type="email" value="'.LL_NEWS_MAILADDRESS.'" name="EMAIL" class="required email" id="mce-EMAIL" onclick="this.focus();this.select()" onfocus="if(this.value == \'\') { this.value = this.defaultValue; }" onblur="if(this.value == \'\') { this.value = this.defaultValue; }">
    1618                    <input type="hidden" name="GROUPS" id="GROUPS" value="'.LL_NEWS_GROUP.'" />
    1719                    <input type="submit" value="'.LL_NEWS_BUTTON.'" name="subscribe" id="mc-embedded-subscribe" class="button">
  • lazy-load-for-videos/trunk/src/php/inc/signup.php

    r2371597 r3275095  
     1<?php require_once( LL_PATH . 'src/php/inc/signup-define.php' ); ?>
     2
    13<div id="mc_embed_signup">
    24<form action="<?php echo LL_NEWS_ACTION_URL; ?>" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
  • lazy-load-for-videos/trunk/yarn.lock

    r2958250 r3275095  
    2222    "@babel/highlight": ^7.18.6
    2323  checksum: 195e2be3172d7684bf95cff69ae3b7a15a9841ea9d27d3c843662d50cdd7d6470fd9c8e64be84d031117e4a4083486effba39f9aef6bbb2c89f7f21bcfba33ba
     24  languageName: node
     25  linkType: hard
     26
     27"@babel/code-frame@npm:^7.22.13":
     28  version: 7.22.13
     29  resolution: "@babel/code-frame@npm:7.22.13"
     30  dependencies:
     31    "@babel/highlight": ^7.22.13
     32    chalk: ^2.4.2
     33  checksum: 22e342c8077c8b77eeb11f554ecca2ba14153f707b85294fcf6070b6f6150aae88a7b7436dd88d8c9289970585f3fe5b9b941c5aa3aa26a6d5a8ef3f292da058
    2434  languageName: node
    2535  linkType: hard
     
    8090  linkType: hard
    8191
     92"@babel/generator@npm:^7.23.0":
     93  version: 7.23.0
     94  resolution: "@babel/generator@npm:7.23.0"
     95  dependencies:
     96    "@babel/types": ^7.23.0
     97    "@jridgewell/gen-mapping": ^0.3.2
     98    "@jridgewell/trace-mapping": ^0.3.17
     99    jsesc: ^2.5.1
     100  checksum: 8efe24adad34300f1f8ea2add420b28171a646edc70f2a1b3e1683842f23b8b7ffa7e35ef0119294e1901f45bfea5b3dc70abe1f10a1917ccdfb41bed69be5f1
     101  languageName: node
     102  linkType: hard
     103
    82104"@babel/helper-annotate-as-pure@npm:^7.18.6":
    83105  version: 7.18.6
     
    165187  linkType: hard
    166188
     189"@babel/helper-environment-visitor@npm:^7.22.20":
     190  version: 7.22.20
     191  resolution: "@babel/helper-environment-visitor@npm:7.22.20"
     192  checksum: d80ee98ff66f41e233f36ca1921774c37e88a803b2f7dca3db7c057a5fea0473804db9fb6729e5dbfd07f4bed722d60f7852035c2c739382e84c335661590b69
     193  languageName: node
     194  linkType: hard
     195
    167196"@babel/helper-explode-assignable-expression@npm:^7.18.6":
    168197  version: 7.18.6
     
    184213  linkType: hard
    185214
     215"@babel/helper-function-name@npm:^7.23.0":
     216  version: 7.23.0
     217  resolution: "@babel/helper-function-name@npm:7.23.0"
     218  dependencies:
     219    "@babel/template": ^7.22.15
     220    "@babel/types": ^7.23.0
     221  checksum: e44542257b2d4634a1f979244eb2a4ad8e6d75eb6761b4cfceb56b562f7db150d134bc538c8e6adca3783e3bc31be949071527aa8e3aab7867d1ad2d84a26e10
     222  languageName: node
     223  linkType: hard
     224
    186225"@babel/helper-hoist-variables@npm:^7.18.6":
    187226  version: 7.18.6
     
    190229    "@babel/types": ^7.18.6
    191230  checksum: fd9c35bb435fda802bf9ff7b6f2df06308a21277c6dec2120a35b09f9de68f68a33972e2c15505c1a1a04b36ec64c9ace97d4a9e26d6097b76b4396b7c5fa20f
     231  languageName: node
     232  linkType: hard
     233
     234"@babel/helper-hoist-variables@npm:^7.22.5":
     235  version: 7.22.5
     236  resolution: "@babel/helper-hoist-variables@npm:7.22.5"
     237  dependencies:
     238    "@babel/types": ^7.22.5
     239  checksum: 394ca191b4ac908a76e7c50ab52102669efe3a1c277033e49467913c7ed6f7c64d7eacbeabf3bed39ea1f41731e22993f763b1edce0f74ff8563fd1f380d92cc
    192240  languageName: node
    193241  linkType: hard
     
    297345  linkType: hard
    298346
     347"@babel/helper-split-export-declaration@npm:^7.22.6":
     348  version: 7.22.6
     349  resolution: "@babel/helper-split-export-declaration@npm:7.22.6"
     350  dependencies:
     351    "@babel/types": ^7.22.5
     352  checksum: e141cace583b19d9195f9c2b8e17a3ae913b7ee9b8120246d0f9ca349ca6f03cb2c001fd5ec57488c544347c0bb584afec66c936511e447fd20a360e591ac921
     353  languageName: node
     354  linkType: hard
     355
    299356"@babel/helper-string-parser@npm:^7.18.10":
    300357  version: 7.18.10
     
    315372  resolution: "@babel/helper-validator-identifier@npm:7.19.1"
    316373  checksum: 0eca5e86a729162af569b46c6c41a63e18b43dbe09fda1d2a3c8924f7d617116af39cac5e4cd5d431bb760b4dca3c0970e0c444789b1db42bcf1fa41fbad0a3a
     374  languageName: node
     375  linkType: hard
     376
     377"@babel/helper-validator-identifier@npm:^7.22.20":
     378  version: 7.22.20
     379  resolution: "@babel/helper-validator-identifier@npm:7.22.20"
     380  checksum: 136412784d9428266bcdd4d91c32bcf9ff0e8d25534a9d94b044f77fe76bc50f941a90319b05aafd1ec04f7d127cd57a179a3716009ff7f3412ef835ada95bdc
    317381  languageName: node
    318382  linkType: hard
     
    363427    js-tokens: ^4.0.0
    364428  checksum: 92d8ee61549de5ff5120e945e774728e5ccd57fd3b2ed6eace020ec744823d4a98e242be1453d21764a30a14769ecd62170fba28539b211799bbaf232bbb2789
     429  languageName: node
     430  linkType: hard
     431
     432"@babel/highlight@npm:^7.22.13":
     433  version: 7.22.20
     434  resolution: "@babel/highlight@npm:7.22.20"
     435  dependencies:
     436    "@babel/helper-validator-identifier": ^7.22.20
     437    chalk: ^2.4.2
     438    js-tokens: ^4.0.0
     439  checksum: 84bd034dca309a5e680083cd827a766780ca63cef37308404f17653d32366ea76262bd2364b2d38776232f2d01b649f26721417d507e8b4b6da3e4e739f6d134
    365440  languageName: node
    366441  linkType: hard
     
    372447    parser: ./bin/babel-parser.js
    373448  checksum: 854f1390328a8cea5d95ed2a8655a8976cdb41e72393845df0f86088dc777817a5e015a1a61739d312accccf1a22358fb70707a013d25596251cceba2c8985ee
     449  languageName: node
     450  linkType: hard
     451
     452"@babel/parser@npm:^7.22.15, @babel/parser@npm:^7.23.0":
     453  version: 7.23.0
     454  resolution: "@babel/parser@npm:7.23.0"
     455  bin:
     456    parser: ./bin/babel-parser.js
     457  checksum: 453fdf8b9e2c2b7d7b02139e0ce003d1af21947bbc03eb350fb248ee335c9b85e4ab41697ddbdd97079698de825a265e45a0846bb2ed47a2c7c1df833f42a354
    374458  languageName: node
    375459  linkType: hard
     
    13631447  linkType: hard
    13641448
     1449"@babel/template@npm:^7.22.15":
     1450  version: 7.22.15
     1451  resolution: "@babel/template@npm:7.22.15"
     1452  dependencies:
     1453    "@babel/code-frame": ^7.22.13
     1454    "@babel/parser": ^7.22.15
     1455    "@babel/types": ^7.22.15
     1456  checksum: 1f3e7dcd6c44f5904c184b3f7fe280394b191f2fed819919ffa1e529c259d5b197da8981b6ca491c235aee8dbad4a50b7e31304aa531271cb823a4a24a0dd8fd
     1457  languageName: node
     1458  linkType: hard
     1459
    13651460"@babel/traverse@npm:^7.19.0, @babel/traverse@npm:^7.19.1, @babel/traverse@npm:^7.19.3, @babel/traverse@npm:^7.7.2":
    1366   version: 7.19.3
    1367   resolution: "@babel/traverse@npm:7.19.3"
    1368   dependencies:
    1369     "@babel/code-frame": ^7.18.6
    1370     "@babel/generator": ^7.19.3
    1371     "@babel/helper-environment-visitor": ^7.18.9
    1372     "@babel/helper-function-name": ^7.19.0
    1373     "@babel/helper-hoist-variables": ^7.18.6
    1374     "@babel/helper-split-export-declaration": ^7.18.6
    1375     "@babel/parser": ^7.19.3
    1376     "@babel/types": ^7.19.3
     1461  version: 7.23.2
     1462  resolution: "@babel/traverse@npm:7.23.2"
     1463  dependencies:
     1464    "@babel/code-frame": ^7.22.13
     1465    "@babel/generator": ^7.23.0
     1466    "@babel/helper-environment-visitor": ^7.22.20
     1467    "@babel/helper-function-name": ^7.23.0
     1468    "@babel/helper-hoist-variables": ^7.22.5
     1469    "@babel/helper-split-export-declaration": ^7.22.6
     1470    "@babel/parser": ^7.23.0
     1471    "@babel/types": ^7.23.0
    13771472    debug: ^4.1.0
    13781473    globals: ^11.1.0
    1379   checksum: ef16c98fca7f2c347febd06737c13230ea103d619a0d6c142445bc8eff6359d2fce026f27dece02b4838f614cda8a9330bc4a576ccc6cd0ce21844d1d0205769
     1474  checksum: 26a1eea0dde41ab99dde8b9773a013a0dc50324e5110a049f5d634e721ff08afffd54940b3974a20308d7952085ac769689369e9127dea655f868c0f6e1ab35d
    13801475  languageName: node
    13811476  linkType: hard
     
    13891484    to-fast-properties: ^2.0.0
    13901485  checksum: 34a5b3db3b99a1a80ec2a784c2bb0e48769a38f1526dc377a5753a3ac5e5704663c405a393117ecc7a9df9da07b01625be7c4c3fee43ae46aba23b0c40928d77
     1486  languageName: node
     1487  linkType: hard
     1488
     1489"@babel/types@npm:^7.22.15, @babel/types@npm:^7.22.5, @babel/types@npm:^7.23.0":
     1490  version: 7.23.0
     1491  resolution: "@babel/types@npm:7.23.0"
     1492  dependencies:
     1493    "@babel/helper-string-parser": ^7.22.5
     1494    "@babel/helper-validator-identifier": ^7.22.20
     1495    to-fast-properties: ^2.0.0
     1496  checksum: 215fe04bd7feef79eeb4d33374b39909ce9cad1611c4135a4f7fdf41fe3280594105af6d7094354751514625ea92d0875aba355f53e86a92600f290e77b0e604
    13911497  languageName: node
    13921498  linkType: hard
     
    19532059  linkType: hard
    19542060
     2061"@jridgewell/resolve-uri@npm:^3.1.0":
     2062  version: 3.1.1
     2063  resolution: "@jridgewell/resolve-uri@npm:3.1.1"
     2064  checksum: f5b441fe7900eab4f9155b3b93f9800a916257f4e8563afbcd3b5a5337b55e52bd8ae6735453b1b745457d9f6cdb16d74cd6220bbdd98cf153239e13f6cbb653
     2065  languageName: node
     2066  linkType: hard
     2067
    19552068"@jridgewell/set-array@npm:^1.0.0, @jridgewell/set-array@npm:^1.0.1":
    19562069  version: 1.1.2
     
    19772090  linkType: hard
    19782091
     2092"@jridgewell/sourcemap-codec@npm:^1.4.14":
     2093  version: 1.4.15
     2094  resolution: "@jridgewell/sourcemap-codec@npm:1.4.15"
     2095  checksum: b881c7e503db3fc7f3c1f35a1dd2655a188cc51a3612d76efc8a6eb74728bef5606e6758ee77423e564092b4a518aba569bbb21c9bac5ab7a35b0c6ae7e344c8
     2096  languageName: node
     2097  linkType: hard
     2098
    19792099"@jridgewell/trace-mapping@npm:^0.3.14, @jridgewell/trace-mapping@npm:^0.3.9":
    19802100  version: 0.3.15
     
    19842104    "@jridgewell/sourcemap-codec": ^1.4.10
    19852105  checksum: 38917e9c2b014d469a9f51c016ed506acbe44dd16ec2f6f99b553ebf3764d22abadbf992f2367b6d2b3511f3eae8ed3a8963f6c1030093fda23efd35ecab2bae
     2106  languageName: node
     2107  linkType: hard
     2108
     2109"@jridgewell/trace-mapping@npm:^0.3.17":
     2110  version: 0.3.20
     2111  resolution: "@jridgewell/trace-mapping@npm:0.3.20"
     2112  dependencies:
     2113    "@jridgewell/resolve-uri": ^3.1.0
     2114    "@jridgewell/sourcemap-codec": ^1.4.14
     2115  checksum: cd1a7353135f385909468ff0cf20bdd37e59f2ee49a13a966dedf921943e222082c583ade2b579ff6cd0d8faafcb5461f253e1bf2a9f48fec439211fdbe788f5
    19862116  languageName: node
    19872117  linkType: hard
     
    43794509  linkType: hard
    43804510
    4381 "chalk@npm:^2.0.0":
     4511"chalk@npm:^2.0.0, chalk@npm:^2.4.2":
    43824512  version: 2.4.2
    43834513  resolution: "chalk@npm:2.4.2"
Note: See TracChangeset for help on using the changeset viewer.