Plugin Directory

Changeset 3261761


Ignore:
Timestamp:
03/25/2025 07:23:14 PM (12 months ago)
Author:
janboddez
Message:

Upload v0.13.2

Location:
indieblocks/trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • indieblocks/trunk/includes/class-options-handler.php

    r3088601 r3261761  
    261261        );
    262262    }
     263
    263264    /**
    264265     * Enqueues JS file.
     
    588589                <?php endif; ?>
    589590
    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>
    591592            </form>
    592593        </div>
  • indieblocks/trunk/includes/class-parser.php

    r3035452 r3261761  
    329329        } elseif ( ! empty( $this->mf2['items'][0]['properties']['content'][0]['text'] ) ) {
    330330            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] ) ) {
    332332            return $this->mf2['items'][0]['properties']['content'][0];
    333333        }
  • indieblocks/trunk/includes/class-plugin.php

    r3149625 r3261761  
    1515     * Plugin version.
    1616     */
    17     const PLUGIN_VERSION = '0.13.1';
     17    const PLUGIN_VERSION = '0.13.2';
    1818
    1919    /**
  • indieblocks/trunk/includes/image-proxy/class-image-proxy.php

    r3149625 r3261761  
    4242
    4343        $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 ) {
    4553            return new \WP_Error( 'invalid_hash', esc_html__( 'Invalid hash.', 'indieblocks' ), array( 'status' => 400 ) );
    4654        }
  • indieblocks/trunk/indieblocks.php

    r3149625 r3261761  
    99 * License URI:       http://www.gnu.org/licenses/gpl-3.0.html
    1010 * Text Domain:       indieblocks
    11  * Version:           0.13.1
     11 * Version:           0.13.2
    1212 * Requires at least: 6.2
    1313 * GitHub Plugin URI: https://github.com/janboddez/indieblocks
  • indieblocks/trunk/languages/indieblocks.pot

    r3088601 r3261761  
    1 # Copyright (C) 2024 Jan Boddez
     1# Copyright (C) 2025 Jan Boddez
    22# This file is distributed under the GNU General Public License v3.
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: IndieBlocks 0.13.0\n"
     5"Project-Id-Version: IndieBlocks 0.13.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/indieblocks\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2024-05-18T10:43:53+02:00\n"
     12"POT-Creation-Date: 2025-03-25T20:20:00+01:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.10.0\n"
     
    1919#: includes/class-options-handler.php:223
    2020#: includes/class-options-handler.php:224
    21 #: includes/class-options-handler.php:395
     21#: includes/class-options-handler.php:396
    2222msgid "IndieBlocks"
    2323msgstr ""
     
    5353msgstr ""
    5454
    55 #: includes/class-blocks.php:243
     55#: includes/class-blocks.php:244
     56msgid "Reaction counts"
     57msgstr ""
     58
     59#: includes/class-blocks.php:253
     60#: includes/class-post-types.php:113
     61msgid "Likes"
     62msgstr ""
     63
     64#: includes/class-blocks.php:263
     65msgid "Bookmarks"
     66msgstr ""
     67
     68#: includes/class-blocks.php:273
     69msgid "Reposts"
     70msgstr ""
     71
     72#: includes/class-blocks.php:289
    5673msgid "Note Starter Pattern"
    5774msgstr ""
    5875
    59 #: includes/class-blocks.php:244
     76#: includes/class-blocks.php:290
    6077msgid "A nearly blank starter pattern for &ldquo;IndieWeb&rdquo;-style notes."
    6178msgstr ""
    6279
    63 #: includes/class-blocks.php:261
     80#: includes/class-blocks.php:307
    6481msgid "Repost Starter Pattern"
    6582msgstr ""
    6683
    67 #: includes/class-blocks.php:262
     84#: includes/class-blocks.php:308
    6885msgid "A nearly blank starter pattern for &ldquo;IndieWeb&rdquo;-style reposts."
    6986msgstr ""
    7087
    7188#. translators: %s: site title
    72 #: includes/class-feeds.php:126
     89#: includes/class-feeds.php:129
     90#: includes/class-feeds.php:148
    7391msgid "Posts &#8211; %s"
    7492msgstr ""
     
    101119
    102120#. translators: %1$s: Link to the "liked" page. %2$s: Author of the "liked" page.
    103 #: includes/class-micropub-compat.php:280
     121#: includes/class-micropub-compat.php:273
    104122#: assets/common.js:12
    105123msgid "Likes %1$s by %2$s."
     
    107125
    108126#. translators: %s: Link to the "liked" page.
    109 #: includes/class-micropub-compat.php:303
    110 #: includes/class-micropub-compat.php:318
     127#: includes/class-micropub-compat.php:296
     128#: includes/class-micropub-compat.php:311
    111129#: assets/common.js:23
    112130#: blocks/context/block.js:12
     
    115133
    116134#. translators: %1$s: Link to the bookmarked page. %2$s: Author of the bookmarked page.
    117 #: includes/class-micropub-compat.php:343
     135#: includes/class-micropub-compat.php:336
    118136#: assets/common.js:10
    119137msgid "Bookmarked %1$s by %2$s."
     
    121139
    122140#. translators: %s: Link to the bookmarked page.
    123 #: includes/class-micropub-compat.php:366
    124 #: includes/class-micropub-compat.php:381
     141#: includes/class-micropub-compat.php:359
     142#: includes/class-micropub-compat.php:374
    125143#: assets/common.js:21
    126144#: blocks/context/block.js:10
     
    130148
    131149#. 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:406
     150#: includes/class-micropub-compat.php:399
    133151#: assets/common.js:14
    134152msgid "In reply to %1$s by %2$s."
     
    136154
    137155#. translators: %s: Link to the page being replied to.
    138 #: includes/class-micropub-compat.php:429
    139 #: includes/class-micropub-compat.php:444
     156#: includes/class-micropub-compat.php:422
     157#: includes/class-micropub-compat.php:437
    140158#: assets/common.js:25
    141159#: blocks/context/block.js:14
     
    145163
    146164#. translators: %1$s: Link to the "page" being reposted. %2$s: Author of the "page" being reposted.
    147 #: includes/class-micropub-compat.php:469
     165#: includes/class-micropub-compat.php:462
    148166#: assets/common.js:16
    149167msgid "Reposted %1$s by %2$s."
     
    151169
    152170#. translators: %s: Link to the "page" being reposted.
    153 #: includes/class-micropub-compat.php:492
    154 #: includes/class-micropub-compat.php:507
     171#: includes/class-micropub-compat.php:485
     172#: includes/class-micropub-compat.php:500
    155173#: assets/common.js:27
    156174#: blocks/context/block.js:16
     
    159177msgstr ""
    160178
    161 #: includes/class-options-handler.php:404
     179#: includes/class-options-handler.php:405
    162180msgid "Microformats and Blocks"
    163181msgstr ""
    164182
    165 #: includes/class-options-handler.php:405
    166 #: includes/class-options-handler.php:514
     183#: includes/class-options-handler.php:406
     184#: includes/class-options-handler.php:515
    167185msgid "Post Types"
    168186msgstr ""
    169187
    170 #: includes/class-options-handler.php:406
    171 #: includes/class-options-handler.php:509
    172 #: includes/webmention/class-webmention-receiver.php:335
    173 #: includes/webmention/class-webmention-sender.php:620
    174 #: includes/webmention/class-webmention-sender.php:641
    175 #: assets/webmention.js:157
    176 #: assets/webmention.js:173
     188#: 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
    177195msgid "Webmention"
    178196msgstr ""
    179197
    180 #: includes/class-options-handler.php:407
     198#: includes/class-options-handler.php:408
    181199msgid "Miscellaneous"
    182200msgstr ""
    183201
    184 #: includes/class-options-handler.php:413
     202#: includes/class-options-handler.php:414
    185203msgid "Blocks"
    186204msgstr ""
    187205
    188 #: includes/class-options-handler.php:414
     206#: includes/class-options-handler.php:415
    189207msgid "Enable blocks"
    190208msgstr ""
    191209
    192 #: includes/class-options-handler.php:415
     210#: includes/class-options-handler.php:416
    193211msgid "Introduces several blocks that help ensure replies, likes, etc., are microformatted correctly."
    194212msgstr ""
    195213
    196 #: includes/class-options-handler.php:418
     214#: includes/class-options-handler.php:419
    197215msgid "Block Theme Enhancements"
    198216msgstr ""
    199217
    200 #: includes/class-options-handler.php:419
     218#: includes/class-options-handler.php:420
    201219msgid "Enable microformats"
    202220msgstr ""
    203221
    204 #: includes/class-options-handler.php:420
     222#: includes/class-options-handler.php:421
    205223msgid "Adds microformats2 to your site&rsquo;s front end. Requires the active theme to support WordPress&rsquo; new Site Editor."
    206224msgstr ""
    207225
    208 #: includes/class-options-handler.php:424
    209 #: includes/class-options-handler.php:484
     226#: includes/class-options-handler.php:425
     227#: includes/class-options-handler.php:485
    210228msgid "Hide note and like titles"
    211229msgstr ""
    212230
    213 #: includes/class-options-handler.php:425
     231#: includes/class-options-handler.php:426
    214232msgid "(Experimental) Attempts to (visually) hide note and like titles, if you have enabled microformats and your theme supports the Site Editor."
    215233msgstr ""
    216234
    217 #: includes/class-options-handler.php:427
     235#: includes/class-options-handler.php:428
    218236msgid "Exempt bookmark titles"
    219237msgstr ""
    220238
    221 #: includes/class-options-handler.php:428
     239#: includes/class-options-handler.php:429
    222240msgid "Do <em>not</em> hide bookmark titles, <em>and</em> have them link to the bookmarked page."
    223241msgstr ""
    224242
    225 #: includes/class-options-handler.php:429
     243#: includes/class-options-handler.php:430
    226244msgid "Exempt like titles"
    227245msgstr ""
    228246
    229 #: includes/class-options-handler.php:430
     247#: includes/class-options-handler.php:431
    230248msgid "Do <em>not</em> hide like titles, <em>and</em> have them link to the liked page."
    231249msgstr ""
    232250
    233 #: includes/class-options-handler.php:436
     251#: includes/class-options-handler.php:437
    234252msgid "<em>Always</em> show notes and likes in full"
    235253msgstr ""
    236254
    237 #: includes/class-options-handler.php:437
     255#: includes/class-options-handler.php:438
    238256msgid "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."
    239257msgstr ""
    240258
    241 #: includes/class-options-handler.php:446
     259#: includes/class-options-handler.php:447
    242260msgid "Custom Post Types"
    243261msgstr ""
    244262
    245 #: includes/class-options-handler.php:448
     263#: includes/class-options-handler.php:449
    246264msgid "Enable &ldquo;Notes&rdquo;"
    247 msgstr ""
    248 
    249 #: includes/class-options-handler.php:450
    250 #: includes/class-options-handler.php:460
    251 msgid "Include in main feed"
    252265msgstr ""
    253266
    254267#: includes/class-options-handler.php:451
    255268#: includes/class-options-handler.php:461
    256 msgid "Show on blog page"
     269msgid "Include in main feed"
    257270msgstr ""
    258271
    259272#: includes/class-options-handler.php:452
    260273#: includes/class-options-handler.php:462
    261 msgid "Include in author archives"
     274msgid "Show on blog page"
    262275msgstr ""
    263276
    264277#: includes/class-options-handler.php:453
    265278#: includes/class-options-handler.php:463
     279msgid "Include in author archives"
     280msgstr ""
     281
     282#: includes/class-options-handler.php:454
     283#: includes/class-options-handler.php:464
    266284msgid "Enable categories and tags"
    267285msgstr ""
    268286
    269 #: includes/class-options-handler.php:458
     287#: includes/class-options-handler.php:459
    270288msgid "Enable &ldquo;Likes&rdquo;"
    271289msgstr ""
    272290
    273 #: includes/class-options-handler.php:467
     291#: includes/class-options-handler.php:468
    274292msgid "Random Slugs"
    275293msgstr ""
    276294
    277 #: includes/class-options-handler.php:468
     295#: includes/class-options-handler.php:469
    278296msgid "Generate random slugs"
    279297msgstr ""
    280298
    281 #: includes/class-options-handler.php:469
     299#: includes/class-options-handler.php:470
    282300msgid "Autogenerate unique note and like slugs. Disable for WordPress&rsquo; default behavior."
    283301msgstr ""
    284302
    285 #: includes/class-options-handler.php:472
     303#: includes/class-options-handler.php:473
    286304msgid "Autogenerate Titles"
    287305msgstr ""
    288306
    289 #: includes/class-options-handler.php:474
     307#: includes/class-options-handler.php:475
    290308msgid "Automatically generate titles"
    291309msgstr ""
    292310
    293 #: includes/class-options-handler.php:476
     311#: includes/class-options-handler.php:477
    294312msgid "Have bookmark titles reflect bookmarked pages"
    295313msgstr ""
    296314
    297 #: includes/class-options-handler.php:477
     315#: includes/class-options-handler.php:478
    298316msgid "&ldquo;Bookmarks&rdquo; are <em>notes that contain a Bookmark block</em>."
    299317msgstr ""
    300318
    301 #: includes/class-options-handler.php:478
     319#: includes/class-options-handler.php:479
    302320msgid "Have like titles reflect liked pages"
    303321msgstr ""
    304322
    305 #: includes/class-options-handler.php:483
     323#: includes/class-options-handler.php:484
    306324msgid "Web Feeds"
    307325msgstr ""
    308326
    309 #: includes/class-options-handler.php:485
     327#: includes/class-options-handler.php:486
    310328msgid "(Experimental) Remove note (and like) titles from RSS and Atom feeds. This may help feed readers recognize them as &ldquo;notes,&rdquo; but might conflict with existing custom feed templates."
    311329msgstr ""
    312330
    313 #: includes/class-options-handler.php:489
     331#: includes/class-options-handler.php:490
    314332msgid "Date-Based Archives"
    315333msgstr ""
    316334
    317 #: includes/class-options-handler.php:490
     335#: includes/class-options-handler.php:491
    318336msgid "Enable date-based archives"
    319337msgstr ""
    320338
    321 #: includes/class-options-handler.php:491
     339#: includes/class-options-handler.php:492
    322340msgid "(Experimental) Enable year, month, and day archives for notes and likes."
    323341msgstr ""
    324342
    325 #: includes/class-options-handler.php:494
     343#: includes/class-options-handler.php:495
    326344msgid "Permalink Format"
    327345msgstr ""
    328346
    329 #: includes/class-options-handler.php:499
     347#: includes/class-options-handler.php:500
    330348msgid "(Experimental) Set a custom note and like permalink format."
    331349msgstr ""
    332350
    333 #: includes/class-options-handler.php:510
     351#: includes/class-options-handler.php:511
    334352msgid "Enable Webmention"
    335353msgstr ""
    336354
    337 #: includes/class-options-handler.php:511
     355#: includes/class-options-handler.php:512
    338356msgid "(Experimental) Automatically notify pages you&rsquo;ve linked to, and allow other websites to do the same. You&rsquo;ll probably want to leave this disabled if you&rsquo;re already using a different Webmention plugin."
    339357msgstr ""
    340358
    341 #: includes/class-options-handler.php:519
     359#: includes/class-options-handler.php:520
    342360msgid "The post types for which webmentions (outgoing and incoming) should be enabled."
    343361msgstr ""
    344362
    345 #: includes/class-options-handler.php:523
     363#: includes/class-options-handler.php:524
    346364msgid "Webmention Delay"
    347365msgstr ""
    348366
    349 #: includes/class-options-handler.php:525
     367#: includes/class-options-handler.php:526
    350368msgid "The time, in seconds, WordPress should delay sending webmentions after a post is first published."
    351369msgstr ""
    352370
    353 #: includes/class-options-handler.php:528
     371#: includes/class-options-handler.php:529
    354372msgid "&ldquo;Proxy&rdquo; Avatars"
    355373msgstr ""
    356374
    357 #: includes/class-options-handler.php:529
     375#: includes/class-options-handler.php:530
    358376msgid "&ldquo;Reverse proxy&rdquo; avatars"
    359377msgstr ""
    360378
    361 #: includes/class-options-handler.php:530
     379#: includes/class-options-handler.php:531
    362380msgid "Serve remote avatars from this site&rsquo;s domain."
    363381msgstr ""
    364382
    365 #: includes/class-options-handler.php:533
     383#: includes/class-options-handler.php:534
    366384msgid "Proxy Secret"
    367385msgstr ""
    368386
    369 #: includes/class-options-handler.php:535
     387#: includes/class-options-handler.php:536
    370388msgid "Generate"
    371389msgstr ""
    372390
    373 #: includes/class-options-handler.php:536
     391#: includes/class-options-handler.php:537
    374392msgid "To work, the image proxy needs a (sufficiently random) secret, much like an autogenerated password."
    375393msgstr ""
    376394
    377 #: includes/class-options-handler.php:539
     395#: includes/class-options-handler.php:540
    378396msgid "Cache Avatars"
    379397msgstr ""
    380398
    381 #: includes/class-options-handler.php:540
     399#: includes/class-options-handler.php:541
    382400msgid "Cache webmention avatars"
    383401msgstr ""
    384402
    385 #: includes/class-options-handler.php:541
     403#: includes/class-options-handler.php:542
    386404msgid "(Experimental) Attempt to locally cache webmention avatars."
    387405msgstr ""
    388406
    389 #: includes/class-options-handler.php:544
     407#: includes/class-options-handler.php:545
    390408msgid "Facepile"
    391409msgstr ""
    392410
    393 #: includes/class-options-handler.php:546
     411#: includes/class-options-handler.php:547
    394412msgid "&ldquo;Facepile&rdquo; bookmarks, likes, and reposts"
    395413msgstr ""
    396414
    397 #: includes/class-options-handler.php:547
     415#: includes/class-options-handler.php:548
    398416msgid "(Experimental) Display bookmarks, likes, and reposts separate from &ldquo;regular&rdquo; comments."
    399417msgstr ""
    400418
    401 #: includes/class-options-handler.php:548
     419#: includes/class-options-handler.php:549
    402420msgid "Auto-insert Facepile block."
    403421msgstr ""
    404422
    405 #: includes/class-options-handler.php:549
     423#: includes/class-options-handler.php:550
    406424msgid "(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.)"
    407425msgstr ""
    408426
    409 #: includes/class-options-handler.php:558
     427#: includes/class-options-handler.php:559
    410428msgid "Featured Images"
    411429msgstr ""
    412430
    413 #: includes/class-options-handler.php:559
     431#: includes/class-options-handler.php:560
    414432msgid "Add Featured Images to feeds"
    415433msgstr ""
    416434
    417 #: includes/class-options-handler.php:560
     435#: includes/class-options-handler.php:561
    418436msgid "(Experimental) Prepend Featured Images to feed items."
    419437msgstr ""
    420438
    421 #: includes/class-options-handler.php:563
     439#: includes/class-options-handler.php:564
    422440msgid "Location and Weather"
    423441msgstr ""
    424442
    425 #: includes/class-options-handler.php:564
     443#: includes/class-options-handler.php:565
    426444msgid "Enable location functions"
    427445msgstr ""
    428446
    429 #: includes/class-options-handler.php:565
     447#: includes/class-options-handler.php:566
    430448msgid "(Experimental) Add basic location and weather data to posts."
    431449msgstr ""
    432450
    433 #: includes/class-options-handler.php:568
     451#: includes/class-options-handler.php:569
    434452msgid "Weather Units"
    435453msgstr ""
    436454
    437 #: includes/class-options-handler.php:569
     455#: includes/class-options-handler.php:570
    438456msgid "Metric"
    439457msgstr ""
    440458
    441 #: includes/class-options-handler.php:570
     459#: includes/class-options-handler.php:571
    442460msgid "Imperial"
    443461msgstr ""
    444462
    445 #: includes/class-options-handler.php:573
     463#: includes/class-options-handler.php:574
    446464msgid "Micropub"
    447465msgstr ""
    448466
    449 #: includes/class-options-handler.php:574
     467#: includes/class-options-handler.php:575
    450468msgid "Deeper Micropub integration"
    451469msgstr ""
    452470
    453 #: includes/class-options-handler.php:575
     471#: includes/class-options-handler.php:576
    454472msgid "(Experimental) Add post type and category data to responses to Micropub &ldquo;config&rdquo; queries."
    455473msgstr ""
    456474
    457 #: includes/class-options-handler.php:578
    458475#: includes/class-options-handler.php:579
     476#: includes/class-options-handler.php:580
    459477msgid "Parse Markdown"
    460478msgstr ""
    461479
    462 #: includes/class-options-handler.php:580
     480#: includes/class-options-handler.php:581
    463481msgid "(Experimental) Parse Markdown inside &ldquo;Micropub&rdquo; notes or likes."
    464482msgstr ""
    465483
    466 #: includes/class-options-handler.php:583
     484#: includes/class-options-handler.php:584
    467485msgid "Link Preview Cards"
    468486msgstr ""
    469487
    470 #: includes/class-options-handler.php:584
     488#: includes/class-options-handler.php:585
    471489msgid "Generate preview cards"
    472490msgstr ""
    473491
    474 #: includes/class-options-handler.php:585
     492#: includes/class-options-handler.php:586
    475493msgid "(Experimental) Fetch link metadata in order to generate &ldquo;link preview cards.&rdquo;"
    476494msgstr ""
    477495
    478 #: includes/class-options-handler.php:699
     496#: includes/class-options-handler.php:591
     497msgid "Save Changes"
     498msgstr ""
     499
     500#: includes/class-options-handler.php:700
    479501#: includes/class-post-types.php:86
    480502msgid "notes"
    481503msgstr ""
    482504
    483 #: includes/class-options-handler.php:727
     505#: includes/class-options-handler.php:728
    484506msgid "sample-post"
    485507msgstr ""
     
    525547msgstr ""
    526548
    527 #: includes/class-post-types.php:113
    528 msgid "Likes"
    529 msgstr ""
    530 
    531549#: includes/class-post-types.php:114
    532550#: blocks/context/block.js:71
     551#: blocks/facepile-content/block.js:87
    533552#: blocks/like/block.js:88
    534553msgid "Like"
     
    576595
    577596#: 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
    578599msgid "Invalid hash."
    579600msgstr ""
    580601
    581 #: includes/image-proxy/class-image-proxy.php:86
     602#: includes/image-proxy/class-image-proxy.php:88
     603msgid "Could not open URL."
     604msgstr ""
     605
     606#: includes/image-proxy/class-image-proxy.php:98
    582607msgid "Something went wrong."
    583608msgstr ""
    584609
    585 #: includes/webmention/class-webmention-parser.php:118
     610#: includes/webmention/class-webmention-parser.php:121
    586611msgid "&hellip; bookmarked this!"
    587612msgstr ""
    588613
    589 #: includes/webmention/class-webmention-parser.php:123
     614#: includes/webmention/class-webmention-parser.php:126
    590615msgid "&hellip; liked this!"
    591616msgstr ""
    592617
    593 #: includes/webmention/class-webmention-parser.php:127
     618#: includes/webmention/class-webmention-parser.php:130
    594619msgid "&hellip; reposted this!"
    595620msgstr ""
    596621
    597 #: includes/webmention/class-webmention-parser.php:131
     622#: includes/webmention/class-webmention-parser.php:134
    598623msgid "&hellip; (wants to) read this!"
    599624msgstr ""
    600625
    601 #: includes/webmention/class-webmention-receiver.php:251
     626#: includes/webmention/class-webmention-receiver.php:255
    602627msgid "&hellip; commented on this."
    603628msgstr ""
    604629
    605 #: includes/webmention/class-webmention-receiver.php:354
     630#: includes/webmention/class-webmention-receiver.php:358
    606631msgid "Source"
    607632msgstr ""
    608633
    609 #: includes/webmention/class-webmention-receiver.php:357
     634#: includes/webmention/class-webmention-receiver.php:361
    610635#: blocks/context/block.js:67
    611636msgid "Type"
    612637msgstr ""
    613638
    614 #: includes/webmention/class-webmention-receiver.php:361
     639#: includes/webmention/class-webmention-receiver.php:365
    615640msgid "Avatar"
    616641msgstr ""
    617642
    618 #: includes/webmention/class-webmention-receiver.php:365
     643#: includes/webmention/class-webmention-receiver.php:369
    619644msgid "Delete"
    620645msgstr ""
    621646
    622 #: includes/webmention/class-webmention-receiver.php:403
     647#: includes/webmention/class-webmention-receiver.php:407
    623648msgid "Missing or invalid nonce."
    624649msgstr ""
    625650
    626 #: includes/webmention/class-webmention-receiver.php:409
     651#: includes/webmention/class-webmention-receiver.php:413
    627652msgid "Invalid comment ID."
    628653msgstr ""
    629654
    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
     658msgid "Insufficient rights."
     659msgstr ""
     660
     661#: includes/webmention/class-webmention-sender.php:542
     662#: includes/webmention/class-webmention-sender.php:717
     663#: assets/webmention.js:134
     664msgid "Webmention scheduled."
     665msgstr ""
     666
     667#. translators: 1: Webmention endpoint 2: Date sent
     668#: includes/webmention/class-webmention-sender.php:696
     669msgid "Sent to %1$s on %2$s. Response code: %3$d."
     670msgstr ""
     671
     672#. translators: 1: Webmention endpoint 2: Date sent
     673#: includes/webmention/class-webmention-sender.php:696
     674msgid "M j, Y \\a\\t H:i"
     675msgstr ""
     676
     677#. translators: Webmention endpoint
     678#: includes/webmention/class-webmention-sender.php:699
     679#: assets/webmention.js:98
     680msgid "Could not send webmention to %s."
     681msgstr ""
     682
     683#. translators: Webmention endpoint
     684#: includes/webmention/class-webmention-sender.php:702
     685#: assets/webmention.js:115
     686msgid "Could not send webmention to %s. Trying again soon."
     687msgstr ""
     688
     689#: includes/webmention/class-webmention-sender.php:712
     690#: includes/webmention/class-webmention-sender.php:720
     691#: assets/webmention.js:182
     692msgid "Resend"
     693msgstr ""
     694
     695#: includes/webmention/class-webmention-sender.php:724
     696#: assets/webmention.js:140
     697msgid "No endpoints found."
     698msgstr ""
     699
     700#: includes/webmention/class-webmention-sender.php:753
     701msgid "Missing nonce."
     702msgstr ""
     703
     704#: includes/webmention/class-webmention-sender.php:759
     705msgid "Missing webmention type."
     706msgstr ""
     707
    631708#: includes/webmention/class-webmention-sender.php:765
    632 #: includes/webmention/class-webmention-sender.php:782
    633 msgid "Insufficient rights."
    634 msgstr ""
    635 
    636 #: includes/webmention/class-webmention-sender.php:527
    637 #: includes/webmention/class-webmention-sender.php:702
    638 #: assets/webmention.js:144
    639 msgid "Webmention scheduled."
    640 msgstr ""
    641 
    642 #. translators: 1: Webmention endpoint 2: Date sent
    643 #: includes/webmention/class-webmention-sender.php:681
    644 msgid "Sent to %1$s on %2$s. Response code: %3$d."
    645 msgstr ""
    646 
    647 #. translators: 1: Webmention endpoint 2: Date sent
    648 #: includes/webmention/class-webmention-sender.php:681
    649 msgid "M j, Y \\a\\t H:i"
    650 msgstr ""
    651 
    652 #. translators: Webmention endpoint
    653 #: includes/webmention/class-webmention-sender.php:684
    654 #: assets/webmention.js:108
    655 msgid "Could not send webmention to %s."
    656 msgstr ""
    657 
    658 #. translators: Webmention endpoint
    659 #: includes/webmention/class-webmention-sender.php:687
    660 #: assets/webmention.js:125
    661 msgid "Could not send webmention to %s. Trying again soon."
    662 msgstr ""
    663 
    664 #: includes/webmention/class-webmention-sender.php:697
    665 #: includes/webmention/class-webmention-sender.php:705
    666 #: assets/webmention.js:192
    667 msgid "Resend"
    668 msgstr ""
    669 
    670 #: includes/webmention/class-webmention-sender.php:709
    671 #: assets/webmention.js:150
    672 msgid "No endpoints found."
    673 msgstr ""
    674 
    675 #: includes/webmention/class-webmention-sender.php:738
    676 msgid "Missing nonce."
    677 msgstr ""
    678 
    679 #: includes/webmention/class-webmention-sender.php:744
    680 msgid "Missing webmention type."
    681 msgstr ""
    682 
    683 #: includes/webmention/class-webmention-sender.php:750
    684709msgid "Invalid nonce."
    685710msgstr ""
    686711
    687 #: includes/webmention/class-webmention-sender.php:756
     712#: includes/webmention/class-webmention-sender.php:771
    688713msgid "Invalid object ID."
    689714msgstr ""
    690715
    691 #: includes/webmention/class-webmention.php:244
    692 #: includes/webmention/class-webmention.php:246
     716#: includes/webmention/class-webmention.php:257
     717#: includes/webmention/class-webmention.php:259
    693718#: blocks/facepile/block.js:28
    694719msgid "Likes, Bookmarks, and Reposts"
     
    700725
    701726#. translators: %1$s: Webmention endpoint. %2$s: HTTP response code.
    702 #: assets/webmention.js:88
     727#: assets/webmention.js:78
    703728msgid "Sent to %1$s: %2$d."
    704729msgstr ""
    705730
    706 #: assets/webmention.js:186
     731#: assets/webmention.js:176
    707732msgid "Reschedule webmentions?"
    708733msgstr ""
     
    710735#: blocks/bookmark/block.js:88
    711736#: blocks/context/block.js:70
     737#: blocks/facepile-content/block.js:70
    712738msgid "Bookmark"
    713739msgstr ""
     
    770796
    771797#: blocks/context/block.js:73
     798#: blocks/facepile-content/block.js:104
    772799#: blocks/repost/block.js:88
    773800msgid "Repost"
     
    779806msgstr ""
    780807
    781 #: blocks/facepile-content/block.js:61
     808#: blocks/facepile-content/block.js:66
     809msgid "Comment Types"
     810msgstr ""
     811
     812#: blocks/facepile-content/block.js:124
     813msgid "Count Only"
     814msgstr ""
     815
     816#: blocks/facepile-content/block.js:128
     817msgid "Show count only"
     818msgstr ""
     819
     820#: blocks/facepile-content/block.js:135
     821msgid "Always show count"
     822msgstr ""
     823
     824#: blocks/facepile-content/block.js:145
    782825msgid "Avatars"
    783826msgstr ""
    784827
    785 #: blocks/facepile-content/block.js:65
     828#: blocks/facepile-content/block.js:149
    786829msgid "Avatar size"
    787830msgstr ""
    788831
    789 #: blocks/facepile-content/block.js:75
     832#: blocks/facepile-content/block.js:159
    790833msgid "Background color"
    791834msgstr ""
    792835
    793 #: blocks/facepile-content/block.js:87
     836#: blocks/facepile-content/block.js:171
    794837msgid "Show icons"
    795838msgstr ""
    796839
    797 #: blocks/facepile-content/block.js:95
     840#: blocks/facepile-content/block.js:179
    798841msgid "Icon color"
    799842msgstr ""
    800843
    801 #: blocks/facepile-content/block.js:107
     844#: blocks/facepile-content/block.js:191
    802845msgid "Icon background color"
    803846msgstr ""
  • indieblocks/trunk/readme.txt

    r3149625 r3261761  
    11=== IndieBlocks ===
    22Contributors: janboddez
    3 Tags: blocks, gutenberg, indieweb, notes, likes, microblog, microblogging, micropub, fse, site editor, webmention, syndication
    4 Tested up to: 6.6
    5 Stable tag: 0.13.1
     3Tags: blocks, indieweb, notes, microblog, webmention
     4Tested up to: 6.7
     5Stable tag: 0.13.2
    66License: GNU General Public License v3.0
    77License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    3636
    3737== Changelog ==
     38= 0.13.2 =
     39Fixed "image proxy" hash verification.
     40
    3841= 0.13.1 =
    3942Minor bug fixes. Improved "Facepile" compatibility (with the ActivityPub plugin).
Note: See TracChangeset for help on using the changeset viewer.