Changeset 2373044
- Timestamp:
- 09/01/2020 12:15:18 PM (6 years ago)
- Location:
- exodox
- Files:
-
- 10 edited
- 1 copied
-
tags/0.7.8 (copied) (copied from exodox/trunk)
-
tags/0.7.8/exodox.php (modified) (9 diffs)
-
tags/0.7.8/languages/exodox-sv_SE.mo (modified) (previous)
-
tags/0.7.8/languages/exodox-sv_SE.po (modified) (10 diffs)
-
tags/0.7.8/languages/exodox.pot (modified) (6 diffs)
-
tags/0.7.8/readme.txt (modified) (1 diff)
-
trunk/exodox.php (modified) (9 diffs)
-
trunk/languages/exodox-sv_SE.mo (modified) (previous)
-
trunk/languages/exodox-sv_SE.po (modified) (10 diffs)
-
trunk/languages/exodox.pot (modified) (6 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
exodox/tags/0.7.8/exodox.php
r2358404 r2373044 3 3 * Plugin Name: Exodox 4 4 * Plugin URI: https://exodox.link/get-plugin/ 5 * Version: 0.7. 75 * Version: 0.7.8 6 6 * Author: Exodox 7 7 * Author URI: https://exodox.link … … 42 42 class ExodoxLogin 43 43 { 44 const EXODOX_PLUGIN_VERSION = '0.7. 7';44 const EXODOX_PLUGIN_VERSION = '0.7.8'; 45 45 const EXODOX_ADMIN_PAGE_SLUG = 'exodox'; 46 46 const EXODOX_COOKIE_NAME = 'exodoxUserId'; … … 122 122 $settings = [ 123 123 'exodox_publisher_id' => 'sanitize_text_field', 124 'exodox_disable_listing' => 'sanitize_key' 124 125 ]; 125 126 … … 148 149 ] 149 150 ); 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 ); 150 159 } 151 160 … … 401 410 402 411 // Listing 403 if ( !is_single() && count(self::$exodoxLockedPosts)) {412 if (self::wrap_listing() && !is_single() && count(self::$exodoxLockedPosts)) { 404 413 foreach ($returnPosts as &$post) { 405 414 $link = self::get_common_url(get_permalink($post->ID)); … … 488 497 public static function loop_start($query) 489 498 { 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 } 500 511 } 501 512 } … … 596 607 public static function add_read_more_element($content, $query) 597 608 { 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)) { 599 610 $link = self::get_common_url(get_permalink()); 600 611 $status = self::get_lock_status($link); … … 883 894 { 884 895 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'; 885 908 } 886 909 … … 1407 1430 } 1408 1431 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 1409 1451 /* Functions calling wp api to add style/script files or tags */ 1410 1452 -
exodox/tags/0.7.8/languages/exodox-sv_SE.po
r2358404 r2373044 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Exodox 0.7. 7\n"5 "Project-Id-Version: Exodox 0.7.8\n" 6 6 "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" 8 8 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 9 9 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 18 18 #. Plugin Name of the plugin 19 19 #. Author of the plugin 20 #: exodox.php:16 020 #: exodox.php:169 21 21 msgid "Exodox" 22 22 msgstr "" … … 34 34 msgstr "" 35 35 36 #: exodox.php:13 2 exodox.php:22236 #: exodox.php:133 exodox.php:231 37 37 msgid "Settings" 38 38 msgstr "Inställningar" 39 39 40 #: exodox.php:1 3940 #: exodox.php:140 41 41 msgid "Publisher ID" 42 42 msgstr "Publisher ID" 43 43 44 #: exodox.php:159 44 #: exodox.php:154 45 msgid "Disable Exodox graphics on listing pages" 46 msgstr "Inaktivera Exodox grafik på lista sidor" 47 48 #: exodox.php:168 45 49 msgid "Exodox - Lock content" 46 50 msgstr "Exodox - Lås innehåll" 47 51 48 #: exodox.php:6 0552 #: exodox.php:616 49 53 msgid "Read the whole article for only %1$s %2$s" 50 54 msgstr "Läs hela artikeln för endast %1$s %2$s" 51 55 52 #: exodox.php:6 11 exodox.php:127056 #: exodox.php:622 exodox.php:1293 53 57 msgid "" 54 58 "The article is locked with Exodox; but you, as administrator, can still read " … … 56 60 msgstr "Artikeln är låst med Exodox, men du som admin på bloggen kan läsa den." 57 61 58 #: exodox.php:6 1562 #: exodox.php:626 59 63 msgid "The article is unlocked, available for %1$s more" 60 64 msgstr "Artikeln upplåst, tillgängligt i %1$s till" 61 65 62 #: exodox.php:6 1866 #: exodox.php:629 63 67 msgid "" 64 68 "Locked content. You must allow cookies in order to be able to purchase this " … … 68 72 "till den här artikeln." 69 73 70 #: exodox.php:10 07 exodox.php:104274 #: exodox.php:1030 exodox.php:1065 71 75 msgid "%s day" 72 76 msgid_plural "%s days" … … 74 78 msgstr[1] "%s dagar" 75 79 76 #: exodox.php:10 15 exodox.php:103480 #: exodox.php:1038 exodox.php:1057 77 81 msgid "%s hour" 78 82 msgid_plural "%s hours" … … 80 84 msgstr[1] "%s timmar" 81 85 82 #: exodox.php:11 6986 #: exodox.php:1192 83 87 msgid "" 84 88 "%1$sReport abuse link%2$sI would like to report the Exodox link %3$s with " … … 88 92 "%3$s med beskrivningen: %4$s" 89 93 90 #: exodox.php:11 7594 #: exodox.php:1198 91 95 msgid "Report abuse" 92 96 msgstr "Rapportera missbruk" 93 97 94 #: exodox.php:12 1598 #: exodox.php:1238 95 99 msgid "Unlock" 96 100 msgstr "Lås upp" 97 101 98 #: exodox.php:12 33102 #: exodox.php:1256 99 103 msgid "%1$sUnlock Link%2$s%3$s" 100 104 msgstr "%1$sLås upp länk%2$s%3$s" 101 105 102 #: exodox.php:12 34106 #: exodox.php:1257 103 107 msgid "%1$sUnlock Link%2$sLogin to Exodox%3$s" 104 108 msgstr "%1$sLås upp länk%2$sLogga in till Exodox%3$s" 105 109 106 #: exodox.php:12 42110 #: exodox.php:1265 107 111 msgid "<em>%1$s %2$s</em> will be added to your monthly billing" 108 112 msgstr "<em>%1$s %2$s</em> kommer läggas till din månadsbetalning" 109 113 110 #: exodox.php:12 49114 #: exodox.php:1272 111 115 msgid "New to Exodox?%1$sCreate Account%2$s" 112 116 msgstr "Ny till Exodox?%1$sSkapa konto%2$s" 113 117 114 #: exodox.php:12 55118 #: exodox.php:1278 115 119 msgid "%1$sGo to my dashboard%2$s" 116 120 msgstr "%1$sGå till min översikt%2$s" 117 121 118 #: exodox.php:12 61122 #: exodox.php:1284 119 123 msgid "%1$sLogout%2$s" 120 124 msgstr "%1$sLogga ut%2$s" 121 125 122 #: exodox.php:12 74126 #: exodox.php:1297 123 127 msgid "The article is unlocked. Read the entire article for %s more" 124 128 msgstr "Artikeln är upplåst. Läs hela artikeln i %s till" 125 129 126 #: exodox.php:1 278130 #: exodox.php:1301 127 131 msgid "You must <em>allow cookies</em> to be able to unlock this article" 128 132 msgstr "" … … 130 134 "här artikeln." 131 135 132 #: exodox.php:1 282 exodox.php:1305 exodox.php:1326 exodox.php:1348136 #: exodox.php:1305 exodox.php:1328 exodox.php:1349 exodox.php:1371 133 137 msgid "%1$s %2$s" 134 138 msgstr "%1$s %2$s" 135 139 136 #: exodox.php:1 283 exodox.php:1306 exodox.php:1327 exodox.php:1349140 #: exodox.php:1306 exodox.php:1329 exodox.php:1350 exodox.php:1372 137 141 msgid "%s access" 138 142 msgstr "%s's åtkomst" 139 143 140 #: exodox.php:1 295144 #: exodox.php:1318 141 145 msgid "" 142 146 "%1$sYou need an Exodox account to be able to purchase access to this link. " … … 146 150 "här artikeln. %2$sVad är Exodox?%3$s%4$sLogga in för att låsa upp%5$s" 147 151 148 #: exodox.php:13 18152 #: exodox.php:1341 149 153 msgid "Unfortunately, your previous purchase has expired. %1$sBuy again%2$s" 150 154 msgstr "" 151 155 "Tyvärr har ditt tidigare köp gått ut för den här artikeln. %1$sKöp igen%2$s" 152 156 153 #: exodox.php:13 39157 #: exodox.php:1362 154 158 msgid "Logged in." 155 159 msgstr "Inloggad." 156 160 157 #: exodox.php:1 383161 #: exodox.php:1406 158 162 msgid "Update" 159 163 msgstr "Uppdatera" -
exodox/tags/0.7.8/languages/exodox.pot
r2358404 r2373044 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Exodox 0.7. 7\n"5 "Project-Id-Version: Exodox 0.7.8\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/exodox\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "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" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.4.0\n" … … 17 17 #. Plugin Name of the plugin 18 18 #. Author of the plugin 19 #: exodox.php:16 019 #: exodox.php:169 20 20 msgid "Exodox" 21 21 msgstr "" … … 33 33 msgstr "" 34 34 35 #: exodox.php:13 236 #: exodox.php:2 2235 #: exodox.php:133 36 #: exodox.php:231 37 37 msgid "Settings" 38 38 msgstr "" 39 39 40 #: exodox.php:1 3940 #: exodox.php:140 41 41 msgid "Publisher ID" 42 42 msgstr "" 43 43 44 #: exodox.php:159 44 #: exodox.php:154 45 msgid "Disable Exodox graphics on listing pages" 46 msgstr "" 47 48 #: exodox.php:168 45 49 msgid "Exodox - Lock content" 46 50 msgstr "" 47 51 48 #: exodox.php:6 0552 #: exodox.php:616 49 53 msgid "Read the whole article for only %1$s %2$s" 50 54 msgstr "" 51 55 52 #: exodox.php:6 1153 #: exodox.php:12 7056 #: exodox.php:622 57 #: exodox.php:1293 54 58 msgid "The article is locked with Exodox; but you, as administrator, can still read it." 55 59 msgstr "" 56 60 57 #: exodox.php:6 1561 #: exodox.php:626 58 62 msgid "The article is unlocked, available for %1$s more" 59 63 msgstr "" 60 64 61 #: exodox.php:6 1865 #: exodox.php:629 62 66 msgid "Locked content. You must allow cookies in order to be able to purchase this article." 63 67 msgstr "" 64 68 65 #: exodox.php:10 0766 #: exodox.php:10 4269 #: exodox.php:1030 70 #: exodox.php:1065 67 71 msgid "%s day" 68 72 msgid_plural "%s days" … … 70 74 msgstr[1] "" 71 75 72 #: exodox.php:10 1573 #: exodox.php:10 3476 #: exodox.php:1038 77 #: exodox.php:1057 74 78 msgid "%s hour" 75 79 msgid_plural "%s hours" … … 77 81 msgstr[1] "" 78 82 79 #: exodox.php:11 6983 #: exodox.php:1192 80 84 msgid "%1$sReport abuse link%2$sI would like to report the Exodox link %3$s with the description: %4$s" 81 85 msgstr "" 82 86 83 #: exodox.php:11 7587 #: exodox.php:1198 84 88 msgid "Report abuse" 85 89 msgstr "" 86 90 87 #: exodox.php:12 1591 #: exodox.php:1238 88 92 msgid "Unlock" 89 93 msgstr "" 90 94 91 #: exodox.php:12 3395 #: exodox.php:1256 92 96 msgid "%1$sUnlock Link%2$s%3$s" 93 97 msgstr "" 94 98 95 #: exodox.php:12 3499 #: exodox.php:1257 96 100 msgid "%1$sUnlock Link%2$sLogin to Exodox%3$s" 97 101 msgstr "" 98 102 99 #: exodox.php:12 42103 #: exodox.php:1265 100 104 msgid "<em>%1$s %2$s</em> will be added to your monthly billing" 101 105 msgstr "" 102 106 103 #: exodox.php:12 49107 #: exodox.php:1272 104 108 msgid "New to Exodox?%1$sCreate Account%2$s" 105 109 msgstr "" 106 110 107 #: exodox.php:12 55111 #: exodox.php:1278 108 112 msgid "%1$sGo to my dashboard%2$s" 109 113 msgstr "" 110 114 111 #: exodox.php:12 61115 #: exodox.php:1284 112 116 msgid "%1$sLogout%2$s" 113 117 msgstr "" 114 118 115 #: exodox.php:12 74119 #: exodox.php:1297 116 120 msgid "The article is unlocked. Read the entire article for %s more" 117 121 msgstr "" 118 122 119 #: exodox.php:1 278123 #: exodox.php:1301 120 124 msgid "You must <em>allow cookies</em> to be able to unlock this article" 121 125 msgstr "" 122 126 123 #: exodox.php:1282124 127 #: exodox.php:1305 125 #: exodox.php:1326 126 #: exodox.php:1348 128 #: exodox.php:1328 129 #: exodox.php:1349 130 #: exodox.php:1371 127 131 msgid "%1$s %2$s" 128 132 msgstr "" 129 133 130 #: exodox.php:1283131 134 #: exodox.php:1306 132 #: exodox.php:1327 133 #: exodox.php:1349 135 #: exodox.php:1329 136 #: exodox.php:1350 137 #: exodox.php:1372 134 138 msgid "%s access" 135 139 msgstr "" 136 140 137 #: exodox.php:1 295141 #: exodox.php:1318 138 142 msgid "%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" 139 143 msgstr "" 140 144 141 #: exodox.php:13 18145 #: exodox.php:1341 142 146 msgid "Unfortunately, your previous purchase has expired. %1$sBuy again%2$s" 143 147 msgstr "" 144 148 145 #: exodox.php:13 39149 #: exodox.php:1362 146 150 msgid "Logged in." 147 151 msgstr "" 148 152 149 #: exodox.php:1 383153 #: exodox.php:1406 150 154 msgid "Update" 151 155 msgstr "" -
exodox/tags/0.7.8/readme.txt
r2358404 r2373044 6 6 Tested up to: 5.4.1 7 7 Requires PHP: 7.2 8 Stable tag: 0.7. 78 Stable tag: 0.7.8 9 9 License: ISC 10 10 License URI: http://directory.fsf.org/wiki/License:ISC -
exodox/trunk/exodox.php
r2358404 r2373044 3 3 * Plugin Name: Exodox 4 4 * Plugin URI: https://exodox.link/get-plugin/ 5 * Version: 0.7. 75 * Version: 0.7.8 6 6 * Author: Exodox 7 7 * Author URI: https://exodox.link … … 42 42 class ExodoxLogin 43 43 { 44 const EXODOX_PLUGIN_VERSION = '0.7. 7';44 const EXODOX_PLUGIN_VERSION = '0.7.8'; 45 45 const EXODOX_ADMIN_PAGE_SLUG = 'exodox'; 46 46 const EXODOX_COOKIE_NAME = 'exodoxUserId'; … … 122 122 $settings = [ 123 123 'exodox_publisher_id' => 'sanitize_text_field', 124 'exodox_disable_listing' => 'sanitize_key' 124 125 ]; 125 126 … … 148 149 ] 149 150 ); 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 ); 150 159 } 151 160 … … 401 410 402 411 // Listing 403 if ( !is_single() && count(self::$exodoxLockedPosts)) {412 if (self::wrap_listing() && !is_single() && count(self::$exodoxLockedPosts)) { 404 413 foreach ($returnPosts as &$post) { 405 414 $link = self::get_common_url(get_permalink($post->ID)); … … 488 497 public static function loop_start($query) 489 498 { 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 } 500 511 } 501 512 } … … 596 607 public static function add_read_more_element($content, $query) 597 608 { 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)) { 599 610 $link = self::get_common_url(get_permalink()); 600 611 $status = self::get_lock_status($link); … … 883 894 { 884 895 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'; 885 908 } 886 909 … … 1407 1430 } 1408 1431 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 1409 1451 /* Functions calling wp api to add style/script files or tags */ 1410 1452 -
exodox/trunk/languages/exodox-sv_SE.po
r2358404 r2373044 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Exodox 0.7. 7\n"5 "Project-Id-Version: Exodox 0.7.8\n" 6 6 "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" 8 8 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 9 9 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 18 18 #. Plugin Name of the plugin 19 19 #. Author of the plugin 20 #: exodox.php:16 020 #: exodox.php:169 21 21 msgid "Exodox" 22 22 msgstr "" … … 34 34 msgstr "" 35 35 36 #: exodox.php:13 2 exodox.php:22236 #: exodox.php:133 exodox.php:231 37 37 msgid "Settings" 38 38 msgstr "Inställningar" 39 39 40 #: exodox.php:1 3940 #: exodox.php:140 41 41 msgid "Publisher ID" 42 42 msgstr "Publisher ID" 43 43 44 #: exodox.php:159 44 #: exodox.php:154 45 msgid "Disable Exodox graphics on listing pages" 46 msgstr "Inaktivera Exodox grafik på lista sidor" 47 48 #: exodox.php:168 45 49 msgid "Exodox - Lock content" 46 50 msgstr "Exodox - Lås innehåll" 47 51 48 #: exodox.php:6 0552 #: exodox.php:616 49 53 msgid "Read the whole article for only %1$s %2$s" 50 54 msgstr "Läs hela artikeln för endast %1$s %2$s" 51 55 52 #: exodox.php:6 11 exodox.php:127056 #: exodox.php:622 exodox.php:1293 53 57 msgid "" 54 58 "The article is locked with Exodox; but you, as administrator, can still read " … … 56 60 msgstr "Artikeln är låst med Exodox, men du som admin på bloggen kan läsa den." 57 61 58 #: exodox.php:6 1562 #: exodox.php:626 59 63 msgid "The article is unlocked, available for %1$s more" 60 64 msgstr "Artikeln upplåst, tillgängligt i %1$s till" 61 65 62 #: exodox.php:6 1866 #: exodox.php:629 63 67 msgid "" 64 68 "Locked content. You must allow cookies in order to be able to purchase this " … … 68 72 "till den här artikeln." 69 73 70 #: exodox.php:10 07 exodox.php:104274 #: exodox.php:1030 exodox.php:1065 71 75 msgid "%s day" 72 76 msgid_plural "%s days" … … 74 78 msgstr[1] "%s dagar" 75 79 76 #: exodox.php:10 15 exodox.php:103480 #: exodox.php:1038 exodox.php:1057 77 81 msgid "%s hour" 78 82 msgid_plural "%s hours" … … 80 84 msgstr[1] "%s timmar" 81 85 82 #: exodox.php:11 6986 #: exodox.php:1192 83 87 msgid "" 84 88 "%1$sReport abuse link%2$sI would like to report the Exodox link %3$s with " … … 88 92 "%3$s med beskrivningen: %4$s" 89 93 90 #: exodox.php:11 7594 #: exodox.php:1198 91 95 msgid "Report abuse" 92 96 msgstr "Rapportera missbruk" 93 97 94 #: exodox.php:12 1598 #: exodox.php:1238 95 99 msgid "Unlock" 96 100 msgstr "Lås upp" 97 101 98 #: exodox.php:12 33102 #: exodox.php:1256 99 103 msgid "%1$sUnlock Link%2$s%3$s" 100 104 msgstr "%1$sLås upp länk%2$s%3$s" 101 105 102 #: exodox.php:12 34106 #: exodox.php:1257 103 107 msgid "%1$sUnlock Link%2$sLogin to Exodox%3$s" 104 108 msgstr "%1$sLås upp länk%2$sLogga in till Exodox%3$s" 105 109 106 #: exodox.php:12 42110 #: exodox.php:1265 107 111 msgid "<em>%1$s %2$s</em> will be added to your monthly billing" 108 112 msgstr "<em>%1$s %2$s</em> kommer läggas till din månadsbetalning" 109 113 110 #: exodox.php:12 49114 #: exodox.php:1272 111 115 msgid "New to Exodox?%1$sCreate Account%2$s" 112 116 msgstr "Ny till Exodox?%1$sSkapa konto%2$s" 113 117 114 #: exodox.php:12 55118 #: exodox.php:1278 115 119 msgid "%1$sGo to my dashboard%2$s" 116 120 msgstr "%1$sGå till min översikt%2$s" 117 121 118 #: exodox.php:12 61122 #: exodox.php:1284 119 123 msgid "%1$sLogout%2$s" 120 124 msgstr "%1$sLogga ut%2$s" 121 125 122 #: exodox.php:12 74126 #: exodox.php:1297 123 127 msgid "The article is unlocked. Read the entire article for %s more" 124 128 msgstr "Artikeln är upplåst. Läs hela artikeln i %s till" 125 129 126 #: exodox.php:1 278130 #: exodox.php:1301 127 131 msgid "You must <em>allow cookies</em> to be able to unlock this article" 128 132 msgstr "" … … 130 134 "här artikeln." 131 135 132 #: exodox.php:1 282 exodox.php:1305 exodox.php:1326 exodox.php:1348136 #: exodox.php:1305 exodox.php:1328 exodox.php:1349 exodox.php:1371 133 137 msgid "%1$s %2$s" 134 138 msgstr "%1$s %2$s" 135 139 136 #: exodox.php:1 283 exodox.php:1306 exodox.php:1327 exodox.php:1349140 #: exodox.php:1306 exodox.php:1329 exodox.php:1350 exodox.php:1372 137 141 msgid "%s access" 138 142 msgstr "%s's åtkomst" 139 143 140 #: exodox.php:1 295144 #: exodox.php:1318 141 145 msgid "" 142 146 "%1$sYou need an Exodox account to be able to purchase access to this link. " … … 146 150 "här artikeln. %2$sVad är Exodox?%3$s%4$sLogga in för att låsa upp%5$s" 147 151 148 #: exodox.php:13 18152 #: exodox.php:1341 149 153 msgid "Unfortunately, your previous purchase has expired. %1$sBuy again%2$s" 150 154 msgstr "" 151 155 "Tyvärr har ditt tidigare köp gått ut för den här artikeln. %1$sKöp igen%2$s" 152 156 153 #: exodox.php:13 39157 #: exodox.php:1362 154 158 msgid "Logged in." 155 159 msgstr "Inloggad." 156 160 157 #: exodox.php:1 383161 #: exodox.php:1406 158 162 msgid "Update" 159 163 msgstr "Uppdatera" -
exodox/trunk/languages/exodox.pot
r2358404 r2373044 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Exodox 0.7. 7\n"5 "Project-Id-Version: Exodox 0.7.8\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/exodox\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "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" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.4.0\n" … … 17 17 #. Plugin Name of the plugin 18 18 #. Author of the plugin 19 #: exodox.php:16 019 #: exodox.php:169 20 20 msgid "Exodox" 21 21 msgstr "" … … 33 33 msgstr "" 34 34 35 #: exodox.php:13 236 #: exodox.php:2 2235 #: exodox.php:133 36 #: exodox.php:231 37 37 msgid "Settings" 38 38 msgstr "" 39 39 40 #: exodox.php:1 3940 #: exodox.php:140 41 41 msgid "Publisher ID" 42 42 msgstr "" 43 43 44 #: exodox.php:159 44 #: exodox.php:154 45 msgid "Disable Exodox graphics on listing pages" 46 msgstr "" 47 48 #: exodox.php:168 45 49 msgid "Exodox - Lock content" 46 50 msgstr "" 47 51 48 #: exodox.php:6 0552 #: exodox.php:616 49 53 msgid "Read the whole article for only %1$s %2$s" 50 54 msgstr "" 51 55 52 #: exodox.php:6 1153 #: exodox.php:12 7056 #: exodox.php:622 57 #: exodox.php:1293 54 58 msgid "The article is locked with Exodox; but you, as administrator, can still read it." 55 59 msgstr "" 56 60 57 #: exodox.php:6 1561 #: exodox.php:626 58 62 msgid "The article is unlocked, available for %1$s more" 59 63 msgstr "" 60 64 61 #: exodox.php:6 1865 #: exodox.php:629 62 66 msgid "Locked content. You must allow cookies in order to be able to purchase this article." 63 67 msgstr "" 64 68 65 #: exodox.php:10 0766 #: exodox.php:10 4269 #: exodox.php:1030 70 #: exodox.php:1065 67 71 msgid "%s day" 68 72 msgid_plural "%s days" … … 70 74 msgstr[1] "" 71 75 72 #: exodox.php:10 1573 #: exodox.php:10 3476 #: exodox.php:1038 77 #: exodox.php:1057 74 78 msgid "%s hour" 75 79 msgid_plural "%s hours" … … 77 81 msgstr[1] "" 78 82 79 #: exodox.php:11 6983 #: exodox.php:1192 80 84 msgid "%1$sReport abuse link%2$sI would like to report the Exodox link %3$s with the description: %4$s" 81 85 msgstr "" 82 86 83 #: exodox.php:11 7587 #: exodox.php:1198 84 88 msgid "Report abuse" 85 89 msgstr "" 86 90 87 #: exodox.php:12 1591 #: exodox.php:1238 88 92 msgid "Unlock" 89 93 msgstr "" 90 94 91 #: exodox.php:12 3395 #: exodox.php:1256 92 96 msgid "%1$sUnlock Link%2$s%3$s" 93 97 msgstr "" 94 98 95 #: exodox.php:12 3499 #: exodox.php:1257 96 100 msgid "%1$sUnlock Link%2$sLogin to Exodox%3$s" 97 101 msgstr "" 98 102 99 #: exodox.php:12 42103 #: exodox.php:1265 100 104 msgid "<em>%1$s %2$s</em> will be added to your monthly billing" 101 105 msgstr "" 102 106 103 #: exodox.php:12 49107 #: exodox.php:1272 104 108 msgid "New to Exodox?%1$sCreate Account%2$s" 105 109 msgstr "" 106 110 107 #: exodox.php:12 55111 #: exodox.php:1278 108 112 msgid "%1$sGo to my dashboard%2$s" 109 113 msgstr "" 110 114 111 #: exodox.php:12 61115 #: exodox.php:1284 112 116 msgid "%1$sLogout%2$s" 113 117 msgstr "" 114 118 115 #: exodox.php:12 74119 #: exodox.php:1297 116 120 msgid "The article is unlocked. Read the entire article for %s more" 117 121 msgstr "" 118 122 119 #: exodox.php:1 278123 #: exodox.php:1301 120 124 msgid "You must <em>allow cookies</em> to be able to unlock this article" 121 125 msgstr "" 122 126 123 #: exodox.php:1282124 127 #: exodox.php:1305 125 #: exodox.php:1326 126 #: exodox.php:1348 128 #: exodox.php:1328 129 #: exodox.php:1349 130 #: exodox.php:1371 127 131 msgid "%1$s %2$s" 128 132 msgstr "" 129 133 130 #: exodox.php:1283131 134 #: exodox.php:1306 132 #: exodox.php:1327 133 #: exodox.php:1349 135 #: exodox.php:1329 136 #: exodox.php:1350 137 #: exodox.php:1372 134 138 msgid "%s access" 135 139 msgstr "" 136 140 137 #: exodox.php:1 295141 #: exodox.php:1318 138 142 msgid "%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" 139 143 msgstr "" 140 144 141 #: exodox.php:13 18145 #: exodox.php:1341 142 146 msgid "Unfortunately, your previous purchase has expired. %1$sBuy again%2$s" 143 147 msgstr "" 144 148 145 #: exodox.php:13 39149 #: exodox.php:1362 146 150 msgid "Logged in." 147 151 msgstr "" 148 152 149 #: exodox.php:1 383153 #: exodox.php:1406 150 154 msgid "Update" 151 155 msgstr "" -
exodox/trunk/readme.txt
r2358404 r2373044 6 6 Tested up to: 5.4.1 7 7 Requires PHP: 7.2 8 Stable tag: 0.7. 78 Stable tag: 0.7.8 9 9 License: ISC 10 10 License URI: http://directory.fsf.org/wiki/License:ISC
Note: See TracChangeset
for help on using the changeset viewer.