Plugin Directory

Changeset 2469861


Ignore:
Timestamp:
02/05/2021 11:20:23 PM (5 years ago)
Author:
firetree
Message:

Update to version 1.2.2 from GitHub

Location:
hey-notify
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • hey-notify/tags/1.2.2/hey-notify.php

    r2466801 r2469861  
    44 * Plugin URI: https://heynotifywp.com/
    55 * Description: Get notified when things happen in WordPress.
    6  * Version: 1.2.1
     6 * Version: 1.2.2
    77 * Author: FireTree Design, LLC <info@firetreedesign.com>
    88 * Author URI: https://firetreedesign.com/
     
    1919}
    2020
    21 define( 'HEY_NOTIFY_VERSION', '1.2.1' );
     21define( 'HEY_NOTIFY_VERSION', '1.2.2' );
    2222define( 'HEY_NOTIFY_PLUGIN_FILE', __FILE__ );
    2323define( 'HEY_NOTIFY_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
  • hey-notify/tags/1.2.2/includes/services/class-discord.php

    r2374657 r2469861  
    130130        $embed_item = array();
    131131
     132        // @mention Setup.
     133        $at_mention_pattern       = '/@+([a-zA-Z0-9_]+)/';
     134        $body['allowed_mentions'] = json_decode( "{'parse': [ 'roles', 'users', 'everyone' ]}" );
     135
    132136        // Subject.
    133137        if ( isset( $message['subject'] ) && '' !== $message['subject'] ) {
    134138            $body['content'] = $message['subject'];
     139            // Format @mentions.
     140            $body['content'] = preg_replace( $at_mention_pattern, '<@$1>', $body['content'] );
    135141        }
    136142
  • hey-notify/tags/1.2.2/languages/hey-notify.pot

    r2349284 r2469861  
    1 # Copyright (C) 2020 FireTree Design, LLC <info@firetreedesign.com>
     1# Copyright (C) 2021 FireTree Design, LLC <info@firetreedesign.com>
    22# This file is distributed under the same license as the Hey Notify plugin.
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Hey Notify 1.1.0\n"
     5"Project-Id-Version: Hey Notify 1.2.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/hey-notify\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: 2020-07-30T18:02:04+00:00\n"
     12"POT-Creation-Date: 2021-02-05T23:12:50+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    14 "X-Generator: WP-CLI 2.1.0\n"
     14"X-Generator: WP-CLI 2.4.0\n"
    1515"X-Domain: hey-notify\n"
    1616
     
    8888
    8989#: includes/cpt.php:100
    90 #: includes/fields.php:40
     90#: includes/fields.php:42
    9191msgid "Service"
    9292msgstr ""
    9393
    9494#: includes/cpt.php:101
    95 #: includes/fields.php:53
     95#: includes/fields.php:55
    9696#: includes/filters.php:49
    9797msgid "Events"
     
    103103
    104104#: includes/events/comment/class-comment-event.php:43
     105#: includes/events/cpt/class-cpt-event.php:46
    105106#: includes/events/page/class-page-event.php:43
    106107#: includes/events/post/class-post-event.php:43
     
    119120msgstr ""
    120121
    121 #: includes/events/comment/class-comment-hook.php:59
    122 #: includes/events/page/class-page-hook.php:234
    123 #: includes/events/post/class-post-hook.php:234
     122#: includes/events/comment/class-comment-hook.php:61
     123#: includes/events/cpt/class-cpt-hook.php:272
     124#: includes/events/page/class-page-hook.php:254
     125#: includes/events/post/class-post-hook.php:254
    124126msgid "Author"
    125127msgstr ""
    126128
    127 #: includes/events/comment/class-comment-hook.php:64
    128 #: includes/events/user/class-user-hook.php:120
     129#: includes/events/comment/class-comment-hook.php:66
     130#: includes/events/user/class-user-hook.php:126
    129131#: includes/services/class-email.php:60
    130132msgid "Email"
    131133msgstr ""
    132134
    133 #: includes/events/comment/class-comment-hook.php:69
    134 #: includes/events/page/class-page-hook.php:239
    135 #: includes/events/post/class-post-hook.php:239
     135#: includes/events/comment/class-comment-hook.php:71
     136#: includes/events/cpt/class-cpt-hook.php:277
     137#: includes/events/page/class-page-hook.php:259
     138#: includes/events/post/class-post-hook.php:259
    136139msgid "Date"
    137140msgstr ""
    138141
    139 #: includes/events/comment/class-comment-hook.php:74
     142#: includes/events/comment/class-comment-hook.php:76
    140143msgid "Status"
    141144msgstr ""
    142145
    143 #: includes/events/comment/class-comment-hook.php:106
     146#: includes/events/comment/class-comment-hook.php:108
    144147msgid "Approved"
    145148msgstr ""
    146149
    147 #: includes/events/comment/class-comment-hook.php:108
     150#: includes/events/comment/class-comment-hook.php:110
    148151msgid "Pending"
    149152msgstr ""
    150153
    151 #: includes/events/comment/class-comment-hook.php:110
     154#: includes/events/comment/class-comment-hook.php:112
    152155msgid "Spam"
     156msgstr ""
     157
     158#. translators: %s: Singular name of the custom post type
     159#: includes/events/cpt/class-cpt-event.php:51
     160msgid "%s Draft"
     161msgstr ""
     162
     163#. translators: %s: Singular name of the custom post type
     164#: includes/events/cpt/class-cpt-event.php:56
     165msgid "%s Pending"
     166msgstr ""
     167
     168#. translators: %s: Singular name of the custom post type
     169#: includes/events/cpt/class-cpt-event.php:61
     170msgid "%s Published"
     171msgstr ""
     172
     173#. translators: %s: Singular name of the custom post type
     174#: includes/events/cpt/class-cpt-event.php:66
     175msgid "%s Scheduled"
     176msgstr ""
     177
     178#. translators: %s: Singular name of the custom post type
     179#: includes/events/cpt/class-cpt-event.php:71
     180msgid "%s Updated"
     181msgstr ""
     182
     183#. translators: %s: Singular name of the custom post type
     184#: includes/events/cpt/class-cpt-event.php:76
     185msgid "%s Moved to Trash"
     186msgstr ""
     187
     188#. translators: 1: Name of the custom post type 2. Name of the site
     189#: includes/events/cpt/class-cpt-hook.php:42
     190msgid "Hey, a %1$s was drafted on %2$s!"
     191msgstr ""
     192
     193#. translators: 1: Name of the custom post type 2: Name of the user 3: Name of the site
     194#: includes/events/cpt/class-cpt-hook.php:49
     195msgid "Hey, a %1$s was drafted by %2$s on %3$s!"
     196msgstr ""
     197
     198#. translators: 1: Name of the custom post type 2. Name of the site
     199#: includes/events/cpt/class-cpt-hook.php:83
     200msgid "Hey, a %1$s was published on %2$s!"
     201msgstr ""
     202
     203#. translators: 1: Name of the custom post type 2: Name of the user 3: Name of the site
     204#: includes/events/cpt/class-cpt-hook.php:90
     205msgid "Hey, a %1$s was published by %2$s on %3$s!"
     206msgstr ""
     207
     208#. translators: 1: Name of the custom post type 2. Name of the site
     209#: includes/events/cpt/class-cpt-hook.php:124
     210msgid "Hey, a %1$s was scheduled on %2$s!"
     211msgstr ""
     212
     213#. translators: 1: Name of the custom post type 2: Name of the user 3: Name of the site
     214#: includes/events/cpt/class-cpt-hook.php:131
     215msgid "Hey, a %1$s was scheduled by %2$s on %3$s!"
     216msgstr ""
     217
     218#. translators: 1: Name of the custom post type 2. Name of the site
     219#: includes/events/cpt/class-cpt-hook.php:163
     220msgid "Hey, a %1$s is pending on %2$s!"
     221msgstr ""
     222
     223#. translators: 1: Name of the custom post type 2. Name of the site
     224#: includes/events/cpt/class-cpt-hook.php:199
     225msgid "Hey, a %1$s was updated on %2$s!"
     226msgstr ""
     227
     228#. translators: 1: Name of the custom post type 2: Name of the user 3: Name of the site
     229#: includes/events/cpt/class-cpt-hook.php:206
     230msgid "Hey, a %1$s was updated by %2$s on %3$s!"
     231msgstr ""
     232
     233#. translators: 1: Name of the custom post type 2. Name of the site
     234#: includes/events/cpt/class-cpt-hook.php:242
     235msgid "Hey, a %1$s was deleted on %2$s!"
     236msgstr ""
     237
     238#. translators: 1: Name of the custom post type 2: Name of the user 3: Name of the site
     239#: includes/events/cpt/class-cpt-hook.php:249
     240msgid "Hey, a %1$s was deleted by %2$s on %3$s!"
     241msgstr ""
     242
     243#: includes/events/cpt/class-cpt-hook.php:286
     244#: includes/events/post/class-post-hook.php:268
     245msgid "Categories"
     246msgstr ""
     247
     248#: includes/events/cpt/class-cpt-hook.php:295
     249#: includes/events/post/class-post-hook.php:277
     250msgid "Tags"
    153251msgstr ""
    154252
     
    183281#. translators: %s: Name of the site
    184282#: includes/events/page/class-page-hook.php:41
    185 msgid "Hey, a new page was drafted on %s!"
     283msgid "Hey, a page was drafted on %s!"
    186284msgstr ""
    187285
    188286#. translators: 1: Name of the user 2: Name of the site
    189287#: includes/events/page/class-page-hook.php:47
    190 msgid "Hey, a new page was drafted by %1$s on %2$s!"
    191 msgstr ""
    192 
    193 #. translators: %s: Name of the site
    194 #: includes/events/page/class-page-hook.php:77
    195 msgid "Hey, a new page was published on %s!"
    196 msgstr ""
    197 
    198 #. translators: 1: Name of the user 2: Name of the site
    199 #: includes/events/page/class-page-hook.php:83
    200 msgid "Hey, a new page was published by %1$s on %2$s!"
    201 msgstr ""
    202 
    203 #. translators: %s: Name of the site
    204 #: includes/events/page/class-page-hook.php:113
    205 msgid "Hey, a new page was scheduled on %s!"
    206 msgstr ""
    207 
    208 #. translators: 1: Name of the user 2: Name of the site
    209 #: includes/events/page/class-page-hook.php:119
    210 msgid "Hey, a new page was scheduled by %1$s on %2$s!"
    211 msgstr ""
    212 
    213 #. translators: %s: Name of the site
    214 #: includes/events/page/class-page-hook.php:138
    215 msgid "Hey, a new page is pending on %s!"
    216 msgstr ""
    217 
    218 #. translators: %s: Name of the site
    219 #: includes/events/page/class-page-hook.php:170
     288msgid "Hey, a page was drafted by %1$s on %2$s!"
     289msgstr ""
     290
     291#. translators: %s: Name of the site
     292#: includes/events/page/class-page-hook.php:79
     293msgid "Hey, a page was published on %s!"
     294msgstr ""
     295
     296#. translators: 1: Name of the user 2: Name of the site
     297#: includes/events/page/class-page-hook.php:85
     298msgid "Hey, a page was published by %1$s on %2$s!"
     299msgstr ""
     300
     301#. translators: %s: Name of the site
     302#: includes/events/page/class-page-hook.php:117
     303msgid "Hey, a page was scheduled on %s!"
     304msgstr ""
     305
     306#. translators: 1: Name of the user 2: Name of the site
     307#: includes/events/page/class-page-hook.php:123
     308msgid "Hey, a page was scheduled by %1$s on %2$s!"
     309msgstr ""
     310
     311#. translators: %s: Name of the site
     312#: includes/events/page/class-page-hook.php:152
     313msgid "Hey, a page is pending on %s!"
     314msgstr ""
     315
     316#. translators: %s: Name of the site
     317#: includes/events/page/class-page-hook.php:186
    220318msgid "Hey, a page was updated on %s!"
    221319msgstr ""
    222320
    223321#. translators: 1: Name of the user 2: Name of the site
    224 #: includes/events/page/class-page-hook.php:176
     322#: includes/events/page/class-page-hook.php:192
    225323msgid "Hey, a page was updated by %1$s on %2$s!"
    226324msgstr ""
    227325
    228326#. translators: %s: Name of the site
    229 #: includes/events/page/class-page-hook.php:208
     327#: includes/events/page/class-page-hook.php:226
    230328msgid "Hey, a page was deleted on %s!"
    231329msgstr ""
    232330
    233331#. translators: 1: Name of the user 2: Name of the site
    234 #: includes/events/page/class-page-hook.php:214
     332#: includes/events/page/class-page-hook.php:232
    235333msgid "Hey, a page was deleted by %1$s on %2$s!"
    236334msgstr ""
     
    266364#. translators: %s: Name of the site
    267365#: includes/events/post/class-post-hook.php:41
    268 msgid "Hey, a new post was drafted on %s!"
     366msgid "Hey, a post was drafted on %s!"
    269367msgstr ""
    270368
    271369#. translators: 1: Name of the user 2: Name of the site
    272370#: includes/events/post/class-post-hook.php:47
    273 msgid "Hey, a new post was drafted by %1$s on %2$s!"
    274 msgstr ""
    275 
    276 #. translators: %s: Name of the site
    277 #: includes/events/post/class-post-hook.php:77
    278 msgid "Hey, a new post was published on %s!"
    279 msgstr ""
    280 
    281 #. translators: 1: Name of the user 2: Name of the site
    282 #: includes/events/post/class-post-hook.php:83
    283 msgid "Hey, a new post was published by %1$s on %2$s!"
    284 msgstr ""
    285 
    286 #. translators: %s: Name of the site
    287 #: includes/events/post/class-post-hook.php:113
    288 msgid "Hey, a new post was scheduled on %s!"
    289 msgstr ""
    290 
    291 #. translators: 1: Name of the user 2: Name of the site
    292 #: includes/events/post/class-post-hook.php:119
    293 msgid "Hey, a new post was scheduled by %1$s on %2$s!"
    294 msgstr ""
    295 
    296 #. translators: %s: Name of the site
    297 #: includes/events/post/class-post-hook.php:138
    298 msgid "Hey, a new post is pending on %s!"
    299 msgstr ""
    300 
    301 #. translators: %s: Name of the site
    302 #: includes/events/post/class-post-hook.php:170
     371msgid "Hey, a post was drafted by %1$s on %2$s!"
     372msgstr ""
     373
     374#. translators: %s: Name of the site
     375#: includes/events/post/class-post-hook.php:79
     376msgid "Hey, a post was published on %s!"
     377msgstr ""
     378
     379#. translators: 1: Name of the user 2: Name of the site
     380#: includes/events/post/class-post-hook.php:85
     381msgid "Hey, a post was published by %1$s on %2$s!"
     382msgstr ""
     383
     384#. translators: %s: Name of the site
     385#: includes/events/post/class-post-hook.php:117
     386msgid "Hey, a post was scheduled on %s!"
     387msgstr ""
     388
     389#. translators: 1: Name of the user 2: Name of the site
     390#: includes/events/post/class-post-hook.php:123
     391msgid "Hey, a post was scheduled by %1$s on %2$s!"
     392msgstr ""
     393
     394#. translators: %s: Name of the site
     395#: includes/events/post/class-post-hook.php:152
     396msgid "Hey, a post is pending on %s!"
     397msgstr ""
     398
     399#. translators: %s: Name of the site
     400#: includes/events/post/class-post-hook.php:186
    303401msgid "Hey, a post was updated on %s!"
    304402msgstr ""
    305403
    306404#. translators: 1: Name of the user 2: Name of the site
    307 #: includes/events/post/class-post-hook.php:176
     405#: includes/events/post/class-post-hook.php:192
    308406msgid "Hey, a post was updated by %1$s on %2$s!"
    309407msgstr ""
    310408
    311409#. translators: %s: Name of the site
    312 #: includes/events/post/class-post-hook.php:208
     410#: includes/events/post/class-post-hook.php:226
    313411msgid "Hey, a post was deleted on %s!"
    314412msgstr ""
    315413
    316414#. translators: 1: Name of the user 2: Name of the site
    317 #: includes/events/post/class-post-hook.php:214
     415#: includes/events/post/class-post-hook.php:232
    318416msgid "Hey, a post was deleted by %1$s on %2$s!"
    319 msgstr ""
    320 
    321 #: includes/events/post/class-post-hook.php:248
    322 msgid "Categories"
    323 msgstr ""
    324 
    325 #: includes/events/post/class-post-hook.php:257
    326 msgid "Tags"
    327417msgstr ""
    328418
     
    336426
    337427#: includes/events/system/class-system-event.php:47
     428msgid "Plugin Update Available"
     429msgstr ""
     430
     431#: includes/events/system/class-system-event.php:48
     432msgid "Plugin Activated"
     433msgstr ""
     434
     435#: includes/events/system/class-system-event.php:49
     436msgid "Plugin Deactivated"
     437msgstr ""
     438
     439#: includes/events/system/class-system-event.php:50
    338440msgid "Theme Update Available"
    339441msgstr ""
    340442
    341 #: includes/events/system/class-system-event.php:48
    342 msgid "Plugin Update Available"
    343 msgstr ""
    344 
    345 #. translators: %s: Name of the site
    346 #: includes/events/system/class-system-hook.php:67
     443#: includes/events/system/class-system-event.php:51
     444msgid "Theme Changed"
     445msgstr ""
     446
     447#. translators: %s: Name of the site
     448#: includes/events/system/class-system-hook.php:65
    347449msgid "Hey, a new version of WordPress is available on %s!"
    348450msgstr ""
     
    361463
    362464#. translators: %s: Name of the site
    363 #: includes/events/system/class-system-hook.php:153
     465#: includes/events/system/class-system-hook.php:193
    364466msgid "Hey, new theme updates are available on %s!"
    365467msgstr ""
    366468
    367 #: includes/events/system/class-system-hook.php:159
     469#: includes/events/system/class-system-hook.php:201
    368470msgid "View the theme updates"
    369471msgstr ""
    370472
    371473#. translators: %s: Name of the site
    372 #: includes/events/system/class-system-hook.php:226
     474#: includes/events/system/class-system-hook.php:292
    373475msgid "Hey, new plugin updates are available on %s!"
    374476msgstr ""
    375477
    376 #: includes/events/system/class-system-hook.php:232
     478#: includes/events/system/class-system-hook.php:300
    377479msgid "View the plugin updates"
     480msgstr ""
     481
     482#: includes/events/system/class-system-hook.php:352
     483#: includes/events/system/class-system-hook.php:393
     484msgid "Name"
     485msgstr ""
     486
     487#: includes/events/system/class-system-hook.php:357
     488#: includes/events/system/class-system-hook.php:398
     489msgid "Version"
     490msgstr ""
     491
     492#. translators: %s: Name of the site
     493#: includes/events/system/class-system-hook.php:365
     494msgid "Hey, a plugin was just activated on %s!"
     495msgstr ""
     496
     497#: includes/events/system/class-system-hook.php:373
     498#: includes/events/system/class-system-hook.php:414
     499msgid "View installed plugins"
     500msgstr ""
     501
     502#. translators: %s: Name of the site
     503#: includes/events/system/class-system-hook.php:406
     504msgid "Hey, a plugin was just deactivated on %s!"
     505msgstr ""
     506
     507#: includes/events/system/class-system-hook.php:431
     508msgid "New Theme"
     509msgstr ""
     510
     511#. translators: %s: Name of the site
     512#: includes/events/system/class-system-hook.php:439
     513msgid "Hey, the theme was changed on %s!"
     514msgstr ""
     515
     516#: includes/events/system/class-system-hook.php:447
     517msgid "View themes"
    378518msgstr ""
    379519
     
    400540
    401541#. translators: %s: Name of the site
    402 #: includes/events/user/class-user-hook.php:59
     542#: includes/events/user/class-user-hook.php:61
    403543msgid "Hey, an administrator just logged in to %s!"
    404544msgstr ""
    405545
    406546#. translators: %s: Name of the site
    407 #: includes/events/user/class-user-hook.php:92
     547#: includes/events/user/class-user-hook.php:96
    408548msgid "Hey, an administrator just failed to log in to %s!"
    409549msgstr ""
    410550
    411 #: includes/events/user/class-user-hook.php:110
     551#: includes/events/user/class-user-hook.php:116
    412552msgid "Display Name"
    413553msgstr ""
    414554
    415 #: includes/events/user/class-user-hook.php:115
     555#: includes/events/user/class-user-hook.php:121
    416556msgid "Username"
    417557msgstr ""
    418558
    419 #: includes/events/user/class-user-hook.php:125
     559#: includes/events/user/class-user-hook.php:131
    420560msgid "IP Address"
    421561msgstr ""
    422562
    423 #: includes/events/user/class-user-hook.php:138
     563#: includes/events/user/class-user-hook.php:144
    424564msgid "View user's profile"
    425565msgstr ""
    426566
    427 #: includes/events/user/class-user-hook.php:161
     567#: includes/events/user/class-user-hook.php:167
    428568msgid "Unknown"
    429569msgstr ""
    430570
    431 #: includes/fields.php:66
     571#: includes/fields.php:69
    432572msgid "Hey Notify Settings"
    433573msgstr ""
    434574
    435 #: includes/fields.php:68
     575#: includes/fields.php:71
    436576msgid "Settings"
    437577msgstr ""
    438578
    439 #: includes/fields.php:71
     579#: includes/fields.php:74
    440580msgid "General"
    441581msgstr ""
    442582
    443 #: includes/fields.php:75
     583#: includes/fields.php:78
    444584msgid "Uninstall"
     585msgstr ""
     586
     587#: includes/fields.php:82
     588msgid "Licenses"
    445589msgstr ""
    446590
     
    470614
    471615#: includes/filters.php:102
    472 msgid "General settings for Hey Notify."
     616msgid "General settings for Hey Notify"
    473617msgstr ""
    474618
    475619#: includes/filters.php:107
    476620msgid "Default service:"
     621msgstr ""
     622
     623#: includes/filters.php:115
     624msgid "Custom Post Type Settings"
     625msgstr ""
     626
     627#: includes/filters.php:120
     628msgid "Only display public Custom Post Types"
    477629msgstr ""
    478630
  • hey-notify/tags/1.2.2/readme.txt

    r2466801 r2469861  
    55Tested up to: 5.6
    66Requires PHP: 5.3
    7 Stable tag: 1.2.1
     7Stable tag: 1.2.2
    88License: GPLv2 or later
    99License URI: http://ww.gnu.org/licenses/gpl-2.0.html
     
    6767== Changelog ==
    6868
     69= 1.2.2 =
     70* Fixed ability to @mention Discord users.
     71* Updated translation file.
     72
    6973= 1.2.1 =
    7074* Automatically detect available Custom Post Types.
  • hey-notify/trunk/hey-notify.php

    r2466801 r2469861  
    44 * Plugin URI: https://heynotifywp.com/
    55 * Description: Get notified when things happen in WordPress.
    6  * Version: 1.2.1
     6 * Version: 1.2.2
    77 * Author: FireTree Design, LLC <info@firetreedesign.com>
    88 * Author URI: https://firetreedesign.com/
     
    1919}
    2020
    21 define( 'HEY_NOTIFY_VERSION', '1.2.1' );
     21define( 'HEY_NOTIFY_VERSION', '1.2.2' );
    2222define( 'HEY_NOTIFY_PLUGIN_FILE', __FILE__ );
    2323define( 'HEY_NOTIFY_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
  • hey-notify/trunk/includes/services/class-discord.php

    r2374657 r2469861  
    130130        $embed_item = array();
    131131
     132        // @mention Setup.
     133        $at_mention_pattern       = '/@+([a-zA-Z0-9_]+)/';
     134        $body['allowed_mentions'] = json_decode( "{'parse': [ 'roles', 'users', 'everyone' ]}" );
     135
    132136        // Subject.
    133137        if ( isset( $message['subject'] ) && '' !== $message['subject'] ) {
    134138            $body['content'] = $message['subject'];
     139            // Format @mentions.
     140            $body['content'] = preg_replace( $at_mention_pattern, '<@$1>', $body['content'] );
    135141        }
    136142
  • hey-notify/trunk/languages/hey-notify.pot

    r2349284 r2469861  
    1 # Copyright (C) 2020 FireTree Design, LLC <info@firetreedesign.com>
     1# Copyright (C) 2021 FireTree Design, LLC <info@firetreedesign.com>
    22# This file is distributed under the same license as the Hey Notify plugin.
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Hey Notify 1.1.0\n"
     5"Project-Id-Version: Hey Notify 1.2.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/hey-notify\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: 2020-07-30T18:02:04+00:00\n"
     12"POT-Creation-Date: 2021-02-05T23:12:50+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    14 "X-Generator: WP-CLI 2.1.0\n"
     14"X-Generator: WP-CLI 2.4.0\n"
    1515"X-Domain: hey-notify\n"
    1616
     
    8888
    8989#: includes/cpt.php:100
    90 #: includes/fields.php:40
     90#: includes/fields.php:42
    9191msgid "Service"
    9292msgstr ""
    9393
    9494#: includes/cpt.php:101
    95 #: includes/fields.php:53
     95#: includes/fields.php:55
    9696#: includes/filters.php:49
    9797msgid "Events"
     
    103103
    104104#: includes/events/comment/class-comment-event.php:43
     105#: includes/events/cpt/class-cpt-event.php:46
    105106#: includes/events/page/class-page-event.php:43
    106107#: includes/events/post/class-post-event.php:43
     
    119120msgstr ""
    120121
    121 #: includes/events/comment/class-comment-hook.php:59
    122 #: includes/events/page/class-page-hook.php:234
    123 #: includes/events/post/class-post-hook.php:234
     122#: includes/events/comment/class-comment-hook.php:61
     123#: includes/events/cpt/class-cpt-hook.php:272
     124#: includes/events/page/class-page-hook.php:254
     125#: includes/events/post/class-post-hook.php:254
    124126msgid "Author"
    125127msgstr ""
    126128
    127 #: includes/events/comment/class-comment-hook.php:64
    128 #: includes/events/user/class-user-hook.php:120
     129#: includes/events/comment/class-comment-hook.php:66
     130#: includes/events/user/class-user-hook.php:126
    129131#: includes/services/class-email.php:60
    130132msgid "Email"
    131133msgstr ""
    132134
    133 #: includes/events/comment/class-comment-hook.php:69
    134 #: includes/events/page/class-page-hook.php:239
    135 #: includes/events/post/class-post-hook.php:239
     135#: includes/events/comment/class-comment-hook.php:71
     136#: includes/events/cpt/class-cpt-hook.php:277
     137#: includes/events/page/class-page-hook.php:259
     138#: includes/events/post/class-post-hook.php:259
    136139msgid "Date"
    137140msgstr ""
    138141
    139 #: includes/events/comment/class-comment-hook.php:74
     142#: includes/events/comment/class-comment-hook.php:76
    140143msgid "Status"
    141144msgstr ""
    142145
    143 #: includes/events/comment/class-comment-hook.php:106
     146#: includes/events/comment/class-comment-hook.php:108
    144147msgid "Approved"
    145148msgstr ""
    146149
    147 #: includes/events/comment/class-comment-hook.php:108
     150#: includes/events/comment/class-comment-hook.php:110
    148151msgid "Pending"
    149152msgstr ""
    150153
    151 #: includes/events/comment/class-comment-hook.php:110
     154#: includes/events/comment/class-comment-hook.php:112
    152155msgid "Spam"
     156msgstr ""
     157
     158#. translators: %s: Singular name of the custom post type
     159#: includes/events/cpt/class-cpt-event.php:51
     160msgid "%s Draft"
     161msgstr ""
     162
     163#. translators: %s: Singular name of the custom post type
     164#: includes/events/cpt/class-cpt-event.php:56
     165msgid "%s Pending"
     166msgstr ""
     167
     168#. translators: %s: Singular name of the custom post type
     169#: includes/events/cpt/class-cpt-event.php:61
     170msgid "%s Published"
     171msgstr ""
     172
     173#. translators: %s: Singular name of the custom post type
     174#: includes/events/cpt/class-cpt-event.php:66
     175msgid "%s Scheduled"
     176msgstr ""
     177
     178#. translators: %s: Singular name of the custom post type
     179#: includes/events/cpt/class-cpt-event.php:71
     180msgid "%s Updated"
     181msgstr ""
     182
     183#. translators: %s: Singular name of the custom post type
     184#: includes/events/cpt/class-cpt-event.php:76
     185msgid "%s Moved to Trash"
     186msgstr ""
     187
     188#. translators: 1: Name of the custom post type 2. Name of the site
     189#: includes/events/cpt/class-cpt-hook.php:42
     190msgid "Hey, a %1$s was drafted on %2$s!"
     191msgstr ""
     192
     193#. translators: 1: Name of the custom post type 2: Name of the user 3: Name of the site
     194#: includes/events/cpt/class-cpt-hook.php:49
     195msgid "Hey, a %1$s was drafted by %2$s on %3$s!"
     196msgstr ""
     197
     198#. translators: 1: Name of the custom post type 2. Name of the site
     199#: includes/events/cpt/class-cpt-hook.php:83
     200msgid "Hey, a %1$s was published on %2$s!"
     201msgstr ""
     202
     203#. translators: 1: Name of the custom post type 2: Name of the user 3: Name of the site
     204#: includes/events/cpt/class-cpt-hook.php:90
     205msgid "Hey, a %1$s was published by %2$s on %3$s!"
     206msgstr ""
     207
     208#. translators: 1: Name of the custom post type 2. Name of the site
     209#: includes/events/cpt/class-cpt-hook.php:124
     210msgid "Hey, a %1$s was scheduled on %2$s!"
     211msgstr ""
     212
     213#. translators: 1: Name of the custom post type 2: Name of the user 3: Name of the site
     214#: includes/events/cpt/class-cpt-hook.php:131
     215msgid "Hey, a %1$s was scheduled by %2$s on %3$s!"
     216msgstr ""
     217
     218#. translators: 1: Name of the custom post type 2. Name of the site
     219#: includes/events/cpt/class-cpt-hook.php:163
     220msgid "Hey, a %1$s is pending on %2$s!"
     221msgstr ""
     222
     223#. translators: 1: Name of the custom post type 2. Name of the site
     224#: includes/events/cpt/class-cpt-hook.php:199
     225msgid "Hey, a %1$s was updated on %2$s!"
     226msgstr ""
     227
     228#. translators: 1: Name of the custom post type 2: Name of the user 3: Name of the site
     229#: includes/events/cpt/class-cpt-hook.php:206
     230msgid "Hey, a %1$s was updated by %2$s on %3$s!"
     231msgstr ""
     232
     233#. translators: 1: Name of the custom post type 2. Name of the site
     234#: includes/events/cpt/class-cpt-hook.php:242
     235msgid "Hey, a %1$s was deleted on %2$s!"
     236msgstr ""
     237
     238#. translators: 1: Name of the custom post type 2: Name of the user 3: Name of the site
     239#: includes/events/cpt/class-cpt-hook.php:249
     240msgid "Hey, a %1$s was deleted by %2$s on %3$s!"
     241msgstr ""
     242
     243#: includes/events/cpt/class-cpt-hook.php:286
     244#: includes/events/post/class-post-hook.php:268
     245msgid "Categories"
     246msgstr ""
     247
     248#: includes/events/cpt/class-cpt-hook.php:295
     249#: includes/events/post/class-post-hook.php:277
     250msgid "Tags"
    153251msgstr ""
    154252
     
    183281#. translators: %s: Name of the site
    184282#: includes/events/page/class-page-hook.php:41
    185 msgid "Hey, a new page was drafted on %s!"
     283msgid "Hey, a page was drafted on %s!"
    186284msgstr ""
    187285
    188286#. translators: 1: Name of the user 2: Name of the site
    189287#: includes/events/page/class-page-hook.php:47
    190 msgid "Hey, a new page was drafted by %1$s on %2$s!"
    191 msgstr ""
    192 
    193 #. translators: %s: Name of the site
    194 #: includes/events/page/class-page-hook.php:77
    195 msgid "Hey, a new page was published on %s!"
    196 msgstr ""
    197 
    198 #. translators: 1: Name of the user 2: Name of the site
    199 #: includes/events/page/class-page-hook.php:83
    200 msgid "Hey, a new page was published by %1$s on %2$s!"
    201 msgstr ""
    202 
    203 #. translators: %s: Name of the site
    204 #: includes/events/page/class-page-hook.php:113
    205 msgid "Hey, a new page was scheduled on %s!"
    206 msgstr ""
    207 
    208 #. translators: 1: Name of the user 2: Name of the site
    209 #: includes/events/page/class-page-hook.php:119
    210 msgid "Hey, a new page was scheduled by %1$s on %2$s!"
    211 msgstr ""
    212 
    213 #. translators: %s: Name of the site
    214 #: includes/events/page/class-page-hook.php:138
    215 msgid "Hey, a new page is pending on %s!"
    216 msgstr ""
    217 
    218 #. translators: %s: Name of the site
    219 #: includes/events/page/class-page-hook.php:170
     288msgid "Hey, a page was drafted by %1$s on %2$s!"
     289msgstr ""
     290
     291#. translators: %s: Name of the site
     292#: includes/events/page/class-page-hook.php:79
     293msgid "Hey, a page was published on %s!"
     294msgstr ""
     295
     296#. translators: 1: Name of the user 2: Name of the site
     297#: includes/events/page/class-page-hook.php:85
     298msgid "Hey, a page was published by %1$s on %2$s!"
     299msgstr ""
     300
     301#. translators: %s: Name of the site
     302#: includes/events/page/class-page-hook.php:117
     303msgid "Hey, a page was scheduled on %s!"
     304msgstr ""
     305
     306#. translators: 1: Name of the user 2: Name of the site
     307#: includes/events/page/class-page-hook.php:123
     308msgid "Hey, a page was scheduled by %1$s on %2$s!"
     309msgstr ""
     310
     311#. translators: %s: Name of the site
     312#: includes/events/page/class-page-hook.php:152
     313msgid "Hey, a page is pending on %s!"
     314msgstr ""
     315
     316#. translators: %s: Name of the site
     317#: includes/events/page/class-page-hook.php:186
    220318msgid "Hey, a page was updated on %s!"
    221319msgstr ""
    222320
    223321#. translators: 1: Name of the user 2: Name of the site
    224 #: includes/events/page/class-page-hook.php:176
     322#: includes/events/page/class-page-hook.php:192
    225323msgid "Hey, a page was updated by %1$s on %2$s!"
    226324msgstr ""
    227325
    228326#. translators: %s: Name of the site
    229 #: includes/events/page/class-page-hook.php:208
     327#: includes/events/page/class-page-hook.php:226
    230328msgid "Hey, a page was deleted on %s!"
    231329msgstr ""
    232330
    233331#. translators: 1: Name of the user 2: Name of the site
    234 #: includes/events/page/class-page-hook.php:214
     332#: includes/events/page/class-page-hook.php:232
    235333msgid "Hey, a page was deleted by %1$s on %2$s!"
    236334msgstr ""
     
    266364#. translators: %s: Name of the site
    267365#: includes/events/post/class-post-hook.php:41
    268 msgid "Hey, a new post was drafted on %s!"
     366msgid "Hey, a post was drafted on %s!"
    269367msgstr ""
    270368
    271369#. translators: 1: Name of the user 2: Name of the site
    272370#: includes/events/post/class-post-hook.php:47
    273 msgid "Hey, a new post was drafted by %1$s on %2$s!"
    274 msgstr ""
    275 
    276 #. translators: %s: Name of the site
    277 #: includes/events/post/class-post-hook.php:77
    278 msgid "Hey, a new post was published on %s!"
    279 msgstr ""
    280 
    281 #. translators: 1: Name of the user 2: Name of the site
    282 #: includes/events/post/class-post-hook.php:83
    283 msgid "Hey, a new post was published by %1$s on %2$s!"
    284 msgstr ""
    285 
    286 #. translators: %s: Name of the site
    287 #: includes/events/post/class-post-hook.php:113
    288 msgid "Hey, a new post was scheduled on %s!"
    289 msgstr ""
    290 
    291 #. translators: 1: Name of the user 2: Name of the site
    292 #: includes/events/post/class-post-hook.php:119
    293 msgid "Hey, a new post was scheduled by %1$s on %2$s!"
    294 msgstr ""
    295 
    296 #. translators: %s: Name of the site
    297 #: includes/events/post/class-post-hook.php:138
    298 msgid "Hey, a new post is pending on %s!"
    299 msgstr ""
    300 
    301 #. translators: %s: Name of the site
    302 #: includes/events/post/class-post-hook.php:170
     371msgid "Hey, a post was drafted by %1$s on %2$s!"
     372msgstr ""
     373
     374#. translators: %s: Name of the site
     375#: includes/events/post/class-post-hook.php:79
     376msgid "Hey, a post was published on %s!"
     377msgstr ""
     378
     379#. translators: 1: Name of the user 2: Name of the site
     380#: includes/events/post/class-post-hook.php:85
     381msgid "Hey, a post was published by %1$s on %2$s!"
     382msgstr ""
     383
     384#. translators: %s: Name of the site
     385#: includes/events/post/class-post-hook.php:117
     386msgid "Hey, a post was scheduled on %s!"
     387msgstr ""
     388
     389#. translators: 1: Name of the user 2: Name of the site
     390#: includes/events/post/class-post-hook.php:123
     391msgid "Hey, a post was scheduled by %1$s on %2$s!"
     392msgstr ""
     393
     394#. translators: %s: Name of the site
     395#: includes/events/post/class-post-hook.php:152
     396msgid "Hey, a post is pending on %s!"
     397msgstr ""
     398
     399#. translators: %s: Name of the site
     400#: includes/events/post/class-post-hook.php:186
    303401msgid "Hey, a post was updated on %s!"
    304402msgstr ""
    305403
    306404#. translators: 1: Name of the user 2: Name of the site
    307 #: includes/events/post/class-post-hook.php:176
     405#: includes/events/post/class-post-hook.php:192
    308406msgid "Hey, a post was updated by %1$s on %2$s!"
    309407msgstr ""
    310408
    311409#. translators: %s: Name of the site
    312 #: includes/events/post/class-post-hook.php:208
     410#: includes/events/post/class-post-hook.php:226
    313411msgid "Hey, a post was deleted on %s!"
    314412msgstr ""
    315413
    316414#. translators: 1: Name of the user 2: Name of the site
    317 #: includes/events/post/class-post-hook.php:214
     415#: includes/events/post/class-post-hook.php:232
    318416msgid "Hey, a post was deleted by %1$s on %2$s!"
    319 msgstr ""
    320 
    321 #: includes/events/post/class-post-hook.php:248
    322 msgid "Categories"
    323 msgstr ""
    324 
    325 #: includes/events/post/class-post-hook.php:257
    326 msgid "Tags"
    327417msgstr ""
    328418
     
    336426
    337427#: includes/events/system/class-system-event.php:47
     428msgid "Plugin Update Available"
     429msgstr ""
     430
     431#: includes/events/system/class-system-event.php:48
     432msgid "Plugin Activated"
     433msgstr ""
     434
     435#: includes/events/system/class-system-event.php:49
     436msgid "Plugin Deactivated"
     437msgstr ""
     438
     439#: includes/events/system/class-system-event.php:50
    338440msgid "Theme Update Available"
    339441msgstr ""
    340442
    341 #: includes/events/system/class-system-event.php:48
    342 msgid "Plugin Update Available"
    343 msgstr ""
    344 
    345 #. translators: %s: Name of the site
    346 #: includes/events/system/class-system-hook.php:67
     443#: includes/events/system/class-system-event.php:51
     444msgid "Theme Changed"
     445msgstr ""
     446
     447#. translators: %s: Name of the site
     448#: includes/events/system/class-system-hook.php:65
    347449msgid "Hey, a new version of WordPress is available on %s!"
    348450msgstr ""
     
    361463
    362464#. translators: %s: Name of the site
    363 #: includes/events/system/class-system-hook.php:153
     465#: includes/events/system/class-system-hook.php:193
    364466msgid "Hey, new theme updates are available on %s!"
    365467msgstr ""
    366468
    367 #: includes/events/system/class-system-hook.php:159
     469#: includes/events/system/class-system-hook.php:201
    368470msgid "View the theme updates"
    369471msgstr ""
    370472
    371473#. translators: %s: Name of the site
    372 #: includes/events/system/class-system-hook.php:226
     474#: includes/events/system/class-system-hook.php:292
    373475msgid "Hey, new plugin updates are available on %s!"
    374476msgstr ""
    375477
    376 #: includes/events/system/class-system-hook.php:232
     478#: includes/events/system/class-system-hook.php:300
    377479msgid "View the plugin updates"
     480msgstr ""
     481
     482#: includes/events/system/class-system-hook.php:352
     483#: includes/events/system/class-system-hook.php:393
     484msgid "Name"
     485msgstr ""
     486
     487#: includes/events/system/class-system-hook.php:357
     488#: includes/events/system/class-system-hook.php:398
     489msgid "Version"
     490msgstr ""
     491
     492#. translators: %s: Name of the site
     493#: includes/events/system/class-system-hook.php:365
     494msgid "Hey, a plugin was just activated on %s!"
     495msgstr ""
     496
     497#: includes/events/system/class-system-hook.php:373
     498#: includes/events/system/class-system-hook.php:414
     499msgid "View installed plugins"
     500msgstr ""
     501
     502#. translators: %s: Name of the site
     503#: includes/events/system/class-system-hook.php:406
     504msgid "Hey, a plugin was just deactivated on %s!"
     505msgstr ""
     506
     507#: includes/events/system/class-system-hook.php:431
     508msgid "New Theme"
     509msgstr ""
     510
     511#. translators: %s: Name of the site
     512#: includes/events/system/class-system-hook.php:439
     513msgid "Hey, the theme was changed on %s!"
     514msgstr ""
     515
     516#: includes/events/system/class-system-hook.php:447
     517msgid "View themes"
    378518msgstr ""
    379519
     
    400540
    401541#. translators: %s: Name of the site
    402 #: includes/events/user/class-user-hook.php:59
     542#: includes/events/user/class-user-hook.php:61
    403543msgid "Hey, an administrator just logged in to %s!"
    404544msgstr ""
    405545
    406546#. translators: %s: Name of the site
    407 #: includes/events/user/class-user-hook.php:92
     547#: includes/events/user/class-user-hook.php:96
    408548msgid "Hey, an administrator just failed to log in to %s!"
    409549msgstr ""
    410550
    411 #: includes/events/user/class-user-hook.php:110
     551#: includes/events/user/class-user-hook.php:116
    412552msgid "Display Name"
    413553msgstr ""
    414554
    415 #: includes/events/user/class-user-hook.php:115
     555#: includes/events/user/class-user-hook.php:121
    416556msgid "Username"
    417557msgstr ""
    418558
    419 #: includes/events/user/class-user-hook.php:125
     559#: includes/events/user/class-user-hook.php:131
    420560msgid "IP Address"
    421561msgstr ""
    422562
    423 #: includes/events/user/class-user-hook.php:138
     563#: includes/events/user/class-user-hook.php:144
    424564msgid "View user's profile"
    425565msgstr ""
    426566
    427 #: includes/events/user/class-user-hook.php:161
     567#: includes/events/user/class-user-hook.php:167
    428568msgid "Unknown"
    429569msgstr ""
    430570
    431 #: includes/fields.php:66
     571#: includes/fields.php:69
    432572msgid "Hey Notify Settings"
    433573msgstr ""
    434574
    435 #: includes/fields.php:68
     575#: includes/fields.php:71
    436576msgid "Settings"
    437577msgstr ""
    438578
    439 #: includes/fields.php:71
     579#: includes/fields.php:74
    440580msgid "General"
    441581msgstr ""
    442582
    443 #: includes/fields.php:75
     583#: includes/fields.php:78
    444584msgid "Uninstall"
     585msgstr ""
     586
     587#: includes/fields.php:82
     588msgid "Licenses"
    445589msgstr ""
    446590
     
    470614
    471615#: includes/filters.php:102
    472 msgid "General settings for Hey Notify."
     616msgid "General settings for Hey Notify"
    473617msgstr ""
    474618
    475619#: includes/filters.php:107
    476620msgid "Default service:"
     621msgstr ""
     622
     623#: includes/filters.php:115
     624msgid "Custom Post Type Settings"
     625msgstr ""
     626
     627#: includes/filters.php:120
     628msgid "Only display public Custom Post Types"
    477629msgstr ""
    478630
  • hey-notify/trunk/readme.txt

    r2466801 r2469861  
    55Tested up to: 5.6
    66Requires PHP: 5.3
    7 Stable tag: 1.2.1
     7Stable tag: 1.2.2
    88License: GPLv2 or later
    99License URI: http://ww.gnu.org/licenses/gpl-2.0.html
     
    6767== Changelog ==
    6868
     69= 1.2.2 =
     70* Fixed ability to @mention Discord users.
     71* Updated translation file.
     72
    6973= 1.2.1 =
    7074* Automatically detect available Custom Post Types.
Note: See TracChangeset for help on using the changeset viewer.