Changeset 3261761
- Timestamp:
- 03/25/2025 07:23:14 PM (12 months ago)
- Location:
- indieblocks/trunk
- Files:
-
- 7 edited
-
includes/class-options-handler.php (modified) (2 diffs)
-
includes/class-parser.php (modified) (1 diff)
-
includes/class-plugin.php (modified) (1 diff)
-
includes/image-proxy/class-image-proxy.php (modified) (1 diff)
-
indieblocks.php (modified) (1 diff)
-
languages/indieblocks.pot (modified) (19 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
indieblocks/trunk/includes/class-options-handler.php
r3088601 r3261761 261 261 ); 262 262 } 263 263 264 /** 264 265 * Enqueues JS file. … … 588 589 <?php endif; ?> 589 590 590 <p class="submit"><?php submit_button( __( 'Save Changes' ), 'primary', 'submit', false ); ?></p>591 <p class="submit"><?php submit_button( __( 'Save Changes', 'indieblocks' ), 'primary', 'submit', false ); ?></p> 591 592 </form> 592 593 </div> -
indieblocks/trunk/includes/class-parser.php
r3035452 r3261761 329 329 } elseif ( ! empty( $this->mf2['items'][0]['properties']['content'][0]['text'] ) ) { 330 330 return $this->mf2['items'][0]['properties']['content'][0]['text']; 331 } elseif ( ! empty( $this->mf2['items'][0]['properties']['content'][0] && is_string( $this->mf2['items'][0]['properties']['content'][0] )) ) {331 } elseif ( ! empty( $this->mf2['items'][0]['properties']['content'][0] ) && is_string( $this->mf2['items'][0]['properties']['content'][0] ) ) { 332 332 return $this->mf2['items'][0]['properties']['content'][0]; 333 333 } -
indieblocks/trunk/includes/class-plugin.php
r3149625 r3261761 15 15 * Plugin version. 16 16 */ 17 const PLUGIN_VERSION = '0.13. 1';17 const PLUGIN_VERSION = '0.13.2'; 18 18 19 19 /** -
indieblocks/trunk/includes/image-proxy/class-image-proxy.php
r3149625 r3261761 42 42 43 43 $options = \IndieBlocks\get_options(); 44 if ( ! empty( $options['image_proxy_secret'] ) && hash_hmac( 'sha1', $url, $options['image_proxy_secret'] ) !== $hash ) { 44 if ( empty( $hash ) ) { 45 return new \WP_Error( 'invalid_hash', esc_html__( 'Invalid hash.', 'indieblocks' ), array( 'status' => 400 ) ); 46 } 47 48 if ( empty( $options['image_proxy_secret'] ) ) { 49 return new \WP_Error( 'invalid_hash', esc_html__( 'Invalid hash.', 'indieblocks' ), array( 'status' => 400 ) ); 50 } 51 52 if ( hash_hmac( 'sha1', $url, $options['image_proxy_secret'] ) !== $hash ) { 45 53 return new \WP_Error( 'invalid_hash', esc_html__( 'Invalid hash.', 'indieblocks' ), array( 'status' => 400 ) ); 46 54 } -
indieblocks/trunk/indieblocks.php
r3149625 r3261761 9 9 * License URI: http://www.gnu.org/licenses/gpl-3.0.html 10 10 * Text Domain: indieblocks 11 * Version: 0.13. 111 * Version: 0.13.2 12 12 * Requires at least: 6.2 13 13 * GitHub Plugin URI: https://github.com/janboddez/indieblocks -
indieblocks/trunk/languages/indieblocks.pot
r3088601 r3261761 1 # Copyright (C) 202 4Jan Boddez1 # Copyright (C) 2025 Jan Boddez 2 2 # This file is distributed under the GNU General Public License v3. 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: IndieBlocks 0.13. 0\n"5 "Project-Id-Version: IndieBlocks 0.13.2\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/indieblocks\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 202 4-05-18T10:43:53+02:00\n"12 "POT-Creation-Date: 2025-03-25T20:20:00+01:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.10.0\n" … … 19 19 #: includes/class-options-handler.php:223 20 20 #: includes/class-options-handler.php:224 21 #: includes/class-options-handler.php:39 521 #: includes/class-options-handler.php:396 22 22 msgid "IndieBlocks" 23 23 msgstr "" … … 53 53 msgstr "" 54 54 55 #: includes/class-blocks.php:243 55 #: includes/class-blocks.php:244 56 msgid "Reaction counts" 57 msgstr "" 58 59 #: includes/class-blocks.php:253 60 #: includes/class-post-types.php:113 61 msgid "Likes" 62 msgstr "" 63 64 #: includes/class-blocks.php:263 65 msgid "Bookmarks" 66 msgstr "" 67 68 #: includes/class-blocks.php:273 69 msgid "Reposts" 70 msgstr "" 71 72 #: includes/class-blocks.php:289 56 73 msgid "Note Starter Pattern" 57 74 msgstr "" 58 75 59 #: includes/class-blocks.php:2 4476 #: includes/class-blocks.php:290 60 77 msgid "A nearly blank starter pattern for “IndieWeb”-style notes." 61 78 msgstr "" 62 79 63 #: includes/class-blocks.php: 26180 #: includes/class-blocks.php:307 64 81 msgid "Repost Starter Pattern" 65 82 msgstr "" 66 83 67 #: includes/class-blocks.php: 26284 #: includes/class-blocks.php:308 68 85 msgid "A nearly blank starter pattern for “IndieWeb”-style reposts." 69 86 msgstr "" 70 87 71 88 #. translators: %s: site title 72 #: includes/class-feeds.php:126 89 #: includes/class-feeds.php:129 90 #: includes/class-feeds.php:148 73 91 msgid "Posts – %s" 74 92 msgstr "" … … 101 119 102 120 #. translators: %1$s: Link to the "liked" page. %2$s: Author of the "liked" page. 103 #: includes/class-micropub-compat.php:2 80121 #: includes/class-micropub-compat.php:273 104 122 #: assets/common.js:12 105 123 msgid "Likes %1$s by %2$s." … … 107 125 108 126 #. translators: %s: Link to the "liked" page. 109 #: includes/class-micropub-compat.php: 303110 #: includes/class-micropub-compat.php:31 8127 #: includes/class-micropub-compat.php:296 128 #: includes/class-micropub-compat.php:311 111 129 #: assets/common.js:23 112 130 #: blocks/context/block.js:12 … … 115 133 116 134 #. translators: %1$s: Link to the bookmarked page. %2$s: Author of the bookmarked page. 117 #: includes/class-micropub-compat.php:3 43135 #: includes/class-micropub-compat.php:336 118 136 #: assets/common.js:10 119 137 msgid "Bookmarked %1$s by %2$s." … … 121 139 122 140 #. translators: %s: Link to the bookmarked page. 123 #: includes/class-micropub-compat.php:3 66124 #: includes/class-micropub-compat.php:3 81141 #: includes/class-micropub-compat.php:359 142 #: includes/class-micropub-compat.php:374 125 143 #: assets/common.js:21 126 144 #: blocks/context/block.js:10 … … 130 148 131 149 #. translators: %1$s: Link to the page being replied to. %2$s: Author of the page being replied to. 132 #: includes/class-micropub-compat.php: 406150 #: includes/class-micropub-compat.php:399 133 151 #: assets/common.js:14 134 152 msgid "In reply to %1$s by %2$s." … … 136 154 137 155 #. translators: %s: Link to the page being replied to. 138 #: includes/class-micropub-compat.php:42 9139 #: includes/class-micropub-compat.php:4 44156 #: includes/class-micropub-compat.php:422 157 #: includes/class-micropub-compat.php:437 140 158 #: assets/common.js:25 141 159 #: blocks/context/block.js:14 … … 145 163 146 164 #. translators: %1$s: Link to the "page" being reposted. %2$s: Author of the "page" being reposted. 147 #: includes/class-micropub-compat.php:46 9165 #: includes/class-micropub-compat.php:462 148 166 #: assets/common.js:16 149 167 msgid "Reposted %1$s by %2$s." … … 151 169 152 170 #. translators: %s: Link to the "page" being reposted. 153 #: includes/class-micropub-compat.php:4 92154 #: includes/class-micropub-compat.php:50 7171 #: includes/class-micropub-compat.php:485 172 #: includes/class-micropub-compat.php:500 155 173 #: assets/common.js:27 156 174 #: blocks/context/block.js:16 … … 159 177 msgstr "" 160 178 161 #: includes/class-options-handler.php:40 4179 #: includes/class-options-handler.php:405 162 180 msgid "Microformats and Blocks" 163 181 msgstr "" 164 182 165 #: includes/class-options-handler.php:40 5166 #: includes/class-options-handler.php:51 4183 #: includes/class-options-handler.php:406 184 #: includes/class-options-handler.php:515 167 185 msgid "Post Types" 168 186 msgstr "" 169 187 170 #: includes/class-options-handler.php:40 6171 #: includes/class-options-handler.php:5 09172 #: includes/webmention/class-webmention-receiver.php:33 5173 #: includes/webmention/class-webmention-sender.php:6 20174 #: includes/webmention/class-webmention-sender.php:6 41175 #: assets/webmention.js:1 57176 #: assets/webmention.js:1 73188 #: includes/class-options-handler.php:407 189 #: includes/class-options-handler.php:510 190 #: includes/webmention/class-webmention-receiver.php:339 191 #: includes/webmention/class-webmention-sender.php:635 192 #: includes/webmention/class-webmention-sender.php:656 193 #: assets/webmention.js:147 194 #: assets/webmention.js:163 177 195 msgid "Webmention" 178 196 msgstr "" 179 197 180 #: includes/class-options-handler.php:40 7198 #: includes/class-options-handler.php:408 181 199 msgid "Miscellaneous" 182 200 msgstr "" 183 201 184 #: includes/class-options-handler.php:41 3202 #: includes/class-options-handler.php:414 185 203 msgid "Blocks" 186 204 msgstr "" 187 205 188 #: includes/class-options-handler.php:41 4206 #: includes/class-options-handler.php:415 189 207 msgid "Enable blocks" 190 208 msgstr "" 191 209 192 #: includes/class-options-handler.php:41 5210 #: includes/class-options-handler.php:416 193 211 msgid "Introduces several blocks that help ensure replies, likes, etc., are microformatted correctly." 194 212 msgstr "" 195 213 196 #: includes/class-options-handler.php:41 8214 #: includes/class-options-handler.php:419 197 215 msgid "Block Theme Enhancements" 198 216 msgstr "" 199 217 200 #: includes/class-options-handler.php:4 19218 #: includes/class-options-handler.php:420 201 219 msgid "Enable microformats" 202 220 msgstr "" 203 221 204 #: includes/class-options-handler.php:42 0222 #: includes/class-options-handler.php:421 205 223 msgid "Adds microformats2 to your site’s front end. Requires the active theme to support WordPress’ new Site Editor." 206 224 msgstr "" 207 225 208 #: includes/class-options-handler.php:42 4209 #: includes/class-options-handler.php:48 4226 #: includes/class-options-handler.php:425 227 #: includes/class-options-handler.php:485 210 228 msgid "Hide note and like titles" 211 229 msgstr "" 212 230 213 #: includes/class-options-handler.php:42 5231 #: includes/class-options-handler.php:426 214 232 msgid "(Experimental) Attempts to (visually) hide note and like titles, if you have enabled microformats and your theme supports the Site Editor." 215 233 msgstr "" 216 234 217 #: includes/class-options-handler.php:42 7235 #: includes/class-options-handler.php:428 218 236 msgid "Exempt bookmark titles" 219 237 msgstr "" 220 238 221 #: includes/class-options-handler.php:42 8239 #: includes/class-options-handler.php:429 222 240 msgid "Do <em>not</em> hide bookmark titles, <em>and</em> have them link to the bookmarked page." 223 241 msgstr "" 224 242 225 #: includes/class-options-handler.php:4 29243 #: includes/class-options-handler.php:430 226 244 msgid "Exempt like titles" 227 245 msgstr "" 228 246 229 #: includes/class-options-handler.php:43 0247 #: includes/class-options-handler.php:431 230 248 msgid "Do <em>not</em> hide like titles, <em>and</em> have them link to the liked page." 231 249 msgstr "" 232 250 233 #: includes/class-options-handler.php:43 6251 #: includes/class-options-handler.php:437 234 252 msgid "<em>Always</em> show notes and likes in full" 235 253 msgstr "" 236 254 237 #: includes/class-options-handler.php:43 7255 #: includes/class-options-handler.php:438 238 256 msgid "Attempts to dynamically replace instances of the Post Excerpt block with a Post Content block, but only for short-form post types such as notes and likes." 239 257 msgstr "" 240 258 241 #: includes/class-options-handler.php:44 6259 #: includes/class-options-handler.php:447 242 260 msgid "Custom Post Types" 243 261 msgstr "" 244 262 245 #: includes/class-options-handler.php:44 8263 #: includes/class-options-handler.php:449 246 264 msgid "Enable “Notes”" 247 msgstr ""248 249 #: includes/class-options-handler.php:450250 #: includes/class-options-handler.php:460251 msgid "Include in main feed"252 265 msgstr "" 253 266 254 267 #: includes/class-options-handler.php:451 255 268 #: includes/class-options-handler.php:461 256 msgid " Show on blog page"269 msgid "Include in main feed" 257 270 msgstr "" 258 271 259 272 #: includes/class-options-handler.php:452 260 273 #: includes/class-options-handler.php:462 261 msgid " Include in author archives"274 msgid "Show on blog page" 262 275 msgstr "" 263 276 264 277 #: includes/class-options-handler.php:453 265 278 #: includes/class-options-handler.php:463 279 msgid "Include in author archives" 280 msgstr "" 281 282 #: includes/class-options-handler.php:454 283 #: includes/class-options-handler.php:464 266 284 msgid "Enable categories and tags" 267 285 msgstr "" 268 286 269 #: includes/class-options-handler.php:45 8287 #: includes/class-options-handler.php:459 270 288 msgid "Enable “Likes”" 271 289 msgstr "" 272 290 273 #: includes/class-options-handler.php:46 7291 #: includes/class-options-handler.php:468 274 292 msgid "Random Slugs" 275 293 msgstr "" 276 294 277 #: includes/class-options-handler.php:46 8295 #: includes/class-options-handler.php:469 278 296 msgid "Generate random slugs" 279 297 msgstr "" 280 298 281 #: includes/class-options-handler.php:4 69299 #: includes/class-options-handler.php:470 282 300 msgid "Autogenerate unique note and like slugs. Disable for WordPress’ default behavior." 283 301 msgstr "" 284 302 285 #: includes/class-options-handler.php:47 2303 #: includes/class-options-handler.php:473 286 304 msgid "Autogenerate Titles" 287 305 msgstr "" 288 306 289 #: includes/class-options-handler.php:47 4307 #: includes/class-options-handler.php:475 290 308 msgid "Automatically generate titles" 291 309 msgstr "" 292 310 293 #: includes/class-options-handler.php:47 6311 #: includes/class-options-handler.php:477 294 312 msgid "Have bookmark titles reflect bookmarked pages" 295 313 msgstr "" 296 314 297 #: includes/class-options-handler.php:47 7315 #: includes/class-options-handler.php:478 298 316 msgid "“Bookmarks” are <em>notes that contain a Bookmark block</em>." 299 317 msgstr "" 300 318 301 #: includes/class-options-handler.php:47 8319 #: includes/class-options-handler.php:479 302 320 msgid "Have like titles reflect liked pages" 303 321 msgstr "" 304 322 305 #: includes/class-options-handler.php:48 3323 #: includes/class-options-handler.php:484 306 324 msgid "Web Feeds" 307 325 msgstr "" 308 326 309 #: includes/class-options-handler.php:48 5327 #: includes/class-options-handler.php:486 310 328 msgid "(Experimental) Remove note (and like) titles from RSS and Atom feeds. This may help feed readers recognize them as “notes,” but might conflict with existing custom feed templates." 311 329 msgstr "" 312 330 313 #: includes/class-options-handler.php:4 89331 #: includes/class-options-handler.php:490 314 332 msgid "Date-Based Archives" 315 333 msgstr "" 316 334 317 #: includes/class-options-handler.php:49 0335 #: includes/class-options-handler.php:491 318 336 msgid "Enable date-based archives" 319 337 msgstr "" 320 338 321 #: includes/class-options-handler.php:49 1339 #: includes/class-options-handler.php:492 322 340 msgid "(Experimental) Enable year, month, and day archives for notes and likes." 323 341 msgstr "" 324 342 325 #: includes/class-options-handler.php:49 4343 #: includes/class-options-handler.php:495 326 344 msgid "Permalink Format" 327 345 msgstr "" 328 346 329 #: includes/class-options-handler.php: 499347 #: includes/class-options-handler.php:500 330 348 msgid "(Experimental) Set a custom note and like permalink format." 331 349 msgstr "" 332 350 333 #: includes/class-options-handler.php:51 0351 #: includes/class-options-handler.php:511 334 352 msgid "Enable Webmention" 335 353 msgstr "" 336 354 337 #: includes/class-options-handler.php:51 1355 #: includes/class-options-handler.php:512 338 356 msgid "(Experimental) Automatically notify pages you’ve linked to, and allow other websites to do the same. You’ll probably want to leave this disabled if you’re already using a different Webmention plugin." 339 357 msgstr "" 340 358 341 #: includes/class-options-handler.php:5 19359 #: includes/class-options-handler.php:520 342 360 msgid "The post types for which webmentions (outgoing and incoming) should be enabled." 343 361 msgstr "" 344 362 345 #: includes/class-options-handler.php:52 3363 #: includes/class-options-handler.php:524 346 364 msgid "Webmention Delay" 347 365 msgstr "" 348 366 349 #: includes/class-options-handler.php:52 5367 #: includes/class-options-handler.php:526 350 368 msgid "The time, in seconds, WordPress should delay sending webmentions after a post is first published." 351 369 msgstr "" 352 370 353 #: includes/class-options-handler.php:52 8371 #: includes/class-options-handler.php:529 354 372 msgid "“Proxy” Avatars" 355 373 msgstr "" 356 374 357 #: includes/class-options-handler.php:5 29375 #: includes/class-options-handler.php:530 358 376 msgid "“Reverse proxy” avatars" 359 377 msgstr "" 360 378 361 #: includes/class-options-handler.php:53 0379 #: includes/class-options-handler.php:531 362 380 msgid "Serve remote avatars from this site’s domain." 363 381 msgstr "" 364 382 365 #: includes/class-options-handler.php:53 3383 #: includes/class-options-handler.php:534 366 384 msgid "Proxy Secret" 367 385 msgstr "" 368 386 369 #: includes/class-options-handler.php:53 5387 #: includes/class-options-handler.php:536 370 388 msgid "Generate" 371 389 msgstr "" 372 390 373 #: includes/class-options-handler.php:53 6391 #: includes/class-options-handler.php:537 374 392 msgid "To work, the image proxy needs a (sufficiently random) secret, much like an autogenerated password." 375 393 msgstr "" 376 394 377 #: includes/class-options-handler.php:5 39395 #: includes/class-options-handler.php:540 378 396 msgid "Cache Avatars" 379 397 msgstr "" 380 398 381 #: includes/class-options-handler.php:54 0399 #: includes/class-options-handler.php:541 382 400 msgid "Cache webmention avatars" 383 401 msgstr "" 384 402 385 #: includes/class-options-handler.php:54 1403 #: includes/class-options-handler.php:542 386 404 msgid "(Experimental) Attempt to locally cache webmention avatars." 387 405 msgstr "" 388 406 389 #: includes/class-options-handler.php:54 4407 #: includes/class-options-handler.php:545 390 408 msgid "Facepile" 391 409 msgstr "" 392 410 393 #: includes/class-options-handler.php:54 6411 #: includes/class-options-handler.php:547 394 412 msgid "“Facepile” bookmarks, likes, and reposts" 395 413 msgstr "" 396 414 397 #: includes/class-options-handler.php:54 7415 #: includes/class-options-handler.php:548 398 416 msgid "(Experimental) Display bookmarks, likes, and reposts separate from “regular” comments." 399 417 msgstr "" 400 418 401 #: includes/class-options-handler.php:54 8419 #: includes/class-options-handler.php:549 402 420 msgid "Auto-insert Facepile block." 403 421 msgstr "" 404 422 405 #: includes/class-options-handler.php:5 49423 #: includes/class-options-handler.php:550 406 424 msgid "(Experimental) Automatically insert a Facepile block in front of every Comments block. (You can still customize its look and feel by editing it in the Site Editor.)" 407 425 msgstr "" 408 426 409 #: includes/class-options-handler.php:55 8427 #: includes/class-options-handler.php:559 410 428 msgid "Featured Images" 411 429 msgstr "" 412 430 413 #: includes/class-options-handler.php:5 59431 #: includes/class-options-handler.php:560 414 432 msgid "Add Featured Images to feeds" 415 433 msgstr "" 416 434 417 #: includes/class-options-handler.php:56 0435 #: includes/class-options-handler.php:561 418 436 msgid "(Experimental) Prepend Featured Images to feed items." 419 437 msgstr "" 420 438 421 #: includes/class-options-handler.php:56 3439 #: includes/class-options-handler.php:564 422 440 msgid "Location and Weather" 423 441 msgstr "" 424 442 425 #: includes/class-options-handler.php:56 4443 #: includes/class-options-handler.php:565 426 444 msgid "Enable location functions" 427 445 msgstr "" 428 446 429 #: includes/class-options-handler.php:56 5447 #: includes/class-options-handler.php:566 430 448 msgid "(Experimental) Add basic location and weather data to posts." 431 449 msgstr "" 432 450 433 #: includes/class-options-handler.php:56 8451 #: includes/class-options-handler.php:569 434 452 msgid "Weather Units" 435 453 msgstr "" 436 454 437 #: includes/class-options-handler.php:5 69455 #: includes/class-options-handler.php:570 438 456 msgid "Metric" 439 457 msgstr "" 440 458 441 #: includes/class-options-handler.php:57 0459 #: includes/class-options-handler.php:571 442 460 msgid "Imperial" 443 461 msgstr "" 444 462 445 #: includes/class-options-handler.php:57 3463 #: includes/class-options-handler.php:574 446 464 msgid "Micropub" 447 465 msgstr "" 448 466 449 #: includes/class-options-handler.php:57 4467 #: includes/class-options-handler.php:575 450 468 msgid "Deeper Micropub integration" 451 469 msgstr "" 452 470 453 #: includes/class-options-handler.php:57 5471 #: includes/class-options-handler.php:576 454 472 msgid "(Experimental) Add post type and category data to responses to Micropub “config” queries." 455 473 msgstr "" 456 474 457 #: includes/class-options-handler.php:578458 475 #: includes/class-options-handler.php:579 476 #: includes/class-options-handler.php:580 459 477 msgid "Parse Markdown" 460 478 msgstr "" 461 479 462 #: includes/class-options-handler.php:58 0480 #: includes/class-options-handler.php:581 463 481 msgid "(Experimental) Parse Markdown inside “Micropub” notes or likes." 464 482 msgstr "" 465 483 466 #: includes/class-options-handler.php:58 3484 #: includes/class-options-handler.php:584 467 485 msgid "Link Preview Cards" 468 486 msgstr "" 469 487 470 #: includes/class-options-handler.php:58 4488 #: includes/class-options-handler.php:585 471 489 msgid "Generate preview cards" 472 490 msgstr "" 473 491 474 #: includes/class-options-handler.php:58 5492 #: includes/class-options-handler.php:586 475 493 msgid "(Experimental) Fetch link metadata in order to generate “link preview cards.”" 476 494 msgstr "" 477 495 478 #: includes/class-options-handler.php:699 496 #: includes/class-options-handler.php:591 497 msgid "Save Changes" 498 msgstr "" 499 500 #: includes/class-options-handler.php:700 479 501 #: includes/class-post-types.php:86 480 502 msgid "notes" 481 503 msgstr "" 482 504 483 #: includes/class-options-handler.php:72 7505 #: includes/class-options-handler.php:728 484 506 msgid "sample-post" 485 507 msgstr "" … … 525 547 msgstr "" 526 548 527 #: includes/class-post-types.php:113528 msgid "Likes"529 msgstr ""530 531 549 #: includes/class-post-types.php:114 532 550 #: blocks/context/block.js:71 551 #: blocks/facepile-content/block.js:87 533 552 #: blocks/like/block.js:88 534 553 msgid "Like" … … 576 595 577 596 #: includes/image-proxy/class-image-proxy.php:45 597 #: includes/image-proxy/class-image-proxy.php:49 598 #: includes/image-proxy/class-image-proxy.php:53 578 599 msgid "Invalid hash." 579 600 msgstr "" 580 601 581 #: includes/image-proxy/class-image-proxy.php:86 602 #: includes/image-proxy/class-image-proxy.php:88 603 msgid "Could not open URL." 604 msgstr "" 605 606 #: includes/image-proxy/class-image-proxy.php:98 582 607 msgid "Something went wrong." 583 608 msgstr "" 584 609 585 #: includes/webmention/class-webmention-parser.php:1 18610 #: includes/webmention/class-webmention-parser.php:121 586 611 msgid "… bookmarked this!" 587 612 msgstr "" 588 613 589 #: includes/webmention/class-webmention-parser.php:12 3614 #: includes/webmention/class-webmention-parser.php:126 590 615 msgid "… liked this!" 591 616 msgstr "" 592 617 593 #: includes/webmention/class-webmention-parser.php:1 27618 #: includes/webmention/class-webmention-parser.php:130 594 619 msgid "… reposted this!" 595 620 msgstr "" 596 621 597 #: includes/webmention/class-webmention-parser.php:13 1622 #: includes/webmention/class-webmention-parser.php:134 598 623 msgid "… (wants to) read this!" 599 624 msgstr "" 600 625 601 #: includes/webmention/class-webmention-receiver.php:25 1626 #: includes/webmention/class-webmention-receiver.php:255 602 627 msgid "… commented on this." 603 628 msgstr "" 604 629 605 #: includes/webmention/class-webmention-receiver.php:35 4630 #: includes/webmention/class-webmention-receiver.php:358 606 631 msgid "Source" 607 632 msgstr "" 608 633 609 #: includes/webmention/class-webmention-receiver.php:3 57634 #: includes/webmention/class-webmention-receiver.php:361 610 635 #: blocks/context/block.js:67 611 636 msgid "Type" 612 637 msgstr "" 613 638 614 #: includes/webmention/class-webmention-receiver.php:36 1639 #: includes/webmention/class-webmention-receiver.php:365 615 640 msgid "Avatar" 616 641 msgstr "" 617 642 618 #: includes/webmention/class-webmention-receiver.php:36 5643 #: includes/webmention/class-webmention-receiver.php:369 619 644 msgid "Delete" 620 645 msgstr "" 621 646 622 #: includes/webmention/class-webmention-receiver.php:40 3647 #: includes/webmention/class-webmention-receiver.php:407 623 648 msgid "Missing or invalid nonce." 624 649 msgstr "" 625 650 626 #: includes/webmention/class-webmention-receiver.php:4 09651 #: includes/webmention/class-webmention-receiver.php:413 627 652 msgid "Invalid comment ID." 628 653 msgstr "" 629 654 630 #: includes/webmention/class-webmention-receiver.php:417 655 #: includes/webmention/class-webmention-receiver.php:421 656 #: includes/webmention/class-webmention-sender.php:780 657 #: includes/webmention/class-webmention-sender.php:797 658 msgid "Insufficient rights." 659 msgstr "" 660 661 #: includes/webmention/class-webmention-sender.php:542 662 #: includes/webmention/class-webmention-sender.php:717 663 #: assets/webmention.js:134 664 msgid "Webmention scheduled." 665 msgstr "" 666 667 #. translators: 1: Webmention endpoint 2: Date sent 668 #: includes/webmention/class-webmention-sender.php:696 669 msgid "Sent to %1$s on %2$s. Response code: %3$d." 670 msgstr "" 671 672 #. translators: 1: Webmention endpoint 2: Date sent 673 #: includes/webmention/class-webmention-sender.php:696 674 msgid "M j, Y \\a\\t H:i" 675 msgstr "" 676 677 #. translators: Webmention endpoint 678 #: includes/webmention/class-webmention-sender.php:699 679 #: assets/webmention.js:98 680 msgid "Could not send webmention to %s." 681 msgstr "" 682 683 #. translators: Webmention endpoint 684 #: includes/webmention/class-webmention-sender.php:702 685 #: assets/webmention.js:115 686 msgid "Could not send webmention to %s. Trying again soon." 687 msgstr "" 688 689 #: includes/webmention/class-webmention-sender.php:712 690 #: includes/webmention/class-webmention-sender.php:720 691 #: assets/webmention.js:182 692 msgid "Resend" 693 msgstr "" 694 695 #: includes/webmention/class-webmention-sender.php:724 696 #: assets/webmention.js:140 697 msgid "No endpoints found." 698 msgstr "" 699 700 #: includes/webmention/class-webmention-sender.php:753 701 msgid "Missing nonce." 702 msgstr "" 703 704 #: includes/webmention/class-webmention-sender.php:759 705 msgid "Missing webmention type." 706 msgstr "" 707 631 708 #: includes/webmention/class-webmention-sender.php:765 632 #: includes/webmention/class-webmention-sender.php:782633 msgid "Insufficient rights."634 msgstr ""635 636 #: includes/webmention/class-webmention-sender.php:527637 #: includes/webmention/class-webmention-sender.php:702638 #: assets/webmention.js:144639 msgid "Webmention scheduled."640 msgstr ""641 642 #. translators: 1: Webmention endpoint 2: Date sent643 #: includes/webmention/class-webmention-sender.php:681644 msgid "Sent to %1$s on %2$s. Response code: %3$d."645 msgstr ""646 647 #. translators: 1: Webmention endpoint 2: Date sent648 #: includes/webmention/class-webmention-sender.php:681649 msgid "M j, Y \\a\\t H:i"650 msgstr ""651 652 #. translators: Webmention endpoint653 #: includes/webmention/class-webmention-sender.php:684654 #: assets/webmention.js:108655 msgid "Could not send webmention to %s."656 msgstr ""657 658 #. translators: Webmention endpoint659 #: includes/webmention/class-webmention-sender.php:687660 #: assets/webmention.js:125661 msgid "Could not send webmention to %s. Trying again soon."662 msgstr ""663 664 #: includes/webmention/class-webmention-sender.php:697665 #: includes/webmention/class-webmention-sender.php:705666 #: assets/webmention.js:192667 msgid "Resend"668 msgstr ""669 670 #: includes/webmention/class-webmention-sender.php:709671 #: assets/webmention.js:150672 msgid "No endpoints found."673 msgstr ""674 675 #: includes/webmention/class-webmention-sender.php:738676 msgid "Missing nonce."677 msgstr ""678 679 #: includes/webmention/class-webmention-sender.php:744680 msgid "Missing webmention type."681 msgstr ""682 683 #: includes/webmention/class-webmention-sender.php:750684 709 msgid "Invalid nonce." 685 710 msgstr "" 686 711 687 #: includes/webmention/class-webmention-sender.php:7 56712 #: includes/webmention/class-webmention-sender.php:771 688 713 msgid "Invalid object ID." 689 714 msgstr "" 690 715 691 #: includes/webmention/class-webmention.php:2 44692 #: includes/webmention/class-webmention.php:2 46716 #: includes/webmention/class-webmention.php:257 717 #: includes/webmention/class-webmention.php:259 693 718 #: blocks/facepile/block.js:28 694 719 msgid "Likes, Bookmarks, and Reposts" … … 700 725 701 726 #. translators: %1$s: Webmention endpoint. %2$s: HTTP response code. 702 #: assets/webmention.js: 88727 #: assets/webmention.js:78 703 728 msgid "Sent to %1$s: %2$d." 704 729 msgstr "" 705 730 706 #: assets/webmention.js:1 86731 #: assets/webmention.js:176 707 732 msgid "Reschedule webmentions?" 708 733 msgstr "" … … 710 735 #: blocks/bookmark/block.js:88 711 736 #: blocks/context/block.js:70 737 #: blocks/facepile-content/block.js:70 712 738 msgid "Bookmark" 713 739 msgstr "" … … 770 796 771 797 #: blocks/context/block.js:73 798 #: blocks/facepile-content/block.js:104 772 799 #: blocks/repost/block.js:88 773 800 msgid "Repost" … … 779 806 msgstr "" 780 807 781 #: blocks/facepile-content/block.js:61 808 #: blocks/facepile-content/block.js:66 809 msgid "Comment Types" 810 msgstr "" 811 812 #: blocks/facepile-content/block.js:124 813 msgid "Count Only" 814 msgstr "" 815 816 #: blocks/facepile-content/block.js:128 817 msgid "Show count only" 818 msgstr "" 819 820 #: blocks/facepile-content/block.js:135 821 msgid "Always show count" 822 msgstr "" 823 824 #: blocks/facepile-content/block.js:145 782 825 msgid "Avatars" 783 826 msgstr "" 784 827 785 #: blocks/facepile-content/block.js: 65828 #: blocks/facepile-content/block.js:149 786 829 msgid "Avatar size" 787 830 msgstr "" 788 831 789 #: blocks/facepile-content/block.js: 75832 #: blocks/facepile-content/block.js:159 790 833 msgid "Background color" 791 834 msgstr "" 792 835 793 #: blocks/facepile-content/block.js: 87836 #: blocks/facepile-content/block.js:171 794 837 msgid "Show icons" 795 838 msgstr "" 796 839 797 #: blocks/facepile-content/block.js: 95840 #: blocks/facepile-content/block.js:179 798 841 msgid "Icon color" 799 842 msgstr "" 800 843 801 #: blocks/facepile-content/block.js:1 07844 #: blocks/facepile-content/block.js:191 802 845 msgid "Icon background color" 803 846 msgstr "" -
indieblocks/trunk/readme.txt
r3149625 r3261761 1 1 === IndieBlocks === 2 2 Contributors: janboddez 3 Tags: blocks, gutenberg, indieweb, notes, likes, microblog, microblogging, micropub, fse, site editor, webmention, syndication4 Tested up to: 6. 65 Stable tag: 0.13. 13 Tags: blocks, indieweb, notes, microblog, webmention 4 Tested up to: 6.7 5 Stable tag: 0.13.2 6 6 License: GNU General Public License v3.0 7 7 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 36 36 37 37 == Changelog == 38 = 0.13.2 = 39 Fixed "image proxy" hash verification. 40 38 41 = 0.13.1 = 39 42 Minor bug fixes. Improved "Facepile" compatibility (with the ActivityPub plugin).
Note: See TracChangeset
for help on using the changeset viewer.