Plugin Directory

Changeset 2373044


Ignore:
Timestamp:
09/01/2020 12:15:18 PM (6 years ago)
Author:
exodox
Message:

Deploy to WordPress directory (v0.7.8)

Location:
exodox
Files:
10 edited
1 copied

Legend:

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

    r2358404 r2373044  
    33 * Plugin Name: Exodox
    44 * Plugin URI:  https://exodox.link/get-plugin/
    5  * Version:     0.7.7
     5 * Version:     0.7.8
    66 * Author:      Exodox
    77 * Author URI:  https://exodox.link
     
    4242class ExodoxLogin
    4343{
    44     const EXODOX_PLUGIN_VERSION = '0.7.7';
     44    const EXODOX_PLUGIN_VERSION = '0.7.8';
    4545    const EXODOX_ADMIN_PAGE_SLUG = 'exodox';
    4646    const EXODOX_COOKIE_NAME = 'exodoxUserId';
     
    122122        $settings = [
    123123            'exodox_publisher_id' => 'sanitize_text_field',
     124            'exodox_disable_listing' => 'sanitize_key'
    124125        ];
    125126
     
    148149            ]
    149150        );
     151       
     152        add_settings_field(
     153            'exodox_disable_listing',
     154            esc_html__('Disable Exodox graphics on listing pages', 'exodox'),
     155            [__CLASS__, 'exodox_disable_listing_checkbox'],
     156            self::EXODOX_ADMIN_PAGE_SLUG,
     157            'settings'
     158        );
    150159    }
    151160
     
    401410
    402411        // Listing
    403         if (!is_single() && count(self::$exodoxLockedPosts)) {
     412        if (self::wrap_listing() && !is_single() && count(self::$exodoxLockedPosts)) {
    404413            foreach ($returnPosts as &$post) {
    405414                $link = self::get_common_url(get_permalink($post->ID));
     
    488497    public static function loop_start($query)
    489498    {
    490         self::$exodoxQueries [] = $query;
    491 
    492         // Debug of the loop in order to verify themes
    493         if (EXODOX_QUERY_DEBUG) {
    494             echo ''.
    495             '<pre style="'.EXODOX_QUERY_DEBUG_STYLE.'">'."\n".
    496                 'BEGIN LOOP'."\n".
    497                 'id: '.md5($query->request)."\n".
    498                 'posts: '.$query->post_count."\n".
    499             '</pre>'."\n";
     499        if (self::wrap_listing()) {
     500            self::$exodoxQueries [] = $query;
     501
     502            // Debug of the loop in order to verify themes
     503            if (EXODOX_QUERY_DEBUG) {
     504                echo ''.
     505                '<pre style="'.EXODOX_QUERY_DEBUG_STYLE.'">'."\n".
     506                    'BEGIN LOOP'."\n".
     507                    'id: '.md5($query->request)."\n".
     508                    'posts: '.$query->post_count."\n".
     509                '</pre>'."\n";
     510            }
    500511        }
    501512    }
     
    596607    public static function add_read_more_element($content, $query)
    597608    {
    598         if (self::is_path_locked() && !is_singular() && self::should_display_read_more($query)) {
     609        if (self::wrap_listing() && self::is_path_locked() && !is_singular() && self::should_display_read_more($query)) {
    599610            $link = self::get_common_url(get_permalink());
    600611            $status = self::get_lock_status($link);
     
    883894    {
    884895        return get_option('exodox_publisher_id');
     896    }
     897
     898    /**
     899     * Should the plugin wrap posts on listing pages; or not.
     900     *
     901     * @since 0.7.8
     902     *
     903     * @return bool
     904     */
     905    public static function wrap_listing()
     906    {
     907        return get_option('exodox_disable_listing') !== 'yes';
    885908    }
    886909
     
    14071430    }
    14081431
     1432    /**
     1433     * Output checkbox to toggle display of elements on listing pages.
     1434     *
     1435     * @since 0.7.8
     1436     *
     1437     * @param array $args Checkbox properties
     1438     *
     1439     * @return null
     1440     */
     1441    public static function exodox_disable_listing_checkbox(array $args)
     1442    {
     1443        printf(
     1444            '<input type="checkbox" class="%s" name="exodox_disable_listing" value="yes" %s />%s',
     1445            esc_attr(array_key_exists('class', $args) ? $args ['class'] : ''),
     1446            esc_attr(get_option('exodox_disable_listing') === 'yes' ? 'checked=checked' : ''),
     1447            array_key_exists('help_text', $args) ? sprintf('<p class="description">%s</p>', esc_html($args ['help_text'])) : ''
     1448        );
     1449    }
     1450
    14091451    /* Functions calling wp api to add style/script files or tags */
    14101452
  • exodox/tags/0.7.8/languages/exodox-sv_SE.po

    r2358404 r2373044  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Exodox 0.7.7\n"
     5"Project-Id-Version: Exodox 0.7.8\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/exodox\n"
    7 "POT-Creation-Date: 2020-08-11T14:13:55+00:00\n"
     7"POT-Creation-Date: 2020-08-26T13:13:20+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:160
     20#: exodox.php:169
    2121msgid "Exodox"
    2222msgstr ""
     
    3434msgstr ""
    3535
    36 #: exodox.php:132 exodox.php:222
     36#: exodox.php:133 exodox.php:231
    3737msgid "Settings"
    3838msgstr "Inställningar"
    3939
    40 #: exodox.php:139
     40#: exodox.php:140
    4141msgid "Publisher ID"
    4242msgstr "Publisher ID"
    4343
    44 #: exodox.php:159
     44#: exodox.php:154
     45msgid "Disable Exodox graphics on listing pages"
     46msgstr "Inaktivera Exodox grafik på lista sidor"
     47
     48#: exodox.php:168
    4549msgid "Exodox - Lock content"
    4650msgstr "Exodox - Lås innehåll"
    4751
    48 #: exodox.php:605
     52#: exodox.php:616
    4953msgid "Read the whole article for only %1$s %2$s"
    5054msgstr "Läs hela artikeln för endast %1$s %2$s"
    5155
    52 #: exodox.php:611 exodox.php:1270
     56#: exodox.php:622 exodox.php:1293
    5357msgid ""
    5458"The article is locked with Exodox; but you, as administrator, can still read "
     
    5660msgstr "Artikeln är låst med Exodox, men du som admin på bloggen kan läsa den."
    5761
    58 #: exodox.php:615
     62#: exodox.php:626
    5963msgid "The article is unlocked, available for %1$s more"
    6064msgstr "Artikeln upplåst, tillgängligt i %1$s till"
    6165
    62 #: exodox.php:618
     66#: exodox.php:629
    6367msgid ""
    6468"Locked content. You must allow cookies in order to be able to purchase this "
     
    6872"till den här artikeln."
    6973
    70 #: exodox.php:1007 exodox.php:1042
     74#: exodox.php:1030 exodox.php:1065
    7175msgid "%s day"
    7276msgid_plural "%s days"
     
    7478msgstr[1] "%s dagar"
    7579
    76 #: exodox.php:1015 exodox.php:1034
     80#: exodox.php:1038 exodox.php:1057
    7781msgid "%s hour"
    7882msgid_plural "%s hours"
     
    8084msgstr[1] "%s timmar"
    8185
    82 #: exodox.php:1169
     86#: exodox.php:1192
    8387msgid ""
    8488"%1$sReport abuse link%2$sI would like to report the Exodox link %3$s with "
     
    8892"%3$s med beskrivningen: %4$s"
    8993
    90 #: exodox.php:1175
     94#: exodox.php:1198
    9195msgid "Report abuse"
    9296msgstr "Rapportera missbruk"
    9397
    94 #: exodox.php:1215
     98#: exodox.php:1238
    9599msgid "Unlock"
    96100msgstr "Lås upp"
    97101
    98 #: exodox.php:1233
     102#: exodox.php:1256
    99103msgid "%1$sUnlock Link%2$s%3$s"
    100104msgstr "%1$sLås upp länk%2$s%3$s"
    101105
    102 #: exodox.php:1234
     106#: exodox.php:1257
    103107msgid "%1$sUnlock Link%2$sLogin to Exodox%3$s"
    104108msgstr "%1$sLås upp länk%2$sLogga in till Exodox%3$s"
    105109
    106 #: exodox.php:1242
     110#: exodox.php:1265
    107111msgid "<em>%1$s %2$s</em> will be added to your monthly billing"
    108112msgstr "<em>%1$s %2$s</em> kommer läggas till din månadsbetalning"
    109113
    110 #: exodox.php:1249
     114#: exodox.php:1272
    111115msgid "New to Exodox?%1$sCreate Account%2$s"
    112116msgstr "Ny till Exodox?%1$sSkapa konto%2$s"
    113117
    114 #: exodox.php:1255
     118#: exodox.php:1278
    115119msgid "%1$sGo to my dashboard%2$s"
    116120msgstr "%1$sGå till min översikt%2$s"
    117121
    118 #: exodox.php:1261
     122#: exodox.php:1284
    119123msgid "%1$sLogout%2$s"
    120124msgstr "%1$sLogga ut%2$s"
    121125
    122 #: exodox.php:1274
     126#: exodox.php:1297
    123127msgid "The article is unlocked. Read the entire article for %s more"
    124128msgstr "Artikeln är upplåst. Läs hela artikeln i %s till"
    125129
    126 #: exodox.php:1278
     130#: exodox.php:1301
    127131msgid "You must <em>allow cookies</em> to be able to unlock this article"
    128132msgstr ""
     
    130134"här artikeln."
    131135
    132 #: exodox.php:1282 exodox.php:1305 exodox.php:1326 exodox.php:1348
     136#: exodox.php:1305 exodox.php:1328 exodox.php:1349 exodox.php:1371
    133137msgid "%1$s %2$s"
    134138msgstr "%1$s %2$s"
    135139
    136 #: exodox.php:1283 exodox.php:1306 exodox.php:1327 exodox.php:1349
     140#: exodox.php:1306 exodox.php:1329 exodox.php:1350 exodox.php:1372
    137141msgid "%s access"
    138142msgstr "%s's åtkomst"
    139143
    140 #: exodox.php:1295
     144#: exodox.php:1318
    141145msgid ""
    142146"%1$sYou need an Exodox account to be able to purchase access to this link. "
     
    146150"här artikeln. %2$sVad är Exodox?%3$s%4$sLogga in för att låsa upp%5$s"
    147151
    148 #: exodox.php:1318
     152#: exodox.php:1341
    149153msgid "Unfortunately, your previous purchase has expired. %1$sBuy again%2$s"
    150154msgstr ""
    151155"Tyvärr har ditt tidigare köp gått ut för den här artikeln. %1$sKöp igen%2$s"
    152156
    153 #: exodox.php:1339
     157#: exodox.php:1362
    154158msgid "Logged in."
    155159msgstr "Inloggad."
    156160
    157 #: exodox.php:1383
     161#: exodox.php:1406
    158162msgid "Update"
    159163msgstr "Uppdatera"
  • exodox/tags/0.7.8/languages/exodox.pot

    r2358404 r2373044  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Exodox 0.7.7\n"
     5"Project-Id-Version: Exodox 0.7.8\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-08-11T14:18:36+00:00\n"
     12"POT-Creation-Date: 2020-08-26T13:13:20+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:160
     19#: exodox.php:169
    2020msgid "Exodox"
    2121msgstr ""
     
    3333msgstr ""
    3434
    35 #: exodox.php:132
    36 #: exodox.php:222
     35#: exodox.php:133
     36#: exodox.php:231
    3737msgid "Settings"
    3838msgstr ""
    3939
    40 #: exodox.php:139
     40#: exodox.php:140
    4141msgid "Publisher ID"
    4242msgstr ""
    4343
    44 #: exodox.php:159
     44#: exodox.php:154
     45msgid "Disable Exodox graphics on listing pages"
     46msgstr ""
     47
     48#: exodox.php:168
    4549msgid "Exodox - Lock content"
    4650msgstr ""
    4751
    48 #: exodox.php:605
     52#: exodox.php:616
    4953msgid "Read the whole article for only %1$s %2$s"
    5054msgstr ""
    5155
    52 #: exodox.php:611
    53 #: exodox.php:1270
     56#: exodox.php:622
     57#: exodox.php:1293
    5458msgid "The article is locked with Exodox; but you, as administrator, can still read it."
    5559msgstr ""
    5660
    57 #: exodox.php:615
     61#: exodox.php:626
    5862msgid "The article is unlocked, available for %1$s more"
    5963msgstr ""
    6064
    61 #: exodox.php:618
     65#: exodox.php:629
    6266msgid "Locked content. You must allow cookies in order to be able to purchase this article."
    6367msgstr ""
    6468
    65 #: exodox.php:1007
    66 #: exodox.php:1042
     69#: exodox.php:1030
     70#: exodox.php:1065
    6771msgid "%s day"
    6872msgid_plural "%s days"
     
    7074msgstr[1] ""
    7175
    72 #: exodox.php:1015
    73 #: exodox.php:1034
     76#: exodox.php:1038
     77#: exodox.php:1057
    7478msgid "%s hour"
    7579msgid_plural "%s hours"
     
    7781msgstr[1] ""
    7882
    79 #: exodox.php:1169
     83#: exodox.php:1192
    8084msgid "%1$sReport abuse link%2$sI would like to report the Exodox link %3$s with the description: %4$s"
    8185msgstr ""
    8286
    83 #: exodox.php:1175
     87#: exodox.php:1198
    8488msgid "Report abuse"
    8589msgstr ""
    8690
    87 #: exodox.php:1215
     91#: exodox.php:1238
    8892msgid "Unlock"
    8993msgstr ""
    9094
    91 #: exodox.php:1233
     95#: exodox.php:1256
    9296msgid "%1$sUnlock Link%2$s%3$s"
    9397msgstr ""
    9498
    95 #: exodox.php:1234
     99#: exodox.php:1257
    96100msgid "%1$sUnlock Link%2$sLogin to Exodox%3$s"
    97101msgstr ""
    98102
    99 #: exodox.php:1242
     103#: exodox.php:1265
    100104msgid "<em>%1$s %2$s</em> will be added to your monthly billing"
    101105msgstr ""
    102106
    103 #: exodox.php:1249
     107#: exodox.php:1272
    104108msgid "New to Exodox?%1$sCreate Account%2$s"
    105109msgstr ""
    106110
    107 #: exodox.php:1255
     111#: exodox.php:1278
    108112msgid "%1$sGo to my dashboard%2$s"
    109113msgstr ""
    110114
    111 #: exodox.php:1261
     115#: exodox.php:1284
    112116msgid "%1$sLogout%2$s"
    113117msgstr ""
    114118
    115 #: exodox.php:1274
     119#: exodox.php:1297
    116120msgid "The article is unlocked. Read the entire article for %s more"
    117121msgstr ""
    118122
    119 #: exodox.php:1278
     123#: exodox.php:1301
    120124msgid "You must <em>allow cookies</em> to be able to unlock this article"
    121125msgstr ""
    122126
    123 #: exodox.php:1282
    124127#: exodox.php:1305
    125 #: exodox.php:1326
    126 #: exodox.php:1348
     128#: exodox.php:1328
     129#: exodox.php:1349
     130#: exodox.php:1371
    127131msgid "%1$s %2$s"
    128132msgstr ""
    129133
    130 #: exodox.php:1283
    131134#: exodox.php:1306
    132 #: exodox.php:1327
    133 #: exodox.php:1349
     135#: exodox.php:1329
     136#: exodox.php:1350
     137#: exodox.php:1372
    134138msgid "%s access"
    135139msgstr ""
    136140
    137 #: exodox.php:1295
     141#: exodox.php:1318
    138142msgid "%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"
    139143msgstr ""
    140144
    141 #: exodox.php:1318
     145#: exodox.php:1341
    142146msgid "Unfortunately, your previous purchase has expired. %1$sBuy again%2$s"
    143147msgstr ""
    144148
    145 #: exodox.php:1339
     149#: exodox.php:1362
    146150msgid "Logged in."
    147151msgstr ""
    148152
    149 #: exodox.php:1383
     153#: exodox.php:1406
    150154msgid "Update"
    151155msgstr ""
  • exodox/tags/0.7.8/readme.txt

    r2358404 r2373044  
    66Tested up to: 5.4.1
    77Requires PHP: 7.2
    8 Stable tag: 0.7.7
     8Stable tag: 0.7.8
    99License: ISC
    1010License URI: http://directory.fsf.org/wiki/License:ISC
  • exodox/trunk/exodox.php

    r2358404 r2373044  
    33 * Plugin Name: Exodox
    44 * Plugin URI:  https://exodox.link/get-plugin/
    5  * Version:     0.7.7
     5 * Version:     0.7.8
    66 * Author:      Exodox
    77 * Author URI:  https://exodox.link
     
    4242class ExodoxLogin
    4343{
    44     const EXODOX_PLUGIN_VERSION = '0.7.7';
     44    const EXODOX_PLUGIN_VERSION = '0.7.8';
    4545    const EXODOX_ADMIN_PAGE_SLUG = 'exodox';
    4646    const EXODOX_COOKIE_NAME = 'exodoxUserId';
     
    122122        $settings = [
    123123            'exodox_publisher_id' => 'sanitize_text_field',
     124            'exodox_disable_listing' => 'sanitize_key'
    124125        ];
    125126
     
    148149            ]
    149150        );
     151       
     152        add_settings_field(
     153            'exodox_disable_listing',
     154            esc_html__('Disable Exodox graphics on listing pages', 'exodox'),
     155            [__CLASS__, 'exodox_disable_listing_checkbox'],
     156            self::EXODOX_ADMIN_PAGE_SLUG,
     157            'settings'
     158        );
    150159    }
    151160
     
    401410
    402411        // Listing
    403         if (!is_single() && count(self::$exodoxLockedPosts)) {
     412        if (self::wrap_listing() && !is_single() && count(self::$exodoxLockedPosts)) {
    404413            foreach ($returnPosts as &$post) {
    405414                $link = self::get_common_url(get_permalink($post->ID));
     
    488497    public static function loop_start($query)
    489498    {
    490         self::$exodoxQueries [] = $query;
    491 
    492         // Debug of the loop in order to verify themes
    493         if (EXODOX_QUERY_DEBUG) {
    494             echo ''.
    495             '<pre style="'.EXODOX_QUERY_DEBUG_STYLE.'">'."\n".
    496                 'BEGIN LOOP'."\n".
    497                 'id: '.md5($query->request)."\n".
    498                 'posts: '.$query->post_count."\n".
    499             '</pre>'."\n";
     499        if (self::wrap_listing()) {
     500            self::$exodoxQueries [] = $query;
     501
     502            // Debug of the loop in order to verify themes
     503            if (EXODOX_QUERY_DEBUG) {
     504                echo ''.
     505                '<pre style="'.EXODOX_QUERY_DEBUG_STYLE.'">'."\n".
     506                    'BEGIN LOOP'."\n".
     507                    'id: '.md5($query->request)."\n".
     508                    'posts: '.$query->post_count."\n".
     509                '</pre>'."\n";
     510            }
    500511        }
    501512    }
     
    596607    public static function add_read_more_element($content, $query)
    597608    {
    598         if (self::is_path_locked() && !is_singular() && self::should_display_read_more($query)) {
     609        if (self::wrap_listing() && self::is_path_locked() && !is_singular() && self::should_display_read_more($query)) {
    599610            $link = self::get_common_url(get_permalink());
    600611            $status = self::get_lock_status($link);
     
    883894    {
    884895        return get_option('exodox_publisher_id');
     896    }
     897
     898    /**
     899     * Should the plugin wrap posts on listing pages; or not.
     900     *
     901     * @since 0.7.8
     902     *
     903     * @return bool
     904     */
     905    public static function wrap_listing()
     906    {
     907        return get_option('exodox_disable_listing') !== 'yes';
    885908    }
    886909
     
    14071430    }
    14081431
     1432    /**
     1433     * Output checkbox to toggle display of elements on listing pages.
     1434     *
     1435     * @since 0.7.8
     1436     *
     1437     * @param array $args Checkbox properties
     1438     *
     1439     * @return null
     1440     */
     1441    public static function exodox_disable_listing_checkbox(array $args)
     1442    {
     1443        printf(
     1444            '<input type="checkbox" class="%s" name="exodox_disable_listing" value="yes" %s />%s',
     1445            esc_attr(array_key_exists('class', $args) ? $args ['class'] : ''),
     1446            esc_attr(get_option('exodox_disable_listing') === 'yes' ? 'checked=checked' : ''),
     1447            array_key_exists('help_text', $args) ? sprintf('<p class="description">%s</p>', esc_html($args ['help_text'])) : ''
     1448        );
     1449    }
     1450
    14091451    /* Functions calling wp api to add style/script files or tags */
    14101452
  • exodox/trunk/languages/exodox-sv_SE.po

    r2358404 r2373044  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Exodox 0.7.7\n"
     5"Project-Id-Version: Exodox 0.7.8\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/exodox\n"
    7 "POT-Creation-Date: 2020-08-11T14:13:55+00:00\n"
     7"POT-Creation-Date: 2020-08-26T13:13:20+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:160
     20#: exodox.php:169
    2121msgid "Exodox"
    2222msgstr ""
     
    3434msgstr ""
    3535
    36 #: exodox.php:132 exodox.php:222
     36#: exodox.php:133 exodox.php:231
    3737msgid "Settings"
    3838msgstr "Inställningar"
    3939
    40 #: exodox.php:139
     40#: exodox.php:140
    4141msgid "Publisher ID"
    4242msgstr "Publisher ID"
    4343
    44 #: exodox.php:159
     44#: exodox.php:154
     45msgid "Disable Exodox graphics on listing pages"
     46msgstr "Inaktivera Exodox grafik på lista sidor"
     47
     48#: exodox.php:168
    4549msgid "Exodox - Lock content"
    4650msgstr "Exodox - Lås innehåll"
    4751
    48 #: exodox.php:605
     52#: exodox.php:616
    4953msgid "Read the whole article for only %1$s %2$s"
    5054msgstr "Läs hela artikeln för endast %1$s %2$s"
    5155
    52 #: exodox.php:611 exodox.php:1270
     56#: exodox.php:622 exodox.php:1293
    5357msgid ""
    5458"The article is locked with Exodox; but you, as administrator, can still read "
     
    5660msgstr "Artikeln är låst med Exodox, men du som admin på bloggen kan läsa den."
    5761
    58 #: exodox.php:615
     62#: exodox.php:626
    5963msgid "The article is unlocked, available for %1$s more"
    6064msgstr "Artikeln upplåst, tillgängligt i %1$s till"
    6165
    62 #: exodox.php:618
     66#: exodox.php:629
    6367msgid ""
    6468"Locked content. You must allow cookies in order to be able to purchase this "
     
    6872"till den här artikeln."
    6973
    70 #: exodox.php:1007 exodox.php:1042
     74#: exodox.php:1030 exodox.php:1065
    7175msgid "%s day"
    7276msgid_plural "%s days"
     
    7478msgstr[1] "%s dagar"
    7579
    76 #: exodox.php:1015 exodox.php:1034
     80#: exodox.php:1038 exodox.php:1057
    7781msgid "%s hour"
    7882msgid_plural "%s hours"
     
    8084msgstr[1] "%s timmar"
    8185
    82 #: exodox.php:1169
     86#: exodox.php:1192
    8387msgid ""
    8488"%1$sReport abuse link%2$sI would like to report the Exodox link %3$s with "
     
    8892"%3$s med beskrivningen: %4$s"
    8993
    90 #: exodox.php:1175
     94#: exodox.php:1198
    9195msgid "Report abuse"
    9296msgstr "Rapportera missbruk"
    9397
    94 #: exodox.php:1215
     98#: exodox.php:1238
    9599msgid "Unlock"
    96100msgstr "Lås upp"
    97101
    98 #: exodox.php:1233
     102#: exodox.php:1256
    99103msgid "%1$sUnlock Link%2$s%3$s"
    100104msgstr "%1$sLås upp länk%2$s%3$s"
    101105
    102 #: exodox.php:1234
     106#: exodox.php:1257
    103107msgid "%1$sUnlock Link%2$sLogin to Exodox%3$s"
    104108msgstr "%1$sLås upp länk%2$sLogga in till Exodox%3$s"
    105109
    106 #: exodox.php:1242
     110#: exodox.php:1265
    107111msgid "<em>%1$s %2$s</em> will be added to your monthly billing"
    108112msgstr "<em>%1$s %2$s</em> kommer läggas till din månadsbetalning"
    109113
    110 #: exodox.php:1249
     114#: exodox.php:1272
    111115msgid "New to Exodox?%1$sCreate Account%2$s"
    112116msgstr "Ny till Exodox?%1$sSkapa konto%2$s"
    113117
    114 #: exodox.php:1255
     118#: exodox.php:1278
    115119msgid "%1$sGo to my dashboard%2$s"
    116120msgstr "%1$sGå till min översikt%2$s"
    117121
    118 #: exodox.php:1261
     122#: exodox.php:1284
    119123msgid "%1$sLogout%2$s"
    120124msgstr "%1$sLogga ut%2$s"
    121125
    122 #: exodox.php:1274
     126#: exodox.php:1297
    123127msgid "The article is unlocked. Read the entire article for %s more"
    124128msgstr "Artikeln är upplåst. Läs hela artikeln i %s till"
    125129
    126 #: exodox.php:1278
     130#: exodox.php:1301
    127131msgid "You must <em>allow cookies</em> to be able to unlock this article"
    128132msgstr ""
     
    130134"här artikeln."
    131135
    132 #: exodox.php:1282 exodox.php:1305 exodox.php:1326 exodox.php:1348
     136#: exodox.php:1305 exodox.php:1328 exodox.php:1349 exodox.php:1371
    133137msgid "%1$s %2$s"
    134138msgstr "%1$s %2$s"
    135139
    136 #: exodox.php:1283 exodox.php:1306 exodox.php:1327 exodox.php:1349
     140#: exodox.php:1306 exodox.php:1329 exodox.php:1350 exodox.php:1372
    137141msgid "%s access"
    138142msgstr "%s's åtkomst"
    139143
    140 #: exodox.php:1295
     144#: exodox.php:1318
    141145msgid ""
    142146"%1$sYou need an Exodox account to be able to purchase access to this link. "
     
    146150"här artikeln. %2$sVad är Exodox?%3$s%4$sLogga in för att låsa upp%5$s"
    147151
    148 #: exodox.php:1318
     152#: exodox.php:1341
    149153msgid "Unfortunately, your previous purchase has expired. %1$sBuy again%2$s"
    150154msgstr ""
    151155"Tyvärr har ditt tidigare köp gått ut för den här artikeln. %1$sKöp igen%2$s"
    152156
    153 #: exodox.php:1339
     157#: exodox.php:1362
    154158msgid "Logged in."
    155159msgstr "Inloggad."
    156160
    157 #: exodox.php:1383
     161#: exodox.php:1406
    158162msgid "Update"
    159163msgstr "Uppdatera"
  • exodox/trunk/languages/exodox.pot

    r2358404 r2373044  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Exodox 0.7.7\n"
     5"Project-Id-Version: Exodox 0.7.8\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-08-11T14:18:36+00:00\n"
     12"POT-Creation-Date: 2020-08-26T13:13:20+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:160
     19#: exodox.php:169
    2020msgid "Exodox"
    2121msgstr ""
     
    3333msgstr ""
    3434
    35 #: exodox.php:132
    36 #: exodox.php:222
     35#: exodox.php:133
     36#: exodox.php:231
    3737msgid "Settings"
    3838msgstr ""
    3939
    40 #: exodox.php:139
     40#: exodox.php:140
    4141msgid "Publisher ID"
    4242msgstr ""
    4343
    44 #: exodox.php:159
     44#: exodox.php:154
     45msgid "Disable Exodox graphics on listing pages"
     46msgstr ""
     47
     48#: exodox.php:168
    4549msgid "Exodox - Lock content"
    4650msgstr ""
    4751
    48 #: exodox.php:605
     52#: exodox.php:616
    4953msgid "Read the whole article for only %1$s %2$s"
    5054msgstr ""
    5155
    52 #: exodox.php:611
    53 #: exodox.php:1270
     56#: exodox.php:622
     57#: exodox.php:1293
    5458msgid "The article is locked with Exodox; but you, as administrator, can still read it."
    5559msgstr ""
    5660
    57 #: exodox.php:615
     61#: exodox.php:626
    5862msgid "The article is unlocked, available for %1$s more"
    5963msgstr ""
    6064
    61 #: exodox.php:618
     65#: exodox.php:629
    6266msgid "Locked content. You must allow cookies in order to be able to purchase this article."
    6367msgstr ""
    6468
    65 #: exodox.php:1007
    66 #: exodox.php:1042
     69#: exodox.php:1030
     70#: exodox.php:1065
    6771msgid "%s day"
    6872msgid_plural "%s days"
     
    7074msgstr[1] ""
    7175
    72 #: exodox.php:1015
    73 #: exodox.php:1034
     76#: exodox.php:1038
     77#: exodox.php:1057
    7478msgid "%s hour"
    7579msgid_plural "%s hours"
     
    7781msgstr[1] ""
    7882
    79 #: exodox.php:1169
     83#: exodox.php:1192
    8084msgid "%1$sReport abuse link%2$sI would like to report the Exodox link %3$s with the description: %4$s"
    8185msgstr ""
    8286
    83 #: exodox.php:1175
     87#: exodox.php:1198
    8488msgid "Report abuse"
    8589msgstr ""
    8690
    87 #: exodox.php:1215
     91#: exodox.php:1238
    8892msgid "Unlock"
    8993msgstr ""
    9094
    91 #: exodox.php:1233
     95#: exodox.php:1256
    9296msgid "%1$sUnlock Link%2$s%3$s"
    9397msgstr ""
    9498
    95 #: exodox.php:1234
     99#: exodox.php:1257
    96100msgid "%1$sUnlock Link%2$sLogin to Exodox%3$s"
    97101msgstr ""
    98102
    99 #: exodox.php:1242
     103#: exodox.php:1265
    100104msgid "<em>%1$s %2$s</em> will be added to your monthly billing"
    101105msgstr ""
    102106
    103 #: exodox.php:1249
     107#: exodox.php:1272
    104108msgid "New to Exodox?%1$sCreate Account%2$s"
    105109msgstr ""
    106110
    107 #: exodox.php:1255
     111#: exodox.php:1278
    108112msgid "%1$sGo to my dashboard%2$s"
    109113msgstr ""
    110114
    111 #: exodox.php:1261
     115#: exodox.php:1284
    112116msgid "%1$sLogout%2$s"
    113117msgstr ""
    114118
    115 #: exodox.php:1274
     119#: exodox.php:1297
    116120msgid "The article is unlocked. Read the entire article for %s more"
    117121msgstr ""
    118122
    119 #: exodox.php:1278
     123#: exodox.php:1301
    120124msgid "You must <em>allow cookies</em> to be able to unlock this article"
    121125msgstr ""
    122126
    123 #: exodox.php:1282
    124127#: exodox.php:1305
    125 #: exodox.php:1326
    126 #: exodox.php:1348
     128#: exodox.php:1328
     129#: exodox.php:1349
     130#: exodox.php:1371
    127131msgid "%1$s %2$s"
    128132msgstr ""
    129133
    130 #: exodox.php:1283
    131134#: exodox.php:1306
    132 #: exodox.php:1327
    133 #: exodox.php:1349
     135#: exodox.php:1329
     136#: exodox.php:1350
     137#: exodox.php:1372
    134138msgid "%s access"
    135139msgstr ""
    136140
    137 #: exodox.php:1295
     141#: exodox.php:1318
    138142msgid "%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"
    139143msgstr ""
    140144
    141 #: exodox.php:1318
     145#: exodox.php:1341
    142146msgid "Unfortunately, your previous purchase has expired. %1$sBuy again%2$s"
    143147msgstr ""
    144148
    145 #: exodox.php:1339
     149#: exodox.php:1362
    146150msgid "Logged in."
    147151msgstr ""
    148152
    149 #: exodox.php:1383
     153#: exodox.php:1406
    150154msgid "Update"
    151155msgstr ""
  • exodox/trunk/readme.txt

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