Plugin Directory

Changeset 2408286


Ignore:
Timestamp:
10/28/2020 01:09:58 PM (5 years ago)
Author:
exodox
Message:

Deploy to WordPress directory (v0.8.1)

Location:
exodox
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • exodox/tags/0.8.1/exodox.php

    r2390087 r2408286  
    33 * Plugin Name: Exodox
    44 * Plugin URI:  https://exodox.link/get-plugin/
    5  * Version:     0.8.0
     5 * Version:     0.8.1
    66 * Author:      Exodox
    77 * Author URI:  https://exodox.link
     
    4242class ExodoxLogin
    4343{
    44     const EXODOX_PLUGIN_VERSION = '0.8.0';
     44    const EXODOX_PLUGIN_VERSION = '0.8.1';
    4545    const EXODOX_ADMIN_PAGE_SLUG = 'exodox';
    4646    const EXODOX_COOKIE_NAME = 'exodoxUserId';
     
    121121        }
    122122        $settings = [
    123             'exodox_publisher_id' => 'sanitize_text_field',
    124             'exodox_disable_listing' => 'sanitize_key'
     123            'exodox_publisher_id' => [__CLASS__, 'filter_publisher_id'],
     124            'exodox_disable_listing' => 'sanitize_key',
    125125        ];
    126126
     
    149149            ]
    150150        );
    151        
     151
    152152        add_settings_field(
    153153            'exodox_disable_listing',
     
    246246    public static function filter_publisher_id($id)
    247247    {
    248         // TODO: Validate UUID
    249         return $id;
     248        if (!wp_is_uuid($id)) {
     249            add_settings_error(
     250                'exodox_publisher_id',
     251                'exodox_publisher_id_error',
     252                esc_html__('Wrong format of Publisher Id', 'exodox'),
     253                'error'
     254            );
     255        }
     256
     257        if (count(get_settings_errors('exodox_publisher_id'))) {
     258            return self::get_publisher_id();
     259        }
     260
     261        return apply_filters('filter_publisher_id', sanitize_text_field($id));
    250262    }
    251263
     
    396408        }
    397409
    398         if (is_single() && 0 === count(self::$exodoxCurrentPosts)) {
     410        if (is_singular() && 0 === count(self::$exodoxCurrentPosts)) {
    399411            $link = self::get_common_url(get_permalink($posts[0]->ID));
    400412
    401             if (in_array($link, self::$exodoxLockedPosts)) {
     413            if (self::is_path_locked($link)) {
    402414                // Locked single post
    403415                $lockedPost = self::lock_single_post($posts[0]);
     
    410422
    411423        // Listing
    412         if (self::wrap_listing() && !is_single() && count(self::$exodoxLockedPosts)) {
     424        if (self::wrap_listing() && !is_singular() && count(self::$exodoxLockedPosts)) {
    413425            foreach ($returnPosts as &$post) {
    414426                $link = self::get_common_url(get_permalink($post->ID));
    415                 if (in_array($link, self::$exodoxLockedPosts) && !in_array($link, self::$exodoxCurrentPosts)) {
     427                if (self::is_path_locked($link) && !in_array($link, self::$exodoxCurrentPosts)) {
    416428                    $lockStatus = self::get_lock_status($link);
    417429
     
    839851        }
    840852
    841         return in_array($path, self::$exodoxLockedPosts);
     853        if (in_array($path, self::$exodoxLockedPosts)) {
     854            $lockedPostObject = self::get_locked_post_object($path);
     855
     856            if ($lockedPostObject && $lockedPostObject ['active']) {
     857                return true;
     858            }
     859        }
     860
     861        return false;
    842862    }
    843863
     
    900920     *
    901921     * @since 0.7.8
    902      * 
     922     *
    903923     * @return bool
    904924     */
    905925    public static function wrap_listing()
    906926    {
    907         return get_option('exodox_disable_listing') !== 'yes';
     927        return 'yes' !== get_option('exodox_disable_listing');
    908928    }
    909929
     
    14341454     *
    14351455     * @since 0.7.8
    1436      * 
     1456     *
    14371457     * @param array $args Checkbox properties
    1438      * 
     1458     *
    14391459     * @return null
    14401460     */
     
    14441464            '<input type="checkbox" class="%s" name="exodox_disable_listing" value="yes" %s />%s',
    14451465            esc_attr(array_key_exists('class', $args) ? $args ['class'] : ''),
    1446             esc_attr(get_option('exodox_disable_listing') === 'yes' ? 'checked=checked' : ''),
     1466            esc_attr('yes' === get_option('exodox_disable_listing') ? 'checked=checked' : ''),
    14471467            array_key_exists('help_text', $args) ? sprintf('<p class="description">%s</p>', esc_html($args ['help_text'])) : ''
    14481468        );
  • exodox/tags/0.8.1/languages/exodox-sv_SE.po

    r2385657 r2408286  
    55"Project-Id-Version: Plugins - Exodox - Stable (latest release)\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/exodox\n"
    7 "POT-Creation-Date: 2020-08-26T13:13:20+00:00\n"
     7"POT-Creation-Date: 2020-10-28T12:53:54+00:00\n"
    88"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    99"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    5050msgstr "Exodox - Lås innehåll"
    5151
    52 #: exodox.php:616
     52#: exodox.php:252
     53msgid "Wrong format of Publisher Id"
     54msgstr ""
     55
     56#: exodox.php:628
    5357msgid "Read the whole article for only %1$s %2$s"
    5458msgstr "Läs hela artikeln för endast %1$s %2$s"
    5559
    56 #: exodox.php:622 exodox.php:1293
     60#: exodox.php:634 exodox.php:1313
    5761msgid ""
    5862"The article is locked with Exodox; but you, as administrator, can still read "
     
    6064msgstr "Artikeln är låst med Exodox, men du som admin på bloggen kan läsa den."
    6165
    62 #: exodox.php:626
     66#: exodox.php:638
    6367msgid "The article is unlocked, available for %1$s more"
    6468msgstr "Artikeln upplåst, tillgängligt i %1$s till"
    6569
    66 #: exodox.php:629
     70#: exodox.php:641
    6771msgid ""
    6872"Locked content. You must allow cookies in order to be able to purchase this "
     
    7276"till den här artikeln."
    7377
    74 #: exodox.php:1030 exodox.php:1065
     78#: exodox.php:1050 exodox.php:1085
    7579msgid "%s day"
    7680msgid_plural "%s days"
     
    7882msgstr[1] "%s dagar"
    7983
    80 #: exodox.php:1038 exodox.php:1057
     84#: exodox.php:1058 exodox.php:1077
    8185msgid "%s hour"
    8286msgid_plural "%s hours"
     
    8488msgstr[1] "%s timmar"
    8589
    86 #: exodox.php:1192
     90#: exodox.php:1212
    8791msgid ""
    8892"%1$sReport abuse link%2$sI would like to report the Exodox link %3$s with "
     
    9296"%3$s med beskrivningen: %4$s"
    9397
    94 #: exodox.php:1198
     98#: exodox.php:1218
    9599msgid "Report abuse"
    96100msgstr "Rapportera missbruk"
    97101
    98 #: exodox.php:1238
     102#: exodox.php:1258
    99103msgid "Unlock"
    100104msgstr "Lås upp"
    101105
    102 #: exodox.php:1256
     106#: exodox.php:1276
    103107msgid "%1$sUnlock Link%2$s%3$s"
    104108msgstr "%1$sLås upp länk%2$s%3$s"
    105109
    106 #: exodox.php:1257
     110#: exodox.php:1277
    107111msgid "%1$sUnlock Link%2$sLogin to Exodox%3$s"
    108112msgstr "%1$sLås upp länk%2$sLogga in till Exodox%3$s"
    109113
    110 #: exodox.php:1265
     114#: exodox.php:1285
    111115msgid "<em>%1$s %2$s</em> will be added to your monthly billing"
    112116msgstr "<em>%1$s %2$s</em> kommer läggas till din månadsbetalning"
    113117
    114 #: exodox.php:1272
     118#: exodox.php:1292
    115119msgid "New to Exodox?%1$sCreate Account%2$s"
    116120msgstr "Ny till Exodox?%1$sSkapa konto%2$s"
    117121
    118 #: exodox.php:1278
     122#: exodox.php:1298
    119123msgid "%1$sGo to my dashboard%2$s"
    120124msgstr "%1$sGå till min översikt%2$s"
    121125
    122 #: exodox.php:1284
     126#: exodox.php:1304
    123127msgid "%1$sLogout%2$s"
    124128msgstr "%1$sLogga ut%2$s"
    125129
    126 #: exodox.php:1297
     130#: exodox.php:1317
    127131msgid "The article is unlocked. Read the entire article for %s more"
    128132msgstr "Artikeln är upplåst. Läs hela artikeln i %s till"
    129133
    130 #: exodox.php:1301
     134#: exodox.php:1321
    131135msgid "You must <em>allow cookies</em> to be able to unlock this article"
    132136msgstr ""
     
    134138"här artikeln."
    135139
    136 #: exodox.php:1305 exodox.php:1328 exodox.php:1349 exodox.php:1371
     140#: exodox.php:1325 exodox.php:1348 exodox.php:1369 exodox.php:1391
    137141msgid "%1$s %2$s"
    138142msgstr "%1$s %2$s"
    139143
    140 #: exodox.php:1306 exodox.php:1329 exodox.php:1350 exodox.php:1372
     144#: exodox.php:1326 exodox.php:1349 exodox.php:1370 exodox.php:1392
    141145msgid "%s access"
    142146msgstr "%s's åtkomst"
    143147
    144 #: exodox.php:1318
     148#: exodox.php:1338
    145149msgid ""
    146150"%1$sYou need an Exodox account to be able to purchase access to this link. "
     
    150154"här artikeln. %2$sVad är Exodox?%3$s%4$sLogga in för att låsa upp%5$s"
    151155
    152 #: exodox.php:1341
     156#: exodox.php:1361
    153157msgid "Unfortunately, your previous purchase has expired. %1$sBuy again%2$s"
    154158msgstr ""
    155159"Tyvärr har ditt tidigare köp gått ut för den här artikeln. %1$sKöp igen%2$s"
    156160
    157 #: exodox.php:1362
     161#: exodox.php:1382
    158162msgid "Logged in."
    159163msgstr "Inloggad."
    160164
    161 #: exodox.php:1406
     165#: exodox.php:1426
    162166msgid "Update"
    163167msgstr "Uppdatera"
  • exodox/tags/0.8.1/languages/exodox.pot

    r2390087 r2408286  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Exodox 0.8.0\n"
     5"Project-Id-Version: Exodox 0.8.1\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/exodox\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-09-29T07:02:51+00:00\n"
     12"POT-Creation-Date: 2020-10-28T12:54:00+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.4.0\n"
     
    5050msgstr ""
    5151
    52 #: exodox.php:616
     52#: exodox.php:252
     53msgid "Wrong format of Publisher Id"
     54msgstr ""
     55
     56#: exodox.php:628
    5357msgid "Read the whole article for only %1$s %2$s"
    5458msgstr ""
    5559
    56 #: exodox.php:622
    57 #: exodox.php:1293
     60#: exodox.php:634
     61#: exodox.php:1313
    5862msgid "The article is locked with Exodox; but you, as administrator, can still read it."
    5963msgstr ""
    6064
    61 #: exodox.php:626
     65#: exodox.php:638
    6266msgid "The article is unlocked, available for %1$s more"
    6367msgstr ""
    6468
    65 #: exodox.php:629
     69#: exodox.php:641
    6670msgid "Locked content. You must allow cookies in order to be able to purchase this article."
    6771msgstr ""
    6872
    69 #: exodox.php:1030
    70 #: exodox.php:1065
     73#: exodox.php:1050
     74#: exodox.php:1085
    7175msgid "%s day"
    7276msgid_plural "%s days"
     
    7478msgstr[1] ""
    7579
    76 #: exodox.php:1038
    77 #: exodox.php:1057
     80#: exodox.php:1058
     81#: exodox.php:1077
    7882msgid "%s hour"
    7983msgid_plural "%s hours"
     
    8185msgstr[1] ""
    8286
    83 #: exodox.php:1192
     87#: exodox.php:1212
    8488msgid "%1$sReport abuse link%2$sI would like to report the Exodox link %3$s with the description: %4$s"
    8589msgstr ""
    8690
    87 #: exodox.php:1198
     91#: exodox.php:1218
    8892msgid "Report abuse"
    8993msgstr ""
    9094
    91 #: exodox.php:1238
     95#: exodox.php:1258
    9296msgid "Unlock"
    9397msgstr ""
    9498
    95 #: exodox.php:1256
     99#: exodox.php:1276
    96100msgid "%1$sUnlock Link%2$s%3$s"
    97101msgstr ""
    98102
    99 #: exodox.php:1257
     103#: exodox.php:1277
    100104msgid "%1$sUnlock Link%2$sLogin to Exodox%3$s"
    101105msgstr ""
    102106
    103 #: exodox.php:1265
     107#: exodox.php:1285
    104108msgid "<em>%1$s %2$s</em> will be added to your monthly billing"
    105109msgstr ""
    106110
    107 #: exodox.php:1272
     111#: exodox.php:1292
    108112msgid "New to Exodox?%1$sCreate Account%2$s"
    109113msgstr ""
    110114
    111 #: exodox.php:1278
     115#: exodox.php:1298
    112116msgid "%1$sGo to my dashboard%2$s"
    113117msgstr ""
    114118
    115 #: exodox.php:1284
     119#: exodox.php:1304
    116120msgid "%1$sLogout%2$s"
    117121msgstr ""
    118122
    119 #: exodox.php:1297
     123#: exodox.php:1317
    120124msgid "The article is unlocked. Read the entire article for %s more"
    121125msgstr ""
    122126
    123 #: exodox.php:1301
     127#: exodox.php:1321
    124128msgid "You must <em>allow cookies</em> to be able to unlock this article"
    125129msgstr ""
    126130
    127 #: exodox.php:1305
    128 #: exodox.php:1328
    129 #: exodox.php:1349
    130 #: exodox.php:1371
     131#: exodox.php:1325
     132#: exodox.php:1348
     133#: exodox.php:1369
     134#: exodox.php:1391
    131135msgid "%1$s %2$s"
    132136msgstr ""
    133137
    134 #: exodox.php:1306
    135 #: exodox.php:1329
    136 #: exodox.php:1350
    137 #: exodox.php:1372
     138#: exodox.php:1326
     139#: exodox.php:1349
     140#: exodox.php:1370
     141#: exodox.php:1392
    138142msgid "%s access"
    139143msgstr ""
    140144
    141 #: exodox.php:1318
     145#: exodox.php:1338
    142146msgid "%1$sYou need an Exodox account to be able to purchase access to this link. %2$sWhat is Exodox?%3$s%4$sLogin to unlock%5$s"
    143147msgstr ""
    144148
    145 #: exodox.php:1341
     149#: exodox.php:1361
    146150msgid "Unfortunately, your previous purchase has expired. %1$sBuy again%2$s"
    147151msgstr ""
    148152
    149 #: exodox.php:1362
     153#: exodox.php:1382
    150154msgid "Logged in."
    151155msgstr ""
    152156
    153 #: exodox.php:1406
     157#: exodox.php:1426
    154158msgid "Update"
    155159msgstr ""
  • exodox/tags/0.8.1/readme.txt

    r2390087 r2408286  
    66Tested up to: 5.4.1
    77Requires PHP: 7.2
    8 Stable tag: 0.8.0
     8Stable tag: 0.8.1
    99License: ISC
    1010License URI: http://directory.fsf.org/wiki/License:ISC
  • exodox/trunk/exodox.php

    r2390087 r2408286  
    33 * Plugin Name: Exodox
    44 * Plugin URI:  https://exodox.link/get-plugin/
    5  * Version:     0.8.0
     5 * Version:     0.8.1
    66 * Author:      Exodox
    77 * Author URI:  https://exodox.link
     
    4242class ExodoxLogin
    4343{
    44     const EXODOX_PLUGIN_VERSION = '0.8.0';
     44    const EXODOX_PLUGIN_VERSION = '0.8.1';
    4545    const EXODOX_ADMIN_PAGE_SLUG = 'exodox';
    4646    const EXODOX_COOKIE_NAME = 'exodoxUserId';
     
    121121        }
    122122        $settings = [
    123             'exodox_publisher_id' => 'sanitize_text_field',
    124             'exodox_disable_listing' => 'sanitize_key'
     123            'exodox_publisher_id' => [__CLASS__, 'filter_publisher_id'],
     124            'exodox_disable_listing' => 'sanitize_key',
    125125        ];
    126126
     
    149149            ]
    150150        );
    151        
     151
    152152        add_settings_field(
    153153            'exodox_disable_listing',
     
    246246    public static function filter_publisher_id($id)
    247247    {
    248         // TODO: Validate UUID
    249         return $id;
     248        if (!wp_is_uuid($id)) {
     249            add_settings_error(
     250                'exodox_publisher_id',
     251                'exodox_publisher_id_error',
     252                esc_html__('Wrong format of Publisher Id', 'exodox'),
     253                'error'
     254            );
     255        }
     256
     257        if (count(get_settings_errors('exodox_publisher_id'))) {
     258            return self::get_publisher_id();
     259        }
     260
     261        return apply_filters('filter_publisher_id', sanitize_text_field($id));
    250262    }
    251263
     
    396408        }
    397409
    398         if (is_single() && 0 === count(self::$exodoxCurrentPosts)) {
     410        if (is_singular() && 0 === count(self::$exodoxCurrentPosts)) {
    399411            $link = self::get_common_url(get_permalink($posts[0]->ID));
    400412
    401             if (in_array($link, self::$exodoxLockedPosts)) {
     413            if (self::is_path_locked($link)) {
    402414                // Locked single post
    403415                $lockedPost = self::lock_single_post($posts[0]);
     
    410422
    411423        // Listing
    412         if (self::wrap_listing() && !is_single() && count(self::$exodoxLockedPosts)) {
     424        if (self::wrap_listing() && !is_singular() && count(self::$exodoxLockedPosts)) {
    413425            foreach ($returnPosts as &$post) {
    414426                $link = self::get_common_url(get_permalink($post->ID));
    415                 if (in_array($link, self::$exodoxLockedPosts) && !in_array($link, self::$exodoxCurrentPosts)) {
     427                if (self::is_path_locked($link) && !in_array($link, self::$exodoxCurrentPosts)) {
    416428                    $lockStatus = self::get_lock_status($link);
    417429
     
    839851        }
    840852
    841         return in_array($path, self::$exodoxLockedPosts);
     853        if (in_array($path, self::$exodoxLockedPosts)) {
     854            $lockedPostObject = self::get_locked_post_object($path);
     855
     856            if ($lockedPostObject && $lockedPostObject ['active']) {
     857                return true;
     858            }
     859        }
     860
     861        return false;
    842862    }
    843863
     
    900920     *
    901921     * @since 0.7.8
    902      * 
     922     *
    903923     * @return bool
    904924     */
    905925    public static function wrap_listing()
    906926    {
    907         return get_option('exodox_disable_listing') !== 'yes';
     927        return 'yes' !== get_option('exodox_disable_listing');
    908928    }
    909929
     
    14341454     *
    14351455     * @since 0.7.8
    1436      * 
     1456     *
    14371457     * @param array $args Checkbox properties
    1438      * 
     1458     *
    14391459     * @return null
    14401460     */
     
    14441464            '<input type="checkbox" class="%s" name="exodox_disable_listing" value="yes" %s />%s',
    14451465            esc_attr(array_key_exists('class', $args) ? $args ['class'] : ''),
    1446             esc_attr(get_option('exodox_disable_listing') === 'yes' ? 'checked=checked' : ''),
     1466            esc_attr('yes' === get_option('exodox_disable_listing') ? 'checked=checked' : ''),
    14471467            array_key_exists('help_text', $args) ? sprintf('<p class="description">%s</p>', esc_html($args ['help_text'])) : ''
    14481468        );
  • exodox/trunk/languages/exodox-sv_SE.po

    r2385657 r2408286  
    55"Project-Id-Version: Plugins - Exodox - Stable (latest release)\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/exodox\n"
    7 "POT-Creation-Date: 2020-08-26T13:13:20+00:00\n"
     7"POT-Creation-Date: 2020-10-28T12:53:54+00:00\n"
    88"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    99"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    5050msgstr "Exodox - Lås innehåll"
    5151
    52 #: exodox.php:616
     52#: exodox.php:252
     53msgid "Wrong format of Publisher Id"
     54msgstr ""
     55
     56#: exodox.php:628
    5357msgid "Read the whole article for only %1$s %2$s"
    5458msgstr "Läs hela artikeln för endast %1$s %2$s"
    5559
    56 #: exodox.php:622 exodox.php:1293
     60#: exodox.php:634 exodox.php:1313
    5761msgid ""
    5862"The article is locked with Exodox; but you, as administrator, can still read "
     
    6064msgstr "Artikeln är låst med Exodox, men du som admin på bloggen kan läsa den."
    6165
    62 #: exodox.php:626
     66#: exodox.php:638
    6367msgid "The article is unlocked, available for %1$s more"
    6468msgstr "Artikeln upplåst, tillgängligt i %1$s till"
    6569
    66 #: exodox.php:629
     70#: exodox.php:641
    6771msgid ""
    6872"Locked content. You must allow cookies in order to be able to purchase this "
     
    7276"till den här artikeln."
    7377
    74 #: exodox.php:1030 exodox.php:1065
     78#: exodox.php:1050 exodox.php:1085
    7579msgid "%s day"
    7680msgid_plural "%s days"
     
    7882msgstr[1] "%s dagar"
    7983
    80 #: exodox.php:1038 exodox.php:1057
     84#: exodox.php:1058 exodox.php:1077
    8185msgid "%s hour"
    8286msgid_plural "%s hours"
     
    8488msgstr[1] "%s timmar"
    8589
    86 #: exodox.php:1192
     90#: exodox.php:1212
    8791msgid ""
    8892"%1$sReport abuse link%2$sI would like to report the Exodox link %3$s with "
     
    9296"%3$s med beskrivningen: %4$s"
    9397
    94 #: exodox.php:1198
     98#: exodox.php:1218
    9599msgid "Report abuse"
    96100msgstr "Rapportera missbruk"
    97101
    98 #: exodox.php:1238
     102#: exodox.php:1258
    99103msgid "Unlock"
    100104msgstr "Lås upp"
    101105
    102 #: exodox.php:1256
     106#: exodox.php:1276
    103107msgid "%1$sUnlock Link%2$s%3$s"
    104108msgstr "%1$sLås upp länk%2$s%3$s"
    105109
    106 #: exodox.php:1257
     110#: exodox.php:1277
    107111msgid "%1$sUnlock Link%2$sLogin to Exodox%3$s"
    108112msgstr "%1$sLås upp länk%2$sLogga in till Exodox%3$s"
    109113
    110 #: exodox.php:1265
     114#: exodox.php:1285
    111115msgid "<em>%1$s %2$s</em> will be added to your monthly billing"
    112116msgstr "<em>%1$s %2$s</em> kommer läggas till din månadsbetalning"
    113117
    114 #: exodox.php:1272
     118#: exodox.php:1292
    115119msgid "New to Exodox?%1$sCreate Account%2$s"
    116120msgstr "Ny till Exodox?%1$sSkapa konto%2$s"
    117121
    118 #: exodox.php:1278
     122#: exodox.php:1298
    119123msgid "%1$sGo to my dashboard%2$s"
    120124msgstr "%1$sGå till min översikt%2$s"
    121125
    122 #: exodox.php:1284
     126#: exodox.php:1304
    123127msgid "%1$sLogout%2$s"
    124128msgstr "%1$sLogga ut%2$s"
    125129
    126 #: exodox.php:1297
     130#: exodox.php:1317
    127131msgid "The article is unlocked. Read the entire article for %s more"
    128132msgstr "Artikeln är upplåst. Läs hela artikeln i %s till"
    129133
    130 #: exodox.php:1301
     134#: exodox.php:1321
    131135msgid "You must <em>allow cookies</em> to be able to unlock this article"
    132136msgstr ""
     
    134138"här artikeln."
    135139
    136 #: exodox.php:1305 exodox.php:1328 exodox.php:1349 exodox.php:1371
     140#: exodox.php:1325 exodox.php:1348 exodox.php:1369 exodox.php:1391
    137141msgid "%1$s %2$s"
    138142msgstr "%1$s %2$s"
    139143
    140 #: exodox.php:1306 exodox.php:1329 exodox.php:1350 exodox.php:1372
     144#: exodox.php:1326 exodox.php:1349 exodox.php:1370 exodox.php:1392
    141145msgid "%s access"
    142146msgstr "%s's åtkomst"
    143147
    144 #: exodox.php:1318
     148#: exodox.php:1338
    145149msgid ""
    146150"%1$sYou need an Exodox account to be able to purchase access to this link. "
     
    150154"här artikeln. %2$sVad är Exodox?%3$s%4$sLogga in för att låsa upp%5$s"
    151155
    152 #: exodox.php:1341
     156#: exodox.php:1361
    153157msgid "Unfortunately, your previous purchase has expired. %1$sBuy again%2$s"
    154158msgstr ""
    155159"Tyvärr har ditt tidigare köp gått ut för den här artikeln. %1$sKöp igen%2$s"
    156160
    157 #: exodox.php:1362
     161#: exodox.php:1382
    158162msgid "Logged in."
    159163msgstr "Inloggad."
    160164
    161 #: exodox.php:1406
     165#: exodox.php:1426
    162166msgid "Update"
    163167msgstr "Uppdatera"
  • exodox/trunk/languages/exodox.pot

    r2390087 r2408286  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Exodox 0.8.0\n"
     5"Project-Id-Version: Exodox 0.8.1\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/exodox\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-09-29T07:02:51+00:00\n"
     12"POT-Creation-Date: 2020-10-28T12:54:00+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.4.0\n"
     
    5050msgstr ""
    5151
    52 #: exodox.php:616
     52#: exodox.php:252
     53msgid "Wrong format of Publisher Id"
     54msgstr ""
     55
     56#: exodox.php:628
    5357msgid "Read the whole article for only %1$s %2$s"
    5458msgstr ""
    5559
    56 #: exodox.php:622
    57 #: exodox.php:1293
     60#: exodox.php:634
     61#: exodox.php:1313
    5862msgid "The article is locked with Exodox; but you, as administrator, can still read it."
    5963msgstr ""
    6064
    61 #: exodox.php:626
     65#: exodox.php:638
    6266msgid "The article is unlocked, available for %1$s more"
    6367msgstr ""
    6468
    65 #: exodox.php:629
     69#: exodox.php:641
    6670msgid "Locked content. You must allow cookies in order to be able to purchase this article."
    6771msgstr ""
    6872
    69 #: exodox.php:1030
    70 #: exodox.php:1065
     73#: exodox.php:1050
     74#: exodox.php:1085
    7175msgid "%s day"
    7276msgid_plural "%s days"
     
    7478msgstr[1] ""
    7579
    76 #: exodox.php:1038
    77 #: exodox.php:1057
     80#: exodox.php:1058
     81#: exodox.php:1077
    7882msgid "%s hour"
    7983msgid_plural "%s hours"
     
    8185msgstr[1] ""
    8286
    83 #: exodox.php:1192
     87#: exodox.php:1212
    8488msgid "%1$sReport abuse link%2$sI would like to report the Exodox link %3$s with the description: %4$s"
    8589msgstr ""
    8690
    87 #: exodox.php:1198
     91#: exodox.php:1218
    8892msgid "Report abuse"
    8993msgstr ""
    9094
    91 #: exodox.php:1238
     95#: exodox.php:1258
    9296msgid "Unlock"
    9397msgstr ""
    9498
    95 #: exodox.php:1256
     99#: exodox.php:1276
    96100msgid "%1$sUnlock Link%2$s%3$s"
    97101msgstr ""
    98102
    99 #: exodox.php:1257
     103#: exodox.php:1277
    100104msgid "%1$sUnlock Link%2$sLogin to Exodox%3$s"
    101105msgstr ""
    102106
    103 #: exodox.php:1265
     107#: exodox.php:1285
    104108msgid "<em>%1$s %2$s</em> will be added to your monthly billing"
    105109msgstr ""
    106110
    107 #: exodox.php:1272
     111#: exodox.php:1292
    108112msgid "New to Exodox?%1$sCreate Account%2$s"
    109113msgstr ""
    110114
    111 #: exodox.php:1278
     115#: exodox.php:1298
    112116msgid "%1$sGo to my dashboard%2$s"
    113117msgstr ""
    114118
    115 #: exodox.php:1284
     119#: exodox.php:1304
    116120msgid "%1$sLogout%2$s"
    117121msgstr ""
    118122
    119 #: exodox.php:1297
     123#: exodox.php:1317
    120124msgid "The article is unlocked. Read the entire article for %s more"
    121125msgstr ""
    122126
    123 #: exodox.php:1301
     127#: exodox.php:1321
    124128msgid "You must <em>allow cookies</em> to be able to unlock this article"
    125129msgstr ""
    126130
    127 #: exodox.php:1305
    128 #: exodox.php:1328
    129 #: exodox.php:1349
    130 #: exodox.php:1371
     131#: exodox.php:1325
     132#: exodox.php:1348
     133#: exodox.php:1369
     134#: exodox.php:1391
    131135msgid "%1$s %2$s"
    132136msgstr ""
    133137
    134 #: exodox.php:1306
    135 #: exodox.php:1329
    136 #: exodox.php:1350
    137 #: exodox.php:1372
     138#: exodox.php:1326
     139#: exodox.php:1349
     140#: exodox.php:1370
     141#: exodox.php:1392
    138142msgid "%s access"
    139143msgstr ""
    140144
    141 #: exodox.php:1318
     145#: exodox.php:1338
    142146msgid "%1$sYou need an Exodox account to be able to purchase access to this link. %2$sWhat is Exodox?%3$s%4$sLogin to unlock%5$s"
    143147msgstr ""
    144148
    145 #: exodox.php:1341
     149#: exodox.php:1361
    146150msgid "Unfortunately, your previous purchase has expired. %1$sBuy again%2$s"
    147151msgstr ""
    148152
    149 #: exodox.php:1362
     153#: exodox.php:1382
    150154msgid "Logged in."
    151155msgstr ""
    152156
    153 #: exodox.php:1406
     157#: exodox.php:1426
    154158msgid "Update"
    155159msgstr ""
  • exodox/trunk/readme.txt

    r2390087 r2408286  
    66Tested up to: 5.4.1
    77Requires PHP: 7.2
    8 Stable tag: 0.8.0
     8Stable tag: 0.8.1
    99License: ISC
    1010License URI: http://directory.fsf.org/wiki/License:ISC
Note: See TracChangeset for help on using the changeset viewer.