Plugin Directory

Changeset 2347084


Ignore:
Timestamp:
07/27/2020 10:07:29 AM (5 years ago)
Author:
jamesckemp
Message:

v2.1.2

Location:
simple-feature-requests/trunk
Files:
15 edited

Legend:

Unmodified
Added
Removed
  • simple-feature-requests/trunk/assets/frontend/js/main.js

    r2202889 r2347084  
    247247            var data = {
    248248                'action': 'jck_sfr_search_feature_requests',
    249                 'search': search,
    250249                'nonce': jck_sfr_vars.nonce,
    251250                'paged': jck_sfr_vars.paged,
     
    253252
    254253            $.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;
    255257
    256258            $.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  
    7777        $response['success']       = true;
    7878        $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' );
    8080
    8181        wp_send_json( $response );
  • simple-feature-requests/trunk/inc/class-feature-request.php

    r2282410 r2347084  
    108108
    109109    /**
     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    /**
    110119     * Get permalink.
    111120     *
     
    259268    public function get_vote_button_text() {
    260269        $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' );
    262271
    263272        return apply_filters( 'jck_sfr_vote_button_text', $text, $has_voted, $this );
  • simple-feature-requests/trunk/inc/class-notifications.php

    r2174500 r2347084  
    2525    {
    2626        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             1
    32         );
    3327    }
    3428   
     
    121115   
    122116    /**
    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;
    148124    }
    149125   
  • simple-feature-requests/trunk/inc/class-post-types.php

    r2283980 r2347084  
    123123            'menu_name'    => __( 'All Requests', 'simple-feature-requests' ),
    124124            '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        ),
    126132            'menu_icon'    => 'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAyMCAyMCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3BhY2U9InByZXNlcnZlIiB4bWxuczpzZXJpZj0iaHR0cDovL3d3dy5zZXJpZi5jb20vIiBzdHlsZT0iZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7c3Ryb2tlLWxpbmVqb2luOnJvdW5kO3N0cm9rZS1taXRlcmxpbWl0OjI7Ij48cGF0aCBkPSJNMTEuNjA3LDIuOTUzYzAuMDgsLTAuMjIzIDAuMTc0LC0wLjQ0NCAwLjI4MywtMC42NjFjMC4yNzEsLTAuNTM5IDAuNjgzLC0xLjAzOSAxLjI5NiwtMS4yMjZjMC4wMjIsLTAuMDA2IDAuMDQ0LC0wLjAxMiAwLjA2NiwtMC4wMThjMC45NDcsLTAuMjMzIDEuOTAxLDAuNDI1IDIuNTA5LDEuMDI4YzEuNTg2LDEuNTczIDIuNDc2LDMuODA5IDIuOTc2LDYuMDM2YzAuNDYxLDIuMDU2IDAuNzA1LDQuMjc3IC0wLjIwMiw2LjIxNmMtMC4wMzIsMC4wNjggLTAuMDY1LDAuMTM1IC0wLjEwMSwwLjIwMmMtMC4zNDYsMC42MzggLTAuOTQ5LDEuMjEgLTEuNzU4LDEuMTk1Yy0wLjcyMywtMC4wMTQgLTEuMzQyLC0wLjM5IC0xLjg2MSwtMC44NzFjLTEuMjEsLTAuMzEzIC0yLjc4NSwtMC41NDUgLTQuMDM3LC0wLjU0MWMtMC4wMzksMC4zNDggLTAuNDk0LDMuMDgxIC0yLjEzOCw0LjUzM2MtMC4xNjMsMC4xNDQgLTAuODExLDAuNDk1IC0wLjY3NywtMC43OTVjMC4xMzksLTEuMzM3IC0wLjU2LC0zLjA4MSAtMi4xNTQsLTMuMDA0Yy0wLjU3NiwwLjAyOCAtMS4wOTgsMC4yNDYgLTEuNDI2LDAuMzUzYzAsMCAtMC4wMjEsMC4wMDMgLTAuMDU1LDAuMDA0Yy0wLjAzNywwLjAxNyAtMC4wNzUsMC4wMjkgLTAuMTE0LDAuMDM2Yy0yLjEzOSwwLjM3IC0zLjk5NSwtMy41MiAtMy4xNTcsLTYuMTMxYzAuMTk4LC0wLjYxNyAwLjU4LC0xLjI5OSAxLjI1MiwtMS40MDdjMC4zNjUsLTAuMTg3IDEuMDg0LC0wLjI0NSAxLjY1OSwtMC40MjRjMi44MjksLTAuODc5IDUuNTc2LC0yLjM5NCA3LjYzOSwtNC41MjVabTIuMjM4LDAuNDA4Yy0wLjUyOSwxLjE4NiAtMC40MSwyLjYwMyAtMC4xODgsMy45NjljMC4zMTIsMS45MjMgMC45NTksMy44NSAyLjE4LDUuMzUzYzAuMjA0LDAuMjUyIDAuNDI3LDAuNDkgMC42ODgsMC42OGMwLDAgMC4xMDMsLTAuMjQyIDAuMTUsLTAuNDFjMC40NDcsLTEuNjA5IDAuMTc5LC0zLjM4MiAtMC4yODMsLTUuMDQ2Yy0wLjQzMiwtMS41NTcgLTEuMDU3LC0zLjExOSAtMi4xOTgsLTQuMjUyYy0wLjEzOCwtMC4xMzcgLTAuMzM2LC0wLjMyNCAtMC4zNDksLTAuMjk0WiIgc3R5bGU9ImZpbGw6IzllYTNhODsiLz48L3N2Zz4=',
    127133            'show_in_menu' => 'jck-sfr-settings',
     
    154160            'show_in_menu'        => true,
    155161            'show_in_nav_menus'   => true,
     162            'show_in_rest'        => false,
    156163            'publicly_queryable'  => true,
    157164            'exclude_from_search' => true,
     
    187194            'show_ui'             => $options['show_ui'],
    188195            'show_in_menu'        => $options['show_in_menu'],
     196            'show_in_rest'        => $options['show_in_rest'],
    189197            'menu_icon'           => $options['menu_icon'],
    190198            'show_in_nav_menus'   => $options['show_in_nav_menus'],
     
    610618        $user_id = get_current_user_id();
    611619        $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' ) ) {
    614622            return;
    615623        }
     
    724732    public static function get_posts_per_page()
    725733    {
    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'] );
    727739    }
    728740   
     
    767779   
    768780    /**
     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    /**
    769801     * Set single page template to same as archive page.
    770802     *
  • simple-feature-requests/trunk/inc/class-query.php

    r2282410 r2347084  
    7272   
    7373    /**
     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    /**
    7494     * Get requests ordered by status.
    7595     *
     
    171191            $meta_query['status']['value'][] = 'pending';
    172192        }
     193        $viewable_statuses = jck_sfr_get_viewable_statuses();
    173194       
    174         if ( $status ) {
     195        if ( $status && in_array( $status, $viewable_statuses, true ) ) {
    175196            $meta_query['status']['value'] = array( $status );
    176197            $meta_query['status']['compare'] = 'IN';
  • simple-feature-requests/trunk/inc/class-settings.php

    r2282410 r2347084  
    257257            'default'  => JCK_Simple_Feature_Requests::get_pro_button(),
    258258        );
     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        );
    259280        $settings['sections']['notifications_events'] = array(
    260281            'tab_id'              => 'notifications',
     
    264285            'section_order'       => 10,
    265286            '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',
    267294            'title'    => __( 'Status Change', 'simple-feature-requests' ),
    268295            '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' ),
    269302            'type'     => 'custom',
    270303            'default'  => JCK_Simple_Feature_Requests::get_pro_button(),
  • simple-feature-requests/trunk/inc/class-template-methods.php

    r2282410 r2347084  
    108108        $base_url = jck_sfr_get_archive_url_with_filters( array( $filter['key'], 'search' ) );
    109109        $selected = filter_input( INPUT_GET, $filter['key'] );
     110        $option_keys = array_keys( $filter['options'] );
     111        $selected = ( in_array( $selected, $option_keys, true ) ? $selected : false );
    110112        ?>
    111113        <span class="jck-sfr-filters__filter-item-button <?php
     
    336338        <span class="jck-sfr-comment-count jck-sfr-u-nowrap">
    337339            <?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 );
    339346        ?>
    340347        </span>
  • simple-feature-requests/trunk/inc/class-user.php

    r2202889 r2347084  
    5858   
    5959    /**
    60      * Redirect subscribers.
     60     * Redirect subscribers and contributors.
    6161     */
    6262    public static function redirect_voters()
     
    6464        $user = wp_get_current_user();
    6565        $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 ) {
    6767            return;
    6868        }
     
    427427            return false;
    428428        }
    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        ) );
    430435       
    431436        if ( !$user_id || is_wp_error( $user_id ) ) {
  • simple-feature-requests/trunk/inc/functions.php

    r2282410 r2347084  
    1414function jck_sfr_get_statuses( $excludes = array() ) {
    1515    $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' ),
    2323    ) );
    2424
     
    3030
    3131    return $statuses;
     32}
     33
     34/**
     35 * Get viewable statuses.
     36 *
     37 * @return array
     38 */
     39function 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 );
    3249}
    3350
  • simple-feature-requests/trunk/languages/simple-feature-requests.pot

    r2282410 r2347084  
    1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
    1515
    16 #: simple-feature-requests.php:158, 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:45
     16#: 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
    1717msgid "Simple Feature Requests"
    1818msgstr ""
    1919
    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
     21msgid "Available in Pro"
     22msgstr ""
     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
     25msgid "Nonce check failed."
     26msgstr ""
     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
     29msgid "Simple Feature Requests: No post ID sent to AJAX."
     30msgstr ""
     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
     33msgid "Simple Feature Requests: No post found for ID %d"
     34msgstr ""
     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
     37msgid "vote"
     38msgid_plural "votes"
     39msgstr[0] ""
     40msgstr[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
     43msgid "Vote"
     44msgstr ""
     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
     47msgid "Voting"
     48msgstr ""
     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
     51msgid "Voted"
     52msgstr ""
     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
     55msgid "Display individual product variations of a variable product in your product listings. Make it easy for your customers to view and filter product variations."
     56msgstr ""
     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
     59msgid "Enable zoom, sliders, video, fullscreen, multiple images per variation, and customisable layout options for your product imagery."
     60msgstr ""
     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
     63msgid "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."
     64msgstr ""
     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
     67msgid "Link a group of WooCommerce products together by their attributes; a new way to handle product variations."
     68msgstr ""
     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
     71msgid "Use transparent image layers for your variable products, removing the need to create hundreds of final product variation images."
     72msgstr ""
     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
     75msgid "A modern take on quick view for WooCommerce; expand product details within your product listings for a convenient shopping experience."
     76msgstr ""
     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
     79msgid "Add and manage pages in your WooCommerce \"My Account\" area using the native WordPress \"Pages\" functionality."
     80msgstr ""
     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
     83msgid "Quickly view any product from the catalog, without reloading the page. Encourage sales with easy and efficient product browsing."
     84msgstr ""
     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
     87msgid "Bored of the standard dropdown fields when viewing a variable product? Turn them into colour, image, or text swatches!"
     88msgstr ""
     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
     91msgid "Easily add custom fields to your product variations; the perfect way to display organised additional product data to your customers."
     92msgstr ""
     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
     95msgid "Bundle a selection of products on a single product page. It even works with variable products!"
     96msgstr ""
     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
     99msgid "Learn More"
     100msgstr ""
     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
     103msgid "View All Iconic Plugins"
     104msgstr ""
     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
     107msgid "Trusted by over 10,000 WooCommerce Businesses and Online Shops"
     108msgstr ""
     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
     111msgid "Back to Settings"
     112msgstr ""
     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
     115msgid "Changelog"
     116msgstr ""
     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
     119msgid "Manage Licence &amp; Billing"
     120msgstr ""
     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
     127msgid "Thank you for installing %1$s. Check out the <a href=\"%2$s\">plugin dashboard</a>."
     128msgstr ""
     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
     131msgid "Thank you for choosing Iconic. We've put together some useful links to help you get started:"
     132msgstr ""
     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
     135msgid "Need some help?"
     136msgstr ""
     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
     143msgid "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>."
     144msgstr ""
     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
     147msgid "There is a permanent link to the plugin documentation in the \"Support\" section below."
     148msgstr ""
     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
     151msgid "Getting Started"
     152msgstr ""
     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
     155msgid "Dashboard"
     156msgstr ""
     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
     159msgid "License &amp; Account Settings"
     160msgstr ""
     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
     163msgid "License &amp; Billing"
     164msgstr ""
     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
     167msgid "Activate or sync your license, cancel your subscription, print invoices, and manage your account information."
     168msgstr ""
     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
     171msgid "Your Account"
     172msgstr ""
     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
     175msgid "Manage all of your Iconic plugins, supscriptions, renewals, and more."
     176msgstr ""
     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
     179msgid "Support"
     180msgstr ""
     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
     183msgid "Get premium support with a valid license."
     184msgstr ""
     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
     187msgid "Documentation"
     188msgstr ""
     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
     191msgid "Read the plugin documentation."
     192msgstr ""
     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
     195msgid "Works Well With..."
     196msgstr ""
     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
     199msgid "Submit Ticket"
     200msgstr ""
     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
     203msgid "Read Documentation"
     204msgstr ""
     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
     207msgid "Manage Your Account"
     208msgstr ""
     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
     211msgid "A request with that title already exists."
     212msgstr ""
     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
     215msgid "There was an error adding your feature request. Please try again."
     216msgstr ""
     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
     219msgid "Thank you for your request."
     220msgstr ""
     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
     223msgid "It is currently %s."
     224msgstr ""
     225
     226#: inc/class-notifications.php:191
     227msgid "%s Status Changed"
     228msgstr ""
     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
     231msgid "Feature Request"
     232msgstr ""
     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
     235msgid "Hello,"
     236msgstr ""
     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
     239msgid "A new %s has been posted by \"%s\" to your site."
     240msgstr ""
     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
     243msgid "feature request"
     244msgstr ""
     245
     246#: inc/class-notifications.php:283
     247msgid "Hello %s,"
     248msgstr ""
     249
     250#: inc/class-notifications.php:284
     251msgid "We thought you'd like to know the status of <a href=\"%s\">%s</a> has changed to <strong>%s</strong>."
     252msgstr ""
     253
     254#: inc/class-notifications.php:312
     255msgid "Someone has posted a new comment on <a href=\"%s\">%s</a>."
     256msgstr ""
     257
     258#: inc/class-notifications.php:440
     259msgid "New %s Comment"
     260msgstr ""
     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
     263msgid "New %s"
     264msgstr ""
     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
     267msgid "Feature Requests"
     268msgstr ""
     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
     271msgid "All Requests"
     272msgstr ""
     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
     275msgid "Author"
     276msgstr ""
     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
     279msgid "Status"
     280msgstr ""
     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
     283msgid "Votes"
     284msgstr ""
     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
     287msgid "Categories"
     288msgstr ""
     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
     291msgid "Information"
     292msgstr ""
     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
    21295msgid "Requests"
    22296msgstr ""
    23297
    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 &amp; 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 &amp; 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 &amp; 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
    283299msgid "Edit Feature Request"
    284300msgstr ""
    285301
    286 #: inc/class-post-types.php:731, 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:743
     302#: 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
    287303msgid "Manage Feature Requests"
    288304msgstr ""
    289305
    290 #: inc/class-post-types.php:799
     306#: inc/class-post-types.php:826
    291307msgid "Set Status to %s"
    292308msgstr ""
    293309
    294 #: inc/class-post-types.php:849
     310#: inc/class-post-types.php:876
    295311msgid "%s status updated."
    296312msgid_plural "%s statuses udpated."
     
    298314msgstr[1] ""
    299315
    300 #: inc/class-post-types.php:866, inc/class-template-methods.php:352
     316#: inc/class-post-types.php:893, inc/class-template-methods.php:354
    301317msgid "Category"
    302318msgstr ""
    303319
    304 #: inc/class-post-types.php:872
     320#: inc/class-post-types.php:899
    305321msgctxt "taxonomy general name"
    306322msgid "Categories"
    307323msgstr ""
    308324
    309 #: inc/class-post-types.php:873
     325#: inc/class-post-types.php:900
    310326msgctxt "taxonomy singular name"
    311327msgid "Category"
    312328msgstr ""
    313329
    314 #: inc/class-post-types.php:874
     330#: inc/class-post-types.php:901
    315331msgid "Search Categories"
    316332msgstr ""
    317333
    318 #: inc/class-post-types.php:875
     334#: inc/class-post-types.php:902
    319335msgid "Popular Categories"
    320336msgstr ""
    321337
    322 #: inc/class-post-types.php:876
     338#: inc/class-post-types.php:903
    323339msgid "All Categories"
    324340msgstr ""
    325341
    326 #: inc/class-post-types.php:879
     342#: inc/class-post-types.php:906
    327343msgid "Edit Category"
    328344msgstr ""
    329345
    330 #: inc/class-post-types.php:880
     346#: inc/class-post-types.php:907
    331347msgid "Update Category"
    332348msgstr ""
    333349
    334 #: inc/class-post-types.php:881
     350#: inc/class-post-types.php:908
    335351msgid "Add New Category"
    336352msgstr ""
    337353
    338 #: inc/class-post-types.php:882
     354#: inc/class-post-types.php:909
    339355msgid "New Category Name"
    340356msgstr ""
    341357
    342 #: inc/class-post-types.php:883
     358#: inc/class-post-types.php:910
    343359msgid "Separate categories with commas"
    344360msgstr ""
    345361
    346 #: inc/class-post-types.php:884
     362#: inc/class-post-types.php:911
    347363msgid "Add or remove categories"
    348364msgstr ""
    349365
    350 #: inc/class-post-types.php:885
     366#: inc/class-post-types.php:912
    351367msgid "Choose from the most used categories"
    352368msgstr ""
    353369
    354 #: inc/class-post-types.php:886
     370#: inc/class-post-types.php:913
    355371msgid "No categories found."
    356372msgstr ""
    357373
    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:46
     374#: 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
    359375msgid "Settings"
    360376msgstr ""
    361377
    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
    363379msgid "General"
    364380msgstr ""
    365381
    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
    367383msgid "Setup"
    368384msgstr ""
    369385
    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
    371387msgid "Archive Page"
    372388msgstr ""
    373389
    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
    375391msgid "Select the archive page for your feature requests. Make sure you add the [simple-feature-requests] shortcode to the selected page."
    376392msgstr ""
    377393
    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
    379395msgid "Comments"
    380396msgstr ""
    381397
    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
    383399msgid "Enable Comments"
    384400msgstr ""
    385401
    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
    387403msgid "When enabled, users will be able to comment on feature requests."
    388404msgstr ""
    389405
    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
    391407msgid "Credit"
    392408msgstr ""
    393409
    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
    395411msgid "Enable Credit"
    396412msgstr ""
    397413
    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
    399415msgid "When enabled, a \"powered by\" link will be displayed in the footer of the feature requests templates. Help us spread the word!"
    400416msgstr ""
    401417
    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
    403419msgid "Notifications"
    404420msgstr ""
    405421
    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
    407423msgid "Email Contents"
    408424msgstr ""
    409425
    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
    411427msgid "Signature"
    412428msgstr ""
    413429
    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
    415431msgid "Used to sign off notification emails. You can use %site_name% and %site_url%."
    416432msgstr ""
    417433
    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
    419435msgid "Thank you"
    420436msgstr ""
    421437
    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
    423439msgid "Voting Settings"
    424440msgstr ""
    425441
    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
    427443msgid "Allow Own Vote Removal?"
    428444msgstr ""
    429445
    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
    431447msgid "Do you want to allow your users to remove their votes on their own requests?"
    432448msgstr ""
    433449
    434 #: inc/class-settings.php:255, inc/class-settings.php:366
     450#: 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
    435451msgid "Default Request Status"
    436452msgstr ""
    437453
    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
    439455msgid "Set the default request status."
    440456msgstr ""
    441457
    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
     459msgid "Requests Per Page"
     460msgstr ""
     461
     462#: inc/class-settings.php:264, inc/class-settings.php:415
     463msgid "How many requests to show per page in the archive."
     464msgstr ""
     465
     466#: inc/class-settings.php:272, inc/class-settings.php:423
     467msgid "Admin"
     468msgstr ""
     469
     470#: inc/class-settings.php:278
     471msgid "Email Addresses"
     472msgstr ""
     473
     474#: inc/class-settings.php:279
     475msgid "Set the admin email addresses for sending and receiving email notifications."
     476msgstr ""
     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
    443479msgid "Events"
    444480msgstr ""
    445481
    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
     483msgid "New Request"
     484msgstr ""
     485
     486#: inc/class-settings.php:296, inc/class-settings.php:454
     487msgid "Send a notification to the admin email address when a new request is added."
     488msgstr ""
     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
    447491msgid "Status Change"
    448492msgstr ""
    449493
    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:261
     494#: 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
    451495msgid "Send a notification when the request status changes."
    452496msgstr ""
    453497
    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
     499msgid "Comment"
     500msgstr ""
     501
     502#: inc/class-settings.php:310, inc/class-settings.php:475
     503msgid "Send a notification when a new comment is added to the request."
     504msgstr ""
     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
    455507msgid "Voting Limits"
    456508msgstr ""
    457509
    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:274
     510#: 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
    459511msgid "Votes Limit"
    460512msgstr ""
    461513
    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:275
     514#: 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
    463515msgid "How many votes should each user get? Enter 0 or leave empty for no limit."
    464516msgstr ""
    465517
    466 #: inc/class-settings.php:342, 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:325
     518#: 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
    467519msgid "Important!"
    468520msgstr ""
    469521
    470 #: inc/class-settings.php:343, 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:328
     522#: 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
    471523msgid "You need to <a href=\"%s\">set an archive page</a> for Simple Feature Requests, under the \"General\" tab."
    472524msgstr ""
    473525
    474 #: inc/class-settings.php:367
     526#: inc/class-settings.php:406
    475527msgid "The default status for when a request is first created."
    476528msgstr ""
    477529
    478 #: inc/class-settings.php:391, inc/class-settings.php:405
     530#: inc/class-settings.php:429
     531msgid "Admin Email"
     532msgstr ""
     533
     534#: inc/class-settings.php:430
     535msgid "Admin notifications will be sent to this email address."
     536msgstr ""
     537
     538#: inc/class-settings.php:436
     539msgid "From Email"
     540msgstr ""
     541
     542#: inc/class-settings.php:437
     543msgid "Notifications will be sent \"from\" this email address."
     544msgstr ""
     545
     546#: inc/class-settings.php:469, inc/class-settings.php:483
    479547msgid "Voter"
    480548msgstr ""
    481549
    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
    491551msgid "Reimburse Votes"
    492552msgstr ""
    493553
    494 #: inc/class-settings.php:428
     554#: inc/class-settings.php:506
    495555msgid "Reimburse votes to a user when a request they voted on has any of the selected statuses."
    496556msgstr ""
    497557
    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
    499559msgid "Please select this page (%s) as the <strong>Archive Page</strong> in <a href=\"%s\">the settings</a>, under the \"General\" tab."
    500560msgstr ""
     
    516576msgstr ""
    517577
    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:39
     578#: 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
    519579msgid "There was an error submitting your request."
    520580msgstr ""
    521581
    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:42
     582#: 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
    523583msgid "Please enter a request title."
    524584msgstr ""
    525585
    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:45
     586#: 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
    527587msgid "Please enter a request description."
    528588msgstr ""
    529589
    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:71
     590#: 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
    531591msgid "Sorry, there was an issue adding that request. Please try again."
    532592msgstr ""
     
    536596msgstr ""
    537597
    538 #: inc/class-template-hooks.php:262, svn/trunk/inc/class-template-hooks.php:233, 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:229
     598#: 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
    539599msgid "Powered by"
    540600msgstr ""
    541601
    542 #: inc/class-template-hooks.php:264, svn/trunk/inc/class-template-hooks.php:237, 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:233
     602#: 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
    543603msgid "Simple feature Requests"
    544604msgstr ""
    545605
    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:26
     606#: 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
    547607msgid "Latest"
    548608msgstr ""
    549609
    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:34
     610#: 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
    551611msgid "Top"
    552612msgstr ""
    553613
    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:44
     614#: 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
    555615msgid "My Requests"
    556616msgstr ""
    557617
    558 #: inc/class-template-methods.php:106, 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:122
     618#: 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
    559619msgid "Any"
    560620msgstr ""
    561621
    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
     623msgid "shared this idea"
     624msgstr ""
     625
     626#: inc/class-template-methods.php:256
     627msgid "%d comment"
     628msgid_plural "%d comments"
    565629msgstr[0] ""
    566630msgstr[1] ""
    567631
    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
    573633msgid "&larr; All Feature Requests"
    574634msgstr ""
    575635
    576 #: inc/class-template-methods.php:378
     636#: inc/class-template-methods.php:380
    577637msgid "Select a %s..."
    578638msgstr ""
    579639
    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:86
     640#: 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
    581641msgid "There was an error logging you in."
    582642msgstr ""
    583643
    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:176
     644#: 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
    585645msgid "You need to login to vote for a feature."
    586646msgstr ""
    587647
    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:182
     648#: 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
    589649msgid "You have already voted for this feature."
    590650msgstr ""
    591651
    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
    593653msgid "Sorry, you do not have any votes remaining."
    594654msgstr ""
    595655
    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:194
     656#: 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
    597657msgid "There was an error adding your vote."
    598658msgstr ""
    599659
    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:221
     660#: 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
    601661msgid "You need to login to remove a vote from a feature."
    602662msgstr ""
    603663
    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:227
     664#: 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
    605665msgid "You have not voted for this feature yet."
    606666msgstr ""
    607667
    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:235
     668#: 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
    609669msgid "You cannot remove a vote for your own request."
    610670msgstr ""
    611671
    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:248
     672#: 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
    613673msgid "There was an error removing your vote."
    614674msgstr ""
    615675
    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:323
     676#: 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
    617677msgid "Please enter an email."
    618678msgstr ""
    619679
    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:328
     680#: 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
    621681msgid "Please enter a password."
    622682msgstr ""
    623683
    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:318
     684#: 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
    625685msgid "Please enter a username."
    626686msgstr ""
    627687
    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:333
     688#: 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
    629689msgid "Please enter a repeat password."
    630690msgstr ""
    631691
    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:338
     692#: 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
    633693msgid "Your passwords did not match."
    634694msgstr ""
    635695
    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:350
     696#: 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
    637697msgid "That username has already been registered."
    638698msgstr ""
    639699
    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:355
     700#: 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
    641701msgid "That email has already been registered."
    642702msgstr ""
    643703
    644 #: inc/class-user.php:452, 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:366
     704#: 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
    645705msgid "There was an issue registering your account. Please try again."
    646706msgstr ""
    647707
    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
     709msgid "Pending"
     710msgstr ""
     711
     712#: inc/functions.php:17
     713msgid "Published"
     714msgstr ""
     715
     716#: inc/functions.php:18
     717msgid "Under Review"
     718msgstr ""
     719
     720#: inc/functions.php:19
     721msgid "Planned"
     722msgstr ""
     723
     724#: inc/functions.php:20
     725msgid "Started"
     726msgstr ""
     727
     728#: inc/functions.php:21
     729msgid "Completed"
     730msgstr ""
     731
     732#: inc/functions.php:22
     733msgid "Declined"
     734msgstr ""
     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
    649737msgid "Your Request"
    650738msgstr ""
    651739
    652 #: templates/archive/submission-form.php:28, svn/trunk/templates/archive/submission-form.php:27, 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:24
     740#: 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
    653741msgid "Enter your request..."
    654742msgstr ""
    655743
    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:31
     744#: 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
    657745msgid "Description"
    658746msgstr ""
    659747
    660 #: templates/archive/submission-form.php:55, svn/trunk/templates/archive/submission-form.php:52, 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:45
     748#: 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
    661749msgid "Submit"
    662750msgstr ""
    663751
    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:50
     752#: 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
    665753msgid "Vote for an existing request (%s)"
    666754msgstr ""
    667755
    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:52
     756#: 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
    669757msgid "Post a new request"
    670758msgstr ""
    671759
    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:19
     760#: 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
    673761msgid "Don't have an account?"
    674762msgstr ""
    675763
    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:29
     764#: 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
    677765msgid "Register"
    678766msgstr ""
    679767
    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:25
     768#: 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
    681769msgid "Already have an account?"
    682770msgstr ""
    683771
    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:28
     772#: 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
    685773msgid "Login"
    686774msgstr ""
    687775
    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:38
     776#: 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
    689777msgid "Username"
    690778msgstr ""
    691779
    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:38
     780#: 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
    693781msgid "Email"
    694782msgstr ""
    695783
    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:43
     784#: 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
    697785msgid "Password"
    698786msgstr ""
    699787
    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:48
     788#: 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
    701789msgid "Repeat Password"
    702790msgstr ""
    703791
    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:14
     792#: 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
    705793msgid "Sorry, no feature requests were found."
    706794msgstr ""
    707795
    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:36
     796#: 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
    709797msgid "Hey, %s."
    710798msgstr ""
    711799
    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:37
     800#: 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
    713801msgid "Logout"
    714802msgstr ""
     
    724812msgstr[1] ""
    725813
    726 #: svn/tags/1.0.0/inc/class-template-methods.php:100, svn/tags/1.0.1/inc/class-template-methods.php:100
    727 msgid "Pending"
    728 msgstr ""
    729 
    730814#: 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
    731815msgid "Dismiss"
     
    742826msgstr ""
    743827
     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
     829msgid "Thank you for installing %s. Check out the <a href=\"%s\">plugin dashboard</a>."
     830msgstr ""
     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
     833msgid ""
     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>"
     836msgstr ""
     837
    744838#: svn/tags/1.0.6/inc/class-settings.php:157
    745839msgid "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  
    11{
    2   "version": "2.1.1",
     2  "version": "2.1.2",
    33  "wp": "5.4",
    44  "wp_requires": "4.9",
  • simple-feature-requests/trunk/readme.txt

    r2283980 r2347084  
    55Requires at least: 4.9
    66Tested up to: 5.4
    7 Stable tag: 2.1.1
     7Stable tag: 2.1.0
    88Requires PHP: 5.4
    99License: GPLv2 or later
     
    102102
    103103== 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
    104118
    105119**v2.1.1** (2020-04-15)
  • simple-feature-requests/trunk/simple-feature-requests.php

    r2283980 r2347084  
    55 * Plugin URI: http://jckemp.com
    66 * Description: Customer led feature requests with voting.
    7  * Version: 2.1.1
     7 * Version: 2.1.2
    88 * Author: James Kemp
    99 * Author URI: https://jckemp.com
     
    2424     * @var string
    2525     */
    26     public static  $version = "2.1.1" ;
     26    public static  $version = "2.1.2" ;
    2727    /**
    2828     * Full name
     
    110110            'inc_path' => JCK_SFR_INC_PATH,
    111111        ) );
     112        // Activate multisite network integration.
     113        if ( !defined( 'WP_FS__PRODUCT_1577_MULTISITE' ) ) {
     114            define( 'WP_FS__PRODUCT_1577_MULTISITE', true );
     115        }
    112116        $simple_feature_requests_licence = JCK_SFR_Core_Licence::run( array(
    113117            'basename' => JCK_SFR_BASENAME,
     
    142146            'title'         => __( 'Simple Feature Requests', 'simple-feature-requests' ),
    143147            'version'       => self::$version,
    144             'menu_title'    => __( 'Requests', 'simple-feature-requests' ),
     148            'menu_title'    => JCK_SFR_Post_Types::get_menu_title(),
    145149            'page_title'    => __( 'Simple Feature Requests', 'simple-feature-requests' ),
    146150            'parent_slug'   => false,
Note: See TracChangeset for help on using the changeset viewer.