Changeset 2811296
- Timestamp:
- 11/03/2022 05:15:06 PM (3 years ago)
- Location:
- powerpack-for-learndash
- Files:
-
- 18 added
- 13 edited
- 1 copied
-
assets/icon.svg (modified) (1 prop)
-
tags/1.3.2 (copied) (copied from powerpack-for-learndash/trunk)
-
tags/1.3.2/.wordpress-org (added)
-
tags/1.3.2/.wordpress-org/banner-1544x500.png (added)
-
tags/1.3.2/.wordpress-org/banner-772x250.png (added)
-
tags/1.3.2/.wordpress-org/icon-128x128.png (added)
-
tags/1.3.2/.wordpress-org/icon-256x256.png (added)
-
tags/1.3.2/.wordpress-org/icon.svg (added)
-
tags/1.3.2/.wordpress-org/screenshot-1.png (added)
-
tags/1.3.2/.wordpress-org/screenshot-2.png (added)
-
tags/1.3.2/.wordpress-org/screenshot-3.png (added)
-
tags/1.3.2/changelog.txt (modified) (1 diff)
-
tags/1.3.2/includes/ld_classes/learndash-powerpack-enable-comments-on-focus-mode.php (modified) (1 diff)
-
tags/1.3.2/includes/ld_classes/learndash-powerpack-hide-comments-from-assignments-essay-on-dashboard.php (modified) (2 diffs)
-
tags/1.3.2/languages/learndash-powerpack.pot (modified) (4 diffs)
-
tags/1.3.2/learndash-powerpack.php (modified) (2 diffs)
-
tags/1.3.2/readme.txt (modified) (4 diffs)
-
trunk/.wordpress-org (added)
-
trunk/.wordpress-org/banner-1544x500.png (added)
-
trunk/.wordpress-org/banner-772x250.png (added)
-
trunk/.wordpress-org/icon-128x128.png (added)
-
trunk/.wordpress-org/icon-256x256.png (added)
-
trunk/.wordpress-org/icon.svg (added)
-
trunk/.wordpress-org/screenshot-1.png (added)
-
trunk/.wordpress-org/screenshot-2.png (added)
-
trunk/.wordpress-org/screenshot-3.png (added)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/includes/ld_classes/learndash-powerpack-enable-comments-on-focus-mode.php (modified) (1 diff)
-
trunk/includes/ld_classes/learndash-powerpack-hide-comments-from-assignments-essay-on-dashboard.php (modified) (2 diffs)
-
trunk/languages/learndash-powerpack.pot (modified) (4 diffs)
-
trunk/learndash-powerpack.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
powerpack-for-learndash/assets/icon.svg
-
Property
svn:mime-type
set to
image/svg+xml
-
Property
svn:mime-type
set to
-
powerpack-for-learndash/tags/1.3.2/changelog.txt
r2665925 r2811296 48 48 * Removed deprecated "Remove Video Progression Cookie on Lesson Completion" 49 49 * Removed deprecated "Remove Video Progression Cookie on Topic Completion" 50 51 = 1.3.1 = 52 * Fixed fatal error 53 54 = 1.3.2 = 55 * Fixed PHP warnings -
powerpack-for-learndash/tags/1.3.2/includes/ld_classes/learndash-powerpack-enable-comments-on-focus-mode.php
r2665925 r2811296 40 40 * @return String The status of the comments. 41 41 */ 42 public function learndash_focus_mode_comments_func( $comment_status = 'closed', $post ) {42 public function learndash_focus_mode_comments_func( $comment_status, $post ) { 43 43 // Example Only allow comments on Quiz post type. 44 44 if ( 'sfwd-quiz' === $post->post_type ) { -
powerpack-for-learndash/tags/1.3.2/includes/ld_classes/learndash-powerpack-hide-comments-from-assignments-essay-on-dashboard.php
r2665925 r2811296 38 38 */ 39 39 public function pre_get_comments_func( $comment_query ) { 40 if ( is_admin() ) { 41 $current_screen = get_current_screen(); 42 if ( 'dashboard' === $current_screen->id ) { 43 if ( ! current_user_can( 'moderate_comments' ) ) { 44 $post_query_args = [ 45 'post_type' => [ 'sfwd-assignment', 'sfwd-essays' ], 46 'post_status' => [ 'draft', 'publish', 'graded', 'not_graded' ], 47 'fields' => 'ids', 48 'nopaging' => true, 49 ]; 40 global $pagenow; 50 41 51 $post_query = new WP_Query( $post_query_args ); 52 if ( ( $post_query instanceof WP_Query ) && ( ! empty( $post_query->posts ) ) ) { 53 $post__not_in = []; 42 // $current_screen = get_current_screen(); 43 if ( is_admin() && 'index.php' === $pagenow ) { 44 if ( ! current_user_can( 'moderate_comments' ) ) { 45 $post_query_args = [ 46 'post_type' => [ 'sfwd-assignment', 'sfwd-essays' ], 47 'post_status' => [ 'draft', 'publish', 'graded', 'not_graded' ], 48 'fields' => 'ids', 49 'nopaging' => true, 50 ]; 54 51 55 if ( '' === $comment_query->query_vars['post__not_in'] ) { 56 $post__not_in = $post_query->posts; 57 } else { 58 $post__not_in = array_merge( (array) $comment_query->query_vars['post__not_in'], $post_query->posts ); 59 } 52 $post_query = new WP_Query( $post_query_args ); 53 if ( ( $post_query instanceof WP_Query ) && ( ! empty( $post_query->posts ) ) ) { 54 $post__not_in = []; 60 55 61 if ( ! empty( $post__not_in ) ) { 62 $comment_query->query_vars['post__not_in'] = $post__not_in; 63 } 56 if ( '' === $comment_query->query_vars['post__not_in'] ) { 57 $post__not_in = $post_query->posts; 58 } else { 59 $post__not_in = array_merge( (array) $comment_query->query_vars['post__not_in'], $post_query->posts ); 60 } 61 62 if ( ! empty( $post__not_in ) ) { 63 $comment_query->query_vars['post__not_in'] = $post__not_in; 64 64 } 65 65 } … … 75 75 public function learndash_powerpack_class_details() { 76 76 $ld_type = esc_html__( 'comment', 'learndash-powerpack' ); 77 $class_title = esc_html__( 'Comment soptions for Assignments and Essay', 'learndash-powerpack' );78 $class_description = esc_html__( 'Enabl e this option will Hide comments from Assignments and Essay from showing on Dashboard Activity Widget.', 'learndash-powerpack' );77 $class_title = esc_html__( 'Comment options for Assignments and Essay', 'learndash-powerpack' ); 78 $class_description = esc_html__( 'Enabling this option hides comments on Assignments and Essays from the Dashboard Activity Widget. Users that can moderate comments will still see them.', 'learndash-powerpack' ); 79 79 80 80 return [ -
powerpack-for-learndash/tags/1.3.2/languages/learndash-powerpack.pot
r2665925 r2811296 1 # Copyright (C) 202 1HonorsWP2 # This file is distributed under the same license as the PowerPack for LearnDash plugin.1 # Copyright (C) 2022 HonorsWP 2 # This file is distributed under the GNU General Public License v3.0. 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: PowerPack for LearnDash 1.3. 0\n"6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ LearnDash-PowerPack\n"5 "Project-Id-Version: PowerPack for LearnDash 1.3.2\n" 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ea-powerpack\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 8 8 "Language-Team: LANGUAGE <LL@li.org>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 202 1-10-21T23:01:18+00:00\n"12 "POT-Creation-Date: 2022-11-03T17:14:46+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 "X-Generator: WP-CLI 2. 4.0\n"14 "X-Generator: WP-CLI 2.6.0\n" 15 15 "X-Domain: learndash-powerpack\n" 16 16 … … 53 53 msgstr "" 54 54 55 #: includes/ld_classes/learndash-powerpack-add-custom-content-to-the-single-course-template-output.php:73 56 #: includes/ld_classes/learndash-powerpack-allow-access-to-previously-completed-course.php:88 57 #: includes/ld_classes/learndash-powerpack-auto-complete-course-lessons-and-topics.php:101 58 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-all-courses.php:58 59 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-open-courses.php:61 60 #: includes/ld_classes/learndash-powerpack-course-points-format-round.php:88 61 #: includes/ld_classes/learndash-powerpack-disable-course-progression.php:57 62 #: includes/ld_classes/learndash-powerpack-display-a-custom-message-shortcode.php:89 63 #: includes/ld_classes/learndash-powerpack-display-course-content-below-prerequisite-message.php:55 64 #: includes/ld_classes/learndash-powerpack-enable-course-step-in-wp-menu.php:58 65 #: includes/ld_classes/learndash-powerpack-hide-coures-points-from-the-user-profile.php:57 66 #: includes/ld_classes/learndash-powerpack-hide-the-open-option-from-course-access-settings.php:53 67 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link-all-user.php:56 68 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link.php:62 69 #: includes/ld_classes/learndash-powerpack-take-this-course-button-label.php:124 70 msgid "course" 71 msgstr "" 72 55 73 #: includes/ld_classes/learndash-powerpack-add-custom-content-to-the-single-course-template-output.php:74 56 #: includes/ld_classes/learndash-powerpack-allow-access-to-previously-completed-course.php:93 57 #: includes/ld_classes/learndash-powerpack-auto-complete-course-lessons-and-topics.php:106 58 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-all-courses.php:62 59 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-open-courses.php:63 60 #: includes/ld_classes/learndash-powerpack-course-points-format-round.php:84 61 #: includes/ld_classes/learndash-powerpack-disable-course-progression.php:61 62 #: includes/ld_classes/learndash-powerpack-display-a-custom-message-shortcode.php:85 63 #: includes/ld_classes/learndash-powerpack-display-course-content-below-prerequisite-message.php:57 64 #: includes/ld_classes/learndash-powerpack-enable-course-step-in-wp-menu.php:60 65 #: includes/ld_classes/learndash-powerpack-hide-coures-points-from-the-user-profile.php:62 66 #: includes/ld_classes/learndash-powerpack-hide-the-open-option-from-course-access-settings.php:57 67 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link-all-user.php:58 68 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link.php:66 69 #: includes/ld_classes/learndash-powerpack-take-this-course-button-label.php:125 70 msgid "course" 74 msgid "Custom content to the single Course template output" 71 75 msgstr "" 72 76 73 77 #: includes/ld_classes/learndash-powerpack-add-custom-content-to-the-single-course-template-output.php:75 74 msgid "Custom content to the single Course template output"75 msgstr ""76 77 #: includes/ld_classes/learndash-powerpack-add-custom-content-to-the-single-course-template-output.php:7678 78 msgid "Enable this option to add custom content to the single Course template output after the Course Status complete." 79 79 msgstr "" 80 80 81 #: includes/ld_classes/learndash-powerpack-add-custom-content-to-the-single-course-template-output.php:11 181 #: includes/ld_classes/learndash-powerpack-add-custom-content-to-the-single-course-template-output.php:110 82 82 msgid "Enter custom content text" 83 83 msgstr "" 84 84 85 #: includes/ld_classes/learndash-powerpack-allow-access-to-previously-completed-course.php: 9485 #: includes/ld_classes/learndash-powerpack-allow-access-to-previously-completed-course.php:89 86 86 msgid "Allow access to previously completed course" 87 87 msgstr "" 88 88 89 #: includes/ld_classes/learndash-powerpack-allow-access-to-previously-completed-course.php:9 589 #: includes/ld_classes/learndash-powerpack-allow-access-to-previously-completed-course.php:90 90 90 msgid "Enable this option to allow access to previously completed course steps after course access is removed." 91 91 msgstr "" 92 92 93 #: includes/ld_classes/learndash-powerpack-allow-admin-unlimited-quiz-attempts.php:58 94 #: includes/ld_classes/learndash-powerpack-enable-comments-on-focus-mode.php:57 95 #: includes/ld_classes/learndash-powerpack-force-html-formatting-on-quiz-emails.php:85 96 #: includes/ld_classes/learndash-powerpack-force-page-reload-when-restart-quiz-button.php:57 97 #: includes/ld_classes/learndash-powerpack-quiz-continue-button-on-student-fail.php:60 98 msgid "quiz" 99 msgstr "" 100 101 #: includes/ld_classes/learndash-powerpack-allow-admin-unlimited-quiz-attempts.php:59 102 msgid "Unlimited Quiz Attempts" 103 msgstr "" 104 93 105 #: includes/ld_classes/learndash-powerpack-allow-admin-unlimited-quiz-attempts.php:60 94 #: includes/ld_classes/learndash-powerpack-enable-comments-on-focus-mode.php:5995 #: includes/ld_classes/learndash-powerpack-force-html-formatting-on-quiz-emails.php:9796 #: includes/ld_classes/learndash-powerpack-force-page-reload-when-restart-quiz-button.php:6297 #: includes/ld_classes/learndash-powerpack-quiz-continue-button-on-student-fail.php:6498 msgid "quiz"99 msgstr ""100 101 #: includes/ld_classes/learndash-powerpack-allow-admin-unlimited-quiz-attempts.php:61102 msgid "Unlimited Quiz Attempts"103 msgstr ""104 105 #: includes/ld_classes/learndash-powerpack-allow-admin-unlimited-quiz-attempts.php:62106 106 msgid "Allow \"admin\" for unlimited quiz attempts" 107 107 msgstr "" 108 108 109 #: includes/ld_classes/learndash-powerpack-auto-complete-course-lessons-and-topics.php:10 7109 #: includes/ld_classes/learndash-powerpack-auto-complete-course-lessons-and-topics.php:102 110 110 msgid "Auto Complete Course Lessons and Topics" 111 111 msgstr "" 112 112 113 #: includes/ld_classes/learndash-powerpack-auto-complete-course-lessons-and-topics.php:10 8113 #: includes/ld_classes/learndash-powerpack-auto-complete-course-lessons-and-topics.php:103 114 114 msgid "Enable this option to Auto Complete Course Lessons and Topics." 115 115 msgstr "" 116 116 117 #: includes/ld_classes/learndash-powerpack-bypass-background-enrollment-in-woocommerce.php: 60117 #: includes/ld_classes/learndash-powerpack-bypass-background-enrollment-in-woocommerce.php:55 118 118 msgid "Bypass Background Enrollment in WooCommerce" 119 119 msgstr "" 120 120 121 #: includes/ld_classes/learndash-powerpack-bypass-background-enrollment-in-woocommerce.php: 61121 #: includes/ld_classes/learndash-powerpack-bypass-background-enrollment-in-woocommerce.php:56 122 122 msgid "Enable this option to Bypass Background Enrollment in WooCommerce." 123 123 msgstr "" 124 124 125 #: includes/ld_classes/learndash-powerpack-certificate-shortcode-link-in-new-window.php: 60125 #: includes/ld_classes/learndash-powerpack-certificate-shortcode-link-in-new-window.php:55 126 126 #: includes/ld_classes/learndash-powerpack-restrict-access-to-certificates.php:55 127 127 msgid "certificate" 128 128 msgstr "" 129 129 130 #: includes/ld_classes/learndash-powerpack-certificate-shortcode-link-in-new-window.php: 61130 #: includes/ld_classes/learndash-powerpack-certificate-shortcode-link-in-new-window.php:56 131 131 msgid "Certificate shortcode link to open in new window" 132 132 msgstr "" 133 133 134 #: includes/ld_classes/learndash-powerpack-certificate-shortcode-link-in-new-window.php: 62134 #: includes/ld_classes/learndash-powerpack-certificate-shortcode-link-in-new-window.php:57 135 135 msgid "Enable this option to open certificate shortcode link in new window" 136 136 msgstr "" 137 137 138 #: includes/ld_classes/learndash-powerpack-change-focus-mode-comment-reply-title.php:84 139 #: includes/ld_classes/learndash-powerpack-filter-to-disable-comments-on-learndash-assignment.php:67 140 #: includes/ld_classes/learndash-powerpack-hide-comments-from-assignments-essay-on-dashboard.php:76 141 msgid "comment" 142 msgstr "" 143 144 #: includes/ld_classes/learndash-powerpack-change-focus-mode-comment-reply-title.php:85 145 msgid "Focus mode reply title" 146 msgstr "" 147 138 148 #: includes/ld_classes/learndash-powerpack-change-focus-mode-comment-reply-title.php:86 139 #: includes/ld_classes/learndash-powerpack-filter-to-disable-comments-on-learndash-assignment.php:73140 #: includes/ld_classes/learndash-powerpack-hide-comments-from-assignments-essay-on-dashboard.php:82141 msgid "comment"142 msgstr ""143 144 #: includes/ld_classes/learndash-powerpack-change-focus-mode-comment-reply-title.php:87145 msgid "Focus mode reply title"146 msgstr ""147 148 #: includes/ld_classes/learndash-powerpack-change-focus-mode-comment-reply-title.php:88149 149 msgid "Enable this option to change Focus Mode comment reply title." 150 150 msgstr "" 151 151 152 #: includes/ld_classes/learndash-powerpack-change-focus-mode-comment-reply-title.php:10 7152 #: includes/ld_classes/learndash-powerpack-change-focus-mode-comment-reply-title.php:105 153 153 msgid "Title" 154 154 msgstr "" 155 155 156 #: includes/ld_classes/learndash-powerpack-change-stripe-purchase-button-text.php:82 157 msgid "stripe" 158 msgstr "" 159 156 160 #: includes/ld_classes/learndash-powerpack-change-stripe-purchase-button-text.php:83 157 msgid " stripe"161 msgid "Stripe Purchase Button Text" 158 162 msgstr "" 159 163 160 164 #: includes/ld_classes/learndash-powerpack-change-stripe-purchase-button-text.php:84 161 msgid "Stripe Purchase Button Text"162 msgstr ""163 164 #: includes/ld_classes/learndash-powerpack-change-stripe-purchase-button-text.php:85165 165 msgid "Enable this option to change Stripe Purchase Button Text" 166 166 msgstr "" 167 167 168 #: includes/ld_classes/learndash-powerpack-change-stripe-purchase-button-text.php:10 4168 #: includes/ld_classes/learndash-powerpack-change-stripe-purchase-button-text.php:103 169 169 msgid "Button Text" 170 170 msgstr "" 171 171 172 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-all-courses.php: 63172 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-all-courses.php:59 173 173 msgid "Change the Price Type for all Courses" 174 174 msgstr "" 175 175 176 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-all-courses.php:6 4176 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-all-courses.php:60 177 177 msgid "Enable this option to set the course price type to closed for all courses." 178 178 msgstr "" 179 179 180 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-open-courses.php:6 4180 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-open-courses.php:62 181 181 msgid "Change the Price Type for only open Courses" 182 182 msgstr "" 183 183 184 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-open-courses.php:6 5184 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-open-courses.php:63 185 185 msgid "Enable this option to set the course price type to closed only if it is currently open." 186 186 msgstr "" 187 187 188 #: includes/ld_classes/learndash-powerpack-change-welcome-message-in-focus-mode-to-use-first-name.php:5 6188 #: includes/ld_classes/learndash-powerpack-change-welcome-message-in-focus-mode-to-use-first-name.php:51 189 189 msgid "focus_mode" 190 190 msgstr "" 191 191 192 #: includes/ld_classes/learndash-powerpack-change-welcome-message-in-focus-mode-to-use-first-name.php:5 7192 #: includes/ld_classes/learndash-powerpack-change-welcome-message-in-focus-mode-to-use-first-name.php:52 193 193 msgid "Welcome message in Focus Mode" 194 194 msgstr "" 195 195 196 #: includes/ld_classes/learndash-powerpack-change-welcome-message-in-focus-mode-to-use-first-name.php:5 8196 #: includes/ld_classes/learndash-powerpack-change-welcome-message-in-focus-mode-to-use-first-name.php:53 197 197 msgid "Enable this option to change welcome message in Focus Mode to use first name instead of the username" 198 198 msgstr "" 199 199 200 #: includes/ld_classes/learndash-powerpack-changing-complete-button-border-radius-property.php:81 201 #: includes/ld_classes/learndash-powerpack-course-grid-custom-button-text.php:93 202 msgid "button" 203 msgstr "" 204 200 205 #: includes/ld_classes/learndash-powerpack-changing-complete-button-border-radius-property.php:82 201 #: includes/ld_classes/learndash-powerpack-course-grid-custom-button-text.php:92 202 msgid "button" 206 msgid "Changing Complete button border radius property" 203 207 msgstr "" 204 208 205 209 #: includes/ld_classes/learndash-powerpack-changing-complete-button-border-radius-property.php:83 206 msgid "Changing Complete button border radius property"207 msgstr ""208 209 #: includes/ld_classes/learndash-powerpack-changing-complete-button-border-radius-property.php:84210 210 msgid "Enable this option to change border radius of complete button." 211 211 msgstr "" 212 212 213 #: includes/ld_classes/learndash-powerpack-changing-complete-button-border-radius-property.php:10 3213 #: includes/ld_classes/learndash-powerpack-changing-complete-button-border-radius-property.php:102 214 214 msgid "Enter border radius for complete button" 215 215 msgstr "" 216 216 217 #: includes/ld_classes/learndash-powerpack-course-grid-custom-button-text.php:9 3217 #: includes/ld_classes/learndash-powerpack-course-grid-custom-button-text.php:94 218 218 msgid "Course grid custom button text" 219 219 msgstr "" 220 220 221 #: includes/ld_classes/learndash-powerpack-course-grid-custom-button-text.php:9 4221 #: includes/ld_classes/learndash-powerpack-course-grid-custom-button-text.php:95 222 222 msgid "Enable this option to change course grid custom button text." 223 223 msgstr "" 224 224 225 #: includes/ld_classes/learndash-powerpack-course-grid-custom-button-text.php:11 4225 #: includes/ld_classes/learndash-powerpack-course-grid-custom-button-text.php:115 226 226 msgid "Enter Take course grid custom button text" 227 227 msgstr "" 228 228 229 #: includes/ld_classes/learndash-powerpack-course-points-format-round.php:8 5229 #: includes/ld_classes/learndash-powerpack-course-points-format-round.php:89 230 230 msgid "Course Points Format" 231 231 msgstr "" 232 232 233 #: includes/ld_classes/learndash-powerpack-course-points-format-round.php: 86233 #: includes/ld_classes/learndash-powerpack-course-points-format-round.php:90 234 234 msgid "Enable this option to select decimal place formatting outside of the [courseinfo] shortcode." 235 235 msgstr "" 236 236 237 #: includes/ld_classes/learndash-powerpack-course-points-format-round.php:10 5237 #: includes/ld_classes/learndash-powerpack-course-points-format-round.php:109 238 238 msgid "Enter decimal points used, 0 or higher" 239 239 msgstr "" 240 240 241 #: includes/ld_classes/learndash-powerpack-disable-course-progression.php: 62241 #: includes/ld_classes/learndash-powerpack-disable-course-progression.php:58 242 242 msgid "Course Progression" 243 243 msgstr "" 244 244 245 #: includes/ld_classes/learndash-powerpack-disable-course-progression.php: 63245 #: includes/ld_classes/learndash-powerpack-disable-course-progression.php:59 246 246 msgid "Enable this option to disable Course Progression." 247 247 msgstr "" 248 248 249 #: includes/ld_classes/learndash-powerpack-disable-gutenberg-editor.php:58 250 msgid "editor" 251 msgstr "" 252 253 #: includes/ld_classes/learndash-powerpack-disable-gutenberg-editor.php:59 254 msgid "Disable Gutenberg Editor" 255 msgstr "" 256 249 257 #: includes/ld_classes/learndash-powerpack-disable-gutenberg-editor.php:60 250 msgid "editor"251 msgstr ""252 253 #: includes/ld_classes/learndash-powerpack-disable-gutenberg-editor.php:61254 msgid "Disable Gutenberg Editor"255 msgstr ""256 257 #: includes/ld_classes/learndash-powerpack-disable-gutenberg-editor.php:62258 258 msgid "Enable this option to Disable Gutenberg Editor on any of the LearnDash custom post types." 259 259 msgstr "" 260 260 261 #: includes/ld_classes/learndash-powerpack-disable-video-auto-start-on-mobile.php:57 262 msgid "video" 263 msgstr "" 264 265 #: includes/ld_classes/learndash-powerpack-disable-video-auto-start-on-mobile.php:58 266 msgid "Video Progression" 267 msgstr "" 268 261 269 #: includes/ld_classes/learndash-powerpack-disable-video-auto-start-on-mobile.php:59 262 msgid "video"263 msgstr ""264 265 #: includes/ld_classes/learndash-powerpack-disable-video-auto-start-on-mobile.php:60266 msgid "Video Progression"267 msgstr ""268 269 #: includes/ld_classes/learndash-powerpack-disable-video-auto-start-on-mobile.php:61270 270 msgid "Enable this option to disable video auto-start on mobile." 271 271 msgstr "" 272 272 273 #: includes/ld_classes/learndash-powerpack-display-a-custom-message-shortcode.php: 86273 #: includes/ld_classes/learndash-powerpack-display-a-custom-message-shortcode.php:90 274 274 msgid "Custom message for a shortcode [ld_course_list]" 275 275 msgstr "" 276 276 277 #: includes/ld_classes/learndash-powerpack-display-a-custom-message-shortcode.php: 87277 #: includes/ld_classes/learndash-powerpack-display-a-custom-message-shortcode.php:91 278 278 msgid "Display a custom message when ld_course_list shortcode returns no results." 279 279 msgstr "" 280 280 281 #: includes/ld_classes/learndash-powerpack-display-a-custom-message-shortcode.php:1 06281 #: includes/ld_classes/learndash-powerpack-display-a-custom-message-shortcode.php:110 282 282 msgid "Enter Custom message for shortcode ld_course_list" 283 283 msgstr "" 284 284 285 #: includes/ld_classes/learndash-powerpack-display-course-content-below-prerequisite-message.php:5 8285 #: includes/ld_classes/learndash-powerpack-display-course-content-below-prerequisite-message.php:56 286 286 msgid "Display course content below prerequisite message" 287 287 msgstr "" 288 288 289 #: includes/ld_classes/learndash-powerpack-display-course-content-below-prerequisite-message.php:5 9289 #: includes/ld_classes/learndash-powerpack-display-course-content-below-prerequisite-message.php:57 290 290 msgid "Enable this option to Display course content below prerequisite message." 291 291 msgstr "" 292 292 293 #: includes/ld_classes/learndash-powerpack-enable-comments-on-focus-mode.php: 60293 #: includes/ld_classes/learndash-powerpack-enable-comments-on-focus-mode.php:58 294 294 msgid "Comments on Quiz post type" 295 295 msgstr "" 296 296 297 #: includes/ld_classes/learndash-powerpack-enable-comments-on-focus-mode.php: 61297 #: includes/ld_classes/learndash-powerpack-enable-comments-on-focus-mode.php:59 298 298 msgid "Only allow comments on Quiz post type." 299 299 msgstr "" 300 300 301 #: includes/ld_classes/learndash-powerpack-enable-course-step-in-wp-menu.php: 61301 #: includes/ld_classes/learndash-powerpack-enable-course-step-in-wp-menu.php:59 302 302 msgid "Course step in WP menu" 303 303 msgstr "" 304 304 305 #: includes/ld_classes/learndash-powerpack-enable-course-step-in-wp-menu.php:6 2305 #: includes/ld_classes/learndash-powerpack-enable-course-step-in-wp-menu.php:60 306 306 msgid "LearnDash enable course step in WP menu." 307 307 msgstr "" 308 308 309 #: includes/ld_classes/learndash-powerpack-enable-custom-taxonomy-terms-archive.php: 60309 #: includes/ld_classes/learndash-powerpack-enable-custom-taxonomy-terms-archive.php:58 310 310 msgid "taxonomy" 311 311 msgstr "" 312 312 313 #: includes/ld_classes/learndash-powerpack-enable-custom-taxonomy-terms-archive.php: 61313 #: includes/ld_classes/learndash-powerpack-enable-custom-taxonomy-terms-archive.php:59 314 314 msgid "LearnDash Enable Custom Taxonomy Terms Archive" 315 315 msgstr "" 316 316 317 #: includes/ld_classes/learndash-powerpack-expand-all-lesson-section-on-focus-mode.php:6 7318 #: includes/ld_classes/learndash-powerpack-redirect-the-student-to-a-lesson-quiz.php:8 5319 #: includes/ld_classes/learndash-powerpack-sample-lesson-restriction.php: 63320 #: includes/ld_classes/learndash-powerpack-sample-lesson.php:8 5317 #: includes/ld_classes/learndash-powerpack-expand-all-lesson-section-on-focus-mode.php:62 318 #: includes/ld_classes/learndash-powerpack-redirect-the-student-to-a-lesson-quiz.php:81 319 #: includes/ld_classes/learndash-powerpack-sample-lesson-restriction.php:59 320 #: includes/ld_classes/learndash-powerpack-sample-lesson.php:84 321 321 msgid "lesson" 322 322 msgstr "" 323 323 324 #: includes/ld_classes/learndash-powerpack-expand-all-lesson-section-on-focus-mode.php:6 8324 #: includes/ld_classes/learndash-powerpack-expand-all-lesson-section-on-focus-mode.php:63 325 325 msgid "Lesson Section" 326 326 msgstr "" 327 327 328 #: includes/ld_classes/learndash-powerpack-expand-all-lesson-section-on-focus-mode.php:6 9328 #: includes/ld_classes/learndash-powerpack-expand-all-lesson-section-on-focus-mode.php:64 329 329 msgid "Expand all lesson section on Focus mode" 330 330 msgstr "" 331 331 332 #: includes/ld_classes/learndash-powerpack-filter-to-disable-comments-on-learndash-assignment.php: 74332 #: includes/ld_classes/learndash-powerpack-filter-to-disable-comments-on-learndash-assignment.php:68 333 333 msgid "Disable comments on LearnDash Assignment" 334 334 msgstr "" 335 335 336 #: includes/ld_classes/learndash-powerpack-filter-to-disable-comments-on-learndash-assignment.php: 75336 #: includes/ld_classes/learndash-powerpack-filter-to-disable-comments-on-learndash-assignment.php:69 337 337 msgid "Enable this option disable comments on LearnDash Assignment." 338 338 msgstr "" 339 339 340 #: includes/ld_classes/learndash-powerpack-force-html-formatting-on-quiz-emails.php: 98340 #: includes/ld_classes/learndash-powerpack-force-html-formatting-on-quiz-emails.php:86 341 341 msgid "HTML formatting" 342 342 msgstr "" 343 343 344 #: includes/ld_classes/learndash-powerpack-force-html-formatting-on-quiz-emails.php: 99344 #: includes/ld_classes/learndash-powerpack-force-html-formatting-on-quiz-emails.php:87 345 345 msgid "Force HTML formatting on Quiz emails." 346 346 msgstr "" 347 347 348 #: includes/ld_classes/learndash-powerpack-force-page-reload-when-restart-quiz-button.php: 63348 #: includes/ld_classes/learndash-powerpack-force-page-reload-when-restart-quiz-button.php:58 349 349 msgid "Page reload" 350 350 msgstr "" 351 351 352 #: includes/ld_classes/learndash-powerpack-force-page-reload-when-restart-quiz-button.php: 64352 #: includes/ld_classes/learndash-powerpack-force-page-reload-when-restart-quiz-button.php:59 353 353 msgid "Enable this option to force page reload when Restart Quiz button is clicked." 354 354 msgstr "" 355 355 356 #: includes/ld_classes/learndash-powerpack-hide-comments-from-assignments-essay-on-dashboard.php: 83357 msgid "Comment soptions for Assignments and Essay"358 msgstr "" 359 360 #: includes/ld_classes/learndash-powerpack-hide-comments-from-assignments-essay-on-dashboard.php: 84361 msgid "Enabl e this option will Hide comments from Assignments and Essay from showing on Dashboard Activity Widget."362 msgstr "" 363 364 #: includes/ld_classes/learndash-powerpack-hide-coures-points-from-the-user-profile.php: 63356 #: includes/ld_classes/learndash-powerpack-hide-comments-from-assignments-essay-on-dashboard.php:77 357 msgid "Comment options for Assignments and Essay" 358 msgstr "" 359 360 #: includes/ld_classes/learndash-powerpack-hide-comments-from-assignments-essay-on-dashboard.php:78 361 msgid "Enabling this option hides comments on Assignments and Essays from the Dashboard Activity Widget. Users that can moderate comments will still see them." 362 msgstr "" 363 364 #: includes/ld_classes/learndash-powerpack-hide-coures-points-from-the-user-profile.php:58 365 365 msgid "Hide Course Points" 366 366 msgstr "" 367 367 368 #: includes/ld_classes/learndash-powerpack-hide-coures-points-from-the-user-profile.php: 64368 #: includes/ld_classes/learndash-powerpack-hide-coures-points-from-the-user-profile.php:59 369 369 msgid "Enable this option to hide the course points from showing in the [ld_profile] shortcode." 370 370 msgstr "" 371 371 372 #: includes/ld_classes/learndash-powerpack-hide-the-open-option-from-course-access-settings.php:5 8372 #: includes/ld_classes/learndash-powerpack-hide-the-open-option-from-course-access-settings.php:54 373 373 msgid "Course Access Settings" 374 374 msgstr "" 375 375 376 #: includes/ld_classes/learndash-powerpack-hide-the-open-option-from-course-access-settings.php:5 9376 #: includes/ld_classes/learndash-powerpack-hide-the-open-option-from-course-access-settings.php:55 377 377 msgid "Enable this option to hide the Open option from Course Access Settings" 378 378 msgstr "" 379 379 380 #: includes/ld_classes/learndash-powerpack-outgoing-email-address-of-propanel-emails.php:82 381 msgid "email" 382 msgstr "" 383 384 #: includes/ld_classes/learndash-powerpack-outgoing-email-address-of-propanel-emails.php:83 385 msgid "Outgoing email address of ProPanel emails" 386 msgstr "" 387 380 388 #: includes/ld_classes/learndash-powerpack-outgoing-email-address-of-propanel-emails.php:84 381 msgid "email"382 msgstr ""383 384 #: includes/ld_classes/learndash-powerpack-outgoing-email-address-of-propanel-emails.php:85385 msgid "Outgoing email address of ProPanel emails"386 msgstr ""387 388 #: includes/ld_classes/learndash-powerpack-outgoing-email-address-of-propanel-emails.php:86389 389 msgid "Change the outgoing email address of ProPanel emails" 390 390 msgstr "" 391 391 392 #: includes/ld_classes/learndash-powerpack-outgoing-email-address-of-propanel-emails.php:10 5392 #: includes/ld_classes/learndash-powerpack-outgoing-email-address-of-propanel-emails.php:103 393 393 msgid "Enter Outgoing email" 394 394 msgstr "" 395 395 396 #: includes/ld_classes/learndash-powerpack-post-type-to-stop-use-of-the-content-filter.php:7 7396 #: includes/ld_classes/learndash-powerpack-post-type-to-stop-use-of-the-content-filter.php:73 397 397 msgid "wp_filter" 398 398 msgstr "" 399 399 400 #: includes/ld_classes/learndash-powerpack-post-type-to-stop-use-of-the-content-filter.php:7 8400 #: includes/ld_classes/learndash-powerpack-post-type-to-stop-use-of-the-content-filter.php:74 401 401 msgid "Stop use of the_content filter to display content" 402 402 msgstr "" 403 403 404 #: includes/ld_classes/learndash-powerpack-post-type-to-stop-use-of-the-content-filter.php:7 9404 #: includes/ld_classes/learndash-powerpack-post-type-to-stop-use-of-the-content-filter.php:75 405 405 msgid "Enable this option will Stop use of the_content filter to display content for LearnDash Post Type." 406 406 msgstr "" 407 407 408 #: includes/ld_classes/learndash-powerpack-quiz-continue-button-on-student-fail.php:6 5408 #: includes/ld_classes/learndash-powerpack-quiz-continue-button-on-student-fail.php:61 409 409 msgid "Quiz continue button option" 410 410 msgstr "" 411 411 412 #: includes/ld_classes/learndash-powerpack-quiz-continue-button-on-student-fail.php:6 6412 #: includes/ld_classes/learndash-powerpack-quiz-continue-button-on-student-fail.php:62 413 413 msgid "Enable this option will show Quiz continue button for all quiz if the student fails." 414 414 msgstr "" 415 415 416 #: includes/ld_classes/learndash-powerpack-redirect-the-student-to-a-lesson-quiz.php:8 6416 #: includes/ld_classes/learndash-powerpack-redirect-the-student-to-a-lesson-quiz.php:82 417 417 msgid "Lesson Quiz" 418 418 msgstr "" 419 419 420 #: includes/ld_classes/learndash-powerpack-redirect-the-student-to-a-lesson-quiz.php:8 7420 #: includes/ld_classes/learndash-powerpack-redirect-the-student-to-a-lesson-quiz.php:83 421 421 msgid "Enable this option to redirect the student to a Lesson Quiz when they complete the last Lesson Topic." 422 422 msgstr "" 423 423 424 #: includes/ld_classes/learndash-powerpack-remove-all-elements-from-wp-profile.php:6 5424 #: includes/ld_classes/learndash-powerpack-remove-all-elements-from-wp-profile.php:61 425 425 msgid "WordPress" 426 426 msgstr "" 427 427 428 #: includes/ld_classes/learndash-powerpack-remove-all-elements-from-wp-profile.php:6 6428 #: includes/ld_classes/learndash-powerpack-remove-all-elements-from-wp-profile.php:62 429 429 msgid "Elements" 430 430 msgstr "" 431 431 432 #: includes/ld_classes/learndash-powerpack-remove-all-elements-from-wp-profile.php:6 7432 #: includes/ld_classes/learndash-powerpack-remove-all-elements-from-wp-profile.php:63 433 433 msgid "Enable this option to remove all elements from WP Profile." 434 434 msgstr "" 435 435 436 #: includes/ld_classes/learndash-powerpack-removing-price-section.php:5 7436 #: includes/ld_classes/learndash-powerpack-removing-price-section.php:53 437 437 msgid "price" 438 438 msgstr "" 439 439 440 #: includes/ld_classes/learndash-powerpack-removing-price-section.php:5 8441 #: includes/ld_classes/learndash-powerpack-removing-price-section.php:5 9440 #: includes/ld_classes/learndash-powerpack-removing-price-section.php:54 441 #: includes/ld_classes/learndash-powerpack-removing-price-section.php:55 442 442 msgid "Remove price section" 443 443 msgstr "" … … 455 455 msgstr "" 456 456 457 #: includes/ld_classes/learndash-powerpack-sample-lesson-restriction.php:6 4457 #: includes/ld_classes/learndash-powerpack-sample-lesson-restriction.php:60 458 458 msgid "Sample lesson" 459 459 msgstr "" 460 460 461 #: includes/ld_classes/learndash-powerpack-sample-lesson-restriction.php:6 5461 #: includes/ld_classes/learndash-powerpack-sample-lesson-restriction.php:61 462 462 msgid "Only allow logged in users to access samples" 463 463 msgstr "" 464 464 465 #: includes/ld_classes/learndash-powerpack-sample-lesson.php:85 466 msgid "Sample Lesson Label" 467 msgstr "" 468 465 469 #: includes/ld_classes/learndash-powerpack-sample-lesson.php:86 466 msgid "Sample Lesson Label"467 msgstr ""468 469 #: includes/ld_classes/learndash-powerpack-sample-lesson.php:87470 470 msgid "Change \"Sample Lesson\" label." 471 471 msgstr "" 472 472 473 #: includes/ld_classes/learndash-powerpack-sample-lesson.php:10 6473 #: includes/ld_classes/learndash-powerpack-sample-lesson.php:105 474 474 msgid "Sample Lession Label" 475 475 msgstr "" 476 476 477 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link-all-user.php:5 9477 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link-all-user.php:57 478 478 msgid "Show Course Progression Next Step Link for all users" 479 479 msgstr "" 480 480 481 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link-all-user.php: 60481 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link-all-user.php:58 482 482 msgid "Enable this option will allow all user to see Course Progression Next Step Link without completing the Lessons/Topic" 483 483 msgstr "" 484 484 485 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link.php:6 7485 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link.php:63 486 486 msgid "Show Course Progression Next Step Link for admin" 487 487 msgstr "" 488 488 489 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link.php:6 8489 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link.php:64 490 490 msgid "Enable this option will allow only admin to show Course Progression Next Step Link without completing the Lessons/Topic" 491 491 msgstr "" 492 492 493 #: includes/ld_classes/learndash-powerpack-take-this-course-button-label.php:125 494 msgid "Take this Course button label" 495 msgstr "" 496 493 497 #: includes/ld_classes/learndash-powerpack-take-this-course-button-label.php:126 494 msgid "Take this Course button label"495 msgstr ""496 497 #: includes/ld_classes/learndash-powerpack-take-this-course-button-label.php:127498 498 msgid "Replace the Take this Course button label for closed course" 499 499 msgstr "" 500 500 501 #: includes/ld_classes/learndash-powerpack-take-this-course-button-label.php:14 6501 #: includes/ld_classes/learndash-powerpack-take-this-course-button-label.php:145 502 502 msgid "Enter Take this Course button label" 503 503 msgstr "" 504 504 505 #: includes/ld_classes/learndash-powerpack-unenroll-the-user-from-all-common-groups.php:9 4505 #: includes/ld_classes/learndash-powerpack-unenroll-the-user-from-all-common-groups.php:90 506 506 msgid "group" 507 507 msgstr "" 508 508 509 #: includes/ld_classes/learndash-powerpack-unenroll-the-user-from-all-common-groups.php:9 5509 #: includes/ld_classes/learndash-powerpack-unenroll-the-user-from-all-common-groups.php:91 510 510 msgid "Unenroll the User" 511 511 msgstr "" 512 512 513 #: includes/ld_classes/learndash-powerpack-unenroll-the-user-from-all-common-groups.php:9 6513 #: includes/ld_classes/learndash-powerpack-unenroll-the-user-from-all-common-groups.php:92 514 514 msgid "Unenroll the User from All common Groups when the Course access is expired." 515 515 msgstr "" -
powerpack-for-learndash/tags/1.3.2/learndash-powerpack.php
r2666102 r2811296 6 6 * Author: HonorsWP 7 7 * Author URI: https://honorswp.com/ 8 * Version: 1.3. 18 * Version: 1.3.2 9 9 * Requires PHP: 5.6 10 * Requires at least: 5. 810 * Requires at least: 5.9 11 11 * Text Domain: learndash-powerpack 12 12 * Domain Path: /languages … … 25 25 * Required minimums and constants 26 26 */ 27 define( 'LD_POWERPACK_VERSION', '1.3. 1' );27 define( 'LD_POWERPACK_VERSION', '1.3.2' ); 28 28 define( 'LD_POWERPACK_MAIN_FILE', __FILE__ ); 29 29 define( 'LD_POWERPACK_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) ); -
powerpack-for-learndash/tags/1.3.2/readme.txt
r2666102 r2811296 1 1 === PowerPack for LearnDash === 2 Contributors: honorswp, easilyamused, Jack Kitterhing2 Contributors: honorswp, easilyamused, christophherr, Jack Kitterhing 3 3 Tags: learndash, education, elearning, lms, learning 4 Requires at least: 5. 05 Tested up to: 5.94 Requires at least: 5.9 5 Tested up to: 6.1 6 6 Requires PHP: 5.6 7 Stable tag: 1.3. 17 Stable tag: 1.3.2 8 8 License: GNU General Public License v3.0 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 15 15 == Description == 16 16 17 **PowerPack for LearnDash** plugin allows you to control various aspects of your LearnDash site without code! Powering up your LearnDash website. Included are 50 modules which are.17 **PowerPack for LearnDash** plugin allows you to control various aspects of your LearnDash site without code! Powering up your LearnDash website. Included are 42 modules which are: 18 18 19 19 * Custom content to the single course template output. … … 85 85 86 86 == Screenshots == 87 1. 50Modules all ready to use with the slide of a toggle.87 1. 42 Modules all ready to use with the slide of a toggle. 88 88 2. Easy to use module settings 89 89 3. Admin side view … … 109 109 * Fixed fatal error 110 110 111 = 1.3.2 = 112 * Fixed PHP warnings 113 111 114 == Upgrade Notice == 115 = 1.3.2 = 116 * Fixed PHP warnings 117 112 118 = 1.3.1 = 113 119 * Fixed fatal error -
powerpack-for-learndash/trunk/changelog.txt
r2665925 r2811296 48 48 * Removed deprecated "Remove Video Progression Cookie on Lesson Completion" 49 49 * Removed deprecated "Remove Video Progression Cookie on Topic Completion" 50 51 = 1.3.1 = 52 * Fixed fatal error 53 54 = 1.3.2 = 55 * Fixed PHP warnings -
powerpack-for-learndash/trunk/includes/ld_classes/learndash-powerpack-enable-comments-on-focus-mode.php
r2665925 r2811296 40 40 * @return String The status of the comments. 41 41 */ 42 public function learndash_focus_mode_comments_func( $comment_status = 'closed', $post ) {42 public function learndash_focus_mode_comments_func( $comment_status, $post ) { 43 43 // Example Only allow comments on Quiz post type. 44 44 if ( 'sfwd-quiz' === $post->post_type ) { -
powerpack-for-learndash/trunk/includes/ld_classes/learndash-powerpack-hide-comments-from-assignments-essay-on-dashboard.php
r2665925 r2811296 38 38 */ 39 39 public function pre_get_comments_func( $comment_query ) { 40 if ( is_admin() ) { 41 $current_screen = get_current_screen(); 42 if ( 'dashboard' === $current_screen->id ) { 43 if ( ! current_user_can( 'moderate_comments' ) ) { 44 $post_query_args = [ 45 'post_type' => [ 'sfwd-assignment', 'sfwd-essays' ], 46 'post_status' => [ 'draft', 'publish', 'graded', 'not_graded' ], 47 'fields' => 'ids', 48 'nopaging' => true, 49 ]; 40 global $pagenow; 50 41 51 $post_query = new WP_Query( $post_query_args ); 52 if ( ( $post_query instanceof WP_Query ) && ( ! empty( $post_query->posts ) ) ) { 53 $post__not_in = []; 42 // $current_screen = get_current_screen(); 43 if ( is_admin() && 'index.php' === $pagenow ) { 44 if ( ! current_user_can( 'moderate_comments' ) ) { 45 $post_query_args = [ 46 'post_type' => [ 'sfwd-assignment', 'sfwd-essays' ], 47 'post_status' => [ 'draft', 'publish', 'graded', 'not_graded' ], 48 'fields' => 'ids', 49 'nopaging' => true, 50 ]; 54 51 55 if ( '' === $comment_query->query_vars['post__not_in'] ) { 56 $post__not_in = $post_query->posts; 57 } else { 58 $post__not_in = array_merge( (array) $comment_query->query_vars['post__not_in'], $post_query->posts ); 59 } 52 $post_query = new WP_Query( $post_query_args ); 53 if ( ( $post_query instanceof WP_Query ) && ( ! empty( $post_query->posts ) ) ) { 54 $post__not_in = []; 60 55 61 if ( ! empty( $post__not_in ) ) { 62 $comment_query->query_vars['post__not_in'] = $post__not_in; 63 } 56 if ( '' === $comment_query->query_vars['post__not_in'] ) { 57 $post__not_in = $post_query->posts; 58 } else { 59 $post__not_in = array_merge( (array) $comment_query->query_vars['post__not_in'], $post_query->posts ); 60 } 61 62 if ( ! empty( $post__not_in ) ) { 63 $comment_query->query_vars['post__not_in'] = $post__not_in; 64 64 } 65 65 } … … 75 75 public function learndash_powerpack_class_details() { 76 76 $ld_type = esc_html__( 'comment', 'learndash-powerpack' ); 77 $class_title = esc_html__( 'Comment soptions for Assignments and Essay', 'learndash-powerpack' );78 $class_description = esc_html__( 'Enabl e this option will Hide comments from Assignments and Essay from showing on Dashboard Activity Widget.', 'learndash-powerpack' );77 $class_title = esc_html__( 'Comment options for Assignments and Essay', 'learndash-powerpack' ); 78 $class_description = esc_html__( 'Enabling this option hides comments on Assignments and Essays from the Dashboard Activity Widget. Users that can moderate comments will still see them.', 'learndash-powerpack' ); 79 79 80 80 return [ -
powerpack-for-learndash/trunk/languages/learndash-powerpack.pot
r2665925 r2811296 1 # Copyright (C) 202 1HonorsWP2 # This file is distributed under the same license as the PowerPack for LearnDash plugin.1 # Copyright (C) 2022 HonorsWP 2 # This file is distributed under the GNU General Public License v3.0. 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: PowerPack for LearnDash 1.3. 0\n"6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ LearnDash-PowerPack\n"5 "Project-Id-Version: PowerPack for LearnDash 1.3.2\n" 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ea-powerpack\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 8 8 "Language-Team: LANGUAGE <LL@li.org>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 202 1-10-21T23:01:18+00:00\n"12 "POT-Creation-Date: 2022-11-03T17:14:46+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 "X-Generator: WP-CLI 2. 4.0\n"14 "X-Generator: WP-CLI 2.6.0\n" 15 15 "X-Domain: learndash-powerpack\n" 16 16 … … 53 53 msgstr "" 54 54 55 #: includes/ld_classes/learndash-powerpack-add-custom-content-to-the-single-course-template-output.php:73 56 #: includes/ld_classes/learndash-powerpack-allow-access-to-previously-completed-course.php:88 57 #: includes/ld_classes/learndash-powerpack-auto-complete-course-lessons-and-topics.php:101 58 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-all-courses.php:58 59 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-open-courses.php:61 60 #: includes/ld_classes/learndash-powerpack-course-points-format-round.php:88 61 #: includes/ld_classes/learndash-powerpack-disable-course-progression.php:57 62 #: includes/ld_classes/learndash-powerpack-display-a-custom-message-shortcode.php:89 63 #: includes/ld_classes/learndash-powerpack-display-course-content-below-prerequisite-message.php:55 64 #: includes/ld_classes/learndash-powerpack-enable-course-step-in-wp-menu.php:58 65 #: includes/ld_classes/learndash-powerpack-hide-coures-points-from-the-user-profile.php:57 66 #: includes/ld_classes/learndash-powerpack-hide-the-open-option-from-course-access-settings.php:53 67 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link-all-user.php:56 68 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link.php:62 69 #: includes/ld_classes/learndash-powerpack-take-this-course-button-label.php:124 70 msgid "course" 71 msgstr "" 72 55 73 #: includes/ld_classes/learndash-powerpack-add-custom-content-to-the-single-course-template-output.php:74 56 #: includes/ld_classes/learndash-powerpack-allow-access-to-previously-completed-course.php:93 57 #: includes/ld_classes/learndash-powerpack-auto-complete-course-lessons-and-topics.php:106 58 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-all-courses.php:62 59 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-open-courses.php:63 60 #: includes/ld_classes/learndash-powerpack-course-points-format-round.php:84 61 #: includes/ld_classes/learndash-powerpack-disable-course-progression.php:61 62 #: includes/ld_classes/learndash-powerpack-display-a-custom-message-shortcode.php:85 63 #: includes/ld_classes/learndash-powerpack-display-course-content-below-prerequisite-message.php:57 64 #: includes/ld_classes/learndash-powerpack-enable-course-step-in-wp-menu.php:60 65 #: includes/ld_classes/learndash-powerpack-hide-coures-points-from-the-user-profile.php:62 66 #: includes/ld_classes/learndash-powerpack-hide-the-open-option-from-course-access-settings.php:57 67 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link-all-user.php:58 68 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link.php:66 69 #: includes/ld_classes/learndash-powerpack-take-this-course-button-label.php:125 70 msgid "course" 74 msgid "Custom content to the single Course template output" 71 75 msgstr "" 72 76 73 77 #: includes/ld_classes/learndash-powerpack-add-custom-content-to-the-single-course-template-output.php:75 74 msgid "Custom content to the single Course template output"75 msgstr ""76 77 #: includes/ld_classes/learndash-powerpack-add-custom-content-to-the-single-course-template-output.php:7678 78 msgid "Enable this option to add custom content to the single Course template output after the Course Status complete." 79 79 msgstr "" 80 80 81 #: includes/ld_classes/learndash-powerpack-add-custom-content-to-the-single-course-template-output.php:11 181 #: includes/ld_classes/learndash-powerpack-add-custom-content-to-the-single-course-template-output.php:110 82 82 msgid "Enter custom content text" 83 83 msgstr "" 84 84 85 #: includes/ld_classes/learndash-powerpack-allow-access-to-previously-completed-course.php: 9485 #: includes/ld_classes/learndash-powerpack-allow-access-to-previously-completed-course.php:89 86 86 msgid "Allow access to previously completed course" 87 87 msgstr "" 88 88 89 #: includes/ld_classes/learndash-powerpack-allow-access-to-previously-completed-course.php:9 589 #: includes/ld_classes/learndash-powerpack-allow-access-to-previously-completed-course.php:90 90 90 msgid "Enable this option to allow access to previously completed course steps after course access is removed." 91 91 msgstr "" 92 92 93 #: includes/ld_classes/learndash-powerpack-allow-admin-unlimited-quiz-attempts.php:58 94 #: includes/ld_classes/learndash-powerpack-enable-comments-on-focus-mode.php:57 95 #: includes/ld_classes/learndash-powerpack-force-html-formatting-on-quiz-emails.php:85 96 #: includes/ld_classes/learndash-powerpack-force-page-reload-when-restart-quiz-button.php:57 97 #: includes/ld_classes/learndash-powerpack-quiz-continue-button-on-student-fail.php:60 98 msgid "quiz" 99 msgstr "" 100 101 #: includes/ld_classes/learndash-powerpack-allow-admin-unlimited-quiz-attempts.php:59 102 msgid "Unlimited Quiz Attempts" 103 msgstr "" 104 93 105 #: includes/ld_classes/learndash-powerpack-allow-admin-unlimited-quiz-attempts.php:60 94 #: includes/ld_classes/learndash-powerpack-enable-comments-on-focus-mode.php:5995 #: includes/ld_classes/learndash-powerpack-force-html-formatting-on-quiz-emails.php:9796 #: includes/ld_classes/learndash-powerpack-force-page-reload-when-restart-quiz-button.php:6297 #: includes/ld_classes/learndash-powerpack-quiz-continue-button-on-student-fail.php:6498 msgid "quiz"99 msgstr ""100 101 #: includes/ld_classes/learndash-powerpack-allow-admin-unlimited-quiz-attempts.php:61102 msgid "Unlimited Quiz Attempts"103 msgstr ""104 105 #: includes/ld_classes/learndash-powerpack-allow-admin-unlimited-quiz-attempts.php:62106 106 msgid "Allow \"admin\" for unlimited quiz attempts" 107 107 msgstr "" 108 108 109 #: includes/ld_classes/learndash-powerpack-auto-complete-course-lessons-and-topics.php:10 7109 #: includes/ld_classes/learndash-powerpack-auto-complete-course-lessons-and-topics.php:102 110 110 msgid "Auto Complete Course Lessons and Topics" 111 111 msgstr "" 112 112 113 #: includes/ld_classes/learndash-powerpack-auto-complete-course-lessons-and-topics.php:10 8113 #: includes/ld_classes/learndash-powerpack-auto-complete-course-lessons-and-topics.php:103 114 114 msgid "Enable this option to Auto Complete Course Lessons and Topics." 115 115 msgstr "" 116 116 117 #: includes/ld_classes/learndash-powerpack-bypass-background-enrollment-in-woocommerce.php: 60117 #: includes/ld_classes/learndash-powerpack-bypass-background-enrollment-in-woocommerce.php:55 118 118 msgid "Bypass Background Enrollment in WooCommerce" 119 119 msgstr "" 120 120 121 #: includes/ld_classes/learndash-powerpack-bypass-background-enrollment-in-woocommerce.php: 61121 #: includes/ld_classes/learndash-powerpack-bypass-background-enrollment-in-woocommerce.php:56 122 122 msgid "Enable this option to Bypass Background Enrollment in WooCommerce." 123 123 msgstr "" 124 124 125 #: includes/ld_classes/learndash-powerpack-certificate-shortcode-link-in-new-window.php: 60125 #: includes/ld_classes/learndash-powerpack-certificate-shortcode-link-in-new-window.php:55 126 126 #: includes/ld_classes/learndash-powerpack-restrict-access-to-certificates.php:55 127 127 msgid "certificate" 128 128 msgstr "" 129 129 130 #: includes/ld_classes/learndash-powerpack-certificate-shortcode-link-in-new-window.php: 61130 #: includes/ld_classes/learndash-powerpack-certificate-shortcode-link-in-new-window.php:56 131 131 msgid "Certificate shortcode link to open in new window" 132 132 msgstr "" 133 133 134 #: includes/ld_classes/learndash-powerpack-certificate-shortcode-link-in-new-window.php: 62134 #: includes/ld_classes/learndash-powerpack-certificate-shortcode-link-in-new-window.php:57 135 135 msgid "Enable this option to open certificate shortcode link in new window" 136 136 msgstr "" 137 137 138 #: includes/ld_classes/learndash-powerpack-change-focus-mode-comment-reply-title.php:84 139 #: includes/ld_classes/learndash-powerpack-filter-to-disable-comments-on-learndash-assignment.php:67 140 #: includes/ld_classes/learndash-powerpack-hide-comments-from-assignments-essay-on-dashboard.php:76 141 msgid "comment" 142 msgstr "" 143 144 #: includes/ld_classes/learndash-powerpack-change-focus-mode-comment-reply-title.php:85 145 msgid "Focus mode reply title" 146 msgstr "" 147 138 148 #: includes/ld_classes/learndash-powerpack-change-focus-mode-comment-reply-title.php:86 139 #: includes/ld_classes/learndash-powerpack-filter-to-disable-comments-on-learndash-assignment.php:73140 #: includes/ld_classes/learndash-powerpack-hide-comments-from-assignments-essay-on-dashboard.php:82141 msgid "comment"142 msgstr ""143 144 #: includes/ld_classes/learndash-powerpack-change-focus-mode-comment-reply-title.php:87145 msgid "Focus mode reply title"146 msgstr ""147 148 #: includes/ld_classes/learndash-powerpack-change-focus-mode-comment-reply-title.php:88149 149 msgid "Enable this option to change Focus Mode comment reply title." 150 150 msgstr "" 151 151 152 #: includes/ld_classes/learndash-powerpack-change-focus-mode-comment-reply-title.php:10 7152 #: includes/ld_classes/learndash-powerpack-change-focus-mode-comment-reply-title.php:105 153 153 msgid "Title" 154 154 msgstr "" 155 155 156 #: includes/ld_classes/learndash-powerpack-change-stripe-purchase-button-text.php:82 157 msgid "stripe" 158 msgstr "" 159 156 160 #: includes/ld_classes/learndash-powerpack-change-stripe-purchase-button-text.php:83 157 msgid " stripe"161 msgid "Stripe Purchase Button Text" 158 162 msgstr "" 159 163 160 164 #: includes/ld_classes/learndash-powerpack-change-stripe-purchase-button-text.php:84 161 msgid "Stripe Purchase Button Text"162 msgstr ""163 164 #: includes/ld_classes/learndash-powerpack-change-stripe-purchase-button-text.php:85165 165 msgid "Enable this option to change Stripe Purchase Button Text" 166 166 msgstr "" 167 167 168 #: includes/ld_classes/learndash-powerpack-change-stripe-purchase-button-text.php:10 4168 #: includes/ld_classes/learndash-powerpack-change-stripe-purchase-button-text.php:103 169 169 msgid "Button Text" 170 170 msgstr "" 171 171 172 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-all-courses.php: 63172 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-all-courses.php:59 173 173 msgid "Change the Price Type for all Courses" 174 174 msgstr "" 175 175 176 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-all-courses.php:6 4176 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-all-courses.php:60 177 177 msgid "Enable this option to set the course price type to closed for all courses." 178 178 msgstr "" 179 179 180 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-open-courses.php:6 4180 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-open-courses.php:62 181 181 msgid "Change the Price Type for only open Courses" 182 182 msgstr "" 183 183 184 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-open-courses.php:6 5184 #: includes/ld_classes/learndash-powerpack-change-the-price-type-for-open-courses.php:63 185 185 msgid "Enable this option to set the course price type to closed only if it is currently open." 186 186 msgstr "" 187 187 188 #: includes/ld_classes/learndash-powerpack-change-welcome-message-in-focus-mode-to-use-first-name.php:5 6188 #: includes/ld_classes/learndash-powerpack-change-welcome-message-in-focus-mode-to-use-first-name.php:51 189 189 msgid "focus_mode" 190 190 msgstr "" 191 191 192 #: includes/ld_classes/learndash-powerpack-change-welcome-message-in-focus-mode-to-use-first-name.php:5 7192 #: includes/ld_classes/learndash-powerpack-change-welcome-message-in-focus-mode-to-use-first-name.php:52 193 193 msgid "Welcome message in Focus Mode" 194 194 msgstr "" 195 195 196 #: includes/ld_classes/learndash-powerpack-change-welcome-message-in-focus-mode-to-use-first-name.php:5 8196 #: includes/ld_classes/learndash-powerpack-change-welcome-message-in-focus-mode-to-use-first-name.php:53 197 197 msgid "Enable this option to change welcome message in Focus Mode to use first name instead of the username" 198 198 msgstr "" 199 199 200 #: includes/ld_classes/learndash-powerpack-changing-complete-button-border-radius-property.php:81 201 #: includes/ld_classes/learndash-powerpack-course-grid-custom-button-text.php:93 202 msgid "button" 203 msgstr "" 204 200 205 #: includes/ld_classes/learndash-powerpack-changing-complete-button-border-radius-property.php:82 201 #: includes/ld_classes/learndash-powerpack-course-grid-custom-button-text.php:92 202 msgid "button" 206 msgid "Changing Complete button border radius property" 203 207 msgstr "" 204 208 205 209 #: includes/ld_classes/learndash-powerpack-changing-complete-button-border-radius-property.php:83 206 msgid "Changing Complete button border radius property"207 msgstr ""208 209 #: includes/ld_classes/learndash-powerpack-changing-complete-button-border-radius-property.php:84210 210 msgid "Enable this option to change border radius of complete button." 211 211 msgstr "" 212 212 213 #: includes/ld_classes/learndash-powerpack-changing-complete-button-border-radius-property.php:10 3213 #: includes/ld_classes/learndash-powerpack-changing-complete-button-border-radius-property.php:102 214 214 msgid "Enter border radius for complete button" 215 215 msgstr "" 216 216 217 #: includes/ld_classes/learndash-powerpack-course-grid-custom-button-text.php:9 3217 #: includes/ld_classes/learndash-powerpack-course-grid-custom-button-text.php:94 218 218 msgid "Course grid custom button text" 219 219 msgstr "" 220 220 221 #: includes/ld_classes/learndash-powerpack-course-grid-custom-button-text.php:9 4221 #: includes/ld_classes/learndash-powerpack-course-grid-custom-button-text.php:95 222 222 msgid "Enable this option to change course grid custom button text." 223 223 msgstr "" 224 224 225 #: includes/ld_classes/learndash-powerpack-course-grid-custom-button-text.php:11 4225 #: includes/ld_classes/learndash-powerpack-course-grid-custom-button-text.php:115 226 226 msgid "Enter Take course grid custom button text" 227 227 msgstr "" 228 228 229 #: includes/ld_classes/learndash-powerpack-course-points-format-round.php:8 5229 #: includes/ld_classes/learndash-powerpack-course-points-format-round.php:89 230 230 msgid "Course Points Format" 231 231 msgstr "" 232 232 233 #: includes/ld_classes/learndash-powerpack-course-points-format-round.php: 86233 #: includes/ld_classes/learndash-powerpack-course-points-format-round.php:90 234 234 msgid "Enable this option to select decimal place formatting outside of the [courseinfo] shortcode." 235 235 msgstr "" 236 236 237 #: includes/ld_classes/learndash-powerpack-course-points-format-round.php:10 5237 #: includes/ld_classes/learndash-powerpack-course-points-format-round.php:109 238 238 msgid "Enter decimal points used, 0 or higher" 239 239 msgstr "" 240 240 241 #: includes/ld_classes/learndash-powerpack-disable-course-progression.php: 62241 #: includes/ld_classes/learndash-powerpack-disable-course-progression.php:58 242 242 msgid "Course Progression" 243 243 msgstr "" 244 244 245 #: includes/ld_classes/learndash-powerpack-disable-course-progression.php: 63245 #: includes/ld_classes/learndash-powerpack-disable-course-progression.php:59 246 246 msgid "Enable this option to disable Course Progression." 247 247 msgstr "" 248 248 249 #: includes/ld_classes/learndash-powerpack-disable-gutenberg-editor.php:58 250 msgid "editor" 251 msgstr "" 252 253 #: includes/ld_classes/learndash-powerpack-disable-gutenberg-editor.php:59 254 msgid "Disable Gutenberg Editor" 255 msgstr "" 256 249 257 #: includes/ld_classes/learndash-powerpack-disable-gutenberg-editor.php:60 250 msgid "editor"251 msgstr ""252 253 #: includes/ld_classes/learndash-powerpack-disable-gutenberg-editor.php:61254 msgid "Disable Gutenberg Editor"255 msgstr ""256 257 #: includes/ld_classes/learndash-powerpack-disable-gutenberg-editor.php:62258 258 msgid "Enable this option to Disable Gutenberg Editor on any of the LearnDash custom post types." 259 259 msgstr "" 260 260 261 #: includes/ld_classes/learndash-powerpack-disable-video-auto-start-on-mobile.php:57 262 msgid "video" 263 msgstr "" 264 265 #: includes/ld_classes/learndash-powerpack-disable-video-auto-start-on-mobile.php:58 266 msgid "Video Progression" 267 msgstr "" 268 261 269 #: includes/ld_classes/learndash-powerpack-disable-video-auto-start-on-mobile.php:59 262 msgid "video"263 msgstr ""264 265 #: includes/ld_classes/learndash-powerpack-disable-video-auto-start-on-mobile.php:60266 msgid "Video Progression"267 msgstr ""268 269 #: includes/ld_classes/learndash-powerpack-disable-video-auto-start-on-mobile.php:61270 270 msgid "Enable this option to disable video auto-start on mobile." 271 271 msgstr "" 272 272 273 #: includes/ld_classes/learndash-powerpack-display-a-custom-message-shortcode.php: 86273 #: includes/ld_classes/learndash-powerpack-display-a-custom-message-shortcode.php:90 274 274 msgid "Custom message for a shortcode [ld_course_list]" 275 275 msgstr "" 276 276 277 #: includes/ld_classes/learndash-powerpack-display-a-custom-message-shortcode.php: 87277 #: includes/ld_classes/learndash-powerpack-display-a-custom-message-shortcode.php:91 278 278 msgid "Display a custom message when ld_course_list shortcode returns no results." 279 279 msgstr "" 280 280 281 #: includes/ld_classes/learndash-powerpack-display-a-custom-message-shortcode.php:1 06281 #: includes/ld_classes/learndash-powerpack-display-a-custom-message-shortcode.php:110 282 282 msgid "Enter Custom message for shortcode ld_course_list" 283 283 msgstr "" 284 284 285 #: includes/ld_classes/learndash-powerpack-display-course-content-below-prerequisite-message.php:5 8285 #: includes/ld_classes/learndash-powerpack-display-course-content-below-prerequisite-message.php:56 286 286 msgid "Display course content below prerequisite message" 287 287 msgstr "" 288 288 289 #: includes/ld_classes/learndash-powerpack-display-course-content-below-prerequisite-message.php:5 9289 #: includes/ld_classes/learndash-powerpack-display-course-content-below-prerequisite-message.php:57 290 290 msgid "Enable this option to Display course content below prerequisite message." 291 291 msgstr "" 292 292 293 #: includes/ld_classes/learndash-powerpack-enable-comments-on-focus-mode.php: 60293 #: includes/ld_classes/learndash-powerpack-enable-comments-on-focus-mode.php:58 294 294 msgid "Comments on Quiz post type" 295 295 msgstr "" 296 296 297 #: includes/ld_classes/learndash-powerpack-enable-comments-on-focus-mode.php: 61297 #: includes/ld_classes/learndash-powerpack-enable-comments-on-focus-mode.php:59 298 298 msgid "Only allow comments on Quiz post type." 299 299 msgstr "" 300 300 301 #: includes/ld_classes/learndash-powerpack-enable-course-step-in-wp-menu.php: 61301 #: includes/ld_classes/learndash-powerpack-enable-course-step-in-wp-menu.php:59 302 302 msgid "Course step in WP menu" 303 303 msgstr "" 304 304 305 #: includes/ld_classes/learndash-powerpack-enable-course-step-in-wp-menu.php:6 2305 #: includes/ld_classes/learndash-powerpack-enable-course-step-in-wp-menu.php:60 306 306 msgid "LearnDash enable course step in WP menu." 307 307 msgstr "" 308 308 309 #: includes/ld_classes/learndash-powerpack-enable-custom-taxonomy-terms-archive.php: 60309 #: includes/ld_classes/learndash-powerpack-enable-custom-taxonomy-terms-archive.php:58 310 310 msgid "taxonomy" 311 311 msgstr "" 312 312 313 #: includes/ld_classes/learndash-powerpack-enable-custom-taxonomy-terms-archive.php: 61313 #: includes/ld_classes/learndash-powerpack-enable-custom-taxonomy-terms-archive.php:59 314 314 msgid "LearnDash Enable Custom Taxonomy Terms Archive" 315 315 msgstr "" 316 316 317 #: includes/ld_classes/learndash-powerpack-expand-all-lesson-section-on-focus-mode.php:6 7318 #: includes/ld_classes/learndash-powerpack-redirect-the-student-to-a-lesson-quiz.php:8 5319 #: includes/ld_classes/learndash-powerpack-sample-lesson-restriction.php: 63320 #: includes/ld_classes/learndash-powerpack-sample-lesson.php:8 5317 #: includes/ld_classes/learndash-powerpack-expand-all-lesson-section-on-focus-mode.php:62 318 #: includes/ld_classes/learndash-powerpack-redirect-the-student-to-a-lesson-quiz.php:81 319 #: includes/ld_classes/learndash-powerpack-sample-lesson-restriction.php:59 320 #: includes/ld_classes/learndash-powerpack-sample-lesson.php:84 321 321 msgid "lesson" 322 322 msgstr "" 323 323 324 #: includes/ld_classes/learndash-powerpack-expand-all-lesson-section-on-focus-mode.php:6 8324 #: includes/ld_classes/learndash-powerpack-expand-all-lesson-section-on-focus-mode.php:63 325 325 msgid "Lesson Section" 326 326 msgstr "" 327 327 328 #: includes/ld_classes/learndash-powerpack-expand-all-lesson-section-on-focus-mode.php:6 9328 #: includes/ld_classes/learndash-powerpack-expand-all-lesson-section-on-focus-mode.php:64 329 329 msgid "Expand all lesson section on Focus mode" 330 330 msgstr "" 331 331 332 #: includes/ld_classes/learndash-powerpack-filter-to-disable-comments-on-learndash-assignment.php: 74332 #: includes/ld_classes/learndash-powerpack-filter-to-disable-comments-on-learndash-assignment.php:68 333 333 msgid "Disable comments on LearnDash Assignment" 334 334 msgstr "" 335 335 336 #: includes/ld_classes/learndash-powerpack-filter-to-disable-comments-on-learndash-assignment.php: 75336 #: includes/ld_classes/learndash-powerpack-filter-to-disable-comments-on-learndash-assignment.php:69 337 337 msgid "Enable this option disable comments on LearnDash Assignment." 338 338 msgstr "" 339 339 340 #: includes/ld_classes/learndash-powerpack-force-html-formatting-on-quiz-emails.php: 98340 #: includes/ld_classes/learndash-powerpack-force-html-formatting-on-quiz-emails.php:86 341 341 msgid "HTML formatting" 342 342 msgstr "" 343 343 344 #: includes/ld_classes/learndash-powerpack-force-html-formatting-on-quiz-emails.php: 99344 #: includes/ld_classes/learndash-powerpack-force-html-formatting-on-quiz-emails.php:87 345 345 msgid "Force HTML formatting on Quiz emails." 346 346 msgstr "" 347 347 348 #: includes/ld_classes/learndash-powerpack-force-page-reload-when-restart-quiz-button.php: 63348 #: includes/ld_classes/learndash-powerpack-force-page-reload-when-restart-quiz-button.php:58 349 349 msgid "Page reload" 350 350 msgstr "" 351 351 352 #: includes/ld_classes/learndash-powerpack-force-page-reload-when-restart-quiz-button.php: 64352 #: includes/ld_classes/learndash-powerpack-force-page-reload-when-restart-quiz-button.php:59 353 353 msgid "Enable this option to force page reload when Restart Quiz button is clicked." 354 354 msgstr "" 355 355 356 #: includes/ld_classes/learndash-powerpack-hide-comments-from-assignments-essay-on-dashboard.php: 83357 msgid "Comment soptions for Assignments and Essay"358 msgstr "" 359 360 #: includes/ld_classes/learndash-powerpack-hide-comments-from-assignments-essay-on-dashboard.php: 84361 msgid "Enabl e this option will Hide comments from Assignments and Essay from showing on Dashboard Activity Widget."362 msgstr "" 363 364 #: includes/ld_classes/learndash-powerpack-hide-coures-points-from-the-user-profile.php: 63356 #: includes/ld_classes/learndash-powerpack-hide-comments-from-assignments-essay-on-dashboard.php:77 357 msgid "Comment options for Assignments and Essay" 358 msgstr "" 359 360 #: includes/ld_classes/learndash-powerpack-hide-comments-from-assignments-essay-on-dashboard.php:78 361 msgid "Enabling this option hides comments on Assignments and Essays from the Dashboard Activity Widget. Users that can moderate comments will still see them." 362 msgstr "" 363 364 #: includes/ld_classes/learndash-powerpack-hide-coures-points-from-the-user-profile.php:58 365 365 msgid "Hide Course Points" 366 366 msgstr "" 367 367 368 #: includes/ld_classes/learndash-powerpack-hide-coures-points-from-the-user-profile.php: 64368 #: includes/ld_classes/learndash-powerpack-hide-coures-points-from-the-user-profile.php:59 369 369 msgid "Enable this option to hide the course points from showing in the [ld_profile] shortcode." 370 370 msgstr "" 371 371 372 #: includes/ld_classes/learndash-powerpack-hide-the-open-option-from-course-access-settings.php:5 8372 #: includes/ld_classes/learndash-powerpack-hide-the-open-option-from-course-access-settings.php:54 373 373 msgid "Course Access Settings" 374 374 msgstr "" 375 375 376 #: includes/ld_classes/learndash-powerpack-hide-the-open-option-from-course-access-settings.php:5 9376 #: includes/ld_classes/learndash-powerpack-hide-the-open-option-from-course-access-settings.php:55 377 377 msgid "Enable this option to hide the Open option from Course Access Settings" 378 378 msgstr "" 379 379 380 #: includes/ld_classes/learndash-powerpack-outgoing-email-address-of-propanel-emails.php:82 381 msgid "email" 382 msgstr "" 383 384 #: includes/ld_classes/learndash-powerpack-outgoing-email-address-of-propanel-emails.php:83 385 msgid "Outgoing email address of ProPanel emails" 386 msgstr "" 387 380 388 #: includes/ld_classes/learndash-powerpack-outgoing-email-address-of-propanel-emails.php:84 381 msgid "email"382 msgstr ""383 384 #: includes/ld_classes/learndash-powerpack-outgoing-email-address-of-propanel-emails.php:85385 msgid "Outgoing email address of ProPanel emails"386 msgstr ""387 388 #: includes/ld_classes/learndash-powerpack-outgoing-email-address-of-propanel-emails.php:86389 389 msgid "Change the outgoing email address of ProPanel emails" 390 390 msgstr "" 391 391 392 #: includes/ld_classes/learndash-powerpack-outgoing-email-address-of-propanel-emails.php:10 5392 #: includes/ld_classes/learndash-powerpack-outgoing-email-address-of-propanel-emails.php:103 393 393 msgid "Enter Outgoing email" 394 394 msgstr "" 395 395 396 #: includes/ld_classes/learndash-powerpack-post-type-to-stop-use-of-the-content-filter.php:7 7396 #: includes/ld_classes/learndash-powerpack-post-type-to-stop-use-of-the-content-filter.php:73 397 397 msgid "wp_filter" 398 398 msgstr "" 399 399 400 #: includes/ld_classes/learndash-powerpack-post-type-to-stop-use-of-the-content-filter.php:7 8400 #: includes/ld_classes/learndash-powerpack-post-type-to-stop-use-of-the-content-filter.php:74 401 401 msgid "Stop use of the_content filter to display content" 402 402 msgstr "" 403 403 404 #: includes/ld_classes/learndash-powerpack-post-type-to-stop-use-of-the-content-filter.php:7 9404 #: includes/ld_classes/learndash-powerpack-post-type-to-stop-use-of-the-content-filter.php:75 405 405 msgid "Enable this option will Stop use of the_content filter to display content for LearnDash Post Type." 406 406 msgstr "" 407 407 408 #: includes/ld_classes/learndash-powerpack-quiz-continue-button-on-student-fail.php:6 5408 #: includes/ld_classes/learndash-powerpack-quiz-continue-button-on-student-fail.php:61 409 409 msgid "Quiz continue button option" 410 410 msgstr "" 411 411 412 #: includes/ld_classes/learndash-powerpack-quiz-continue-button-on-student-fail.php:6 6412 #: includes/ld_classes/learndash-powerpack-quiz-continue-button-on-student-fail.php:62 413 413 msgid "Enable this option will show Quiz continue button for all quiz if the student fails." 414 414 msgstr "" 415 415 416 #: includes/ld_classes/learndash-powerpack-redirect-the-student-to-a-lesson-quiz.php:8 6416 #: includes/ld_classes/learndash-powerpack-redirect-the-student-to-a-lesson-quiz.php:82 417 417 msgid "Lesson Quiz" 418 418 msgstr "" 419 419 420 #: includes/ld_classes/learndash-powerpack-redirect-the-student-to-a-lesson-quiz.php:8 7420 #: includes/ld_classes/learndash-powerpack-redirect-the-student-to-a-lesson-quiz.php:83 421 421 msgid "Enable this option to redirect the student to a Lesson Quiz when they complete the last Lesson Topic." 422 422 msgstr "" 423 423 424 #: includes/ld_classes/learndash-powerpack-remove-all-elements-from-wp-profile.php:6 5424 #: includes/ld_classes/learndash-powerpack-remove-all-elements-from-wp-profile.php:61 425 425 msgid "WordPress" 426 426 msgstr "" 427 427 428 #: includes/ld_classes/learndash-powerpack-remove-all-elements-from-wp-profile.php:6 6428 #: includes/ld_classes/learndash-powerpack-remove-all-elements-from-wp-profile.php:62 429 429 msgid "Elements" 430 430 msgstr "" 431 431 432 #: includes/ld_classes/learndash-powerpack-remove-all-elements-from-wp-profile.php:6 7432 #: includes/ld_classes/learndash-powerpack-remove-all-elements-from-wp-profile.php:63 433 433 msgid "Enable this option to remove all elements from WP Profile." 434 434 msgstr "" 435 435 436 #: includes/ld_classes/learndash-powerpack-removing-price-section.php:5 7436 #: includes/ld_classes/learndash-powerpack-removing-price-section.php:53 437 437 msgid "price" 438 438 msgstr "" 439 439 440 #: includes/ld_classes/learndash-powerpack-removing-price-section.php:5 8441 #: includes/ld_classes/learndash-powerpack-removing-price-section.php:5 9440 #: includes/ld_classes/learndash-powerpack-removing-price-section.php:54 441 #: includes/ld_classes/learndash-powerpack-removing-price-section.php:55 442 442 msgid "Remove price section" 443 443 msgstr "" … … 455 455 msgstr "" 456 456 457 #: includes/ld_classes/learndash-powerpack-sample-lesson-restriction.php:6 4457 #: includes/ld_classes/learndash-powerpack-sample-lesson-restriction.php:60 458 458 msgid "Sample lesson" 459 459 msgstr "" 460 460 461 #: includes/ld_classes/learndash-powerpack-sample-lesson-restriction.php:6 5461 #: includes/ld_classes/learndash-powerpack-sample-lesson-restriction.php:61 462 462 msgid "Only allow logged in users to access samples" 463 463 msgstr "" 464 464 465 #: includes/ld_classes/learndash-powerpack-sample-lesson.php:85 466 msgid "Sample Lesson Label" 467 msgstr "" 468 465 469 #: includes/ld_classes/learndash-powerpack-sample-lesson.php:86 466 msgid "Sample Lesson Label"467 msgstr ""468 469 #: includes/ld_classes/learndash-powerpack-sample-lesson.php:87470 470 msgid "Change \"Sample Lesson\" label." 471 471 msgstr "" 472 472 473 #: includes/ld_classes/learndash-powerpack-sample-lesson.php:10 6473 #: includes/ld_classes/learndash-powerpack-sample-lesson.php:105 474 474 msgid "Sample Lession Label" 475 475 msgstr "" 476 476 477 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link-all-user.php:5 9477 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link-all-user.php:57 478 478 msgid "Show Course Progression Next Step Link for all users" 479 479 msgstr "" 480 480 481 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link-all-user.php: 60481 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link-all-user.php:58 482 482 msgid "Enable this option will allow all user to see Course Progression Next Step Link without completing the Lessons/Topic" 483 483 msgstr "" 484 484 485 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link.php:6 7485 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link.php:63 486 486 msgid "Show Course Progression Next Step Link for admin" 487 487 msgstr "" 488 488 489 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link.php:6 8489 #: includes/ld_classes/learndash-powerpack-show-course-progression-next-step-link.php:64 490 490 msgid "Enable this option will allow only admin to show Course Progression Next Step Link without completing the Lessons/Topic" 491 491 msgstr "" 492 492 493 #: includes/ld_classes/learndash-powerpack-take-this-course-button-label.php:125 494 msgid "Take this Course button label" 495 msgstr "" 496 493 497 #: includes/ld_classes/learndash-powerpack-take-this-course-button-label.php:126 494 msgid "Take this Course button label"495 msgstr ""496 497 #: includes/ld_classes/learndash-powerpack-take-this-course-button-label.php:127498 498 msgid "Replace the Take this Course button label for closed course" 499 499 msgstr "" 500 500 501 #: includes/ld_classes/learndash-powerpack-take-this-course-button-label.php:14 6501 #: includes/ld_classes/learndash-powerpack-take-this-course-button-label.php:145 502 502 msgid "Enter Take this Course button label" 503 503 msgstr "" 504 504 505 #: includes/ld_classes/learndash-powerpack-unenroll-the-user-from-all-common-groups.php:9 4505 #: includes/ld_classes/learndash-powerpack-unenroll-the-user-from-all-common-groups.php:90 506 506 msgid "group" 507 507 msgstr "" 508 508 509 #: includes/ld_classes/learndash-powerpack-unenroll-the-user-from-all-common-groups.php:9 5509 #: includes/ld_classes/learndash-powerpack-unenroll-the-user-from-all-common-groups.php:91 510 510 msgid "Unenroll the User" 511 511 msgstr "" 512 512 513 #: includes/ld_classes/learndash-powerpack-unenroll-the-user-from-all-common-groups.php:9 6513 #: includes/ld_classes/learndash-powerpack-unenroll-the-user-from-all-common-groups.php:92 514 514 msgid "Unenroll the User from All common Groups when the Course access is expired." 515 515 msgstr "" -
powerpack-for-learndash/trunk/learndash-powerpack.php
r2666102 r2811296 6 6 * Author: HonorsWP 7 7 * Author URI: https://honorswp.com/ 8 * Version: 1.3. 18 * Version: 1.3.2 9 9 * Requires PHP: 5.6 10 * Requires at least: 5. 810 * Requires at least: 5.9 11 11 * Text Domain: learndash-powerpack 12 12 * Domain Path: /languages … … 25 25 * Required minimums and constants 26 26 */ 27 define( 'LD_POWERPACK_VERSION', '1.3. 1' );27 define( 'LD_POWERPACK_VERSION', '1.3.2' ); 28 28 define( 'LD_POWERPACK_MAIN_FILE', __FILE__ ); 29 29 define( 'LD_POWERPACK_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) ); -
powerpack-for-learndash/trunk/readme.txt
r2666102 r2811296 1 1 === PowerPack for LearnDash === 2 Contributors: honorswp, easilyamused, Jack Kitterhing2 Contributors: honorswp, easilyamused, christophherr, Jack Kitterhing 3 3 Tags: learndash, education, elearning, lms, learning 4 Requires at least: 5. 05 Tested up to: 5.94 Requires at least: 5.9 5 Tested up to: 6.1 6 6 Requires PHP: 5.6 7 Stable tag: 1.3. 17 Stable tag: 1.3.2 8 8 License: GNU General Public License v3.0 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 15 15 == Description == 16 16 17 **PowerPack for LearnDash** plugin allows you to control various aspects of your LearnDash site without code! Powering up your LearnDash website. Included are 50 modules which are.17 **PowerPack for LearnDash** plugin allows you to control various aspects of your LearnDash site without code! Powering up your LearnDash website. Included are 42 modules which are: 18 18 19 19 * Custom content to the single course template output. … … 85 85 86 86 == Screenshots == 87 1. 50Modules all ready to use with the slide of a toggle.87 1. 42 Modules all ready to use with the slide of a toggle. 88 88 2. Easy to use module settings 89 89 3. Admin side view … … 109 109 * Fixed fatal error 110 110 111 = 1.3.2 = 112 * Fixed PHP warnings 113 111 114 == Upgrade Notice == 115 = 1.3.2 = 116 * Fixed PHP warnings 117 112 118 = 1.3.1 = 113 119 * Fixed fatal error
Note: See TracChangeset
for help on using the changeset viewer.