Plugin Directory

Changeset 2447271


Ignore:
Timestamp:
12/29/2020 09:53:06 AM (5 years ago)
Author:
exodox
Message:

Deploy to WordPress directory (v0.8.3)

Location:
exodox
Files:
10 edited
1 copied

Legend:

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

    r2408286 r2447271  
    33 * Plugin Name: Exodox
    44 * Plugin URI:  https://exodox.link/get-plugin/
    5  * Version:     0.8.1
     5 * Version:     0.8.3
    66 * Author:      Exodox
    77 * Author URI:  https://exodox.link
     
    4242class ExodoxLogin
    4343{
    44     const EXODOX_PLUGIN_VERSION = '0.8.1';
     44    const EXODOX_PLUGIN_VERSION = '0.8.3';
    4545    const EXODOX_ADMIN_PAGE_SLUG = 'exodox';
    4646    const EXODOX_COOKIE_NAME = 'exodoxUserId';
     
    100100            add_filter('loop_start', [__CLASS__, 'loop_start'], 0, 2);
    101101            add_filter('the_post', [__CLASS__, 'add_read_more_element'], 0, 2);
     102
     103            add_filter('the_content_feed', [__CLASS__, 'hide_content_in_feed'], 0, 2);
    102104        }
    103105    }
     
    342344            'methods' => 'POST',
    343345            'callback' => [__CLASS__, 'exodox_verify_owner'],
     346            'permission_callback' => '__return_true',
    344347        ]);
    345348    }
     
    386389    public static function the_posts($posts)
    387390    {
     391        if (0 === count($posts)) {
     392            return $posts;
     393        }
     394
    388395        $newPosts = [];
    389396        $returnPosts = $posts;
     
    619626    public static function add_read_more_element($content, $query)
    620627    {
    621         if (self::wrap_listing() && self::is_path_locked() && !is_singular() && self::should_display_read_more($query)) {
     628        if (self::wrap_listing() && self::is_path_locked() && !is_singular() && self::should_display_read_more($query) && !is_feed()) {
    622629            $link = self::get_common_url(get_permalink());
    623630            $status = self::get_lock_status($link);
     
    661668    }
    662669
     670    /**
     671     * Hide content in feeds of different types.
     672     *
     673     * @param string $content
     674     * @param string $feed_type
     675     *
     676     * @return string
     677     */
     678    public static function hide_content_in_feed($content, $type)
     679    {
     680        if (self::is_path_locked()) {
     681            return esc_html__('The article is locked with Exodox; and disabled in feeds.', 'exodox');
     682        }
     683
     684        return $content;
     685    }
     686
    663687    /**********************************************/
    664688    /* Wordpress sections (must be public static) */
     
    10421066
    10431067        $hours = $interval->format('%h');
    1044         $days = $interval->format('%d');
     1068        $days = $interval->format('%a');
    10451069
    10461070        if ($days > 0) {
  • exodox/tags/0.8.3/languages/exodox-sv_SE.po

    r2408286 r2447271  
    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-10-28T12:53:54+00:00\n"
     7"POT-Creation-Date: 2020-12-18T08:22:39+00:00\n"
    88"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    99"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1818#. Plugin Name of the plugin
    1919#. Author of the plugin
    20 #: exodox.php:169
     20#: exodox.php:171
    2121msgid "Exodox"
    2222msgstr ""
     
    3434msgstr ""
    3535
    36 #: exodox.php:133 exodox.php:231
     36#: exodox.php:135 exodox.php:233
    3737msgid "Settings"
    3838msgstr "Inställningar"
    3939
    40 #: exodox.php:140
     40#: exodox.php:142
    4141msgid "Publisher ID"
    4242msgstr "Publisher ID"
    4343
    44 #: exodox.php:154
     44#: exodox.php:156
    4545msgid "Disable Exodox graphics on listing pages"
    4646msgstr "Inaktivera Exodox grafik på lista sidor"
    4747
    48 #: exodox.php:168
     48#: exodox.php:170
    4949msgid "Exodox - Lock content"
    5050msgstr "Exodox - Lås innehåll"
    5151
    52 #: exodox.php:252
     52#: exodox.php:254
    5353msgid "Wrong format of Publisher Id"
    5454msgstr ""
    5555
    56 #: exodox.php:628
     56#: exodox.php:635
    5757msgid "Read the whole article for only %1$s %2$s"
    5858msgstr "Läs hela artikeln för endast %1$s %2$s"
    5959
    60 #: exodox.php:634 exodox.php:1313
     60#: exodox.php:641 exodox.php:1337
    6161msgid ""
    6262"The article is locked with Exodox; but you, as administrator, can still read "
     
    6464msgstr "Artikeln är låst med Exodox, men du som admin på bloggen kan läsa den."
    6565
    66 #: exodox.php:638
     66#: exodox.php:645
    6767msgid "The article is unlocked, available for %1$s more"
    6868msgstr "Artikeln upplåst, tillgängligt i %1$s till"
    6969
    70 #: exodox.php:641
     70#: exodox.php:648
    7171msgid ""
    7272"Locked content. You must allow cookies in order to be able to purchase this "
     
    7676"till den här artikeln."
    7777
    78 #: exodox.php:1050 exodox.php:1085
     78#: exodox.php:681
     79msgid "The article is locked with Exodox; and disabled in feeds."
     80msgstr "The article is locked with Exodox; and disabled in feeds."
     81
     82#: exodox.php:1074 exodox.php:1109
    7983msgid "%s day"
    8084msgid_plural "%s days"
     
    8286msgstr[1] "%s dagar"
    8387
    84 #: exodox.php:1058 exodox.php:1077
     88#: exodox.php:1082 exodox.php:1101
    8589msgid "%s hour"
    8690msgid_plural "%s hours"
     
    8892msgstr[1] "%s timmar"
    8993
    90 #: exodox.php:1212
     94#: exodox.php:1236
    9195msgid ""
    9296"%1$sReport abuse link%2$sI would like to report the Exodox link %3$s with "
     
    96100"%3$s med beskrivningen: %4$s"
    97101
    98 #: exodox.php:1218
     102#: exodox.php:1242
    99103msgid "Report abuse"
    100104msgstr "Rapportera missbruk"
    101105
    102 #: exodox.php:1258
     106#: exodox.php:1282
    103107msgid "Unlock"
    104108msgstr "Lås upp"
    105109
    106 #: exodox.php:1276
     110#: exodox.php:1300
    107111msgid "%1$sUnlock Link%2$s%3$s"
    108112msgstr "%1$sLås upp länk%2$s%3$s"
    109113
    110 #: exodox.php:1277
     114#: exodox.php:1301
    111115msgid "%1$sUnlock Link%2$sLogin to Exodox%3$s"
    112116msgstr "%1$sLås upp länk%2$sLogga in till Exodox%3$s"
    113117
    114 #: exodox.php:1285
     118#: exodox.php:1309
    115119msgid "<em>%1$s %2$s</em> will be added to your monthly billing"
    116120msgstr "<em>%1$s %2$s</em> kommer läggas till din månadsbetalning"
    117121
    118 #: exodox.php:1292
     122#: exodox.php:1316
    119123msgid "New to Exodox?%1$sCreate Account%2$s"
    120 msgstr "Ny till Exodox?%1$sSkapa konto%2$s"
     124msgstr "Ny Exodox?%1$sSkapa konto%2$s"
    121125
    122 #: exodox.php:1298
     126#: exodox.php:1322
    123127msgid "%1$sGo to my dashboard%2$s"
    124128msgstr "%1$sGå till min översikt%2$s"
    125129
    126 #: exodox.php:1304
     130#: exodox.php:1328
    127131msgid "%1$sLogout%2$s"
    128132msgstr "%1$sLogga ut%2$s"
    129133
    130 #: exodox.php:1317
     134#: exodox.php:1341
    131135msgid "The article is unlocked. Read the entire article for %s more"
    132136msgstr "Artikeln är upplåst. Läs hela artikeln i %s till"
    133137
    134 #: exodox.php:1321
     138#: exodox.php:1345
    135139msgid "You must <em>allow cookies</em> to be able to unlock this article"
    136140msgstr ""
     
    138142"här artikeln."
    139143
    140 #: exodox.php:1325 exodox.php:1348 exodox.php:1369 exodox.php:1391
     144#: exodox.php:1349 exodox.php:1372 exodox.php:1393 exodox.php:1415
    141145msgid "%1$s %2$s"
    142146msgstr "%1$s %2$s"
    143147
    144 #: exodox.php:1326 exodox.php:1349 exodox.php:1370 exodox.php:1392
     148#: exodox.php:1350 exodox.php:1373 exodox.php:1394 exodox.php:1416
    145149msgid "%s access"
    146150msgstr "%s's åtkomst"
    147151
    148 #: exodox.php:1338
     152#: exodox.php:1362
    149153msgid ""
    150154"%1$sYou need an Exodox account to be able to purchase access to this link. "
     
    154158"här artikeln. %2$sVad är Exodox?%3$s%4$sLogga in för att låsa upp%5$s"
    155159
    156 #: exodox.php:1361
     160#: exodox.php:1385
    157161msgid "Unfortunately, your previous purchase has expired. %1$sBuy again%2$s"
    158162msgstr ""
    159163"Tyvärr har ditt tidigare köp gått ut för den här artikeln. %1$sKöp igen%2$s"
    160164
    161 #: exodox.php:1382
     165#: exodox.php:1406
    162166msgid "Logged in."
    163167msgstr "Inloggad."
    164168
    165 #: exodox.php:1426
     169#: exodox.php:1450
    166170msgid "Update"
    167171msgstr "Uppdatera"
  • exodox/tags/0.8.3/languages/exodox.pot

    r2408286 r2447271  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Exodox 0.8.1\n"
     5"Project-Id-Version: Exodox 0.8.3\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-10-28T12:54:00+00:00\n"
     12"POT-Creation-Date: 2020-12-18T08:32:38+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.4.0\n"
     
    1717#. Plugin Name of the plugin
    1818#. Author of the plugin
    19 #: exodox.php:169
     19#: exodox.php:171
    2020msgid "Exodox"
    2121msgstr ""
     
    3333msgstr ""
    3434
    35 #: exodox.php:133
    36 #: exodox.php:231
     35#: exodox.php:135
     36#: exodox.php:233
    3737msgid "Settings"
    3838msgstr ""
    3939
    40 #: exodox.php:140
     40#: exodox.php:142
    4141msgid "Publisher ID"
    4242msgstr ""
    4343
    44 #: exodox.php:154
     44#: exodox.php:156
    4545msgid "Disable Exodox graphics on listing pages"
    4646msgstr ""
    4747
    48 #: exodox.php:168
     48#: exodox.php:170
    4949msgid "Exodox - Lock content"
    5050msgstr ""
    5151
    52 #: exodox.php:252
     52#: exodox.php:254
    5353msgid "Wrong format of Publisher Id"
    5454msgstr ""
    5555
    56 #: exodox.php:628
     56#: exodox.php:635
    5757msgid "Read the whole article for only %1$s %2$s"
    5858msgstr ""
    5959
    60 #: exodox.php:634
    61 #: exodox.php:1313
     60#: exodox.php:641
     61#: exodox.php:1337
    6262msgid "The article is locked with Exodox; but you, as administrator, can still read it."
    6363msgstr ""
    6464
    65 #: exodox.php:638
     65#: exodox.php:645
    6666msgid "The article is unlocked, available for %1$s more"
    6767msgstr ""
    6868
    69 #: exodox.php:641
     69#: exodox.php:648
    7070msgid "Locked content. You must allow cookies in order to be able to purchase this article."
    7171msgstr ""
    7272
    73 #: exodox.php:1050
    74 #: exodox.php:1085
     73#: exodox.php:681
     74msgid "The article is locked with Exodox; and disabled in feeds."
     75msgstr ""
     76
     77#: exodox.php:1074
     78#: exodox.php:1109
    7579msgid "%s day"
    7680msgid_plural "%s days"
     
    7882msgstr[1] ""
    7983
    80 #: exodox.php:1058
    81 #: exodox.php:1077
     84#: exodox.php:1082
     85#: exodox.php:1101
    8286msgid "%s hour"
    8387msgid_plural "%s hours"
     
    8589msgstr[1] ""
    8690
    87 #: exodox.php:1212
     91#: exodox.php:1236
    8892msgid "%1$sReport abuse link%2$sI would like to report the Exodox link %3$s with the description: %4$s"
    8993msgstr ""
    9094
    91 #: exodox.php:1218
     95#: exodox.php:1242
    9296msgid "Report abuse"
    9397msgstr ""
    9498
    95 #: exodox.php:1258
     99#: exodox.php:1282
    96100msgid "Unlock"
    97101msgstr ""
    98102
    99 #: exodox.php:1276
     103#: exodox.php:1300
    100104msgid "%1$sUnlock Link%2$s%3$s"
    101105msgstr ""
    102106
    103 #: exodox.php:1277
     107#: exodox.php:1301
    104108msgid "%1$sUnlock Link%2$sLogin to Exodox%3$s"
    105109msgstr ""
    106110
    107 #: exodox.php:1285
     111#: exodox.php:1309
    108112msgid "<em>%1$s %2$s</em> will be added to your monthly billing"
    109113msgstr ""
    110114
    111 #: exodox.php:1292
     115#: exodox.php:1316
    112116msgid "New to Exodox?%1$sCreate Account%2$s"
    113117msgstr ""
    114118
    115 #: exodox.php:1298
     119#: exodox.php:1322
    116120msgid "%1$sGo to my dashboard%2$s"
    117121msgstr ""
    118122
    119 #: exodox.php:1304
     123#: exodox.php:1328
    120124msgid "%1$sLogout%2$s"
    121125msgstr ""
    122126
    123 #: exodox.php:1317
     127#: exodox.php:1341
    124128msgid "The article is unlocked. Read the entire article for %s more"
    125129msgstr ""
    126130
    127 #: exodox.php:1321
     131#: exodox.php:1345
    128132msgid "You must <em>allow cookies</em> to be able to unlock this article"
    129133msgstr ""
    130134
    131 #: exodox.php:1325
    132 #: exodox.php:1348
    133 #: exodox.php:1369
    134 #: exodox.php:1391
     135#: exodox.php:1349
     136#: exodox.php:1372
     137#: exodox.php:1393
     138#: exodox.php:1415
    135139msgid "%1$s %2$s"
    136140msgstr ""
    137141
    138 #: exodox.php:1326
    139 #: exodox.php:1349
    140 #: exodox.php:1370
    141 #: exodox.php:1392
     142#: exodox.php:1350
     143#: exodox.php:1373
     144#: exodox.php:1394
     145#: exodox.php:1416
    142146msgid "%s access"
    143147msgstr ""
    144148
    145 #: exodox.php:1338
     149#: exodox.php:1362
    146150msgid "%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"
    147151msgstr ""
    148152
    149 #: exodox.php:1361
     153#: exodox.php:1385
    150154msgid "Unfortunately, your previous purchase has expired. %1$sBuy again%2$s"
    151155msgstr ""
    152156
    153 #: exodox.php:1382
     157#: exodox.php:1406
    154158msgid "Logged in."
    155159msgstr ""
    156160
    157 #: exodox.php:1426
     161#: exodox.php:1450
    158162msgid "Update"
    159163msgstr ""
  • exodox/tags/0.8.3/readme.txt

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

    r2408286 r2447271  
    33 * Plugin Name: Exodox
    44 * Plugin URI:  https://exodox.link/get-plugin/
    5  * Version:     0.8.1
     5 * Version:     0.8.3
    66 * Author:      Exodox
    77 * Author URI:  https://exodox.link
     
    4242class ExodoxLogin
    4343{
    44     const EXODOX_PLUGIN_VERSION = '0.8.1';
     44    const EXODOX_PLUGIN_VERSION = '0.8.3';
    4545    const EXODOX_ADMIN_PAGE_SLUG = 'exodox';
    4646    const EXODOX_COOKIE_NAME = 'exodoxUserId';
     
    100100            add_filter('loop_start', [__CLASS__, 'loop_start'], 0, 2);
    101101            add_filter('the_post', [__CLASS__, 'add_read_more_element'], 0, 2);
     102
     103            add_filter('the_content_feed', [__CLASS__, 'hide_content_in_feed'], 0, 2);
    102104        }
    103105    }
     
    342344            'methods' => 'POST',
    343345            'callback' => [__CLASS__, 'exodox_verify_owner'],
     346            'permission_callback' => '__return_true',
    344347        ]);
    345348    }
     
    386389    public static function the_posts($posts)
    387390    {
     391        if (0 === count($posts)) {
     392            return $posts;
     393        }
     394
    388395        $newPosts = [];
    389396        $returnPosts = $posts;
     
    619626    public static function add_read_more_element($content, $query)
    620627    {
    621         if (self::wrap_listing() && self::is_path_locked() && !is_singular() && self::should_display_read_more($query)) {
     628        if (self::wrap_listing() && self::is_path_locked() && !is_singular() && self::should_display_read_more($query) && !is_feed()) {
    622629            $link = self::get_common_url(get_permalink());
    623630            $status = self::get_lock_status($link);
     
    661668    }
    662669
     670    /**
     671     * Hide content in feeds of different types.
     672     *
     673     * @param string $content
     674     * @param string $feed_type
     675     *
     676     * @return string
     677     */
     678    public static function hide_content_in_feed($content, $type)
     679    {
     680        if (self::is_path_locked()) {
     681            return esc_html__('The article is locked with Exodox; and disabled in feeds.', 'exodox');
     682        }
     683
     684        return $content;
     685    }
     686
    663687    /**********************************************/
    664688    /* Wordpress sections (must be public static) */
     
    10421066
    10431067        $hours = $interval->format('%h');
    1044         $days = $interval->format('%d');
     1068        $days = $interval->format('%a');
    10451069
    10461070        if ($days > 0) {
  • exodox/trunk/languages/exodox-sv_SE.po

    r2408286 r2447271  
    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-10-28T12:53:54+00:00\n"
     7"POT-Creation-Date: 2020-12-18T08:22:39+00:00\n"
    88"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    99"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1818#. Plugin Name of the plugin
    1919#. Author of the plugin
    20 #: exodox.php:169
     20#: exodox.php:171
    2121msgid "Exodox"
    2222msgstr ""
     
    3434msgstr ""
    3535
    36 #: exodox.php:133 exodox.php:231
     36#: exodox.php:135 exodox.php:233
    3737msgid "Settings"
    3838msgstr "Inställningar"
    3939
    40 #: exodox.php:140
     40#: exodox.php:142
    4141msgid "Publisher ID"
    4242msgstr "Publisher ID"
    4343
    44 #: exodox.php:154
     44#: exodox.php:156
    4545msgid "Disable Exodox graphics on listing pages"
    4646msgstr "Inaktivera Exodox grafik på lista sidor"
    4747
    48 #: exodox.php:168
     48#: exodox.php:170
    4949msgid "Exodox - Lock content"
    5050msgstr "Exodox - Lås innehåll"
    5151
    52 #: exodox.php:252
     52#: exodox.php:254
    5353msgid "Wrong format of Publisher Id"
    5454msgstr ""
    5555
    56 #: exodox.php:628
     56#: exodox.php:635
    5757msgid "Read the whole article for only %1$s %2$s"
    5858msgstr "Läs hela artikeln för endast %1$s %2$s"
    5959
    60 #: exodox.php:634 exodox.php:1313
     60#: exodox.php:641 exodox.php:1337
    6161msgid ""
    6262"The article is locked with Exodox; but you, as administrator, can still read "
     
    6464msgstr "Artikeln är låst med Exodox, men du som admin på bloggen kan läsa den."
    6565
    66 #: exodox.php:638
     66#: exodox.php:645
    6767msgid "The article is unlocked, available for %1$s more"
    6868msgstr "Artikeln upplåst, tillgängligt i %1$s till"
    6969
    70 #: exodox.php:641
     70#: exodox.php:648
    7171msgid ""
    7272"Locked content. You must allow cookies in order to be able to purchase this "
     
    7676"till den här artikeln."
    7777
    78 #: exodox.php:1050 exodox.php:1085
     78#: exodox.php:681
     79msgid "The article is locked with Exodox; and disabled in feeds."
     80msgstr "The article is locked with Exodox; and disabled in feeds."
     81
     82#: exodox.php:1074 exodox.php:1109
    7983msgid "%s day"
    8084msgid_plural "%s days"
     
    8286msgstr[1] "%s dagar"
    8387
    84 #: exodox.php:1058 exodox.php:1077
     88#: exodox.php:1082 exodox.php:1101
    8589msgid "%s hour"
    8690msgid_plural "%s hours"
     
    8892msgstr[1] "%s timmar"
    8993
    90 #: exodox.php:1212
     94#: exodox.php:1236
    9195msgid ""
    9296"%1$sReport abuse link%2$sI would like to report the Exodox link %3$s with "
     
    96100"%3$s med beskrivningen: %4$s"
    97101
    98 #: exodox.php:1218
     102#: exodox.php:1242
    99103msgid "Report abuse"
    100104msgstr "Rapportera missbruk"
    101105
    102 #: exodox.php:1258
     106#: exodox.php:1282
    103107msgid "Unlock"
    104108msgstr "Lås upp"
    105109
    106 #: exodox.php:1276
     110#: exodox.php:1300
    107111msgid "%1$sUnlock Link%2$s%3$s"
    108112msgstr "%1$sLås upp länk%2$s%3$s"
    109113
    110 #: exodox.php:1277
     114#: exodox.php:1301
    111115msgid "%1$sUnlock Link%2$sLogin to Exodox%3$s"
    112116msgstr "%1$sLås upp länk%2$sLogga in till Exodox%3$s"
    113117
    114 #: exodox.php:1285
     118#: exodox.php:1309
    115119msgid "<em>%1$s %2$s</em> will be added to your monthly billing"
    116120msgstr "<em>%1$s %2$s</em> kommer läggas till din månadsbetalning"
    117121
    118 #: exodox.php:1292
     122#: exodox.php:1316
    119123msgid "New to Exodox?%1$sCreate Account%2$s"
    120 msgstr "Ny till Exodox?%1$sSkapa konto%2$s"
     124msgstr "Ny Exodox?%1$sSkapa konto%2$s"
    121125
    122 #: exodox.php:1298
     126#: exodox.php:1322
    123127msgid "%1$sGo to my dashboard%2$s"
    124128msgstr "%1$sGå till min översikt%2$s"
    125129
    126 #: exodox.php:1304
     130#: exodox.php:1328
    127131msgid "%1$sLogout%2$s"
    128132msgstr "%1$sLogga ut%2$s"
    129133
    130 #: exodox.php:1317
     134#: exodox.php:1341
    131135msgid "The article is unlocked. Read the entire article for %s more"
    132136msgstr "Artikeln är upplåst. Läs hela artikeln i %s till"
    133137
    134 #: exodox.php:1321
     138#: exodox.php:1345
    135139msgid "You must <em>allow cookies</em> to be able to unlock this article"
    136140msgstr ""
     
    138142"här artikeln."
    139143
    140 #: exodox.php:1325 exodox.php:1348 exodox.php:1369 exodox.php:1391
     144#: exodox.php:1349 exodox.php:1372 exodox.php:1393 exodox.php:1415
    141145msgid "%1$s %2$s"
    142146msgstr "%1$s %2$s"
    143147
    144 #: exodox.php:1326 exodox.php:1349 exodox.php:1370 exodox.php:1392
     148#: exodox.php:1350 exodox.php:1373 exodox.php:1394 exodox.php:1416
    145149msgid "%s access"
    146150msgstr "%s's åtkomst"
    147151
    148 #: exodox.php:1338
     152#: exodox.php:1362
    149153msgid ""
    150154"%1$sYou need an Exodox account to be able to purchase access to this link. "
     
    154158"här artikeln. %2$sVad är Exodox?%3$s%4$sLogga in för att låsa upp%5$s"
    155159
    156 #: exodox.php:1361
     160#: exodox.php:1385
    157161msgid "Unfortunately, your previous purchase has expired. %1$sBuy again%2$s"
    158162msgstr ""
    159163"Tyvärr har ditt tidigare köp gått ut för den här artikeln. %1$sKöp igen%2$s"
    160164
    161 #: exodox.php:1382
     165#: exodox.php:1406
    162166msgid "Logged in."
    163167msgstr "Inloggad."
    164168
    165 #: exodox.php:1426
     169#: exodox.php:1450
    166170msgid "Update"
    167171msgstr "Uppdatera"
  • exodox/trunk/languages/exodox.pot

    r2408286 r2447271  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Exodox 0.8.1\n"
     5"Project-Id-Version: Exodox 0.8.3\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-10-28T12:54:00+00:00\n"
     12"POT-Creation-Date: 2020-12-18T08:32:38+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.4.0\n"
     
    1717#. Plugin Name of the plugin
    1818#. Author of the plugin
    19 #: exodox.php:169
     19#: exodox.php:171
    2020msgid "Exodox"
    2121msgstr ""
     
    3333msgstr ""
    3434
    35 #: exodox.php:133
    36 #: exodox.php:231
     35#: exodox.php:135
     36#: exodox.php:233
    3737msgid "Settings"
    3838msgstr ""
    3939
    40 #: exodox.php:140
     40#: exodox.php:142
    4141msgid "Publisher ID"
    4242msgstr ""
    4343
    44 #: exodox.php:154
     44#: exodox.php:156
    4545msgid "Disable Exodox graphics on listing pages"
    4646msgstr ""
    4747
    48 #: exodox.php:168
     48#: exodox.php:170
    4949msgid "Exodox - Lock content"
    5050msgstr ""
    5151
    52 #: exodox.php:252
     52#: exodox.php:254
    5353msgid "Wrong format of Publisher Id"
    5454msgstr ""
    5555
    56 #: exodox.php:628
     56#: exodox.php:635
    5757msgid "Read the whole article for only %1$s %2$s"
    5858msgstr ""
    5959
    60 #: exodox.php:634
    61 #: exodox.php:1313
     60#: exodox.php:641
     61#: exodox.php:1337
    6262msgid "The article is locked with Exodox; but you, as administrator, can still read it."
    6363msgstr ""
    6464
    65 #: exodox.php:638
     65#: exodox.php:645
    6666msgid "The article is unlocked, available for %1$s more"
    6767msgstr ""
    6868
    69 #: exodox.php:641
     69#: exodox.php:648
    7070msgid "Locked content. You must allow cookies in order to be able to purchase this article."
    7171msgstr ""
    7272
    73 #: exodox.php:1050
    74 #: exodox.php:1085
     73#: exodox.php:681
     74msgid "The article is locked with Exodox; and disabled in feeds."
     75msgstr ""
     76
     77#: exodox.php:1074
     78#: exodox.php:1109
    7579msgid "%s day"
    7680msgid_plural "%s days"
     
    7882msgstr[1] ""
    7983
    80 #: exodox.php:1058
    81 #: exodox.php:1077
     84#: exodox.php:1082
     85#: exodox.php:1101
    8286msgid "%s hour"
    8387msgid_plural "%s hours"
     
    8589msgstr[1] ""
    8690
    87 #: exodox.php:1212
     91#: exodox.php:1236
    8892msgid "%1$sReport abuse link%2$sI would like to report the Exodox link %3$s with the description: %4$s"
    8993msgstr ""
    9094
    91 #: exodox.php:1218
     95#: exodox.php:1242
    9296msgid "Report abuse"
    9397msgstr ""
    9498
    95 #: exodox.php:1258
     99#: exodox.php:1282
    96100msgid "Unlock"
    97101msgstr ""
    98102
    99 #: exodox.php:1276
     103#: exodox.php:1300
    100104msgid "%1$sUnlock Link%2$s%3$s"
    101105msgstr ""
    102106
    103 #: exodox.php:1277
     107#: exodox.php:1301
    104108msgid "%1$sUnlock Link%2$sLogin to Exodox%3$s"
    105109msgstr ""
    106110
    107 #: exodox.php:1285
     111#: exodox.php:1309
    108112msgid "<em>%1$s %2$s</em> will be added to your monthly billing"
    109113msgstr ""
    110114
    111 #: exodox.php:1292
     115#: exodox.php:1316
    112116msgid "New to Exodox?%1$sCreate Account%2$s"
    113117msgstr ""
    114118
    115 #: exodox.php:1298
     119#: exodox.php:1322
    116120msgid "%1$sGo to my dashboard%2$s"
    117121msgstr ""
    118122
    119 #: exodox.php:1304
     123#: exodox.php:1328
    120124msgid "%1$sLogout%2$s"
    121125msgstr ""
    122126
    123 #: exodox.php:1317
     127#: exodox.php:1341
    124128msgid "The article is unlocked. Read the entire article for %s more"
    125129msgstr ""
    126130
    127 #: exodox.php:1321
     131#: exodox.php:1345
    128132msgid "You must <em>allow cookies</em> to be able to unlock this article"
    129133msgstr ""
    130134
    131 #: exodox.php:1325
    132 #: exodox.php:1348
    133 #: exodox.php:1369
    134 #: exodox.php:1391
     135#: exodox.php:1349
     136#: exodox.php:1372
     137#: exodox.php:1393
     138#: exodox.php:1415
    135139msgid "%1$s %2$s"
    136140msgstr ""
    137141
    138 #: exodox.php:1326
    139 #: exodox.php:1349
    140 #: exodox.php:1370
    141 #: exodox.php:1392
     142#: exodox.php:1350
     143#: exodox.php:1373
     144#: exodox.php:1394
     145#: exodox.php:1416
    142146msgid "%s access"
    143147msgstr ""
    144148
    145 #: exodox.php:1338
     149#: exodox.php:1362
    146150msgid "%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"
    147151msgstr ""
    148152
    149 #: exodox.php:1361
     153#: exodox.php:1385
    150154msgid "Unfortunately, your previous purchase has expired. %1$sBuy again%2$s"
    151155msgstr ""
    152156
    153 #: exodox.php:1382
     157#: exodox.php:1406
    154158msgid "Logged in."
    155159msgstr ""
    156160
    157 #: exodox.php:1426
     161#: exodox.php:1450
    158162msgid "Update"
    159163msgstr ""
  • exodox/trunk/readme.txt

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