Changeset 3275095
- Timestamp:
- 04/16/2025 07:35:07 PM (12 months ago)
- Location:
- lazy-load-for-videos/trunk
- Files:
-
- 5 added
- 9 edited
-
README.md (modified) (2 diffs)
-
codeispoetry.php (modified) (7 diffs)
-
languages/lazy-load-for-videos-ca.mo (added)
-
languages/lazy-load-for-videos-ca.po (added)
-
languages/lazy-load-for-videos-eo.mo (added)
-
languages/lazy-load-for-videos-eo.po (added)
-
languages/lazy-load-for-videos.pot (modified) (9 diffs)
-
package-lock.json (modified) (23 diffs)
-
readme.txt (modified) (1 diff)
-
src/php/class-admin-options.php (modified) (3 diffs)
-
src/php/class-register.php (modified) (2 diffs)
-
src/php/inc/signup-define.php (added)
-
src/php/inc/signup.php (modified) (1 diff)
-
yarn.lock (modified) (15 diffs)
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) 3 2 4 3 This 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. … … 26 25 You 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. 27 26 28 ``` 27 ```php 29 28 function custom_theme_plugin__should_scripts_be_loaded($value) { 30 29 // return $value; -
lazy-load-for-videos/trunk/codeispoetry.php
r2980310 r3275095 5 5 * 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. 6 6 * Author: Kevin Weber 7 * Version: 2.18. 37 * Version: 2.18.4 8 8 * Author URI: https://www.kweber.com/ 9 9 * License: GPL v3 … … 13 13 14 14 /* 15 Copyright (C) 202 1Kevin Weber15 Copyright (C) 2025 Kevin Weber 16 16 17 17 This program is free software: you can redistribute it and/or modify … … 34 34 35 35 if (!defined('LL_VERSION')) 36 define('LL_VERSION', '2.18. 3');36 define('LL_VERSION', '2.18.4'); 37 37 if (!defined('LL_VERSION_KEY')) 38 38 define('LL_VERSION_KEY', LL_OPTION_KEY.'_version'); … … 50 50 define( 'LL_URL', plugin_dir_url( __FILE__ ) ); 51 51 52 /** 53 * Definitions for admin page 54 */ 55 if ( !defined( 'LL_ADMIN_URL' ) ) 56 define( 'LL_ADMIN_URL', 'lazyload.php' ); 52 57 53 require_once( LL_PATH . 'src/php/inc/define.php' );54 58 require_once( LL_PATH . 'src/php/class-register.php' ); 55 59 … … 61 65 load_plugin_textdomain( LL_TD, false, dirname( plugin_basename( LL_FILE ) ) . '/languages/' ); 62 66 } 63 add_action( 'plugins_loaded', 'lazyload_load_textdomain' ); 67 68 add_action( 'init', 'lazyload_load_textdomain' ); 64 69 65 70 function lazyload_videos_init_plugins_loaded() { … … 69 74 } 70 75 71 add_action( ' plugins_loaded', 'lazyload_videos_init_plugins_loaded', 15);76 add_action( 'init', 'lazyload_videos_init_plugins_loaded' ); 72 77 73 78 … … 91 96 92 97 if ( is_admin() ) { 93 add_action( ' plugins_loaded', 'lazyload_videos_admin_init', 16 );98 add_action( 'init', 'lazyload_videos_admin_init', 16 ); 94 99 } else { 95 add_action( ' plugins_loaded', 'lazyload_videos_frontend_init', 16 );100 add_action( 'init', 'lazyload_videos_frontend_init', 16 ); 96 101 } 97 102 -
lazy-load-for-videos/trunk/languages/lazy-load-for-videos.pot
r2001493 r3275095 1 # Copyright (C) 2015 Lazy Load for Videos1 # Copyright (C) 2015-2025 Lazy Load for Videos 2 2 # This file is distributed under the same license as the Lazy Load for Videos package. 3 3 msgid "" … … 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/lazy-load-for-" 7 7 "videos\n" 8 "POT-Creation-Date: 20 15-10-16 10:07:24+00:00\n"8 "POT-Creation-Date: 2025-03-15 16:02+0100\n" 9 9 "MIME-Version: 1.0\n" 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "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" 13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 14 14 "Language-Team: LANGUAGE <LL@li.org>\n" 15 15 16 #: admin/class-admin-options.php:43 16 #: src/php/class-meta.php:65 src/php/class-admin-options.php:242 17 msgid "Thumbnail quality" 18 msgstr "" 19 20 #: src/php/class-meta.php:69 21 msgid "Default" 22 msgstr "" 23 24 #: src/php/class-meta.php:70 src/php/class-admin-options.php:245 25 msgid "Standard quality" 26 msgstr "" 27 28 #: src/php/class-meta.php:71 src/php/class-admin-options.php:246 29 msgid "Higher quality" 30 msgstr "" 31 32 #: src/php/class-meta.php:72 src/php/class-admin-options.php:247 33 msgid "Max resolution" 34 msgstr "" 35 36 #: src/php/inc/define.php:5 37 msgid "" 38 "To suggest and vote for new features: Let the developer come into contact " 39 "with you." 40 msgstr "" 41 42 #: src/php/inc/define.php:6 43 msgid "Get contacted" 44 msgstr "" 45 46 #: src/php/inc/define.php:7 47 msgid "Enter your email address" 48 msgstr "" 49 50 #: src/php/inc/define.php:8 51 msgid "Signup via Plugin" 52 msgstr "" 53 54 #: src/php/class-admin-options.php:48 17 55 msgid "Settings" 18 56 msgstr "" 19 57 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 23 59 msgid "Lazy Load for Videos" 24 60 msgstr "" 25 61 26 #: admin/class-admin-options.php:15262 #: src/php/class-admin-options.php:180 27 63 msgid "Your posts have been updated successfully." 28 64 msgstr "" 29 65 30 #: admin/class-admin-options.php:15666 #: src/php/class-admin-options.php:184 31 67 msgid "by" 32 68 msgstr "" 33 69 34 #: admin/class-admin-options.php:15670 #: src/php/class-admin-options.php:184 35 71 msgid "Website by Kevin Weber" 36 72 msgstr "" 37 73 38 #: admin/class-admin-options.php:15674 #: src/php/class-admin-options.php:184 39 75 msgid "Version" 40 76 msgstr "" 41 77 42 #: admin/class-admin-options.php:15778 #: src/php/class-admin-options.php:185 43 79 msgid "Speed up your site and customise your video player!" 44 80 msgstr "" 45 81 46 #: admin/class-admin-options.php:161 admin/class-admin-options.php:17682 #: src/php/class-admin-options.php:188 src/php/class-admin-options.php:203 47 83 msgid "General/Styling" 48 84 msgstr "" 49 85 50 #: admin/class-admin-options.php:16251 msgid "You tube"52 msgstr "" 53 54 #: admin/class-admin-options.php:16386 #: src/php/class-admin-options.php:189 87 msgid "YouTube" 88 msgstr "" 89 90 #: src/php/class-admin-options.php:190 55 91 msgid "Vimeo" 56 92 msgstr "" 57 93 58 #: admin/class-admin-options.php:18194 #: src/php/class-admin-options.php:208 59 95 msgid "Only load CSS/JS when needed" 60 96 msgstr "" 61 97 62 #: admin/class-admin-options.php:18198 #: src/php/class-admin-options.php:208 63 99 msgid "to improve performance" 64 100 msgstr "" 65 101 66 #: admin/class-admin-options.php:183 67 msgid "" 68 "It can happen that – when this option is checked – 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 104 msgid "Important:" 105 msgstr "" 106 107 #: src/php/class-admin-options.php:210 108 msgid "" 109 "When this option is checked, some videos might not lazy load if posts with " 110 "videos are loaded using Ajax." 111 msgstr "" 112 113 #: src/php/class-admin-options.php:214 86 114 msgid "Play Button" 87 115 msgstr "" 88 116 89 #: admin/class-admin-options.php:196117 #: src/php/class-admin-options.php:217 90 118 msgid "White (CSS-only)" 91 119 msgstr "" 92 120 93 #: admin/class-admin-options.php:197121 #: src/php/class-admin-options.php:218 94 122 msgid "White Pulse (CSS-only)" 95 123 msgstr "" 96 124 97 #: admin/class-admin-options.php:198125 #: src/php/class-admin-options.php:219 98 126 msgid "Black (CSS-only)" 99 127 msgstr "" 100 128 101 #: admin/class-admin-options.php:199129 #: src/php/class-admin-options.php:220 102 130 msgid "Black Pulse (CSS-only)" 103 131 msgstr "" 104 132 105 #: admin/class-admin-options.php:200106 msgid " Youtube button image"107 msgstr "" 108 109 #: admin/class-admin-options.php:201133 #: src/php/class-admin-options.php:221 134 msgid "Old Youtube button image" 135 msgstr "" 136 137 #: src/php/class-admin-options.php:222 110 138 msgid "Red Youtube button image" 111 139 msgstr "" 112 140 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 142 msgid "No play button" 143 msgstr "" 144 145 #: src/php/class-admin-options.php:228 146 msgid "Thumbnails/Patterns" 147 msgstr "" 148 149 #: src/php/class-admin-options.php:231 150 msgid "Thumbnail covering the video element" 151 msgstr "" 152 153 #: src/php/class-admin-options.php:232 154 msgid "Thumbnail contained within the video element" 155 msgstr "" 156 157 #: src/php/class-admin-options.php:233 158 msgid "Pattern: Carbon" 159 msgstr "" 160 161 #: src/php/class-admin-options.php:234 162 msgid "Pattern: Dots" 163 msgstr "" 164 165 #: src/php/class-admin-options.php:235 166 msgid "Pattern: Light Seigaiha" 167 msgstr "" 168 169 #: src/php/class-admin-options.php:236 170 msgid "None" 171 msgstr "" 172 173 #: src/php/class-admin-options.php:238 174 msgid "" 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." 178 msgstr "" 179 180 #: src/php/class-admin-options.php:249 181 msgid "" 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." 185 msgstr "" 186 187 #: src/php/class-admin-options.php:253 126 188 msgid "Custom CSS" 127 189 msgstr "" 128 190 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 154 192 msgid "Support for TablePress" 155 193 msgstr "" 156 194 157 #: admin/class-admin-options.php:236195 #: src/php/class-admin-options.php:261 158 196 msgid "" 159 197 "Only check this box if you actually use this feature (for reason of " … … 162 200 msgstr "" 163 201 164 #: admin/class-admin-options.php:240202 #: src/php/class-admin-options.php:265 165 203 msgid "Attribution" 166 204 msgstr "" 167 205 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 208 msgid "" 209 "Are you thankful for this plugin? I've invested months and months of work. " 210 "This plugin is 100% free and open source." 211 msgstr "" 212 213 #: src/php/class-admin-options.php:268 173 214 msgid "" 174 215 "No attribution: \"I can not afford to give appropriate credit for this free " … … 176 217 msgstr "" 177 218 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 185 220 msgid "Donation: \"I have donated already or will do so soon.\"" 186 221 msgstr "" 187 222 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 225 msgid "" 226 "Please %1$sdonate now%2$s so I can keep maintaining and improving this " 191 227 "plugin." 192 228 msgstr "" 193 229 194 #: admin/class-admin-options.php:262230 #: src/php/class-admin-options.php:286 195 231 msgid "Lazy Load for Youtube" 196 232 msgstr "" 197 233 198 #: admin/class-admin-options.php:267234 #: src/php/class-admin-options.php:291 199 235 msgid "Disable Lazy Load for Youtube" 200 236 msgstr "" 201 237 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 203 240 msgid "If checked, Lazy Load will not be used for %1$s videos." 204 241 msgstr "" 205 242 206 #: admin/class-admin-options.php:279 243 #: src/php/class-admin-options.php:299 src/php/class-admin-options.php:383 244 msgid "" 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." 247 msgstr "" 248 249 #: src/php/class-admin-options.php:303 207 250 msgid "Display Youtube title" 208 251 msgstr "" 209 252 210 #: admin/class-admin-options.php:281253 #: src/php/class-admin-options.php:305 211 254 msgid "If checked, the Youtube video title will be displayed on preview image." 212 255 msgstr "" 213 256 214 #: admin/class-admin-options.php:285 257 #: src/php/class-admin-options.php:309 src/php/class-admin-options.php:393 258 msgid "Text Overlay" 259 msgstr "" 260 261 #: src/php/class-admin-options.php:313 262 msgid "" 263 "Enter text to be displayed on top of all video thumbnails, for example a " 264 "privacy disclaimer. Supports HTML." 265 msgstr "" 266 267 #: src/php/class-admin-options.php:317 215 268 msgid "Pre-roll/post-roll ads" 216 269 msgstr "" 217 270 218 #: admin/class-admin-options.php:287271 #: src/php/class-admin-options.php:319 219 272 msgid "Pre-roll" 220 273 msgstr "" 221 274 222 #: admin/class-admin-options.php:288275 #: src/php/class-admin-options.php:320 223 276 msgid "Post-roll" 224 277 msgstr "" 225 278 226 #: admin/class-admin-options.php:288279 #: src/php/class-admin-options.php:320 227 280 msgid "(multiple IDs allowed)" 228 281 msgstr "" 229 282 230 #: admin/class-admin-options.php:291 283 #: src/php/class-admin-options.php:323 284 #, php-format 231 285 msgid "" 232 286 "Convert all Youtube videos into a playlist and automatically add your " … … 236 290 msgstr "" 237 291 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 274 293 msgid "Colour of progress bar" 275 294 msgstr "" 276 295 277 #: admin/class-admin-options.php:322296 #: src/php/class-admin-options.php:335 278 297 msgid "Red (default)" 279 298 msgstr "" 280 299 281 #: admin/class-admin-options.php:323300 #: src/php/class-admin-options.php:336 282 301 msgid "White" 283 302 msgstr "" 284 303 285 #: admin/class-admin-options.php:328304 #: src/php/class-admin-options.php:341 286 305 msgid "Hide annotations" 287 306 msgstr "" 288 307 289 #: admin/class-admin-options.php:330308 #: src/php/class-admin-options.php:343 290 309 msgid "" 291 310 "If checked, video annotations (like \"subscribe to channel\") will not be " … … 293 312 msgstr "" 294 313 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 316 315 msgid "Hide player controls" 317 316 msgstr "" 318 317 319 #: admin/class-admin-options.php:348318 #: src/php/class-admin-options.php:349 320 319 msgid "If checked, Youtube player controls will not be displayed." 321 320 msgstr "" 322 321 323 #: admin/class-admin-options.php:352 322 #: src/php/class-admin-options.php:353 323 msgid "Enable Youtube cookies" 324 msgstr "" 325 326 #: src/php/class-admin-options.php:355 327 msgid "" 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." 331 msgstr "" 332 333 #: src/php/class-admin-options.php:359 324 334 msgid "Support for widgets" 325 335 msgstr "" 326 336 327 #: admin/class-admin-options.php:354337 #: src/php/class-admin-options.php:361 328 338 msgid "" 329 339 "Only check this box if you actually use this feature (for reason of " … … 332 342 msgstr "" 333 343 334 #: admin/class-admin-options.php:363344 #: src/php/class-admin-options.php:370 335 345 msgid "Lazy Load for Vimeo" 336 346 msgstr "" 337 347 338 #: admin/class-admin-options.php:368348 #: src/php/class-admin-options.php:375 339 349 msgid "Disable Lazy Load for Vimeo" 340 350 msgstr "" 341 351 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 347 353 msgid "Display Vimeo title" 348 354 msgstr "" 349 355 350 #: admin/class-admin-options.php:376356 #: src/php/class-admin-options.php:389 351 357 msgid "If checked, the Vimeo video title will be displayed on preview image." 352 358 msgstr "" 353 359 354 #: admin/class-admin-options.php:380 360 #: src/php/class-admin-options.php:397 361 msgid "" 362 "Enter text to be displayed on top of all video thumbnails, for example a " 363 "privacy disclaimer. No HTML." 364 msgstr "" 365 366 #: src/php/class-admin-options.php:401 355 367 msgid "Colour of the vimeo controls" 356 368 msgstr "" 357 369 358 #: admin/class-admin-options.php:400 370 #: src/php/class-admin-options.php:407 371 msgid "Enable Vimeo cookies" 372 msgstr "" 373 374 #: src/php/class-admin-options.php:409 375 msgid "" 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." 379 msgstr "" 380 381 #: src/php/class-admin-options.php:425 382 msgid "Update Posts" 383 msgstr "" 384 385 #: src/php/class-admin-options.php:428 386 msgid "Save changes first." 387 msgstr "" 388 389 #: src/php/class-admin-options.php:428 359 390 msgid "" 360 391 "Update posts to setup your plugin for the first time or when recommended " … … 362 393 msgstr "" 363 394 364 #: admin/class-admin-options.php:410395 #: src/php/class-admin-options.php:438 365 396 msgid "that's me." 366 397 msgstr "" 367 398 368 #: admin/class-admin-options.php:411399 #: src/php/class-admin-options.php:439 369 400 msgid "I'm the developer of this plugin. Love it!" 370 401 msgstr "" 371 402 372 #: admin/class-admin-options.php:414403 #: src/php/class-admin-options.php:442 373 404 msgid "It's free!" 374 405 msgstr "" 375 406 376 #: admin/class-admin-options.php:415 407 #: src/php/class-admin-options.php:443 408 #, php-format 377 409 msgid "" 378 410 "Support me with %1$sa delicious lunch%2$s or give this plugin a 5 star " … … 380 412 msgstr "" 381 413 382 #: admin/class-admin-options.php:425414 #: src/php/class-admin-options.php:453 383 415 msgid "Personal tip: Must use plugins" 384 416 msgstr "" 385 417 386 #: admin/class-admin-options.php:427418 #: src/php/class-admin-options.php:455 387 419 msgid "wBounce" 388 420 msgstr "" 389 421 390 #: admin/class-admin-options.php:427 admin/class-admin-options.php:429422 #: src/php/class-admin-options.php:455 391 423 msgid "(on my part)" 392 424 msgstr "" 393 425 394 #: admin/class-admin-options.php:428426 #: src/php/class-admin-options.php:456 395 427 msgid "WordPress SEO" 396 428 msgstr "" 397 429 398 #: admin/class-admin-options.php:428430 #: src/php/class-admin-options.php:456 399 431 msgid "(by Yoast)" 400 432 msgstr "" 401 433 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 407 435 msgid "Broken Link Checker" 408 436 msgstr "" 409 437 410 #: admin/class-admin-options.php:430438 #: src/php/class-admin-options.php:457 411 439 msgid "(by Janis Elsts)" 412 440 msgstr "" 413 414 #: admin/class-meta.php:65415 msgid "Youtube thumbnail quality"416 msgstr ""417 418 #: admin/class-meta.php:69419 msgid "Default"420 msgstr ""421 422 #: admin/inc/define.php:5423 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:6429 msgid "Get contacted"430 msgstr ""431 432 #: admin/inc/define.php:7433 msgid "Signup via Plugin"434 msgstr ""435 436 #. Plugin URI of the plugin/theme437 msgid "https://www.kweber.com/lazy-load-videos/"438 msgstr ""439 440 #. Description of the plugin/theme441 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/theme448 msgid "Kevin Weber"449 msgstr ""450 451 #. Author URI of the plugin/theme452 msgid "https://www.kweber.com/"453 msgstr "" -
lazy-load-for-videos/trunk/package-lock.json
r2958250 r3275095 64 64 }, 65 65 "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" 71 72 }, 72 73 "engines": { … … 130 131 }, 131 132 "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", 137 138 "@jridgewell/gen-mapping": "^0.3.2", 139 "@jridgewell/trace-mapping": "^0.3.17", 138 140 "jsesc": "^2.5.1" 139 141 }, … … 252 254 }, 253 255 "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==", 257 259 "engines": { 258 260 "node": ">=6.9.0" … … 272 274 }, 273 275 "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" 280 282 }, 281 283 "engines": { … … 284 286 }, 285 287 "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" 291 293 }, 292 294 "engines": { … … 413 415 }, 414 416 "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" 420 422 }, 421 423 "engines": { … … 424 426 }, 425 427 "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==", 429 431 "engines": { 430 432 "node": ">=6.9.0" … … 432 434 }, 433 435 "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==", 437 439 "engines": { 438 440 "node": ">=6.9.0" … … 476 478 }, 477 479 "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", 484 486 "js-tokens": "^4.0.0" 485 487 }, … … 489 491 }, 490 492 "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==", 494 496 "bin": { 495 497 "parser": "bin/babel-parser.js" … … 1736 1738 }, 1737 1739 "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" 1745 1747 }, 1746 1748 "engines": { … … 1749 1751 }, 1750 1752 "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", 1763 1765 "debug": "^4.1.0", 1764 1766 "globals": "^11.1.0" … … 1769 1771 }, 1770 1772 "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", 1777 1779 "to-fast-properties": "^2.0.0" 1778 1780 }, … … 2903 2905 }, 2904 2906 "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.1 0"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" 2911 2913 } 2912 2914 }, … … 15201 15203 }, 15202 15204 "@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" 15208 15211 } 15209 15212 }, … … 15247 15250 }, 15248 15251 "@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", 15254 15257 "@jridgewell/gen-mapping": "^0.3.2", 15258 "@jridgewell/trace-mapping": "^0.3.17", 15255 15259 "jsesc": "^2.5.1" 15256 15260 }, … … 15338 15342 }, 15339 15343 "@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==" 15343 15347 }, 15344 15348 "@babel/helper-explode-assignable-expression": { … … 15352 15356 }, 15353 15357 "@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" 15360 15364 } 15361 15365 }, 15362 15366 "@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" 15368 15372 } 15369 15373 }, … … 15457 15461 }, 15458 15462 "@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" 15464 15468 } 15465 15469 }, 15466 15470 "@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==" 15470 15474 }, 15471 15475 "@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==" 15475 15479 }, 15476 15480 "@babel/helper-validator-option": { … … 15502 15506 }, 15503 15507 "@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", 15510 15514 "js-tokens": "^4.0.0" 15511 15515 } 15512 15516 }, 15513 15517 "@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==" 15517 15521 }, 15518 15522 "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { … … 16342 16346 }, 16343 16347 "@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" 16351 16355 } 16352 16356 }, 16353 16357 "@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", 16366 16370 "debug": "^4.1.0", 16367 16371 "globals": "^11.1.0" … … 16369 16373 }, 16370 16374 "@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", 16377 16381 "to-fast-properties": "^2.0.0" 16378 16382 } … … 17232 17236 }, 17233 17237 "@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.1 0"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" 17240 17244 } 17241 17245 }, -
lazy-load-for-videos/trunk/readme.txt
r3085463 r3275095 155 155 156 156 == 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 157 161 158 162 = 2.18.3 = -
lazy-load-for-videos/trunk/src/php/class-admin-options.php
r2980310 r3275095 186 186 187 187 <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">•</span></a></li>188 <li class="nav-tab"><a href="#general"><?php esc_html_e('General/Styling', LL_TD); ?></a></li> 189 189 <li class="nav-tab"><a href="#youtube"><?php esc_html_e('YouTube', LL_TD); ?></a></li> 190 190 <li class="nav-tab"><a href="#vimeo"><?php esc_html_e('Vimeo', LL_TD); ?><span class="newred_dot">•</span></a></li> … … 212 212 </tr> 213 213 <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> 215 215 <td> 216 216 <select class="select" typle="select" name="ll_opt_button_style"> … … 423 423 <?php wp_nonce_field( 'lazyloadvideos_with_oembed_nonce', 'with_oembed_nonce' ); ?> 424 424 <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> 426 426 </form> 427 427 <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> 429 429 </div> 430 430 </div> -
lazy-load-for-videos/trunk/src/php/class-register.php
r2504544 r3275095 2 2 require_once( LL_PATH . 'src/php/static-update-posts.php' ); 3 3 /** 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. 5 5 */ 6 6 register_activation_hook( LL_FILE, 'lazyloadvideos_plugin_activation' ); … … 9 9 10 10 function lazyloadvideos_plugin_activation() { 11 require_once( LL_PATH . 'src/php/inc/signup-define.php' ); 12 11 13 $signup = '<div id="mc_embed_signup"> 12 14 <form action="'.LL_NEWS_ACTION_URL.'" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate> 13 15 <div class="mc-field-group"> 14 16 <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; }"> 16 18 <input type="hidden" name="GROUPS" id="GROUPS" value="'.LL_NEWS_GROUP.'" /> 17 19 <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 1 3 <div id="mc_embed_signup"> 2 4 <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 22 22 "@babel/highlight": ^7.18.6 23 23 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 24 34 languageName: node 25 35 linkType: hard … … 80 90 linkType: hard 81 91 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 82 104 "@babel/helper-annotate-as-pure@npm:^7.18.6": 83 105 version: 7.18.6 … … 165 187 linkType: hard 166 188 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 167 196 "@babel/helper-explode-assignable-expression@npm:^7.18.6": 168 197 version: 7.18.6 … … 184 213 linkType: hard 185 214 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 186 225 "@babel/helper-hoist-variables@npm:^7.18.6": 187 226 version: 7.18.6 … … 190 229 "@babel/types": ^7.18.6 191 230 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 192 240 languageName: node 193 241 linkType: hard … … 297 345 linkType: hard 298 346 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 299 356 "@babel/helper-string-parser@npm:^7.18.10": 300 357 version: 7.18.10 … … 315 372 resolution: "@babel/helper-validator-identifier@npm:7.19.1" 316 373 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 317 381 languageName: node 318 382 linkType: hard … … 363 427 js-tokens: ^4.0.0 364 428 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 365 440 languageName: node 366 441 linkType: hard … … 372 447 parser: ./bin/babel-parser.js 373 448 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 374 458 languageName: node 375 459 linkType: hard … … 1363 1447 linkType: hard 1364 1448 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 1365 1460 "@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.31367 resolution: "@babel/traverse@npm:7. 19.3"1368 dependencies: 1369 "@babel/code-frame": ^7. 18.61370 "@babel/generator": ^7. 19.31371 "@babel/helper-environment-visitor": ^7. 18.91372 "@babel/helper-function-name": ^7. 19.01373 "@babel/helper-hoist-variables": ^7. 18.61374 "@babel/helper-split-export-declaration": ^7. 18.61375 "@babel/parser": ^7. 19.31376 "@babel/types": ^7. 19.31461 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 1377 1472 debug: ^4.1.0 1378 1473 globals: ^11.1.0 1379 checksum: ef16c98fca7f2c347febd06737c13230ea103d619a0d6c142445bc8eff6359d2fce026f27dece02b4838f614cda8a9330bc4a576ccc6cd0ce21844d1d02057691474 checksum: 26a1eea0dde41ab99dde8b9773a013a0dc50324e5110a049f5d634e721ff08afffd54940b3974a20308d7952085ac769689369e9127dea655f868c0f6e1ab35d 1380 1475 languageName: node 1381 1476 linkType: hard … … 1389 1484 to-fast-properties: ^2.0.0 1390 1485 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 1391 1497 languageName: node 1392 1498 linkType: hard … … 1953 2059 linkType: hard 1954 2060 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 1955 2068 "@jridgewell/set-array@npm:^1.0.0, @jridgewell/set-array@npm:^1.0.1": 1956 2069 version: 1.1.2 … … 1977 2090 linkType: hard 1978 2091 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 1979 2099 "@jridgewell/trace-mapping@npm:^0.3.14, @jridgewell/trace-mapping@npm:^0.3.9": 1980 2100 version: 0.3.15 … … 1984 2104 "@jridgewell/sourcemap-codec": ^1.4.10 1985 2105 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 1986 2116 languageName: node 1987 2117 linkType: hard … … 4379 4509 linkType: hard 4380 4510 4381 "chalk@npm:^2.0.0 ":4511 "chalk@npm:^2.0.0, chalk@npm:^2.4.2": 4382 4512 version: 2.4.2 4383 4513 resolution: "chalk@npm:2.4.2"
Note: See TracChangeset
for help on using the changeset viewer.