Changeset 2347084
- Timestamp:
- 07/27/2020 10:07:29 AM (5 years ago)
- Location:
- simple-feature-requests/trunk
- Files:
-
- 15 edited
-
assets/frontend/js/main.js (modified) (2 diffs)
-
assets/frontend/js/main.min.js (modified) (1 diff)
-
inc/class-ajax.php (modified) (1 diff)
-
inc/class-feature-request.php (modified) (2 diffs)
-
inc/class-notifications.php (modified) (2 diffs)
-
inc/class-post-types.php (modified) (6 diffs)
-
inc/class-query.php (modified) (2 diffs)
-
inc/class-settings.php (modified) (2 diffs)
-
inc/class-template-methods.php (modified) (2 diffs)
-
inc/class-user.php (modified) (3 diffs)
-
inc/functions.php (modified) (2 diffs)
-
languages/simple-feature-requests.pot (modified) (6 diffs)
-
plugin-data.json (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
simple-feature-requests.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-feature-requests/trunk/assets/frontend/js/main.js
r2202889 r2347084 247 247 var data = { 248 248 'action': 'jck_sfr_search_feature_requests', 249 'search': search,250 249 'nonce': jck_sfr_vars.nonce, 251 250 'paged': jck_sfr_vars.paged, … … 253 252 254 253 $.extend( data, jck_sfr.get_url_parameters( window.location.href ) ); 254 255 // Add here so the characters aren't encoded when using $.extend() 256 data.search = search; 255 257 256 258 $.post( jck_sfr_vars.ajax_url, data, function( response ) { -
simple-feature-requests/trunk/assets/frontend/js/main.min.js
r2202889 r2347084 1 !function(_,r){var u={cache:function(){u.vars={},u.vars.vote_button_selector="[data-jck-sfr-vote]",u.vars.button_status_classes={voting:"jck-sfr-vote-button--voting",voted:"jck-sfr-vote-button--voted"},u.vars.toggle_button_selector="[data-jck-sfr-toggle]",u.vars.toggle_user_type_selector="[data-jck-sfr-toggle-submission-user-type]",u.els={},u.els.container=_(".jck-sfr-container"),u.els.filters=_(".jck-sfr-filters"),u.els.submission_form={form:_(".jck-sfr-form--submission"),title:_(".jck-sfr-form--submission .jck-sfr-form__title"),reveal:_(".jck-sfr-form--submission .jck-sfr-form__reveal"),loader:_(".jck-sfr-search-field__icon--loader"),clear:_(".jck-sfr-search-field__icon--clear"),choices:{container:_(".jck-sfr-form--submission .jck-sfr-form__choices"),count:_(".jck-sfr-form--submission .jck-sfr-form__choices-count"),vote:_(".jck-sfr-form--submission .jck-sfr-form__choices-vote"),or:_(".jck-sfr-form--submission .jck-sfr-form__choices-or"),post:_(".jck-sfr-form--submission .jck-sfr-form__choices-post")}},u.els.loop={container:_(".jck-sfr-content")}},on_ready:function(){u.cache(),u.setup_vote_buttons(),u.setup_toggle_buttons(),u.setup_toggle_user_type(),u.setup_submission_form()},setup_vote_buttons:function(){_(r).on("click",u.vars.vote_button_selector,function(){var s=_(this);u.is_voting(s)||(u.has_user_voted(s)?u.update_vote_count(s,"remove"):u.update_vote_count(s,"add"))})},update_vote_count:function(e,t){var o=e.text(),r=e.attr("class");u.add_button_status_class(e,"voting"),e.text(jck_sfr_vars.il8n.voting+"...");var s=u.get_post_id(e),i=e.closest(".jck-sfr-vote-badge"),n=i.find(".jck-sfr-vote-badge__count strong"),c=i.find(".jck-sfr-vote-badge__count span"),a={action:"jck_sfr_update_vote_count",post_id:s,type:t,nonce:jck_sfr_vars.nonce};_.post(jck_sfr_vars.ajax_url,a,function(s){return s.success?("add"===t?(e.text(jck_sfr_vars.il8n.voted),u.add_button_status_class(e,"voted")):(u.remove_button_status_classes(e),e.text(jck_sfr_vars.il8n.vote)),n.text(s.votes),void c.text(s.votes_wording)):(u.display_notice(s.message,"error"),void e.attr("class",r).text(o))})},display_notice:function(s,e){alert(s)},get_post_id:function(s){return parseInt(s.data("jck-sfr-vote"))},has_user_voted:function(s){return s.hasClass(u.vars.button_status_classes.voted)},is_voting:function(s){return s.hasClass(u.vars.button_status_classes.voting)},add_button_status_class:function(s,e){u.remove_button_status_classes(s),s.addClass(u.vars.button_status_classes[e])},remove_button_status_classes:function(t){_.each(u.vars.button_status_classes,function(s,e){t.removeClass(e)})},setup_toggle_buttons:function(){_(r).on("click",u.vars.toggle_button_selector,function(){var s=_(this);_(".jck-sfr-js-toggle-"+s.data("jck-sfr-toggle")).toggle()})},setup_toggle_user_type:function(){_(r).on("click",u.vars.toggle_user_type_selector,function(){var s=_(this).data("jck-sfr-toggle-submission-user-type");_('[name="jck-sfr-login-user-type"]').val(s)})},setup_submission_form:function(){if(!(u.els.submission_form.form.length<=0)){u.els.submission_form.title.keypress(function(s){13===s.which&&s.preventDefault()});var e=null;u.els.submission_form.title.keyup(function(s){clearTimeout(e),e=setTimeout(function(){u.search_feature_requests(s.target.value)},500)}),u.els.submission_form.choices.post.on("click",function(){return u.reveal_submission_form(),!1}),_(".jck-sfr-js-clear-search-field").on("click",function(){u.els.submission_form.title.val("").keyup(),_(this).hide()})}},search_feature_requests:function(e){u.update_query_args("search",e),u.toggle_loader("show");var s={action:"jck_sfr_search_feature_requests", search:e,nonce:jck_sfr_vars.nonce,paged:jck_sfr_vars.paged};_.extend(s,u.get_url_parameters(window.location.href)),_.post(jck_sfr_vars.ajax_url,s,function(s){if(!s.success&&!s.html)return u.display_notice(s.message,"error"),void u.toggle_loader("hide");!s.success&&0<e.length?u.reveal_submission_form():u.hide_submission_form(),u.els.loop.container.html(s.html),u.replace_pagination(s.pagination),u.toggle_filters(s),u.toggle_choices(s),u.toggle_loader("hide")})},update_query_args:function(s,e){s=encodeURIComponent(s);var t=window.location.href,o=u.get_url_parameters(t);0<e.length?o[s]=e:delete o[s],t=t.split("?")[0],0<_.param(o).length&&(t+="?"+_.param(o)),window.history.pushState({key:s,value:e},r.title,t)},get_url_parameters:function(s){var e={},t=s.indexOf("?");if(-1===t)return e;for(var o=s.substring(t+1).split("&"),r=0;r<o.length;r++){var i=o[r].split("=");e[i[0]]=i[1]}return e},replace_pagination:function(s){_(".jck-sfr-pagination").length<=0||_(".jck-sfr-pagination").replaceWith(s)},toggle_filters:function(s){u.els.filters.hide(),s.search.length<=0&&u.els.filters.show()},toggle_choices:function(s){u.els.submission_form.choices.vote.show(),u.els.submission_form.choices.or.show(),u.els.submission_form.choices.post.show(),u.els.submission_form.choices.count.text(s.count),u.els.submission_form.choices.container.show(),(s.count<=0||s.search.length<=0)&&u.els.submission_form.choices.container.hide()},reveal_submission_form:function(){u.els.submission_form.choices.or.hide(),u.els.submission_form.choices.post.hide(),u.els.submission_form.reveal.show(),u.focus_submission_title()},hide_submission_form:function(){u.els.submission_form.reveal.hide()},focus_submission_title:function(){var s=u.els.submission_form.title.val();u.els.submission_form.title.focus(),u.els.submission_form.title.val("").val(s)},toggle_loader:function(s){void 0!==s&&("show"===s?(u.els.submission_form.clear.hide(),u.els.submission_form.loader.show()):(u.els.submission_form.loader.hide(),0<u.els.submission_form.title.val().length&&u.els.submission_form.clear.show()))}};_(r).ready(u.on_ready)}(jQuery,document);1 !function(_,r){var u={cache:function(){u.vars={},u.vars.vote_button_selector="[data-jck-sfr-vote]",u.vars.button_status_classes={voting:"jck-sfr-vote-button--voting",voted:"jck-sfr-vote-button--voted"},u.vars.toggle_button_selector="[data-jck-sfr-toggle]",u.vars.toggle_user_type_selector="[data-jck-sfr-toggle-submission-user-type]",u.els={},u.els.container=_(".jck-sfr-container"),u.els.filters=_(".jck-sfr-filters"),u.els.submission_form={form:_(".jck-sfr-form--submission"),title:_(".jck-sfr-form--submission .jck-sfr-form__title"),reveal:_(".jck-sfr-form--submission .jck-sfr-form__reveal"),loader:_(".jck-sfr-search-field__icon--loader"),clear:_(".jck-sfr-search-field__icon--clear"),choices:{container:_(".jck-sfr-form--submission .jck-sfr-form__choices"),count:_(".jck-sfr-form--submission .jck-sfr-form__choices-count"),vote:_(".jck-sfr-form--submission .jck-sfr-form__choices-vote"),or:_(".jck-sfr-form--submission .jck-sfr-form__choices-or"),post:_(".jck-sfr-form--submission .jck-sfr-form__choices-post")}},u.els.loop={container:_(".jck-sfr-content")}},on_ready:function(){u.cache(),u.setup_vote_buttons(),u.setup_toggle_buttons(),u.setup_toggle_user_type(),u.setup_submission_form()},setup_vote_buttons:function(){_(r).on("click",u.vars.vote_button_selector,function(){var s=_(this);u.is_voting(s)||(u.has_user_voted(s)?u.update_vote_count(s,"remove"):u.update_vote_count(s,"add"))})},update_vote_count:function(e,t){var o=e.text(),r=e.attr("class");u.add_button_status_class(e,"voting"),e.text(jck_sfr_vars.il8n.voting+"...");var s=u.get_post_id(e),i=e.closest(".jck-sfr-vote-badge"),n=i.find(".jck-sfr-vote-badge__count strong"),c=i.find(".jck-sfr-vote-badge__count span"),a={action:"jck_sfr_update_vote_count",post_id:s,type:t,nonce:jck_sfr_vars.nonce};_.post(jck_sfr_vars.ajax_url,a,function(s){return s.success?("add"===t?(e.text(jck_sfr_vars.il8n.voted),u.add_button_status_class(e,"voted")):(u.remove_button_status_classes(e),e.text(jck_sfr_vars.il8n.vote)),n.text(s.votes),void c.text(s.votes_wording)):(u.display_notice(s.message,"error"),void e.attr("class",r).text(o))})},display_notice:function(s,e){alert(s)},get_post_id:function(s){return parseInt(s.data("jck-sfr-vote"))},has_user_voted:function(s){return s.hasClass(u.vars.button_status_classes.voted)},is_voting:function(s){return s.hasClass(u.vars.button_status_classes.voting)},add_button_status_class:function(s,e){u.remove_button_status_classes(s),s.addClass(u.vars.button_status_classes[e])},remove_button_status_classes:function(t){_.each(u.vars.button_status_classes,function(s,e){t.removeClass(e)})},setup_toggle_buttons:function(){_(r).on("click",u.vars.toggle_button_selector,function(){var s=_(this);_(".jck-sfr-js-toggle-"+s.data("jck-sfr-toggle")).toggle()})},setup_toggle_user_type:function(){_(r).on("click",u.vars.toggle_user_type_selector,function(){var s=_(this).data("jck-sfr-toggle-submission-user-type");_('[name="jck-sfr-login-user-type"]').val(s)})},setup_submission_form:function(){if(!(u.els.submission_form.form.length<=0)){u.els.submission_form.title.keypress(function(s){13===s.which&&s.preventDefault()});var e=null;u.els.submission_form.title.keyup(function(s){clearTimeout(e),e=setTimeout(function(){u.search_feature_requests(s.target.value)},500)}),u.els.submission_form.choices.post.on("click",function(){return u.reveal_submission_form(),!1}),_(".jck-sfr-js-clear-search-field").on("click",function(){u.els.submission_form.title.val("").keyup(),_(this).hide()})}},search_feature_requests:function(e){u.update_query_args("search",e),u.toggle_loader("show");var s={action:"jck_sfr_search_feature_requests",nonce:jck_sfr_vars.nonce,paged:jck_sfr_vars.paged};_.extend(s,u.get_url_parameters(window.location.href)),s.search=e,_.post(jck_sfr_vars.ajax_url,s,function(s){if(!s.success&&!s.html)return u.display_notice(s.message,"error"),void u.toggle_loader("hide");!s.success&&0<e.length?u.reveal_submission_form():u.hide_submission_form(),u.els.loop.container.html(s.html),u.replace_pagination(s.pagination),u.toggle_filters(s),u.toggle_choices(s),u.toggle_loader("hide")})},update_query_args:function(s,e){s=encodeURIComponent(s);var t=window.location.href,o=u.get_url_parameters(t);0<e.length?o[s]=e:delete o[s],t=t.split("?")[0],0<_.param(o).length&&(t+="?"+_.param(o)),window.history.pushState({key:s,value:e},r.title,t)},get_url_parameters:function(s){var e={},t=s.indexOf("?");if(-1===t)return e;for(var o=s.substring(t+1).split("&"),r=0;r<o.length;r++){var i=o[r].split("=");e[i[0]]=i[1]}return e},replace_pagination:function(s){_(".jck-sfr-pagination").length<=0||_(".jck-sfr-pagination").replaceWith(s)},toggle_filters:function(s){u.els.filters.hide(),s.search.length<=0&&u.els.filters.show()},toggle_choices:function(s){u.els.submission_form.choices.vote.show(),u.els.submission_form.choices.or.show(),u.els.submission_form.choices.post.show(),u.els.submission_form.choices.count.text(s.count),u.els.submission_form.choices.container.show(),(s.count<=0||s.search.length<=0)&&u.els.submission_form.choices.container.hide()},reveal_submission_form:function(){u.els.submission_form.choices.or.hide(),u.els.submission_form.choices.post.hide(),u.els.submission_form.reveal.show(),u.focus_submission_title()},hide_submission_form:function(){u.els.submission_form.reveal.hide()},focus_submission_title:function(){var s=u.els.submission_form.title.val();u.els.submission_form.title.focus(),u.els.submission_form.title.val("").val(s)},toggle_loader:function(s){void 0!==s&&("show"===s?(u.els.submission_form.clear.hide(),u.els.submission_form.loader.show()):(u.els.submission_form.loader.hide(),0<u.els.submission_form.title.val().length&&u.els.submission_form.clear.show()))}};_(r).ready(u.on_ready)}(jQuery,document); -
simple-feature-requests/trunk/inc/class-ajax.php
r2202889 r2347084 77 77 $response['success'] = true; 78 78 $response['votes'] = $update_vote_count['updated_votes_count']; 79 $response['votes_wording'] = _n( 'vote', 'votes', $update_vote_count );79 $response['votes_wording'] = _n( 'vote', 'votes', $update_vote_count, 'simple-feature-requests' ); 80 80 81 81 wp_send_json( $response ); -
simple-feature-requests/trunk/inc/class-feature-request.php
r2282410 r2347084 108 108 109 109 /** 110 * Get author email. 111 * 112 * @return string 113 */ 114 public function get_author_email() { 115 return get_the_author_meta( 'email', $this->post->post_author ); 116 } 117 118 /** 110 119 * Get permalink. 111 120 * … … 259 268 public function get_vote_button_text() { 260 269 $has_voted = $this->has_user_voted(); 261 $text = $has_voted ? __( 'Voted', 'simple - feature - requests' ) : __( 'Vote', 'simple - feature -requests' );270 $text = $has_voted ? __( 'Voted', 'simple-feature-requests' ) : __( 'Vote', 'simple-feature-requests' ); 262 271 263 272 return apply_filters( 'jck_sfr_vote_button_text', $text, $has_voted, $this ); -
simple-feature-requests/trunk/inc/class-notifications.php
r2174500 r2347084 25 25 { 26 26 add_action( self::$process_queue_name, array( __CLASS__, 'process_email_queue' ) ); 27 add_action(28 'jck_sfr_post_created',29 array( __CLASS__, 'post_created' ),30 10,31 132 );33 27 } 34 28 … … 121 115 122 116 /** 123 * Post created. 124 * 125 * @param int $post_id 126 */ 127 public static function post_created( $post_id ) 128 { 129 $feature_request = new JCK_SFR_Feature_Request( $post_id ); 130 if ( $feature_request->post->post_status === 'draft' ) { 131 return; 132 } 133 $settings = JCK_SFR_Settings::get_settings(); 134 if ( empty($settings) ) { 135 return; 136 } 137 if ( empty($settings['notifications_events_status_change']) ) { 138 return; 139 } 140 $admin_email = get_bloginfo( 'admin_email' ); 141 $args = apply_filters( 'jck_sfr_email_args_post_created', array( 142 'to' => $admin_email, 143 'subject' => sprintf( __( 'New %s', 'simple-feature-requests' ), __( 'Feature Request', 'simple-feature-requests' ) ), 144 'message' => self::get_post_created_email( $feature_request ), 145 'headers' => array( 'Content-Type: text/html; charset=UTF-8', sprintf( 'From: %s <%s>', get_bloginfo( 'name' ), $admin_email ) ), 146 ), $feature_request ); 147 self::queue_wp_mail( $args ); 117 * Get notification email address. 118 */ 119 public static function get_notification_email_address( $type = 'to' ) 120 { 121 global $simple_feature_requests_licence ; 122 $default_email = get_option( 'admin_email' ); 123 return $default_email; 148 124 } 149 125 -
simple-feature-requests/trunk/inc/class-post-types.php
r2283980 r2347084 123 123 'menu_name' => __( 'All Requests', 'simple-feature-requests' ), 124 124 'key' => self::$key, 125 'supports' => array( 'title', 'editor', 'comments' ), 125 'show_in_rest' => true, 126 'supports' => array( 127 'title', 128 'editor', 129 'comments', 130 'author' 131 ), 126 132 'menu_icon' => 'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMCAyMCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3BhY2U9InByZXNlcnZlIiB4bWxuczpzZXJpZj0iaHR0cDovL3d3dy5zZXJpZi5jb20vIiBzdHlsZT0iZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7c3Ryb2tlLWxpbmVqb2luOnJvdW5kO3N0cm9rZS1taXRlcmxpbWl0OjI7Ij48cGF0aCBkPSJNMTEuNjA3LDIuOTUzYzAuMDgsLTAuMjIzIDAuMTc0LC0wLjQ0NCAwLjI4MywtMC42NjFjMC4yNzEsLTAuNTM5IDAuNjgzLC0xLjAzOSAxLjI5NiwtMS4yMjZjMC4wMjIsLTAuMDA2IDAuMDQ0LC0wLjAxMiAwLjA2NiwtMC4wMThjMC45NDcsLTAuMjMzIDEuOTAxLDAuNDI1IDIuNTA5LDEuMDI4YzEuNTg2LDEuNTczIDIuNDc2LDMuODA5IDIuOTc2LDYuMDM2YzAuNDYxLDIuMDU2IDAuNzA1LDQuMjc3IC0wLjIwMiw2LjIxNmMtMC4wMzIsMC4wNjggLTAuMDY1LDAuMTM1IC0wLjEwMSwwLjIwMmMtMC4zNDYsMC42MzggLTAuOTQ5LDEuMjEgLTEuNzU4LDEuMTk1Yy0wLjcyMywtMC4wMTQgLTEuMzQyLC0wLjM5IC0xLjg2MSwtMC44NzFjLTEuMjEsLTAuMzEzIC0yLjc4NSwtMC41NDUgLTQuMDM3LC0wLjU0MWMtMC4wMzksMC4zNDggLTAuNDk0LDMuMDgxIC0yLjEzOCw0LjUzM2MtMC4xNjMsMC4xNDQgLTAuODExLDAuNDk1IC0wLjY3NywtMC43OTVjMC4xMzksLTEuMzM3IC0wLjU2LC0zLjA4MSAtMi4xNTQsLTMuMDA0Yy0wLjU3NiwwLjAyOCAtMS4wOTgsMC4yNDYgLTEuNDI2LDAuMzUzYzAsMCAtMC4wMjEsMC4wMDMgLTAuMDU1LDAuMDA0Yy0wLjAzNywwLjAxNyAtMC4wNzUsMC4wMjkgLTAuMTE0LDAuMDM2Yy0yLjEzOSwwLjM3IC0zLjk5NSwtMy41MiAtMy4xNTcsLTYuMTMxYzAuMTk4LC0wLjYxNyAwLjU4LC0xLjI5OSAxLjI1MiwtMS40MDdjMC4zNjUsLTAuMTg3IDEuMDg0LC0wLjI0NSAxLjY1OSwtMC40MjRjMi44MjksLTAuODc5IDUuNTc2LC0yLjM5NCA3LjYzOSwtNC41MjVabTIuMjM4LDAuNDA4Yy0wLjUyOSwxLjE4NiAtMC40MSwyLjYwMyAtMC4xODgsMy45NjljMC4zMTIsMS45MjMgMC45NTksMy44NSAyLjE4LDUuMzUzYzAuMjA0LDAuMjUyIDAuNDI3LDAuNDkgMC42ODgsMC42OGMwLDAgMC4xMDMsLTAuMjQyIDAuMTUsLTAuNDFjMC40NDcsLTEuNjA5IDAuMTc5LC0zLjM4MiAtMC4yODMsLTUuMDQ2Yy0wLjQzMiwtMS41NTcgLTEuMDU3LC0zLjExOSAtMi4xOTgsLTQuMjUyYy0wLjEzOCwtMC4xMzcgLTAuMzM2LC0wLjMyNCAtMC4zNDksLTAuMjk0WiIgc3R5bGU9ImZpbGw6IzllYTNhODsiLz48L3N2Zz4=', 127 133 'show_in_menu' => 'jck-sfr-settings', … … 154 160 'show_in_menu' => true, 155 161 'show_in_nav_menus' => true, 162 'show_in_rest' => false, 156 163 'publicly_queryable' => true, 157 164 'exclude_from_search' => true, … … 187 194 'show_ui' => $options['show_ui'], 188 195 'show_in_menu' => $options['show_in_menu'], 196 'show_in_rest' => $options['show_in_rest'], 189 197 'menu_icon' => $options['menu_icon'], 190 198 'show_in_nav_menus' => $options['show_in_nav_menus'], … … 610 618 $user_id = get_current_user_id(); 611 619 $author_id = absint( $request->post->post_author ); 612 // If you are the author of this request .613 if ( $user_id === $author_id ) {620 // If you are the author of this request, or an admin. 621 if ( $user_id === $author_id || current_user_can( 'administrator' ) ) { 614 622 return; 615 623 } … … 724 732 public static function get_posts_per_page() 725 733 { 726 return apply_filters( 'jck_sfr_posts_per_page', 10 ); 734 $settings = JCK_SFR_Settings::get_settings(); 735 if ( empty($settings) || empty($settings['general_setup_ppp']) ) { 736 return apply_filters( 'jck_sfr_posts_per_page', 10 ); 737 } 738 return apply_filters( 'jck_sfr_posts_per_page', $settings['general_setup_ppp'] ); 727 739 } 728 740 … … 767 779 768 780 /** 781 * Get main requests menu name with count. 782 * 783 * @return string 784 */ 785 public static function get_menu_title() 786 { 787 $title = __( 'Requests', 'simple-feature-requests' ); 788 $pending = JCK_SFR_Query::count_pending_requests(); 789 if ( empty($pending) ) { 790 return $title; 791 } 792 return sprintf( 793 '%s <span class="update-plugins count-%d"><span class="plugin-count">%d</span></span>', 794 $title, 795 esc_attr( $pending ), 796 $pending 797 ); 798 } 799 800 /** 769 801 * Set single page template to same as archive page. 770 802 * -
simple-feature-requests/trunk/inc/class-query.php
r2282410 r2347084 72 72 73 73 /** 74 * Count pending requests. 75 * 76 * @return int 77 */ 78 public static function count_pending_requests() 79 { 80 global $wpdb ; 81 static $count = null ; 82 if ( !is_null( $count ) ) { 83 return apply_filters( 'jck_sfr_pending_count', $count ); 84 } 85 $count = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM {$wpdb->posts} AS posts\n\t\t\t\tLEFT JOIN {$wpdb->postmeta} AS postmeta ON postmeta.post_id = posts.ID\n\t\t\t\tWHERE posts.post_type = %s\n\t\t\t\tAND postmeta.meta_key = 'jck_sfr_status'\n\t\t\t\tAND postmeta.meta_value = 'pending'", self::$post_type ) ); 86 if ( empty($count) || is_wp_error( $count ) ) { 87 return 0; 88 } 89 $count = absint( $count ); 90 return apply_filters( 'jck_sfr_pending_count', $count ); 91 } 92 93 /** 74 94 * Get requests ordered by status. 75 95 * … … 171 191 $meta_query['status']['value'][] = 'pending'; 172 192 } 193 $viewable_statuses = jck_sfr_get_viewable_statuses(); 173 194 174 if ( $status ) {195 if ( $status && in_array( $status, $viewable_statuses, true ) ) { 175 196 $meta_query['status']['value'] = array( $status ); 176 197 $meta_query['status']['compare'] = 'IN'; -
simple-feature-requests/trunk/inc/class-settings.php
r2282410 r2347084 257 257 'default' => JCK_Simple_Feature_Requests::get_pro_button(), 258 258 ); 259 $settings['sections']['general_setup']['fields']['ppp'] = array( 260 'id' => 'ppp', 261 'title' => __( 'Requests Per Page', 'simple-feature-requests' ), 262 'subtitle' => __( 'How many requests to show per page in the archive.', 'simple-feature-requests' ), 263 'type' => 'custom', 264 'default' => JCK_Simple_Feature_Requests::get_pro_button(), 265 ); 266 $settings['sections']['notifications_admin'] = array( 267 'tab_id' => 'notifications', 268 'section_id' => 'admin', 269 'section_title' => __( 'Admin', 'simple-feature-requests' ), 270 'section_description' => '', 271 'section_order' => 10, 272 'fields' => array( array( 273 'id' => 'emails', 274 'title' => __( 'Email Addresses', 'simple-feature-requests' ), 275 'subtitle' => __( 'Set the admin email addresses for sending and receiving email notifications.', 'simple-feature-requests' ), 276 'type' => 'custom', 277 'default' => JCK_Simple_Feature_Requests::get_pro_button(), 278 ) ), 279 ); 259 280 $settings['sections']['notifications_events'] = array( 260 281 'tab_id' => 'notifications', … … 264 285 'section_order' => 10, 265 286 'fields' => array( array( 266 'id' => 'upgrade', 287 'id' => 'admin_upgrade', 288 'title' => __( 'New Request', 'simple-feature-requests' ), 289 'subtitle' => __( 'Send a notification to the admin email address when a new request is added.', 'simple-feature-requests' ), 290 'type' => 'custom', 291 'default' => JCK_Simple_Feature_Requests::get_pro_button(), 292 ), array( 293 'id' => 'status_change_upgrade', 267 294 'title' => __( 'Status Change', 'simple-feature-requests' ), 268 295 'subtitle' => __( 'Send a notification when the request status changes.', 'simple-feature-requests' ), 296 'type' => 'custom', 297 'default' => JCK_Simple_Feature_Requests::get_pro_button(), 298 ), array( 299 'id' => 'comment_upgrade', 300 'title' => __( 'Comment', 'simple-feature-requests' ), 301 'subtitle' => __( 'Send a notification when a new comment is added to the request.', 'simple-feature-requests' ), 269 302 'type' => 'custom', 270 303 'default' => JCK_Simple_Feature_Requests::get_pro_button(), -
simple-feature-requests/trunk/inc/class-template-methods.php
r2282410 r2347084 108 108 $base_url = jck_sfr_get_archive_url_with_filters( array( $filter['key'], 'search' ) ); 109 109 $selected = filter_input( INPUT_GET, $filter['key'] ); 110 $option_keys = array_keys( $filter['options'] ); 111 $selected = ( in_array( $selected, $option_keys, true ) ? $selected : false ); 110 112 ?> 111 113 <span class="jck-sfr-filters__filter-item-button <?php … … 336 338 <span class="jck-sfr-comment-count jck-sfr-u-nowrap"> 337 339 <?php 338 printf( _n( '%d comment', '%d comments', $comment_count ), $comment_count ); 340 printf( _n( 341 '%d comment', 342 '%d comments', 343 $comment_count, 344 'simple-feature-requests' 345 ), $comment_count ); 339 346 ?> 340 347 </span> -
simple-feature-requests/trunk/inc/class-user.php
r2202889 r2347084 58 58 59 59 /** 60 * Redirect subscribers .60 * Redirect subscribers and contributors. 61 61 */ 62 62 public static function redirect_voters() … … 64 64 $user = wp_get_current_user(); 65 65 $role = ( !empty($user->roles) ? $user->roles[0] : false ); 66 if ( $role !== 'subscriber'|| defined( 'DOING_AJAX' ) && DOING_AJAX ) {66 if ( !in_array( $role, array( 'subscriber', 'contributor' ) ) || defined( 'DOING_AJAX' ) && DOING_AJAX ) { 67 67 return; 68 68 } … … 427 427 return false; 428 428 } 429 $user_id = wp_create_user( $username, $password, $email ); 429 $user_id = wp_insert_user( array( 430 'user_login' => wp_slash( $username ), 431 'user_email' => wp_slash( $email ), 432 'user_pass' => $password, 433 'role' => 'contributor', 434 ) ); 430 435 431 436 if ( !$user_id || is_wp_error( $user_id ) ) { -
simple-feature-requests/trunk/inc/functions.php
r2282410 r2347084 14 14 function jck_sfr_get_statuses( $excludes = array() ) { 15 15 $statuses = apply_filters( 'jck_sfr_statuses', array( 16 'pending' => __( 'Pending', ' jck_sfr' ),17 'publish' => __( 'Published', ' jck_sfr' ),18 'under-review' => __( 'Under Review', ' jck_sfr' ),19 'planned' => __( 'Planned', ' jck_sfr' ),20 'started' => __( 'Started', ' jck_sfr' ),21 'completed' => __( 'Completed', ' jck_sfr' ),22 'declined' => __( 'Declined', ' jck_sfr' ),16 'pending' => __( 'Pending', 'simple-feature-requests' ), 17 'publish' => __( 'Published', 'simple-feature-requests' ), 18 'under-review' => __( 'Under Review', 'simple-feature-requests' ), 19 'planned' => __( 'Planned', 'simple-feature-requests' ), 20 'started' => __( 'Started', 'simple-feature-requests' ), 21 'completed' => __( 'Completed', 'simple-feature-requests' ), 22 'declined' => __( 'Declined', 'simple-feature-requests' ), 23 23 ) ); 24 24 … … 30 30 31 31 return $statuses; 32 } 33 34 /** 35 * Get viewable statuses. 36 * 37 * @return array 38 */ 39 function jck_sfr_get_viewable_statuses() { 40 $statuses = jck_sfr_get_statuses(); 41 42 if ( ! is_user_logged_in() ) { 43 unset( $statuses['pending'] ); 44 } 45 46 $statuses = array_keys( $statuses ); 47 48 return apply_filters( 'jck_sfr_viewable_statuses', $statuses ); 32 49 } 33 50 -
simple-feature-requests/trunk/languages/simple-feature-requests.pot
r2282410 r2347084 14 14 "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 15 16 #: simple-feature-requests.php:1 58, simple-feature-requests.php:161, inc/class-settings.php:38, svn/trunk/simple-feature-requests.php:143, svn/trunk/simple-feature-requests.php:146, svn/tags/1.0.4/simple-feature-requests.php:132, svn/tags/1.0.4/simple-feature-requests.php:135, svn/tags/1.0.5/simple-feature-requests.php:131, svn/tags/1.0.5/simple-feature-requests.php:134, svn/tags/1.0.6/simple-feature-requests.php:131, svn/tags/1.0.6/simple-feature-requests.php:134, svn/tags/2.0.0/simple-feature-requests.php:143, svn/tags/2.0.0/simple-feature-requests.php:146, svn/tags/2.0.1/simple-feature-requests.php:143, svn/tags/2.0.1/simple-feature-requests.php:146, svn/trunk/inc/class-settings.php:51, svn/tags/1.0.4/inc/class-settings.php:45, svn/tags/1.0.5/inc/class-settings.php:45, svn/tags/1.0.5/trunk/simple-feature-requests.php:131, svn/tags/1.0.5/trunk/simple-feature-requests.php:134, svn/tags/1.0.6/inc/class-settings.php:46, svn/tags/2.0.0/inc/class-settings.php:51, svn/tags/2.0.1/inc/class-settings.php:51, svn/tags/1.0.5/trunk/inc/class-settings.php:4516 #: simple-feature-requests.php:162, simple-feature-requests.php:165, inc/class-settings.php:38, svn/trunk/simple-feature-requests.php:142, svn/trunk/simple-feature-requests.php:145, svn/tags/1.0.4/simple-feature-requests.php:132, svn/tags/1.0.4/simple-feature-requests.php:135, svn/tags/1.0.5/simple-feature-requests.php:131, svn/tags/1.0.5/simple-feature-requests.php:134, svn/tags/1.0.6/simple-feature-requests.php:131, svn/tags/1.0.6/simple-feature-requests.php:134, svn/tags/2.0.0/simple-feature-requests.php:143, svn/tags/2.0.0/simple-feature-requests.php:146, svn/tags/2.0.1/simple-feature-requests.php:143, svn/tags/2.0.1/simple-feature-requests.php:146, svn/tags/2.1.0/simple-feature-requests.php:143, svn/tags/2.1.0/simple-feature-requests.php:146, svn/tags/2.1.1/simple-feature-requests.php:142, svn/tags/2.1.1/simple-feature-requests.php:145, svn/trunk/inc/class-settings.php:51, svn/tags/1.0.4/inc/class-settings.php:45, svn/tags/1.0.5/inc/class-settings.php:45, svn/tags/1.0.5/trunk/simple-feature-requests.php:131, svn/tags/1.0.5/trunk/simple-feature-requests.php:134, svn/tags/1.0.6/inc/class-settings.php:46, svn/tags/2.0.0/inc/class-settings.php:51, svn/tags/2.0.1/inc/class-settings.php:51, svn/tags/2.1.0/inc/class-settings.php:51, svn/tags/2.1.1/inc/class-settings.php:51, svn/tags/1.0.5/trunk/inc/class-settings.php:45 17 17 msgid "Simple Feature Requests" 18 18 msgstr "" 19 19 20 #: simple-feature-requests.php:160, inc/class-post-types.php:725, svn/trunk/simple-feature-requests.php:145, svn/tags/1.0.4/simple-feature-requests.php:134, svn/tags/1.0.5/simple-feature-requests.php:133, svn/tags/1.0.6/simple-feature-requests.php:133, svn/tags/2.0.0/simple-feature-requests.php:145, svn/tags/2.0.1/simple-feature-requests.php:145, svn/trunk/inc/class-post-types.php:730, svn/tags/1.0.0/inc/class-post-types.php:32, svn/tags/1.0.1/inc/class-post-types.php:32, svn/tags/1.0.2/inc/class-post-types.php:32, svn/tags/1.0.3/inc/class-post-types.php:32, svn/tags/1.0.5/trunk/simple-feature-requests.php:133, svn/tags/2.0.0/inc/class-post-types.php:726, svn/tags/2.0.1/inc/class-post-types.php:730 20 #: simple-feature-requests.php:198, svn/trunk/simple-feature-requests.php:178, svn/tags/2.0.0/simple-feature-requests.php:177, svn/tags/2.0.1/simple-feature-requests.php:178, svn/tags/2.1.0/simple-feature-requests.php:179, svn/tags/2.1.1/simple-feature-requests.php:178 21 msgid "Available in Pro" 22 msgstr "" 23 24 #: inc/class-ajax.php:49, inc/class-ajax.php:102, svn/trunk/inc/class-ajax.php:49, svn/trunk/inc/class-ajax.php:102, svn/tags/1.0.0/inc/class-ajax.php:49, svn/tags/1.0.0/inc/class-ajax.php:104, svn/tags/1.0.1/inc/class-ajax.php:49, svn/tags/1.0.1/inc/class-ajax.php:104, svn/tags/1.0.2/inc/class-ajax.php:49, svn/tags/1.0.2/inc/class-ajax.php:104, svn/tags/1.0.3/inc/class-ajax.php:49, svn/tags/1.0.3/inc/class-ajax.php:104, svn/tags/1.0.4/inc/class-ajax.php:49, svn/tags/1.0.4/inc/class-ajax.php:104, svn/tags/1.0.5/inc/class-ajax.php:49, svn/tags/1.0.5/inc/class-ajax.php:104, svn/tags/1.0.6/inc/class-ajax.php:49, svn/tags/1.0.6/inc/class-ajax.php:104, svn/tags/2.0.0/inc/class-ajax.php:49, svn/tags/2.0.0/inc/class-ajax.php:102, svn/tags/2.0.1/inc/class-ajax.php:49, svn/tags/2.0.1/inc/class-ajax.php:102, svn/tags/2.1.0/inc/class-ajax.php:49, svn/tags/2.1.0/inc/class-ajax.php:102, svn/tags/2.1.1/inc/class-ajax.php:49, svn/tags/2.1.1/inc/class-ajax.php:102, svn/tags/1.0.5/trunk/inc/class-ajax.php:49, svn/tags/1.0.5/trunk/inc/class-ajax.php:104 25 msgid "Nonce check failed." 26 msgstr "" 27 28 #: inc/class-ajax.php:57, svn/trunk/inc/class-ajax.php:57, svn/tags/1.0.0/inc/class-ajax.php:57, svn/tags/1.0.1/inc/class-ajax.php:57, svn/tags/1.0.2/inc/class-ajax.php:57, svn/tags/1.0.3/inc/class-ajax.php:57, svn/tags/1.0.4/inc/class-ajax.php:57, svn/tags/1.0.5/inc/class-ajax.php:57, svn/tags/1.0.6/inc/class-ajax.php:57, svn/tags/2.0.0/inc/class-ajax.php:57, svn/tags/2.0.1/inc/class-ajax.php:57, svn/tags/2.1.0/inc/class-ajax.php:57, svn/tags/2.1.1/inc/class-ajax.php:57, svn/tags/1.0.5/trunk/inc/class-ajax.php:57 29 msgid "Simple Feature Requests: No post ID sent to AJAX." 30 msgstr "" 31 32 #: inc/class-ajax.php:64, svn/trunk/inc/class-ajax.php:64, svn/tags/1.0.0/inc/class-ajax.php:64, svn/tags/1.0.1/inc/class-ajax.php:64, svn/tags/1.0.2/inc/class-ajax.php:64, svn/tags/1.0.3/inc/class-ajax.php:64, svn/tags/1.0.4/inc/class-ajax.php:64, svn/tags/1.0.5/inc/class-ajax.php:64, svn/tags/1.0.6/inc/class-ajax.php:64, svn/tags/2.0.0/inc/class-ajax.php:64, svn/tags/2.0.1/inc/class-ajax.php:64, svn/tags/2.1.0/inc/class-ajax.php:64, svn/tags/2.1.1/inc/class-ajax.php:64, svn/tags/1.0.5/trunk/inc/class-ajax.php:64 33 msgid "Simple Feature Requests: No post found for ID %d" 34 msgstr "" 35 36 #: inc/class-ajax.php:79, inc/class-template-methods.php:149, svn/trunk/inc/class-template-methods.php:193, svn/tags/1.0.0/inc/class-template-methods.php:79, svn/tags/1.0.1/inc/class-template-methods.php:79, svn/tags/1.0.2/inc/class-template-methods.php:147, svn/tags/1.0.3/inc/class-template-methods.php:147, svn/tags/1.0.4/inc/class-template-methods.php:190, svn/tags/1.0.5/inc/class-template-methods.php:190, svn/tags/1.0.6/inc/class-template-methods.php:190, svn/tags/2.0.0/inc/class-template-methods.php:190, svn/tags/2.0.1/inc/class-template-methods.php:190, svn/tags/2.1.0/inc/class-template-methods.php:193, svn/tags/2.1.1/inc/class-template-methods.php:193, svn/tags/1.0.5/trunk/inc/class-template-methods.php:190 37 msgid "vote" 38 msgid_plural "votes" 39 msgstr[0] "" 40 msgstr[1] "" 41 42 #: inc/class-assets.php:44, inc/class-feature-request.php:270, svn/trunk/inc/class-assets.php:44, svn/tags/1.0.0/inc/class-assets.php:43, svn/tags/1.0.1/inc/class-assets.php:43, svn/tags/1.0.2/inc/class-assets.php:43, svn/tags/1.0.3/inc/class-assets.php:43, svn/tags/1.0.4/inc/class-assets.php:43, svn/tags/1.0.5/inc/class-assets.php:43, svn/tags/1.0.6/inc/class-assets.php:43, svn/tags/2.0.0/inc/class-assets.php:44, svn/tags/2.0.1/inc/class-assets.php:44, svn/tags/2.1.0/inc/class-assets.php:44, svn/tags/2.1.1/inc/class-assets.php:44, svn/tags/1.0.5/trunk/inc/class-assets.php:43 43 msgid "Vote" 44 msgstr "" 45 46 #: inc/class-assets.php:45, svn/trunk/inc/class-assets.php:45, svn/tags/1.0.0/inc/class-assets.php:44, svn/tags/1.0.1/inc/class-assets.php:44, svn/tags/1.0.2/inc/class-assets.php:44, svn/tags/1.0.3/inc/class-assets.php:44, svn/tags/1.0.4/inc/class-assets.php:44, svn/tags/1.0.5/inc/class-assets.php:44, svn/tags/1.0.6/inc/class-assets.php:44, svn/tags/2.0.0/inc/class-assets.php:45, svn/tags/2.0.1/inc/class-assets.php:45, svn/tags/2.1.0/inc/class-assets.php:45, svn/tags/2.1.1/inc/class-assets.php:45, svn/tags/1.0.5/trunk/inc/class-assets.php:44 47 msgid "Voting" 48 msgstr "" 49 50 #: inc/class-assets.php:46, inc/class-feature-request.php:270, svn/trunk/inc/class-assets.php:46, svn/tags/1.0.0/inc/class-assets.php:45, svn/tags/1.0.1/inc/class-assets.php:45, svn/tags/1.0.2/inc/class-assets.php:45, svn/tags/1.0.3/inc/class-assets.php:45, svn/tags/1.0.4/inc/class-assets.php:45, svn/tags/1.0.5/inc/class-assets.php:45, svn/tags/1.0.6/inc/class-assets.php:45, svn/tags/2.0.0/inc/class-assets.php:46, svn/tags/2.0.1/inc/class-assets.php:46, svn/tags/2.1.0/inc/class-assets.php:46, svn/tags/2.1.1/inc/class-assets.php:46, svn/tags/1.0.5/trunk/inc/class-assets.php:45 51 msgid "Voted" 52 msgstr "" 53 54 #: inc/class-core-cross-sells.php:70, svn/trunk/inc/class-core-cross-sells.php:70, svn/tags/1.0.4/inc/class-core-cross-sells.php:69, svn/tags/1.0.5/inc/class-core-cross-sells.php:69, svn/tags/1.0.6/inc/class-core-cross-sells.php:69, svn/tags/2.0.0/inc/class-core-cross-sells.php:69, svn/tags/2.0.1/inc/class-core-cross-sells.php:69, svn/tags/2.1.0/inc/class-core-cross-sells.php:70, svn/tags/2.1.1/inc/class-core-cross-sells.php:70, svn/tags/1.0.5/trunk/inc/class-core-cross-sells.php:69 55 msgid "Display individual product variations of a variable product in your product listings. Make it easy for your customers to view and filter product variations." 56 msgstr "" 57 58 #: inc/class-core-cross-sells.php:81, svn/trunk/inc/class-core-cross-sells.php:81, svn/tags/1.0.4/inc/class-core-cross-sells.php:80, svn/tags/1.0.5/inc/class-core-cross-sells.php:80, svn/tags/1.0.6/inc/class-core-cross-sells.php:80, svn/tags/2.0.0/inc/class-core-cross-sells.php:80, svn/tags/2.0.1/inc/class-core-cross-sells.php:80, svn/tags/2.1.0/inc/class-core-cross-sells.php:81, svn/tags/2.1.1/inc/class-core-cross-sells.php:81, svn/tags/1.0.5/trunk/inc/class-core-cross-sells.php:80 59 msgid "Enable zoom, sliders, video, fullscreen, multiple images per variation, and customisable layout options for your product imagery." 60 msgstr "" 61 62 #: inc/class-core-cross-sells.php:92, svn/trunk/inc/class-core-cross-sells.php:92, svn/tags/1.0.4/inc/class-core-cross-sells.php:91, svn/tags/1.0.5/inc/class-core-cross-sells.php:91, svn/tags/1.0.6/inc/class-core-cross-sells.php:91, svn/tags/2.0.0/inc/class-core-cross-sells.php:91, svn/tags/2.0.1/inc/class-core-cross-sells.php:91, svn/tags/2.1.0/inc/class-core-cross-sells.php:92, svn/tags/2.1.1/inc/class-core-cross-sells.php:92, svn/tags/1.0.5/trunk/inc/class-core-cross-sells.php:91 63 msgid "Choose a delivery date and time for each order. Add a limit to the number of allowed reservations, restrict time slots to specific delivery methods, and so much more." 64 msgstr "" 65 66 #: inc/class-core-cross-sells.php:103, svn/trunk/inc/class-core-cross-sells.php:103, svn/tags/1.0.4/inc/class-core-cross-sells.php:102, svn/tags/1.0.5/inc/class-core-cross-sells.php:102, svn/tags/1.0.6/inc/class-core-cross-sells.php:102, svn/tags/2.0.0/inc/class-core-cross-sells.php:102, svn/tags/2.0.1/inc/class-core-cross-sells.php:102, svn/tags/2.1.0/inc/class-core-cross-sells.php:103, svn/tags/2.1.1/inc/class-core-cross-sells.php:103, svn/tags/1.0.5/trunk/inc/class-core-cross-sells.php:102 67 msgid "Link a group of WooCommerce products together by their attributes; a new way to handle product variations." 68 msgstr "" 69 70 #: inc/class-core-cross-sells.php:114, svn/trunk/inc/class-core-cross-sells.php:114, svn/tags/1.0.4/inc/class-core-cross-sells.php:113, svn/tags/1.0.5/inc/class-core-cross-sells.php:113, svn/tags/1.0.6/inc/class-core-cross-sells.php:113, svn/tags/2.0.0/inc/class-core-cross-sells.php:113, svn/tags/2.0.1/inc/class-core-cross-sells.php:113, svn/tags/2.1.0/inc/class-core-cross-sells.php:114, svn/tags/2.1.1/inc/class-core-cross-sells.php:114, svn/tags/1.0.5/trunk/inc/class-core-cross-sells.php:113 71 msgid "Use transparent image layers for your variable products, removing the need to create hundreds of final product variation images." 72 msgstr "" 73 74 #: inc/class-core-cross-sells.php:125, svn/trunk/inc/class-core-cross-sells.php:125, svn/tags/1.0.4/inc/class-core-cross-sells.php:124, svn/tags/1.0.5/inc/class-core-cross-sells.php:124, svn/tags/1.0.6/inc/class-core-cross-sells.php:124, svn/tags/2.0.0/inc/class-core-cross-sells.php:124, svn/tags/2.0.1/inc/class-core-cross-sells.php:124, svn/tags/2.1.0/inc/class-core-cross-sells.php:125, svn/tags/2.1.1/inc/class-core-cross-sells.php:125, svn/tags/1.0.5/trunk/inc/class-core-cross-sells.php:124 75 msgid "A modern take on quick view for WooCommerce; expand product details within your product listings for a convenient shopping experience." 76 msgstr "" 77 78 #: inc/class-core-cross-sells.php:132, svn/trunk/inc/class-core-cross-sells.php:132, svn/tags/1.0.4/inc/class-core-cross-sells.php:131, svn/tags/1.0.5/inc/class-core-cross-sells.php:131, svn/tags/1.0.6/inc/class-core-cross-sells.php:131, svn/tags/2.0.0/inc/class-core-cross-sells.php:131, svn/tags/2.0.1/inc/class-core-cross-sells.php:131, svn/tags/2.1.0/inc/class-core-cross-sells.php:132, svn/tags/2.1.1/inc/class-core-cross-sells.php:132, svn/tags/1.0.5/trunk/inc/class-core-cross-sells.php:131 79 msgid "Add and manage pages in your WooCommerce \"My Account\" area using the native WordPress \"Pages\" functionality." 80 msgstr "" 81 82 #: inc/class-core-cross-sells.php:139, svn/trunk/inc/class-core-cross-sells.php:139, svn/tags/1.0.4/inc/class-core-cross-sells.php:138, svn/tags/1.0.5/inc/class-core-cross-sells.php:138, svn/tags/1.0.6/inc/class-core-cross-sells.php:138, svn/tags/2.0.0/inc/class-core-cross-sells.php:138, svn/tags/2.0.1/inc/class-core-cross-sells.php:138, svn/tags/2.1.0/inc/class-core-cross-sells.php:139, svn/tags/2.1.1/inc/class-core-cross-sells.php:139, svn/tags/1.0.5/trunk/inc/class-core-cross-sells.php:138 83 msgid "Quickly view any product from the catalog, without reloading the page. Encourage sales with easy and efficient product browsing." 84 msgstr "" 85 86 #: inc/class-core-cross-sells.php:150, svn/trunk/inc/class-core-cross-sells.php:150, svn/tags/1.0.4/inc/class-core-cross-sells.php:149, svn/tags/1.0.5/inc/class-core-cross-sells.php:149, svn/tags/1.0.6/inc/class-core-cross-sells.php:149, svn/tags/2.0.0/inc/class-core-cross-sells.php:149, svn/tags/2.0.1/inc/class-core-cross-sells.php:149, svn/tags/2.1.0/inc/class-core-cross-sells.php:150, svn/tags/2.1.1/inc/class-core-cross-sells.php:150, svn/tags/1.0.5/trunk/inc/class-core-cross-sells.php:149 87 msgid "Bored of the standard dropdown fields when viewing a variable product? Turn them into colour, image, or text swatches!" 88 msgstr "" 89 90 #: inc/class-core-cross-sells.php:161, svn/trunk/inc/class-core-cross-sells.php:161, svn/tags/1.0.4/inc/class-core-cross-sells.php:160, svn/tags/1.0.5/inc/class-core-cross-sells.php:160, svn/tags/1.0.6/inc/class-core-cross-sells.php:160, svn/tags/2.0.0/inc/class-core-cross-sells.php:160, svn/tags/2.0.1/inc/class-core-cross-sells.php:160, svn/tags/2.1.0/inc/class-core-cross-sells.php:161, svn/tags/2.1.1/inc/class-core-cross-sells.php:161, svn/tags/1.0.5/trunk/inc/class-core-cross-sells.php:160 91 msgid "Easily add custom fields to your product variations; the perfect way to display organised additional product data to your customers." 92 msgstr "" 93 94 #: inc/class-core-cross-sells.php:168, svn/trunk/inc/class-core-cross-sells.php:168, svn/tags/1.0.4/inc/class-core-cross-sells.php:167, svn/tags/1.0.5/inc/class-core-cross-sells.php:167, svn/tags/1.0.6/inc/class-core-cross-sells.php:167, svn/tags/2.0.0/inc/class-core-cross-sells.php:167, svn/tags/2.0.1/inc/class-core-cross-sells.php:167, svn/tags/2.1.0/inc/class-core-cross-sells.php:168, svn/tags/2.1.1/inc/class-core-cross-sells.php:168, svn/tags/1.0.5/trunk/inc/class-core-cross-sells.php:167 95 msgid "Bundle a selection of products on a single product page. It even works with variable products!" 96 msgstr "" 97 98 #: inc/class-core-cross-sells.php:232, svn/trunk/inc/class-core-cross-sells.php:232, svn/tags/1.0.4/inc/class-core-cross-sells.php:231, svn/tags/1.0.5/inc/class-core-cross-sells.php:231, svn/tags/1.0.6/inc/class-core-cross-sells.php:231, svn/tags/2.0.0/inc/class-core-cross-sells.php:231, svn/tags/2.0.1/inc/class-core-cross-sells.php:231, svn/tags/2.1.0/inc/class-core-cross-sells.php:232, svn/tags/2.1.1/inc/class-core-cross-sells.php:232, svn/tags/1.0.5/trunk/inc/class-core-cross-sells.php:231 99 msgid "Learn More" 100 msgstr "" 101 102 #: inc/class-core-cross-sells.php:241, svn/trunk/inc/class-core-cross-sells.php:241, svn/tags/1.0.4/inc/class-core-cross-sells.php:240, svn/tags/1.0.5/inc/class-core-cross-sells.php:240, svn/tags/1.0.6/inc/class-core-cross-sells.php:240, svn/tags/2.0.0/inc/class-core-cross-sells.php:240, svn/tags/2.0.1/inc/class-core-cross-sells.php:240, svn/tags/2.1.0/inc/class-core-cross-sells.php:241, svn/tags/2.1.1/inc/class-core-cross-sells.php:241, svn/tags/1.0.5/trunk/inc/class-core-cross-sells.php:240 103 msgid "View All Iconic Plugins" 104 msgstr "" 105 106 #: inc/class-core-cross-sells.php:246, svn/trunk/inc/class-core-cross-sells.php:246, svn/tags/2.1.0/inc/class-core-cross-sells.php:246, svn/tags/2.1.1/inc/class-core-cross-sells.php:246 107 msgid "Trusted by over 10,000 WooCommerce Businesses and Online Shops" 108 msgstr "" 109 110 #: inc/class-core-licence.php:171, svn/trunk/inc/class-core-licence.php:177, svn/tags/1.0.4/inc/class-core-licence.php:177, svn/tags/1.0.5/inc/class-core-licence.php:177, svn/tags/1.0.6/inc/class-core-licence.php:177, svn/tags/2.0.0/inc/class-core-licence.php:177, svn/tags/2.0.1/inc/class-core-licence.php:177, svn/tags/2.1.0/inc/class-core-licence.php:177, svn/tags/2.1.1/inc/class-core-licence.php:177, svn/tags/1.0.5/trunk/inc/class-core-licence.php:177 111 msgid "Back to Settings" 112 msgstr "" 113 114 #: inc/class-core-licence.php:197, svn/trunk/inc/class-core-licence.php:206, svn/tags/1.0.4/inc/class-core-licence.php:206, svn/tags/1.0.5/inc/class-core-licence.php:206, svn/tags/1.0.6/inc/class-core-licence.php:206, svn/tags/2.0.0/inc/class-core-licence.php:206, svn/tags/2.0.1/inc/class-core-licence.php:206, svn/tags/2.1.0/inc/class-core-licence.php:206, svn/tags/2.1.1/inc/class-core-licence.php:206, svn/tags/1.0.5/trunk/inc/class-core-licence.php:206 115 msgid "Changelog" 116 msgstr "" 117 118 #: inc/class-core-licence.php:208, svn/trunk/inc/class-core-licence.php:217, svn/tags/1.0.4/inc/class-core-licence.php:217, svn/tags/1.0.5/inc/class-core-licence.php:217, svn/tags/1.0.6/inc/class-core-licence.php:217, svn/tags/2.0.0/inc/class-core-licence.php:217, svn/tags/2.0.1/inc/class-core-licence.php:217, svn/tags/2.1.0/inc/class-core-licence.php:217, svn/tags/2.1.1/inc/class-core-licence.php:217, svn/tags/1.0.5/trunk/inc/class-core-licence.php:217 119 msgid "Manage Licence & Billing" 120 msgstr "" 121 122 #. translators: Plugin name, plugin url. 123 #. translators: Plugin name, plugin url. 124 #. translators: Plugin name, plugin url. 125 #. translators: Plugin name, plugin url. 126 #: inc/class-core-settings.php:228, svn/trunk/inc/class-core-settings.php:228, svn/tags/2.1.0/inc/class-core-settings.php:228, svn/tags/2.1.1/inc/class-core-settings.php:228 127 msgid "Thank you for installing %1$s. Check out the <a href=\"%2$s\">plugin dashboard</a>." 128 msgstr "" 129 130 #: inc/class-core-settings.php:324, svn/trunk/inc/class-core-settings.php:324, svn/tags/1.0.4/inc/class-core-settings.php:259, svn/tags/1.0.5/inc/class-core-settings.php:259, svn/tags/1.0.6/inc/class-core-settings.php:307, svn/tags/2.0.0/inc/class-core-settings.php:307, svn/tags/2.0.1/inc/class-core-settings.php:307, svn/tags/2.1.0/inc/class-core-settings.php:324, svn/tags/2.1.1/inc/class-core-settings.php:324, svn/tags/1.0.5/trunk/inc/class-core-settings.php:259 131 msgid "Thank you for choosing Iconic. We've put together some useful links to help you get started:" 132 msgstr "" 133 134 #: inc/class-core-settings.php:329, svn/trunk/inc/class-core-settings.php:329, svn/tags/1.0.6/inc/class-core-settings.php:311, svn/tags/2.0.0/inc/class-core-settings.php:311, svn/tags/2.0.1/inc/class-core-settings.php:311, svn/tags/2.1.0/inc/class-core-settings.php:329, svn/tags/2.1.1/inc/class-core-settings.php:329 135 msgid "Need some help?" 136 msgstr "" 137 138 #. translators: Documentation URL. 139 #. translators: Documentation URL. 140 #. translators: Documentation URL. 141 #. translators: Documentation URL. 142 #: inc/class-core-settings.php:333, svn/trunk/inc/class-core-settings.php:333, svn/tags/2.1.0/inc/class-core-settings.php:333, svn/tags/2.1.1/inc/class-core-settings.php:333 143 msgid "Take a look at our <a href=\"%s?utm_source=Iconic&utm_medium=Plugin&utm_campaign=simple-feature-requests&utm_content=need-some-help\" target=\"_blank\">troubleshooting documentation</a>." 144 msgstr "" 145 146 #: inc/class-core-settings.php:337, svn/trunk/inc/class-core-settings.php:337, svn/tags/1.0.4/inc/class-core-settings.php:264, svn/tags/1.0.5/inc/class-core-settings.php:264, svn/tags/1.0.6/inc/class-core-settings.php:312, svn/tags/2.0.0/inc/class-core-settings.php:312, svn/tags/2.0.1/inc/class-core-settings.php:312, svn/tags/2.1.0/inc/class-core-settings.php:337, svn/tags/2.1.1/inc/class-core-settings.php:337, svn/tags/1.0.5/trunk/inc/class-core-settings.php:264 147 msgid "There is a permanent link to the plugin documentation in the \"Support\" section below." 148 msgstr "" 149 150 #: inc/class-core-settings.php:410, svn/trunk/inc/class-core-settings.php:410, svn/tags/1.0.4/inc/class-core-settings.php:335, svn/tags/1.0.5/inc/class-core-settings.php:335, svn/tags/1.0.6/inc/class-core-settings.php:383, svn/tags/2.0.0/inc/class-core-settings.php:383, svn/tags/2.0.1/inc/class-core-settings.php:383, svn/tags/2.1.0/inc/class-core-settings.php:410, svn/tags/2.1.1/inc/class-core-settings.php:410, svn/tags/1.0.5/trunk/inc/class-core-settings.php:335 151 msgid "Getting Started" 152 msgstr "" 153 154 #: inc/class-core-settings.php:454, svn/trunk/inc/class-core-settings.php:454, svn/tags/1.0.4/inc/class-core-settings.php:378, svn/tags/1.0.5/inc/class-core-settings.php:378, svn/tags/1.0.6/inc/class-core-settings.php:426, svn/tags/2.0.0/inc/class-core-settings.php:426, svn/tags/2.0.1/inc/class-core-settings.php:426, svn/tags/2.1.0/inc/class-core-settings.php:454, svn/tags/2.1.1/inc/class-core-settings.php:454, svn/tags/1.0.5/trunk/inc/class-core-settings.php:378 155 msgid "Dashboard" 156 msgstr "" 157 158 #: inc/class-core-settings.php:461, svn/trunk/inc/class-core-settings.php:461, svn/tags/1.0.4/inc/class-core-settings.php:385, svn/tags/1.0.5/inc/class-core-settings.php:385, svn/tags/1.0.6/inc/class-core-settings.php:433, svn/tags/2.0.0/inc/class-core-settings.php:433, svn/tags/2.0.1/inc/class-core-settings.php:433, svn/tags/2.1.0/inc/class-core-settings.php:461, svn/tags/2.1.1/inc/class-core-settings.php:461, svn/tags/1.0.5/trunk/inc/class-core-settings.php:385 159 msgid "License & Account Settings" 160 msgstr "" 161 162 #: inc/class-core-settings.php:467, svn/trunk/inc/class-core-settings.php:467, svn/tags/1.0.4/inc/class-core-settings.php:391, svn/tags/1.0.5/inc/class-core-settings.php:391, svn/tags/1.0.6/inc/class-core-settings.php:439, svn/tags/2.0.0/inc/class-core-settings.php:439, svn/tags/2.0.1/inc/class-core-settings.php:439, svn/tags/2.1.0/inc/class-core-settings.php:467, svn/tags/2.1.1/inc/class-core-settings.php:467, svn/tags/1.0.5/trunk/inc/class-core-settings.php:391 163 msgid "License & Billing" 164 msgstr "" 165 166 #: inc/class-core-settings.php:468, svn/trunk/inc/class-core-settings.php:468, svn/tags/1.0.4/inc/class-core-settings.php:392, svn/tags/1.0.5/inc/class-core-settings.php:392, svn/tags/1.0.6/inc/class-core-settings.php:440, svn/tags/2.0.0/inc/class-core-settings.php:440, svn/tags/2.0.1/inc/class-core-settings.php:440, svn/tags/2.1.0/inc/class-core-settings.php:468, svn/tags/2.1.1/inc/class-core-settings.php:468, svn/tags/1.0.5/trunk/inc/class-core-settings.php:392 167 msgid "Activate or sync your license, cancel your subscription, print invoices, and manage your account information." 168 msgstr "" 169 170 #: inc/class-core-settings.php:474, svn/trunk/inc/class-core-settings.php:474, svn/tags/1.0.4/inc/class-core-settings.php:398, svn/tags/1.0.5/inc/class-core-settings.php:398, svn/tags/1.0.6/inc/class-core-settings.php:446, svn/tags/2.0.0/inc/class-core-settings.php:446, svn/tags/2.0.1/inc/class-core-settings.php:446, svn/tags/2.1.0/inc/class-core-settings.php:474, svn/tags/2.1.1/inc/class-core-settings.php:474, svn/tags/1.0.5/trunk/inc/class-core-settings.php:398 171 msgid "Your Account" 172 msgstr "" 173 174 #: inc/class-core-settings.php:475, svn/trunk/inc/class-core-settings.php:475, svn/tags/1.0.4/inc/class-core-settings.php:399, svn/tags/1.0.5/inc/class-core-settings.php:399, svn/tags/1.0.6/inc/class-core-settings.php:447, svn/tags/2.0.0/inc/class-core-settings.php:447, svn/tags/2.0.1/inc/class-core-settings.php:447, svn/tags/2.1.0/inc/class-core-settings.php:475, svn/tags/2.1.1/inc/class-core-settings.php:475, svn/tags/1.0.5/trunk/inc/class-core-settings.php:399 175 msgid "Manage all of your Iconic plugins, supscriptions, renewals, and more." 176 msgstr "" 177 178 #: inc/class-core-settings.php:487, inc/class-core-settings.php:493, inc/class-settings.php:41, svn/trunk/inc/class-core-settings.php:487, svn/trunk/inc/class-core-settings.php:493, svn/trunk/inc/class-settings.php:58, svn/tags/1.0.4/inc/class-core-settings.php:411, svn/tags/1.0.4/inc/class-core-settings.php:417, svn/tags/1.0.5/inc/class-core-settings.php:411, svn/tags/1.0.5/inc/class-core-settings.php:417, svn/tags/1.0.6/inc/class-core-settings.php:459, svn/tags/1.0.6/inc/class-core-settings.php:465, svn/tags/2.0.0/inc/class-core-settings.php:459, svn/tags/2.0.0/inc/class-core-settings.php:465, svn/tags/2.0.0/inc/class-settings.php:58, svn/tags/2.0.1/inc/class-core-settings.php:459, svn/tags/2.0.1/inc/class-core-settings.php:465, svn/tags/2.0.1/inc/class-settings.php:58, svn/tags/2.1.0/inc/class-core-settings.php:487, svn/tags/2.1.0/inc/class-core-settings.php:493, svn/tags/2.1.0/inc/class-settings.php:58, svn/tags/2.1.1/inc/class-core-settings.php:487, svn/tags/2.1.1/inc/class-core-settings.php:493, svn/tags/2.1.1/inc/class-settings.php:58, svn/tags/1.0.5/trunk/inc/class-core-settings.php:411, svn/tags/1.0.5/trunk/inc/class-core-settings.php:417 179 msgid "Support" 180 msgstr "" 181 182 #: inc/class-core-settings.php:494, svn/trunk/inc/class-core-settings.php:494, svn/tags/1.0.4/inc/class-core-settings.php:418, svn/tags/1.0.5/inc/class-core-settings.php:418, svn/tags/1.0.6/inc/class-core-settings.php:466, svn/tags/2.0.0/inc/class-core-settings.php:466, svn/tags/2.0.1/inc/class-core-settings.php:466, svn/tags/2.1.0/inc/class-core-settings.php:494, svn/tags/2.1.1/inc/class-core-settings.php:494, svn/tags/1.0.5/trunk/inc/class-core-settings.php:418 183 msgid "Get premium support with a valid license." 184 msgstr "" 185 186 #: inc/class-core-settings.php:500, inc/class-settings.php:40, svn/trunk/inc/class-core-settings.php:500, svn/trunk/inc/class-settings.php:57, svn/tags/1.0.4/inc/class-core-settings.php:424, svn/tags/1.0.5/inc/class-core-settings.php:424, svn/tags/1.0.6/inc/class-core-settings.php:472, svn/tags/2.0.0/inc/class-core-settings.php:472, svn/tags/2.0.0/inc/class-settings.php:57, svn/tags/2.0.1/inc/class-core-settings.php:472, svn/tags/2.0.1/inc/class-settings.php:57, svn/tags/2.1.0/inc/class-core-settings.php:500, svn/tags/2.1.0/inc/class-settings.php:57, svn/tags/2.1.1/inc/class-core-settings.php:500, svn/tags/2.1.1/inc/class-settings.php:57, svn/tags/1.0.5/trunk/inc/class-core-settings.php:424 187 msgid "Documentation" 188 msgstr "" 189 190 #: inc/class-core-settings.php:501, svn/trunk/inc/class-core-settings.php:501, svn/tags/1.0.4/inc/class-core-settings.php:425, svn/tags/1.0.5/inc/class-core-settings.php:425, svn/tags/1.0.6/inc/class-core-settings.php:473, svn/tags/2.0.0/inc/class-core-settings.php:473, svn/tags/2.0.1/inc/class-core-settings.php:473, svn/tags/2.1.0/inc/class-core-settings.php:501, svn/tags/2.1.1/inc/class-core-settings.php:501, svn/tags/1.0.5/trunk/inc/class-core-settings.php:425 191 msgid "Read the plugin documentation." 192 msgstr "" 193 194 #: inc/class-core-settings.php:517, svn/trunk/inc/class-core-settings.php:517, svn/tags/1.0.4/inc/class-core-settings.php:441, svn/tags/1.0.5/inc/class-core-settings.php:441, svn/tags/1.0.6/inc/class-core-settings.php:489, svn/tags/2.0.0/inc/class-core-settings.php:489, svn/tags/2.0.1/inc/class-core-settings.php:489, svn/tags/2.1.0/inc/class-core-settings.php:517, svn/tags/2.1.1/inc/class-core-settings.php:517, svn/tags/1.0.5/trunk/inc/class-core-settings.php:441 195 msgid "Works Well With..." 196 msgstr "" 197 198 #: inc/class-core-settings.php:534, inc/class-settings.php:94, svn/trunk/inc/class-core-settings.php:534, svn/trunk/inc/class-settings.php:111, svn/tags/1.0.4/inc/class-core-settings.php:458, svn/tags/1.0.4/inc/class-settings.php:103, svn/tags/1.0.5/inc/class-core-settings.php:458, svn/tags/1.0.5/inc/class-settings.php:103, svn/tags/1.0.6/inc/class-core-settings.php:506, svn/tags/1.0.6/inc/class-settings.php:104, svn/tags/2.0.0/inc/class-core-settings.php:506, svn/tags/2.0.0/inc/class-settings.php:111, svn/tags/2.0.1/inc/class-core-settings.php:506, svn/tags/2.0.1/inc/class-settings.php:111, svn/tags/2.1.0/inc/class-core-settings.php:534, svn/tags/2.1.0/inc/class-settings.php:111, svn/tags/2.1.1/inc/class-core-settings.php:534, svn/tags/2.1.1/inc/class-settings.php:111, svn/tags/1.0.5/trunk/inc/class-core-settings.php:458, svn/tags/1.0.5/trunk/inc/class-settings.php:103 199 msgid "Submit Ticket" 200 msgstr "" 201 202 #: inc/class-core-settings.php:543, inc/class-settings.php:103, svn/trunk/inc/class-core-settings.php:543, svn/trunk/inc/class-settings.php:121, svn/tags/1.0.4/inc/class-core-settings.php:467, svn/tags/1.0.4/inc/class-settings.php:113, svn/tags/1.0.5/inc/class-core-settings.php:467, svn/tags/1.0.5/inc/class-settings.php:113, svn/tags/1.0.6/inc/class-core-settings.php:515, svn/tags/1.0.6/inc/class-settings.php:114, svn/tags/2.0.0/inc/class-core-settings.php:515, svn/tags/2.0.0/inc/class-settings.php:121, svn/tags/2.0.1/inc/class-core-settings.php:515, svn/tags/2.0.1/inc/class-settings.php:121, svn/tags/2.1.0/inc/class-core-settings.php:543, svn/tags/2.1.0/inc/class-settings.php:121, svn/tags/2.1.1/inc/class-core-settings.php:543, svn/tags/2.1.1/inc/class-settings.php:121, svn/tags/1.0.5/trunk/inc/class-core-settings.php:467, svn/tags/1.0.5/trunk/inc/class-settings.php:113 203 msgid "Read Documentation" 204 msgstr "" 205 206 #: inc/class-core-settings.php:552, svn/trunk/inc/class-core-settings.php:552, svn/tags/1.0.4/inc/class-core-settings.php:476, svn/tags/1.0.5/inc/class-core-settings.php:476, svn/tags/1.0.6/inc/class-core-settings.php:524, svn/tags/2.0.0/inc/class-core-settings.php:524, svn/tags/2.0.1/inc/class-core-settings.php:524, svn/tags/2.1.0/inc/class-core-settings.php:552, svn/tags/2.1.1/inc/class-core-settings.php:552, svn/tags/1.0.5/trunk/inc/class-core-settings.php:476 207 msgid "Manage Your Account" 208 msgstr "" 209 210 #: inc/class-factory.php:116, svn/trunk/inc/class-factory.php:116, svn/tags/1.0.0/inc/class-factory.php:41, svn/tags/1.0.1/inc/class-factory.php:41, svn/tags/1.0.2/inc/class-factory.php:119, svn/tags/1.0.3/inc/class-factory.php:119, svn/tags/1.0.4/inc/class-factory.php:120, svn/tags/1.0.5/inc/class-factory.php:120, svn/tags/1.0.6/inc/class-factory.php:120, svn/tags/2.0.0/inc/class-factory.php:116, svn/tags/2.0.1/inc/class-factory.php:116, svn/tags/2.1.0/inc/class-factory.php:116, svn/tags/2.1.1/inc/class-factory.php:116, svn/tags/1.0.5/trunk/inc/class-factory.php:120 211 msgid "A request with that title already exists." 212 msgstr "" 213 214 #: inc/class-factory.php:138, svn/trunk/inc/class-factory.php:138, svn/tags/1.0.0/inc/class-factory.php:56, svn/tags/1.0.1/inc/class-factory.php:56, svn/tags/1.0.2/inc/class-factory.php:137, svn/tags/1.0.3/inc/class-factory.php:137, svn/tags/1.0.4/inc/class-factory.php:136, svn/tags/1.0.5/inc/class-factory.php:136, svn/tags/1.0.6/inc/class-factory.php:136, svn/tags/2.0.0/inc/class-factory.php:138, svn/tags/2.0.1/inc/class-factory.php:138, svn/tags/2.1.0/inc/class-factory.php:138, svn/tags/2.1.1/inc/class-factory.php:138, svn/tags/1.0.5/trunk/inc/class-factory.php:136 215 msgid "There was an error adding your feature request. Please try again." 216 msgstr "" 217 218 #: inc/class-factory.php:153, svn/trunk/inc/class-factory.php:153, svn/tags/1.0.2/inc/class-factory.php:149, svn/tags/1.0.3/inc/class-factory.php:149, svn/tags/1.0.4/inc/class-factory.php:151, svn/tags/1.0.5/inc/class-factory.php:151, svn/tags/1.0.6/inc/class-factory.php:151, svn/tags/2.0.0/inc/class-factory.php:153, svn/tags/2.0.1/inc/class-factory.php:153, svn/tags/2.1.0/inc/class-factory.php:153, svn/tags/2.1.1/inc/class-factory.php:153, svn/tags/1.0.5/trunk/inc/class-factory.php:151 219 msgid "Thank you for your request." 220 msgstr "" 221 222 #: inc/class-factory.php:156, svn/trunk/inc/class-factory.php:156, svn/tags/1.0.2/inc/class-factory.php:152, svn/tags/1.0.3/inc/class-factory.php:152, svn/tags/1.0.4/inc/class-factory.php:154, svn/tags/1.0.5/inc/class-factory.php:154, svn/tags/1.0.6/inc/class-factory.php:154, svn/tags/2.0.0/inc/class-factory.php:156, svn/tags/2.0.1/inc/class-factory.php:156, svn/tags/2.1.0/inc/class-factory.php:156, svn/tags/2.1.1/inc/class-factory.php:156, svn/tags/1.0.5/trunk/inc/class-factory.php:154 223 msgid "It is currently %s." 224 msgstr "" 225 226 #: inc/class-notifications.php:191 227 msgid "%s Status Changed" 228 msgstr "" 229 230 #: inc/class-notifications.php:191, inc/class-notifications.php:440, inc/class-notifications.php:467, inc/class-post-types.php:94, svn/trunk/inc/class-notifications.php:143, svn/trunk/inc/class-post-types.php:122, svn/tags/1.0.0/inc/class-post-types.php:31, svn/tags/1.0.1/inc/class-post-types.php:31, svn/tags/1.0.2/inc/class-post-types.php:31, svn/tags/1.0.3/inc/class-post-types.php:31, svn/tags/1.0.4/inc/class-post-types.php:56, svn/tags/1.0.5/inc/class-post-types.php:56, svn/tags/1.0.6/inc/class-notifications.php:143, svn/tags/1.0.6/inc/class-post-types.php:56, svn/tags/2.0.0/inc/class-notifications.php:143, svn/tags/2.0.0/inc/class-post-types.php:120, svn/tags/2.0.1/inc/class-notifications.php:143, svn/tags/2.0.1/inc/class-post-types.php:125, svn/tags/2.1.0/inc/class-notifications.php:143, svn/tags/2.1.0/inc/class-post-types.php:121, svn/tags/2.1.1/inc/class-notifications.php:143, svn/tags/2.1.1/inc/class-post-types.php:122, svn/tags/1.0.5/trunk/inc/class-post-types.php:56 231 msgid "Feature Request" 232 msgstr "" 233 234 #: inc/class-notifications.php:251, inc/class-notifications.php:311, svn/trunk/inc/class-notifications.php:165, svn/tags/1.0.6/inc/class-notifications.php:165, svn/tags/2.0.0/inc/class-notifications.php:165, svn/tags/2.0.1/inc/class-notifications.php:165, svn/tags/2.1.0/inc/class-notifications.php:165, svn/tags/2.1.1/inc/class-notifications.php:165 235 msgid "Hello," 236 msgstr "" 237 238 #: inc/class-notifications.php:252, svn/trunk/inc/class-notifications.php:168, svn/tags/1.0.6/inc/class-notifications.php:168, svn/tags/2.0.0/inc/class-notifications.php:168, svn/tags/2.0.1/inc/class-notifications.php:168, svn/tags/2.1.0/inc/class-notifications.php:168, svn/tags/2.1.1/inc/class-notifications.php:168 239 msgid "A new %s has been posted by \"%s\" to your site." 240 msgstr "" 241 242 #: inc/class-notifications.php:252, svn/trunk/inc/class-notifications.php:168, svn/tags/1.0.6/inc/class-notifications.php:168, svn/tags/2.0.0/inc/class-notifications.php:168, svn/tags/2.0.1/inc/class-notifications.php:168, svn/tags/2.1.0/inc/class-notifications.php:168, svn/tags/2.1.1/inc/class-notifications.php:168 243 msgid "feature request" 244 msgstr "" 245 246 #: inc/class-notifications.php:283 247 msgid "Hello %s," 248 msgstr "" 249 250 #: inc/class-notifications.php:284 251 msgid "We thought you'd like to know the status of <a href=\"%s\">%s</a> has changed to <strong>%s</strong>." 252 msgstr "" 253 254 #: inc/class-notifications.php:312 255 msgid "Someone has posted a new comment on <a href=\"%s\">%s</a>." 256 msgstr "" 257 258 #: inc/class-notifications.php:440 259 msgid "New %s Comment" 260 msgstr "" 261 262 #: inc/class-notifications.php:467, svn/trunk/inc/class-notifications.php:143, svn/tags/1.0.6/inc/class-notifications.php:143, svn/tags/2.0.0/inc/class-notifications.php:143, svn/tags/2.0.1/inc/class-notifications.php:143, svn/tags/2.1.0/inc/class-notifications.php:143, svn/tags/2.1.1/inc/class-notifications.php:143 263 msgid "New %s" 264 msgstr "" 265 266 #: inc/class-post-types.php:93, svn/trunk/inc/class-post-types.php:121, svn/tags/1.0.0/inc/class-post-types.php:30, svn/tags/1.0.1/inc/class-post-types.php:30, svn/tags/1.0.2/inc/class-post-types.php:30, svn/tags/1.0.3/inc/class-post-types.php:30, svn/tags/1.0.4/inc/class-post-types.php:55, svn/tags/1.0.5/inc/class-post-types.php:55, svn/tags/1.0.6/inc/class-post-types.php:55, svn/tags/2.0.0/inc/class-post-types.php:119, svn/tags/2.0.1/inc/class-post-types.php:124, svn/tags/2.1.0/inc/class-post-types.php:120, svn/tags/2.1.1/inc/class-post-types.php:121, svn/tags/1.0.5/trunk/inc/class-post-types.php:55 267 msgid "Feature Requests" 268 msgstr "" 269 270 #: inc/class-post-types.php:95, svn/trunk/inc/class-post-types.php:123, svn/tags/1.0.4/inc/class-post-types.php:57, svn/tags/1.0.5/inc/class-post-types.php:57, svn/tags/1.0.6/inc/class-post-types.php:57, svn/tags/2.0.0/inc/class-post-types.php:121, svn/tags/2.0.1/inc/class-post-types.php:126, svn/tags/2.1.0/inc/class-post-types.php:122, svn/tags/2.1.1/inc/class-post-types.php:123, svn/tags/1.0.5/trunk/inc/class-post-types.php:57 271 msgid "All Requests" 272 msgstr "" 273 274 #: inc/class-post-types.php:386, inc/class-settings.php:468, inc/class-settings.php:482, svn/trunk/inc/class-post-types.php:387, svn/tags/1.0.0/inc/class-post-types.php:183, svn/tags/1.0.1/inc/class-post-types.php:183, svn/tags/1.0.2/inc/class-post-types.php:183, svn/tags/1.0.3/inc/class-post-types.php:183, svn/tags/1.0.4/inc/class-post-types.php:212, svn/tags/1.0.5/inc/class-post-types.php:212, svn/tags/1.0.6/inc/class-post-types.php:217, svn/tags/2.0.0/inc/class-post-types.php:380, svn/tags/2.0.1/inc/class-post-types.php:386, svn/tags/2.1.0/inc/class-post-types.php:386, svn/tags/2.1.1/inc/class-post-types.php:387, svn/tags/1.0.5/trunk/inc/class-post-types.php:212 275 msgid "Author" 276 msgstr "" 277 278 #: inc/class-post-types.php:387, inc/class-template-methods.php:48, svn/trunk/inc/class-post-types.php:388, svn/trunk/inc/class-template-methods.php:51, svn/tags/1.0.0/inc/class-post-types.php:184, svn/tags/1.0.1/inc/class-post-types.php:184, svn/tags/1.0.2/inc/class-post-types.php:184, svn/tags/1.0.2/inc/class-template-methods.php:48, svn/tags/1.0.3/inc/class-post-types.php:184, svn/tags/1.0.3/inc/class-template-methods.php:48, svn/tags/1.0.4/inc/class-post-types.php:213, svn/tags/1.0.4/inc/class-template-methods.php:51, svn/tags/1.0.5/inc/class-post-types.php:213, svn/tags/1.0.5/inc/class-template-methods.php:51, svn/tags/1.0.6/inc/class-post-types.php:218, svn/tags/1.0.6/inc/class-template-methods.php:51, svn/tags/2.0.0/inc/class-post-types.php:381, svn/tags/2.0.0/inc/class-template-methods.php:51, svn/tags/2.0.1/inc/class-post-types.php:387, svn/tags/2.0.1/inc/class-template-methods.php:51, svn/tags/2.1.0/inc/class-post-types.php:387, svn/tags/2.1.0/inc/class-template-methods.php:51, svn/tags/2.1.1/inc/class-post-types.php:388, svn/tags/2.1.1/inc/class-template-methods.php:51, svn/tags/1.0.5/trunk/inc/class-post-types.php:213, svn/tags/1.0.5/trunk/inc/class-template-methods.php:51 279 msgid "Status" 280 msgstr "" 281 282 #: inc/class-post-types.php:388, inc/class-settings.php:216, svn/trunk/inc/class-post-types.php:389, svn/trunk/inc/class-settings.php:220, svn/tags/1.0.0/inc/class-post-types.php:185, svn/tags/1.0.1/inc/class-post-types.php:185, svn/tags/1.0.2/inc/class-post-types.php:185, svn/tags/1.0.3/inc/class-post-types.php:185, svn/tags/1.0.4/inc/class-post-types.php:214, svn/tags/1.0.5/inc/class-post-types.php:214, svn/tags/1.0.6/inc/class-post-types.php:219, svn/tags/2.0.0/inc/class-post-types.php:382, svn/tags/2.0.0/inc/class-settings.php:220, svn/tags/2.0.1/inc/class-post-types.php:388, svn/tags/2.0.1/inc/class-settings.php:220, svn/tags/2.1.0/inc/class-post-types.php:388, svn/tags/2.1.0/inc/class-settings.php:220, svn/tags/2.1.1/inc/class-post-types.php:389, svn/tags/2.1.1/inc/class-settings.php:220, svn/tags/1.0.5/trunk/inc/class-post-types.php:214 283 msgid "Votes" 284 msgstr "" 285 286 #: inc/class-post-types.php:454, inc/class-post-types.php:914, svn/trunk/inc/class-post-types.php:462, svn/tags/2.0.0/inc/class-post-types.php:455, svn/tags/2.0.1/inc/class-post-types.php:461, svn/tags/2.1.0/inc/class-post-types.php:461, svn/tags/2.1.1/inc/class-post-types.php:462 287 msgid "Categories" 288 msgstr "" 289 290 #: inc/class-post-types.php:464, svn/trunk/inc/class-post-types.php:471, svn/tags/1.0.0/inc/class-post-types.php:248, svn/tags/1.0.1/inc/class-post-types.php:248, svn/tags/1.0.2/inc/class-post-types.php:248, svn/tags/1.0.3/inc/class-post-types.php:248, svn/tags/1.0.4/inc/class-post-types.php:285, svn/tags/1.0.5/inc/class-post-types.php:285, svn/tags/1.0.6/inc/class-post-types.php:290, svn/tags/2.0.0/inc/class-post-types.php:464, svn/tags/2.0.1/inc/class-post-types.php:470, svn/tags/2.1.0/inc/class-post-types.php:470, svn/tags/2.1.1/inc/class-post-types.php:471, svn/tags/1.0.5/trunk/inc/class-post-types.php:285 291 msgid "Information" 292 msgstr "" 293 294 #: inc/class-post-types.php:736, inc/class-post-types.php:751, svn/trunk/simple-feature-requests.php:144, svn/tags/1.0.4/simple-feature-requests.php:134, svn/tags/1.0.5/simple-feature-requests.php:133, svn/tags/1.0.6/simple-feature-requests.php:133, svn/tags/2.0.0/simple-feature-requests.php:145, svn/tags/2.0.1/simple-feature-requests.php:145, svn/tags/2.1.0/simple-feature-requests.php:145, svn/tags/2.1.1/simple-feature-requests.php:144, svn/trunk/inc/class-post-types.php:749, svn/tags/1.0.0/inc/class-post-types.php:32, svn/tags/1.0.1/inc/class-post-types.php:32, svn/tags/1.0.2/inc/class-post-types.php:32, svn/tags/1.0.3/inc/class-post-types.php:32, svn/tags/1.0.5/trunk/simple-feature-requests.php:133, svn/tags/2.0.0/inc/class-post-types.php:726, svn/tags/2.0.1/inc/class-post-types.php:730, svn/tags/2.1.0/inc/class-post-types.php:748, svn/tags/2.1.1/inc/class-post-types.php:749 21 295 msgid "Requests" 22 296 msgstr "" 23 297 24 #: simple-feature-requests.php:194, svn/trunk/simple-feature-requests.php:178, svn/tags/2.0.0/simple-feature-requests.php:177, svn/tags/2.0.1/simple-feature-requests.php:178 25 msgid "Available in Pro" 26 msgstr "" 27 28 #: inc/class-ajax.php:49, inc/class-ajax.php:102, svn/trunk/inc/class-ajax.php:49, svn/trunk/inc/class-ajax.php:102, svn/tags/1.0.0/inc/class-ajax.php:49, svn/tags/1.0.0/inc/class-ajax.php:104, svn/tags/1.0.1/inc/class-ajax.php:49, svn/tags/1.0.1/inc/class-ajax.php:104, svn/tags/1.0.2/inc/class-ajax.php:49, svn/tags/1.0.2/inc/class-ajax.php:104, svn/tags/1.0.3/inc/class-ajax.php:49, svn/tags/1.0.3/inc/class-ajax.php:104, svn/tags/1.0.4/inc/class-ajax.php:49, svn/tags/1.0.4/inc/class-ajax.php:104, svn/tags/1.0.5/inc/class-ajax.php:49, svn/tags/1.0.5/inc/class-ajax.php:104, svn/tags/1.0.6/inc/class-ajax.php:49, svn/tags/1.0.6/inc/class-ajax.php:104, svn/tags/2.0.0/inc/class-ajax.php:49, svn/tags/2.0.0/inc/class-ajax.php:102, svn/tags/2.0.1/inc/class-ajax.php:49, svn/tags/2.0.1/inc/class-ajax.php:102, svn/tags/1.0.5/trunk/inc/class-ajax.php:49, svn/tags/1.0.5/trunk/inc/class-ajax.php:104 29 msgid "Nonce check failed." 30 msgstr "" 31 32 #: inc/class-ajax.php:57, svn/trunk/inc/class-ajax.php:57, svn/tags/1.0.0/inc/class-ajax.php:57, svn/tags/1.0.1/inc/class-ajax.php:57, svn/tags/1.0.2/inc/class-ajax.php:57, svn/tags/1.0.3/inc/class-ajax.php:57, svn/tags/1.0.4/inc/class-ajax.php:57, svn/tags/1.0.5/inc/class-ajax.php:57, svn/tags/1.0.6/inc/class-ajax.php:57, svn/tags/2.0.0/inc/class-ajax.php:57, svn/tags/2.0.1/inc/class-ajax.php:57, svn/tags/1.0.5/trunk/inc/class-ajax.php:57 33 msgid "Simple Feature Requests: No post ID sent to AJAX." 34 msgstr "" 35 36 #: inc/class-ajax.php:64, svn/trunk/inc/class-ajax.php:64, svn/tags/1.0.0/inc/class-ajax.php:64, svn/tags/1.0.1/inc/class-ajax.php:64, svn/tags/1.0.2/inc/class-ajax.php:64, svn/tags/1.0.3/inc/class-ajax.php:64, svn/tags/1.0.4/inc/class-ajax.php:64, svn/tags/1.0.5/inc/class-ajax.php:64, svn/tags/1.0.6/inc/class-ajax.php:64, svn/tags/2.0.0/inc/class-ajax.php:64, svn/tags/2.0.1/inc/class-ajax.php:64, svn/tags/1.0.5/trunk/inc/class-ajax.php:64 37 msgid "Simple Feature Requests: No post found for ID %d" 38 msgstr "" 39 40 #: inc/class-assets.php:44, svn/trunk/inc/class-assets.php:44, svn/tags/1.0.0/inc/class-assets.php:43, svn/tags/1.0.1/inc/class-assets.php:43, svn/tags/1.0.2/inc/class-assets.php:43, svn/tags/1.0.3/inc/class-assets.php:43, svn/tags/1.0.4/inc/class-assets.php:43, svn/tags/1.0.5/inc/class-assets.php:43, svn/tags/1.0.6/inc/class-assets.php:43, svn/tags/2.0.0/inc/class-assets.php:44, svn/tags/2.0.1/inc/class-assets.php:44, svn/tags/1.0.5/trunk/inc/class-assets.php:43 41 msgid "Vote" 42 msgstr "" 43 44 #: inc/class-assets.php:45, svn/trunk/inc/class-assets.php:45, svn/tags/1.0.0/inc/class-assets.php:44, svn/tags/1.0.1/inc/class-assets.php:44, svn/tags/1.0.2/inc/class-assets.php:44, svn/tags/1.0.3/inc/class-assets.php:44, svn/tags/1.0.4/inc/class-assets.php:44, svn/tags/1.0.5/inc/class-assets.php:44, svn/tags/1.0.6/inc/class-assets.php:44, svn/tags/2.0.0/inc/class-assets.php:45, svn/tags/2.0.1/inc/class-assets.php:45, svn/tags/1.0.5/trunk/inc/class-assets.php:44 45 msgid "Voting" 46 msgstr "" 47 48 #: inc/class-assets.php:46, svn/trunk/inc/class-assets.php:46, svn/tags/1.0.0/inc/class-assets.php:45, svn/tags/1.0.1/inc/class-assets.php:45, svn/tags/1.0.2/inc/class-assets.php:45, svn/tags/1.0.3/inc/class-assets.php:45, svn/tags/1.0.4/inc/class-assets.php:45, svn/tags/1.0.5/inc/class-assets.php:45, svn/tags/1.0.6/inc/class-assets.php:45, svn/tags/2.0.0/inc/class-assets.php:46, svn/tags/2.0.1/inc/class-assets.php:46, svn/tags/1.0.5/trunk/inc/class-assets.php:45 49 msgid "Voted" 50 msgstr "" 51 52 #: inc/class-core-cross-sells.php:69, svn/trunk/inc/class-core-cross-sells.php:69, svn/tags/1.0.4/inc/class-core-cross-sells.php:69, svn/tags/1.0.5/inc/class-core-cross-sells.php:69, svn/tags/1.0.6/inc/class-core-cross-sells.php:69, svn/tags/2.0.0/inc/class-core-cross-sells.php:69, svn/tags/2.0.1/inc/class-core-cross-sells.php:69, svn/tags/1.0.5/trunk/inc/class-core-cross-sells.php:69 53 msgid "Display individual product variations of a variable product in your product listings. Make it easy for your customers to view and filter product variations." 54 msgstr "" 55 56 #: inc/class-core-cross-sells.php:80, svn/trunk/inc/class-core-cross-sells.php:80, svn/tags/1.0.4/inc/class-core-cross-sells.php:80, svn/tags/1.0.5/inc/class-core-cross-sells.php:80, svn/tags/1.0.6/inc/class-core-cross-sells.php:80, svn/tags/2.0.0/inc/class-core-cross-sells.php:80, svn/tags/2.0.1/inc/class-core-cross-sells.php:80, svn/tags/1.0.5/trunk/inc/class-core-cross-sells.php:80 57 msgid "Enable zoom, sliders, video, fullscreen, multiple images per variation, and customisable layout options for your product imagery." 58 msgstr "" 59 60 #: inc/class-core-cross-sells.php:91, svn/trunk/inc/class-core-cross-sells.php:91, svn/tags/1.0.4/inc/class-core-cross-sells.php:91, svn/tags/1.0.5/inc/class-core-cross-sells.php:91, svn/tags/1.0.6/inc/class-core-cross-sells.php:91, svn/tags/2.0.0/inc/class-core-cross-sells.php:91, svn/tags/2.0.1/inc/class-core-cross-sells.php:91, svn/tags/1.0.5/trunk/inc/class-core-cross-sells.php:91 61 msgid "Choose a delivery date and time for each order. Add a limit to the number of allowed reservations, restrict time slots to specific delivery methods, and so much more." 62 msgstr "" 63 64 #: inc/class-core-cross-sells.php:102, svn/trunk/inc/class-core-cross-sells.php:102, svn/tags/1.0.4/inc/class-core-cross-sells.php:102, svn/tags/1.0.5/inc/class-core-cross-sells.php:102, svn/tags/1.0.6/inc/class-core-cross-sells.php:102, svn/tags/2.0.0/inc/class-core-cross-sells.php:102, svn/tags/2.0.1/inc/class-core-cross-sells.php:102, svn/tags/1.0.5/trunk/inc/class-core-cross-sells.php:102 65 msgid "Link a group of WooCommerce products together by their attributes; a new way to handle product variations." 66 msgstr "" 67 68 #: inc/class-core-cross-sells.php:113, svn/trunk/inc/class-core-cross-sells.php:113, svn/tags/1.0.4/inc/class-core-cross-sells.php:113, svn/tags/1.0.5/inc/class-core-cross-sells.php:113, svn/tags/1.0.6/inc/class-core-cross-sells.php:113, svn/tags/2.0.0/inc/class-core-cross-sells.php:113, svn/tags/2.0.1/inc/class-core-cross-sells.php:113, svn/tags/1.0.5/trunk/inc/class-core-cross-sells.php:113 69 msgid "Use transparent image layers for your variable products, removing the need to create hundreds of final product variation images." 70 msgstr "" 71 72 #: inc/class-core-cross-sells.php:124, svn/trunk/inc/class-core-cross-sells.php:124, svn/tags/1.0.4/inc/class-core-cross-sells.php:124, svn/tags/1.0.5/inc/class-core-cross-sells.php:124, svn/tags/1.0.6/inc/class-core-cross-sells.php:124, svn/tags/2.0.0/inc/class-core-cross-sells.php:124, svn/tags/2.0.1/inc/class-core-cross-sells.php:124, svn/tags/1.0.5/trunk/inc/class-core-cross-sells.php:124 73 msgid "A modern take on quick view for WooCommerce; expand product details within your product listings for a convenient shopping experience." 74 msgstr "" 75 76 #: inc/class-core-cross-sells.php:131, svn/trunk/inc/class-core-cross-sells.php:131, svn/tags/1.0.4/inc/class-core-cross-sells.php:131, svn/tags/1.0.5/inc/class-core-cross-sells.php:131, svn/tags/1.0.6/inc/class-core-cross-sells.php:131, svn/tags/2.0.0/inc/class-core-cross-sells.php:131, svn/tags/2.0.1/inc/class-core-cross-sells.php:131, svn/tags/1.0.5/trunk/inc/class-core-cross-sells.php:131 77 msgid "Add and manage pages in your WooCommerce \"My Account\" area using the native WordPress \"Pages\" functionality." 78 msgstr "" 79 80 #: inc/class-core-cross-sells.php:138, svn/trunk/inc/class-core-cross-sells.php:138, svn/tags/1.0.4/inc/class-core-cross-sells.php:138, svn/tags/1.0.5/inc/class-core-cross-sells.php:138, svn/tags/1.0.6/inc/class-core-cross-sells.php:138, svn/tags/2.0.0/inc/class-core-cross-sells.php:138, svn/tags/2.0.1/inc/class-core-cross-sells.php:138, svn/tags/1.0.5/trunk/inc/class-core-cross-sells.php:138 81 msgid "Quickly view any product from the catalog, without reloading the page. Encourage sales with easy and efficient product browsing." 82 msgstr "" 83 84 #: inc/class-core-cross-sells.php:149, svn/trunk/inc/class-core-cross-sells.php:149, svn/tags/1.0.4/inc/class-core-cross-sells.php:149, svn/tags/1.0.5/inc/class-core-cross-sells.php:149, svn/tags/1.0.6/inc/class-core-cross-sells.php:149, svn/tags/2.0.0/inc/class-core-cross-sells.php:149, svn/tags/2.0.1/inc/class-core-cross-sells.php:149, svn/tags/1.0.5/trunk/inc/class-core-cross-sells.php:149 85 msgid "Bored of the standard dropdown fields when viewing a variable product? Turn them into colour, image, or text swatches!" 86 msgstr "" 87 88 #: inc/class-core-cross-sells.php:160, svn/trunk/inc/class-core-cross-sells.php:160, svn/tags/1.0.4/inc/class-core-cross-sells.php:160, svn/tags/1.0.5/inc/class-core-cross-sells.php:160, svn/tags/1.0.6/inc/class-core-cross-sells.php:160, svn/tags/2.0.0/inc/class-core-cross-sells.php:160, svn/tags/2.0.1/inc/class-core-cross-sells.php:160, svn/tags/1.0.5/trunk/inc/class-core-cross-sells.php:160 89 msgid "Easily add custom fields to your product variations; the perfect way to display organised additional product data to your customers." 90 msgstr "" 91 92 #: inc/class-core-cross-sells.php:167, svn/trunk/inc/class-core-cross-sells.php:167, svn/tags/1.0.4/inc/class-core-cross-sells.php:167, svn/tags/1.0.5/inc/class-core-cross-sells.php:167, svn/tags/1.0.6/inc/class-core-cross-sells.php:167, svn/tags/2.0.0/inc/class-core-cross-sells.php:167, svn/tags/2.0.1/inc/class-core-cross-sells.php:167, svn/tags/1.0.5/trunk/inc/class-core-cross-sells.php:167 93 msgid "Bundle a selection of products on a single product page. It even works with variable products!" 94 msgstr "" 95 96 #: inc/class-core-cross-sells.php:231, svn/trunk/inc/class-core-cross-sells.php:231, svn/tags/1.0.4/inc/class-core-cross-sells.php:231, svn/tags/1.0.5/inc/class-core-cross-sells.php:231, svn/tags/1.0.6/inc/class-core-cross-sells.php:231, svn/tags/2.0.0/inc/class-core-cross-sells.php:231, svn/tags/2.0.1/inc/class-core-cross-sells.php:231, svn/tags/1.0.5/trunk/inc/class-core-cross-sells.php:231 97 msgid "Learn More" 98 msgstr "" 99 100 #: inc/class-core-cross-sells.php:240, svn/trunk/inc/class-core-cross-sells.php:240, svn/tags/1.0.4/inc/class-core-cross-sells.php:240, svn/tags/1.0.5/inc/class-core-cross-sells.php:240, svn/tags/1.0.6/inc/class-core-cross-sells.php:240, svn/tags/2.0.0/inc/class-core-cross-sells.php:240, svn/tags/2.0.1/inc/class-core-cross-sells.php:240, svn/tags/1.0.5/trunk/inc/class-core-cross-sells.php:240 101 msgid "View All Iconic Plugins" 102 msgstr "" 103 104 #: inc/class-core-licence.php:171, svn/trunk/inc/class-core-licence.php:177, svn/tags/1.0.4/inc/class-core-licence.php:177, svn/tags/1.0.5/inc/class-core-licence.php:177, svn/tags/1.0.6/inc/class-core-licence.php:177, svn/tags/2.0.0/inc/class-core-licence.php:177, svn/tags/2.0.1/inc/class-core-licence.php:177, svn/tags/1.0.5/trunk/inc/class-core-licence.php:177 105 msgid "Back to Settings" 106 msgstr "" 107 108 #: inc/class-core-licence.php:197, svn/trunk/inc/class-core-licence.php:206, svn/tags/1.0.4/inc/class-core-licence.php:206, svn/tags/1.0.5/inc/class-core-licence.php:206, svn/tags/1.0.6/inc/class-core-licence.php:206, svn/tags/2.0.0/inc/class-core-licence.php:206, svn/tags/2.0.1/inc/class-core-licence.php:206, svn/tags/1.0.5/trunk/inc/class-core-licence.php:206 109 msgid "Changelog" 110 msgstr "" 111 112 #: inc/class-core-licence.php:208, svn/trunk/inc/class-core-licence.php:217, svn/tags/1.0.4/inc/class-core-licence.php:217, svn/tags/1.0.5/inc/class-core-licence.php:217, svn/tags/1.0.6/inc/class-core-licence.php:217, svn/tags/2.0.0/inc/class-core-licence.php:217, svn/tags/2.0.1/inc/class-core-licence.php:217, svn/tags/1.0.5/trunk/inc/class-core-licence.php:217 113 msgid "Manage Licence & Billing" 114 msgstr "" 115 116 #: inc/class-core-settings.php:213, svn/trunk/inc/class-core-settings.php:213, svn/tags/1.0.6/inc/class-core-settings.php:213, svn/tags/2.0.0/inc/class-core-settings.php:213, svn/tags/2.0.1/inc/class-core-settings.php:213 117 msgid "Thank you for installing %s. Check out the <a href=\"%s\">plugin dashboard</a>." 118 msgstr "" 119 120 #: inc/class-core-settings.php:307, svn/trunk/inc/class-core-settings.php:307, svn/tags/1.0.4/inc/class-core-settings.php:259, svn/tags/1.0.5/inc/class-core-settings.php:259, svn/tags/1.0.6/inc/class-core-settings.php:307, svn/tags/2.0.0/inc/class-core-settings.php:307, svn/tags/2.0.1/inc/class-core-settings.php:307, svn/tags/1.0.5/trunk/inc/class-core-settings.php:259 121 msgid "Thank you for choosing Iconic. We've put together some useful links to help you get started:" 122 msgstr "" 123 124 #: inc/class-core-settings.php:311, svn/trunk/inc/class-core-settings.php:311, svn/tags/1.0.6/inc/class-core-settings.php:311, svn/tags/2.0.0/inc/class-core-settings.php:311, svn/tags/2.0.1/inc/class-core-settings.php:311 125 msgid "Need some help?" 126 msgstr "" 127 128 #: inc/class-core-settings.php:311, svn/trunk/inc/class-core-settings.php:311, svn/tags/1.0.6/inc/class-core-settings.php:311, svn/tags/2.0.0/inc/class-core-settings.php:311, svn/tags/2.0.1/inc/class-core-settings.php:311 129 msgid "" 130 "Take a look at our\n" 131 " <a href=\"%s?utm_source=plugin&utm_medium=simple-feature-requests&utm_campaign=need-some-help\" target=\"_blank\">troubleshooting documentation</a>" 132 msgstr "" 133 134 #: inc/class-core-settings.php:312, svn/trunk/inc/class-core-settings.php:312, svn/tags/1.0.4/inc/class-core-settings.php:264, svn/tags/1.0.5/inc/class-core-settings.php:264, svn/tags/1.0.6/inc/class-core-settings.php:312, svn/tags/2.0.0/inc/class-core-settings.php:312, svn/tags/2.0.1/inc/class-core-settings.php:312, svn/tags/1.0.5/trunk/inc/class-core-settings.php:264 135 msgid "There is a permanent link to the plugin documentation in the \"Support\" section below." 136 msgstr "" 137 138 #: inc/class-core-settings.php:383, svn/trunk/inc/class-core-settings.php:383, svn/tags/1.0.4/inc/class-core-settings.php:335, svn/tags/1.0.5/inc/class-core-settings.php:335, svn/tags/1.0.6/inc/class-core-settings.php:383, svn/tags/2.0.0/inc/class-core-settings.php:383, svn/tags/2.0.1/inc/class-core-settings.php:383, svn/tags/1.0.5/trunk/inc/class-core-settings.php:335 139 msgid "Getting Started" 140 msgstr "" 141 142 #: inc/class-core-settings.php:426, svn/trunk/inc/class-core-settings.php:426, svn/tags/1.0.4/inc/class-core-settings.php:378, svn/tags/1.0.5/inc/class-core-settings.php:378, svn/tags/1.0.6/inc/class-core-settings.php:426, svn/tags/2.0.0/inc/class-core-settings.php:426, svn/tags/2.0.1/inc/class-core-settings.php:426, svn/tags/1.0.5/trunk/inc/class-core-settings.php:378 143 msgid "Dashboard" 144 msgstr "" 145 146 #: inc/class-core-settings.php:433, svn/trunk/inc/class-core-settings.php:433, svn/tags/1.0.4/inc/class-core-settings.php:385, svn/tags/1.0.5/inc/class-core-settings.php:385, svn/tags/1.0.6/inc/class-core-settings.php:433, svn/tags/2.0.0/inc/class-core-settings.php:433, svn/tags/2.0.1/inc/class-core-settings.php:433, svn/tags/1.0.5/trunk/inc/class-core-settings.php:385 147 msgid "License & Account Settings" 148 msgstr "" 149 150 #: inc/class-core-settings.php:439, svn/trunk/inc/class-core-settings.php:439, svn/tags/1.0.4/inc/class-core-settings.php:391, svn/tags/1.0.5/inc/class-core-settings.php:391, svn/tags/1.0.6/inc/class-core-settings.php:439, svn/tags/2.0.0/inc/class-core-settings.php:439, svn/tags/2.0.1/inc/class-core-settings.php:439, svn/tags/1.0.5/trunk/inc/class-core-settings.php:391 151 msgid "License & Billing" 152 msgstr "" 153 154 #: inc/class-core-settings.php:440, svn/trunk/inc/class-core-settings.php:440, svn/tags/1.0.4/inc/class-core-settings.php:392, svn/tags/1.0.5/inc/class-core-settings.php:392, svn/tags/1.0.6/inc/class-core-settings.php:440, svn/tags/2.0.0/inc/class-core-settings.php:440, svn/tags/2.0.1/inc/class-core-settings.php:440, svn/tags/1.0.5/trunk/inc/class-core-settings.php:392 155 msgid "Activate or sync your license, cancel your subscription, print invoices, and manage your account information." 156 msgstr "" 157 158 #: inc/class-core-settings.php:446, svn/trunk/inc/class-core-settings.php:446, svn/tags/1.0.4/inc/class-core-settings.php:398, svn/tags/1.0.5/inc/class-core-settings.php:398, svn/tags/1.0.6/inc/class-core-settings.php:446, svn/tags/2.0.0/inc/class-core-settings.php:446, svn/tags/2.0.1/inc/class-core-settings.php:446, svn/tags/1.0.5/trunk/inc/class-core-settings.php:398 159 msgid "Your Account" 160 msgstr "" 161 162 #: inc/class-core-settings.php:447, svn/trunk/inc/class-core-settings.php:447, svn/tags/1.0.4/inc/class-core-settings.php:399, svn/tags/1.0.5/inc/class-core-settings.php:399, svn/tags/1.0.6/inc/class-core-settings.php:447, svn/tags/2.0.0/inc/class-core-settings.php:447, svn/tags/2.0.1/inc/class-core-settings.php:447, svn/tags/1.0.5/trunk/inc/class-core-settings.php:399 163 msgid "Manage all of your Iconic plugins, supscriptions, renewals, and more." 164 msgstr "" 165 166 #: inc/class-core-settings.php:459, inc/class-core-settings.php:465, inc/class-settings.php:41, svn/trunk/inc/class-core-settings.php:459, svn/trunk/inc/class-core-settings.php:465, svn/trunk/inc/class-settings.php:58, svn/tags/1.0.4/inc/class-core-settings.php:411, svn/tags/1.0.4/inc/class-core-settings.php:417, svn/tags/1.0.5/inc/class-core-settings.php:411, svn/tags/1.0.5/inc/class-core-settings.php:417, svn/tags/1.0.6/inc/class-core-settings.php:459, svn/tags/1.0.6/inc/class-core-settings.php:465, svn/tags/2.0.0/inc/class-core-settings.php:459, svn/tags/2.0.0/inc/class-core-settings.php:465, svn/tags/2.0.0/inc/class-settings.php:58, svn/tags/2.0.1/inc/class-core-settings.php:459, svn/tags/2.0.1/inc/class-core-settings.php:465, svn/tags/2.0.1/inc/class-settings.php:58, svn/tags/1.0.5/trunk/inc/class-core-settings.php:411, svn/tags/1.0.5/trunk/inc/class-core-settings.php:417 167 msgid "Support" 168 msgstr "" 169 170 #: inc/class-core-settings.php:466, svn/trunk/inc/class-core-settings.php:466, svn/tags/1.0.4/inc/class-core-settings.php:418, svn/tags/1.0.5/inc/class-core-settings.php:418, svn/tags/1.0.6/inc/class-core-settings.php:466, svn/tags/2.0.0/inc/class-core-settings.php:466, svn/tags/2.0.1/inc/class-core-settings.php:466, svn/tags/1.0.5/trunk/inc/class-core-settings.php:418 171 msgid "Get premium support with a valid license." 172 msgstr "" 173 174 #: inc/class-core-settings.php:472, inc/class-settings.php:40, svn/trunk/inc/class-core-settings.php:472, svn/trunk/inc/class-settings.php:57, svn/tags/1.0.4/inc/class-core-settings.php:424, svn/tags/1.0.5/inc/class-core-settings.php:424, svn/tags/1.0.6/inc/class-core-settings.php:472, svn/tags/2.0.0/inc/class-core-settings.php:472, svn/tags/2.0.0/inc/class-settings.php:57, svn/tags/2.0.1/inc/class-core-settings.php:472, svn/tags/2.0.1/inc/class-settings.php:57, svn/tags/1.0.5/trunk/inc/class-core-settings.php:424 175 msgid "Documentation" 176 msgstr "" 177 178 #: inc/class-core-settings.php:473, svn/trunk/inc/class-core-settings.php:473, svn/tags/1.0.4/inc/class-core-settings.php:425, svn/tags/1.0.5/inc/class-core-settings.php:425, svn/tags/1.0.6/inc/class-core-settings.php:473, svn/tags/2.0.0/inc/class-core-settings.php:473, svn/tags/2.0.1/inc/class-core-settings.php:473, svn/tags/1.0.5/trunk/inc/class-core-settings.php:425 179 msgid "Read the plugin documentation." 180 msgstr "" 181 182 #: inc/class-core-settings.php:489, svn/trunk/inc/class-core-settings.php:489, svn/tags/1.0.4/inc/class-core-settings.php:441, svn/tags/1.0.5/inc/class-core-settings.php:441, svn/tags/1.0.6/inc/class-core-settings.php:489, svn/tags/2.0.0/inc/class-core-settings.php:489, svn/tags/2.0.1/inc/class-core-settings.php:489, svn/tags/1.0.5/trunk/inc/class-core-settings.php:441 183 msgid "Works Well With..." 184 msgstr "" 185 186 #: inc/class-core-settings.php:506, inc/class-settings.php:94, svn/trunk/inc/class-core-settings.php:506, svn/trunk/inc/class-settings.php:111, svn/tags/1.0.4/inc/class-core-settings.php:458, svn/tags/1.0.4/inc/class-settings.php:103, svn/tags/1.0.5/inc/class-core-settings.php:458, svn/tags/1.0.5/inc/class-settings.php:103, svn/tags/1.0.6/inc/class-core-settings.php:506, svn/tags/1.0.6/inc/class-settings.php:104, svn/tags/2.0.0/inc/class-core-settings.php:506, svn/tags/2.0.0/inc/class-settings.php:111, svn/tags/2.0.1/inc/class-core-settings.php:506, svn/tags/2.0.1/inc/class-settings.php:111, svn/tags/1.0.5/trunk/inc/class-core-settings.php:458, svn/tags/1.0.5/trunk/inc/class-settings.php:103 187 msgid "Submit Ticket" 188 msgstr "" 189 190 #: inc/class-core-settings.php:515, inc/class-settings.php:103, svn/trunk/inc/class-core-settings.php:515, svn/trunk/inc/class-settings.php:121, svn/tags/1.0.4/inc/class-core-settings.php:467, svn/tags/1.0.4/inc/class-settings.php:113, svn/tags/1.0.5/inc/class-core-settings.php:467, svn/tags/1.0.5/inc/class-settings.php:113, svn/tags/1.0.6/inc/class-core-settings.php:515, svn/tags/1.0.6/inc/class-settings.php:114, svn/tags/2.0.0/inc/class-core-settings.php:515, svn/tags/2.0.0/inc/class-settings.php:121, svn/tags/2.0.1/inc/class-core-settings.php:515, svn/tags/2.0.1/inc/class-settings.php:121, svn/tags/1.0.5/trunk/inc/class-core-settings.php:467, svn/tags/1.0.5/trunk/inc/class-settings.php:113 191 msgid "Read Documentation" 192 msgstr "" 193 194 #: inc/class-core-settings.php:524, svn/trunk/inc/class-core-settings.php:524, svn/tags/1.0.4/inc/class-core-settings.php:476, svn/tags/1.0.5/inc/class-core-settings.php:476, svn/tags/1.0.6/inc/class-core-settings.php:524, svn/tags/2.0.0/inc/class-core-settings.php:524, svn/tags/2.0.1/inc/class-core-settings.php:524, svn/tags/1.0.5/trunk/inc/class-core-settings.php:476 195 msgid "Manage Your Account" 196 msgstr "" 197 198 #: inc/class-factory.php:116, svn/trunk/inc/class-factory.php:116, svn/tags/1.0.0/inc/class-factory.php:41, svn/tags/1.0.1/inc/class-factory.php:41, svn/tags/1.0.2/inc/class-factory.php:119, svn/tags/1.0.3/inc/class-factory.php:119, svn/tags/1.0.4/inc/class-factory.php:120, svn/tags/1.0.5/inc/class-factory.php:120, svn/tags/1.0.6/inc/class-factory.php:120, svn/tags/2.0.0/inc/class-factory.php:116, svn/tags/2.0.1/inc/class-factory.php:116, svn/tags/1.0.5/trunk/inc/class-factory.php:120 199 msgid "A request with that title already exists." 200 msgstr "" 201 202 #: inc/class-factory.php:138, svn/trunk/inc/class-factory.php:138, svn/tags/1.0.0/inc/class-factory.php:56, svn/tags/1.0.1/inc/class-factory.php:56, svn/tags/1.0.2/inc/class-factory.php:137, svn/tags/1.0.3/inc/class-factory.php:137, svn/tags/1.0.4/inc/class-factory.php:136, svn/tags/1.0.5/inc/class-factory.php:136, svn/tags/1.0.6/inc/class-factory.php:136, svn/tags/2.0.0/inc/class-factory.php:138, svn/tags/2.0.1/inc/class-factory.php:138, svn/tags/1.0.5/trunk/inc/class-factory.php:136 203 msgid "There was an error adding your feature request. Please try again." 204 msgstr "" 205 206 #: inc/class-factory.php:153, svn/trunk/inc/class-factory.php:153, svn/tags/1.0.2/inc/class-factory.php:149, svn/tags/1.0.3/inc/class-factory.php:149, svn/tags/1.0.4/inc/class-factory.php:151, svn/tags/1.0.5/inc/class-factory.php:151, svn/tags/1.0.6/inc/class-factory.php:151, svn/tags/2.0.0/inc/class-factory.php:153, svn/tags/2.0.1/inc/class-factory.php:153, svn/tags/1.0.5/trunk/inc/class-factory.php:151 207 msgid "Thank you for your request." 208 msgstr "" 209 210 #: inc/class-factory.php:156, svn/trunk/inc/class-factory.php:156, svn/tags/1.0.2/inc/class-factory.php:152, svn/tags/1.0.3/inc/class-factory.php:152, svn/tags/1.0.4/inc/class-factory.php:154, svn/tags/1.0.5/inc/class-factory.php:154, svn/tags/1.0.6/inc/class-factory.php:154, svn/tags/2.0.0/inc/class-factory.php:156, svn/tags/2.0.1/inc/class-factory.php:156, svn/tags/1.0.5/trunk/inc/class-factory.php:154 211 msgid "It is currently %s." 212 msgstr "" 213 214 #: inc/class-notifications.php:150, svn/trunk/inc/class-notifications.php:143, svn/tags/1.0.6/inc/class-notifications.php:143, svn/tags/2.0.0/inc/class-notifications.php:143, svn/tags/2.0.1/inc/class-notifications.php:143 215 msgid "New %s" 216 msgstr "" 217 218 #: inc/class-notifications.php:150, inc/class-notifications.php:193, inc/class-notifications.php:442, inc/class-post-types.php:92, svn/trunk/inc/class-notifications.php:143, svn/trunk/inc/class-post-types.php:125, svn/tags/1.0.0/inc/class-post-types.php:31, svn/tags/1.0.1/inc/class-post-types.php:31, svn/tags/1.0.2/inc/class-post-types.php:31, svn/tags/1.0.3/inc/class-post-types.php:31, svn/tags/1.0.4/inc/class-post-types.php:56, svn/tags/1.0.5/inc/class-post-types.php:56, svn/tags/1.0.6/inc/class-notifications.php:143, svn/tags/1.0.6/inc/class-post-types.php:56, svn/tags/2.0.0/inc/class-notifications.php:143, svn/tags/2.0.0/inc/class-post-types.php:120, svn/tags/2.0.1/inc/class-notifications.php:143, svn/tags/2.0.1/inc/class-post-types.php:125, svn/tags/1.0.5/trunk/inc/class-post-types.php:56 219 msgid "Feature Request" 220 msgstr "" 221 222 #: inc/class-notifications.php:193 223 msgid "%s Status Changed" 224 msgstr "" 225 226 #: inc/class-notifications.php:253, inc/class-notifications.php:313, svn/trunk/inc/class-notifications.php:165, svn/tags/1.0.6/inc/class-notifications.php:165, svn/tags/2.0.0/inc/class-notifications.php:165, svn/tags/2.0.1/inc/class-notifications.php:165 227 msgid "Hello," 228 msgstr "" 229 230 #: inc/class-notifications.php:254, svn/trunk/inc/class-notifications.php:168, svn/tags/1.0.6/inc/class-notifications.php:168, svn/tags/2.0.0/inc/class-notifications.php:168, svn/tags/2.0.1/inc/class-notifications.php:168 231 msgid "A new %s has been posted by \"%s\" to your site." 232 msgstr "" 233 234 #: inc/class-notifications.php:254, svn/trunk/inc/class-notifications.php:168, svn/tags/1.0.6/inc/class-notifications.php:168, svn/tags/2.0.0/inc/class-notifications.php:168, svn/tags/2.0.1/inc/class-notifications.php:168 235 msgid "feature request" 236 msgstr "" 237 238 #: inc/class-notifications.php:285 239 msgid "Hello %s," 240 msgstr "" 241 242 #: inc/class-notifications.php:286 243 msgid "We thought you'd like to know the status of <a href=\"%s\">%s</a> has changed to <strong>%s</strong>." 244 msgstr "" 245 246 #: inc/class-notifications.php:314 247 msgid "Someone has posted a new comment on <a href=\"%s\">%s</a>." 248 msgstr "" 249 250 #: inc/class-notifications.php:442 251 msgid "New %s Comment" 252 msgstr "" 253 254 #: inc/class-post-types.php:91, svn/trunk/inc/class-post-types.php:124, svn/tags/1.0.0/inc/class-post-types.php:30, svn/tags/1.0.1/inc/class-post-types.php:30, svn/tags/1.0.2/inc/class-post-types.php:30, svn/tags/1.0.3/inc/class-post-types.php:30, svn/tags/1.0.4/inc/class-post-types.php:55, svn/tags/1.0.5/inc/class-post-types.php:55, svn/tags/1.0.6/inc/class-post-types.php:55, svn/tags/2.0.0/inc/class-post-types.php:119, svn/tags/2.0.1/inc/class-post-types.php:124, svn/tags/1.0.5/trunk/inc/class-post-types.php:55 255 msgid "Feature Requests" 256 msgstr "" 257 258 #: inc/class-post-types.php:93, svn/trunk/inc/class-post-types.php:126, svn/tags/1.0.4/inc/class-post-types.php:57, svn/tags/1.0.5/inc/class-post-types.php:57, svn/tags/1.0.6/inc/class-post-types.php:57, svn/tags/2.0.0/inc/class-post-types.php:121, svn/tags/2.0.1/inc/class-post-types.php:126, svn/tags/1.0.5/trunk/inc/class-post-types.php:57 259 msgid "All Requests" 260 msgstr "" 261 262 #: inc/class-post-types.php:381, inc/class-settings.php:390, inc/class-settings.php:404, svn/trunk/inc/class-post-types.php:386, svn/tags/1.0.0/inc/class-post-types.php:183, svn/tags/1.0.1/inc/class-post-types.php:183, svn/tags/1.0.2/inc/class-post-types.php:183, svn/tags/1.0.3/inc/class-post-types.php:183, svn/tags/1.0.4/inc/class-post-types.php:212, svn/tags/1.0.5/inc/class-post-types.php:212, svn/tags/1.0.6/inc/class-post-types.php:217, svn/tags/2.0.0/inc/class-post-types.php:380, svn/tags/2.0.1/inc/class-post-types.php:386, svn/tags/1.0.5/trunk/inc/class-post-types.php:212 263 msgid "Author" 264 msgstr "" 265 266 #: inc/class-post-types.php:382, inc/class-template-methods.php:48, svn/trunk/inc/class-post-types.php:387, svn/trunk/inc/class-template-methods.php:51, svn/tags/1.0.0/inc/class-post-types.php:184, svn/tags/1.0.1/inc/class-post-types.php:184, svn/tags/1.0.2/inc/class-post-types.php:184, svn/tags/1.0.2/inc/class-template-methods.php:48, svn/tags/1.0.3/inc/class-post-types.php:184, svn/tags/1.0.3/inc/class-template-methods.php:48, svn/tags/1.0.4/inc/class-post-types.php:213, svn/tags/1.0.4/inc/class-template-methods.php:51, svn/tags/1.0.5/inc/class-post-types.php:213, svn/tags/1.0.5/inc/class-template-methods.php:51, svn/tags/1.0.6/inc/class-post-types.php:218, svn/tags/1.0.6/inc/class-template-methods.php:51, svn/tags/2.0.0/inc/class-post-types.php:381, svn/tags/2.0.0/inc/class-template-methods.php:51, svn/tags/2.0.1/inc/class-post-types.php:387, svn/tags/2.0.1/inc/class-template-methods.php:51, svn/tags/1.0.5/trunk/inc/class-post-types.php:213, svn/tags/1.0.5/trunk/inc/class-template-methods.php:51 267 msgid "Status" 268 msgstr "" 269 270 #: inc/class-post-types.php:383, inc/class-settings.php:216, svn/trunk/inc/class-post-types.php:388, svn/trunk/inc/class-settings.php:220, svn/tags/1.0.0/inc/class-post-types.php:185, svn/tags/1.0.1/inc/class-post-types.php:185, svn/tags/1.0.2/inc/class-post-types.php:185, svn/tags/1.0.3/inc/class-post-types.php:185, svn/tags/1.0.4/inc/class-post-types.php:214, svn/tags/1.0.5/inc/class-post-types.php:214, svn/tags/1.0.6/inc/class-post-types.php:219, svn/tags/2.0.0/inc/class-post-types.php:382, svn/tags/2.0.0/inc/class-settings.php:220, svn/tags/2.0.1/inc/class-post-types.php:388, svn/tags/2.0.1/inc/class-settings.php:220, svn/tags/1.0.5/trunk/inc/class-post-types.php:214 271 msgid "Votes" 272 msgstr "" 273 274 #: inc/class-post-types.php:449, inc/class-post-types.php:887, svn/trunk/inc/class-post-types.php:461, svn/tags/2.0.0/inc/class-post-types.php:455, svn/tags/2.0.1/inc/class-post-types.php:461 275 msgid "Categories" 276 msgstr "" 277 278 #: inc/class-post-types.php:459, svn/trunk/inc/class-post-types.php:470, svn/tags/1.0.0/inc/class-post-types.php:248, svn/tags/1.0.1/inc/class-post-types.php:248, svn/tags/1.0.2/inc/class-post-types.php:248, svn/tags/1.0.3/inc/class-post-types.php:248, svn/tags/1.0.4/inc/class-post-types.php:285, svn/tags/1.0.5/inc/class-post-types.php:285, svn/tags/1.0.6/inc/class-post-types.php:290, svn/tags/2.0.0/inc/class-post-types.php:464, svn/tags/2.0.1/inc/class-post-types.php:470, svn/tags/1.0.5/trunk/inc/class-post-types.php:285 279 msgid "Information" 280 msgstr "" 281 282 #: inc/class-post-types.php:728, svn/trunk/inc/class-post-types.php:736, svn/tags/2.0.0/inc/class-post-types.php:732, svn/tags/2.0.1/inc/class-post-types.php:736 298 #: inc/class-post-types.php:739, svn/trunk/inc/class-post-types.php:755, svn/tags/2.0.0/inc/class-post-types.php:732, svn/tags/2.0.1/inc/class-post-types.php:736, svn/tags/2.1.0/inc/class-post-types.php:754, svn/tags/2.1.1/inc/class-post-types.php:755 283 299 msgid "Edit Feature Request" 284 300 msgstr "" 285 301 286 #: inc/class-post-types.php:7 31, svn/trunk/inc/class-post-types.php:743, svn/tags/2.0.0/inc/class-post-types.php:739, svn/tags/2.0.1/inc/class-post-types.php:743302 #: inc/class-post-types.php:742, svn/trunk/inc/class-post-types.php:762, svn/tags/2.0.0/inc/class-post-types.php:739, svn/tags/2.0.1/inc/class-post-types.php:743, svn/tags/2.1.0/inc/class-post-types.php:761, svn/tags/2.1.1/inc/class-post-types.php:762 287 303 msgid "Manage Feature Requests" 288 304 msgstr "" 289 305 290 #: inc/class-post-types.php: 799306 #: inc/class-post-types.php:826 291 307 msgid "Set Status to %s" 292 308 msgstr "" 293 309 294 #: inc/class-post-types.php:8 49310 #: inc/class-post-types.php:876 295 311 msgid "%s status updated." 296 312 msgid_plural "%s statuses udpated." … … 298 314 msgstr[1] "" 299 315 300 #: inc/class-post-types.php:8 66, inc/class-template-methods.php:352316 #: inc/class-post-types.php:893, inc/class-template-methods.php:354 301 317 msgid "Category" 302 318 msgstr "" 303 319 304 #: inc/class-post-types.php:8 72320 #: inc/class-post-types.php:899 305 321 msgctxt "taxonomy general name" 306 322 msgid "Categories" 307 323 msgstr "" 308 324 309 #: inc/class-post-types.php: 873325 #: inc/class-post-types.php:900 310 326 msgctxt "taxonomy singular name" 311 327 msgid "Category" 312 328 msgstr "" 313 329 314 #: inc/class-post-types.php: 874330 #: inc/class-post-types.php:901 315 331 msgid "Search Categories" 316 332 msgstr "" 317 333 318 #: inc/class-post-types.php: 875334 #: inc/class-post-types.php:902 319 335 msgid "Popular Categories" 320 336 msgstr "" 321 337 322 #: inc/class-post-types.php: 876338 #: inc/class-post-types.php:903 323 339 msgid "All Categories" 324 340 msgstr "" 325 341 326 #: inc/class-post-types.php: 879342 #: inc/class-post-types.php:906 327 343 msgid "Edit Category" 328 344 msgstr "" 329 345 330 #: inc/class-post-types.php: 880346 #: inc/class-post-types.php:907 331 347 msgid "Update Category" 332 348 msgstr "" 333 349 334 #: inc/class-post-types.php: 881350 #: inc/class-post-types.php:908 335 351 msgid "Add New Category" 336 352 msgstr "" 337 353 338 #: inc/class-post-types.php: 882354 #: inc/class-post-types.php:909 339 355 msgid "New Category Name" 340 356 msgstr "" 341 357 342 #: inc/class-post-types.php: 883358 #: inc/class-post-types.php:910 343 359 msgid "Separate categories with commas" 344 360 msgstr "" 345 361 346 #: inc/class-post-types.php: 884362 #: inc/class-post-types.php:911 347 363 msgid "Add or remove categories" 348 364 msgstr "" 349 365 350 #: inc/class-post-types.php: 885366 #: inc/class-post-types.php:912 351 367 msgid "Choose from the most used categories" 352 368 msgstr "" 353 369 354 #: inc/class-post-types.php: 886370 #: inc/class-post-types.php:913 355 371 msgid "No categories found." 356 372 msgstr "" 357 373 358 #: inc/class-settings.php:38, svn/trunk/inc/class-settings.php:52, svn/tags/1.0.4/inc/class-settings.php:46, svn/tags/1.0.5/inc/class-settings.php:46, svn/tags/1.0.6/inc/class-settings.php:47, svn/tags/2.0.0/inc/class-settings.php:52, svn/tags/2.0.1/inc/class-settings.php:52, svn/tags/ 1.0.5/trunk/inc/class-settings.php:46374 #: inc/class-settings.php:38, svn/trunk/inc/class-settings.php:52, svn/tags/1.0.4/inc/class-settings.php:46, svn/tags/1.0.5/inc/class-settings.php:46, svn/tags/1.0.6/inc/class-settings.php:47, svn/tags/2.0.0/inc/class-settings.php:52, svn/tags/2.0.1/inc/class-settings.php:52, svn/tags/2.1.0/inc/class-settings.php:52, svn/tags/2.1.1/inc/class-settings.php:52, svn/tags/1.0.5/trunk/inc/class-settings.php:46 359 375 msgid "Settings" 360 376 msgstr "" 361 377 362 #: inc/class-settings.php:137, svn/trunk/inc/class-settings.php:153, svn/tags/1.0.6/inc/class-settings.php:146, svn/tags/2.0.0/inc/class-settings.php:153, svn/tags/2.0.1/inc/class-settings.php:153 378 #: inc/class-settings.php:137, svn/trunk/inc/class-settings.php:153, svn/tags/1.0.6/inc/class-settings.php:146, svn/tags/2.0.0/inc/class-settings.php:153, svn/tags/2.0.1/inc/class-settings.php:153, svn/tags/2.1.0/inc/class-settings.php:153, svn/tags/2.1.1/inc/class-settings.php:153 363 379 msgid "General" 364 380 msgstr "" 365 381 366 #: inc/class-settings.php:143, svn/trunk/inc/class-settings.php:158, svn/tags/2.0.0/inc/class-settings.php:158, svn/tags/2.0.1/inc/class-settings.php:158 382 #: inc/class-settings.php:143, svn/trunk/inc/class-settings.php:158, svn/tags/2.0.0/inc/class-settings.php:158, svn/tags/2.0.1/inc/class-settings.php:158, svn/tags/2.1.0/inc/class-settings.php:158, svn/tags/2.1.1/inc/class-settings.php:158 367 383 msgid "Setup" 368 384 msgstr "" 369 385 370 #: inc/class-settings.php:149, svn/trunk/inc/class-settings.php:164, svn/tags/2.0.0/inc/class-settings.php:164, svn/tags/2.0.1/inc/class-settings.php:164 386 #: inc/class-settings.php:149, svn/trunk/inc/class-settings.php:164, svn/tags/2.0.0/inc/class-settings.php:164, svn/tags/2.0.1/inc/class-settings.php:164, svn/tags/2.1.0/inc/class-settings.php:164, svn/tags/2.1.1/inc/class-settings.php:164 371 387 msgid "Archive Page" 372 388 msgstr "" 373 389 374 #: inc/class-settings.php:150, svn/trunk/inc/class-settings.php:165, svn/tags/2.0.0/inc/class-settings.php:165, svn/tags/2.0.1/inc/class-settings.php:165 390 #: inc/class-settings.php:150, svn/trunk/inc/class-settings.php:165, svn/tags/2.0.0/inc/class-settings.php:165, svn/tags/2.0.1/inc/class-settings.php:165, svn/tags/2.1.0/inc/class-settings.php:165, svn/tags/2.1.1/inc/class-settings.php:165 375 391 msgid "Select the archive page for your feature requests. Make sure you add the [simple-feature-requests] shortcode to the selected page." 376 392 msgstr "" 377 393 378 #: inc/class-settings.php:161, svn/trunk/inc/class-settings.php:175, svn/tags/2.0.0/inc/class-settings.php:175, svn/tags/2.0.1/inc/class-settings.php:175 394 #: inc/class-settings.php:161, svn/trunk/inc/class-settings.php:175, svn/tags/2.0.0/inc/class-settings.php:175, svn/tags/2.0.1/inc/class-settings.php:175, svn/tags/2.1.0/inc/class-settings.php:175, svn/tags/2.1.1/inc/class-settings.php:175 379 395 msgid "Comments" 380 396 msgstr "" 381 397 382 #: inc/class-settings.php:167, svn/trunk/inc/class-settings.php:180, svn/tags/2.0.0/inc/class-settings.php:180, svn/tags/2.0.1/inc/class-settings.php:180 398 #: inc/class-settings.php:167, svn/trunk/inc/class-settings.php:180, svn/tags/2.0.0/inc/class-settings.php:180, svn/tags/2.0.1/inc/class-settings.php:180, svn/tags/2.1.0/inc/class-settings.php:180, svn/tags/2.1.1/inc/class-settings.php:180 383 399 msgid "Enable Comments" 384 400 msgstr "" 385 401 386 #: inc/class-settings.php:168, svn/trunk/inc/class-settings.php:181, svn/tags/2.0.0/inc/class-settings.php:181, svn/tags/2.0.1/inc/class-settings.php:181 402 #: inc/class-settings.php:168, svn/trunk/inc/class-settings.php:181, svn/tags/2.0.0/inc/class-settings.php:181, svn/tags/2.0.1/inc/class-settings.php:181, svn/tags/2.1.0/inc/class-settings.php:181, svn/tags/2.1.1/inc/class-settings.php:181 387 403 msgid "When enabled, users will be able to comment on feature requests." 388 404 msgstr "" 389 405 390 #: inc/class-settings.php:178, svn/trunk/inc/class-settings.php:189, svn/tags/1.0.6/inc/class-settings.php:151, svn/tags/2.0.0/inc/class-settings.php:189, svn/tags/2.0.1/inc/class-settings.php:189 406 #: inc/class-settings.php:178, svn/trunk/inc/class-settings.php:189, svn/tags/1.0.6/inc/class-settings.php:151, svn/tags/2.0.0/inc/class-settings.php:189, svn/tags/2.0.1/inc/class-settings.php:189, svn/tags/2.1.0/inc/class-settings.php:189, svn/tags/2.1.1/inc/class-settings.php:189 391 407 msgid "Credit" 392 408 msgstr "" 393 409 394 #: inc/class-settings.php:184, svn/trunk/inc/class-settings.php:194, svn/tags/1.0.6/inc/class-settings.php:156, svn/tags/2.0.0/inc/class-settings.php:194, svn/tags/2.0.1/inc/class-settings.php:194 410 #: inc/class-settings.php:184, svn/trunk/inc/class-settings.php:194, svn/tags/1.0.6/inc/class-settings.php:156, svn/tags/2.0.0/inc/class-settings.php:194, svn/tags/2.0.1/inc/class-settings.php:194, svn/tags/2.1.0/inc/class-settings.php:194, svn/tags/2.1.1/inc/class-settings.php:194 395 411 msgid "Enable Credit" 396 412 msgstr "" 397 413 398 #: inc/class-settings.php:185, svn/trunk/inc/class-settings.php:195, svn/tags/2.0.0/inc/class-settings.php:195, svn/tags/2.0.1/inc/class-settings.php:195 414 #: inc/class-settings.php:185, svn/trunk/inc/class-settings.php:195, svn/tags/2.0.0/inc/class-settings.php:195, svn/tags/2.0.1/inc/class-settings.php:195, svn/tags/2.1.0/inc/class-settings.php:195, svn/tags/2.1.1/inc/class-settings.php:195 399 415 msgid "When enabled, a \"powered by\" link will be displayed in the footer of the feature requests templates. Help us spread the word!" 400 416 msgstr "" 401 417 402 #: inc/class-settings.php:194, svn/trunk/inc/class-settings.php:202, svn/tags/1.0.6/inc/class-settings.php:164, svn/tags/2.0.0/inc/class-settings.php:202, svn/tags/2.0.1/inc/class-settings.php:202 418 #: inc/class-settings.php:194, svn/trunk/inc/class-settings.php:202, svn/tags/1.0.6/inc/class-settings.php:164, svn/tags/2.0.0/inc/class-settings.php:202, svn/tags/2.0.1/inc/class-settings.php:202, svn/tags/2.1.0/inc/class-settings.php:202, svn/tags/2.1.1/inc/class-settings.php:202 403 419 msgid "Notifications" 404 420 msgstr "" 405 421 406 #: inc/class-settings.php:200, svn/trunk/inc/class-settings.php:207, svn/tags/1.0.6/inc/class-settings.php:169, svn/tags/2.0.0/inc/class-settings.php:207, svn/tags/2.0.1/inc/class-settings.php:207 422 #: inc/class-settings.php:200, svn/trunk/inc/class-settings.php:207, svn/tags/1.0.6/inc/class-settings.php:169, svn/tags/2.0.0/inc/class-settings.php:207, svn/tags/2.0.1/inc/class-settings.php:207, svn/tags/2.1.0/inc/class-settings.php:207, svn/tags/2.1.1/inc/class-settings.php:207 407 423 msgid "Email Contents" 408 424 msgstr "" 409 425 410 #: inc/class-settings.php:206, svn/trunk/inc/class-settings.php:212, svn/tags/1.0.6/inc/class-settings.php:174, svn/tags/2.0.0/inc/class-settings.php:212, svn/tags/2.0.1/inc/class-settings.php:212 426 #: inc/class-settings.php:206, svn/trunk/inc/class-settings.php:212, svn/tags/1.0.6/inc/class-settings.php:174, svn/tags/2.0.0/inc/class-settings.php:212, svn/tags/2.0.1/inc/class-settings.php:212, svn/tags/2.1.0/inc/class-settings.php:212, svn/tags/2.1.1/inc/class-settings.php:212 411 427 msgid "Signature" 412 428 msgstr "" 413 429 414 #: inc/class-settings.php:207, svn/trunk/inc/class-settings.php:213, svn/tags/1.0.6/inc/class-settings.php:175, svn/tags/2.0.0/inc/class-settings.php:213, svn/tags/2.0.1/inc/class-settings.php:213 430 #: inc/class-settings.php:207, svn/trunk/inc/class-settings.php:213, svn/tags/1.0.6/inc/class-settings.php:175, svn/tags/2.0.0/inc/class-settings.php:213, svn/tags/2.0.1/inc/class-settings.php:213, svn/tags/2.1.0/inc/class-settings.php:213, svn/tags/2.1.1/inc/class-settings.php:213 415 431 msgid "Used to sign off notification emails. You can use %site_name% and %site_url%." 416 432 msgstr "" 417 433 418 #: inc/class-settings.php:209, svn/trunk/inc/class-settings.php:215, svn/tags/1.0.6/inc/class-settings.php:177, svn/tags/2.0.0/inc/class-settings.php:215, svn/tags/2.0.1/inc/class-settings.php:215 434 #: inc/class-settings.php:209, svn/trunk/inc/class-settings.php:215, svn/tags/1.0.6/inc/class-settings.php:177, svn/tags/2.0.0/inc/class-settings.php:215, svn/tags/2.0.1/inc/class-settings.php:215, svn/tags/2.1.0/inc/class-settings.php:215, svn/tags/2.1.1/inc/class-settings.php:215 419 435 msgid "Thank you" 420 436 msgstr "" 421 437 422 #: inc/class-settings.php:222, svn/trunk/inc/class-settings.php:225, svn/tags/2.0.0/inc/class-settings.php:225, svn/tags/2.0.1/inc/class-settings.php:225 438 #: inc/class-settings.php:222, svn/trunk/inc/class-settings.php:225, svn/tags/2.0.0/inc/class-settings.php:225, svn/tags/2.0.1/inc/class-settings.php:225, svn/tags/2.1.0/inc/class-settings.php:225, svn/tags/2.1.1/inc/class-settings.php:225 423 439 msgid "Voting Settings" 424 440 msgstr "" 425 441 426 #: inc/class-settings.php:228, svn/trunk/inc/class-settings.php:230, svn/tags/2.0.0/inc/class-settings.php:230, svn/tags/2.0.1/inc/class-settings.php:230 442 #: inc/class-settings.php:228, svn/trunk/inc/class-settings.php:230, svn/tags/2.0.0/inc/class-settings.php:230, svn/tags/2.0.1/inc/class-settings.php:230, svn/tags/2.1.0/inc/class-settings.php:230, svn/tags/2.1.1/inc/class-settings.php:230 427 443 msgid "Allow Own Vote Removal?" 428 444 msgstr "" 429 445 430 #: inc/class-settings.php:229, svn/trunk/inc/class-settings.php:231, svn/tags/2.0.0/inc/class-settings.php:231, svn/tags/2.0.1/inc/class-settings.php:231 446 #: inc/class-settings.php:229, svn/trunk/inc/class-settings.php:231, svn/tags/2.0.0/inc/class-settings.php:231, svn/tags/2.0.1/inc/class-settings.php:231, svn/tags/2.1.0/inc/class-settings.php:231, svn/tags/2.1.1/inc/class-settings.php:231 431 447 msgid "Do you want to allow your users to remove their votes on their own requests?" 432 448 msgstr "" 433 449 434 #: inc/class-settings.php:255, inc/class-settings.php: 366450 #: inc/class-settings.php:255, inc/class-settings.php:405, svn/trunk/inc/class-settings.php:254, svn/tags/2.1.0/inc/class-settings.php:254, svn/tags/2.1.1/inc/class-settings.php:254 435 451 msgid "Default Request Status" 436 452 msgstr "" 437 453 438 #: inc/class-settings.php:256 454 #: inc/class-settings.php:256, svn/trunk/inc/class-settings.php:255, svn/tags/2.1.0/inc/class-settings.php:255, svn/tags/2.1.1/inc/class-settings.php:255 439 455 msgid "Set the default request status." 440 456 msgstr "" 441 457 442 #: inc/class-settings.php:264, inc/class-settings.php:376, svn/trunk/inc/class-settings.php:255, svn/tags/2.0.0/inc/class-settings.php:255, svn/tags/2.0.1/inc/class-settings.php:255 458 #: inc/class-settings.php:263, inc/class-settings.php:414 459 msgid "Requests Per Page" 460 msgstr "" 461 462 #: inc/class-settings.php:264, inc/class-settings.php:415 463 msgid "How many requests to show per page in the archive." 464 msgstr "" 465 466 #: inc/class-settings.php:272, inc/class-settings.php:423 467 msgid "Admin" 468 msgstr "" 469 470 #: inc/class-settings.php:278 471 msgid "Email Addresses" 472 msgstr "" 473 474 #: inc/class-settings.php:279 475 msgid "Set the admin email addresses for sending and receiving email notifications." 476 msgstr "" 477 478 #: inc/class-settings.php:289, inc/class-settings.php:447, svn/trunk/inc/class-settings.php:262, svn/tags/2.0.0/inc/class-settings.php:255, svn/tags/2.0.1/inc/class-settings.php:255, svn/tags/2.1.0/inc/class-settings.php:262, svn/tags/2.1.1/inc/class-settings.php:262 443 479 msgid "Events" 444 480 msgstr "" 445 481 446 #: inc/class-settings.php:270, inc/class-settings.php:382, svn/trunk/inc/class-settings.php:260, svn/tags/2.0.0/inc/class-settings.php:260, svn/tags/2.0.1/inc/class-settings.php:260 482 #: inc/class-settings.php:295, inc/class-settings.php:453 483 msgid "New Request" 484 msgstr "" 485 486 #: inc/class-settings.php:296, inc/class-settings.php:454 487 msgid "Send a notification to the admin email address when a new request is added." 488 msgstr "" 489 490 #: inc/class-settings.php:302, inc/class-settings.php:460, svn/trunk/inc/class-settings.php:267, svn/tags/2.0.0/inc/class-settings.php:260, svn/tags/2.0.1/inc/class-settings.php:260, svn/tags/2.1.0/inc/class-settings.php:267, svn/tags/2.1.1/inc/class-settings.php:267 447 491 msgid "Status Change" 448 492 msgstr "" 449 493 450 #: inc/class-settings.php: 271, inc/class-settings.php:383, svn/trunk/inc/class-settings.php:261, svn/tags/2.0.0/inc/class-settings.php:261, svn/tags/2.0.1/inc/class-settings.php:261494 #: inc/class-settings.php:303, inc/class-settings.php:461, svn/trunk/inc/class-settings.php:268, svn/tags/2.0.0/inc/class-settings.php:261, svn/tags/2.0.1/inc/class-settings.php:261, svn/tags/2.1.0/inc/class-settings.php:268, svn/tags/2.1.1/inc/class-settings.php:268 451 495 msgid "Send a notification when the request status changes." 452 496 msgstr "" 453 497 454 #: inc/class-settings.php:281, inc/class-settings.php:414, svn/trunk/inc/class-settings.php:269, svn/tags/2.0.0/inc/class-settings.php:269, svn/tags/2.0.1/inc/class-settings.php:269 498 #: inc/class-settings.php:309, inc/class-settings.php:474 499 msgid "Comment" 500 msgstr "" 501 502 #: inc/class-settings.php:310, inc/class-settings.php:475 503 msgid "Send a notification when a new comment is added to the request." 504 msgstr "" 505 506 #: inc/class-settings.php:320, inc/class-settings.php:492, svn/trunk/inc/class-settings.php:276, svn/tags/2.0.0/inc/class-settings.php:269, svn/tags/2.0.1/inc/class-settings.php:269, svn/tags/2.1.0/inc/class-settings.php:276, svn/tags/2.1.1/inc/class-settings.php:276 455 507 msgid "Voting Limits" 456 508 msgstr "" 457 509 458 #: inc/class-settings.php: 287, inc/class-settings.php:420, svn/trunk/inc/class-settings.php:274, svn/tags/2.0.0/inc/class-settings.php:274, svn/tags/2.0.1/inc/class-settings.php:274510 #: inc/class-settings.php:326, inc/class-settings.php:498, svn/trunk/inc/class-settings.php:281, svn/tags/2.0.0/inc/class-settings.php:274, svn/tags/2.0.1/inc/class-settings.php:274, svn/tags/2.1.0/inc/class-settings.php:281, svn/tags/2.1.1/inc/class-settings.php:281 459 511 msgid "Votes Limit" 460 512 msgstr "" 461 513 462 #: inc/class-settings.php: 288, inc/class-settings.php:421, svn/trunk/inc/class-settings.php:275, svn/tags/2.0.0/inc/class-settings.php:275, svn/tags/2.0.1/inc/class-settings.php:275514 #: inc/class-settings.php:327, inc/class-settings.php:499, svn/trunk/inc/class-settings.php:282, svn/tags/2.0.0/inc/class-settings.php:275, svn/tags/2.0.1/inc/class-settings.php:275, svn/tags/2.1.0/inc/class-settings.php:282, svn/tags/2.1.1/inc/class-settings.php:282 463 515 msgid "How many votes should each user get? Enter 0 or leave empty for no limit." 464 516 msgstr "" 465 517 466 #: inc/class-settings.php:3 42, svn/trunk/inc/class-settings.php:325, svn/tags/2.0.0/inc/class-settings.php:325, svn/tags/2.0.1/inc/class-settings.php:325518 #: inc/class-settings.php:381, svn/trunk/inc/class-settings.php:332, svn/tags/2.0.0/inc/class-settings.php:325, svn/tags/2.0.1/inc/class-settings.php:325, svn/tags/2.1.0/inc/class-settings.php:332, svn/tags/2.1.1/inc/class-settings.php:332 467 519 msgid "Important!" 468 520 msgstr "" 469 521 470 #: inc/class-settings.php:3 43, svn/trunk/inc/class-settings.php:328, svn/tags/2.0.0/inc/class-settings.php:328, svn/tags/2.0.1/inc/class-settings.php:328522 #: inc/class-settings.php:382, svn/trunk/inc/class-settings.php:335, svn/tags/2.0.0/inc/class-settings.php:328, svn/tags/2.0.1/inc/class-settings.php:328, svn/tags/2.1.0/inc/class-settings.php:335, svn/tags/2.1.1/inc/class-settings.php:335 471 523 msgid "You need to <a href=\"%s\">set an archive page</a> for Simple Feature Requests, under the \"General\" tab." 472 524 msgstr "" 473 525 474 #: inc/class-settings.php: 367526 #: inc/class-settings.php:406 475 527 msgid "The default status for when a request is first created." 476 528 msgstr "" 477 529 478 #: inc/class-settings.php:391, inc/class-settings.php:405 530 #: inc/class-settings.php:429 531 msgid "Admin Email" 532 msgstr "" 533 534 #: inc/class-settings.php:430 535 msgid "Admin notifications will be sent to this email address." 536 msgstr "" 537 538 #: inc/class-settings.php:436 539 msgid "From Email" 540 msgstr "" 541 542 #: inc/class-settings.php:437 543 msgid "Notifications will be sent \"from\" this email address." 544 msgstr "" 545 546 #: inc/class-settings.php:469, inc/class-settings.php:483 479 547 msgid "Voter" 480 548 msgstr "" 481 549 482 #: inc/class-settings.php:396 483 msgid "Comment" 484 msgstr "" 485 486 #: inc/class-settings.php:397 487 msgid "Send a notification when a new comment is added to the request." 488 msgstr "" 489 490 #: inc/class-settings.php:427 550 #: inc/class-settings.php:505 491 551 msgid "Reimburse Votes" 492 552 msgstr "" 493 553 494 #: inc/class-settings.php: 428554 #: inc/class-settings.php:506 495 555 msgid "Reimburse votes to a user when a request they voted on has any of the selected statuses." 496 556 msgstr "" 497 557 498 #: inc/class-shortcodes.php:40, svn/trunk/inc/class-shortcodes.php:40, svn/tags/2.0.0/inc/class-shortcodes.php:40, svn/tags/2.0.1/inc/class-shortcodes.php:40 558 #: inc/class-shortcodes.php:40, svn/trunk/inc/class-shortcodes.php:40, svn/tags/2.0.0/inc/class-shortcodes.php:40, svn/tags/2.0.1/inc/class-shortcodes.php:40, svn/tags/2.1.0/inc/class-shortcodes.php:40, svn/tags/2.1.1/inc/class-shortcodes.php:40 499 559 msgid "Please select this page (%s) as the <strong>Archive Page</strong> in <a href=\"%s\">the settings</a>, under the \"General\" tab." 500 560 msgstr "" … … 516 576 msgstr "" 517 577 518 #: inc/class-submission.php:37, svn/trunk/inc/class-submission.php:39, svn/tags/1.0.0/inc/class-submission.php:37, svn/tags/1.0.1/inc/class-submission.php:37, svn/tags/1.0.2/inc/class-submission.php:37, svn/tags/1.0.3/inc/class-submission.php:37, svn/tags/1.0.4/inc/class-submission.php:39, svn/tags/1.0.5/inc/class-submission.php:39, svn/tags/1.0.6/inc/class-submission.php:39, svn/tags/2.0.0/inc/class-submission.php:39, svn/tags/2.0.1/inc/class-submission.php:39, svn/tags/ 1.0.5/trunk/inc/class-submission.php:39578 #: inc/class-submission.php:37, svn/trunk/inc/class-submission.php:39, svn/tags/1.0.0/inc/class-submission.php:37, svn/tags/1.0.1/inc/class-submission.php:37, svn/tags/1.0.2/inc/class-submission.php:37, svn/tags/1.0.3/inc/class-submission.php:37, svn/tags/1.0.4/inc/class-submission.php:39, svn/tags/1.0.5/inc/class-submission.php:39, svn/tags/1.0.6/inc/class-submission.php:39, svn/tags/2.0.0/inc/class-submission.php:39, svn/tags/2.0.1/inc/class-submission.php:39, svn/tags/2.1.0/inc/class-submission.php:39, svn/tags/2.1.1/inc/class-submission.php:39, svn/tags/1.0.5/trunk/inc/class-submission.php:39 519 579 msgid "There was an error submitting your request." 520 580 msgstr "" 521 581 522 #: inc/class-submission.php:41, svn/trunk/inc/class-submission.php:42, svn/tags/1.0.0/inc/class-submission.php:41, svn/tags/1.0.1/inc/class-submission.php:41, svn/tags/1.0.2/inc/class-submission.php:41, svn/tags/1.0.3/inc/class-submission.php:41, svn/tags/1.0.4/inc/class-submission.php:42, svn/tags/1.0.5/inc/class-submission.php:42, svn/tags/1.0.6/inc/class-submission.php:42, svn/tags/2.0.0/inc/class-submission.php:42, svn/tags/2.0.1/inc/class-submission.php:42, svn/tags/ 1.0.5/trunk/inc/class-submission.php:42582 #: inc/class-submission.php:41, svn/trunk/inc/class-submission.php:42, svn/tags/1.0.0/inc/class-submission.php:41, svn/tags/1.0.1/inc/class-submission.php:41, svn/tags/1.0.2/inc/class-submission.php:41, svn/tags/1.0.3/inc/class-submission.php:41, svn/tags/1.0.4/inc/class-submission.php:42, svn/tags/1.0.5/inc/class-submission.php:42, svn/tags/1.0.6/inc/class-submission.php:42, svn/tags/2.0.0/inc/class-submission.php:42, svn/tags/2.0.1/inc/class-submission.php:42, svn/tags/2.1.0/inc/class-submission.php:42, svn/tags/2.1.1/inc/class-submission.php:42, svn/tags/1.0.5/trunk/inc/class-submission.php:42 523 583 msgid "Please enter a request title." 524 584 msgstr "" 525 585 526 #: inc/class-submission.php:45, svn/trunk/inc/class-submission.php:45, svn/tags/1.0.0/inc/class-submission.php:45, svn/tags/1.0.1/inc/class-submission.php:45, svn/tags/1.0.2/inc/class-submission.php:45, svn/tags/1.0.3/inc/class-submission.php:45, svn/tags/1.0.4/inc/class-submission.php:45, svn/tags/1.0.5/inc/class-submission.php:45, svn/tags/1.0.6/inc/class-submission.php:45, svn/tags/2.0.0/inc/class-submission.php:45, svn/tags/2.0.1/inc/class-submission.php:45, svn/tags/ 1.0.5/trunk/inc/class-submission.php:45586 #: inc/class-submission.php:45, svn/trunk/inc/class-submission.php:45, svn/tags/1.0.0/inc/class-submission.php:45, svn/tags/1.0.1/inc/class-submission.php:45, svn/tags/1.0.2/inc/class-submission.php:45, svn/tags/1.0.3/inc/class-submission.php:45, svn/tags/1.0.4/inc/class-submission.php:45, svn/tags/1.0.5/inc/class-submission.php:45, svn/tags/1.0.6/inc/class-submission.php:45, svn/tags/2.0.0/inc/class-submission.php:45, svn/tags/2.0.1/inc/class-submission.php:45, svn/tags/2.1.0/inc/class-submission.php:45, svn/tags/2.1.1/inc/class-submission.php:45, svn/tags/1.0.5/trunk/inc/class-submission.php:45 527 587 msgid "Please enter a request description." 528 588 msgstr "" 529 589 530 #: inc/class-submission.php:69, svn/trunk/inc/class-submission.php:71, svn/tags/1.0.4/inc/class-submission.php:71, svn/tags/1.0.5/inc/class-submission.php:71, svn/tags/1.0.6/inc/class-submission.php:71, svn/tags/2.0.0/inc/class-submission.php:71, svn/tags/2.0.1/inc/class-submission.php:71, svn/tags/ 1.0.5/trunk/inc/class-submission.php:71590 #: inc/class-submission.php:69, svn/trunk/inc/class-submission.php:71, svn/tags/1.0.4/inc/class-submission.php:71, svn/tags/1.0.5/inc/class-submission.php:71, svn/tags/1.0.6/inc/class-submission.php:71, svn/tags/2.0.0/inc/class-submission.php:71, svn/tags/2.0.1/inc/class-submission.php:71, svn/tags/2.1.0/inc/class-submission.php:71, svn/tags/2.1.1/inc/class-submission.php:71, svn/tags/1.0.5/trunk/inc/class-submission.php:71 531 591 msgid "Sorry, there was an issue adding that request. Please try again." 532 592 msgstr "" … … 536 596 msgstr "" 537 597 538 #: inc/class-template-hooks.php:262, svn/trunk/inc/class-template-hooks.php:2 33, svn/tags/1.0.0/inc/class-template-hooks.php:227, svn/tags/1.0.1/inc/class-template-hooks.php:227, svn/tags/1.0.2/inc/class-template-hooks.php:227, svn/tags/1.0.3/inc/class-template-hooks.php:227, svn/tags/1.0.4/inc/class-template-hooks.php:229, svn/tags/1.0.5/inc/class-template-hooks.php:229, svn/tags/1.0.6/inc/class-template-hooks.php:233, svn/tags/2.0.0/inc/class-template-hooks.php:233, svn/tags/2.0.1/inc/class-template-hooks.php:233, svn/tags/1.0.5/trunk/inc/class-template-hooks.php:229598 #: inc/class-template-hooks.php:262, svn/trunk/inc/class-template-hooks.php:244, svn/tags/1.0.0/inc/class-template-hooks.php:227, svn/tags/1.0.1/inc/class-template-hooks.php:227, svn/tags/1.0.2/inc/class-template-hooks.php:227, svn/tags/1.0.3/inc/class-template-hooks.php:227, svn/tags/1.0.4/inc/class-template-hooks.php:229, svn/tags/1.0.5/inc/class-template-hooks.php:229, svn/tags/1.0.6/inc/class-template-hooks.php:233, svn/tags/2.0.0/inc/class-template-hooks.php:233, svn/tags/2.0.1/inc/class-template-hooks.php:233, svn/tags/2.1.0/inc/class-template-hooks.php:244, svn/tags/2.1.1/inc/class-template-hooks.php:244, svn/tags/1.0.5/trunk/inc/class-template-hooks.php:229 539 599 msgid "Powered by" 540 600 msgstr "" 541 601 542 #: inc/class-template-hooks.php:264, svn/trunk/inc/class-template-hooks.php:2 37, svn/tags/1.0.0/inc/class-template-hooks.php:229, svn/tags/1.0.1/inc/class-template-hooks.php:229, svn/tags/1.0.2/inc/class-template-hooks.php:229, svn/tags/1.0.3/inc/class-template-hooks.php:229, svn/tags/1.0.4/inc/class-template-hooks.php:233, svn/tags/1.0.5/inc/class-template-hooks.php:233, svn/tags/1.0.6/inc/class-template-hooks.php:237, svn/tags/2.0.0/inc/class-template-hooks.php:237, svn/tags/2.0.1/inc/class-template-hooks.php:237, svn/tags/1.0.5/trunk/inc/class-template-hooks.php:233602 #: inc/class-template-hooks.php:264, svn/trunk/inc/class-template-hooks.php:248, svn/tags/1.0.0/inc/class-template-hooks.php:229, svn/tags/1.0.1/inc/class-template-hooks.php:229, svn/tags/1.0.2/inc/class-template-hooks.php:229, svn/tags/1.0.3/inc/class-template-hooks.php:229, svn/tags/1.0.4/inc/class-template-hooks.php:233, svn/tags/1.0.5/inc/class-template-hooks.php:233, svn/tags/1.0.6/inc/class-template-hooks.php:237, svn/tags/2.0.0/inc/class-template-hooks.php:237, svn/tags/2.0.1/inc/class-template-hooks.php:237, svn/tags/2.1.0/inc/class-template-hooks.php:248, svn/tags/2.1.1/inc/class-template-hooks.php:248, svn/tags/1.0.5/trunk/inc/class-template-hooks.php:233 543 603 msgid "Simple feature Requests" 544 604 msgstr "" 545 605 546 #: inc/class-template-methods.php:24, svn/trunk/inc/class-template-methods.php:26, svn/tags/1.0.0/inc/class-template-methods.php:23, svn/tags/1.0.1/inc/class-template-methods.php:23, svn/tags/1.0.2/inc/class-template-methods.php:24, svn/tags/1.0.3/inc/class-template-methods.php:24, svn/tags/1.0.4/inc/class-template-methods.php:26, svn/tags/1.0.5/inc/class-template-methods.php:26, svn/tags/1.0.6/inc/class-template-methods.php:26, svn/tags/2.0.0/inc/class-template-methods.php:26, svn/tags/2.0.1/inc/class-template-methods.php:26, svn/tags/ 1.0.5/trunk/inc/class-template-methods.php:26606 #: inc/class-template-methods.php:24, svn/trunk/inc/class-template-methods.php:26, svn/tags/1.0.0/inc/class-template-methods.php:23, svn/tags/1.0.1/inc/class-template-methods.php:23, svn/tags/1.0.2/inc/class-template-methods.php:24, svn/tags/1.0.3/inc/class-template-methods.php:24, svn/tags/1.0.4/inc/class-template-methods.php:26, svn/tags/1.0.5/inc/class-template-methods.php:26, svn/tags/1.0.6/inc/class-template-methods.php:26, svn/tags/2.0.0/inc/class-template-methods.php:26, svn/tags/2.0.1/inc/class-template-methods.php:26, svn/tags/2.1.0/inc/class-template-methods.php:26, svn/tags/2.1.1/inc/class-template-methods.php:26, svn/tags/1.0.5/trunk/inc/class-template-methods.php:26 547 607 msgid "Latest" 548 608 msgstr "" 549 609 550 #: inc/class-template-methods.php:30, svn/trunk/inc/class-template-methods.php:34, svn/tags/1.0.0/inc/class-template-methods.php:28, svn/tags/1.0.1/inc/class-template-methods.php:28, svn/tags/1.0.2/inc/class-template-methods.php:30, svn/tags/1.0.3/inc/class-template-methods.php:30, svn/tags/1.0.4/inc/class-template-methods.php:34, svn/tags/1.0.5/inc/class-template-methods.php:34, svn/tags/1.0.6/inc/class-template-methods.php:34, svn/tags/2.0.0/inc/class-template-methods.php:34, svn/tags/2.0.1/inc/class-template-methods.php:34, svn/tags/ 1.0.5/trunk/inc/class-template-methods.php:34610 #: inc/class-template-methods.php:30, svn/trunk/inc/class-template-methods.php:34, svn/tags/1.0.0/inc/class-template-methods.php:28, svn/tags/1.0.1/inc/class-template-methods.php:28, svn/tags/1.0.2/inc/class-template-methods.php:30, svn/tags/1.0.3/inc/class-template-methods.php:30, svn/tags/1.0.4/inc/class-template-methods.php:34, svn/tags/1.0.5/inc/class-template-methods.php:34, svn/tags/1.0.6/inc/class-template-methods.php:34, svn/tags/2.0.0/inc/class-template-methods.php:34, svn/tags/2.0.1/inc/class-template-methods.php:34, svn/tags/2.1.0/inc/class-template-methods.php:34, svn/tags/2.1.1/inc/class-template-methods.php:34, svn/tags/1.0.5/trunk/inc/class-template-methods.php:34 551 611 msgid "Top" 552 612 msgstr "" 553 613 554 #: inc/class-template-methods.php:39, svn/trunk/inc/class-template-methods.php:44, svn/tags/1.0.0/inc/class-template-methods.php:36, svn/tags/1.0.1/inc/class-template-methods.php:36, svn/tags/1.0.2/inc/class-template-methods.php:39, svn/tags/1.0.3/inc/class-template-methods.php:39, svn/tags/1.0.4/inc/class-template-methods.php:44, svn/tags/1.0.5/inc/class-template-methods.php:44, svn/tags/1.0.6/inc/class-template-methods.php:44, svn/tags/2.0.0/inc/class-template-methods.php:44, svn/tags/2.0.1/inc/class-template-methods.php:44, svn/tags/ 1.0.5/trunk/inc/class-template-methods.php:44614 #: inc/class-template-methods.php:39, svn/trunk/inc/class-template-methods.php:44, svn/tags/1.0.0/inc/class-template-methods.php:36, svn/tags/1.0.1/inc/class-template-methods.php:36, svn/tags/1.0.2/inc/class-template-methods.php:39, svn/tags/1.0.3/inc/class-template-methods.php:39, svn/tags/1.0.4/inc/class-template-methods.php:44, svn/tags/1.0.5/inc/class-template-methods.php:44, svn/tags/1.0.6/inc/class-template-methods.php:44, svn/tags/2.0.0/inc/class-template-methods.php:44, svn/tags/2.0.1/inc/class-template-methods.php:44, svn/tags/2.1.0/inc/class-template-methods.php:44, svn/tags/2.1.1/inc/class-template-methods.php:44, svn/tags/1.0.5/trunk/inc/class-template-methods.php:44 555 615 msgid "My Requests" 556 616 msgstr "" 557 617 558 #: inc/class-template-methods.php:10 6, svn/trunk/inc/class-template-methods.php:122, svn/tags/1.0.4/inc/class-template-methods.php:122, svn/tags/1.0.5/inc/class-template-methods.php:122, svn/tags/1.0.6/inc/class-template-methods.php:122, svn/tags/2.0.0/inc/class-template-methods.php:122, svn/tags/2.0.1/inc/class-template-methods.php:122, svn/tags/1.0.5/trunk/inc/class-template-methods.php:122618 #: inc/class-template-methods.php:108, svn/trunk/inc/class-template-methods.php:122, svn/tags/1.0.4/inc/class-template-methods.php:122, svn/tags/1.0.5/inc/class-template-methods.php:122, svn/tags/1.0.6/inc/class-template-methods.php:122, svn/tags/2.0.0/inc/class-template-methods.php:122, svn/tags/2.0.1/inc/class-template-methods.php:122, svn/tags/2.1.0/inc/class-template-methods.php:122, svn/tags/2.1.1/inc/class-template-methods.php:122, svn/tags/1.0.5/trunk/inc/class-template-methods.php:122 559 619 msgid "Any" 560 620 msgstr "" 561 621 562 #: inc/class-template-methods.php:147, svn/trunk/inc/class-template-methods.php:190, svn/tags/1.0.0/inc/class-template-methods.php:79, svn/tags/1.0.1/inc/class-template-methods.php:79, svn/tags/1.0.2/inc/class-template-methods.php:147, svn/tags/1.0.3/inc/class-template-methods.php:147, svn/tags/1.0.4/inc/class-template-methods.php:190, svn/tags/1.0.5/inc/class-template-methods.php:190, svn/tags/1.0.6/inc/class-template-methods.php:190, svn/tags/2.0.0/inc/class-template-methods.php:190, svn/tags/2.0.1/inc/class-template-methods.php:190, svn/tags/1.0.5/trunk/inc/class-template-methods.php:190 563 msgid "vote" 564 msgid_plural "votes" 622 #: inc/class-template-methods.php:223, svn/trunk/inc/class-template-methods.php:302, svn/tags/1.0.0/inc/class-template-methods.php:121, svn/tags/1.0.1/inc/class-template-methods.php:121, svn/tags/1.0.2/inc/class-template-methods.php:199, svn/tags/1.0.3/inc/class-template-methods.php:199, svn/tags/1.0.4/inc/class-template-methods.php:269, svn/tags/1.0.5/inc/class-template-methods.php:269, svn/tags/1.0.6/inc/class-template-methods.php:269, svn/tags/2.0.0/inc/class-template-methods.php:269, svn/tags/2.0.1/inc/class-template-methods.php:269, svn/tags/2.1.0/inc/class-template-methods.php:302, svn/tags/2.1.1/inc/class-template-methods.php:302, svn/tags/1.0.5/trunk/inc/class-template-methods.php:269 623 msgid "shared this idea" 624 msgstr "" 625 626 #: inc/class-template-methods.php:256 627 msgid "%d comment" 628 msgid_plural "%d comments" 565 629 msgstr[0] "" 566 630 msgstr[1] "" 567 631 568 #: inc/class-template-methods.php:221, svn/trunk/inc/class-template-methods.php:269, svn/tags/1.0.0/inc/class-template-methods.php:121, svn/tags/1.0.1/inc/class-template-methods.php:121, svn/tags/1.0.2/inc/class-template-methods.php:199, svn/tags/1.0.3/inc/class-template-methods.php:199, svn/tags/1.0.4/inc/class-template-methods.php:269, svn/tags/1.0.5/inc/class-template-methods.php:269, svn/tags/1.0.6/inc/class-template-methods.php:269, svn/tags/2.0.0/inc/class-template-methods.php:269, svn/tags/2.0.1/inc/class-template-methods.php:269, svn/tags/1.0.5/trunk/inc/class-template-methods.php:269 569 msgid "shared this idea" 570 msgstr "" 571 572 #: inc/class-template-methods.php:281, svn/trunk/inc/class-template-methods.php:343, svn/tags/1.0.0/inc/class-template-methods.php:177, svn/tags/1.0.1/inc/class-template-methods.php:177, svn/tags/1.0.2/inc/class-template-methods.php:255, svn/tags/1.0.3/inc/class-template-methods.php:255, svn/tags/1.0.4/inc/class-template-methods.php:343, svn/tags/1.0.5/inc/class-template-methods.php:343, svn/tags/1.0.6/inc/class-template-methods.php:343, svn/tags/2.0.0/inc/class-template-methods.php:343, svn/tags/2.0.1/inc/class-template-methods.php:343, svn/tags/1.0.5/trunk/inc/class-template-methods.php:343 632 #: inc/class-template-methods.php:283, svn/trunk/inc/class-template-methods.php:376, svn/tags/1.0.0/inc/class-template-methods.php:177, svn/tags/1.0.1/inc/class-template-methods.php:177, svn/tags/1.0.2/inc/class-template-methods.php:255, svn/tags/1.0.3/inc/class-template-methods.php:255, svn/tags/1.0.4/inc/class-template-methods.php:343, svn/tags/1.0.5/inc/class-template-methods.php:343, svn/tags/1.0.6/inc/class-template-methods.php:343, svn/tags/2.0.0/inc/class-template-methods.php:343, svn/tags/2.0.1/inc/class-template-methods.php:343, svn/tags/2.1.0/inc/class-template-methods.php:376, svn/tags/2.1.1/inc/class-template-methods.php:376, svn/tags/1.0.5/trunk/inc/class-template-methods.php:343 573 633 msgid "← All Feature Requests" 574 634 msgstr "" 575 635 576 #: inc/class-template-methods.php:3 78636 #: inc/class-template-methods.php:380 577 637 msgid "Select a %s..." 578 638 msgstr "" 579 639 580 #: inc/class-user.php:93, svn/trunk/inc/class-user.php:89, svn/tags/1.0.0/inc/class-user.php:86, svn/tags/1.0.1/inc/class-user.php:86, svn/tags/1.0.2/inc/class-user.php:86, svn/tags/1.0.3/inc/class-user.php:86, svn/tags/1.0.4/inc/class-user.php:86, svn/tags/1.0.5/inc/class-user.php:86, svn/tags/1.0.6/inc/class-user.php:86, svn/tags/2.0.0/inc/class-user.php:89, svn/tags/2.0.1/inc/class-user.php:89, svn/tags/ 1.0.5/trunk/inc/class-user.php:86640 #: inc/class-user.php:93, svn/trunk/inc/class-user.php:89, svn/tags/1.0.0/inc/class-user.php:86, svn/tags/1.0.1/inc/class-user.php:86, svn/tags/1.0.2/inc/class-user.php:86, svn/tags/1.0.3/inc/class-user.php:86, svn/tags/1.0.4/inc/class-user.php:86, svn/tags/1.0.5/inc/class-user.php:86, svn/tags/1.0.6/inc/class-user.php:86, svn/tags/2.0.0/inc/class-user.php:89, svn/tags/2.0.1/inc/class-user.php:89, svn/tags/2.1.0/inc/class-user.php:89, svn/tags/2.1.1/inc/class-user.php:89, svn/tags/1.0.5/trunk/inc/class-user.php:86 581 641 msgid "There was an error logging you in." 582 642 msgstr "" 583 643 584 #: inc/class-user.php:234, svn/trunk/inc/class-user.php:225, svn/tags/1.0.0/inc/class-user.php:176, svn/tags/1.0.1/inc/class-user.php:176, svn/tags/1.0.2/inc/class-user.php:176, svn/tags/1.0.3/inc/class-user.php:176, svn/tags/1.0.4/inc/class-user.php:176, svn/tags/1.0.5/inc/class-user.php:176, svn/tags/1.0.6/inc/class-user.php:176, svn/tags/2.0.0/inc/class-user.php:225, svn/tags/2.0.1/inc/class-user.php:225, svn/tags/ 1.0.5/trunk/inc/class-user.php:176644 #: inc/class-user.php:234, svn/trunk/inc/class-user.php:225, svn/tags/1.0.0/inc/class-user.php:176, svn/tags/1.0.1/inc/class-user.php:176, svn/tags/1.0.2/inc/class-user.php:176, svn/tags/1.0.3/inc/class-user.php:176, svn/tags/1.0.4/inc/class-user.php:176, svn/tags/1.0.5/inc/class-user.php:176, svn/tags/1.0.6/inc/class-user.php:176, svn/tags/2.0.0/inc/class-user.php:225, svn/tags/2.0.1/inc/class-user.php:225, svn/tags/2.1.0/inc/class-user.php:225, svn/tags/2.1.1/inc/class-user.php:225, svn/tags/1.0.5/trunk/inc/class-user.php:176 585 645 msgid "You need to login to vote for a feature." 586 646 msgstr "" 587 647 588 #: inc/class-user.php:240, svn/trunk/inc/class-user.php:231, svn/tags/1.0.0/inc/class-user.php:182, svn/tags/1.0.1/inc/class-user.php:182, svn/tags/1.0.2/inc/class-user.php:182, svn/tags/1.0.3/inc/class-user.php:182, svn/tags/1.0.4/inc/class-user.php:182, svn/tags/1.0.5/inc/class-user.php:182, svn/tags/1.0.6/inc/class-user.php:182, svn/tags/2.0.0/inc/class-user.php:231, svn/tags/2.0.1/inc/class-user.php:231, svn/tags/ 1.0.5/trunk/inc/class-user.php:182648 #: inc/class-user.php:240, svn/trunk/inc/class-user.php:231, svn/tags/1.0.0/inc/class-user.php:182, svn/tags/1.0.1/inc/class-user.php:182, svn/tags/1.0.2/inc/class-user.php:182, svn/tags/1.0.3/inc/class-user.php:182, svn/tags/1.0.4/inc/class-user.php:182, svn/tags/1.0.5/inc/class-user.php:182, svn/tags/1.0.6/inc/class-user.php:182, svn/tags/2.0.0/inc/class-user.php:231, svn/tags/2.0.1/inc/class-user.php:231, svn/tags/2.1.0/inc/class-user.php:231, svn/tags/2.1.1/inc/class-user.php:231, svn/tags/1.0.5/trunk/inc/class-user.php:182 589 649 msgid "You have already voted for this feature." 590 650 msgstr "" 591 651 592 #: inc/class-user.php:249, svn/trunk/inc/class-user.php:239, svn/tags/2.0.0/inc/class-user.php:239, svn/tags/2.0.1/inc/class-user.php:239 652 #: inc/class-user.php:249, svn/trunk/inc/class-user.php:239, svn/tags/2.0.0/inc/class-user.php:239, svn/tags/2.0.1/inc/class-user.php:239, svn/tags/2.1.0/inc/class-user.php:239, svn/tags/2.1.1/inc/class-user.php:239 593 653 msgid "Sorry, you do not have any votes remaining." 594 654 msgstr "" 595 655 596 #: inc/class-user.php:260, svn/trunk/inc/class-user.php:248, svn/tags/1.0.0/inc/class-user.php:194, svn/tags/1.0.1/inc/class-user.php:194, svn/tags/1.0.2/inc/class-user.php:194, svn/tags/1.0.3/inc/class-user.php:194, svn/tags/1.0.4/inc/class-user.php:194, svn/tags/1.0.5/inc/class-user.php:194, svn/tags/1.0.6/inc/class-user.php:194, svn/tags/2.0.0/inc/class-user.php:248, svn/tags/2.0.1/inc/class-user.php:248, svn/tags/ 1.0.5/trunk/inc/class-user.php:194656 #: inc/class-user.php:260, svn/trunk/inc/class-user.php:248, svn/tags/1.0.0/inc/class-user.php:194, svn/tags/1.0.1/inc/class-user.php:194, svn/tags/1.0.2/inc/class-user.php:194, svn/tags/1.0.3/inc/class-user.php:194, svn/tags/1.0.4/inc/class-user.php:194, svn/tags/1.0.5/inc/class-user.php:194, svn/tags/1.0.6/inc/class-user.php:194, svn/tags/2.0.0/inc/class-user.php:248, svn/tags/2.0.1/inc/class-user.php:248, svn/tags/2.1.0/inc/class-user.php:248, svn/tags/2.1.1/inc/class-user.php:248, svn/tags/1.0.5/trunk/inc/class-user.php:194 597 657 msgid "There was an error adding your vote." 598 658 msgstr "" 599 659 600 #: inc/class-user.php:287, svn/trunk/inc/class-user.php:273, svn/tags/1.0.0/inc/class-user.php:221, svn/tags/1.0.1/inc/class-user.php:221, svn/tags/1.0.2/inc/class-user.php:221, svn/tags/1.0.3/inc/class-user.php:221, svn/tags/1.0.4/inc/class-user.php:221, svn/tags/1.0.5/inc/class-user.php:221, svn/tags/1.0.6/inc/class-user.php:221, svn/tags/2.0.0/inc/class-user.php:273, svn/tags/2.0.1/inc/class-user.php:273, svn/tags/ 1.0.5/trunk/inc/class-user.php:221660 #: inc/class-user.php:287, svn/trunk/inc/class-user.php:273, svn/tags/1.0.0/inc/class-user.php:221, svn/tags/1.0.1/inc/class-user.php:221, svn/tags/1.0.2/inc/class-user.php:221, svn/tags/1.0.3/inc/class-user.php:221, svn/tags/1.0.4/inc/class-user.php:221, svn/tags/1.0.5/inc/class-user.php:221, svn/tags/1.0.6/inc/class-user.php:221, svn/tags/2.0.0/inc/class-user.php:273, svn/tags/2.0.1/inc/class-user.php:273, svn/tags/2.1.0/inc/class-user.php:273, svn/tags/2.1.1/inc/class-user.php:273, svn/tags/1.0.5/trunk/inc/class-user.php:221 601 661 msgid "You need to login to remove a vote from a feature." 602 662 msgstr "" 603 663 604 #: inc/class-user.php:293, svn/trunk/inc/class-user.php:279, svn/tags/1.0.0/inc/class-user.php:227, svn/tags/1.0.1/inc/class-user.php:227, svn/tags/1.0.2/inc/class-user.php:227, svn/tags/1.0.3/inc/class-user.php:227, svn/tags/1.0.4/inc/class-user.php:227, svn/tags/1.0.5/inc/class-user.php:227, svn/tags/1.0.6/inc/class-user.php:227, svn/tags/2.0.0/inc/class-user.php:279, svn/tags/2.0.1/inc/class-user.php:279, svn/tags/ 1.0.5/trunk/inc/class-user.php:227664 #: inc/class-user.php:293, svn/trunk/inc/class-user.php:279, svn/tags/1.0.0/inc/class-user.php:227, svn/tags/1.0.1/inc/class-user.php:227, svn/tags/1.0.2/inc/class-user.php:227, svn/tags/1.0.3/inc/class-user.php:227, svn/tags/1.0.4/inc/class-user.php:227, svn/tags/1.0.5/inc/class-user.php:227, svn/tags/1.0.6/inc/class-user.php:227, svn/tags/2.0.0/inc/class-user.php:279, svn/tags/2.0.1/inc/class-user.php:279, svn/tags/2.1.0/inc/class-user.php:279, svn/tags/2.1.1/inc/class-user.php:279, svn/tags/1.0.5/trunk/inc/class-user.php:227 605 665 msgid "You have not voted for this feature yet." 606 666 msgstr "" 607 667 608 #: inc/class-user.php:303, svn/trunk/inc/class-user.php:287, svn/tags/1.0.0/inc/class-user.php:235, svn/tags/1.0.1/inc/class-user.php:235, svn/tags/1.0.2/inc/class-user.php:235, svn/tags/1.0.3/inc/class-user.php:235, svn/tags/1.0.4/inc/class-user.php:235, svn/tags/1.0.5/inc/class-user.php:235, svn/tags/1.0.6/inc/class-user.php:235, svn/tags/2.0.0/inc/class-user.php:287, svn/tags/2.0.1/inc/class-user.php:287, svn/tags/ 1.0.5/trunk/inc/class-user.php:235668 #: inc/class-user.php:303, svn/trunk/inc/class-user.php:287, svn/tags/1.0.0/inc/class-user.php:235, svn/tags/1.0.1/inc/class-user.php:235, svn/tags/1.0.2/inc/class-user.php:235, svn/tags/1.0.3/inc/class-user.php:235, svn/tags/1.0.4/inc/class-user.php:235, svn/tags/1.0.5/inc/class-user.php:235, svn/tags/1.0.6/inc/class-user.php:235, svn/tags/2.0.0/inc/class-user.php:287, svn/tags/2.0.1/inc/class-user.php:287, svn/tags/2.1.0/inc/class-user.php:287, svn/tags/2.1.1/inc/class-user.php:287, svn/tags/1.0.5/trunk/inc/class-user.php:235 609 669 msgid "You cannot remove a vote for your own request." 610 670 msgstr "" 611 671 612 #: inc/class-user.php:316, svn/trunk/inc/class-user.php:297, svn/tags/1.0.0/inc/class-user.php:248, svn/tags/1.0.1/inc/class-user.php:248, svn/tags/1.0.2/inc/class-user.php:248, svn/tags/1.0.3/inc/class-user.php:248, svn/tags/1.0.4/inc/class-user.php:248, svn/tags/1.0.5/inc/class-user.php:248, svn/tags/1.0.6/inc/class-user.php:248, svn/tags/2.0.0/inc/class-user.php:297, svn/tags/2.0.1/inc/class-user.php:297, svn/tags/ 1.0.5/trunk/inc/class-user.php:248672 #: inc/class-user.php:316, svn/trunk/inc/class-user.php:297, svn/tags/1.0.0/inc/class-user.php:248, svn/tags/1.0.1/inc/class-user.php:248, svn/tags/1.0.2/inc/class-user.php:248, svn/tags/1.0.3/inc/class-user.php:248, svn/tags/1.0.4/inc/class-user.php:248, svn/tags/1.0.5/inc/class-user.php:248, svn/tags/1.0.6/inc/class-user.php:248, svn/tags/2.0.0/inc/class-user.php:297, svn/tags/2.0.1/inc/class-user.php:297, svn/tags/2.1.0/inc/class-user.php:297, svn/tags/2.1.1/inc/class-user.php:297, svn/tags/1.0.5/trunk/inc/class-user.php:248 613 673 msgid "There was an error removing your vote." 614 674 msgstr "" 615 675 616 #: inc/class-user.php:361, inc/class-user.php:409, svn/trunk/inc/class-user.php:335, svn/trunk/inc/class-user.php:387, svn/tags/1.0.0/inc/class-user.php:275, svn/tags/1.0.0/inc/class-user.php:323, svn/tags/1.0.1/inc/class-user.php:275, svn/tags/1.0.1/inc/class-user.php:323, svn/tags/1.0.2/inc/class-user.php:275, svn/tags/1.0.2/inc/class-user.php:323, svn/tags/1.0.3/inc/class-user.php:275, svn/tags/1.0.3/inc/class-user.php:323, svn/tags/1.0.4/inc/class-user.php:275, svn/tags/1.0.4/inc/class-user.php:323, svn/tags/1.0.5/inc/class-user.php:275, svn/tags/1.0.5/inc/class-user.php:323, svn/tags/1.0.6/inc/class-user.php:275, svn/tags/1.0.6/inc/class-user.php:323, svn/tags/2.0.0/inc/class-user.php:335, svn/tags/2.0.0/inc/class-user.php:387, svn/tags/2.0.1/inc/class-user.php:335, svn/tags/2.0.1/inc/class-user.php:387, svn/tags/ 1.0.5/trunk/inc/class-user.php:275, svn/tags/1.0.5/trunk/inc/class-user.php:323676 #: inc/class-user.php:361, inc/class-user.php:409, svn/trunk/inc/class-user.php:335, svn/trunk/inc/class-user.php:387, svn/tags/1.0.0/inc/class-user.php:275, svn/tags/1.0.0/inc/class-user.php:323, svn/tags/1.0.1/inc/class-user.php:275, svn/tags/1.0.1/inc/class-user.php:323, svn/tags/1.0.2/inc/class-user.php:275, svn/tags/1.0.2/inc/class-user.php:323, svn/tags/1.0.3/inc/class-user.php:275, svn/tags/1.0.3/inc/class-user.php:323, svn/tags/1.0.4/inc/class-user.php:275, svn/tags/1.0.4/inc/class-user.php:323, svn/tags/1.0.5/inc/class-user.php:275, svn/tags/1.0.5/inc/class-user.php:323, svn/tags/1.0.6/inc/class-user.php:275, svn/tags/1.0.6/inc/class-user.php:323, svn/tags/2.0.0/inc/class-user.php:335, svn/tags/2.0.0/inc/class-user.php:387, svn/tags/2.0.1/inc/class-user.php:335, svn/tags/2.0.1/inc/class-user.php:387, svn/tags/2.1.0/inc/class-user.php:335, svn/tags/2.1.0/inc/class-user.php:387, svn/tags/2.1.1/inc/class-user.php:335, svn/tags/2.1.1/inc/class-user.php:387, svn/tags/1.0.5/trunk/inc/class-user.php:275, svn/tags/1.0.5/trunk/inc/class-user.php:323 617 677 msgid "Please enter an email." 618 678 msgstr "" 619 679 620 #: inc/class-user.php:366, inc/class-user.php:414, svn/trunk/inc/class-user.php:341, svn/trunk/inc/class-user.php:393, svn/tags/1.0.0/inc/class-user.php:280, svn/tags/1.0.0/inc/class-user.php:328, svn/tags/1.0.1/inc/class-user.php:280, svn/tags/1.0.1/inc/class-user.php:328, svn/tags/1.0.2/inc/class-user.php:280, svn/tags/1.0.2/inc/class-user.php:328, svn/tags/1.0.3/inc/class-user.php:280, svn/tags/1.0.3/inc/class-user.php:328, svn/tags/1.0.4/inc/class-user.php:280, svn/tags/1.0.4/inc/class-user.php:328, svn/tags/1.0.5/inc/class-user.php:280, svn/tags/1.0.5/inc/class-user.php:328, svn/tags/1.0.6/inc/class-user.php:280, svn/tags/1.0.6/inc/class-user.php:328, svn/tags/2.0.0/inc/class-user.php:341, svn/tags/2.0.0/inc/class-user.php:393, svn/tags/2.0.1/inc/class-user.php:341, svn/tags/2.0.1/inc/class-user.php:393, svn/tags/ 1.0.5/trunk/inc/class-user.php:280, svn/tags/1.0.5/trunk/inc/class-user.php:328680 #: inc/class-user.php:366, inc/class-user.php:414, svn/trunk/inc/class-user.php:341, svn/trunk/inc/class-user.php:393, svn/tags/1.0.0/inc/class-user.php:280, svn/tags/1.0.0/inc/class-user.php:328, svn/tags/1.0.1/inc/class-user.php:280, svn/tags/1.0.1/inc/class-user.php:328, svn/tags/1.0.2/inc/class-user.php:280, svn/tags/1.0.2/inc/class-user.php:328, svn/tags/1.0.3/inc/class-user.php:280, svn/tags/1.0.3/inc/class-user.php:328, svn/tags/1.0.4/inc/class-user.php:280, svn/tags/1.0.4/inc/class-user.php:328, svn/tags/1.0.5/inc/class-user.php:280, svn/tags/1.0.5/inc/class-user.php:328, svn/tags/1.0.6/inc/class-user.php:280, svn/tags/1.0.6/inc/class-user.php:328, svn/tags/2.0.0/inc/class-user.php:341, svn/tags/2.0.0/inc/class-user.php:393, svn/tags/2.0.1/inc/class-user.php:341, svn/tags/2.0.1/inc/class-user.php:393, svn/tags/2.1.0/inc/class-user.php:341, svn/tags/2.1.0/inc/class-user.php:393, svn/tags/2.1.1/inc/class-user.php:341, svn/tags/2.1.1/inc/class-user.php:393, svn/tags/1.0.5/trunk/inc/class-user.php:280, svn/tags/1.0.5/trunk/inc/class-user.php:328 621 681 msgid "Please enter a password." 622 682 msgstr "" 623 683 624 #: inc/class-user.php:404, svn/trunk/inc/class-user.php:381, svn/tags/1.0.0/inc/class-user.php:318, svn/tags/1.0.1/inc/class-user.php:318, svn/tags/1.0.2/inc/class-user.php:318, svn/tags/1.0.3/inc/class-user.php:318, svn/tags/1.0.4/inc/class-user.php:318, svn/tags/1.0.5/inc/class-user.php:318, svn/tags/1.0.6/inc/class-user.php:318, svn/tags/2.0.0/inc/class-user.php:381, svn/tags/2.0.1/inc/class-user.php:381, svn/tags/ 1.0.5/trunk/inc/class-user.php:318684 #: inc/class-user.php:404, svn/trunk/inc/class-user.php:381, svn/tags/1.0.0/inc/class-user.php:318, svn/tags/1.0.1/inc/class-user.php:318, svn/tags/1.0.2/inc/class-user.php:318, svn/tags/1.0.3/inc/class-user.php:318, svn/tags/1.0.4/inc/class-user.php:318, svn/tags/1.0.5/inc/class-user.php:318, svn/tags/1.0.6/inc/class-user.php:318, svn/tags/2.0.0/inc/class-user.php:381, svn/tags/2.0.1/inc/class-user.php:381, svn/tags/2.1.0/inc/class-user.php:381, svn/tags/2.1.1/inc/class-user.php:381, svn/tags/1.0.5/trunk/inc/class-user.php:318 625 685 msgid "Please enter a username." 626 686 msgstr "" 627 687 628 #: inc/class-user.php:419, svn/trunk/inc/class-user.php:399, svn/tags/1.0.0/inc/class-user.php:333, svn/tags/1.0.1/inc/class-user.php:333, svn/tags/1.0.2/inc/class-user.php:333, svn/tags/1.0.3/inc/class-user.php:333, svn/tags/1.0.4/inc/class-user.php:333, svn/tags/1.0.5/inc/class-user.php:333, svn/tags/1.0.6/inc/class-user.php:333, svn/tags/2.0.0/inc/class-user.php:399, svn/tags/2.0.1/inc/class-user.php:399, svn/tags/ 1.0.5/trunk/inc/class-user.php:333688 #: inc/class-user.php:419, svn/trunk/inc/class-user.php:399, svn/tags/1.0.0/inc/class-user.php:333, svn/tags/1.0.1/inc/class-user.php:333, svn/tags/1.0.2/inc/class-user.php:333, svn/tags/1.0.3/inc/class-user.php:333, svn/tags/1.0.4/inc/class-user.php:333, svn/tags/1.0.5/inc/class-user.php:333, svn/tags/1.0.6/inc/class-user.php:333, svn/tags/2.0.0/inc/class-user.php:399, svn/tags/2.0.1/inc/class-user.php:399, svn/tags/2.1.0/inc/class-user.php:399, svn/tags/2.1.1/inc/class-user.php:399, svn/tags/1.0.5/trunk/inc/class-user.php:333 629 689 msgid "Please enter a repeat password." 630 690 msgstr "" 631 691 632 #: inc/class-user.php:424, svn/trunk/inc/class-user.php:405, svn/tags/1.0.0/inc/class-user.php:338, svn/tags/1.0.1/inc/class-user.php:338, svn/tags/1.0.2/inc/class-user.php:338, svn/tags/1.0.3/inc/class-user.php:338, svn/tags/1.0.4/inc/class-user.php:338, svn/tags/1.0.5/inc/class-user.php:338, svn/tags/1.0.6/inc/class-user.php:338, svn/tags/2.0.0/inc/class-user.php:405, svn/tags/2.0.1/inc/class-user.php:405, svn/tags/ 1.0.5/trunk/inc/class-user.php:338692 #: inc/class-user.php:424, svn/trunk/inc/class-user.php:405, svn/tags/1.0.0/inc/class-user.php:338, svn/tags/1.0.1/inc/class-user.php:338, svn/tags/1.0.2/inc/class-user.php:338, svn/tags/1.0.3/inc/class-user.php:338, svn/tags/1.0.4/inc/class-user.php:338, svn/tags/1.0.5/inc/class-user.php:338, svn/tags/1.0.6/inc/class-user.php:338, svn/tags/2.0.0/inc/class-user.php:405, svn/tags/2.0.1/inc/class-user.php:405, svn/tags/2.1.0/inc/class-user.php:405, svn/tags/2.1.1/inc/class-user.php:405, svn/tags/1.0.5/trunk/inc/class-user.php:338 633 693 msgid "Your passwords did not match." 634 694 msgstr "" 635 695 636 #: inc/class-user.php:436, svn/trunk/inc/class-user.php:416, svn/tags/1.0.0/inc/class-user.php:350, svn/tags/1.0.1/inc/class-user.php:350, svn/tags/1.0.2/inc/class-user.php:350, svn/tags/1.0.3/inc/class-user.php:350, svn/tags/1.0.4/inc/class-user.php:350, svn/tags/1.0.5/inc/class-user.php:350, svn/tags/1.0.6/inc/class-user.php:350, svn/tags/2.0.0/inc/class-user.php:416, svn/tags/2.0.1/inc/class-user.php:416, svn/tags/ 1.0.5/trunk/inc/class-user.php:350696 #: inc/class-user.php:436, svn/trunk/inc/class-user.php:416, svn/tags/1.0.0/inc/class-user.php:350, svn/tags/1.0.1/inc/class-user.php:350, svn/tags/1.0.2/inc/class-user.php:350, svn/tags/1.0.3/inc/class-user.php:350, svn/tags/1.0.4/inc/class-user.php:350, svn/tags/1.0.5/inc/class-user.php:350, svn/tags/1.0.6/inc/class-user.php:350, svn/tags/2.0.0/inc/class-user.php:416, svn/tags/2.0.1/inc/class-user.php:416, svn/tags/2.1.0/inc/class-user.php:416, svn/tags/2.1.1/inc/class-user.php:416, svn/tags/1.0.5/trunk/inc/class-user.php:350 637 697 msgid "That username has already been registered." 638 698 msgstr "" 639 699 640 #: inc/class-user.php:441, svn/trunk/inc/class-user.php:422, svn/tags/1.0.0/inc/class-user.php:355, svn/tags/1.0.1/inc/class-user.php:355, svn/tags/1.0.2/inc/class-user.php:355, svn/tags/1.0.3/inc/class-user.php:355, svn/tags/1.0.4/inc/class-user.php:355, svn/tags/1.0.5/inc/class-user.php:355, svn/tags/1.0.6/inc/class-user.php:355, svn/tags/2.0.0/inc/class-user.php:422, svn/tags/2.0.1/inc/class-user.php:422, svn/tags/ 1.0.5/trunk/inc/class-user.php:355700 #: inc/class-user.php:441, svn/trunk/inc/class-user.php:422, svn/tags/1.0.0/inc/class-user.php:355, svn/tags/1.0.1/inc/class-user.php:355, svn/tags/1.0.2/inc/class-user.php:355, svn/tags/1.0.3/inc/class-user.php:355, svn/tags/1.0.4/inc/class-user.php:355, svn/tags/1.0.5/inc/class-user.php:355, svn/tags/1.0.6/inc/class-user.php:355, svn/tags/2.0.0/inc/class-user.php:422, svn/tags/2.0.1/inc/class-user.php:422, svn/tags/2.1.0/inc/class-user.php:422, svn/tags/2.1.1/inc/class-user.php:422, svn/tags/1.0.5/trunk/inc/class-user.php:355 641 701 msgid "That email has already been registered." 642 702 msgstr "" 643 703 644 #: inc/class-user.php:45 2, svn/trunk/inc/class-user.php:432, svn/tags/1.0.0/inc/class-user.php:366, svn/tags/1.0.1/inc/class-user.php:366, svn/tags/1.0.2/inc/class-user.php:366, svn/tags/1.0.3/inc/class-user.php:366, svn/tags/1.0.4/inc/class-user.php:366, svn/tags/1.0.5/inc/class-user.php:366, svn/tags/1.0.6/inc/class-user.php:366, svn/tags/2.0.0/inc/class-user.php:432, svn/tags/2.0.1/inc/class-user.php:432, svn/tags/1.0.5/trunk/inc/class-user.php:366704 #: inc/class-user.php:457, svn/trunk/inc/class-user.php:432, svn/tags/1.0.0/inc/class-user.php:366, svn/tags/1.0.1/inc/class-user.php:366, svn/tags/1.0.2/inc/class-user.php:366, svn/tags/1.0.3/inc/class-user.php:366, svn/tags/1.0.4/inc/class-user.php:366, svn/tags/1.0.5/inc/class-user.php:366, svn/tags/1.0.6/inc/class-user.php:366, svn/tags/2.0.0/inc/class-user.php:432, svn/tags/2.0.1/inc/class-user.php:432, svn/tags/2.1.0/inc/class-user.php:432, svn/tags/2.1.1/inc/class-user.php:432, svn/tags/1.0.5/trunk/inc/class-user.php:366 645 705 msgid "There was an issue registering your account. Please try again." 646 706 msgstr "" 647 707 648 #: templates/archive/submission-form.php:26, svn/trunk/templates/archive/submission-form.php:25, svn/tags/1.0.0/templates/archive/submission-form.php:22, svn/tags/1.0.1/templates/archive/submission-form.php:22, svn/tags/1.0.2/templates/archive/submission-form.php:22, svn/tags/1.0.3/templates/archive/submission-form.php:22, svn/tags/1.0.4/templates/archive/submission-form.php:22, svn/tags/1.0.5/templates/archive/submission-form.php:22, svn/tags/1.0.6/templates/archive/submission-form.php:25, svn/tags/2.0.0/templates/archive/submission-form.php:25, svn/tags/2.0.1/templates/archive/submission-form.php:25, svn/tags/1.0.5/trunk/templates/archive/submission-form.php:22 708 #: inc/functions.php:16, svn/tags/1.0.0/inc/class-template-methods.php:100, svn/tags/1.0.1/inc/class-template-methods.php:100 709 msgid "Pending" 710 msgstr "" 711 712 #: inc/functions.php:17 713 msgid "Published" 714 msgstr "" 715 716 #: inc/functions.php:18 717 msgid "Under Review" 718 msgstr "" 719 720 #: inc/functions.php:19 721 msgid "Planned" 722 msgstr "" 723 724 #: inc/functions.php:20 725 msgid "Started" 726 msgstr "" 727 728 #: inc/functions.php:21 729 msgid "Completed" 730 msgstr "" 731 732 #: inc/functions.php:22 733 msgid "Declined" 734 msgstr "" 735 736 #: templates/archive/submission-form.php:26, svn/trunk/templates/archive/submission-form.php:26, svn/tags/1.0.0/templates/archive/submission-form.php:22, svn/tags/1.0.1/templates/archive/submission-form.php:22, svn/tags/1.0.2/templates/archive/submission-form.php:22, svn/tags/1.0.3/templates/archive/submission-form.php:22, svn/tags/1.0.4/templates/archive/submission-form.php:22, svn/tags/1.0.5/templates/archive/submission-form.php:22, svn/tags/1.0.6/templates/archive/submission-form.php:25, svn/tags/2.0.0/templates/archive/submission-form.php:25, svn/tags/2.0.1/templates/archive/submission-form.php:25, svn/tags/2.1.0/templates/archive/submission-form.php:26, svn/tags/2.1.1/templates/archive/submission-form.php:26, svn/tags/1.0.5/trunk/templates/archive/submission-form.php:22 649 737 msgid "Your Request" 650 738 msgstr "" 651 739 652 #: templates/archive/submission-form.php:28, svn/trunk/templates/archive/submission-form.php:2 7, svn/tags/1.0.0/templates/archive/submission-form.php:24, svn/tags/1.0.1/templates/archive/submission-form.php:24, svn/tags/1.0.2/templates/archive/submission-form.php:24, svn/tags/1.0.3/templates/archive/submission-form.php:24, svn/tags/1.0.4/templates/archive/submission-form.php:24, svn/tags/1.0.5/templates/archive/submission-form.php:24, svn/tags/1.0.6/templates/archive/submission-form.php:27, svn/tags/2.0.0/templates/archive/submission-form.php:27, svn/tags/2.0.1/templates/archive/submission-form.php:27, svn/tags/1.0.5/trunk/templates/archive/submission-form.php:24740 #: templates/archive/submission-form.php:28, svn/trunk/templates/archive/submission-form.php:28, svn/tags/1.0.0/templates/archive/submission-form.php:24, svn/tags/1.0.1/templates/archive/submission-form.php:24, svn/tags/1.0.2/templates/archive/submission-form.php:24, svn/tags/1.0.3/templates/archive/submission-form.php:24, svn/tags/1.0.4/templates/archive/submission-form.php:24, svn/tags/1.0.5/templates/archive/submission-form.php:24, svn/tags/1.0.6/templates/archive/submission-form.php:27, svn/tags/2.0.0/templates/archive/submission-form.php:27, svn/tags/2.0.1/templates/archive/submission-form.php:27, svn/tags/2.1.0/templates/archive/submission-form.php:28, svn/tags/2.1.1/templates/archive/submission-form.php:28, svn/tags/1.0.5/trunk/templates/archive/submission-form.php:24 653 741 msgid "Enter your request..." 654 742 msgstr "" 655 743 656 #: templates/archive/submission-form.php:41, svn/trunk/templates/archive/submission-form.php: 38, svn/tags/1.0.0/templates/archive/submission-form.php:31, svn/tags/1.0.1/templates/archive/submission-form.php:31, svn/tags/1.0.2/templates/archive/submission-form.php:31, svn/tags/1.0.3/templates/archive/submission-form.php:31, svn/tags/1.0.4/templates/archive/submission-form.php:31, svn/tags/1.0.5/templates/archive/submission-form.php:31, svn/tags/1.0.6/templates/archive/submission-form.php:38, svn/tags/2.0.0/templates/archive/submission-form.php:38, svn/tags/2.0.1/templates/archive/submission-form.php:38, svn/tags/1.0.5/trunk/templates/archive/submission-form.php:31744 #: templates/archive/submission-form.php:41, svn/trunk/templates/archive/submission-form.php:41, svn/tags/1.0.0/templates/archive/submission-form.php:31, svn/tags/1.0.1/templates/archive/submission-form.php:31, svn/tags/1.0.2/templates/archive/submission-form.php:31, svn/tags/1.0.3/templates/archive/submission-form.php:31, svn/tags/1.0.4/templates/archive/submission-form.php:31, svn/tags/1.0.5/templates/archive/submission-form.php:31, svn/tags/1.0.6/templates/archive/submission-form.php:38, svn/tags/2.0.0/templates/archive/submission-form.php:38, svn/tags/2.0.1/templates/archive/submission-form.php:38, svn/tags/2.1.0/templates/archive/submission-form.php:41, svn/tags/2.1.1/templates/archive/submission-form.php:41, svn/tags/1.0.5/trunk/templates/archive/submission-form.php:31 657 745 msgid "Description" 658 746 msgstr "" 659 747 660 #: templates/archive/submission-form.php:55, svn/trunk/templates/archive/submission-form.php:5 2, svn/tags/1.0.0/templates/archive/submission-form.php:47, svn/tags/1.0.1/templates/archive/submission-form.php:47, svn/tags/1.0.2/templates/archive/submission-form.php:47, svn/tags/1.0.3/templates/archive/submission-form.php:47, svn/tags/1.0.4/templates/archive/submission-form.php:45, svn/tags/1.0.5/templates/archive/submission-form.php:45, svn/tags/1.0.6/templates/archive/submission-form.php:52, svn/tags/2.0.0/templates/archive/submission-form.php:52, svn/tags/2.0.1/templates/archive/submission-form.php:52, svn/tags/1.0.5/trunk/templates/archive/submission-form.php:45748 #: templates/archive/submission-form.php:55, svn/trunk/templates/archive/submission-form.php:55, svn/tags/1.0.0/templates/archive/submission-form.php:47, svn/tags/1.0.1/templates/archive/submission-form.php:47, svn/tags/1.0.2/templates/archive/submission-form.php:47, svn/tags/1.0.3/templates/archive/submission-form.php:47, svn/tags/1.0.4/templates/archive/submission-form.php:45, svn/tags/1.0.5/templates/archive/submission-form.php:45, svn/tags/1.0.6/templates/archive/submission-form.php:52, svn/tags/2.0.0/templates/archive/submission-form.php:52, svn/tags/2.0.1/templates/archive/submission-form.php:52, svn/tags/2.1.0/templates/archive/submission-form.php:55, svn/tags/2.1.1/templates/archive/submission-form.php:55, svn/tags/1.0.5/trunk/templates/archive/submission-form.php:45 661 749 msgid "Submit" 662 750 msgstr "" 663 751 664 #: templates/archive/submission-form.php:60, svn/trunk/templates/archive/submission-form.php: 57, svn/tags/1.0.0/templates/archive/submission-form.php:52, svn/tags/1.0.1/templates/archive/submission-form.php:52, svn/tags/1.0.2/templates/archive/submission-form.php:52, svn/tags/1.0.3/templates/archive/submission-form.php:52, svn/tags/1.0.4/templates/archive/submission-form.php:50, svn/tags/1.0.5/templates/archive/submission-form.php:50, svn/tags/1.0.6/templates/archive/submission-form.php:57, svn/tags/2.0.0/templates/archive/submission-form.php:57, svn/tags/2.0.1/templates/archive/submission-form.php:57, svn/tags/1.0.5/trunk/templates/archive/submission-form.php:50752 #: templates/archive/submission-form.php:60, svn/trunk/templates/archive/submission-form.php:60, svn/tags/1.0.0/templates/archive/submission-form.php:52, svn/tags/1.0.1/templates/archive/submission-form.php:52, svn/tags/1.0.2/templates/archive/submission-form.php:52, svn/tags/1.0.3/templates/archive/submission-form.php:52, svn/tags/1.0.4/templates/archive/submission-form.php:50, svn/tags/1.0.5/templates/archive/submission-form.php:50, svn/tags/1.0.6/templates/archive/submission-form.php:57, svn/tags/2.0.0/templates/archive/submission-form.php:57, svn/tags/2.0.1/templates/archive/submission-form.php:57, svn/tags/2.1.0/templates/archive/submission-form.php:60, svn/tags/2.1.1/templates/archive/submission-form.php:60, svn/tags/1.0.5/trunk/templates/archive/submission-form.php:50 665 753 msgid "Vote for an existing request (%s)" 666 754 msgstr "" 667 755 668 #: templates/archive/submission-form.php:62, svn/trunk/templates/archive/submission-form.php: 59, svn/tags/1.0.0/templates/archive/submission-form.php:54, svn/tags/1.0.1/templates/archive/submission-form.php:54, svn/tags/1.0.2/templates/archive/submission-form.php:54, svn/tags/1.0.3/templates/archive/submission-form.php:54, svn/tags/1.0.4/templates/archive/submission-form.php:52, svn/tags/1.0.5/templates/archive/submission-form.php:52, svn/tags/1.0.6/templates/archive/submission-form.php:59, svn/tags/2.0.0/templates/archive/submission-form.php:59, svn/tags/2.0.1/templates/archive/submission-form.php:59, svn/tags/1.0.5/trunk/templates/archive/submission-form.php:52756 #: templates/archive/submission-form.php:62, svn/trunk/templates/archive/submission-form.php:62, svn/tags/1.0.0/templates/archive/submission-form.php:54, svn/tags/1.0.1/templates/archive/submission-form.php:54, svn/tags/1.0.2/templates/archive/submission-form.php:54, svn/tags/1.0.3/templates/archive/submission-form.php:54, svn/tags/1.0.4/templates/archive/submission-form.php:52, svn/tags/1.0.5/templates/archive/submission-form.php:52, svn/tags/1.0.6/templates/archive/submission-form.php:59, svn/tags/2.0.0/templates/archive/submission-form.php:59, svn/tags/2.0.1/templates/archive/submission-form.php:59, svn/tags/2.1.0/templates/archive/submission-form.php:62, svn/tags/2.1.1/templates/archive/submission-form.php:62, svn/tags/1.0.5/trunk/templates/archive/submission-form.php:52 669 757 msgid "Post a new request" 670 758 msgstr "" 671 759 672 #: templates/components/login-form-fields.php:19, svn/trunk/templates/components/login-form-fields.php:19, svn/tags/1.0.0/templates/components/login-form-fields.php:19, svn/tags/1.0.1/templates/components/login-form-fields.php:19, svn/tags/1.0.2/templates/components/login-form-fields.php:19, svn/tags/1.0.3/templates/components/login-form-fields.php:19, svn/tags/1.0.4/templates/components/login-form-fields.php:19, svn/tags/1.0.5/templates/components/login-form-fields.php:19, svn/tags/1.0.6/templates/components/login-form-fields.php:19, svn/tags/2.0.0/templates/components/login-form-fields.php:19, svn/tags/2.0.1/templates/components/login-form-fields.php:19, svn/tags/ 1.0.5/trunk/templates/components/login-form-fields.php:19760 #: templates/components/login-form-fields.php:19, svn/trunk/templates/components/login-form-fields.php:19, svn/tags/1.0.0/templates/components/login-form-fields.php:19, svn/tags/1.0.1/templates/components/login-form-fields.php:19, svn/tags/1.0.2/templates/components/login-form-fields.php:19, svn/tags/1.0.3/templates/components/login-form-fields.php:19, svn/tags/1.0.4/templates/components/login-form-fields.php:19, svn/tags/1.0.5/templates/components/login-form-fields.php:19, svn/tags/1.0.6/templates/components/login-form-fields.php:19, svn/tags/2.0.0/templates/components/login-form-fields.php:19, svn/tags/2.0.1/templates/components/login-form-fields.php:19, svn/tags/2.1.0/templates/components/login-form-fields.php:19, svn/tags/2.1.1/templates/components/login-form-fields.php:19, svn/tags/1.0.5/trunk/templates/components/login-form-fields.php:19 673 761 msgid "Don't have an account?" 674 762 msgstr "" 675 763 676 #: templates/components/login-form-fields.php:21, templates/sidebar/login.php:29, svn/trunk/templates/components/login-form-fields.php:21, svn/trunk/templates/sidebar/login.php:29, svn/tags/1.0.0/templates/components/login-form-fields.php:21, svn/tags/1.0.0/templates/sidebar/login.php:29, svn/tags/1.0.1/templates/components/login-form-fields.php:21, svn/tags/1.0.1/templates/sidebar/login.php:29, svn/tags/1.0.2/templates/components/login-form-fields.php:21, svn/tags/1.0.2/templates/sidebar/login.php:29, svn/tags/1.0.3/templates/components/login-form-fields.php:21, svn/tags/1.0.3/templates/sidebar/login.php:29, svn/tags/1.0.4/templates/components/login-form-fields.php:21, svn/tags/1.0.4/templates/sidebar/login.php:29, svn/tags/1.0.5/templates/components/login-form-fields.php:21, svn/tags/1.0.5/templates/sidebar/login.php:29, svn/tags/1.0.6/templates/components/login-form-fields.php:21, svn/tags/1.0.6/templates/sidebar/login.php:29, svn/tags/2.0.0/templates/components/login-form-fields.php:21, svn/tags/2.0.0/templates/sidebar/login.php:29, svn/tags/2.0.1/templates/components/login-form-fields.php:21, svn/tags/2.0.1/templates/sidebar/login.php:29, svn/tags/ 1.0.5/trunk/templates/components/login-form-fields.php:21, svn/tags/1.0.5/trunk/templates/sidebar/login.php:29764 #: templates/components/login-form-fields.php:21, templates/sidebar/login.php:29, svn/trunk/templates/components/login-form-fields.php:21, svn/trunk/templates/sidebar/login.php:29, svn/tags/1.0.0/templates/components/login-form-fields.php:21, svn/tags/1.0.0/templates/sidebar/login.php:29, svn/tags/1.0.1/templates/components/login-form-fields.php:21, svn/tags/1.0.1/templates/sidebar/login.php:29, svn/tags/1.0.2/templates/components/login-form-fields.php:21, svn/tags/1.0.2/templates/sidebar/login.php:29, svn/tags/1.0.3/templates/components/login-form-fields.php:21, svn/tags/1.0.3/templates/sidebar/login.php:29, svn/tags/1.0.4/templates/components/login-form-fields.php:21, svn/tags/1.0.4/templates/sidebar/login.php:29, svn/tags/1.0.5/templates/components/login-form-fields.php:21, svn/tags/1.0.5/templates/sidebar/login.php:29, svn/tags/1.0.6/templates/components/login-form-fields.php:21, svn/tags/1.0.6/templates/sidebar/login.php:29, svn/tags/2.0.0/templates/components/login-form-fields.php:21, svn/tags/2.0.0/templates/sidebar/login.php:29, svn/tags/2.0.1/templates/components/login-form-fields.php:21, svn/tags/2.0.1/templates/sidebar/login.php:29, svn/tags/2.1.0/templates/components/login-form-fields.php:21, svn/tags/2.1.0/templates/sidebar/login.php:29, svn/tags/2.1.1/templates/components/login-form-fields.php:21, svn/tags/2.1.1/templates/sidebar/login.php:29, svn/tags/1.0.5/trunk/templates/components/login-form-fields.php:21, svn/tags/1.0.5/trunk/templates/sidebar/login.php:29 677 765 msgid "Register" 678 766 msgstr "" 679 767 680 #: templates/components/login-form-fields.php:25, svn/trunk/templates/components/login-form-fields.php:25, svn/tags/1.0.0/templates/components/login-form-fields.php:25, svn/tags/1.0.1/templates/components/login-form-fields.php:25, svn/tags/1.0.2/templates/components/login-form-fields.php:25, svn/tags/1.0.3/templates/components/login-form-fields.php:25, svn/tags/1.0.4/templates/components/login-form-fields.php:25, svn/tags/1.0.5/templates/components/login-form-fields.php:25, svn/tags/1.0.6/templates/components/login-form-fields.php:25, svn/tags/2.0.0/templates/components/login-form-fields.php:25, svn/tags/2.0.1/templates/components/login-form-fields.php:25, svn/tags/ 1.0.5/trunk/templates/components/login-form-fields.php:25768 #: templates/components/login-form-fields.php:25, svn/trunk/templates/components/login-form-fields.php:25, svn/tags/1.0.0/templates/components/login-form-fields.php:25, svn/tags/1.0.1/templates/components/login-form-fields.php:25, svn/tags/1.0.2/templates/components/login-form-fields.php:25, svn/tags/1.0.3/templates/components/login-form-fields.php:25, svn/tags/1.0.4/templates/components/login-form-fields.php:25, svn/tags/1.0.5/templates/components/login-form-fields.php:25, svn/tags/1.0.6/templates/components/login-form-fields.php:25, svn/tags/2.0.0/templates/components/login-form-fields.php:25, svn/tags/2.0.1/templates/components/login-form-fields.php:25, svn/tags/2.1.0/templates/components/login-form-fields.php:25, svn/tags/2.1.1/templates/components/login-form-fields.php:25, svn/tags/1.0.5/trunk/templates/components/login-form-fields.php:25 681 769 msgid "Already have an account?" 682 770 msgstr "" 683 771 684 #: templates/components/login-form-fields.php:27, templates/sidebar/login.php:28, svn/trunk/templates/components/login-form-fields.php:27, svn/trunk/templates/sidebar/login.php:28, svn/tags/1.0.0/templates/components/login-form-fields.php:27, svn/tags/1.0.0/templates/sidebar/login.php:28, svn/tags/1.0.1/templates/components/login-form-fields.php:27, svn/tags/1.0.1/templates/sidebar/login.php:28, svn/tags/1.0.2/templates/components/login-form-fields.php:27, svn/tags/1.0.2/templates/sidebar/login.php:28, svn/tags/1.0.3/templates/components/login-form-fields.php:27, svn/tags/1.0.3/templates/sidebar/login.php:28, svn/tags/1.0.4/templates/components/login-form-fields.php:27, svn/tags/1.0.4/templates/sidebar/login.php:28, svn/tags/1.0.5/templates/components/login-form-fields.php:27, svn/tags/1.0.5/templates/sidebar/login.php:28, svn/tags/1.0.6/templates/components/login-form-fields.php:27, svn/tags/1.0.6/templates/sidebar/login.php:28, svn/tags/2.0.0/templates/components/login-form-fields.php:27, svn/tags/2.0.0/templates/sidebar/login.php:28, svn/tags/2.0.1/templates/components/login-form-fields.php:27, svn/tags/2.0.1/templates/sidebar/login.php:28, svn/tags/ 1.0.5/trunk/templates/components/login-form-fields.php:27, svn/tags/1.0.5/trunk/templates/sidebar/login.php:28772 #: templates/components/login-form-fields.php:27, templates/sidebar/login.php:28, svn/trunk/templates/components/login-form-fields.php:27, svn/trunk/templates/sidebar/login.php:28, svn/tags/1.0.0/templates/components/login-form-fields.php:27, svn/tags/1.0.0/templates/sidebar/login.php:28, svn/tags/1.0.1/templates/components/login-form-fields.php:27, svn/tags/1.0.1/templates/sidebar/login.php:28, svn/tags/1.0.2/templates/components/login-form-fields.php:27, svn/tags/1.0.2/templates/sidebar/login.php:28, svn/tags/1.0.3/templates/components/login-form-fields.php:27, svn/tags/1.0.3/templates/sidebar/login.php:28, svn/tags/1.0.4/templates/components/login-form-fields.php:27, svn/tags/1.0.4/templates/sidebar/login.php:28, svn/tags/1.0.5/templates/components/login-form-fields.php:27, svn/tags/1.0.5/templates/sidebar/login.php:28, svn/tags/1.0.6/templates/components/login-form-fields.php:27, svn/tags/1.0.6/templates/sidebar/login.php:28, svn/tags/2.0.0/templates/components/login-form-fields.php:27, svn/tags/2.0.0/templates/sidebar/login.php:28, svn/tags/2.0.1/templates/components/login-form-fields.php:27, svn/tags/2.0.1/templates/sidebar/login.php:28, svn/tags/2.1.0/templates/components/login-form-fields.php:27, svn/tags/2.1.0/templates/sidebar/login.php:28, svn/tags/2.1.1/templates/components/login-form-fields.php:27, svn/tags/2.1.1/templates/sidebar/login.php:28, svn/tags/1.0.5/trunk/templates/components/login-form-fields.php:27, svn/tags/1.0.5/trunk/templates/sidebar/login.php:28 685 773 msgid "Login" 686 774 msgstr "" 687 775 688 #: templates/components/login-form-fields.php:33, templates/components/login-form-fields.php:38, svn/trunk/templates/components/login-form-fields.php:33, svn/trunk/templates/components/login-form-fields.php:38, svn/tags/1.0.0/templates/components/login-form-fields.php:33, svn/tags/1.0.0/templates/components/login-form-fields.php:38, svn/tags/1.0.1/templates/components/login-form-fields.php:33, svn/tags/1.0.1/templates/components/login-form-fields.php:38, svn/tags/1.0.2/templates/components/login-form-fields.php:33, svn/tags/1.0.2/templates/components/login-form-fields.php:38, svn/tags/1.0.3/templates/components/login-form-fields.php:33, svn/tags/1.0.3/templates/components/login-form-fields.php:38, svn/tags/1.0.4/templates/components/login-form-fields.php:33, svn/tags/1.0.4/templates/components/login-form-fields.php:38, svn/tags/1.0.5/templates/components/login-form-fields.php:33, svn/tags/1.0.5/templates/components/login-form-fields.php:38, svn/tags/1.0.6/templates/components/login-form-fields.php:33, svn/tags/1.0.6/templates/components/login-form-fields.php:38, svn/tags/2.0.0/templates/components/login-form-fields.php:33, svn/tags/2.0.0/templates/components/login-form-fields.php:38, svn/tags/2.0.1/templates/components/login-form-fields.php:33, svn/tags/2.0.1/templates/components/login-form-fields.php:38, svn/tags/ 1.0.5/trunk/templates/components/login-form-fields.php:33, svn/tags/1.0.5/trunk/templates/components/login-form-fields.php:38776 #: templates/components/login-form-fields.php:33, templates/components/login-form-fields.php:38, svn/trunk/templates/components/login-form-fields.php:33, svn/trunk/templates/components/login-form-fields.php:38, svn/tags/1.0.0/templates/components/login-form-fields.php:33, svn/tags/1.0.0/templates/components/login-form-fields.php:38, svn/tags/1.0.1/templates/components/login-form-fields.php:33, svn/tags/1.0.1/templates/components/login-form-fields.php:38, svn/tags/1.0.2/templates/components/login-form-fields.php:33, svn/tags/1.0.2/templates/components/login-form-fields.php:38, svn/tags/1.0.3/templates/components/login-form-fields.php:33, svn/tags/1.0.3/templates/components/login-form-fields.php:38, svn/tags/1.0.4/templates/components/login-form-fields.php:33, svn/tags/1.0.4/templates/components/login-form-fields.php:38, svn/tags/1.0.5/templates/components/login-form-fields.php:33, svn/tags/1.0.5/templates/components/login-form-fields.php:38, svn/tags/1.0.6/templates/components/login-form-fields.php:33, svn/tags/1.0.6/templates/components/login-form-fields.php:38, svn/tags/2.0.0/templates/components/login-form-fields.php:33, svn/tags/2.0.0/templates/components/login-form-fields.php:38, svn/tags/2.0.1/templates/components/login-form-fields.php:33, svn/tags/2.0.1/templates/components/login-form-fields.php:38, svn/tags/2.1.0/templates/components/login-form-fields.php:33, svn/tags/2.1.0/templates/components/login-form-fields.php:38, svn/tags/2.1.1/templates/components/login-form-fields.php:33, svn/tags/2.1.1/templates/components/login-form-fields.php:38, svn/tags/1.0.5/trunk/templates/components/login-form-fields.php:33, svn/tags/1.0.5/trunk/templates/components/login-form-fields.php:38 689 777 msgid "Username" 690 778 msgstr "" 691 779 692 #: templates/components/login-form-fields.php:38, svn/trunk/templates/components/login-form-fields.php:38, svn/tags/1.0.0/templates/components/login-form-fields.php:38, svn/tags/1.0.1/templates/components/login-form-fields.php:38, svn/tags/1.0.2/templates/components/login-form-fields.php:38, svn/tags/1.0.3/templates/components/login-form-fields.php:38, svn/tags/1.0.4/templates/components/login-form-fields.php:38, svn/tags/1.0.5/templates/components/login-form-fields.php:38, svn/tags/1.0.6/templates/components/login-form-fields.php:38, svn/tags/2.0.0/templates/components/login-form-fields.php:38, svn/tags/2.0.1/templates/components/login-form-fields.php:38, svn/tags/ 1.0.5/trunk/templates/components/login-form-fields.php:38780 #: templates/components/login-form-fields.php:38, svn/trunk/templates/components/login-form-fields.php:38, svn/tags/1.0.0/templates/components/login-form-fields.php:38, svn/tags/1.0.1/templates/components/login-form-fields.php:38, svn/tags/1.0.2/templates/components/login-form-fields.php:38, svn/tags/1.0.3/templates/components/login-form-fields.php:38, svn/tags/1.0.4/templates/components/login-form-fields.php:38, svn/tags/1.0.5/templates/components/login-form-fields.php:38, svn/tags/1.0.6/templates/components/login-form-fields.php:38, svn/tags/2.0.0/templates/components/login-form-fields.php:38, svn/tags/2.0.1/templates/components/login-form-fields.php:38, svn/tags/2.1.0/templates/components/login-form-fields.php:38, svn/tags/2.1.1/templates/components/login-form-fields.php:38, svn/tags/1.0.5/trunk/templates/components/login-form-fields.php:38 693 781 msgid "Email" 694 782 msgstr "" 695 783 696 #: templates/components/login-form-fields.php:43, svn/trunk/templates/components/login-form-fields.php:43, svn/tags/1.0.0/templates/components/login-form-fields.php:43, svn/tags/1.0.1/templates/components/login-form-fields.php:43, svn/tags/1.0.2/templates/components/login-form-fields.php:43, svn/tags/1.0.3/templates/components/login-form-fields.php:43, svn/tags/1.0.4/templates/components/login-form-fields.php:43, svn/tags/1.0.5/templates/components/login-form-fields.php:43, svn/tags/1.0.6/templates/components/login-form-fields.php:43, svn/tags/2.0.0/templates/components/login-form-fields.php:43, svn/tags/2.0.1/templates/components/login-form-fields.php:43, svn/tags/ 1.0.5/trunk/templates/components/login-form-fields.php:43784 #: templates/components/login-form-fields.php:43, svn/trunk/templates/components/login-form-fields.php:43, svn/tags/1.0.0/templates/components/login-form-fields.php:43, svn/tags/1.0.1/templates/components/login-form-fields.php:43, svn/tags/1.0.2/templates/components/login-form-fields.php:43, svn/tags/1.0.3/templates/components/login-form-fields.php:43, svn/tags/1.0.4/templates/components/login-form-fields.php:43, svn/tags/1.0.5/templates/components/login-form-fields.php:43, svn/tags/1.0.6/templates/components/login-form-fields.php:43, svn/tags/2.0.0/templates/components/login-form-fields.php:43, svn/tags/2.0.1/templates/components/login-form-fields.php:43, svn/tags/2.1.0/templates/components/login-form-fields.php:43, svn/tags/2.1.1/templates/components/login-form-fields.php:43, svn/tags/1.0.5/trunk/templates/components/login-form-fields.php:43 697 785 msgid "Password" 698 786 msgstr "" 699 787 700 #: templates/components/login-form-fields.php:48, svn/trunk/templates/components/login-form-fields.php:48, svn/tags/1.0.0/templates/components/login-form-fields.php:48, svn/tags/1.0.1/templates/components/login-form-fields.php:48, svn/tags/1.0.2/templates/components/login-form-fields.php:48, svn/tags/1.0.3/templates/components/login-form-fields.php:48, svn/tags/1.0.4/templates/components/login-form-fields.php:48, svn/tags/1.0.5/templates/components/login-form-fields.php:48, svn/tags/1.0.6/templates/components/login-form-fields.php:48, svn/tags/2.0.0/templates/components/login-form-fields.php:48, svn/tags/2.0.1/templates/components/login-form-fields.php:48, svn/tags/ 1.0.5/trunk/templates/components/login-form-fields.php:48788 #: templates/components/login-form-fields.php:48, svn/trunk/templates/components/login-form-fields.php:48, svn/tags/1.0.0/templates/components/login-form-fields.php:48, svn/tags/1.0.1/templates/components/login-form-fields.php:48, svn/tags/1.0.2/templates/components/login-form-fields.php:48, svn/tags/1.0.3/templates/components/login-form-fields.php:48, svn/tags/1.0.4/templates/components/login-form-fields.php:48, svn/tags/1.0.5/templates/components/login-form-fields.php:48, svn/tags/1.0.6/templates/components/login-form-fields.php:48, svn/tags/2.0.0/templates/components/login-form-fields.php:48, svn/tags/2.0.1/templates/components/login-form-fields.php:48, svn/tags/2.1.0/templates/components/login-form-fields.php:48, svn/tags/2.1.1/templates/components/login-form-fields.php:48, svn/tags/1.0.5/trunk/templates/components/login-form-fields.php:48 701 789 msgid "Repeat Password" 702 790 msgstr "" 703 791 704 #: templates/loop/no-requests-found.php:14, svn/trunk/templates/loop/no-requests-found.php:14, svn/tags/1.0.0/templates/loop/no-requests-found.php:14, svn/tags/1.0.1/templates/loop/no-requests-found.php:14, svn/tags/1.0.2/templates/loop/no-requests-found.php:14, svn/tags/1.0.3/templates/loop/no-requests-found.php:14, svn/tags/1.0.4/templates/loop/no-requests-found.php:14, svn/tags/1.0.5/templates/loop/no-requests-found.php:14, svn/tags/1.0.6/templates/loop/no-requests-found.php:14, svn/tags/2.0.0/templates/loop/no-requests-found.php:14, svn/tags/2.0.1/templates/loop/no-requests-found.php:14, svn/tags/ 1.0.5/trunk/templates/loop/no-requests-found.php:14792 #: templates/loop/no-requests-found.php:14, svn/trunk/templates/loop/no-requests-found.php:14, svn/tags/1.0.0/templates/loop/no-requests-found.php:14, svn/tags/1.0.1/templates/loop/no-requests-found.php:14, svn/tags/1.0.2/templates/loop/no-requests-found.php:14, svn/tags/1.0.3/templates/loop/no-requests-found.php:14, svn/tags/1.0.4/templates/loop/no-requests-found.php:14, svn/tags/1.0.5/templates/loop/no-requests-found.php:14, svn/tags/1.0.6/templates/loop/no-requests-found.php:14, svn/tags/2.0.0/templates/loop/no-requests-found.php:14, svn/tags/2.0.1/templates/loop/no-requests-found.php:14, svn/tags/2.1.0/templates/loop/no-requests-found.php:14, svn/tags/2.1.1/templates/loop/no-requests-found.php:14, svn/tags/1.0.5/trunk/templates/loop/no-requests-found.php:14 705 793 msgid "Sorry, no feature requests were found." 706 794 msgstr "" 707 795 708 #: templates/sidebar/login.php:36, svn/trunk/templates/sidebar/login.php:36, svn/tags/1.0.0/templates/sidebar/login.php:36, svn/tags/1.0.1/templates/sidebar/login.php:36, svn/tags/1.0.2/templates/sidebar/login.php:36, svn/tags/1.0.3/templates/sidebar/login.php:36, svn/tags/1.0.4/templates/sidebar/login.php:36, svn/tags/1.0.5/templates/sidebar/login.php:36, svn/tags/1.0.6/templates/sidebar/login.php:36, svn/tags/2.0.0/templates/sidebar/login.php:36, svn/tags/2.0.1/templates/sidebar/login.php:36, svn/tags/ 1.0.5/trunk/templates/sidebar/login.php:36796 #: templates/sidebar/login.php:36, svn/trunk/templates/sidebar/login.php:36, svn/tags/1.0.0/templates/sidebar/login.php:36, svn/tags/1.0.1/templates/sidebar/login.php:36, svn/tags/1.0.2/templates/sidebar/login.php:36, svn/tags/1.0.3/templates/sidebar/login.php:36, svn/tags/1.0.4/templates/sidebar/login.php:36, svn/tags/1.0.5/templates/sidebar/login.php:36, svn/tags/1.0.6/templates/sidebar/login.php:36, svn/tags/2.0.0/templates/sidebar/login.php:36, svn/tags/2.0.1/templates/sidebar/login.php:36, svn/tags/2.1.0/templates/sidebar/login.php:36, svn/tags/2.1.1/templates/sidebar/login.php:36, svn/tags/1.0.5/trunk/templates/sidebar/login.php:36 709 797 msgid "Hey, %s." 710 798 msgstr "" 711 799 712 #: templates/sidebar/login.php:37, svn/trunk/templates/sidebar/login.php:37, svn/tags/1.0.0/templates/sidebar/login.php:37, svn/tags/1.0.1/templates/sidebar/login.php:37, svn/tags/1.0.2/templates/sidebar/login.php:37, svn/tags/1.0.3/templates/sidebar/login.php:37, svn/tags/1.0.4/templates/sidebar/login.php:37, svn/tags/1.0.5/templates/sidebar/login.php:37, svn/tags/1.0.6/templates/sidebar/login.php:37, svn/tags/2.0.0/templates/sidebar/login.php:37, svn/tags/2.0.1/templates/sidebar/login.php:37, svn/tags/ 1.0.5/trunk/templates/sidebar/login.php:37800 #: templates/sidebar/login.php:37, svn/trunk/templates/sidebar/login.php:37, svn/tags/1.0.0/templates/sidebar/login.php:37, svn/tags/1.0.1/templates/sidebar/login.php:37, svn/tags/1.0.2/templates/sidebar/login.php:37, svn/tags/1.0.3/templates/sidebar/login.php:37, svn/tags/1.0.4/templates/sidebar/login.php:37, svn/tags/1.0.5/templates/sidebar/login.php:37, svn/tags/1.0.6/templates/sidebar/login.php:37, svn/tags/2.0.0/templates/sidebar/login.php:37, svn/tags/2.0.1/templates/sidebar/login.php:37, svn/tags/2.1.0/templates/sidebar/login.php:37, svn/tags/2.1.1/templates/sidebar/login.php:37, svn/tags/1.0.5/trunk/templates/sidebar/login.php:37 713 801 msgid "Logout" 714 802 msgstr "" … … 724 812 msgstr[1] "" 725 813 726 #: svn/tags/1.0.0/inc/class-template-methods.php:100, svn/tags/1.0.1/inc/class-template-methods.php:100727 msgid "Pending"728 msgstr ""729 730 814 #: svn/tags/1.0.4/inc/class-core-settings.php:255, svn/tags/1.0.5/inc/class-core-settings.php:255, svn/tags/1.0.5/trunk/inc/class-core-settings.php:255 731 815 msgid "Dismiss" … … 742 826 msgstr "" 743 827 828 #: svn/tags/1.0.6/inc/class-core-settings.php:213, svn/tags/2.0.0/inc/class-core-settings.php:213, svn/tags/2.0.1/inc/class-core-settings.php:213 829 msgid "Thank you for installing %s. Check out the <a href=\"%s\">plugin dashboard</a>." 830 msgstr "" 831 832 #: svn/tags/1.0.6/inc/class-core-settings.php:311, svn/tags/2.0.0/inc/class-core-settings.php:311, svn/tags/2.0.1/inc/class-core-settings.php:311 833 msgid "" 834 "Take a look at our\n" 835 " <a href=\"%s?utm_source=plugin&utm_medium=simple-feature-requests&utm_campaign=need-some-help\" target=\"_blank\">troubleshooting documentation</a>" 836 msgstr "" 837 744 838 #: svn/tags/1.0.6/inc/class-settings.php:157 745 839 msgid "When enabled, a \"powered by\" link will be displayed in the footer of the feature requests templates. Help us spread the word! " -
simple-feature-requests/trunk/plugin-data.json
r2283980 r2347084 1 1 { 2 "version": "2.1. 1",2 "version": "2.1.2", 3 3 "wp": "5.4", 4 4 "wp_requires": "4.9", -
simple-feature-requests/trunk/readme.txt
r2283980 r2347084 5 5 Requires at least: 4.9 6 6 Tested up to: 5.4 7 Stable tag: 2.1. 17 Stable tag: 2.1.0 8 8 Requires PHP: 5.4 9 9 License: GPLv2 or later … … 102 102 103 103 == Changelog == 104 105 **v2.1.2** (2020-07-27) 106 [new] Allow multisite activation 107 [new] Set admin from and to email addresses for notifications [pro] 108 [new] Set number of requests per page in the archive view [pro] 109 [update] Ensure admins can view pending posts 110 [update] Add pending requests count to admin menu 111 [update] Make voters "contributors" so author can be changed for a request 112 [fix] Prevent pending requests from being accessed via URL 113 [fix] Add text domain to comments and votes 114 [fix] Text domain for statuses 115 [fix] Filtering by 'declined' showed all requests 116 [fix] Vote/Voted translations 117 [fix] Fix foreign character decoding when searching 104 118 105 119 **v2.1.1** (2020-04-15) -
simple-feature-requests/trunk/simple-feature-requests.php
r2283980 r2347084 5 5 * Plugin URI: http://jckemp.com 6 6 * Description: Customer led feature requests with voting. 7 * Version: 2.1. 17 * Version: 2.1.2 8 8 * Author: James Kemp 9 9 * Author URI: https://jckemp.com … … 24 24 * @var string 25 25 */ 26 public static $version = "2.1. 1" ;26 public static $version = "2.1.2" ; 27 27 /** 28 28 * Full name … … 110 110 'inc_path' => JCK_SFR_INC_PATH, 111 111 ) ); 112 // Activate multisite network integration. 113 if ( !defined( 'WP_FS__PRODUCT_1577_MULTISITE' ) ) { 114 define( 'WP_FS__PRODUCT_1577_MULTISITE', true ); 115 } 112 116 $simple_feature_requests_licence = JCK_SFR_Core_Licence::run( array( 113 117 'basename' => JCK_SFR_BASENAME, … … 142 146 'title' => __( 'Simple Feature Requests', 'simple-feature-requests' ), 143 147 'version' => self::$version, 144 'menu_title' => __( 'Requests', 'simple-feature-requests'),148 'menu_title' => JCK_SFR_Post_Types::get_menu_title(), 145 149 'page_title' => __( 'Simple Feature Requests', 'simple-feature-requests' ), 146 150 'parent_slug' => false,
Note: See TracChangeset
for help on using the changeset viewer.