Changeset 2447271
- Timestamp:
- 12/29/2020 09:53:06 AM (5 years ago)
- Location:
- exodox
- Files:
-
- 10 edited
- 1 copied
-
tags/0.8.3 (copied) (copied from exodox/trunk)
-
tags/0.8.3/exodox.php (modified) (8 diffs)
-
tags/0.8.3/languages/exodox-sv_SE.mo (modified) (previous)
-
tags/0.8.3/languages/exodox-sv_SE.po (modified) (10 diffs)
-
tags/0.8.3/languages/exodox.pot (modified) (6 diffs)
-
tags/0.8.3/readme.txt (modified) (1 diff)
-
trunk/exodox.php (modified) (8 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.8.3/exodox.php
r2408286 r2447271 3 3 * Plugin Name: Exodox 4 4 * Plugin URI: https://exodox.link/get-plugin/ 5 * Version: 0.8. 15 * Version: 0.8.3 6 6 * Author: Exodox 7 7 * Author URI: https://exodox.link … … 42 42 class ExodoxLogin 43 43 { 44 const EXODOX_PLUGIN_VERSION = '0.8. 1';44 const EXODOX_PLUGIN_VERSION = '0.8.3'; 45 45 const EXODOX_ADMIN_PAGE_SLUG = 'exodox'; 46 46 const EXODOX_COOKIE_NAME = 'exodoxUserId'; … … 100 100 add_filter('loop_start', [__CLASS__, 'loop_start'], 0, 2); 101 101 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); 102 104 } 103 105 } … … 342 344 'methods' => 'POST', 343 345 'callback' => [__CLASS__, 'exodox_verify_owner'], 346 'permission_callback' => '__return_true', 344 347 ]); 345 348 } … … 386 389 public static function the_posts($posts) 387 390 { 391 if (0 === count($posts)) { 392 return $posts; 393 } 394 388 395 $newPosts = []; 389 396 $returnPosts = $posts; … … 619 626 public static function add_read_more_element($content, $query) 620 627 { 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()) { 622 629 $link = self::get_common_url(get_permalink()); 623 630 $status = self::get_lock_status($link); … … 661 668 } 662 669 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 663 687 /**********************************************/ 664 688 /* Wordpress sections (must be public static) */ … … 1042 1066 1043 1067 $hours = $interval->format('%h'); 1044 $days = $interval->format('% d');1068 $days = $interval->format('%a'); 1045 1069 1046 1070 if ($days > 0) { -
exodox/tags/0.8.3/languages/exodox-sv_SE.po
r2408286 r2447271 5 5 "Project-Id-Version: Plugins - Exodox - Stable (latest release)\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/exodox\n" 7 "POT-Creation-Date: 2020-1 0-28T12:53:54+00:00\n"7 "POT-Creation-Date: 2020-12-18T08:22:39+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:1 6920 #: exodox.php:171 21 21 msgid "Exodox" 22 22 msgstr "" … … 34 34 msgstr "" 35 35 36 #: exodox.php:13 3 exodox.php:23136 #: exodox.php:135 exodox.php:233 37 37 msgid "Settings" 38 38 msgstr "Inställningar" 39 39 40 #: exodox.php:14 040 #: exodox.php:142 41 41 msgid "Publisher ID" 42 42 msgstr "Publisher ID" 43 43 44 #: exodox.php:15 444 #: exodox.php:156 45 45 msgid "Disable Exodox graphics on listing pages" 46 46 msgstr "Inaktivera Exodox grafik på lista sidor" 47 47 48 #: exodox.php:1 6848 #: exodox.php:170 49 49 msgid "Exodox - Lock content" 50 50 msgstr "Exodox - Lås innehåll" 51 51 52 #: exodox.php:25 252 #: exodox.php:254 53 53 msgid "Wrong format of Publisher Id" 54 54 msgstr "" 55 55 56 #: exodox.php:6 2856 #: exodox.php:635 57 57 msgid "Read the whole article for only %1$s %2$s" 58 58 msgstr "Läs hela artikeln för endast %1$s %2$s" 59 59 60 #: exodox.php:6 34 exodox.php:131360 #: exodox.php:641 exodox.php:1337 61 61 msgid "" 62 62 "The article is locked with Exodox; but you, as administrator, can still read " … … 64 64 msgstr "Artikeln är låst med Exodox, men du som admin på bloggen kan läsa den." 65 65 66 #: exodox.php:6 3866 #: exodox.php:645 67 67 msgid "The article is unlocked, available for %1$s more" 68 68 msgstr "Artikeln upplåst, tillgängligt i %1$s till" 69 69 70 #: exodox.php:64 170 #: exodox.php:648 71 71 msgid "" 72 72 "Locked content. You must allow cookies in order to be able to purchase this " … … 76 76 "till den här artikeln." 77 77 78 #: exodox.php:1050 exodox.php:1085 78 #: exodox.php:681 79 msgid "The article is locked with Exodox; and disabled in feeds." 80 msgstr "The article is locked with Exodox; and disabled in feeds." 81 82 #: exodox.php:1074 exodox.php:1109 79 83 msgid "%s day" 80 84 msgid_plural "%s days" … … 82 86 msgstr[1] "%s dagar" 83 87 84 #: exodox.php:10 58 exodox.php:107788 #: exodox.php:1082 exodox.php:1101 85 89 msgid "%s hour" 86 90 msgid_plural "%s hours" … … 88 92 msgstr[1] "%s timmar" 89 93 90 #: exodox.php:12 1294 #: exodox.php:1236 91 95 msgid "" 92 96 "%1$sReport abuse link%2$sI would like to report the Exodox link %3$s with " … … 96 100 "%3$s med beskrivningen: %4$s" 97 101 98 #: exodox.php:12 18102 #: exodox.php:1242 99 103 msgid "Report abuse" 100 104 msgstr "Rapportera missbruk" 101 105 102 #: exodox.php:12 58106 #: exodox.php:1282 103 107 msgid "Unlock" 104 108 msgstr "Lås upp" 105 109 106 #: exodox.php:1 276110 #: exodox.php:1300 107 111 msgid "%1$sUnlock Link%2$s%3$s" 108 112 msgstr "%1$sLås upp länk%2$s%3$s" 109 113 110 #: exodox.php:1 277114 #: exodox.php:1301 111 115 msgid "%1$sUnlock Link%2$sLogin to Exodox%3$s" 112 116 msgstr "%1$sLås upp länk%2$sLogga in till Exodox%3$s" 113 117 114 #: exodox.php:1 285118 #: exodox.php:1309 115 119 msgid "<em>%1$s %2$s</em> will be added to your monthly billing" 116 120 msgstr "<em>%1$s %2$s</em> kommer läggas till din månadsbetalning" 117 121 118 #: exodox.php:1 292122 #: exodox.php:1316 119 123 msgid "New to Exodox?%1$sCreate Account%2$s" 120 msgstr "Ny tillExodox?%1$sSkapa konto%2$s"124 msgstr "Ny på Exodox?%1$sSkapa konto%2$s" 121 125 122 #: exodox.php:1 298126 #: exodox.php:1322 123 127 msgid "%1$sGo to my dashboard%2$s" 124 128 msgstr "%1$sGå till min översikt%2$s" 125 129 126 #: exodox.php:13 04130 #: exodox.php:1328 127 131 msgid "%1$sLogout%2$s" 128 132 msgstr "%1$sLogga ut%2$s" 129 133 130 #: exodox.php:13 17134 #: exodox.php:1341 131 135 msgid "The article is unlocked. Read the entire article for %s more" 132 136 msgstr "Artikeln är upplåst. Läs hela artikeln i %s till" 133 137 134 #: exodox.php:13 21138 #: exodox.php:1345 135 139 msgid "You must <em>allow cookies</em> to be able to unlock this article" 136 140 msgstr "" … … 138 142 "här artikeln." 139 143 140 #: exodox.php:13 25 exodox.php:1348 exodox.php:1369 exodox.php:1391144 #: exodox.php:1349 exodox.php:1372 exodox.php:1393 exodox.php:1415 141 145 msgid "%1$s %2$s" 142 146 msgstr "%1$s %2$s" 143 147 144 #: exodox.php:13 26 exodox.php:1349 exodox.php:1370 exodox.php:1392148 #: exodox.php:1350 exodox.php:1373 exodox.php:1394 exodox.php:1416 145 149 msgid "%s access" 146 150 msgstr "%s's åtkomst" 147 151 148 #: exodox.php:13 38152 #: exodox.php:1362 149 153 msgid "" 150 154 "%1$sYou need an Exodox account to be able to purchase access to this link. " … … 154 158 "här artikeln. %2$sVad är Exodox?%3$s%4$sLogga in för att låsa upp%5$s" 155 159 156 #: exodox.php:13 61160 #: exodox.php:1385 157 161 msgid "Unfortunately, your previous purchase has expired. %1$sBuy again%2$s" 158 162 msgstr "" 159 163 "Tyvärr har ditt tidigare köp gått ut för den här artikeln. %1$sKöp igen%2$s" 160 164 161 #: exodox.php:1 382165 #: exodox.php:1406 162 166 msgid "Logged in." 163 167 msgstr "Inloggad." 164 168 165 #: exodox.php:14 26169 #: exodox.php:1450 166 170 msgid "Update" 167 171 msgstr "Uppdatera" -
exodox/tags/0.8.3/languages/exodox.pot
r2408286 r2447271 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Exodox 0.8. 1\n"5 "Project-Id-Version: Exodox 0.8.3\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-1 0-28T12:54:00+00:00\n"12 "POT-Creation-Date: 2020-12-18T08:32:38+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:1 6919 #: exodox.php:171 20 20 msgid "Exodox" 21 21 msgstr "" … … 33 33 msgstr "" 34 34 35 #: exodox.php:13 336 #: exodox.php:23 135 #: exodox.php:135 36 #: exodox.php:233 37 37 msgid "Settings" 38 38 msgstr "" 39 39 40 #: exodox.php:14 040 #: exodox.php:142 41 41 msgid "Publisher ID" 42 42 msgstr "" 43 43 44 #: exodox.php:15 444 #: exodox.php:156 45 45 msgid "Disable Exodox graphics on listing pages" 46 46 msgstr "" 47 47 48 #: exodox.php:1 6848 #: exodox.php:170 49 49 msgid "Exodox - Lock content" 50 50 msgstr "" 51 51 52 #: exodox.php:25 252 #: exodox.php:254 53 53 msgid "Wrong format of Publisher Id" 54 54 msgstr "" 55 55 56 #: exodox.php:6 2856 #: exodox.php:635 57 57 msgid "Read the whole article for only %1$s %2$s" 58 58 msgstr "" 59 59 60 #: exodox.php:6 3461 #: exodox.php:13 1360 #: exodox.php:641 61 #: exodox.php:1337 62 62 msgid "The article is locked with Exodox; but you, as administrator, can still read it." 63 63 msgstr "" 64 64 65 #: exodox.php:6 3865 #: exodox.php:645 66 66 msgid "The article is unlocked, available for %1$s more" 67 67 msgstr "" 68 68 69 #: exodox.php:64 169 #: exodox.php:648 70 70 msgid "Locked content. You must allow cookies in order to be able to purchase this article." 71 71 msgstr "" 72 72 73 #: exodox.php:1050 74 #: exodox.php:1085 73 #: exodox.php:681 74 msgid "The article is locked with Exodox; and disabled in feeds." 75 msgstr "" 76 77 #: exodox.php:1074 78 #: exodox.php:1109 75 79 msgid "%s day" 76 80 msgid_plural "%s days" … … 78 82 msgstr[1] "" 79 83 80 #: exodox.php:10 5881 #: exodox.php:1 07784 #: exodox.php:1082 85 #: exodox.php:1101 82 86 msgid "%s hour" 83 87 msgid_plural "%s hours" … … 85 89 msgstr[1] "" 86 90 87 #: exodox.php:12 1291 #: exodox.php:1236 88 92 msgid "%1$sReport abuse link%2$sI would like to report the Exodox link %3$s with the description: %4$s" 89 93 msgstr "" 90 94 91 #: exodox.php:12 1895 #: exodox.php:1242 92 96 msgid "Report abuse" 93 97 msgstr "" 94 98 95 #: exodox.php:12 5899 #: exodox.php:1282 96 100 msgid "Unlock" 97 101 msgstr "" 98 102 99 #: exodox.php:1 276103 #: exodox.php:1300 100 104 msgid "%1$sUnlock Link%2$s%3$s" 101 105 msgstr "" 102 106 103 #: exodox.php:1 277107 #: exodox.php:1301 104 108 msgid "%1$sUnlock Link%2$sLogin to Exodox%3$s" 105 109 msgstr "" 106 110 107 #: exodox.php:1 285111 #: exodox.php:1309 108 112 msgid "<em>%1$s %2$s</em> will be added to your monthly billing" 109 113 msgstr "" 110 114 111 #: exodox.php:1 292115 #: exodox.php:1316 112 116 msgid "New to Exodox?%1$sCreate Account%2$s" 113 117 msgstr "" 114 118 115 #: exodox.php:1 298119 #: exodox.php:1322 116 120 msgid "%1$sGo to my dashboard%2$s" 117 121 msgstr "" 118 122 119 #: exodox.php:13 04123 #: exodox.php:1328 120 124 msgid "%1$sLogout%2$s" 121 125 msgstr "" 122 126 123 #: exodox.php:13 17127 #: exodox.php:1341 124 128 msgid "The article is unlocked. Read the entire article for %s more" 125 129 msgstr "" 126 130 127 #: exodox.php:13 21131 #: exodox.php:1345 128 132 msgid "You must <em>allow cookies</em> to be able to unlock this article" 129 133 msgstr "" 130 134 131 #: exodox.php:13 25132 #: exodox.php:13 48133 #: exodox.php:13 69134 #: exodox.php:1 391135 #: exodox.php:1349 136 #: exodox.php:1372 137 #: exodox.php:1393 138 #: exodox.php:1415 135 139 msgid "%1$s %2$s" 136 140 msgstr "" 137 141 138 #: exodox.php:13 26139 #: exodox.php:13 49140 #: exodox.php:13 70141 #: exodox.php:1 392142 #: exodox.php:1350 143 #: exodox.php:1373 144 #: exodox.php:1394 145 #: exodox.php:1416 142 146 msgid "%s access" 143 147 msgstr "" 144 148 145 #: exodox.php:13 38149 #: exodox.php:1362 146 150 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" 147 151 msgstr "" 148 152 149 #: exodox.php:13 61153 #: exodox.php:1385 150 154 msgid "Unfortunately, your previous purchase has expired. %1$sBuy again%2$s" 151 155 msgstr "" 152 156 153 #: exodox.php:1 382157 #: exodox.php:1406 154 158 msgid "Logged in." 155 159 msgstr "" 156 160 157 #: exodox.php:14 26161 #: exodox.php:1450 158 162 msgid "Update" 159 163 msgstr "" -
exodox/tags/0.8.3/readme.txt
r2408286 r2447271 6 6 Tested up to: 5.4.1 7 7 Requires PHP: 7.2 8 Stable tag: 0.8. 18 Stable tag: 0.8.3 9 9 License: ISC 10 10 License URI: http://directory.fsf.org/wiki/License:ISC -
exodox/trunk/exodox.php
r2408286 r2447271 3 3 * Plugin Name: Exodox 4 4 * Plugin URI: https://exodox.link/get-plugin/ 5 * Version: 0.8. 15 * Version: 0.8.3 6 6 * Author: Exodox 7 7 * Author URI: https://exodox.link … … 42 42 class ExodoxLogin 43 43 { 44 const EXODOX_PLUGIN_VERSION = '0.8. 1';44 const EXODOX_PLUGIN_VERSION = '0.8.3'; 45 45 const EXODOX_ADMIN_PAGE_SLUG = 'exodox'; 46 46 const EXODOX_COOKIE_NAME = 'exodoxUserId'; … … 100 100 add_filter('loop_start', [__CLASS__, 'loop_start'], 0, 2); 101 101 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); 102 104 } 103 105 } … … 342 344 'methods' => 'POST', 343 345 'callback' => [__CLASS__, 'exodox_verify_owner'], 346 'permission_callback' => '__return_true', 344 347 ]); 345 348 } … … 386 389 public static function the_posts($posts) 387 390 { 391 if (0 === count($posts)) { 392 return $posts; 393 } 394 388 395 $newPosts = []; 389 396 $returnPosts = $posts; … … 619 626 public static function add_read_more_element($content, $query) 620 627 { 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()) { 622 629 $link = self::get_common_url(get_permalink()); 623 630 $status = self::get_lock_status($link); … … 661 668 } 662 669 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 663 687 /**********************************************/ 664 688 /* Wordpress sections (must be public static) */ … … 1042 1066 1043 1067 $hours = $interval->format('%h'); 1044 $days = $interval->format('% d');1068 $days = $interval->format('%a'); 1045 1069 1046 1070 if ($days > 0) { -
exodox/trunk/languages/exodox-sv_SE.po
r2408286 r2447271 5 5 "Project-Id-Version: Plugins - Exodox - Stable (latest release)\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/exodox\n" 7 "POT-Creation-Date: 2020-1 0-28T12:53:54+00:00\n"7 "POT-Creation-Date: 2020-12-18T08:22:39+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:1 6920 #: exodox.php:171 21 21 msgid "Exodox" 22 22 msgstr "" … … 34 34 msgstr "" 35 35 36 #: exodox.php:13 3 exodox.php:23136 #: exodox.php:135 exodox.php:233 37 37 msgid "Settings" 38 38 msgstr "Inställningar" 39 39 40 #: exodox.php:14 040 #: exodox.php:142 41 41 msgid "Publisher ID" 42 42 msgstr "Publisher ID" 43 43 44 #: exodox.php:15 444 #: exodox.php:156 45 45 msgid "Disable Exodox graphics on listing pages" 46 46 msgstr "Inaktivera Exodox grafik på lista sidor" 47 47 48 #: exodox.php:1 6848 #: exodox.php:170 49 49 msgid "Exodox - Lock content" 50 50 msgstr "Exodox - Lås innehåll" 51 51 52 #: exodox.php:25 252 #: exodox.php:254 53 53 msgid "Wrong format of Publisher Id" 54 54 msgstr "" 55 55 56 #: exodox.php:6 2856 #: exodox.php:635 57 57 msgid "Read the whole article for only %1$s %2$s" 58 58 msgstr "Läs hela artikeln för endast %1$s %2$s" 59 59 60 #: exodox.php:6 34 exodox.php:131360 #: exodox.php:641 exodox.php:1337 61 61 msgid "" 62 62 "The article is locked with Exodox; but you, as administrator, can still read " … … 64 64 msgstr "Artikeln är låst med Exodox, men du som admin på bloggen kan läsa den." 65 65 66 #: exodox.php:6 3866 #: exodox.php:645 67 67 msgid "The article is unlocked, available for %1$s more" 68 68 msgstr "Artikeln upplåst, tillgängligt i %1$s till" 69 69 70 #: exodox.php:64 170 #: exodox.php:648 71 71 msgid "" 72 72 "Locked content. You must allow cookies in order to be able to purchase this " … … 76 76 "till den här artikeln." 77 77 78 #: exodox.php:1050 exodox.php:1085 78 #: exodox.php:681 79 msgid "The article is locked with Exodox; and disabled in feeds." 80 msgstr "The article is locked with Exodox; and disabled in feeds." 81 82 #: exodox.php:1074 exodox.php:1109 79 83 msgid "%s day" 80 84 msgid_plural "%s days" … … 82 86 msgstr[1] "%s dagar" 83 87 84 #: exodox.php:10 58 exodox.php:107788 #: exodox.php:1082 exodox.php:1101 85 89 msgid "%s hour" 86 90 msgid_plural "%s hours" … … 88 92 msgstr[1] "%s timmar" 89 93 90 #: exodox.php:12 1294 #: exodox.php:1236 91 95 msgid "" 92 96 "%1$sReport abuse link%2$sI would like to report the Exodox link %3$s with " … … 96 100 "%3$s med beskrivningen: %4$s" 97 101 98 #: exodox.php:12 18102 #: exodox.php:1242 99 103 msgid "Report abuse" 100 104 msgstr "Rapportera missbruk" 101 105 102 #: exodox.php:12 58106 #: exodox.php:1282 103 107 msgid "Unlock" 104 108 msgstr "Lås upp" 105 109 106 #: exodox.php:1 276110 #: exodox.php:1300 107 111 msgid "%1$sUnlock Link%2$s%3$s" 108 112 msgstr "%1$sLås upp länk%2$s%3$s" 109 113 110 #: exodox.php:1 277114 #: exodox.php:1301 111 115 msgid "%1$sUnlock Link%2$sLogin to Exodox%3$s" 112 116 msgstr "%1$sLås upp länk%2$sLogga in till Exodox%3$s" 113 117 114 #: exodox.php:1 285118 #: exodox.php:1309 115 119 msgid "<em>%1$s %2$s</em> will be added to your monthly billing" 116 120 msgstr "<em>%1$s %2$s</em> kommer läggas till din månadsbetalning" 117 121 118 #: exodox.php:1 292122 #: exodox.php:1316 119 123 msgid "New to Exodox?%1$sCreate Account%2$s" 120 msgstr "Ny tillExodox?%1$sSkapa konto%2$s"124 msgstr "Ny på Exodox?%1$sSkapa konto%2$s" 121 125 122 #: exodox.php:1 298126 #: exodox.php:1322 123 127 msgid "%1$sGo to my dashboard%2$s" 124 128 msgstr "%1$sGå till min översikt%2$s" 125 129 126 #: exodox.php:13 04130 #: exodox.php:1328 127 131 msgid "%1$sLogout%2$s" 128 132 msgstr "%1$sLogga ut%2$s" 129 133 130 #: exodox.php:13 17134 #: exodox.php:1341 131 135 msgid "The article is unlocked. Read the entire article for %s more" 132 136 msgstr "Artikeln är upplåst. Läs hela artikeln i %s till" 133 137 134 #: exodox.php:13 21138 #: exodox.php:1345 135 139 msgid "You must <em>allow cookies</em> to be able to unlock this article" 136 140 msgstr "" … … 138 142 "här artikeln." 139 143 140 #: exodox.php:13 25 exodox.php:1348 exodox.php:1369 exodox.php:1391144 #: exodox.php:1349 exodox.php:1372 exodox.php:1393 exodox.php:1415 141 145 msgid "%1$s %2$s" 142 146 msgstr "%1$s %2$s" 143 147 144 #: exodox.php:13 26 exodox.php:1349 exodox.php:1370 exodox.php:1392148 #: exodox.php:1350 exodox.php:1373 exodox.php:1394 exodox.php:1416 145 149 msgid "%s access" 146 150 msgstr "%s's åtkomst" 147 151 148 #: exodox.php:13 38152 #: exodox.php:1362 149 153 msgid "" 150 154 "%1$sYou need an Exodox account to be able to purchase access to this link. " … … 154 158 "här artikeln. %2$sVad är Exodox?%3$s%4$sLogga in för att låsa upp%5$s" 155 159 156 #: exodox.php:13 61160 #: exodox.php:1385 157 161 msgid "Unfortunately, your previous purchase has expired. %1$sBuy again%2$s" 158 162 msgstr "" 159 163 "Tyvärr har ditt tidigare köp gått ut för den här artikeln. %1$sKöp igen%2$s" 160 164 161 #: exodox.php:1 382165 #: exodox.php:1406 162 166 msgid "Logged in." 163 167 msgstr "Inloggad." 164 168 165 #: exodox.php:14 26169 #: exodox.php:1450 166 170 msgid "Update" 167 171 msgstr "Uppdatera" -
exodox/trunk/languages/exodox.pot
r2408286 r2447271 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Exodox 0.8. 1\n"5 "Project-Id-Version: Exodox 0.8.3\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-1 0-28T12:54:00+00:00\n"12 "POT-Creation-Date: 2020-12-18T08:32:38+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:1 6919 #: exodox.php:171 20 20 msgid "Exodox" 21 21 msgstr "" … … 33 33 msgstr "" 34 34 35 #: exodox.php:13 336 #: exodox.php:23 135 #: exodox.php:135 36 #: exodox.php:233 37 37 msgid "Settings" 38 38 msgstr "" 39 39 40 #: exodox.php:14 040 #: exodox.php:142 41 41 msgid "Publisher ID" 42 42 msgstr "" 43 43 44 #: exodox.php:15 444 #: exodox.php:156 45 45 msgid "Disable Exodox graphics on listing pages" 46 46 msgstr "" 47 47 48 #: exodox.php:1 6848 #: exodox.php:170 49 49 msgid "Exodox - Lock content" 50 50 msgstr "" 51 51 52 #: exodox.php:25 252 #: exodox.php:254 53 53 msgid "Wrong format of Publisher Id" 54 54 msgstr "" 55 55 56 #: exodox.php:6 2856 #: exodox.php:635 57 57 msgid "Read the whole article for only %1$s %2$s" 58 58 msgstr "" 59 59 60 #: exodox.php:6 3461 #: exodox.php:13 1360 #: exodox.php:641 61 #: exodox.php:1337 62 62 msgid "The article is locked with Exodox; but you, as administrator, can still read it." 63 63 msgstr "" 64 64 65 #: exodox.php:6 3865 #: exodox.php:645 66 66 msgid "The article is unlocked, available for %1$s more" 67 67 msgstr "" 68 68 69 #: exodox.php:64 169 #: exodox.php:648 70 70 msgid "Locked content. You must allow cookies in order to be able to purchase this article." 71 71 msgstr "" 72 72 73 #: exodox.php:1050 74 #: exodox.php:1085 73 #: exodox.php:681 74 msgid "The article is locked with Exodox; and disabled in feeds." 75 msgstr "" 76 77 #: exodox.php:1074 78 #: exodox.php:1109 75 79 msgid "%s day" 76 80 msgid_plural "%s days" … … 78 82 msgstr[1] "" 79 83 80 #: exodox.php:10 5881 #: exodox.php:1 07784 #: exodox.php:1082 85 #: exodox.php:1101 82 86 msgid "%s hour" 83 87 msgid_plural "%s hours" … … 85 89 msgstr[1] "" 86 90 87 #: exodox.php:12 1291 #: exodox.php:1236 88 92 msgid "%1$sReport abuse link%2$sI would like to report the Exodox link %3$s with the description: %4$s" 89 93 msgstr "" 90 94 91 #: exodox.php:12 1895 #: exodox.php:1242 92 96 msgid "Report abuse" 93 97 msgstr "" 94 98 95 #: exodox.php:12 5899 #: exodox.php:1282 96 100 msgid "Unlock" 97 101 msgstr "" 98 102 99 #: exodox.php:1 276103 #: exodox.php:1300 100 104 msgid "%1$sUnlock Link%2$s%3$s" 101 105 msgstr "" 102 106 103 #: exodox.php:1 277107 #: exodox.php:1301 104 108 msgid "%1$sUnlock Link%2$sLogin to Exodox%3$s" 105 109 msgstr "" 106 110 107 #: exodox.php:1 285111 #: exodox.php:1309 108 112 msgid "<em>%1$s %2$s</em> will be added to your monthly billing" 109 113 msgstr "" 110 114 111 #: exodox.php:1 292115 #: exodox.php:1316 112 116 msgid "New to Exodox?%1$sCreate Account%2$s" 113 117 msgstr "" 114 118 115 #: exodox.php:1 298119 #: exodox.php:1322 116 120 msgid "%1$sGo to my dashboard%2$s" 117 121 msgstr "" 118 122 119 #: exodox.php:13 04123 #: exodox.php:1328 120 124 msgid "%1$sLogout%2$s" 121 125 msgstr "" 122 126 123 #: exodox.php:13 17127 #: exodox.php:1341 124 128 msgid "The article is unlocked. Read the entire article for %s more" 125 129 msgstr "" 126 130 127 #: exodox.php:13 21131 #: exodox.php:1345 128 132 msgid "You must <em>allow cookies</em> to be able to unlock this article" 129 133 msgstr "" 130 134 131 #: exodox.php:13 25132 #: exodox.php:13 48133 #: exodox.php:13 69134 #: exodox.php:1 391135 #: exodox.php:1349 136 #: exodox.php:1372 137 #: exodox.php:1393 138 #: exodox.php:1415 135 139 msgid "%1$s %2$s" 136 140 msgstr "" 137 141 138 #: exodox.php:13 26139 #: exodox.php:13 49140 #: exodox.php:13 70141 #: exodox.php:1 392142 #: exodox.php:1350 143 #: exodox.php:1373 144 #: exodox.php:1394 145 #: exodox.php:1416 142 146 msgid "%s access" 143 147 msgstr "" 144 148 145 #: exodox.php:13 38149 #: exodox.php:1362 146 150 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" 147 151 msgstr "" 148 152 149 #: exodox.php:13 61153 #: exodox.php:1385 150 154 msgid "Unfortunately, your previous purchase has expired. %1$sBuy again%2$s" 151 155 msgstr "" 152 156 153 #: exodox.php:1 382157 #: exodox.php:1406 154 158 msgid "Logged in." 155 159 msgstr "" 156 160 157 #: exodox.php:14 26161 #: exodox.php:1450 158 162 msgid "Update" 159 163 msgstr "" -
exodox/trunk/readme.txt
r2408286 r2447271 6 6 Tested up to: 5.4.1 7 7 Requires PHP: 7.2 8 Stable tag: 0.8. 18 Stable tag: 0.8.3 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.