Changeset 2408286
- Timestamp:
- 10/28/2020 01:09:58 PM (5 years ago)
- Location:
- exodox
- Files:
-
- 8 edited
- 1 copied
-
tags/0.8.1 (copied) (copied from exodox/trunk)
-
tags/0.8.1/exodox.php (modified) (11 diffs)
-
tags/0.8.1/languages/exodox-sv_SE.po (modified) (9 diffs)
-
tags/0.8.1/languages/exodox.pot (modified) (5 diffs)
-
tags/0.8.1/readme.txt (modified) (1 diff)
-
trunk/exodox.php (modified) (11 diffs)
-
trunk/languages/exodox-sv_SE.po (modified) (9 diffs)
-
trunk/languages/exodox.pot (modified) (5 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
exodox/tags/0.8.1/exodox.php
r2390087 r2408286 3 3 * Plugin Name: Exodox 4 4 * Plugin URI: https://exodox.link/get-plugin/ 5 * Version: 0.8. 05 * Version: 0.8.1 6 6 * Author: Exodox 7 7 * Author URI: https://exodox.link … … 42 42 class ExodoxLogin 43 43 { 44 const EXODOX_PLUGIN_VERSION = '0.8. 0';44 const EXODOX_PLUGIN_VERSION = '0.8.1'; 45 45 const EXODOX_ADMIN_PAGE_SLUG = 'exodox'; 46 46 const EXODOX_COOKIE_NAME = 'exodoxUserId'; … … 121 121 } 122 122 $settings = [ 123 'exodox_publisher_id' => 'sanitize_text_field',124 'exodox_disable_listing' => 'sanitize_key' 123 'exodox_publisher_id' => [__CLASS__, 'filter_publisher_id'], 124 'exodox_disable_listing' => 'sanitize_key', 125 125 ]; 126 126 … … 149 149 ] 150 150 ); 151 151 152 152 add_settings_field( 153 153 'exodox_disable_listing', … … 246 246 public static function filter_publisher_id($id) 247 247 { 248 // TODO: Validate UUID 249 return $id; 248 if (!wp_is_uuid($id)) { 249 add_settings_error( 250 'exodox_publisher_id', 251 'exodox_publisher_id_error', 252 esc_html__('Wrong format of Publisher Id', 'exodox'), 253 'error' 254 ); 255 } 256 257 if (count(get_settings_errors('exodox_publisher_id'))) { 258 return self::get_publisher_id(); 259 } 260 261 return apply_filters('filter_publisher_id', sanitize_text_field($id)); 250 262 } 251 263 … … 396 408 } 397 409 398 if (is_sing le() && 0 === count(self::$exodoxCurrentPosts)) {410 if (is_singular() && 0 === count(self::$exodoxCurrentPosts)) { 399 411 $link = self::get_common_url(get_permalink($posts[0]->ID)); 400 412 401 if ( in_array($link, self::$exodoxLockedPosts)) {413 if (self::is_path_locked($link)) { 402 414 // Locked single post 403 415 $lockedPost = self::lock_single_post($posts[0]); … … 410 422 411 423 // Listing 412 if (self::wrap_listing() && !is_sing le() && count(self::$exodoxLockedPosts)) {424 if (self::wrap_listing() && !is_singular() && count(self::$exodoxLockedPosts)) { 413 425 foreach ($returnPosts as &$post) { 414 426 $link = self::get_common_url(get_permalink($post->ID)); 415 if ( in_array($link, self::$exodoxLockedPosts) && !in_array($link, self::$exodoxCurrentPosts)) {427 if (self::is_path_locked($link) && !in_array($link, self::$exodoxCurrentPosts)) { 416 428 $lockStatus = self::get_lock_status($link); 417 429 … … 839 851 } 840 852 841 return in_array($path, self::$exodoxLockedPosts); 853 if (in_array($path, self::$exodoxLockedPosts)) { 854 $lockedPostObject = self::get_locked_post_object($path); 855 856 if ($lockedPostObject && $lockedPostObject ['active']) { 857 return true; 858 } 859 } 860 861 return false; 842 862 } 843 863 … … 900 920 * 901 921 * @since 0.7.8 902 * 922 * 903 923 * @return bool 904 924 */ 905 925 public static function wrap_listing() 906 926 { 907 return get_option('exodox_disable_listing') !== 'yes';927 return 'yes' !== get_option('exodox_disable_listing'); 908 928 } 909 929 … … 1434 1454 * 1435 1455 * @since 0.7.8 1436 * 1456 * 1437 1457 * @param array $args Checkbox properties 1438 * 1458 * 1439 1459 * @return null 1440 1460 */ … … 1444 1464 '<input type="checkbox" class="%s" name="exodox_disable_listing" value="yes" %s />%s', 1445 1465 esc_attr(array_key_exists('class', $args) ? $args ['class'] : ''), 1446 esc_attr( get_option('exodox_disable_listing') === 'yes'? 'checked=checked' : ''),1466 esc_attr('yes' === get_option('exodox_disable_listing') ? 'checked=checked' : ''), 1447 1467 array_key_exists('help_text', $args) ? sprintf('<p class="description">%s</p>', esc_html($args ['help_text'])) : '' 1448 1468 ); -
exodox/tags/0.8.1/languages/exodox-sv_SE.po
r2385657 r2408286 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- 08-26T13:13:20+00:00\n"7 "POT-Creation-Date: 2020-10-28T12:53:54+00:00\n" 8 8 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 9 9 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 50 50 msgstr "Exodox - Lås innehåll" 51 51 52 #: exodox.php:616 52 #: exodox.php:252 53 msgid "Wrong format of Publisher Id" 54 msgstr "" 55 56 #: exodox.php:628 53 57 msgid "Read the whole article for only %1$s %2$s" 54 58 msgstr "Läs hela artikeln för endast %1$s %2$s" 55 59 56 #: exodox.php:6 22 exodox.php:129360 #: exodox.php:634 exodox.php:1313 57 61 msgid "" 58 62 "The article is locked with Exodox; but you, as administrator, can still read " … … 60 64 msgstr "Artikeln är låst med Exodox, men du som admin på bloggen kan läsa den." 61 65 62 #: exodox.php:6 2666 #: exodox.php:638 63 67 msgid "The article is unlocked, available for %1$s more" 64 68 msgstr "Artikeln upplåst, tillgängligt i %1$s till" 65 69 66 #: exodox.php:6 2970 #: exodox.php:641 67 71 msgid "" 68 72 "Locked content. You must allow cookies in order to be able to purchase this " … … 72 76 "till den här artikeln." 73 77 74 #: exodox.php:10 30 exodox.php:106578 #: exodox.php:1050 exodox.php:1085 75 79 msgid "%s day" 76 80 msgid_plural "%s days" … … 78 82 msgstr[1] "%s dagar" 79 83 80 #: exodox.php:10 38 exodox.php:105784 #: exodox.php:1058 exodox.php:1077 81 85 msgid "%s hour" 82 86 msgid_plural "%s hours" … … 84 88 msgstr[1] "%s timmar" 85 89 86 #: exodox.php:1 19290 #: exodox.php:1212 87 91 msgid "" 88 92 "%1$sReport abuse link%2$sI would like to report the Exodox link %3$s with " … … 92 96 "%3$s med beskrivningen: %4$s" 93 97 94 #: exodox.php:1 19898 #: exodox.php:1218 95 99 msgid "Report abuse" 96 100 msgstr "Rapportera missbruk" 97 101 98 #: exodox.php:12 38102 #: exodox.php:1258 99 103 msgid "Unlock" 100 104 msgstr "Lås upp" 101 105 102 #: exodox.php:12 56106 #: exodox.php:1276 103 107 msgid "%1$sUnlock Link%2$s%3$s" 104 108 msgstr "%1$sLås upp länk%2$s%3$s" 105 109 106 #: exodox.php:12 57110 #: exodox.php:1277 107 111 msgid "%1$sUnlock Link%2$sLogin to Exodox%3$s" 108 112 msgstr "%1$sLås upp länk%2$sLogga in till Exodox%3$s" 109 113 110 #: exodox.php:12 65114 #: exodox.php:1285 111 115 msgid "<em>%1$s %2$s</em> will be added to your monthly billing" 112 116 msgstr "<em>%1$s %2$s</em> kommer läggas till din månadsbetalning" 113 117 114 #: exodox.php:12 72118 #: exodox.php:1292 115 119 msgid "New to Exodox?%1$sCreate Account%2$s" 116 120 msgstr "Ny till Exodox?%1$sSkapa konto%2$s" 117 121 118 #: exodox.php:12 78122 #: exodox.php:1298 119 123 msgid "%1$sGo to my dashboard%2$s" 120 124 msgstr "%1$sGå till min översikt%2$s" 121 125 122 #: exodox.php:1 284126 #: exodox.php:1304 123 127 msgid "%1$sLogout%2$s" 124 128 msgstr "%1$sLogga ut%2$s" 125 129 126 #: exodox.php:1 297130 #: exodox.php:1317 127 131 msgid "The article is unlocked. Read the entire article for %s more" 128 132 msgstr "Artikeln är upplåst. Läs hela artikeln i %s till" 129 133 130 #: exodox.php:13 01134 #: exodox.php:1321 131 135 msgid "You must <em>allow cookies</em> to be able to unlock this article" 132 136 msgstr "" … … 134 138 "här artikeln." 135 139 136 #: exodox.php:13 05 exodox.php:1328 exodox.php:1349 exodox.php:1371140 #: exodox.php:1325 exodox.php:1348 exodox.php:1369 exodox.php:1391 137 141 msgid "%1$s %2$s" 138 142 msgstr "%1$s %2$s" 139 143 140 #: exodox.php:13 06 exodox.php:1329 exodox.php:1350 exodox.php:1372144 #: exodox.php:1326 exodox.php:1349 exodox.php:1370 exodox.php:1392 141 145 msgid "%s access" 142 146 msgstr "%s's åtkomst" 143 147 144 #: exodox.php:13 18148 #: exodox.php:1338 145 149 msgid "" 146 150 "%1$sYou need an Exodox account to be able to purchase access to this link. " … … 150 154 "här artikeln. %2$sVad är Exodox?%3$s%4$sLogga in för att låsa upp%5$s" 151 155 152 #: exodox.php:13 41156 #: exodox.php:1361 153 157 msgid "Unfortunately, your previous purchase has expired. %1$sBuy again%2$s" 154 158 msgstr "" 155 159 "Tyvärr har ditt tidigare köp gått ut för den här artikeln. %1$sKöp igen%2$s" 156 160 157 #: exodox.php:13 62161 #: exodox.php:1382 158 162 msgid "Logged in." 159 163 msgstr "Inloggad." 160 164 161 #: exodox.php:14 06165 #: exodox.php:1426 162 166 msgid "Update" 163 167 msgstr "Uppdatera" -
exodox/tags/0.8.1/languages/exodox.pot
r2390087 r2408286 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Exodox 0.8. 0\n"5 "Project-Id-Version: Exodox 0.8.1\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- 09-29T07:02:51+00:00\n"12 "POT-Creation-Date: 2020-10-28T12:54:00+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" … … 50 50 msgstr "" 51 51 52 #: exodox.php:616 52 #: exodox.php:252 53 msgid "Wrong format of Publisher Id" 54 msgstr "" 55 56 #: exodox.php:628 53 57 msgid "Read the whole article for only %1$s %2$s" 54 58 msgstr "" 55 59 56 #: exodox.php:6 2257 #: exodox.php:1 29360 #: exodox.php:634 61 #: exodox.php:1313 58 62 msgid "The article is locked with Exodox; but you, as administrator, can still read it." 59 63 msgstr "" 60 64 61 #: exodox.php:6 2665 #: exodox.php:638 62 66 msgid "The article is unlocked, available for %1$s more" 63 67 msgstr "" 64 68 65 #: exodox.php:6 2969 #: exodox.php:641 66 70 msgid "Locked content. You must allow cookies in order to be able to purchase this article." 67 71 msgstr "" 68 72 69 #: exodox.php:10 3070 #: exodox.php:10 6573 #: exodox.php:1050 74 #: exodox.php:1085 71 75 msgid "%s day" 72 76 msgid_plural "%s days" … … 74 78 msgstr[1] "" 75 79 76 #: exodox.php:10 3877 #: exodox.php:10 5780 #: exodox.php:1058 81 #: exodox.php:1077 78 82 msgid "%s hour" 79 83 msgid_plural "%s hours" … … 81 85 msgstr[1] "" 82 86 83 #: exodox.php:1 19287 #: exodox.php:1212 84 88 msgid "%1$sReport abuse link%2$sI would like to report the Exodox link %3$s with the description: %4$s" 85 89 msgstr "" 86 90 87 #: exodox.php:1 19891 #: exodox.php:1218 88 92 msgid "Report abuse" 89 93 msgstr "" 90 94 91 #: exodox.php:12 3895 #: exodox.php:1258 92 96 msgid "Unlock" 93 97 msgstr "" 94 98 95 #: exodox.php:12 5699 #: exodox.php:1276 96 100 msgid "%1$sUnlock Link%2$s%3$s" 97 101 msgstr "" 98 102 99 #: exodox.php:12 57103 #: exodox.php:1277 100 104 msgid "%1$sUnlock Link%2$sLogin to Exodox%3$s" 101 105 msgstr "" 102 106 103 #: exodox.php:12 65107 #: exodox.php:1285 104 108 msgid "<em>%1$s %2$s</em> will be added to your monthly billing" 105 109 msgstr "" 106 110 107 #: exodox.php:12 72111 #: exodox.php:1292 108 112 msgid "New to Exodox?%1$sCreate Account%2$s" 109 113 msgstr "" 110 114 111 #: exodox.php:12 78115 #: exodox.php:1298 112 116 msgid "%1$sGo to my dashboard%2$s" 113 117 msgstr "" 114 118 115 #: exodox.php:1 284119 #: exodox.php:1304 116 120 msgid "%1$sLogout%2$s" 117 121 msgstr "" 118 122 119 #: exodox.php:1 297123 #: exodox.php:1317 120 124 msgid "The article is unlocked. Read the entire article for %s more" 121 125 msgstr "" 122 126 123 #: exodox.php:13 01127 #: exodox.php:1321 124 128 msgid "You must <em>allow cookies</em> to be able to unlock this article" 125 129 msgstr "" 126 130 127 #: exodox.php:13 05128 #: exodox.php:13 28129 #: exodox.php:13 49130 #: exodox.php:13 71131 #: exodox.php:1325 132 #: exodox.php:1348 133 #: exodox.php:1369 134 #: exodox.php:1391 131 135 msgid "%1$s %2$s" 132 136 msgstr "" 133 137 134 #: exodox.php:13 06135 #: exodox.php:13 29136 #: exodox.php:13 50137 #: exodox.php:13 72138 #: exodox.php:1326 139 #: exodox.php:1349 140 #: exodox.php:1370 141 #: exodox.php:1392 138 142 msgid "%s access" 139 143 msgstr "" 140 144 141 #: exodox.php:13 18145 #: exodox.php:1338 142 146 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" 143 147 msgstr "" 144 148 145 #: exodox.php:13 41149 #: exodox.php:1361 146 150 msgid "Unfortunately, your previous purchase has expired. %1$sBuy again%2$s" 147 151 msgstr "" 148 152 149 #: exodox.php:13 62153 #: exodox.php:1382 150 154 msgid "Logged in." 151 155 msgstr "" 152 156 153 #: exodox.php:14 06157 #: exodox.php:1426 154 158 msgid "Update" 155 159 msgstr "" -
exodox/tags/0.8.1/readme.txt
r2390087 r2408286 6 6 Tested up to: 5.4.1 7 7 Requires PHP: 7.2 8 Stable tag: 0.8. 08 Stable tag: 0.8.1 9 9 License: ISC 10 10 License URI: http://directory.fsf.org/wiki/License:ISC -
exodox/trunk/exodox.php
r2390087 r2408286 3 3 * Plugin Name: Exodox 4 4 * Plugin URI: https://exodox.link/get-plugin/ 5 * Version: 0.8. 05 * Version: 0.8.1 6 6 * Author: Exodox 7 7 * Author URI: https://exodox.link … … 42 42 class ExodoxLogin 43 43 { 44 const EXODOX_PLUGIN_VERSION = '0.8. 0';44 const EXODOX_PLUGIN_VERSION = '0.8.1'; 45 45 const EXODOX_ADMIN_PAGE_SLUG = 'exodox'; 46 46 const EXODOX_COOKIE_NAME = 'exodoxUserId'; … … 121 121 } 122 122 $settings = [ 123 'exodox_publisher_id' => 'sanitize_text_field',124 'exodox_disable_listing' => 'sanitize_key' 123 'exodox_publisher_id' => [__CLASS__, 'filter_publisher_id'], 124 'exodox_disable_listing' => 'sanitize_key', 125 125 ]; 126 126 … … 149 149 ] 150 150 ); 151 151 152 152 add_settings_field( 153 153 'exodox_disable_listing', … … 246 246 public static function filter_publisher_id($id) 247 247 { 248 // TODO: Validate UUID 249 return $id; 248 if (!wp_is_uuid($id)) { 249 add_settings_error( 250 'exodox_publisher_id', 251 'exodox_publisher_id_error', 252 esc_html__('Wrong format of Publisher Id', 'exodox'), 253 'error' 254 ); 255 } 256 257 if (count(get_settings_errors('exodox_publisher_id'))) { 258 return self::get_publisher_id(); 259 } 260 261 return apply_filters('filter_publisher_id', sanitize_text_field($id)); 250 262 } 251 263 … … 396 408 } 397 409 398 if (is_sing le() && 0 === count(self::$exodoxCurrentPosts)) {410 if (is_singular() && 0 === count(self::$exodoxCurrentPosts)) { 399 411 $link = self::get_common_url(get_permalink($posts[0]->ID)); 400 412 401 if ( in_array($link, self::$exodoxLockedPosts)) {413 if (self::is_path_locked($link)) { 402 414 // Locked single post 403 415 $lockedPost = self::lock_single_post($posts[0]); … … 410 422 411 423 // Listing 412 if (self::wrap_listing() && !is_sing le() && count(self::$exodoxLockedPosts)) {424 if (self::wrap_listing() && !is_singular() && count(self::$exodoxLockedPosts)) { 413 425 foreach ($returnPosts as &$post) { 414 426 $link = self::get_common_url(get_permalink($post->ID)); 415 if ( in_array($link, self::$exodoxLockedPosts) && !in_array($link, self::$exodoxCurrentPosts)) {427 if (self::is_path_locked($link) && !in_array($link, self::$exodoxCurrentPosts)) { 416 428 $lockStatus = self::get_lock_status($link); 417 429 … … 839 851 } 840 852 841 return in_array($path, self::$exodoxLockedPosts); 853 if (in_array($path, self::$exodoxLockedPosts)) { 854 $lockedPostObject = self::get_locked_post_object($path); 855 856 if ($lockedPostObject && $lockedPostObject ['active']) { 857 return true; 858 } 859 } 860 861 return false; 842 862 } 843 863 … … 900 920 * 901 921 * @since 0.7.8 902 * 922 * 903 923 * @return bool 904 924 */ 905 925 public static function wrap_listing() 906 926 { 907 return get_option('exodox_disable_listing') !== 'yes';927 return 'yes' !== get_option('exodox_disable_listing'); 908 928 } 909 929 … … 1434 1454 * 1435 1455 * @since 0.7.8 1436 * 1456 * 1437 1457 * @param array $args Checkbox properties 1438 * 1458 * 1439 1459 * @return null 1440 1460 */ … … 1444 1464 '<input type="checkbox" class="%s" name="exodox_disable_listing" value="yes" %s />%s', 1445 1465 esc_attr(array_key_exists('class', $args) ? $args ['class'] : ''), 1446 esc_attr( get_option('exodox_disable_listing') === 'yes'? 'checked=checked' : ''),1466 esc_attr('yes' === get_option('exodox_disable_listing') ? 'checked=checked' : ''), 1447 1467 array_key_exists('help_text', $args) ? sprintf('<p class="description">%s</p>', esc_html($args ['help_text'])) : '' 1448 1468 ); -
exodox/trunk/languages/exodox-sv_SE.po
r2385657 r2408286 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- 08-26T13:13:20+00:00\n"7 "POT-Creation-Date: 2020-10-28T12:53:54+00:00\n" 8 8 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 9 9 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 50 50 msgstr "Exodox - Lås innehåll" 51 51 52 #: exodox.php:616 52 #: exodox.php:252 53 msgid "Wrong format of Publisher Id" 54 msgstr "" 55 56 #: exodox.php:628 53 57 msgid "Read the whole article for only %1$s %2$s" 54 58 msgstr "Läs hela artikeln för endast %1$s %2$s" 55 59 56 #: exodox.php:6 22 exodox.php:129360 #: exodox.php:634 exodox.php:1313 57 61 msgid "" 58 62 "The article is locked with Exodox; but you, as administrator, can still read " … … 60 64 msgstr "Artikeln är låst med Exodox, men du som admin på bloggen kan läsa den." 61 65 62 #: exodox.php:6 2666 #: exodox.php:638 63 67 msgid "The article is unlocked, available for %1$s more" 64 68 msgstr "Artikeln upplåst, tillgängligt i %1$s till" 65 69 66 #: exodox.php:6 2970 #: exodox.php:641 67 71 msgid "" 68 72 "Locked content. You must allow cookies in order to be able to purchase this " … … 72 76 "till den här artikeln." 73 77 74 #: exodox.php:10 30 exodox.php:106578 #: exodox.php:1050 exodox.php:1085 75 79 msgid "%s day" 76 80 msgid_plural "%s days" … … 78 82 msgstr[1] "%s dagar" 79 83 80 #: exodox.php:10 38 exodox.php:105784 #: exodox.php:1058 exodox.php:1077 81 85 msgid "%s hour" 82 86 msgid_plural "%s hours" … … 84 88 msgstr[1] "%s timmar" 85 89 86 #: exodox.php:1 19290 #: exodox.php:1212 87 91 msgid "" 88 92 "%1$sReport abuse link%2$sI would like to report the Exodox link %3$s with " … … 92 96 "%3$s med beskrivningen: %4$s" 93 97 94 #: exodox.php:1 19898 #: exodox.php:1218 95 99 msgid "Report abuse" 96 100 msgstr "Rapportera missbruk" 97 101 98 #: exodox.php:12 38102 #: exodox.php:1258 99 103 msgid "Unlock" 100 104 msgstr "Lås upp" 101 105 102 #: exodox.php:12 56106 #: exodox.php:1276 103 107 msgid "%1$sUnlock Link%2$s%3$s" 104 108 msgstr "%1$sLås upp länk%2$s%3$s" 105 109 106 #: exodox.php:12 57110 #: exodox.php:1277 107 111 msgid "%1$sUnlock Link%2$sLogin to Exodox%3$s" 108 112 msgstr "%1$sLås upp länk%2$sLogga in till Exodox%3$s" 109 113 110 #: exodox.php:12 65114 #: exodox.php:1285 111 115 msgid "<em>%1$s %2$s</em> will be added to your monthly billing" 112 116 msgstr "<em>%1$s %2$s</em> kommer läggas till din månadsbetalning" 113 117 114 #: exodox.php:12 72118 #: exodox.php:1292 115 119 msgid "New to Exodox?%1$sCreate Account%2$s" 116 120 msgstr "Ny till Exodox?%1$sSkapa konto%2$s" 117 121 118 #: exodox.php:12 78122 #: exodox.php:1298 119 123 msgid "%1$sGo to my dashboard%2$s" 120 124 msgstr "%1$sGå till min översikt%2$s" 121 125 122 #: exodox.php:1 284126 #: exodox.php:1304 123 127 msgid "%1$sLogout%2$s" 124 128 msgstr "%1$sLogga ut%2$s" 125 129 126 #: exodox.php:1 297130 #: exodox.php:1317 127 131 msgid "The article is unlocked. Read the entire article for %s more" 128 132 msgstr "Artikeln är upplåst. Läs hela artikeln i %s till" 129 133 130 #: exodox.php:13 01134 #: exodox.php:1321 131 135 msgid "You must <em>allow cookies</em> to be able to unlock this article" 132 136 msgstr "" … … 134 138 "här artikeln." 135 139 136 #: exodox.php:13 05 exodox.php:1328 exodox.php:1349 exodox.php:1371140 #: exodox.php:1325 exodox.php:1348 exodox.php:1369 exodox.php:1391 137 141 msgid "%1$s %2$s" 138 142 msgstr "%1$s %2$s" 139 143 140 #: exodox.php:13 06 exodox.php:1329 exodox.php:1350 exodox.php:1372144 #: exodox.php:1326 exodox.php:1349 exodox.php:1370 exodox.php:1392 141 145 msgid "%s access" 142 146 msgstr "%s's åtkomst" 143 147 144 #: exodox.php:13 18148 #: exodox.php:1338 145 149 msgid "" 146 150 "%1$sYou need an Exodox account to be able to purchase access to this link. " … … 150 154 "här artikeln. %2$sVad är Exodox?%3$s%4$sLogga in för att låsa upp%5$s" 151 155 152 #: exodox.php:13 41156 #: exodox.php:1361 153 157 msgid "Unfortunately, your previous purchase has expired. %1$sBuy again%2$s" 154 158 msgstr "" 155 159 "Tyvärr har ditt tidigare köp gått ut för den här artikeln. %1$sKöp igen%2$s" 156 160 157 #: exodox.php:13 62161 #: exodox.php:1382 158 162 msgid "Logged in." 159 163 msgstr "Inloggad." 160 164 161 #: exodox.php:14 06165 #: exodox.php:1426 162 166 msgid "Update" 163 167 msgstr "Uppdatera" -
exodox/trunk/languages/exodox.pot
r2390087 r2408286 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Exodox 0.8. 0\n"5 "Project-Id-Version: Exodox 0.8.1\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- 09-29T07:02:51+00:00\n"12 "POT-Creation-Date: 2020-10-28T12:54:00+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" … … 50 50 msgstr "" 51 51 52 #: exodox.php:616 52 #: exodox.php:252 53 msgid "Wrong format of Publisher Id" 54 msgstr "" 55 56 #: exodox.php:628 53 57 msgid "Read the whole article for only %1$s %2$s" 54 58 msgstr "" 55 59 56 #: exodox.php:6 2257 #: exodox.php:1 29360 #: exodox.php:634 61 #: exodox.php:1313 58 62 msgid "The article is locked with Exodox; but you, as administrator, can still read it." 59 63 msgstr "" 60 64 61 #: exodox.php:6 2665 #: exodox.php:638 62 66 msgid "The article is unlocked, available for %1$s more" 63 67 msgstr "" 64 68 65 #: exodox.php:6 2969 #: exodox.php:641 66 70 msgid "Locked content. You must allow cookies in order to be able to purchase this article." 67 71 msgstr "" 68 72 69 #: exodox.php:10 3070 #: exodox.php:10 6573 #: exodox.php:1050 74 #: exodox.php:1085 71 75 msgid "%s day" 72 76 msgid_plural "%s days" … … 74 78 msgstr[1] "" 75 79 76 #: exodox.php:10 3877 #: exodox.php:10 5780 #: exodox.php:1058 81 #: exodox.php:1077 78 82 msgid "%s hour" 79 83 msgid_plural "%s hours" … … 81 85 msgstr[1] "" 82 86 83 #: exodox.php:1 19287 #: exodox.php:1212 84 88 msgid "%1$sReport abuse link%2$sI would like to report the Exodox link %3$s with the description: %4$s" 85 89 msgstr "" 86 90 87 #: exodox.php:1 19891 #: exodox.php:1218 88 92 msgid "Report abuse" 89 93 msgstr "" 90 94 91 #: exodox.php:12 3895 #: exodox.php:1258 92 96 msgid "Unlock" 93 97 msgstr "" 94 98 95 #: exodox.php:12 5699 #: exodox.php:1276 96 100 msgid "%1$sUnlock Link%2$s%3$s" 97 101 msgstr "" 98 102 99 #: exodox.php:12 57103 #: exodox.php:1277 100 104 msgid "%1$sUnlock Link%2$sLogin to Exodox%3$s" 101 105 msgstr "" 102 106 103 #: exodox.php:12 65107 #: exodox.php:1285 104 108 msgid "<em>%1$s %2$s</em> will be added to your monthly billing" 105 109 msgstr "" 106 110 107 #: exodox.php:12 72111 #: exodox.php:1292 108 112 msgid "New to Exodox?%1$sCreate Account%2$s" 109 113 msgstr "" 110 114 111 #: exodox.php:12 78115 #: exodox.php:1298 112 116 msgid "%1$sGo to my dashboard%2$s" 113 117 msgstr "" 114 118 115 #: exodox.php:1 284119 #: exodox.php:1304 116 120 msgid "%1$sLogout%2$s" 117 121 msgstr "" 118 122 119 #: exodox.php:1 297123 #: exodox.php:1317 120 124 msgid "The article is unlocked. Read the entire article for %s more" 121 125 msgstr "" 122 126 123 #: exodox.php:13 01127 #: exodox.php:1321 124 128 msgid "You must <em>allow cookies</em> to be able to unlock this article" 125 129 msgstr "" 126 130 127 #: exodox.php:13 05128 #: exodox.php:13 28129 #: exodox.php:13 49130 #: exodox.php:13 71131 #: exodox.php:1325 132 #: exodox.php:1348 133 #: exodox.php:1369 134 #: exodox.php:1391 131 135 msgid "%1$s %2$s" 132 136 msgstr "" 133 137 134 #: exodox.php:13 06135 #: exodox.php:13 29136 #: exodox.php:13 50137 #: exodox.php:13 72138 #: exodox.php:1326 139 #: exodox.php:1349 140 #: exodox.php:1370 141 #: exodox.php:1392 138 142 msgid "%s access" 139 143 msgstr "" 140 144 141 #: exodox.php:13 18145 #: exodox.php:1338 142 146 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" 143 147 msgstr "" 144 148 145 #: exodox.php:13 41149 #: exodox.php:1361 146 150 msgid "Unfortunately, your previous purchase has expired. %1$sBuy again%2$s" 147 151 msgstr "" 148 152 149 #: exodox.php:13 62153 #: exodox.php:1382 150 154 msgid "Logged in." 151 155 msgstr "" 152 156 153 #: exodox.php:14 06157 #: exodox.php:1426 154 158 msgid "Update" 155 159 msgstr "" -
exodox/trunk/readme.txt
r2390087 r2408286 6 6 Tested up to: 5.4.1 7 7 Requires PHP: 7.2 8 Stable tag: 0.8. 08 Stable tag: 0.8.1 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.