Plugin Directory

Changeset 2622527


Ignore:
Timestamp:
10/31/2021 03:35:22 PM (4 years ago)
Author:
aldolat
Message:

Tagging 4.16.3

Location:
posts-in-sidebar
Files:
3 deleted
9 edited
26 copied

Legend:

Unmodified
Added
Removed
  • posts-in-sidebar/tags/4.16.3/CHANGELOG.md

    r2616008 r2622527  
    77
    88## [Unreleased]
     9
     10## [4.16.3] - 2021-10-31
     11### Changed
     12* Changed admin UI in the "Getting posts" section.
    913
    1014## [4.16.2] - 2021-10-18
     
    648652
    649653[Unreleased]: https://github.com/aldolat/posts-in-sidebar/commits/develop
     654[4.16.3]: https://github.com/aldolat/posts-in-sidebar/compare/4.16.2...4.16.3
    650655[4.16.2]: https://github.com/aldolat/posts-in-sidebar/compare/4.16.1...4.16.2
    651656[4.16.1]: https://github.com/aldolat/posts-in-sidebar/compare/4.16.0...4.16.1
  • posts-in-sidebar/tags/4.16.3/README.md

    r2616008 r2622527  
    88**Requires at least:** 4.6 
    99**Tested up to:** 5.8 
    10 **Stable tag:** 4.16.2 
     10**Stable tag:** 4.16.3 
    1111**License:** GPLv3 or later 
    1212**License URI:** <https://www.gnu.org/licenses/gpl-3.0.html>
     
    116116## Changelog
    117117
    118 ### 4.16.2
     118### 4.16.3
    119119
    120 * Fixed displaying post ID to admins only.
     120* Changed admin UI in the "Getting posts" section.
    121121
    122122The full changelog is documented in the changelog file released along with the plugin package and is hosted on [GitHub](https://github.com/aldolat/posts-in-sidebar/blob/master/CHANGELOG.md).
  • posts-in-sidebar/tags/4.16.3/assets/pis-admin.css

    r1934547 r2622527  
    161161    margin-top: 1em;
    162162}
     163.pis-container h5.pis-simple-title {
     164    margin-bottom: 0;
     165    border-top: 1px solid #ccc;
     166    padding-top: 1em;
     167}
    163168
    164169/*
  • posts-in-sidebar/tags/4.16.3/changelog.txt

    r2616008 r2622527  
    11== Changelog ==
     2
     3= 4.16.3 =
     4
     5* Changed admin UI in the "Getting posts" section.
    26
    37= 4.16.2 =
  • posts-in-sidebar/tags/4.16.3/includes/class-pis-posts-in-sidebar.php

    r2615427 r2622527  
    850850                <div class="pis-section">
    851851
    852                     <div class="pis-column-container">
     852                    <h5 class="pis-simple-title"><?php esc_html_e( 'Post type', 'posts-in-sidebar' ); ?></h5>
     853
     854                    <div class="pis-column-container pis-2col">
    853855
    854856                        <div class="pis-column">
    855 
    856857                            <?php
    857858                            // ================= Post types.
     
    865866                            );
    866867                            ?>
    867 
     868                        </div>
     869
     870                        <div class="pis-column">
    868871                            <?php
    869872                            // ================= Multiple post types
     
    877880                            );
    878881                            ?>
    879 
     882                        </div>
     883
     884                    </div>
     885
     886                    <div class="pis-column-container pis-2col">
     887
     888                        <h5 class="pis-simple-title"><?php esc_html_e( 'Get posts by IDs', 'posts-in-sidebar' ); ?></h5>
     889
     890                        <div class="pis-column">
    880891                            <?php
    881892                            // ================= Posts ID
    882893                            pis_form_input_text(
    883                                 esc_html__( 'Get these posts exactly', 'posts-in-sidebar' ),
     894                                esc_html__( 'Get posts with these IDs', 'posts-in-sidebar' ),
    884895                                $this->get_field_id( 'posts_id' ),
    885896                                $this->get_field_name( 'posts_id' ),
     
    889900                            );
    890901                            ?>
    891 
    892902                        </div>
    893903
    894904                        <div class="pis-column">
    895 
     905                            <?php
     906                            // ================= Post parent
     907                            pis_form_input_text(
     908                                esc_html__( 'Get posts whose parent is in these IDs', 'posts-in-sidebar' ),
     909                                $this->get_field_id( 'post_parent_in' ),
     910                                $this->get_field_name( 'post_parent_in' ),
     911                                esc_attr( $instance['post_parent_in'] ),
     912                                esc_html__( '2, 5, 12, 14, 20', 'posts-in-sidebar' ),
     913                                esc_html__( 'Enter IDs, comma separated.', 'posts-in-sidebar' )
     914                            );
     915                            ?>
     916                        </div>
     917
     918                    </div>
     919
     920                    <div class="pis-column-container pis-2col">
     921
     922                        <h5 class="pis-simple-title"><?php esc_html_e( 'Get posts by taxonomy', 'posts-in-sidebar' ); ?></h5>
     923
     924                        <div class="pis-column">
    896925                            <?php
    897926                            // ================= Category
     
    906935                            );
    907936                            ?>
    908 
    909937                        </div>
    910938
    911939                        <div class="pis-column">
    912 
    913940                            <?php
    914941                            // ================= Tag
     
    923950                            );
    924951                            ?>
    925 
    926952                        </div>
    927953
    928954                    </div>
    929955
    930                     <div class="pis-column-container">
     956                    <div class="pis-column-container pis-2col">
     957
     958                        <h5 class="pis-simple-title"><?php esc_html_e( 'Get posts by author', 'posts-in-sidebar' ); ?></h5>
    931959
    932960                        <div class="pis-column">
    933 
    934961                            <?php
    935962                            // ================= Author
     
    942969                            );
    943970                            ?>
    944 
     971                        </div>
     972
     973                        <div class="pis-column">
    945974                            <?php
    946975                            // ================= Multiple authors
     
    954983                            );
    955984                            ?>
    956 
     985                        </div>
     986
     987                    </div>
     988
     989                    <div class="pis-column-container pis-2col">
     990
     991                        <h5 class="pis-simple-title"><?php esc_html_e( 'Get posts by post format and status', 'posts-in-sidebar' ); ?></h5>
     992
     993                        <div class="pis-column">
     994                            <?php
     995                            // ================= Post format
     996                            pis_form_select(
     997                                esc_html__( 'Get posts with this post format', 'posts-in-sidebar' ),
     998                                $this->get_field_id( 'post_format' ),
     999                                $this->get_field_name( 'post_format' ),
     1000                                pis_select_post_formats(),
     1001                                $instance['post_format']
     1002                            );
     1003                            ?>
     1004                        </div>
     1005                        <div class="pis-column">
     1006                            <?php
     1007                            // ================= Post status
     1008                            pis_form_select(
     1009                                esc_html__( 'Get posts with this post status', 'posts-in-sidebar' ),
     1010                                $this->get_field_id( 'post_status' ),
     1011                                $this->get_field_name( 'post_status' ),
     1012                                pis_select_post_status(),
     1013                                $instance['post_status']
     1014                            );
     1015                            ?>
     1016                        </div>
     1017
     1018                    </div>
     1019
     1020                    <div class="pis-column-container pis-2col">
     1021
     1022                        <h5 class="pis-simple-title"><?php esc_html_e( 'Get posts by custom field', 'posts-in-sidebar' ); ?></h5>
     1023
     1024                        <div class="pis-column">
     1025                            <?php
     1026                            // ================= Post meta key
     1027                            pis_form_input_text(
     1028                                esc_html__( 'Get posts with this meta key', 'posts-in-sidebar' ),
     1029                                $this->get_field_id( 'post_meta_key' ),
     1030                                $this->get_field_name( 'post_meta_key' ),
     1031                                esc_attr( $instance['post_meta_key'] ),
     1032                                esc_html__( 'meta-key', 'posts-in-sidebar' )
     1033                            );
     1034                            ?>
     1035                        </div>
     1036
     1037                        <div class="pis-column">
     1038                            <?php
     1039                            // ================= Post meta value
     1040                            pis_form_input_text(
     1041                                esc_html__( 'Get posts with this meta value', 'posts-in-sidebar' ),
     1042                                $this->get_field_id( 'post_meta_val' ),
     1043                                $this->get_field_name( 'post_meta_val' ),
     1044                                esc_attr( $instance['post_meta_val'] ),
     1045                                esc_html__( 'meta-value', 'posts-in-sidebar' )
     1046                            );
     1047                            ?>
     1048                        </div>
     1049
     1050                    </div>
     1051
     1052                    <div class="pis-column-container pis-2col">
     1053
     1054                        <h5 class="pis-simple-title"><?php esc_html_e( 'Get posts by recent comments and search', 'posts-in-sidebar' ); ?></h5>
     1055
     1056                        <div class="pis-column">
    9571057                            <?php
    9581058                            // ================= Get posts by recent comments
     
    9651065                            );
    9661066                            ?>
    967 
    9681067                        </div>
    9691068
    9701069                        <div class="pis-column">
    971 
    972                             <?php
    973                             // ================= Post parent
    974                             pis_form_input_text(
    975                                 esc_html__( 'Get posts whose parent is in these IDs', 'posts-in-sidebar' ),
    976                                 $this->get_field_id( 'post_parent_in' ),
    977                                 $this->get_field_name( 'post_parent_in' ),
    978                                 esc_attr( $instance['post_parent_in'] ),
    979                                 esc_html__( '2, 5, 12, 14, 20', 'posts-in-sidebar' ),
    980                                 esc_html__( 'Enter IDs, comma separated.', 'posts-in-sidebar' )
    981                             );
    982                             ?>
    983 
    984                             <?php
    985                             // ================= Post format
    986                             pis_form_select(
    987                                 esc_html__( 'Get posts with this post format', 'posts-in-sidebar' ),
    988                                 $this->get_field_id( 'post_format' ),
    989                                 $this->get_field_name( 'post_format' ),
    990                                 pis_select_post_formats(),
    991                                 $instance['post_format']
    992                             );
    993                             ?>
    994 
    995                             <?php
    996                             // ================= Post status
    997                             pis_form_select(
    998                                 esc_html__( 'Get posts with this post status', 'posts-in-sidebar' ),
    999                                 $this->get_field_id( 'post_status' ),
    1000                                 $this->get_field_name( 'post_status' ),
    1001                                 pis_select_post_status(),
    1002                                 $instance['post_status']
    1003                             );
    1004                             ?>
    1005 
    1006                         </div>
    1007 
    1008                         <div class="pis-column">
    1009 
    1010                             <?php
    1011                             // ================= Post meta key
    1012                             pis_form_input_text(
    1013                                 esc_html__( 'Get posts with this meta key', 'posts-in-sidebar' ),
    1014                                 $this->get_field_id( 'post_meta_key' ),
    1015                                 $this->get_field_name( 'post_meta_key' ),
    1016                                 esc_attr( $instance['post_meta_key'] ),
    1017                                 esc_html__( 'meta-key', 'posts-in-sidebar' )
    1018                             );
    1019                             ?>
    1020 
    1021                             <?php
    1022                             // ================= Post meta value
    1023                             pis_form_input_text(
    1024                                 esc_html__( 'Get posts with this meta value', 'posts-in-sidebar' ),
    1025                                 $this->get_field_id( 'post_meta_val' ),
    1026                                 $this->get_field_name( 'post_meta_val' ),
    1027                                 esc_attr( $instance['post_meta_val'] ),
    1028                                 esc_html__( 'meta-value', 'posts-in-sidebar' )
    1029                             );
    1030                             ?>
    1031 
    10321070                            <?php
    10331071                            // ================= Search
     
    10401078                            );
    10411079                            ?>
    1042 
     1080                        </div>
     1081
     1082                    </div>
     1083
     1084                    <div class="pis-column-container pis-2col">
     1085
     1086                        <h5 class="pis-simple-title"><?php esc_html_e( 'Get posts by password', 'posts-in-sidebar' ); ?></h5>
     1087
     1088                        <div class="pis-column">
    10431089                            <?php
    10441090                            // ================= Post with/without password
     
    10511097                            );
    10521098                            ?>
    1053 
     1099                        </div>
     1100
     1101                        <div class="pis-column">
    10541102                            <?php
    10551103                            // ================= Post password
     
    10631111                            );
    10641112                            ?>
    1065 
    10661113                        </div>
    10671114
     
    10691116
    10701117                    <div class="pis-column-container pis-2col">
     1118
     1119                        <h5 class="pis-simple-title"><?php esc_html_e( 'Number of posts, order, sticky posts and skipping', 'posts-in-sidebar' ); ?></h5>
    10711120
    10721121                        <div class="pis-column">
     
    11301179                                esc_attr( $instance['offset_number'] ),
    11311180                                '5',
    1132                                 // translators: %s is -1.
    11331181                                sprintf(
     1182                                    // translators: %s is -1.
    11341183                                    esc_html__( 'This option will be ignored if you set %s in "Get this number of posts".', 'posts-in-sidebar' ),
    11351184                                    '<code>-1</code>'
     
    11731222                                    <?php
    11741223                                    esc_html_e(
    1175                                         'When the option "When on single posts, get posts from the current category" is activated and the post has multiple categories, Posts in Sidebar will choose the category with the lowest initial letter, just as WordPress does when we get the list of the categories of a post.', 'posts-in-sidebar'
     1224                                        'When the option "When on single posts, get posts from the current category" is activated and the post has multiple categories, Posts in Sidebar will choose the category with the lowest initial letter, just as WordPress does when we get the list of the categories of a post.',
     1225                                        'posts-in-sidebar'
    11761226                                    );
    11771227                                    ?>
     
    11821232                                        // translators: Opening and closing "strong" HTML tag.
    11831233                                        esc_html__(
    1184                                             'If you activate the option %1$s"Use the main category as WordPress does for permalinks"%2$s (formerly known here as "Sort categories"), Posts in Sidebar will get the category with the lowest category ID. This is the WordPress behaviour when it determines the permalink structure if the category is used in the permalink.', 'posts-in-sidebar'
     1234                                            'If you activate the option %1$s"Use the main category as WordPress does for permalinks"%2$s (formerly known here as "Sort categories"), Posts in Sidebar will get the category with the lowest category ID. This is the WordPress behaviour when it determines the permalink structure if the category is used in the permalink.',
     1235                                            'posts-in-sidebar'
    11851236                                        ),
    11861237                                        '<strong>',
     
    11941245                                        // translators: Opening and closing "strong" HTML tag.
    11951246                                        esc_html__(
    1196                                             'If you use the Yoast SEO plugin and want to use the main category as defined with that plugin, activate the option %1$s"Use the main category as defined in the Yoast SEO plugin"%2$s.', 'posts-in-sidebar'
     1247                                            'If you use the Yoast SEO plugin and want to use the main category as defined with that plugin, activate the option %1$s"Use the main category as defined in the Yoast SEO plugin"%2$s.',
     1248                                            'posts-in-sidebar'
    11971249                                        ),
    11981250                                        '<strong>',
  • posts-in-sidebar/tags/4.16.3/languages/posts-in-sidebar.pot

    r2616008 r2622527  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Posts in Sidebar 4.16.2\n"
     5"Project-Id-Version: Posts in Sidebar 4.16.3\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/posts-in-sidebar\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2021-10-18T19:09:28+02:00\n"
     12"POT-Creation-Date: 2021-10-31T09:49:16+01:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.4.0\n"
     
    7676#. translators: there is some code in placeholders.
    7777#: includes/class-pis-posts-in-sidebar.php:845
    78 #: includes/class-pis-posts-in-sidebar.php:2400
    79 #: includes/class-pis-posts-in-sidebar.php:3342
     78#: includes/class-pis-posts-in-sidebar.php:2452
     79#: includes/class-pis-posts-in-sidebar.php:3394
    8080msgid "If a field requires one or more IDs, install %1$sthis plugin%2$s to easily find the IDs."
    8181msgstr ""
    8282
    83 #: includes/class-pis-posts-in-sidebar.php:859
    84 #: includes/class-pis-posts-in-sidebar.php:1243
    85 #: includes/class-pis-posts-in-sidebar.php:1367
    86 #: includes/class-pis-posts-in-sidebar.php:1502
    87 #: includes/class-pis-posts-in-sidebar.php:1627
    88 #: includes/class-pis-posts-in-sidebar.php:1772
    89 #: includes/class-pis-posts-in-sidebar.php:1930
    90 #: includes/class-pis-posts-in-sidebar.php:2045
    91 #: includes/class-pis-posts-in-sidebar.php:2160
    92 #: includes/class-pis-posts-in-sidebar.php:2275
     83#: includes/class-pis-posts-in-sidebar.php:852
     84#: includes/class-pis-posts-in-sidebar.php:860
     85#: includes/class-pis-posts-in-sidebar.php:1295
     86#: includes/class-pis-posts-in-sidebar.php:1419
     87#: includes/class-pis-posts-in-sidebar.php:1554
     88#: includes/class-pis-posts-in-sidebar.php:1679
     89#: includes/class-pis-posts-in-sidebar.php:1824
     90#: includes/class-pis-posts-in-sidebar.php:1982
     91#: includes/class-pis-posts-in-sidebar.php:2097
     92#: includes/class-pis-posts-in-sidebar.php:2212
     93#: includes/class-pis-posts-in-sidebar.php:2327
    9394#: includes/pis-select-options.php:167
    9495#: includes/pis-select-options.php:244
     
    9697msgstr ""
    9798
    98 #: includes/class-pis-posts-in-sidebar.php:864
    99 #: includes/class-pis-posts-in-sidebar.php:1248
    100 #: includes/class-pis-posts-in-sidebar.php:1372
    101 #: includes/class-pis-posts-in-sidebar.php:1507
    102 #: includes/class-pis-posts-in-sidebar.php:1632
    103 #: includes/class-pis-posts-in-sidebar.php:1777
    104 #: includes/class-pis-posts-in-sidebar.php:1935
    105 #: includes/class-pis-posts-in-sidebar.php:2050
    106 #: includes/class-pis-posts-in-sidebar.php:2165
    107 #: includes/class-pis-posts-in-sidebar.php:2280
     99#: includes/class-pis-posts-in-sidebar.php:865
     100#: includes/class-pis-posts-in-sidebar.php:1300
     101#: includes/class-pis-posts-in-sidebar.php:1424
     102#: includes/class-pis-posts-in-sidebar.php:1559
     103#: includes/class-pis-posts-in-sidebar.php:1684
     104#: includes/class-pis-posts-in-sidebar.php:1829
     105#: includes/class-pis-posts-in-sidebar.php:1987
     106#: includes/class-pis-posts-in-sidebar.php:2102
     107#: includes/class-pis-posts-in-sidebar.php:2217
     108#: includes/class-pis-posts-in-sidebar.php:2332
    108109msgid "Select a single post type."
    109110msgstr ""
    110111
    111 #: includes/class-pis-posts-in-sidebar.php:871
    112 #: includes/class-pis-posts-in-sidebar.php:1255
    113 #: includes/class-pis-posts-in-sidebar.php:1379
    114 #: includes/class-pis-posts-in-sidebar.php:1514
    115 #: includes/class-pis-posts-in-sidebar.php:1639
    116 #: includes/class-pis-posts-in-sidebar.php:1784
    117 #: includes/class-pis-posts-in-sidebar.php:1942
    118 #: includes/class-pis-posts-in-sidebar.php:2057
    119 #: includes/class-pis-posts-in-sidebar.php:2172
    120 #: includes/class-pis-posts-in-sidebar.php:2287
     112#: includes/class-pis-posts-in-sidebar.php:874
     113#: includes/class-pis-posts-in-sidebar.php:1307
     114#: includes/class-pis-posts-in-sidebar.php:1431
     115#: includes/class-pis-posts-in-sidebar.php:1566
     116#: includes/class-pis-posts-in-sidebar.php:1691
     117#: includes/class-pis-posts-in-sidebar.php:1836
     118#: includes/class-pis-posts-in-sidebar.php:1994
     119#: includes/class-pis-posts-in-sidebar.php:2109
     120#: includes/class-pis-posts-in-sidebar.php:2224
     121#: includes/class-pis-posts-in-sidebar.php:2339
    121122msgid "Multiple post types"
    122123msgstr ""
    123124
    124 #: includes/class-pis-posts-in-sidebar.php:875
    125 #: includes/class-pis-posts-in-sidebar.php:1259
    126 #: includes/class-pis-posts-in-sidebar.php:1383
    127 #: includes/class-pis-posts-in-sidebar.php:1518
    128 #: includes/class-pis-posts-in-sidebar.php:1643
    129 #: includes/class-pis-posts-in-sidebar.php:1788
    130 #: includes/class-pis-posts-in-sidebar.php:1946
    131 #: includes/class-pis-posts-in-sidebar.php:2061
    132 #: includes/class-pis-posts-in-sidebar.php:2176
    133 #: includes/class-pis-posts-in-sidebar.php:2291
    134 msgid "post, page, book, recipe"
    135 msgstr ""
    136 
    137 #: includes/class-pis-posts-in-sidebar.php:876
    138 #: includes/class-pis-posts-in-sidebar.php:1260
    139 #: includes/class-pis-posts-in-sidebar.php:1384
    140 #: includes/class-pis-posts-in-sidebar.php:1519
    141 #: includes/class-pis-posts-in-sidebar.php:1644
    142 #: includes/class-pis-posts-in-sidebar.php:1789
    143 #: includes/class-pis-posts-in-sidebar.php:1947
    144 #: includes/class-pis-posts-in-sidebar.php:2062
    145 #: includes/class-pis-posts-in-sidebar.php:2177
    146 #: includes/class-pis-posts-in-sidebar.php:2292
    147 msgid "Enter post types slugs, comma separated. This option, if filled, overrides the option above."
    148 msgstr ""
    149 
    150 #: includes/class-pis-posts-in-sidebar.php:883
    151 msgid "Get these posts exactly"
    152 msgstr ""
    153 
    154 #: includes/class-pis-posts-in-sidebar.php:888
    155 #: includes/class-pis-posts-in-sidebar.php:980
    156 #: includes/class-pis-posts-in-sidebar.php:3363
    157 #: includes/class-pis-posts-in-sidebar.php:3380
    158 #: includes/class-pis-posts-in-sidebar.php:3401
    159 #: includes/class-pis-posts-in-sidebar.php:3413
    160 #: includes/class-pis-posts-in-sidebar.php:3429
    161 msgid "Enter IDs, comma separated."
    162 msgstr ""
    163 
    164 #: includes/class-pis-posts-in-sidebar.php:899
    165 msgid "Get posts with these categories"
    166 msgstr ""
    167 
    168 #: includes/class-pis-posts-in-sidebar.php:903
    169 msgid "books, ebooks"
    170 msgstr ""
    171 
    172 #. translators: there is some code in placeholders.
    173 #: includes/class-pis-posts-in-sidebar.php:905
    174 msgid "Enter slugs, comma separated. To display posts that have all of the categories, use %1$s (a plus) between terms, for example:%2$s."
    175 msgstr ""
    176 
    177 #: includes/class-pis-posts-in-sidebar.php:916
    178 msgid "Get posts with these tags"
    179 msgstr ""
    180 
    181 #: includes/class-pis-posts-in-sidebar.php:920
    182 msgid "best-sellers"
    183 msgstr ""
    184 
    185 #. translators: there is some code in placeholders.
    186 #: includes/class-pis-posts-in-sidebar.php:922
    187 msgid "Enter slugs, comma separated. To display posts that have all of the tags, use %1$s (a plus) between terms, for example:%2$s."
    188 msgstr ""
    189 
    190 #: includes/class-pis-posts-in-sidebar.php:937
    191 msgid "Get posts by this author"
    192 msgstr ""
    193 
    194 #: includes/class-pis-posts-in-sidebar.php:948
    195 msgid "Get posts by these authors"
    196 msgstr ""
    197 
    198 #: includes/class-pis-posts-in-sidebar.php:952
    199 msgid "1, 23, 45"
    200 msgstr ""
    201 
    202 #: includes/class-pis-posts-in-sidebar.php:953
    203 msgid "Enter IDs, comma separated. Note that if you fill this field, the previous one will be ignored."
    204 msgstr ""
    205 
    206 #: includes/class-pis-posts-in-sidebar.php:960
    207 msgid "Get posts by recent comments"
    208 msgstr ""
    209 
    210 #: includes/class-pis-posts-in-sidebar.php:964
    211 msgid "Only published posts, in descending order, will be retrieved."
    212 msgstr ""
    213 
    214 #: includes/class-pis-posts-in-sidebar.php:975
    215 msgid "Get posts whose parent is in these IDs"
    216 msgstr ""
    217 
    218 #: includes/class-pis-posts-in-sidebar.php:979
    219 msgid "2, 5, 12, 14, 20"
    220 msgstr ""
    221 
    222 #: includes/class-pis-posts-in-sidebar.php:987
    223 msgid "Get posts with this post format"
    224 msgstr ""
    225 
    226 #: includes/class-pis-posts-in-sidebar.php:998
    227 msgid "Get posts with this post status"
    228 msgstr ""
    229 
    230 #: includes/class-pis-posts-in-sidebar.php:1013
    231 msgid "Get posts with this meta key"
    232 msgstr ""
    233 
    234 #: includes/class-pis-posts-in-sidebar.php:1017
    235 msgid "meta-key"
    236 msgstr ""
    237 
    238 #: includes/class-pis-posts-in-sidebar.php:1024
    239 msgid "Get posts with this meta value"
    240 msgstr ""
    241 
    242 #: includes/class-pis-posts-in-sidebar.php:1028
    243 msgid "meta-value"
    244 msgstr ""
    245 
    246 #: includes/class-pis-posts-in-sidebar.php:1035
    247 msgid "Get posts from this search"
    248 msgstr ""
    249 
    250 #: includes/class-pis-posts-in-sidebar.php:1039
    251 msgid "words to search"
    252 msgstr ""
    253 
    254 #: includes/class-pis-posts-in-sidebar.php:1046
    255 msgid "Get posts with/without password"
    256 msgstr ""
    257 
    258 #: includes/class-pis-posts-in-sidebar.php:1057
    259 msgid "Get posts with this password"
    260 msgstr ""
    261 
    262 #: includes/class-pis-posts-in-sidebar.php:1062
    263 msgid "correct horse battery staple"
    264 msgstr ""
    265 
    266 #: includes/class-pis-posts-in-sidebar.php:1077
    267 msgid "Get this number of posts"
    268 msgstr ""
    269 
    270 #. translators: %s is -1.
    271 #: includes/class-pis-posts-in-sidebar.php:1083
    272 #: includes/class-pis-posts-in-sidebar.php:1277
    273 #: includes/class-pis-posts-in-sidebar.php:1412
    274 #: includes/class-pis-posts-in-sidebar.php:1536
    275 #: includes/class-pis-posts-in-sidebar.php:1683
    276 #: includes/class-pis-posts-in-sidebar.php:1806
    277 #: includes/class-pis-posts-in-sidebar.php:1964
    278 #: includes/class-pis-posts-in-sidebar.php:2079
    279 #: includes/class-pis-posts-in-sidebar.php:2194
    280 #: includes/class-pis-posts-in-sidebar.php:2309
    281 msgid "The value %s shows all the posts."
    282 msgstr ""
    283 
    284 #: includes/class-pis-posts-in-sidebar.php:1090
    285 msgid "Do not display sticky posts on top of other posts"
    286 msgstr ""
    287 
    288 #: includes/class-pis-posts-in-sidebar.php:1094
    289 msgid "If you activate this option, sticky posts will be managed as other posts. Sticky post status will be automatically ignored if you set up an author or a taxonomy in this widget."
    290 msgstr ""
    291 
    292 #: includes/class-pis-posts-in-sidebar.php:1105
    293 #: includes/class-pis-posts-in-sidebar.php:1298
    294 #: includes/class-pis-posts-in-sidebar.php:1433
    295 #: includes/class-pis-posts-in-sidebar.php:1557
    296 #: includes/class-pis-posts-in-sidebar.php:1703
    297 #: includes/class-pis-posts-in-sidebar.php:1827
     125#: includes/class-pis-posts-in-sidebar.php:878
     126#: includes/class-pis-posts-in-sidebar.php:1311
     127#: includes/class-pis-posts-in-sidebar.php:1435
     128#: includes/class-pis-posts-in-sidebar.php:1570
     129#: includes/class-pis-posts-in-sidebar.php:1695
     130#: includes/class-pis-posts-in-sidebar.php:1840
    298131#: includes/class-pis-posts-in-sidebar.php:1998
    299132#: includes/class-pis-posts-in-sidebar.php:2113
    300133#: includes/class-pis-posts-in-sidebar.php:2228
    301134#: includes/class-pis-posts-in-sidebar.php:2343
     135msgid "post, page, book, recipe"
     136msgstr ""
     137
     138#: includes/class-pis-posts-in-sidebar.php:879
     139#: includes/class-pis-posts-in-sidebar.php:1312
     140#: includes/class-pis-posts-in-sidebar.php:1436
     141#: includes/class-pis-posts-in-sidebar.php:1571
     142#: includes/class-pis-posts-in-sidebar.php:1696
     143#: includes/class-pis-posts-in-sidebar.php:1841
     144#: includes/class-pis-posts-in-sidebar.php:1999
     145#: includes/class-pis-posts-in-sidebar.php:2114
     146#: includes/class-pis-posts-in-sidebar.php:2229
     147#: includes/class-pis-posts-in-sidebar.php:2344
     148msgid "Enter post types slugs, comma separated. This option, if filled, overrides the option above."
     149msgstr ""
     150
     151#: includes/class-pis-posts-in-sidebar.php:888
     152msgid "Get posts by IDs"
     153msgstr ""
     154
     155#: includes/class-pis-posts-in-sidebar.php:894
     156msgid "Get posts with these IDs"
     157msgstr ""
     158
     159#: includes/class-pis-posts-in-sidebar.php:899
     160#: includes/class-pis-posts-in-sidebar.php:913
     161#: includes/class-pis-posts-in-sidebar.php:3415
     162#: includes/class-pis-posts-in-sidebar.php:3432
     163#: includes/class-pis-posts-in-sidebar.php:3453
     164#: includes/class-pis-posts-in-sidebar.php:3465
     165#: includes/class-pis-posts-in-sidebar.php:3481
     166msgid "Enter IDs, comma separated."
     167msgstr ""
     168
     169#: includes/class-pis-posts-in-sidebar.php:908
     170msgid "Get posts whose parent is in these IDs"
     171msgstr ""
     172
     173#: includes/class-pis-posts-in-sidebar.php:912
     174msgid "2, 5, 12, 14, 20"
     175msgstr ""
     176
     177#: includes/class-pis-posts-in-sidebar.php:922
     178msgid "Get posts by taxonomy"
     179msgstr ""
     180
     181#: includes/class-pis-posts-in-sidebar.php:928
     182msgid "Get posts with these categories"
     183msgstr ""
     184
     185#: includes/class-pis-posts-in-sidebar.php:932
     186msgid "books, ebooks"
     187msgstr ""
     188
     189#. translators: there is some code in placeholders.
     190#: includes/class-pis-posts-in-sidebar.php:934
     191msgid "Enter slugs, comma separated. To display posts that have all of the categories, use %1$s (a plus) between terms, for example:%2$s."
     192msgstr ""
     193
     194#: includes/class-pis-posts-in-sidebar.php:943
     195msgid "Get posts with these tags"
     196msgstr ""
     197
     198#: includes/class-pis-posts-in-sidebar.php:947
     199msgid "best-sellers"
     200msgstr ""
     201
     202#. translators: there is some code in placeholders.
     203#: includes/class-pis-posts-in-sidebar.php:949
     204msgid "Enter slugs, comma separated. To display posts that have all of the tags, use %1$s (a plus) between terms, for example:%2$s."
     205msgstr ""
     206
     207#: includes/class-pis-posts-in-sidebar.php:958
     208msgid "Get posts by author"
     209msgstr ""
     210
     211#: includes/class-pis-posts-in-sidebar.php:964
     212msgid "Get posts by this author"
     213msgstr ""
     214
     215#: includes/class-pis-posts-in-sidebar.php:977
     216msgid "Get posts by these authors"
     217msgstr ""
     218
     219#: includes/class-pis-posts-in-sidebar.php:981
     220msgid "1, 23, 45"
     221msgstr ""
     222
     223#: includes/class-pis-posts-in-sidebar.php:982
     224msgid "Enter IDs, comma separated. Note that if you fill this field, the previous one will be ignored."
     225msgstr ""
     226
     227#: includes/class-pis-posts-in-sidebar.php:991
     228msgid "Get posts by post format and status"
     229msgstr ""
     230
     231#: includes/class-pis-posts-in-sidebar.php:997
     232msgid "Get posts with this post format"
     233msgstr ""
     234
     235#: includes/class-pis-posts-in-sidebar.php:1009
     236msgid "Get posts with this post status"
     237msgstr ""
     238
     239#: includes/class-pis-posts-in-sidebar.php:1022
     240msgid "Get posts by custom field"
     241msgstr ""
     242
     243#: includes/class-pis-posts-in-sidebar.php:1028
     244msgid "Get posts with this meta key"
     245msgstr ""
     246
     247#: includes/class-pis-posts-in-sidebar.php:1032
     248msgid "meta-key"
     249msgstr ""
     250
     251#: includes/class-pis-posts-in-sidebar.php:1041
     252msgid "Get posts with this meta value"
     253msgstr ""
     254
     255#: includes/class-pis-posts-in-sidebar.php:1045
     256msgid "meta-value"
     257msgstr ""
     258
     259#: includes/class-pis-posts-in-sidebar.php:1054
     260msgid "Get posts by recent comments and search"
     261msgstr ""
     262
     263#: includes/class-pis-posts-in-sidebar.php:1060
     264msgid "Get posts by recent comments"
     265msgstr ""
     266
     267#: includes/class-pis-posts-in-sidebar.php:1064
     268msgid "Only published posts, in descending order, will be retrieved."
     269msgstr ""
     270
     271#: includes/class-pis-posts-in-sidebar.php:1073
     272msgid "Get posts from this search"
     273msgstr ""
     274
     275#: includes/class-pis-posts-in-sidebar.php:1077
     276msgid "words to search"
     277msgstr ""
     278
     279#: includes/class-pis-posts-in-sidebar.php:1086
     280msgid "Get posts by password"
     281msgstr ""
     282
     283#: includes/class-pis-posts-in-sidebar.php:1092
     284msgid "Get posts with/without password"
     285msgstr ""
     286
     287#: includes/class-pis-posts-in-sidebar.php:1105
     288msgid "Get posts with this password"
     289msgstr ""
     290
     291#: includes/class-pis-posts-in-sidebar.php:1110
     292msgid "correct horse battery staple"
     293msgstr ""
     294
     295#: includes/class-pis-posts-in-sidebar.php:1119
     296msgid "Number of posts, order, sticky posts and skipping"
     297msgstr ""
     298
     299#: includes/class-pis-posts-in-sidebar.php:1126
     300msgid "Get this number of posts"
     301msgstr ""
     302
     303#. translators: %s is -1.
     304#: includes/class-pis-posts-in-sidebar.php:1132
     305#: includes/class-pis-posts-in-sidebar.php:1329
     306#: includes/class-pis-posts-in-sidebar.php:1464
     307#: includes/class-pis-posts-in-sidebar.php:1588
     308#: includes/class-pis-posts-in-sidebar.php:1735
     309#: includes/class-pis-posts-in-sidebar.php:1858
     310#: includes/class-pis-posts-in-sidebar.php:2016
     311#: includes/class-pis-posts-in-sidebar.php:2131
     312#: includes/class-pis-posts-in-sidebar.php:2246
     313#: includes/class-pis-posts-in-sidebar.php:2361
     314msgid "The value %s shows all the posts."
     315msgstr ""
     316
     317#: includes/class-pis-posts-in-sidebar.php:1139
     318msgid "Do not display sticky posts on top of other posts"
     319msgstr ""
     320
     321#: includes/class-pis-posts-in-sidebar.php:1143
     322msgid "If you activate this option, sticky posts will be managed as other posts. Sticky post status will be automatically ignored if you set up an author or a taxonomy in this widget."
     323msgstr ""
     324
     325#: includes/class-pis-posts-in-sidebar.php:1154
     326#: includes/class-pis-posts-in-sidebar.php:1350
     327#: includes/class-pis-posts-in-sidebar.php:1485
     328#: includes/class-pis-posts-in-sidebar.php:1609
     329#: includes/class-pis-posts-in-sidebar.php:1755
     330#: includes/class-pis-posts-in-sidebar.php:1879
     331#: includes/class-pis-posts-in-sidebar.php:2050
     332#: includes/class-pis-posts-in-sidebar.php:2165
     333#: includes/class-pis-posts-in-sidebar.php:2280
     334#: includes/class-pis-posts-in-sidebar.php:2395
    302335msgid "Order posts by"
    303336msgstr ""
    304337
    305 #: includes/class-pis-posts-in-sidebar.php:1116
    306 #: includes/class-pis-posts-in-sidebar.php:1309
    307 #: includes/class-pis-posts-in-sidebar.php:1444
    308 #: includes/class-pis-posts-in-sidebar.php:1568
     338#: includes/class-pis-posts-in-sidebar.php:1165
     339#: includes/class-pis-posts-in-sidebar.php:1361
     340#: includes/class-pis-posts-in-sidebar.php:1496
     341#: includes/class-pis-posts-in-sidebar.php:1620
     342#: includes/class-pis-posts-in-sidebar.php:1766
     343#: includes/class-pis-posts-in-sidebar.php:1890
     344#: includes/class-pis-posts-in-sidebar.php:2061
     345#: includes/class-pis-posts-in-sidebar.php:2176
     346#: includes/class-pis-posts-in-sidebar.php:2291
     347#: includes/class-pis-posts-in-sidebar.php:2406
     348msgid "The order will be"
     349msgstr ""
     350
     351#: includes/class-pis-posts-in-sidebar.php:1176
     352#: includes/class-pis-posts-in-sidebar.php:1372
     353#: includes/class-pis-posts-in-sidebar.php:1507
     354#: includes/class-pis-posts-in-sidebar.php:1631
     355#: includes/class-pis-posts-in-sidebar.php:1777
     356#: includes/class-pis-posts-in-sidebar.php:1901
     357#: includes/class-pis-posts-in-sidebar.php:2023
     358#: includes/class-pis-posts-in-sidebar.php:2138
     359#: includes/class-pis-posts-in-sidebar.php:2253
     360#: includes/class-pis-posts-in-sidebar.php:2368
     361msgid "Skip this number of posts"
     362msgstr ""
     363
     364#. translators: %s is -1.
     365#: includes/class-pis-posts-in-sidebar.php:1183
     366msgid "This option will be ignored if you set %s in \"Get this number of posts\"."
     367msgstr ""
     368
     369#: includes/class-pis-posts-in-sidebar.php:1198
     370msgid "Change the query when on single posts"
     371msgstr ""
     372
     373#. translators: there is some code in placeholders.
     374#: includes/class-pis-posts-in-sidebar.php:1205
     375msgid "In this section you can change some parameters of the query when on single posts. %1$sActivate only one of these.%2$s"
     376msgstr ""
     377
     378#: includes/class-pis-posts-in-sidebar.php:1209
     379msgid "Get posts from current category"
     380msgstr ""
     381
     382#: includes/class-pis-posts-in-sidebar.php:1217
     383msgid "How this plugin chooses the main category of the post."
     384msgstr ""
     385
     386#: includes/class-pis-posts-in-sidebar.php:1223
     387msgid "When the option \"When on single posts, get posts from the current category\" is activated and the post has multiple categories, Posts in Sidebar will choose the category with the lowest initial letter, just as WordPress does when we get the list of the categories of a post."
     388msgstr ""
     389
     390#. translators: Opening and closing "strong" HTML tag.
     391#: includes/class-pis-posts-in-sidebar.php:1233
     392msgid "If you activate the option %1$s\"Use the main category as WordPress does for permalinks\"%2$s (formerly known here as \"Sort categories\"), Posts in Sidebar will get the category with the lowest category ID. This is the WordPress behaviour when it determines the permalink structure if the category is used in the permalink."
     393msgstr ""
     394
     395#. translators: Opening and closing "strong" HTML tag.
     396#: includes/class-pis-posts-in-sidebar.php:1246
     397msgid "If you use the Yoast SEO plugin and want to use the main category as defined with that plugin, activate the option %1$s\"Use the main category as defined in the Yoast SEO plugin\"%2$s."
     398msgstr ""
     399
     400#: includes/class-pis-posts-in-sidebar.php:1264
     401msgid "When on single posts, get posts from the current category"
     402msgstr ""
     403
     404#: includes/class-pis-posts-in-sidebar.php:1268
     405msgid "When activated, this option will ignore other parameters like tags, date, post formats, etc. If you don't want to ignore other parameters, activate the checkbox below, at the end of this panel."
     406msgstr ""
     407
     408#: includes/class-pis-posts-in-sidebar.php:1275
     409msgid "Use the main category as WordPress does for permalinks"
     410msgstr ""
     411
     412#: includes/class-pis-posts-in-sidebar.php:1285
     413msgid "Use the main category as defined in the Yoast SEO plugin"
     414msgstr ""
     415
     416#: includes/class-pis-posts-in-sidebar.php:1323
     417#: includes/class-pis-posts-in-sidebar.php:1458
     418#: includes/class-pis-posts-in-sidebar.php:1582
     419#: includes/class-pis-posts-in-sidebar.php:1729
     420#: includes/class-pis-posts-in-sidebar.php:1852
     421msgid "When on single posts, get this number of posts"
     422msgstr ""
     423
     424#: includes/class-pis-posts-in-sidebar.php:1336
     425#: includes/class-pis-posts-in-sidebar.php:1471
     426#: includes/class-pis-posts-in-sidebar.php:1595
     427#: includes/class-pis-posts-in-sidebar.php:1742
     428#: includes/class-pis-posts-in-sidebar.php:1865
     429msgid "When on single posts, use this widget title"
     430msgstr ""
     431
     432#. translators: %s is a placeholder for a taxonomy.
     433#: includes/class-pis-posts-in-sidebar.php:1341
     434#: includes/class-pis-posts-in-sidebar.php:2041
     435msgid "Posts under %s"
     436msgstr ""
     437
     438#. translators: there is some code in placeholders.
     439#: includes/class-pis-posts-in-sidebar.php:1343
     440#: includes/class-pis-posts-in-sidebar.php:2043
     441msgid "Use %s to display the name of the category."
     442msgstr ""
     443
     444#: includes/class-pis-posts-in-sidebar.php:1383
     445#: includes/class-pis-posts-in-sidebar.php:1518
     446#: includes/class-pis-posts-in-sidebar.php:1642
     447#: includes/class-pis-posts-in-sidebar.php:1788
     448#: includes/class-pis-posts-in-sidebar.php:1912
     449msgid "Post title matching"
     450msgstr ""
     451
     452#: includes/class-pis-posts-in-sidebar.php:1387
     453msgid "Show posts that match the main post title. WordPress will show posts under the same category of the main post and matching in a search for the title of the main post."
     454msgstr ""
     455
     456#: includes/class-pis-posts-in-sidebar.php:1397
     457msgid "Get posts from current tag"
     458msgstr ""
     459
     460#: includes/class-pis-posts-in-sidebar.php:1408
     461msgid "When on single posts, get posts from the current tag"
     462msgstr ""
     463
     464#: includes/class-pis-posts-in-sidebar.php:1412
     465msgid "When activated, this function will get posts from the tag of the post, ignoring other parameters like categories, date, post formats, etc. If the post has multiple tags, the plugin will use the first tag in the array of tags (the tag with the lowest initial letter). If you don't want to ignore other parameters, activate the checkbox below, at the end of this panel."
     466msgstr ""
     467
     468#: includes/class-pis-posts-in-sidebar.php:1443
     469msgid "Sort tags"
     470msgstr ""
     471
     472#: includes/class-pis-posts-in-sidebar.php:1447
     473msgid "When activated, this function will sort the tags of the main post by tag ID. In this way the plugin will get posts from the tag with the lowest ID."
     474msgstr ""
     475
     476#. translators: %s is the name of the tag.
     477#: includes/class-pis-posts-in-sidebar.php:1476
     478#: includes/class-pis-posts-in-sidebar.php:2156
     479msgid "Posts tagged with %s"
     480msgstr ""
     481
     482#. translators: there is some code in placeholders.
     483#: includes/class-pis-posts-in-sidebar.php:1478
     484#: includes/class-pis-posts-in-sidebar.php:2158
     485msgid "Use %s to display the name of the tag."
     486msgstr ""
     487
     488#: includes/class-pis-posts-in-sidebar.php:1522
     489msgid "Show posts that match the main post title. WordPress will show posts with the same tag of the main post and matching in a search for the title of the main post."
     490msgstr ""
     491
     492#: includes/class-pis-posts-in-sidebar.php:1532
     493msgid "Get posts from current author"
     494msgstr ""
     495
     496#: includes/class-pis-posts-in-sidebar.php:1543
     497msgid "When on single posts, get posts from the current author"
     498msgstr ""
     499
     500#: includes/class-pis-posts-in-sidebar.php:1547
     501msgid "When activated, this function will get posts by the author of the post, ignoring other parameters like categories, tags, date, post formats, etc. If you don't want to ignore other parameters, activate the checkbox below, at the end of this panel."
     502msgstr ""
     503
     504#. translators: %s is the name of the author.
     505#: includes/class-pis-posts-in-sidebar.php:1600
     506#: includes/class-pis-posts-in-sidebar.php:2271
     507msgid "Posts by %s"
     508msgstr ""
     509
     510#. translators: there is some code in placeholders.
     511#: includes/class-pis-posts-in-sidebar.php:1602
     512#: includes/class-pis-posts-in-sidebar.php:2273
     513msgid "Use %s to display the name of the author."
     514msgstr ""
     515
     516#: includes/class-pis-posts-in-sidebar.php:1646
     517msgid "Show posts that match the main post title. WordPress will show posts by the same author of the main post and matching in a search for the title of the main post."
     518msgstr ""
     519
     520#: includes/class-pis-posts-in-sidebar.php:1656
     521msgid "Get posts from taxonomy using custom field"
     522msgstr ""
     523
     524#: includes/class-pis-posts-in-sidebar.php:1667
     525msgid "When on single posts, get posts from this custom field"
     526msgstr ""
     527
     528#. translators: there is some code in placeholders.
     529#: includes/class-pis-posts-in-sidebar.php:1672
     530msgid "When activated, this function will get posts from the category defined by the user via custom field, ignoring other parameters like categories, tags, date, post formats, etc. %1$sRead more on this%2$s. If you don't want to ignore other parameters, activate the checkbox below, at the end of this panel."
     531msgstr ""
     532
     533#: includes/class-pis-posts-in-sidebar.php:1703
     534msgid "Get posts with this custom field key"
     535msgstr ""
     536
    309537#: includes/class-pis-posts-in-sidebar.php:1714
    310 #: includes/class-pis-posts-in-sidebar.php:1838
    311 #: includes/class-pis-posts-in-sidebar.php:2009
    312 #: includes/class-pis-posts-in-sidebar.php:2124
    313 #: includes/class-pis-posts-in-sidebar.php:2239
    314 #: includes/class-pis-posts-in-sidebar.php:2354
    315 msgid "The order will be"
    316 msgstr ""
    317 
    318 #: includes/class-pis-posts-in-sidebar.php:1127
    319 #: includes/class-pis-posts-in-sidebar.php:1320
    320 #: includes/class-pis-posts-in-sidebar.php:1455
    321 #: includes/class-pis-posts-in-sidebar.php:1579
    322 #: includes/class-pis-posts-in-sidebar.php:1725
    323 #: includes/class-pis-posts-in-sidebar.php:1849
    324 #: includes/class-pis-posts-in-sidebar.php:1971
    325 #: includes/class-pis-posts-in-sidebar.php:2086
    326 #: includes/class-pis-posts-in-sidebar.php:2201
    327 #: includes/class-pis-posts-in-sidebar.php:2316
    328 msgid "Skip this number of posts"
    329 msgstr ""
    330 
    331 #. translators: %s is -1.
    332 #: includes/class-pis-posts-in-sidebar.php:1134
    333 msgid "This option will be ignored if you set %s in \"Get this number of posts\"."
    334 msgstr ""
    335 
    336 #: includes/class-pis-posts-in-sidebar.php:1149
    337 msgid "Change the query when on single posts"
    338 msgstr ""
    339 
    340 #. translators: there is some code in placeholders.
    341 #: includes/class-pis-posts-in-sidebar.php:1156
    342 msgid "In this section you can change some parameters of the query when on single posts. %1$sActivate only one of these.%2$s"
    343 msgstr ""
    344 
    345 #: includes/class-pis-posts-in-sidebar.php:1160
    346 msgid "Get posts from current category"
    347 msgstr ""
    348 
    349 #: includes/class-pis-posts-in-sidebar.php:1168
    350 msgid "How this plugin chooses the main category of the post."
    351 msgstr ""
    352 
    353 #: includes/class-pis-posts-in-sidebar.php:1174
    354 msgid "When the option \"When on single posts, get posts from the current category\" is activated and the post has multiple categories, Posts in Sidebar will choose the category with the lowest initial letter, just as WordPress does when we get the list of the categories of a post."
    355 msgstr ""
    356 
    357 #. translators: Opening and closing "strong" HTML tag.
    358 #: includes/class-pis-posts-in-sidebar.php:1183
    359 msgid "If you activate the option %1$s\"Use the main category as WordPress does for permalinks\"%2$s (formerly known here as \"Sort categories\"), Posts in Sidebar will get the category with the lowest category ID. This is the WordPress behaviour when it determines the permalink structure if the category is used in the permalink."
    360 msgstr ""
    361 
    362 #. translators: Opening and closing "strong" HTML tag.
    363 #: includes/class-pis-posts-in-sidebar.php:1195
    364 msgid "If you use the Yoast SEO plugin and want to use the main category as defined with that plugin, activate the option %1$s\"Use the main category as defined in the Yoast SEO plugin\"%2$s."
    365 msgstr ""
    366 
    367 #: includes/class-pis-posts-in-sidebar.php:1212
    368 msgid "When on single posts, get posts from the current category"
    369 msgstr ""
    370 
    371 #: includes/class-pis-posts-in-sidebar.php:1216
    372 msgid "When activated, this option will ignore other parameters like tags, date, post formats, etc. If you don't want to ignore other parameters, activate the checkbox below, at the end of this panel."
    373 msgstr ""
    374 
    375 #: includes/class-pis-posts-in-sidebar.php:1223
    376 msgid "Use the main category as WordPress does for permalinks"
    377 msgstr ""
    378 
    379 #: includes/class-pis-posts-in-sidebar.php:1233
    380 msgid "Use the main category as defined in the Yoast SEO plugin"
    381 msgstr ""
    382 
    383 #: includes/class-pis-posts-in-sidebar.php:1271
    384 #: includes/class-pis-posts-in-sidebar.php:1406
    385 #: includes/class-pis-posts-in-sidebar.php:1530
    386 #: includes/class-pis-posts-in-sidebar.php:1677
    387 #: includes/class-pis-posts-in-sidebar.php:1800
    388 msgid "When on single posts, get this number of posts"
    389 msgstr ""
    390 
    391 #: includes/class-pis-posts-in-sidebar.php:1284
    392 #: includes/class-pis-posts-in-sidebar.php:1419
    393 #: includes/class-pis-posts-in-sidebar.php:1543
    394 #: includes/class-pis-posts-in-sidebar.php:1690
    395 #: includes/class-pis-posts-in-sidebar.php:1813
    396 msgid "When on single posts, use this widget title"
    397 msgstr ""
    398 
    399 #. translators: %s is a placeholder for a taxonomy.
    400 #: includes/class-pis-posts-in-sidebar.php:1289
    401 #: includes/class-pis-posts-in-sidebar.php:1989
    402 msgid "Posts under %s"
    403 msgstr ""
    404 
    405 #. translators: there is some code in placeholders.
    406 #: includes/class-pis-posts-in-sidebar.php:1291
    407 #: includes/class-pis-posts-in-sidebar.php:1991
    408 msgid "Use %s to display the name of the category."
    409 msgstr ""
    410 
    411 #: includes/class-pis-posts-in-sidebar.php:1331
    412 #: includes/class-pis-posts-in-sidebar.php:1466
    413 #: includes/class-pis-posts-in-sidebar.php:1590
    414 #: includes/class-pis-posts-in-sidebar.php:1736
    415 #: includes/class-pis-posts-in-sidebar.php:1860
    416 msgid "Post title matching"
    417 msgstr ""
    418 
    419 #: includes/class-pis-posts-in-sidebar.php:1335
    420 msgid "Show posts that match the main post title. WordPress will show posts under the same category of the main post and matching in a search for the title of the main post."
    421 msgstr ""
    422 
    423 #: includes/class-pis-posts-in-sidebar.php:1345
    424 msgid "Get posts from current tag"
    425 msgstr ""
    426 
    427 #: includes/class-pis-posts-in-sidebar.php:1356
    428 msgid "When on single posts, get posts from the current tag"
    429 msgstr ""
    430 
    431 #: includes/class-pis-posts-in-sidebar.php:1360
    432 msgid "When activated, this function will get posts from the tag of the post, ignoring other parameters like categories, date, post formats, etc. If the post has multiple tags, the plugin will use the first tag in the array of tags (the tag with the lowest initial letter). If you don't want to ignore other parameters, activate the checkbox below, at the end of this panel."
    433 msgstr ""
    434 
    435 #: includes/class-pis-posts-in-sidebar.php:1391
    436 msgid "Sort tags"
    437 msgstr ""
    438 
    439 #: includes/class-pis-posts-in-sidebar.php:1395
    440 msgid "When activated, this function will sort the tags of the main post by tag ID. In this way the plugin will get posts from the tag with the lowest ID."
    441 msgstr ""
    442 
    443 #. translators: %s is the name of the tag.
    444 #: includes/class-pis-posts-in-sidebar.php:1424
    445 #: includes/class-pis-posts-in-sidebar.php:2104
    446 msgid "Posts tagged with %s"
    447 msgstr ""
    448 
    449 #. translators: there is some code in placeholders.
    450 #: includes/class-pis-posts-in-sidebar.php:1426
    451 #: includes/class-pis-posts-in-sidebar.php:2106
    452 msgid "Use %s to display the name of the tag."
    453 msgstr ""
    454 
    455 #: includes/class-pis-posts-in-sidebar.php:1470
    456 msgid "Show posts that match the main post title. WordPress will show posts with the same tag of the main post and matching in a search for the title of the main post."
    457 msgstr ""
    458 
    459 #: includes/class-pis-posts-in-sidebar.php:1480
    460 msgid "Get posts from current author"
    461 msgstr ""
    462 
    463 #: includes/class-pis-posts-in-sidebar.php:1491
    464 msgid "When on single posts, get posts from the current author"
    465 msgstr ""
    466 
    467 #: includes/class-pis-posts-in-sidebar.php:1495
    468 msgid "When activated, this function will get posts by the author of the post, ignoring other parameters like categories, tags, date, post formats, etc. If you don't want to ignore other parameters, activate the checkbox below, at the end of this panel."
    469 msgstr ""
    470 
    471 #. translators: %s is the name of the author.
    472 #: includes/class-pis-posts-in-sidebar.php:1548
    473 #: includes/class-pis-posts-in-sidebar.php:2219
    474 msgid "Posts by %s"
    475 msgstr ""
    476 
    477 #. translators: there is some code in placeholders.
    478 #: includes/class-pis-posts-in-sidebar.php:1550
    479 #: includes/class-pis-posts-in-sidebar.php:2221
    480 msgid "Use %s to display the name of the author."
    481 msgstr ""
    482 
    483 #: includes/class-pis-posts-in-sidebar.php:1594
    484 msgid "Show posts that match the main post title. WordPress will show posts by the same author of the main post and matching in a search for the title of the main post."
    485 msgstr ""
    486 
    487 #: includes/class-pis-posts-in-sidebar.php:1604
    488 msgid "Get posts from taxonomy using custom field"
    489 msgstr ""
    490 
    491 #: includes/class-pis-posts-in-sidebar.php:1615
    492 msgid "When on single posts, get posts from this custom field"
    493 msgstr ""
    494 
    495 #. translators: there is some code in placeholders.
    496 #: includes/class-pis-posts-in-sidebar.php:1620
    497 msgid "When activated, this function will get posts from the category defined by the user via custom field, ignoring other parameters like categories, tags, date, post formats, etc. %1$sRead more on this%2$s. If you don't want to ignore other parameters, activate the checkbox below, at the end of this panel."
    498 msgstr ""
    499 
    500 #: includes/class-pis-posts-in-sidebar.php:1651
    501 msgid "Get posts with this custom field key"
    502 msgstr ""
    503 
    504 #: includes/class-pis-posts-in-sidebar.php:1662
    505538msgid "Type of the taxonomy"
    506539msgstr ""
    507540
    508 #: includes/class-pis-posts-in-sidebar.php:1694
     541#: includes/class-pis-posts-in-sidebar.php:1746
    509542#: includes/pis-functions-general.php:35
    510543msgid "Posts"
     
    512545
    513546#. translators: %s is a `%s`.
    514 #: includes/class-pis-posts-in-sidebar.php:1696
     547#: includes/class-pis-posts-in-sidebar.php:1748
    515548msgid "Use %s to display the name of the taxonomy."
    516549msgstr ""
    517550
    518 #: includes/class-pis-posts-in-sidebar.php:1740
     551#: includes/class-pis-posts-in-sidebar.php:1792
    519552msgid "Show posts that match the main post title. WordPress will show posts with the same custom field of the main post and matching in a search for the title of the main post."
    520553msgstr ""
    521554
    522 #: includes/class-pis-posts-in-sidebar.php:1750
     555#: includes/class-pis-posts-in-sidebar.php:1802
    523556msgid "Get posts from current post format"
    524557msgstr ""
    525558
    526 #: includes/class-pis-posts-in-sidebar.php:1761
     559#: includes/class-pis-posts-in-sidebar.php:1813
    527560msgid "When on single posts, get posts with the current post format"
    528561msgstr ""
    529562
    530 #: includes/class-pis-posts-in-sidebar.php:1765
     563#: includes/class-pis-posts-in-sidebar.php:1817
    531564msgid "When activated, this function will get posts with the same post format of the post, ignoring other parameters like categories, tags, date, author, etc. If you don't want to ignore other parameters, activate the checkbox below, at the end of this panel."
    532565msgstr ""
    533566
    534567#. translators: %s is the name of a post format.
    535 #: includes/class-pis-posts-in-sidebar.php:1818
    536 #: includes/class-pis-posts-in-sidebar.php:2334
     568#: includes/class-pis-posts-in-sidebar.php:1870
     569#: includes/class-pis-posts-in-sidebar.php:2386
    537570msgid "Posts with %s post format"
    538571msgstr ""
    539572
    540573#. translators: %s is a literal `%s`.
    541 #: includes/class-pis-posts-in-sidebar.php:1820
    542 #: includes/class-pis-posts-in-sidebar.php:2336
     574#: includes/class-pis-posts-in-sidebar.php:1872
     575#: includes/class-pis-posts-in-sidebar.php:2388
    543576msgid "Use %s to display the name of the post format."
    544577msgstr ""
    545578
    546 #: includes/class-pis-posts-in-sidebar.php:1864
     579#: includes/class-pis-posts-in-sidebar.php:1916
    547580msgid "Show posts that match the main post title. WordPress will show posts with the same post format of the main post and matching in a search for the title of the main post."
    548581msgstr ""
    549582
    550 #: includes/class-pis-posts-in-sidebar.php:1879
    551 #: includes/class-pis-posts-in-sidebar.php:2373
    552 #: includes/class-pis-posts-in-sidebar.php:3311
     583#: includes/class-pis-posts-in-sidebar.php:1931
     584#: includes/class-pis-posts-in-sidebar.php:2425
     585#: includes/class-pis-posts-in-sidebar.php:3363
    553586msgid "Do not ignore other parameters"
    554587msgstr ""
    555588
    556 #: includes/class-pis-posts-in-sidebar.php:1883
    557 #: includes/class-pis-posts-in-sidebar.php:2377
     589#: includes/class-pis-posts-in-sidebar.php:1935
     590#: includes/class-pis-posts-in-sidebar.php:2429
    558591msgid "By default, when you activate one of the options above to change the query on single posts, the plugin will deactivate other parameters like categories, tags, date, author, and so on. To leave in action these parameters, activate this option."
    559592msgstr ""
    560593
    561 #: includes/class-pis-posts-in-sidebar.php:1897
     594#: includes/class-pis-posts-in-sidebar.php:1949
    562595msgid "Change the query when on archive page"
    563596msgstr ""
    564597
    565598#. translators: there is some code in placeholders.
    566 #: includes/class-pis-posts-in-sidebar.php:1904
     599#: includes/class-pis-posts-in-sidebar.php:1956
    567600msgid "In this section you can change some parameters of the query when on archive pages. %1$sYou can activate them all together.%2$s"
    568601msgstr ""
    569602
    570 #: includes/class-pis-posts-in-sidebar.php:1908
     603#: includes/class-pis-posts-in-sidebar.php:1960
    571604msgid "Get posts from current category archive page"
    572605msgstr ""
    573606
    574 #: includes/class-pis-posts-in-sidebar.php:1919
     607#: includes/class-pis-posts-in-sidebar.php:1971
    575608msgid "When on archive pages, get posts from the current category archive page"
    576609msgstr ""
    577610
    578 #: includes/class-pis-posts-in-sidebar.php:1923
     611#: includes/class-pis-posts-in-sidebar.php:1975
    579612msgid "When activated, this function will get posts from the archive page of the current category, ignoring other parameters like tags, date, post formats, etc. If you don't want to ignore other parameters, activate the checkbox below, at the end of this panel."
    580613msgstr ""
    581614
    582 #: includes/class-pis-posts-in-sidebar.php:1958
    583 #: includes/class-pis-posts-in-sidebar.php:2073
    584 #: includes/class-pis-posts-in-sidebar.php:2188
    585 #: includes/class-pis-posts-in-sidebar.php:2303
     615#: includes/class-pis-posts-in-sidebar.php:2010
     616#: includes/class-pis-posts-in-sidebar.php:2125
     617#: includes/class-pis-posts-in-sidebar.php:2240
     618#: includes/class-pis-posts-in-sidebar.php:2355
    586619msgid "When on archive pages, get this number of posts"
    587620msgstr ""
    588621
    589622#. translators: %s is -1.
    590 #: includes/class-pis-posts-in-sidebar.php:1977
    591 #: includes/class-pis-posts-in-sidebar.php:2092
    592 #: includes/class-pis-posts-in-sidebar.php:2207
    593 #: includes/class-pis-posts-in-sidebar.php:2322
     623#: includes/class-pis-posts-in-sidebar.php:2029
     624#: includes/class-pis-posts-in-sidebar.php:2144
     625#: includes/class-pis-posts-in-sidebar.php:2259
     626#: includes/class-pis-posts-in-sidebar.php:2374
    594627msgid "If you entered %s in the previous field, this option will be ignored."
    595628msgstr ""
    596629
    597 #: includes/class-pis-posts-in-sidebar.php:1984
    598 #: includes/class-pis-posts-in-sidebar.php:2099
    599 #: includes/class-pis-posts-in-sidebar.php:2214
    600 #: includes/class-pis-posts-in-sidebar.php:2329
     630#: includes/class-pis-posts-in-sidebar.php:2036
     631#: includes/class-pis-posts-in-sidebar.php:2151
     632#: includes/class-pis-posts-in-sidebar.php:2266
     633#: includes/class-pis-posts-in-sidebar.php:2381
    601634msgid "When on archive pages, use this widget title"
    602635msgstr ""
    603636
    604 #: includes/class-pis-posts-in-sidebar.php:2023
     637#: includes/class-pis-posts-in-sidebar.php:2075
    605638msgid "Get posts from current tag archive page"
    606639msgstr ""
    607640
    608 #: includes/class-pis-posts-in-sidebar.php:2034
     641#: includes/class-pis-posts-in-sidebar.php:2086
    609642msgid "When on archive pages, get posts from the current tag archive page"
    610643msgstr ""
    611644
    612 #: includes/class-pis-posts-in-sidebar.php:2038
     645#: includes/class-pis-posts-in-sidebar.php:2090
    613646msgid "When activated, this function will get posts from the archive page of the current tag, ignoring other parameters like categories, date, post formats, etc. If you don't want to ignore other parameters, activate the checkbox below, at the end of this panel."
    614647msgstr ""
    615648
    616 #: includes/class-pis-posts-in-sidebar.php:2138
     649#: includes/class-pis-posts-in-sidebar.php:2190
    617650msgid "Get posts from current author archive page"
    618651msgstr ""
    619652
    620 #: includes/class-pis-posts-in-sidebar.php:2149
     653#: includes/class-pis-posts-in-sidebar.php:2201
    621654msgid "When on archive pages, get posts from the current author archive page"
    622655msgstr ""
    623656
    624 #: includes/class-pis-posts-in-sidebar.php:2153
     657#: includes/class-pis-posts-in-sidebar.php:2205
    625658msgid "When activated, this function will get posts from the archive page of the current author, ignoring other parameters like categories, tags, date, post formats, etc. If you don't want to ignore other parameters, activate the checkbox below, at the end of this panel."
    626659msgstr ""
    627660
    628 #: includes/class-pis-posts-in-sidebar.php:2253
     661#: includes/class-pis-posts-in-sidebar.php:2305
    629662msgid "Get posts from current post format archive page"
    630663msgstr ""
    631664
    632 #: includes/class-pis-posts-in-sidebar.php:2264
     665#: includes/class-pis-posts-in-sidebar.php:2316
    633666msgid "When on archive pages, get posts from the current post format archive page"
    634667msgstr ""
    635668
    636 #: includes/class-pis-posts-in-sidebar.php:2268
     669#: includes/class-pis-posts-in-sidebar.php:2320
    637670msgid "When activated, this function will get posts from the archive page of the current post format, ignoring other parameters like categories, tags, date, author, etc. If you don't want to ignore other parameters, activate the checkbox below, at the end of this panel."
    638671msgstr ""
    639672
    640 #: includes/class-pis-posts-in-sidebar.php:2391
     673#: includes/class-pis-posts-in-sidebar.php:2443
    641674msgid "Custom taxonomy query"
    642675msgstr ""
    643676
    644 #: includes/class-pis-posts-in-sidebar.php:2395
     677#: includes/class-pis-posts-in-sidebar.php:2447
    645678msgid "This section lets you retrieve posts from any taxonomy (category, tags, and custom taxonomies). If you want to use only one taxonomy, use the \"Taxonomy A1\" field. If you have to put in relation two taxonomies (e.g., display posts that are in the \"quotes\" category but not in the \"wisdom\" tag), then use also the \"Taxonomy B1\" field. If you have to put in relation more taxonomies, start using also the \"A2\" and \"B2\" fields (e.g., display posts that are in the \"quotes\" category [A1] OR both have the \"Quote\" post format [B1] AND are in the \"wisdom\" category [B2])."
    646679msgstr ""
    647680
    648 #: includes/class-pis-posts-in-sidebar.php:2412
    649 #: includes/class-pis-posts-in-sidebar.php:2984
     681#: includes/class-pis-posts-in-sidebar.php:2464
     682#: includes/class-pis-posts-in-sidebar.php:3036
    650683msgid "Relation between Column A and Column B"
    651684msgstr ""
    652685
    653 #: includes/class-pis-posts-in-sidebar.php:2417
     686#: includes/class-pis-posts-in-sidebar.php:2469
    654687msgid "The logical relationship between each inner taxonomy array when there is more than one. Do not use with a single inner taxonomy array."
    655688msgstr ""
    656689
    657 #: includes/class-pis-posts-in-sidebar.php:2429
    658 #: includes/class-pis-posts-in-sidebar.php:3001
     690#: includes/class-pis-posts-in-sidebar.php:2481
     691#: includes/class-pis-posts-in-sidebar.php:3053
    659692msgid "Column A"
    660693msgstr ""
    661694
    662 #: includes/class-pis-posts-in-sidebar.php:2434
     695#: includes/class-pis-posts-in-sidebar.php:2486
    663696msgid "Taxonomy A1"
    664697msgstr ""
    665698
    666 #: includes/class-pis-posts-in-sidebar.php:2438
     699#: includes/class-pis-posts-in-sidebar.php:2490
    667700msgid "category"
    668701msgstr ""
    669702
    670 #: includes/class-pis-posts-in-sidebar.php:2439
    671 #: includes/class-pis-posts-in-sidebar.php:2502
    672 #: includes/class-pis-posts-in-sidebar.php:2556
    673 #: includes/class-pis-posts-in-sidebar.php:2619
     703#: includes/class-pis-posts-in-sidebar.php:2491
     704#: includes/class-pis-posts-in-sidebar.php:2554
     705#: includes/class-pis-posts-in-sidebar.php:2608
     706#: includes/class-pis-posts-in-sidebar.php:2671
    674707msgid "Enter the slug of the taxonomy."
    675708msgstr ""
    676709
    677 #: includes/class-pis-posts-in-sidebar.php:2446
    678 #: includes/class-pis-posts-in-sidebar.php:2509
    679 #: includes/class-pis-posts-in-sidebar.php:2563
    680 #: includes/class-pis-posts-in-sidebar.php:2626
     710#: includes/class-pis-posts-in-sidebar.php:2498
     711#: includes/class-pis-posts-in-sidebar.php:2561
     712#: includes/class-pis-posts-in-sidebar.php:2615
     713#: includes/class-pis-posts-in-sidebar.php:2678
    681714msgid "Field"
    682715msgstr ""
    683716
    684 #: includes/class-pis-posts-in-sidebar.php:2451
     717#: includes/class-pis-posts-in-sidebar.php:2503
     718#: includes/class-pis-posts-in-sidebar.php:2566
     719#: includes/class-pis-posts-in-sidebar.php:2620
     720#: includes/class-pis-posts-in-sidebar.php:2683
     721msgid "Select taxonomy term by this field."
     722msgstr ""
     723
     724#: includes/class-pis-posts-in-sidebar.php:2510
     725#: includes/class-pis-posts-in-sidebar.php:2573
     726#: includes/class-pis-posts-in-sidebar.php:2627
     727#: includes/class-pis-posts-in-sidebar.php:2690
     728msgid "Terms"
     729msgstr ""
     730
    685731#: includes/class-pis-posts-in-sidebar.php:2514
    686 #: includes/class-pis-posts-in-sidebar.php:2568
     732msgid "gnu-linux,kde"
     733msgstr ""
     734
     735#: includes/class-pis-posts-in-sidebar.php:2515
     736#: includes/class-pis-posts-in-sidebar.php:2578
     737#: includes/class-pis-posts-in-sidebar.php:2632
     738#: includes/class-pis-posts-in-sidebar.php:2695
     739msgid "Enter terms, comma separated."
     740msgstr ""
     741
     742#: includes/class-pis-posts-in-sidebar.php:2522
     743#: includes/class-pis-posts-in-sidebar.php:2585
     744#: includes/class-pis-posts-in-sidebar.php:2639
     745#: includes/class-pis-posts-in-sidebar.php:2702
     746#: includes/class-pis-posts-in-sidebar.php:3083
     747#: includes/class-pis-posts-in-sidebar.php:3148
     748#: includes/class-pis-posts-in-sidebar.php:3203
     749#: includes/class-pis-posts-in-sidebar.php:3267
     750msgid "Operator"
     751msgstr ""
     752
     753#: includes/class-pis-posts-in-sidebar.php:2527
     754#: includes/class-pis-posts-in-sidebar.php:2590
     755#: includes/class-pis-posts-in-sidebar.php:2644
     756#: includes/class-pis-posts-in-sidebar.php:2707
     757msgid "Operator to test for terms."
     758msgstr ""
     759
     760#: includes/class-pis-posts-in-sidebar.php:2536
     761msgid "Relation between A1 and A2 taxonomies"
     762msgstr ""
     763
     764#: includes/class-pis-posts-in-sidebar.php:2549
     765msgid "Taxonomy A2"
     766msgstr ""
     767
     768#: includes/class-pis-posts-in-sidebar.php:2553
     769msgid "movie-genre"
     770msgstr ""
     771
     772#: includes/class-pis-posts-in-sidebar.php:2577
     773msgid "action,sci-fi"
     774msgstr ""
     775
     776#: includes/class-pis-posts-in-sidebar.php:2598
     777#: includes/class-pis-posts-in-sidebar.php:3173
     778msgid "Column B"
     779msgstr ""
     780
     781#: includes/class-pis-posts-in-sidebar.php:2603
     782msgid "Taxonomy B1"
     783msgstr ""
     784
     785#: includes/class-pis-posts-in-sidebar.php:2607
     786msgid "post_tag"
     787msgstr ""
     788
    687789#: includes/class-pis-posts-in-sidebar.php:2631
    688 msgid "Select taxonomy term by this field."
    689 msgstr ""
    690 
    691 #: includes/class-pis-posts-in-sidebar.php:2458
    692 #: includes/class-pis-posts-in-sidebar.php:2521
    693 #: includes/class-pis-posts-in-sidebar.php:2575
    694 #: includes/class-pis-posts-in-sidebar.php:2638
    695 msgid "Terms"
    696 msgstr ""
    697 
    698 #: includes/class-pis-posts-in-sidebar.php:2462
    699 msgid "gnu-linux,kde"
    700 msgstr ""
    701 
    702 #: includes/class-pis-posts-in-sidebar.php:2463
    703 #: includes/class-pis-posts-in-sidebar.php:2526
    704 #: includes/class-pis-posts-in-sidebar.php:2580
    705 #: includes/class-pis-posts-in-sidebar.php:2643
    706 msgid "Enter terms, comma separated."
    707 msgstr ""
    708 
    709 #: includes/class-pis-posts-in-sidebar.php:2470
    710 #: includes/class-pis-posts-in-sidebar.php:2533
    711 #: includes/class-pis-posts-in-sidebar.php:2587
    712 #: includes/class-pis-posts-in-sidebar.php:2650
    713 #: includes/class-pis-posts-in-sidebar.php:3031
    714 #: includes/class-pis-posts-in-sidebar.php:3096
    715 #: includes/class-pis-posts-in-sidebar.php:3151
     790msgid "system,apache"
     791msgstr ""
     792
     793#: includes/class-pis-posts-in-sidebar.php:2653
     794msgid "Relation between B1 and B2 taxonomies"
     795msgstr ""
     796
     797#: includes/class-pis-posts-in-sidebar.php:2666
     798msgid "Taxonomy B2"
     799msgstr ""
     800
     801#: includes/class-pis-posts-in-sidebar.php:2670
     802msgid "post_format"
     803msgstr ""
     804
     805#: includes/class-pis-posts-in-sidebar.php:2694
     806msgid "post-format-quote"
     807msgstr ""
     808
     809#: includes/class-pis-posts-in-sidebar.php:2722
     810msgid "Date query"
     811msgstr ""
     812
     813#: includes/class-pis-posts-in-sidebar.php:2726
     814msgid "In this section you can define the period within posts have been published. You can get posts published in a certain period or after/before a date or in a dynamic period (based on current date)."
     815msgstr ""
     816
     817#: includes/class-pis-posts-in-sidebar.php:2730
     818msgid "Get posts published in a certain period"
     819msgstr ""
     820
     821#: includes/class-pis-posts-in-sidebar.php:2732
     822msgid "Define the period within posts are published. For example, you can pick up the posts published on 15 January, 2017 at 10."
     823msgstr ""
     824
     825#: includes/class-pis-posts-in-sidebar.php:2738
     826#: includes/class-pis-posts-in-sidebar.php:2837
     827#: includes/class-pis-posts-in-sidebar.php:2878
     828msgid "Year"
     829msgstr ""
     830
     831#: includes/class-pis-posts-in-sidebar.php:2743
     832msgid "4 digits year (e.g. 2015)."
     833msgstr ""
     834
     835#: includes/class-pis-posts-in-sidebar.php:2749
     836#: includes/class-pis-posts-in-sidebar.php:2848
     837#: includes/class-pis-posts-in-sidebar.php:2889
     838msgid "Month"
     839msgstr ""
     840
     841#: includes/class-pis-posts-in-sidebar.php:2754
     842msgid "Month number (from 1 to 12)."
     843msgstr ""
     844
     845#: includes/class-pis-posts-in-sidebar.php:2760
     846msgid "Week"
     847msgstr ""
     848
     849#: includes/class-pis-posts-in-sidebar.php:2765
     850msgid "Week of the year (from 0 to 53)."
     851msgstr ""
     852
     853#: includes/class-pis-posts-in-sidebar.php:2771
     854#: includes/class-pis-posts-in-sidebar.php:2859
     855#: includes/class-pis-posts-in-sidebar.php:2900
     856msgid "Day"
     857msgstr ""
     858
     859#: includes/class-pis-posts-in-sidebar.php:2776
     860msgid "Day of the month (from 1 to 31)."
     861msgstr ""
     862
     863#: includes/class-pis-posts-in-sidebar.php:2786
     864msgid "Hour"
     865msgstr ""
     866
     867#: includes/class-pis-posts-in-sidebar.php:2791
     868msgid "Hour (from 0 to 23)."
     869msgstr ""
     870
     871#: includes/class-pis-posts-in-sidebar.php:2797
     872msgid "Minute"
     873msgstr ""
     874
     875#: includes/class-pis-posts-in-sidebar.php:2802
     876msgid "Minute (from 0 to 59)."
     877msgstr ""
     878
     879#: includes/class-pis-posts-in-sidebar.php:2808
     880msgid "Second"
     881msgstr ""
     882
     883#: includes/class-pis-posts-in-sidebar.php:2813
     884msgid "Second (from 0 to 59)."
     885msgstr ""
     886
     887#: includes/class-pis-posts-in-sidebar.php:2825
     888msgid "Get posts published after/before a date"
     889msgstr ""
     890
     891#: includes/class-pis-posts-in-sidebar.php:2827
     892msgid "Here you can get posts published after/before a certain date. You can also use the two options together, for example, to get posts published between 2017-01-15 and 2017-01-31."
     893msgstr ""
     894
     895#: includes/class-pis-posts-in-sidebar.php:2831
     896msgid "Get posts published after this date"
     897msgstr ""
     898
     899#: includes/class-pis-posts-in-sidebar.php:2833
     900msgid "Get posts published after a certain date."
     901msgstr ""
     902
     903#: includes/class-pis-posts-in-sidebar.php:2842
     904#: includes/class-pis-posts-in-sidebar.php:2883
     905msgid "Accepts any four-digit year."
     906msgstr ""
     907
     908#: includes/class-pis-posts-in-sidebar.php:2853
     909#: includes/class-pis-posts-in-sidebar.php:2894
     910msgid "The month of the year. Accepts numbers 1-12."
     911msgstr ""
     912
     913#: includes/class-pis-posts-in-sidebar.php:2864
     914#: includes/class-pis-posts-in-sidebar.php:2905
     915msgid "The day of the month. Accepts numbers 1-31."
     916msgstr ""
     917
     918#: includes/class-pis-posts-in-sidebar.php:2872
     919msgid "Get posts published before this date"
     920msgstr ""
     921
     922#: includes/class-pis-posts-in-sidebar.php:2874
     923msgid "Get posts published before a certain date."
     924msgstr ""
     925
     926#: includes/class-pis-posts-in-sidebar.php:2915
     927msgid "Other options for after/before"
     928msgstr ""
     929
     930#: includes/class-pis-posts-in-sidebar.php:2921
     931msgid "Inclusive"
     932msgstr ""
     933
     934#: includes/class-pis-posts-in-sidebar.php:2925
     935msgid "For after/before, whether exact value should be matched or not"
     936msgstr ""
     937
     938#: includes/class-pis-posts-in-sidebar.php:2935
     939msgid "Column"
     940msgstr ""
     941
     942#: includes/class-pis-posts-in-sidebar.php:2940
     943msgid "Column to query against."
     944msgstr ""
     945
     946#: includes/class-pis-posts-in-sidebar.php:2952
     947msgid "Dynamic date query"
     948msgstr ""
     949
     950#: includes/class-pis-posts-in-sidebar.php:2954
     951msgid "Define the amount of time from now within the posts have been published. For example, you can get posts published 1 month ago or 2 years ago, and so on. An expression like \"1 month ago\" means: get posts that have been published in the last month, and not only published exactly one month ago."
     952msgstr ""
     953
     954#: includes/class-pis-posts-in-sidebar.php:2956
     955msgid "Also, please note that these options will override the corresponding options under \"Get posts published after/before a date\"."
     956msgstr ""
     957
     958#: includes/class-pis-posts-in-sidebar.php:2960
     959msgid "Get posts published after this amount of time"
     960msgstr ""
     961
     962#: includes/class-pis-posts-in-sidebar.php:2965
     963#: includes/class-pis-posts-in-sidebar.php:2993
     964msgid "Amount of time"
     965msgstr ""
     966
     967#: includes/class-pis-posts-in-sidebar.php:2976
     968#: includes/class-pis-posts-in-sidebar.php:3004
     969msgid "Type of date"
     970msgstr ""
     971
     972#: includes/class-pis-posts-in-sidebar.php:2988
     973msgid "Get posts published before this amount of time"
     974msgstr ""
     975
     976#: includes/class-pis-posts-in-sidebar.php:3023
     977msgid "Custom fields query"
     978msgstr ""
     979
     980#: includes/class-pis-posts-in-sidebar.php:3027
     981msgid "This section lets you retrieve posts from any custom field. If you want to use only one custom field, use the \"Custom field key A1\" field. If you have to put in relation two custom fields (e.g., display posts that have the meta key \"color\" and value \"red\" but meta key \"price\" with values between 10 and 20), then use also the \"Custom field key B1\" field. If you have to put in relation more custom fields, start using also the \"A2\" and \"B2\" fields."
     982msgstr ""
     983
     984#: includes/class-pis-posts-in-sidebar.php:3041
     985msgid "The logical relationship between each inner meta_query array when there is more than one."
     986msgstr ""
     987
     988#: includes/class-pis-posts-in-sidebar.php:3058
     989msgid "Custom field key A1"
     990msgstr ""
     991
     992#: includes/class-pis-posts-in-sidebar.php:3062
     993#: includes/class-pis-posts-in-sidebar.php:3127
     994#: includes/class-pis-posts-in-sidebar.php:3182
     995#: includes/class-pis-posts-in-sidebar.php:3246
     996msgid "color"
     997msgstr ""
     998
     999#: includes/class-pis-posts-in-sidebar.php:3063
     1000#: includes/class-pis-posts-in-sidebar.php:3128
     1001#: includes/class-pis-posts-in-sidebar.php:3183
     1002#: includes/class-pis-posts-in-sidebar.php:3247
     1003msgid "Enter the custom field key."
     1004msgstr ""
     1005
     1006#: includes/class-pis-posts-in-sidebar.php:3070
     1007#: includes/class-pis-posts-in-sidebar.php:3135
     1008#: includes/class-pis-posts-in-sidebar.php:3190
     1009#: includes/class-pis-posts-in-sidebar.php:3254
     1010msgid "Custom field value"
     1011msgstr ""
     1012
     1013#: includes/class-pis-posts-in-sidebar.php:3074
     1014#: includes/class-pis-posts-in-sidebar.php:3139
     1015#: includes/class-pis-posts-in-sidebar.php:3194
     1016#: includes/class-pis-posts-in-sidebar.php:3258
     1017msgid "blue, orange, red"
     1018msgstr ""
     1019
     1020#. translators: the placeholder contains some code.
     1021#: includes/class-pis-posts-in-sidebar.php:3076
     1022#: includes/class-pis-posts-in-sidebar.php:3141
     1023#: includes/class-pis-posts-in-sidebar.php:3196
     1024#: includes/class-pis-posts-in-sidebar.php:3260
     1025msgid "Enter one or more values of the custom field, comma separated. If you enter %s, this will be replaced with the current date and time."
     1026msgstr ""
     1027
     1028#: includes/class-pis-posts-in-sidebar.php:3088
     1029#: includes/class-pis-posts-in-sidebar.php:3153
     1030#: includes/class-pis-posts-in-sidebar.php:3208
     1031#: includes/class-pis-posts-in-sidebar.php:3272
     1032msgid "Operator to test for values."
     1033msgstr ""
     1034
     1035#: includes/class-pis-posts-in-sidebar.php:3095
     1036#: includes/class-pis-posts-in-sidebar.php:3160
    7161037#: includes/class-pis-posts-in-sidebar.php:3215
    717 msgid "Operator"
    718 msgstr ""
    719 
    720 #: includes/class-pis-posts-in-sidebar.php:2475
    721 #: includes/class-pis-posts-in-sidebar.php:2538
    722 #: includes/class-pis-posts-in-sidebar.php:2592
    723 #: includes/class-pis-posts-in-sidebar.php:2655
    724 msgid "Operator to test for terms."
    725 msgstr ""
    726 
    727 #: includes/class-pis-posts-in-sidebar.php:2484
    728 msgid "Relation between A1 and A2 taxonomies"
    729 msgstr ""
    730 
    731 #: includes/class-pis-posts-in-sidebar.php:2497
    732 msgid "Taxonomy A2"
    733 msgstr ""
    734 
    735 #: includes/class-pis-posts-in-sidebar.php:2501
    736 msgid "movie-genre"
    737 msgstr ""
    738 
    739 #: includes/class-pis-posts-in-sidebar.php:2525
    740 msgid "action,sci-fi"
    741 msgstr ""
    742 
    743 #: includes/class-pis-posts-in-sidebar.php:2546
    744 #: includes/class-pis-posts-in-sidebar.php:3121
    745 msgid "Column B"
    746 msgstr ""
    747 
    748 #: includes/class-pis-posts-in-sidebar.php:2551
    749 msgid "Taxonomy B1"
    750 msgstr ""
    751 
    752 #: includes/class-pis-posts-in-sidebar.php:2555
    753 msgid "post_tag"
    754 msgstr ""
    755 
    756 #: includes/class-pis-posts-in-sidebar.php:2579
    757 msgid "system,apache"
    758 msgstr ""
    759 
    760 #: includes/class-pis-posts-in-sidebar.php:2601
    761 msgid "Relation between B1 and B2 taxonomies"
    762 msgstr ""
    763 
    764 #: includes/class-pis-posts-in-sidebar.php:2614
    765 msgid "Taxonomy B2"
    766 msgstr ""
    767 
    768 #: includes/class-pis-posts-in-sidebar.php:2618
    769 msgid "post_format"
    770 msgstr ""
    771 
    772 #: includes/class-pis-posts-in-sidebar.php:2642
    773 msgid "post-format-quote"
    774 msgstr ""
    775 
    776 #: includes/class-pis-posts-in-sidebar.php:2670
    777 msgid "Date query"
    778 msgstr ""
    779 
    780 #: includes/class-pis-posts-in-sidebar.php:2674
    781 msgid "In this section you can define the period within posts have been published. You can get posts published in a certain period or after/before a date or in a dynamic period (based on current date)."
    782 msgstr ""
    783 
    784 #: includes/class-pis-posts-in-sidebar.php:2678
    785 msgid "Get posts published in a certain period"
    786 msgstr ""
    787 
    788 #: includes/class-pis-posts-in-sidebar.php:2680
    789 msgid "Define the period within posts are published. For example, you can pick up the posts published on 15 January, 2017 at 10."
    790 msgstr ""
    791 
    792 #: includes/class-pis-posts-in-sidebar.php:2686
    793 #: includes/class-pis-posts-in-sidebar.php:2785
    794 #: includes/class-pis-posts-in-sidebar.php:2826
    795 msgid "Year"
    796 msgstr ""
    797 
    798 #: includes/class-pis-posts-in-sidebar.php:2691
    799 msgid "4 digits year (e.g. 2015)."
    800 msgstr ""
    801 
    802 #: includes/class-pis-posts-in-sidebar.php:2697
    803 #: includes/class-pis-posts-in-sidebar.php:2796
    804 #: includes/class-pis-posts-in-sidebar.php:2837
    805 msgid "Month"
    806 msgstr ""
    807 
    808 #: includes/class-pis-posts-in-sidebar.php:2702
    809 msgid "Month number (from 1 to 12)."
    810 msgstr ""
    811 
    812 #: includes/class-pis-posts-in-sidebar.php:2708
    813 msgid "Week"
    814 msgstr ""
    815 
    816 #: includes/class-pis-posts-in-sidebar.php:2713
    817 msgid "Week of the year (from 0 to 53)."
    818 msgstr ""
    819 
    820 #: includes/class-pis-posts-in-sidebar.php:2719
    821 #: includes/class-pis-posts-in-sidebar.php:2807
    822 #: includes/class-pis-posts-in-sidebar.php:2848
    823 msgid "Day"
    824 msgstr ""
    825 
    826 #: includes/class-pis-posts-in-sidebar.php:2724
    827 msgid "Day of the month (from 1 to 31)."
    828 msgstr ""
    829 
    830 #: includes/class-pis-posts-in-sidebar.php:2734
    831 msgid "Hour"
    832 msgstr ""
    833 
    834 #: includes/class-pis-posts-in-sidebar.php:2739
    835 msgid "Hour (from 0 to 23)."
    836 msgstr ""
    837 
    838 #: includes/class-pis-posts-in-sidebar.php:2745
    839 msgid "Minute"
    840 msgstr ""
    841 
    842 #: includes/class-pis-posts-in-sidebar.php:2750
    843 msgid "Minute (from 0 to 59)."
    844 msgstr ""
    845 
    846 #: includes/class-pis-posts-in-sidebar.php:2756
    847 msgid "Second"
    848 msgstr ""
    849 
    850 #: includes/class-pis-posts-in-sidebar.php:2761
    851 msgid "Second (from 0 to 59)."
    852 msgstr ""
    853 
    854 #: includes/class-pis-posts-in-sidebar.php:2773
    855 msgid "Get posts published after/before a date"
    856 msgstr ""
    857 
    858 #: includes/class-pis-posts-in-sidebar.php:2775
    859 msgid "Here you can get posts published after/before a certain date. You can also use the two options together, for example, to get posts published between 2017-01-15 and 2017-01-31."
    860 msgstr ""
    861 
    862 #: includes/class-pis-posts-in-sidebar.php:2779
    863 msgid "Get posts published after this date"
    864 msgstr ""
    865 
    866 #: includes/class-pis-posts-in-sidebar.php:2781
    867 msgid "Get posts published after a certain date."
    868 msgstr ""
    869 
    870 #: includes/class-pis-posts-in-sidebar.php:2790
    871 #: includes/class-pis-posts-in-sidebar.php:2831
    872 msgid "Accepts any four-digit year."
    873 msgstr ""
    874 
    875 #: includes/class-pis-posts-in-sidebar.php:2801
    876 #: includes/class-pis-posts-in-sidebar.php:2842
    877 msgid "The month of the year. Accepts numbers 1-12."
    878 msgstr ""
    879 
    880 #: includes/class-pis-posts-in-sidebar.php:2812
    881 #: includes/class-pis-posts-in-sidebar.php:2853
    882 msgid "The day of the month. Accepts numbers 1-31."
    883 msgstr ""
    884 
    885 #: includes/class-pis-posts-in-sidebar.php:2820
    886 msgid "Get posts published before this date"
    887 msgstr ""
    888 
    889 #: includes/class-pis-posts-in-sidebar.php:2822
    890 msgid "Get posts published before a certain date."
    891 msgstr ""
    892 
    893 #: includes/class-pis-posts-in-sidebar.php:2863
    894 msgid "Other options for after/before"
    895 msgstr ""
    896 
    897 #: includes/class-pis-posts-in-sidebar.php:2869
    898 msgid "Inclusive"
    899 msgstr ""
    900 
    901 #: includes/class-pis-posts-in-sidebar.php:2873
    902 msgid "For after/before, whether exact value should be matched or not"
    903 msgstr ""
    904 
    905 #: includes/class-pis-posts-in-sidebar.php:2883
    906 msgid "Column"
    907 msgstr ""
    908 
    909 #: includes/class-pis-posts-in-sidebar.php:2888
    910 msgid "Column to query against."
    911 msgstr ""
    912 
    913 #: includes/class-pis-posts-in-sidebar.php:2900
    914 msgid "Dynamic date query"
    915 msgstr ""
    916 
    917 #: includes/class-pis-posts-in-sidebar.php:2902
    918 msgid "Define the amount of time from now within the posts have been published. For example, you can get posts published 1 month ago or 2 years ago, and so on. An expression like \"1 month ago\" means: get posts that have been published in the last month, and not only published exactly one month ago."
    919 msgstr ""
    920 
    921 #: includes/class-pis-posts-in-sidebar.php:2904
    922 msgid "Also, please note that these options will override the corresponding options under \"Get posts published after/before a date\"."
    923 msgstr ""
    924 
    925 #: includes/class-pis-posts-in-sidebar.php:2908
    926 msgid "Get posts published after this amount of time"
    927 msgstr ""
    928 
    929 #: includes/class-pis-posts-in-sidebar.php:2913
    930 #: includes/class-pis-posts-in-sidebar.php:2941
    931 msgid "Amount of time"
    932 msgstr ""
    933 
    934 #: includes/class-pis-posts-in-sidebar.php:2924
    935 #: includes/class-pis-posts-in-sidebar.php:2952
    936 msgid "Type of date"
    937 msgstr ""
    938 
    939 #: includes/class-pis-posts-in-sidebar.php:2936
    940 msgid "Get posts published before this amount of time"
    941 msgstr ""
    942 
    943 #: includes/class-pis-posts-in-sidebar.php:2971
    944 msgid "Custom fields query"
    945 msgstr ""
    946 
    947 #: includes/class-pis-posts-in-sidebar.php:2975
    948 msgid "This section lets you retrieve posts from any custom field. If you want to use only one custom field, use the \"Custom field key A1\" field. If you have to put in relation two custom fields (e.g., display posts that have the meta key \"color\" and value \"red\" but meta key \"price\" with values between 10 and 20), then use also the \"Custom field key B1\" field. If you have to put in relation more custom fields, start using also the \"A2\" and \"B2\" fields."
    949 msgstr ""
    950 
    951 #: includes/class-pis-posts-in-sidebar.php:2989
    952 msgid "The logical relationship between each inner meta_query array when there is more than one."
    953 msgstr ""
    954 
    955 #: includes/class-pis-posts-in-sidebar.php:3006
    956 msgid "Custom field key A1"
    957 msgstr ""
    958 
    959 #: includes/class-pis-posts-in-sidebar.php:3010
    960 #: includes/class-pis-posts-in-sidebar.php:3075
    961 #: includes/class-pis-posts-in-sidebar.php:3130
    962 #: includes/class-pis-posts-in-sidebar.php:3194
    963 msgid "color"
    964 msgstr ""
    965 
    966 #: includes/class-pis-posts-in-sidebar.php:3011
    967 #: includes/class-pis-posts-in-sidebar.php:3076
    968 #: includes/class-pis-posts-in-sidebar.php:3131
    969 #: includes/class-pis-posts-in-sidebar.php:3195
    970 msgid "Enter the custom field key."
    971 msgstr ""
    972 
    973 #: includes/class-pis-posts-in-sidebar.php:3018
    974 #: includes/class-pis-posts-in-sidebar.php:3083
    975 #: includes/class-pis-posts-in-sidebar.php:3138
    976 #: includes/class-pis-posts-in-sidebar.php:3202
    977 msgid "Custom field value"
    978 msgstr ""
    979 
    980 #: includes/class-pis-posts-in-sidebar.php:3022
    981 #: includes/class-pis-posts-in-sidebar.php:3087
    982 #: includes/class-pis-posts-in-sidebar.php:3142
    983 #: includes/class-pis-posts-in-sidebar.php:3206
    984 msgid "blue, orange, red"
    985 msgstr ""
    986 
    987 #. translators: the placeholder contains some code.
    988 #: includes/class-pis-posts-in-sidebar.php:3024
    989 #: includes/class-pis-posts-in-sidebar.php:3089
    990 #: includes/class-pis-posts-in-sidebar.php:3144
    991 #: includes/class-pis-posts-in-sidebar.php:3208
    992 msgid "Enter one or more values of the custom field, comma separated. If you enter %s, this will be replaced with the current date and time."
    993 msgstr ""
    994 
    995 #: includes/class-pis-posts-in-sidebar.php:3036
     1038#: includes/class-pis-posts-in-sidebar.php:3279
     1039msgid "Type"
     1040msgstr ""
     1041
    9961042#: includes/class-pis-posts-in-sidebar.php:3101
    997 #: includes/class-pis-posts-in-sidebar.php:3156
     1043#: includes/class-pis-posts-in-sidebar.php:3165
    9981044#: includes/class-pis-posts-in-sidebar.php:3220
    999 msgid "Operator to test for values."
    1000 msgstr ""
    1001 
    1002 #: includes/class-pis-posts-in-sidebar.php:3043
    1003 #: includes/class-pis-posts-in-sidebar.php:3108
    1004 #: includes/class-pis-posts-in-sidebar.php:3163
    1005 #: includes/class-pis-posts-in-sidebar.php:3227
    1006 msgid "Type"
    1007 msgstr ""
    1008 
    1009 #: includes/class-pis-posts-in-sidebar.php:3049
    1010 #: includes/class-pis-posts-in-sidebar.php:3113
    1011 #: includes/class-pis-posts-in-sidebar.php:3168
    1012 #: includes/class-pis-posts-in-sidebar.php:3232
     1045#: includes/class-pis-posts-in-sidebar.php:3284
    10131046msgid "Custom field type. Leave this field blank when using decimal values."
    10141047msgstr ""
    10151048
    1016 #: includes/class-pis-posts-in-sidebar.php:3058
     1049#: includes/class-pis-posts-in-sidebar.php:3110
    10171050msgid "Relation between A1 and A2 custom fields"
    10181051msgstr ""
    10191052
    1020 #: includes/class-pis-posts-in-sidebar.php:3071
     1053#: includes/class-pis-posts-in-sidebar.php:3123
    10211054msgid "Custom field key A2"
    10221055msgstr ""
    10231056
    1024 #: includes/class-pis-posts-in-sidebar.php:3126
     1057#: includes/class-pis-posts-in-sidebar.php:3178
    10251058msgid "Custom field key B1"
    10261059msgstr ""
    10271060
    1028 #: includes/class-pis-posts-in-sidebar.php:3177
     1061#: includes/class-pis-posts-in-sidebar.php:3229
    10291062msgid "Relation between B1 and B2 custom fields"
    10301063msgstr ""
    10311064
    1032 #: includes/class-pis-posts-in-sidebar.php:3190
     1065#: includes/class-pis-posts-in-sidebar.php:3242
    10331066msgid "Custom field key B2"
    10341067msgstr ""
    10351068
    1036 #: includes/class-pis-posts-in-sidebar.php:3246
     1069#: includes/class-pis-posts-in-sidebar.php:3298
    10371070msgid "Get posts from username"
    10381071msgstr ""
    10391072
    1040 #: includes/class-pis-posts-in-sidebar.php:3252
     1073#: includes/class-pis-posts-in-sidebar.php:3304
    10411074msgid "This section lets you retrieve posts that have a custom field key or a category equal to the username of the currently logged-in user. This means that you can show a custom list of posts for each user."
    10421075msgstr ""
    10431076
    1044 #: includes/class-pis-posts-in-sidebar.php:3258
     1077#: includes/class-pis-posts-in-sidebar.php:3310
    10451078msgid "If you want to use custom field keys, create &mdash; for each post or for the posts you want &mdash; a custom field where the meta key is equal to the user login name. The meta value can be empty, since it is ignored here. A single post can have multiple custom fields, one for each user."
    10461079msgstr ""
    10471080
    1048 #: includes/class-pis-posts-in-sidebar.php:3264
     1081#: includes/class-pis-posts-in-sidebar.php:3316
    10491082msgid "If you want to use categories, assign the posts you want to a category that has the same name of the user."
    10501083msgstr ""
    10511084
    1052 #: includes/class-pis-posts-in-sidebar.php:3270
     1085#: includes/class-pis-posts-in-sidebar.php:3322
    10531086msgid "When logged in, the user will see the posts you have marked with his username."
    10541087msgstr ""
    10551088
    1056 #: includes/class-pis-posts-in-sidebar.php:3276
     1089#: includes/class-pis-posts-in-sidebar.php:3328
    10571090msgid "If the user is not logged-in or the widget does not find any post having a meta key (or a category) with the username of the logged-in user, the widget will simply ignore this option."
    10581091msgstr ""
    10591092
    1060 #: includes/class-pis-posts-in-sidebar.php:3285
     1093#: includes/class-pis-posts-in-sidebar.php:3337
    10611094msgid "Get posts from current username"
    10621095msgstr ""
    10631096
    1064 #: includes/class-pis-posts-in-sidebar.php:3289
     1097#: includes/class-pis-posts-in-sidebar.php:3341
    10651098msgid "This option will use custom field keys."
    10661099msgstr ""
    10671100
    1068 #: includes/class-pis-posts-in-sidebar.php:3296
     1101#: includes/class-pis-posts-in-sidebar.php:3348
    10691102msgid "Use category instead of meta key"
    10701103msgstr ""
    10711104
    1072 #: includes/class-pis-posts-in-sidebar.php:3300
     1105#: includes/class-pis-posts-in-sidebar.php:3352
    10731106msgid "When you activate this option, make sure to activate also the option \"Get posts from current username\""
    10741107msgstr ""
    10751108
    1076 #: includes/class-pis-posts-in-sidebar.php:3315
     1109#: includes/class-pis-posts-in-sidebar.php:3367
    10771110msgid "By default, when you activate the option above to change the query, the plugin will deactivate other parameters like categories, tags, date, author, and so on. To leave in action these parameters, activate this option."
    10781111msgstr ""
    10791112
    1080 #: includes/class-pis-posts-in-sidebar.php:3329
     1113#: includes/class-pis-posts-in-sidebar.php:3381
    10811114msgid "Excluding posts"
    10821115msgstr ""
    10831116
    1084 #: includes/class-pis-posts-in-sidebar.php:3335
     1117#: includes/class-pis-posts-in-sidebar.php:3387
    10851118msgid "Define here which posts must be excluded from the query."
    10861119msgstr ""
    10871120
    1088 #: includes/class-pis-posts-in-sidebar.php:3358
     1121#: includes/class-pis-posts-in-sidebar.php:3410
    10891122msgid "Exclude posts by these authors"
    10901123msgstr ""
    10911124
    1092 #: includes/class-pis-posts-in-sidebar.php:3375
     1125#: includes/class-pis-posts-in-sidebar.php:3427
    10931126msgid "Exclude posts from these categories"
    10941127msgstr ""
    10951128
    1096 #: includes/class-pis-posts-in-sidebar.php:3396
     1129#: includes/class-pis-posts-in-sidebar.php:3448
    10971130msgid "Exclude posts from these tags"
    10981131msgstr ""
    10991132
    1100 #: includes/class-pis-posts-in-sidebar.php:3408
     1133#: includes/class-pis-posts-in-sidebar.php:3460
    11011134msgid "Exclude posts with these IDs"
    11021135msgstr ""
    11031136
    1104 #: includes/class-pis-posts-in-sidebar.php:3424
     1137#: includes/class-pis-posts-in-sidebar.php:3476
    11051138msgid "Exclude posts whose parent is in these IDs"
    11061139msgstr ""
    11071140
    1108 #: includes/class-pis-posts-in-sidebar.php:3436
     1141#: includes/class-pis-posts-in-sidebar.php:3488
    11091142msgid "Automatically exclude the current post in single post or the current page in single page"
    11101143msgstr ""
    11111144
    1112 #: includes/class-pis-posts-in-sidebar.php:3458
     1145#: includes/class-pis-posts-in-sidebar.php:3510
    11131146msgid "Displaying posts"
    11141147msgstr ""
    11151148
    1116 #: includes/class-pis-posts-in-sidebar.php:3462
     1149#: includes/class-pis-posts-in-sidebar.php:3514
    11171150msgid "Define here which elements you want to display in the widget."
    11181151msgstr ""
    11191152
    1120 #: includes/class-pis-posts-in-sidebar.php:3470
     1153#: includes/class-pis-posts-in-sidebar.php:3522
    11211154msgid "The title of the post"
    11221155msgstr ""
    11231156
    1124 #: includes/class-pis-posts-in-sidebar.php:3475
     1157#: includes/class-pis-posts-in-sidebar.php:3527
    11251158msgid "Display the title of the post"
    11261159msgstr ""
    11271160
    1128 #: includes/class-pis-posts-in-sidebar.php:3485
     1161#: includes/class-pis-posts-in-sidebar.php:3537
    11291162msgid "Link the title to the post"
    11301163msgstr ""
    11311164
    1132 #: includes/class-pis-posts-in-sidebar.php:3495
     1165#: includes/class-pis-posts-in-sidebar.php:3547
    11331166msgid "Show an arrow after the title"
    11341167msgstr ""
    11351168
    1136 #: includes/class-pis-posts-in-sidebar.php:3505
     1169#: includes/class-pis-posts-in-sidebar.php:3557
    11371170msgid "The length of the title"
    11381171msgstr ""
    11391172
    11401173#. translators: there is some code.
    1141 #: includes/class-pis-posts-in-sidebar.php:3511
     1174#: includes/class-pis-posts-in-sidebar.php:3563
    11421175msgid "Use %s to leave the length unchanged."
    11431176msgstr ""
    11441177
    1145 #: includes/class-pis-posts-in-sidebar.php:3518
     1178#: includes/class-pis-posts-in-sidebar.php:3570
    11461179msgid "Title length unit"
    11471180msgstr ""
    11481181
    1149 #: includes/class-pis-posts-in-sidebar.php:3529
     1182#: includes/class-pis-posts-in-sidebar.php:3581
    11501183msgid "Add an ellipsis after the shortened title"
    11511184msgstr ""
    11521185
    1153 #: includes/class-pis-posts-in-sidebar.php:3539
     1186#: includes/class-pis-posts-in-sidebar.php:3591
    11541187msgid "Type of HTML tag for post title"
    11551188msgstr ""
    11561189
    1157 #: includes/class-pis-posts-in-sidebar.php:3550
     1190#: includes/class-pis-posts-in-sidebar.php:3602
    11581191msgid "The text of the post"
    11591192msgstr ""
    11601193
    1161 #: includes/class-pis-posts-in-sidebar.php:3555
     1194#: includes/class-pis-posts-in-sidebar.php:3607
    11621195msgid "Display this type of text"
    11631196msgstr ""
    11641197
    11651198#. translators: there is some code.
    1166 #: includes/class-pis-posts-in-sidebar.php:3561
     1199#: includes/class-pis-posts-in-sidebar.php:3613
    11671200msgid "For more information regarding these types of text, please see %1$shere%2$s."
    11681201msgstr ""
    11691202
    1170 #: includes/class-pis-posts-in-sidebar.php:3568
     1203#: includes/class-pis-posts-in-sidebar.php:3620
    11711204msgid "The WordPress generated excerpt length will be"
    11721205msgstr ""
    11731206
    1174 #: includes/class-pis-posts-in-sidebar.php:3579
     1207#: includes/class-pis-posts-in-sidebar.php:3631
    11751208msgid "Excerpt length unit"
    11761209msgstr ""
    11771210
    1178 #: includes/class-pis-posts-in-sidebar.php:3590
     1211#: includes/class-pis-posts-in-sidebar.php:3642
    11791212msgid "Use this text for More link"
    11801213msgstr ""
    11811214
    1182 #: includes/class-pis-posts-in-sidebar.php:3594
     1215#: includes/class-pis-posts-in-sidebar.php:3646
    11831216#: includes/pis-functions-display.php:569
    11841217#: includes/pis-functions-general.php:303
     
    11861219msgstr ""
    11871220
    1188 #: includes/class-pis-posts-in-sidebar.php:3595
     1221#: includes/class-pis-posts-in-sidebar.php:3647
    11891222msgid "The \"Read more\" text will be automatically hidden if the length of the WordPress-generated excerpt is smaller than or equal to the user-defined length."
    11901223msgstr ""
    11911224
    1192 #: includes/class-pis-posts-in-sidebar.php:3602
     1225#: includes/class-pis-posts-in-sidebar.php:3654
    11931226msgid "Display an arrow after the text of the post"
    11941227msgstr ""
    11951228
    1196 #: includes/class-pis-posts-in-sidebar.php:3617
     1229#: includes/class-pis-posts-in-sidebar.php:3669
    11971230msgid "The featured image of the post"
    11981231msgstr ""
    11991232
    1200 #: includes/class-pis-posts-in-sidebar.php:3626
     1233#: includes/class-pis-posts-in-sidebar.php:3678
    12011234msgid "Your theme does not support the Post Thumbnail feature. No image will be displayed."
    12021235msgstr ""
    12031236
    1204 #: includes/class-pis-posts-in-sidebar.php:3632
     1237#: includes/class-pis-posts-in-sidebar.php:3684
    12051238msgid "Display the featured image of the post"
    12061239msgstr ""
    12071240
    1208 #: includes/class-pis-posts-in-sidebar.php:3642
     1241#: includes/class-pis-posts-in-sidebar.php:3694
    12091242msgid "The size of the thumbnail will be"
    12101243msgstr ""
    12111244
    1212 #: includes/class-pis-posts-in-sidebar.php:3653
     1245#: includes/class-pis-posts-in-sidebar.php:3705
    12131246msgid "Align the image to"
    12141247msgstr ""
    12151248
    12161249#. translators: there is some code.
    1217 #: includes/class-pis-posts-in-sidebar.php:3665
     1250#: includes/class-pis-posts-in-sidebar.php:3717
    12181251msgid "Note that in order to use image sizes different from the WordPress standards, add them to your theme's %3$sfunctions.php%4$s file. See the %1$sCodex%2$s for further information."
    12191252msgstr ""
    12201253
    12211254#. translators: there is some code.
    1222 #: includes/class-pis-posts-in-sidebar.php:3675
     1255#: includes/class-pis-posts-in-sidebar.php:3727
    12231256msgid "You can also use %1$sa plugin%2$s that could help you in doing it."
    12241257msgstr ""
    12251258
    1226 #: includes/class-pis-posts-in-sidebar.php:3686
     1259#: includes/class-pis-posts-in-sidebar.php:3738
    12271260msgid "The link of the featured image"
    12281261msgstr ""
    12291262
    1230 #: includes/class-pis-posts-in-sidebar.php:3691
     1263#: includes/class-pis-posts-in-sidebar.php:3743
    12311264msgid "Link the image to the post"
    12321265msgstr ""
    12331266
    1234 #: includes/class-pis-posts-in-sidebar.php:3695
     1267#: includes/class-pis-posts-in-sidebar.php:3747
    12351268msgid "If activated, the image will be linked to the post. If you want to change the link, enter another URL in the box below."
    12361269msgstr ""
    12371270
    1238 #: includes/class-pis-posts-in-sidebar.php:3702
     1271#: includes/class-pis-posts-in-sidebar.php:3754
    12391272msgid "Link the image to this URL"
    12401273msgstr ""
    12411274
    1242 #: includes/class-pis-posts-in-sidebar.php:3707
     1275#: includes/class-pis-posts-in-sidebar.php:3759
    12431276msgid "By default the featured image is linked to the post. Use this field to link the image to a URL of your choice. Please, note that every featured image of this widget will be linked to the same URL."
    12441277msgstr ""
    12451278
    1246 #: includes/class-pis-posts-in-sidebar.php:3711
     1279#: includes/class-pis-posts-in-sidebar.php:3763
    12471280msgid "Custom featured image"
    12481281msgstr ""
    12491282
    1250 #: includes/class-pis-posts-in-sidebar.php:3716
     1283#: includes/class-pis-posts-in-sidebar.php:3768
    12511284msgid "Use this image instead of the standard featured image"
    12521285msgstr ""
    12531286
    1254 #: includes/class-pis-posts-in-sidebar.php:3721
     1287#: includes/class-pis-posts-in-sidebar.php:3773
    12551288msgid "Paste here the URL of the image. Note that the same image will be used for all the posts in the widget, unless you activate the checkbox below."
    12561289msgstr ""
    12571290
    1258 #: includes/class-pis-posts-in-sidebar.php:3728
     1291#: includes/class-pis-posts-in-sidebar.php:3780
    12591292msgid "Use custom image URL only if the post has not a featured image."
    12601293msgstr ""
    12611294
    1262 #: includes/class-pis-posts-in-sidebar.php:3741
    1263 #: includes/class-pis-posts-in-sidebar.php:4109
    1264 #: includes/class-pis-posts-in-sidebar.php:4281
    1265 #: includes/class-pis-posts-in-sidebar.php:4311
    1266 #: includes/class-pis-posts-in-sidebar.php:4341
    1267 #: includes/class-pis-posts-in-sidebar.php:4482
     1295#: includes/class-pis-posts-in-sidebar.php:3793
     1296#: includes/class-pis-posts-in-sidebar.php:4161
     1297#: includes/class-pis-posts-in-sidebar.php:4333
     1298#: includes/class-pis-posts-in-sidebar.php:4363
     1299#: includes/class-pis-posts-in-sidebar.php:4393
     1300#: includes/class-pis-posts-in-sidebar.php:4534
    12681301msgid "Move this section"
    12691302msgstr ""
    12701303
    1271 #: includes/class-pis-posts-in-sidebar.php:3746
    1272 #: includes/class-pis-posts-in-sidebar.php:4114
    1273 #: includes/class-pis-posts-in-sidebar.php:4487
     1304#: includes/class-pis-posts-in-sidebar.php:3798
     1305#: includes/class-pis-posts-in-sidebar.php:4166
     1306#: includes/class-pis-posts-in-sidebar.php:4539
    12741307msgid "Display this section before the title of the post"
    12751308msgstr ""
    12761309
    1277 #: includes/class-pis-posts-in-sidebar.php:3761
     1310#: includes/class-pis-posts-in-sidebar.php:3813
    12781311msgid "Author, date/time and comments"
    12791312msgstr ""
    12801313
    1281 #: includes/class-pis-posts-in-sidebar.php:3769
     1314#: includes/class-pis-posts-in-sidebar.php:3821
    12821315#: includes/pis-select-options.php:155
    12831316#: includes/pis-select-options.php:232
     
    12861319msgstr ""
    12871320
    1288 #: includes/class-pis-posts-in-sidebar.php:3774
     1321#: includes/class-pis-posts-in-sidebar.php:3826
    12891322msgid "Display the author of the post"
    12901323msgstr ""
    12911324
    1292 #: includes/class-pis-posts-in-sidebar.php:3784
     1325#: includes/class-pis-posts-in-sidebar.php:3836
    12931326msgid "Use this text before author's name"
    12941327msgstr ""
    12951328
    1296 #: includes/class-pis-posts-in-sidebar.php:3788
     1329#: includes/class-pis-posts-in-sidebar.php:3840
    12971330#: includes/pis-functions-display.php:728
    12981331#: includes/pis-functions-general.php:308
     
    13001333msgstr ""
    13011334
    1302 #: includes/class-pis-posts-in-sidebar.php:3795
     1335#: includes/class-pis-posts-in-sidebar.php:3847
    13031336msgid "Link the author to his archive"
    13041337msgstr ""
    13051338
    1306 #: includes/class-pis-posts-in-sidebar.php:3806
     1339#: includes/class-pis-posts-in-sidebar.php:3858
    13071340#: includes/pis-select-options.php:171
    13081341#: includes/pis-select-options.php:248
     
    13101343msgstr ""
    13111344
    1312 #: includes/class-pis-posts-in-sidebar.php:3811
     1345#: includes/class-pis-posts-in-sidebar.php:3863
    13131346msgid "Display the date of the post"
    13141347msgstr ""
    13151348
    1316 #: includes/class-pis-posts-in-sidebar.php:3821
     1349#: includes/class-pis-posts-in-sidebar.php:3873
    13171350msgid "Use this text before date"
    13181351msgstr ""
    13191352
    1320 #: includes/class-pis-posts-in-sidebar.php:3825
     1353#: includes/class-pis-posts-in-sidebar.php:3877
    13211354#: includes/pis-functions-display.php:731
    13221355#: includes/pis-functions-general.php:315
     
    13241357msgstr ""
    13251358
    1326 #: includes/class-pis-posts-in-sidebar.php:3832
     1359#: includes/class-pis-posts-in-sidebar.php:3884
    13271360msgid "Link the date to the post"
    13281361msgstr ""
    13291362
    1330 #: includes/class-pis-posts-in-sidebar.php:3842
     1363#: includes/class-pis-posts-in-sidebar.php:3894
    13311364msgid "Display the time of the post"
    13321365msgstr ""
    13331366
    1334 #: includes/class-pis-posts-in-sidebar.php:3853
     1367#: includes/class-pis-posts-in-sidebar.php:3905
    13351368msgid "Comments"
    13361369msgstr ""
    13371370
    1338 #: includes/class-pis-posts-in-sidebar.php:3858
     1371#: includes/class-pis-posts-in-sidebar.php:3910
    13391372msgid "Display the number of comments"
    13401373msgstr ""
    13411374
    1342 #: includes/class-pis-posts-in-sidebar.php:3868
     1375#: includes/class-pis-posts-in-sidebar.php:3920
    13431376msgid "Use this text before comments"
    13441377msgstr ""
    13451378
    1346 #: includes/class-pis-posts-in-sidebar.php:3872
     1379#: includes/class-pis-posts-in-sidebar.php:3924
    13471380#: includes/pis-functions-display.php:735
    13481381#: includes/pis-functions-general.php:327
     
    13501383msgstr ""
    13511384
    1352 #: includes/class-pis-posts-in-sidebar.php:3879
     1385#: includes/class-pis-posts-in-sidebar.php:3931
    13531386msgid "Link the comments to post's comments"
    13541387msgstr ""
    13551388
    1356 #: includes/class-pis-posts-in-sidebar.php:3889
     1389#: includes/class-pis-posts-in-sidebar.php:3941
    13571390msgid "Display the number of comments only"
    13581391msgstr ""
    13591392
    1360 #: includes/class-pis-posts-in-sidebar.php:3907
     1393#: includes/class-pis-posts-in-sidebar.php:3959
    13611394msgid "Display author's Gravatar"
    13621395msgstr ""
    13631396
    1364 #: includes/class-pis-posts-in-sidebar.php:3919
     1397#: includes/class-pis-posts-in-sidebar.php:3971
    13651398msgid "Gravatar size"
    13661399msgstr ""
    13671400
    1368 #: includes/class-pis-posts-in-sidebar.php:3930
     1401#: includes/class-pis-posts-in-sidebar.php:3982
    13691402msgid "URL of the default Gravatar image"
    13701403msgstr ""
    13711404
    1372 #: includes/class-pis-posts-in-sidebar.php:3941
     1405#: includes/class-pis-posts-in-sidebar.php:3993
    13731406msgid "Gravatar position"
    13741407msgstr ""
    13751408
    1376 #: includes/class-pis-posts-in-sidebar.php:3956
     1409#: includes/class-pis-posts-in-sidebar.php:4008
    13771410msgid "Display the modification date of the post"
    13781411msgstr ""
    13791412
    1380 #: includes/class-pis-posts-in-sidebar.php:3966
     1413#: includes/class-pis-posts-in-sidebar.php:4018
    13811414msgid "Use this text before modification date"
    13821415msgstr ""
    13831416
    1384 #: includes/class-pis-posts-in-sidebar.php:3970
     1417#: includes/class-pis-posts-in-sidebar.php:4022
    13851418#: includes/pis-functions-display.php:733
    13861419#: includes/pis-functions-general.php:321
     
    13881421msgstr ""
    13891422
    1390 #: includes/class-pis-posts-in-sidebar.php:3977
     1423#: includes/class-pis-posts-in-sidebar.php:4029
    13911424msgid "Link the modification date to the post"
    13921425msgstr ""
    13931426
    1394 #: includes/class-pis-posts-in-sidebar.php:3987
     1427#: includes/class-pis-posts-in-sidebar.php:4039
    13951428msgid "Display the modification time of the post"
    13961429msgstr ""
    13971430
    1398 #: includes/class-pis-posts-in-sidebar.php:4001
     1431#: includes/class-pis-posts-in-sidebar.php:4053
    13991432msgid "Hide the comments section if there is no comment"
    14001433msgstr ""
    14011434
    1402 #: includes/class-pis-posts-in-sidebar.php:4011
     1435#: includes/class-pis-posts-in-sidebar.php:4063
    14031436msgid "Use this separator between author, date/time and comments"
    14041437msgstr ""
    14051438
    1406 #: includes/class-pis-posts-in-sidebar.php:4016
     1439#: includes/class-pis-posts-in-sidebar.php:4068
    14071440msgid "A space will be added before and after the separator."
    14081441msgstr ""
    14091442
    1410 #: includes/class-pis-posts-in-sidebar.php:4026
     1443#: includes/class-pis-posts-in-sidebar.php:4078
    14111444msgid "Date and time formatting"
    14121445msgstr ""
    14131446
    1414 #: includes/class-pis-posts-in-sidebar.php:4030
     1447#: includes/class-pis-posts-in-sidebar.php:4082
    14151448msgid "In these fields you can define the format of date and time for this widget."
    14161449msgstr ""
    14171450
    1418 #: includes/class-pis-posts-in-sidebar.php:4032
     1451#: includes/class-pis-posts-in-sidebar.php:4084
    14191452msgid "If you leave these fields blank, the widget will use the format as defined in the Settings page of WordPress."
    14201453msgstr ""
    14211454
    1422 #: includes/class-pis-posts-in-sidebar.php:4034
     1455#: includes/class-pis-posts-in-sidebar.php:4086
    14231456msgid "It's not necessary to fill all the fields, but only those you want to change."
    14241457msgstr ""
    14251458
    14261459#. translators: The link to date and time formatting in WordPress documentation.
    1427 #: includes/class-pis-posts-in-sidebar.php:4042
     1460#: includes/class-pis-posts-in-sidebar.php:4094
    14281461msgid "For more information about date and time formatting see the %1$sWordPress documentation%2$s."
    14291462msgstr ""
    14301463
    1431 #: includes/class-pis-posts-in-sidebar.php:4056
     1464#: includes/class-pis-posts-in-sidebar.php:4108
    14321465msgid "Date format"
    14331466msgstr ""
    14341467
    1435 #: includes/class-pis-posts-in-sidebar.php:4067
     1468#: includes/class-pis-posts-in-sidebar.php:4119
    14361469msgid "Time format"
    14371470msgstr ""
    14381471
    1439 #: includes/class-pis-posts-in-sidebar.php:4082
     1472#: includes/class-pis-posts-in-sidebar.php:4134
    14401473msgid "Modification date format"
    14411474msgstr ""
    14421475
    1443 #: includes/class-pis-posts-in-sidebar.php:4093
     1476#: includes/class-pis-posts-in-sidebar.php:4145
    14441477msgid "Modification time format"
    14451478msgstr ""
    14461479
    1447 #: includes/class-pis-posts-in-sidebar.php:4124
    1448 #: includes/class-pis-posts-in-sidebar.php:4497
     1480#: includes/class-pis-posts-in-sidebar.php:4176
     1481#: includes/class-pis-posts-in-sidebar.php:4549
    14491482msgid "Display this section after the title of the post"
    14501483msgstr ""
    14511484
    1452 #: includes/class-pis-posts-in-sidebar.php:4139
     1485#: includes/class-pis-posts-in-sidebar.php:4191
    14531486msgid "Taxonomies"
    14541487msgstr ""
    14551488
    1456 #: includes/class-pis-posts-in-sidebar.php:4147
     1489#: includes/class-pis-posts-in-sidebar.php:4199
    14571490msgid "Categories"
    14581491msgstr ""
    14591492
    1460 #: includes/class-pis-posts-in-sidebar.php:4152
     1493#: includes/class-pis-posts-in-sidebar.php:4204
    14611494msgid "Show the categories"
    14621495msgstr ""
    14631496
    1464 #: includes/class-pis-posts-in-sidebar.php:4162
     1497#: includes/class-pis-posts-in-sidebar.php:4214
    14651498msgid "Use this text before categories list"
    14661499msgstr ""
    14671500
    1468 #: includes/class-pis-posts-in-sidebar.php:4166
     1501#: includes/class-pis-posts-in-sidebar.php:4218
    14691502#: includes/pis-functions-display.php:160
    14701503#: includes/pis-functions-general.php:337
     
    14721505msgstr ""
    14731506
    1474 #: includes/class-pis-posts-in-sidebar.php:4173
     1507#: includes/class-pis-posts-in-sidebar.php:4225
    14751508msgid "Use this separator between categories"
    14761509msgstr ""
    14771510
    1478 #: includes/class-pis-posts-in-sidebar.php:4178
    1479 #: includes/class-pis-posts-in-sidebar.php:4228
    1480 #: includes/class-pis-posts-in-sidebar.php:4267
     1511#: includes/class-pis-posts-in-sidebar.php:4230
     1512#: includes/class-pis-posts-in-sidebar.php:4280
     1513#: includes/class-pis-posts-in-sidebar.php:4319
    14811514msgid "A space will be added after the separator."
    14821515msgstr ""
    14831516
    1484 #: includes/class-pis-posts-in-sidebar.php:4186
     1517#: includes/class-pis-posts-in-sidebar.php:4238
    14851518msgid "Tags"
    14861519msgstr ""
    14871520
    1488 #: includes/class-pis-posts-in-sidebar.php:4191
     1521#: includes/class-pis-posts-in-sidebar.php:4243
    14891522msgid "Show the tags"
    14901523msgstr ""
    14911524
    1492 #: includes/class-pis-posts-in-sidebar.php:4201
     1525#: includes/class-pis-posts-in-sidebar.php:4253
    14931526msgid "Use this text before tags list"
    14941527msgstr ""
    14951528
    1496 #: includes/class-pis-posts-in-sidebar.php:4205
     1529#: includes/class-pis-posts-in-sidebar.php:4257
    14971530#: includes/pis-functions-display.php:225
    14981531#: includes/pis-functions-general.php:344
     
    15001533msgstr ""
    15011534
    1502 #: includes/class-pis-posts-in-sidebar.php:4212
     1535#: includes/class-pis-posts-in-sidebar.php:4264
    15031536msgid "Use this hashtag"
    15041537msgstr ""
    15051538
    1506 #: includes/class-pis-posts-in-sidebar.php:4223
     1539#: includes/class-pis-posts-in-sidebar.php:4275
    15071540msgid "Use this separator between tags"
    15081541msgstr ""
    15091542
    1510 #: includes/class-pis-posts-in-sidebar.php:4236
     1543#: includes/class-pis-posts-in-sidebar.php:4288
    15111544msgid "Custom taxonomies"
    15121545msgstr ""
    15131546
    1514 #: includes/class-pis-posts-in-sidebar.php:4241
     1547#: includes/class-pis-posts-in-sidebar.php:4293
    15151548msgid "Show the custom taxonomies"
    15161549msgstr ""
    15171550
    1518 #: includes/class-pis-posts-in-sidebar.php:4251
     1551#: includes/class-pis-posts-in-sidebar.php:4303
    15191552msgid "Use this hashtag for terms"
    15201553msgstr ""
    15211554
    1522 #: includes/class-pis-posts-in-sidebar.php:4262
     1555#: includes/class-pis-posts-in-sidebar.php:4314
    15231556msgid "Use this separator between terms"
    15241557msgstr ""
    15251558
    1526 #: includes/class-pis-posts-in-sidebar.php:4286
     1559#: includes/class-pis-posts-in-sidebar.php:4338
    15271560msgid "Display the categories before the title of the post"
    15281561msgstr ""
    15291562
    1530 #: includes/class-pis-posts-in-sidebar.php:4296
     1563#: includes/class-pis-posts-in-sidebar.php:4348
    15311564msgid "Display the categories after the title of the post"
    15321565msgstr ""
    15331566
    1534 #: includes/class-pis-posts-in-sidebar.php:4316
     1567#: includes/class-pis-posts-in-sidebar.php:4368
    15351568msgid "Display the tags before the title of the post"
    15361569msgstr ""
    15371570
    1538 #: includes/class-pis-posts-in-sidebar.php:4326
     1571#: includes/class-pis-posts-in-sidebar.php:4378
    15391572msgid "Display the tags after the title of the post"
    15401573msgstr ""
    15411574
    1542 #: includes/class-pis-posts-in-sidebar.php:4346
     1575#: includes/class-pis-posts-in-sidebar.php:4398
    15431576msgid "Display the custom taxonomies before the title of the post"
    15441577msgstr ""
    15451578
    1546 #: includes/class-pis-posts-in-sidebar.php:4356
     1579#: includes/class-pis-posts-in-sidebar.php:4408
    15471580msgid "Display the custom taxonomies after the title of the post"
    15481581msgstr ""
    15491582
    1550 #: includes/class-pis-posts-in-sidebar.php:4375
     1583#: includes/class-pis-posts-in-sidebar.php:4427
    15511584msgid "The custom fields"
    15521585msgstr ""
    15531586
    1554 #: includes/class-pis-posts-in-sidebar.php:4383
     1587#: includes/class-pis-posts-in-sidebar.php:4435
    15551588msgid "Display all the custom fields"
    15561589msgstr ""
    15571590
    1558 #: includes/class-pis-posts-in-sidebar.php:4388
     1591#: includes/class-pis-posts-in-sidebar.php:4440
    15591592msgid "Display all the custom fields of the post"
    15601593msgstr ""
    15611594
    1562 #: includes/class-pis-posts-in-sidebar.php:4399
     1595#: includes/class-pis-posts-in-sidebar.php:4451
    15631596msgid "Display a single custom field"
    15641597msgstr ""
    15651598
    1566 #: includes/class-pis-posts-in-sidebar.php:4404
     1599#: includes/class-pis-posts-in-sidebar.php:4456
    15671600msgid "Display the custom field of the post"
    15681601msgstr ""
    15691602
    1570 #: includes/class-pis-posts-in-sidebar.php:4414
     1603#: includes/class-pis-posts-in-sidebar.php:4466
    15711604msgid "Display this custom field"
    15721605msgstr ""
    15731606
    1574 #: includes/class-pis-posts-in-sidebar.php:4429
     1607#: includes/class-pis-posts-in-sidebar.php:4481
    15751608msgid "Use this text before the custom field"
    15761609msgstr ""
    15771610
    1578 #: includes/class-pis-posts-in-sidebar.php:4433
     1611#: includes/class-pis-posts-in-sidebar.php:4485
    15791612msgid "Custom field:"
    15801613msgstr ""
    15811614
    1582 #: includes/class-pis-posts-in-sidebar.php:4440
     1615#: includes/class-pis-posts-in-sidebar.php:4492
    15831616msgid "The custom field content length will be (in characters)"
    15841617msgstr ""
    15851618
    1586 #: includes/class-pis-posts-in-sidebar.php:4451
     1619#: includes/class-pis-posts-in-sidebar.php:4503
    15871620msgid "Use this text for horizontal ellipsis"
    15881621msgstr ""
    15891622
    1590 #: includes/class-pis-posts-in-sidebar.php:4462
     1623#: includes/class-pis-posts-in-sidebar.php:4514
    15911624msgid "Also display the key of the custom field"
    15921625msgstr ""
    15931626
    1594 #: includes/class-pis-posts-in-sidebar.php:4472
     1627#: includes/class-pis-posts-in-sidebar.php:4524
    15951628msgid "Use this separator between meta key and value"
    15961629msgstr ""
    15971630
    1598 #: includes/class-pis-posts-in-sidebar.php:4512
     1631#: includes/class-pis-posts-in-sidebar.php:4564
    15991632msgid "The link to the archive"
    16001633msgstr ""
    16011634
    1602 #: includes/class-pis-posts-in-sidebar.php:4523
     1635#: includes/class-pis-posts-in-sidebar.php:4575
    16031636msgid "Display the link to the taxonomy archive"
    16041637msgstr ""
    16051638
    1606 #: includes/class-pis-posts-in-sidebar.php:4533
     1639#: includes/class-pis-posts-in-sidebar.php:4585
    16071640msgid "Link to the archive of"
    16081641msgstr ""
    16091642
    1610 #: includes/class-pis-posts-in-sidebar.php:4547
     1643#: includes/class-pis-posts-in-sidebar.php:4599
    16111644msgid "Taxonomy name"
    16121645msgstr ""
    16131646
    1614 #: includes/class-pis-posts-in-sidebar.php:4551
     1647#: includes/class-pis-posts-in-sidebar.php:4603
    16151648msgid "genre"
    16161649msgstr ""
    16171650
    16181651#. translators: %s contains some code.
    1619 #: includes/class-pis-posts-in-sidebar.php:4554
     1652#: includes/class-pis-posts-in-sidebar.php:4606
    16201653msgid "Enter the term name of the custom taxonomy (e.g., %1$sgenre%2$s). %3$sUse this field only if you selected \"Custom taxonomy\" in the \"Link to the archive of\" dropdown menu.%4$s"
    16211654msgstr ""
    16221655
    1623 #: includes/class-pis-posts-in-sidebar.php:4576
     1656#: includes/class-pis-posts-in-sidebar.php:4628
    16241657msgid "Taxonomy term name"
    16251658msgstr ""
    16261659
    1627 #: includes/class-pis-posts-in-sidebar.php:4580
     1660#: includes/class-pis-posts-in-sidebar.php:4632
    16281661msgid "science"
    16291662msgstr ""
    16301663
    16311664#. translators: %s contains some code.
    1632 #: includes/class-pis-posts-in-sidebar.php:4583
     1665#: includes/class-pis-posts-in-sidebar.php:4635
    16331666msgid "Enter the name of the taxonomy term (e.g., %1$sscience%2$s if the taxonomy is \"genre\").%3$sIf you selected \"Author\" in \"Link to the archive of\" field, enter the author slug; if you selected \"Category\", enter the category slug, and so on."
    16341667msgstr ""
    16351668
    1636 #: includes/class-pis-posts-in-sidebar.php:4598
     1669#: includes/class-pis-posts-in-sidebar.php:4650
    16371670msgid "Enable dynamic link in single posts and archive pages"
    16381671msgstr ""
    16391672
    1640 #: includes/class-pis-posts-in-sidebar.php:4602
     1673#: includes/class-pis-posts-in-sidebar.php:4654
    16411674msgid "When activated, this function will get the term name automatically in single posts and archive pages. The only required option is the field \"Link to the archive of\". If activated, the content of the field \"Taxonomy term name\" will be ignored in single posts and archive pages. This option will not work on post formats archives."
    16421675msgstr ""
    16431676
    1644 #: includes/class-pis-posts-in-sidebar.php:4614
     1677#: includes/class-pis-posts-in-sidebar.php:4666
    16451678msgid "Use this text for archive link"
    16461679msgstr ""
    16471680
    16481681#. translators: %s is the name of the taxonomy for the archive page link.
    1649 #: includes/class-pis-posts-in-sidebar.php:4619
     1682#: includes/class-pis-posts-in-sidebar.php:4671
    16501683#: includes/pis-functions-general.php:376
    16511684msgid "Display all posts under %s"
     
    16531686
    16541687#. translators: %s contains some code.
    1655 #: includes/class-pis-posts-in-sidebar.php:4622
     1688#: includes/class-pis-posts-in-sidebar.php:4674
    16561689msgid "Use %s to display the taxonomy term name."
    16571690msgstr ""
    16581691
    1659 #: includes/class-pis-posts-in-sidebar.php:4634
     1692#: includes/class-pis-posts-in-sidebar.php:4686
    16601693msgid "When no posts are found"
    16611694msgstr ""
    16621695
    1663 #: includes/class-pis-posts-in-sidebar.php:4642
     1696#: includes/class-pis-posts-in-sidebar.php:4694
    16641697msgid "Use this text when there are no posts"
    16651698msgstr ""
    16661699
    1667 #: includes/class-pis-posts-in-sidebar.php:4646
     1700#: includes/class-pis-posts-in-sidebar.php:4698
    16681701#: includes/pis-functions-general.php:379
    16691702msgid "No posts yet."
    16701703msgstr ""
    16711704
    1672 #: includes/class-pis-posts-in-sidebar.php:4653
     1705#: includes/class-pis-posts-in-sidebar.php:4705
    16731706msgid "Completely hide the widget if no posts are found"
    16741707msgstr ""
    16751708
    1676 #: includes/class-pis-posts-in-sidebar.php:4671
     1709#: includes/class-pis-posts-in-sidebar.php:4723
    16771710msgid "Styles"
    16781711msgstr ""
    16791712
    1680 #: includes/class-pis-posts-in-sidebar.php:4675
     1713#: includes/class-pis-posts-in-sidebar.php:4727
    16811714msgid "This section defines the margin for each line of the widget. Leave blank if you don't want to add any local style."
    16821715msgstr ""
    16831716
    1684 #: includes/class-pis-posts-in-sidebar.php:4684
     1717#: includes/class-pis-posts-in-sidebar.php:4736
    16851718msgid "Unit for margins"
    16861719msgstr ""
    16871720
    16881721#. translators: %s contains some code.
    1689 #: includes/class-pis-posts-in-sidebar.php:4698
     1722#: includes/class-pis-posts-in-sidebar.php:4750
    16901723msgid "Enter here only the value without any unit, e.g. enter %1$s if you want a space of 10px or enter %2$s if you don't want any space."
    16911724msgstr ""
    16921725
    1693 #: includes/class-pis-posts-in-sidebar.php:4712
     1726#: includes/class-pis-posts-in-sidebar.php:4764
    16941727msgid "Introduction bottom margin"
    16951728msgstr ""
    16961729
    1697 #: includes/class-pis-posts-in-sidebar.php:4713
     1730#: includes/class-pis-posts-in-sidebar.php:4765
    16981731msgid "Title bottom margin"
    16991732msgstr ""
    17001733
    1701 #: includes/class-pis-posts-in-sidebar.php:4714
     1734#: includes/class-pis-posts-in-sidebar.php:4766
    17021735msgid "Image left &amp; right margin"
    17031736msgstr ""
    17041737
    1705 #: includes/class-pis-posts-in-sidebar.php:4715
     1738#: includes/class-pis-posts-in-sidebar.php:4767
    17061739msgid "Image bottom margin"
    17071740msgstr ""
    17081741
    1709 #: includes/class-pis-posts-in-sidebar.php:4719
     1742#: includes/class-pis-posts-in-sidebar.php:4771
    17101743msgid "Excerpt bottom margin"
    17111744msgstr ""
    17121745
    1713 #: includes/class-pis-posts-in-sidebar.php:4720
     1746#: includes/class-pis-posts-in-sidebar.php:4772
    17141747msgid "Utility bottom margin"
    17151748msgstr ""
    17161749
    1717 #: includes/class-pis-posts-in-sidebar.php:4721
     1750#: includes/class-pis-posts-in-sidebar.php:4773
    17181751msgid "Categories bottom margin"
    17191752msgstr ""
    17201753
    1721 #: includes/class-pis-posts-in-sidebar.php:4722
     1754#: includes/class-pis-posts-in-sidebar.php:4774
    17221755msgid "Tags bottom margin"
    17231756msgstr ""
    17241757
    1725 #: includes/class-pis-posts-in-sidebar.php:4726
     1758#: includes/class-pis-posts-in-sidebar.php:4778
    17261759msgid "Terms bottom margin"
    17271760msgstr ""
    17281761
    1729 #: includes/class-pis-posts-in-sidebar.php:4727
     1762#: includes/class-pis-posts-in-sidebar.php:4779
    17301763msgid "Custom field bottom margin"
    17311764msgstr ""
    17321765
    1733 #: includes/class-pis-posts-in-sidebar.php:4728
     1766#: includes/class-pis-posts-in-sidebar.php:4780
    17341767msgid "Archive bottom margin"
    17351768msgstr ""
    17361769
    1737 #: includes/class-pis-posts-in-sidebar.php:4729
     1770#: includes/class-pis-posts-in-sidebar.php:4781
    17381771msgid "No-posts bottom margin"
    17391772msgstr ""
    17401773
    1741 #: includes/class-pis-posts-in-sidebar.php:4737
    1742 #: includes/class-pis-posts-in-sidebar.php:4770
     1774#: includes/class-pis-posts-in-sidebar.php:4789
     1775#: includes/class-pis-posts-in-sidebar.php:4822
    17431776msgid "Custom styles"
    17441777msgstr ""
    17451778
    17461779#. translators: %s contains some code.
    1747 #: includes/class-pis-posts-in-sidebar.php:4745
     1780#: includes/class-pis-posts-in-sidebar.php:4797
    17481781msgid "In this field you can add your own styles, for example: %s"
    17491782msgstr ""
    17501783
    17511784#. translators: %s contains some code.
    1752 #: includes/class-pis-posts-in-sidebar.php:4753
     1785#: includes/class-pis-posts-in-sidebar.php:4805
    17531786msgid "To apply a style only to elements of this widget, prefix every style with this ID selector: %s"
    17541787msgstr ""
    17551788
    17561789#. translators: %s contains some code.
    1757 #: includes/class-pis-posts-in-sidebar.php:4761
     1790#: includes/class-pis-posts-in-sidebar.php:4813
    17581791msgid "For example: %s"
    17591792msgstr ""
    17601793
    1761 #: includes/class-pis-posts-in-sidebar.php:4774
     1794#: includes/class-pis-posts-in-sidebar.php:4826
    17621795msgid "Enter here your CSS styles"
    17631796msgstr ""
    17641797
    1765 #: includes/class-pis-posts-in-sidebar.php:4786
     1798#: includes/class-pis-posts-in-sidebar.php:4838
    17661799msgid "Extras"
    17671800msgstr ""
    17681801
    1769 #: includes/class-pis-posts-in-sidebar.php:4793
     1802#: includes/class-pis-posts-in-sidebar.php:4845
    17701803msgid "Add a global container with this CSS class"
    17711804msgstr ""
    17721805
    17731806#. translators: %s contains some code.
    1774 #: includes/class-pis-posts-in-sidebar.php:4800
     1807#: includes/class-pis-posts-in-sidebar.php:4852
    17751808msgid "Enter the name of your container (for example, %1$s). The plugin will add a new %2$s container with this class. You can enter only one class and the name may contain only letters, hyphens and underscores. The new container will enclose all the widget, from the widget title to the last line."
    17761809msgstr ""
    17771810
    1778 #: includes/class-pis-posts-in-sidebar.php:4813
     1811#: includes/class-pis-posts-in-sidebar.php:4865
    17791812msgid "Use this type of list for the posts"
    17801813msgstr ""
    17811814
    1782 #: includes/class-pis-posts-in-sidebar.php:4824
     1815#: includes/class-pis-posts-in-sidebar.php:4876
    17831816msgid "Try to remove the bullets and the extra left space from the list elements"
    17841817msgstr ""
    17851818
    17861819#. translators: %s contains some code.
    1787 #: includes/class-pis-posts-in-sidebar.php:4830
     1820#: includes/class-pis-posts-in-sidebar.php:4882
    17881821msgid "If the plugin doesn't remove the bullets and/or the extra left space, you have to %1$sedit your CSS file%2$s manually."
    17891822msgstr ""
    17901823
    1791 #: includes/class-pis-posts-in-sidebar.php:4840
     1824#: includes/class-pis-posts-in-sidebar.php:4892
    17921825msgid "Add the WordPress standard classes to the post in the widget"
    17931826msgstr ""
    17941827
    17951828#. translators: %s contains some code.
    1796 #: includes/class-pis-posts-in-sidebar.php:4846
     1829#: includes/class-pis-posts-in-sidebar.php:4898
    17971830msgid "Every standard WordPress posts has a series of HTML classes, such as %s, and so on. Activating this option you can add these classes to the usual plugin's classes."
    17981831msgstr ""
    17991832
    1800 #: includes/class-pis-posts-in-sidebar.php:4863
     1833#: includes/class-pis-posts-in-sidebar.php:4915
    18011834msgid "Cache"
    18021835msgstr ""
    18031836
    1804 #: includes/class-pis-posts-in-sidebar.php:4874
     1837#: includes/class-pis-posts-in-sidebar.php:4926
    18051838msgid "Use a cache to serve the output"
    18061839msgstr ""
    18071840
    1808 #: includes/class-pis-posts-in-sidebar.php:4878
     1841#: includes/class-pis-posts-in-sidebar.php:4930
    18091842msgid "This option, if activated, will increase the performance but will show the same output during the defined cache time."
    18101843msgstr ""
    18111844
    1812 #: includes/class-pis-posts-in-sidebar.php:4892
     1845#: includes/class-pis-posts-in-sidebar.php:4944
    18131846msgid "The cache will be used for (in seconds)"
    18141847msgstr ""
    18151848
    18161849#. translators: %s contains some code.
    1817 #: includes/class-pis-posts-in-sidebar.php:4899
     1850#: includes/class-pis-posts-in-sidebar.php:4951
    18181851msgid "For example, %s for one hour of cache. To reset the cache, enter a value different from the previously saved."
    18191852msgstr ""
    18201853
    1821 #: includes/class-pis-posts-in-sidebar.php:4915
     1854#: includes/class-pis-posts-in-sidebar.php:4967
    18221855msgid "Debugging"
    18231856msgstr ""
    18241857
    18251858#. translators: %s contains the plugin version.
    1826 #: includes/class-pis-posts-in-sidebar.php:4923
     1859#: includes/class-pis-posts-in-sidebar.php:4975
    18271860msgid "You are using Posts in Sidebar version %s"
    18281861msgstr ""
    18291862
    18301863#. translators: %s contains the widget id.
    1831 #: includes/class-pis-posts-in-sidebar.php:4933
     1864#: includes/class-pis-posts-in-sidebar.php:4985
    18321865msgid "The ID of this widget is: %s"
    18331866msgstr ""
    18341867
    1835 #: includes/class-pis-posts-in-sidebar.php:4939
     1868#: includes/class-pis-posts-in-sidebar.php:4991
    18361869msgid "Use this options for debugging purposes only."
    18371870msgstr ""
    18381871
    1839 #: includes/class-pis-posts-in-sidebar.php:4941
     1872#: includes/class-pis-posts-in-sidebar.php:4993
    18401873msgid "Deactivate the following option only if you want to display debugging information publicly on your site."
    18411874msgstr ""
    18421875
    1843 #: includes/class-pis-posts-in-sidebar.php:4945
     1876#: includes/class-pis-posts-in-sidebar.php:4997
    18441877msgid "Display debugging information to admins only"
    18451878msgstr ""
    18461879
    1847 #: includes/class-pis-posts-in-sidebar.php:4956
     1880#: includes/class-pis-posts-in-sidebar.php:5008
    18481881msgid "Display the query for the widget"
    18491882msgstr ""
    18501883
    1851 #: includes/class-pis-posts-in-sidebar.php:4966
     1884#: includes/class-pis-posts-in-sidebar.php:5018
    18521885msgid "Display the complete set of parameters for the widget"
    18531886msgstr ""
    18541887
    1855 #: includes/class-pis-posts-in-sidebar.php:4976
     1888#: includes/class-pis-posts-in-sidebar.php:5028
    18561889msgid "Display the ID of the post just before the post title"
    18571890msgstr ""
    18581891
    18591892#. translators: %s contains the post ID as string.
    1860 #: includes/class-pis-posts-in-sidebar.php:4982
     1893#: includes/class-pis-posts-in-sidebar.php:5034
    18611894msgid "The ID will be displayed as %s."
    18621895msgstr ""
    18631896
    1864 #: includes/class-pis-posts-in-sidebar.php:4994
     1897#: includes/class-pis-posts-in-sidebar.php:5046
    18651898msgid "Note for widget duplication"
    18661899msgstr ""
    18671900
    1868 #: includes/class-pis-posts-in-sidebar.php:4998
     1901#: includes/class-pis-posts-in-sidebar.php:5050
    18691902msgid "When you duplicate the widget, please reload the page, so that you can open the panels in the duplicated widget."
    18701903msgstr ""
  • posts-in-sidebar/tags/4.16.3/posts-in-sidebar.php

    r2616008 r2622527  
    1717 * Plugin URI: https://dev.aldolat.it/projects/posts-in-sidebar/
    1818 * Description: Publish a list of posts in your sidebar
    19  * Version: 4.16.2
     19 * Version: 4.16.3
    2020 * Author: Aldo Latino
    2121 * Author URI: https://www.aldolat.it/
     
    6767     * Define the version of the plugin.
    6868     */
    69     define( 'PIS_VERSION', '4.16.2' );
     69    define( 'PIS_VERSION', '4.16.3' );
    7070
    7171    /*
  • posts-in-sidebar/tags/4.16.3/readme.txt

    r2616008 r2622527  
    55Requires at least: 4.6
    66Tested up to: 5.8
    7 Stable tag: 4.16.2
     7Stable tag: 4.16.3
    88License: GPLv3 or later
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    101101== Changelog ==
    102102
    103 = 4.16.2 =
     103= 4.16.3 =
    104104
    105 * Fixed displaying post ID to admins only.
    106 
    107 = 4.16.1 =
    108 
    109 * Added a new option in the Debug section for displaying the post ID just before the post title.
    110 * Changed the comment for an option.
    111 * Fixed i18n for a string.
     105* Changed admin UI in the "Getting posts" section.
    112106
    113107The full changelog is documented in the changelog file released along with the plugin package and is hosted on [GitHub](https://github.com/aldolat/posts-in-sidebar/blob/master/CHANGELOG.md).
  • posts-in-sidebar/trunk/CHANGELOG.md

    r2616008 r2622527  
    77
    88## [Unreleased]
     9
     10## [4.16.3] - 2021-10-31
     11### Changed
     12* Changed admin UI in the "Getting posts" section.
    913
    1014## [4.16.2] - 2021-10-18
     
    648652
    649653[Unreleased]: https://github.com/aldolat/posts-in-sidebar/commits/develop
     654[4.16.3]: https://github.com/aldolat/posts-in-sidebar/compare/4.16.2...4.16.3
    650655[4.16.2]: https://github.com/aldolat/posts-in-sidebar/compare/4.16.1...4.16.2
    651656[4.16.1]: https://github.com/aldolat/posts-in-sidebar/compare/4.16.0...4.16.1
  • posts-in-sidebar/trunk/README.md

    r2616008 r2622527  
    88**Requires at least:** 4.6 
    99**Tested up to:** 5.8 
    10 **Stable tag:** 4.16.2 
     10**Stable tag:** 4.16.3 
    1111**License:** GPLv3 or later 
    1212**License URI:** <https://www.gnu.org/licenses/gpl-3.0.html>
     
    116116## Changelog
    117117
    118 ### 4.16.2
     118### 4.16.3
    119119
    120 * Fixed displaying post ID to admins only.
     120* Changed admin UI in the "Getting posts" section.
    121121
    122122The full changelog is documented in the changelog file released along with the plugin package and is hosted on [GitHub](https://github.com/aldolat/posts-in-sidebar/blob/master/CHANGELOG.md).
  • posts-in-sidebar/trunk/assets/pis-admin.css

    r1934547 r2622527  
    161161    margin-top: 1em;
    162162}
     163.pis-container h5.pis-simple-title {
     164    margin-bottom: 0;
     165    border-top: 1px solid #ccc;
     166    padding-top: 1em;
     167}
    163168
    164169/*
  • posts-in-sidebar/trunk/changelog.txt

    r2616008 r2622527  
    11== Changelog ==
     2
     3= 4.16.3 =
     4
     5* Changed admin UI in the "Getting posts" section.
    26
    37= 4.16.2 =
  • posts-in-sidebar/trunk/includes/class-pis-posts-in-sidebar.php

    r2615427 r2622527  
    850850                <div class="pis-section">
    851851
    852                     <div class="pis-column-container">
     852                    <h5 class="pis-simple-title"><?php esc_html_e( 'Post type', 'posts-in-sidebar' ); ?></h5>
     853
     854                    <div class="pis-column-container pis-2col">
    853855
    854856                        <div class="pis-column">
    855 
    856857                            <?php
    857858                            // ================= Post types.
     
    865866                            );
    866867                            ?>
    867 
     868                        </div>
     869
     870                        <div class="pis-column">
    868871                            <?php
    869872                            // ================= Multiple post types
     
    877880                            );
    878881                            ?>
    879 
     882                        </div>
     883
     884                    </div>
     885
     886                    <div class="pis-column-container pis-2col">
     887
     888                        <h5 class="pis-simple-title"><?php esc_html_e( 'Get posts by IDs', 'posts-in-sidebar' ); ?></h5>
     889
     890                        <div class="pis-column">
    880891                            <?php
    881892                            // ================= Posts ID
    882893                            pis_form_input_text(
    883                                 esc_html__( 'Get these posts exactly', 'posts-in-sidebar' ),
     894                                esc_html__( 'Get posts with these IDs', 'posts-in-sidebar' ),
    884895                                $this->get_field_id( 'posts_id' ),
    885896                                $this->get_field_name( 'posts_id' ),
     
    889900                            );
    890901                            ?>
    891 
    892902                        </div>
    893903
    894904                        <div class="pis-column">
    895 
     905                            <?php
     906                            // ================= Post parent
     907                            pis_form_input_text(
     908                                esc_html__( 'Get posts whose parent is in these IDs', 'posts-in-sidebar' ),
     909                                $this->get_field_id( 'post_parent_in' ),
     910                                $this->get_field_name( 'post_parent_in' ),
     911                                esc_attr( $instance['post_parent_in'] ),
     912                                esc_html__( '2, 5, 12, 14, 20', 'posts-in-sidebar' ),
     913                                esc_html__( 'Enter IDs, comma separated.', 'posts-in-sidebar' )
     914                            );
     915                            ?>
     916                        </div>
     917
     918                    </div>
     919
     920                    <div class="pis-column-container pis-2col">
     921
     922                        <h5 class="pis-simple-title"><?php esc_html_e( 'Get posts by taxonomy', 'posts-in-sidebar' ); ?></h5>
     923
     924                        <div class="pis-column">
    896925                            <?php
    897926                            // ================= Category
     
    906935                            );
    907936                            ?>
    908 
    909937                        </div>
    910938
    911939                        <div class="pis-column">
    912 
    913940                            <?php
    914941                            // ================= Tag
     
    923950                            );
    924951                            ?>
    925 
    926952                        </div>
    927953
    928954                    </div>
    929955
    930                     <div class="pis-column-container">
     956                    <div class="pis-column-container pis-2col">
     957
     958                        <h5 class="pis-simple-title"><?php esc_html_e( 'Get posts by author', 'posts-in-sidebar' ); ?></h5>
    931959
    932960                        <div class="pis-column">
    933 
    934961                            <?php
    935962                            // ================= Author
     
    942969                            );
    943970                            ?>
    944 
     971                        </div>
     972
     973                        <div class="pis-column">
    945974                            <?php
    946975                            // ================= Multiple authors
     
    954983                            );
    955984                            ?>
    956 
     985                        </div>
     986
     987                    </div>
     988
     989                    <div class="pis-column-container pis-2col">
     990
     991                        <h5 class="pis-simple-title"><?php esc_html_e( 'Get posts by post format and status', 'posts-in-sidebar' ); ?></h5>
     992
     993                        <div class="pis-column">
     994                            <?php
     995                            // ================= Post format
     996                            pis_form_select(
     997                                esc_html__( 'Get posts with this post format', 'posts-in-sidebar' ),
     998                                $this->get_field_id( 'post_format' ),
     999                                $this->get_field_name( 'post_format' ),
     1000                                pis_select_post_formats(),
     1001                                $instance['post_format']
     1002                            );
     1003                            ?>
     1004                        </div>
     1005                        <div class="pis-column">
     1006                            <?php
     1007                            // ================= Post status
     1008                            pis_form_select(
     1009                                esc_html__( 'Get posts with this post status', 'posts-in-sidebar' ),
     1010                                $this->get_field_id( 'post_status' ),
     1011                                $this->get_field_name( 'post_status' ),
     1012                                pis_select_post_status(),
     1013                                $instance['post_status']
     1014                            );
     1015                            ?>
     1016                        </div>
     1017
     1018                    </div>
     1019
     1020                    <div class="pis-column-container pis-2col">
     1021
     1022                        <h5 class="pis-simple-title"><?php esc_html_e( 'Get posts by custom field', 'posts-in-sidebar' ); ?></h5>
     1023
     1024                        <div class="pis-column">
     1025                            <?php
     1026                            // ================= Post meta key
     1027                            pis_form_input_text(
     1028                                esc_html__( 'Get posts with this meta key', 'posts-in-sidebar' ),
     1029                                $this->get_field_id( 'post_meta_key' ),
     1030                                $this->get_field_name( 'post_meta_key' ),
     1031                                esc_attr( $instance['post_meta_key'] ),
     1032                                esc_html__( 'meta-key', 'posts-in-sidebar' )
     1033                            );
     1034                            ?>
     1035                        </div>
     1036
     1037                        <div class="pis-column">
     1038                            <?php
     1039                            // ================= Post meta value
     1040                            pis_form_input_text(
     1041                                esc_html__( 'Get posts with this meta value', 'posts-in-sidebar' ),
     1042                                $this->get_field_id( 'post_meta_val' ),
     1043                                $this->get_field_name( 'post_meta_val' ),
     1044                                esc_attr( $instance['post_meta_val'] ),
     1045                                esc_html__( 'meta-value', 'posts-in-sidebar' )
     1046                            );
     1047                            ?>
     1048                        </div>
     1049
     1050                    </div>
     1051
     1052                    <div class="pis-column-container pis-2col">
     1053
     1054                        <h5 class="pis-simple-title"><?php esc_html_e( 'Get posts by recent comments and search', 'posts-in-sidebar' ); ?></h5>
     1055
     1056                        <div class="pis-column">
    9571057                            <?php
    9581058                            // ================= Get posts by recent comments
     
    9651065                            );
    9661066                            ?>
    967 
    9681067                        </div>
    9691068
    9701069                        <div class="pis-column">
    971 
    972                             <?php
    973                             // ================= Post parent
    974                             pis_form_input_text(
    975                                 esc_html__( 'Get posts whose parent is in these IDs', 'posts-in-sidebar' ),
    976                                 $this->get_field_id( 'post_parent_in' ),
    977                                 $this->get_field_name( 'post_parent_in' ),
    978                                 esc_attr( $instance['post_parent_in'] ),
    979                                 esc_html__( '2, 5, 12, 14, 20', 'posts-in-sidebar' ),
    980                                 esc_html__( 'Enter IDs, comma separated.', 'posts-in-sidebar' )
    981                             );
    982                             ?>
    983 
    984                             <?php
    985                             // ================= Post format
    986                             pis_form_select(
    987                                 esc_html__( 'Get posts with this post format', 'posts-in-sidebar' ),
    988                                 $this->get_field_id( 'post_format' ),
    989                                 $this->get_field_name( 'post_format' ),
    990                                 pis_select_post_formats(),
    991                                 $instance['post_format']
    992                             );
    993                             ?>
    994 
    995                             <?php
    996                             // ================= Post status
    997                             pis_form_select(
    998                                 esc_html__( 'Get posts with this post status', 'posts-in-sidebar' ),
    999                                 $this->get_field_id( 'post_status' ),
    1000                                 $this->get_field_name( 'post_status' ),
    1001                                 pis_select_post_status(),
    1002                                 $instance['post_status']
    1003                             );
    1004                             ?>
    1005 
    1006                         </div>
    1007 
    1008                         <div class="pis-column">
    1009 
    1010                             <?php
    1011                             // ================= Post meta key
    1012                             pis_form_input_text(
    1013                                 esc_html__( 'Get posts with this meta key', 'posts-in-sidebar' ),
    1014                                 $this->get_field_id( 'post_meta_key' ),
    1015                                 $this->get_field_name( 'post_meta_key' ),
    1016                                 esc_attr( $instance['post_meta_key'] ),
    1017                                 esc_html__( 'meta-key', 'posts-in-sidebar' )
    1018                             );
    1019                             ?>
    1020 
    1021                             <?php
    1022                             // ================= Post meta value
    1023                             pis_form_input_text(
    1024                                 esc_html__( 'Get posts with this meta value', 'posts-in-sidebar' ),
    1025                                 $this->get_field_id( 'post_meta_val' ),
    1026                                 $this->get_field_name( 'post_meta_val' ),
    1027                                 esc_attr( $instance['post_meta_val'] ),
    1028                                 esc_html__( 'meta-value', 'posts-in-sidebar' )
    1029                             );
    1030                             ?>
    1031 
    10321070                            <?php
    10331071                            // ================= Search
     
    10401078                            );
    10411079                            ?>
    1042 
     1080                        </div>
     1081
     1082                    </div>
     1083
     1084                    <div class="pis-column-container pis-2col">
     1085
     1086                        <h5 class="pis-simple-title"><?php esc_html_e( 'Get posts by password', 'posts-in-sidebar' ); ?></h5>
     1087
     1088                        <div class="pis-column">
    10431089                            <?php
    10441090                            // ================= Post with/without password
     
    10511097                            );
    10521098                            ?>
    1053 
     1099                        </div>
     1100
     1101                        <div class="pis-column">
    10541102                            <?php
    10551103                            // ================= Post password
     
    10631111                            );
    10641112                            ?>
    1065 
    10661113                        </div>
    10671114
     
    10691116
    10701117                    <div class="pis-column-container pis-2col">
     1118
     1119                        <h5 class="pis-simple-title"><?php esc_html_e( 'Number of posts, order, sticky posts and skipping', 'posts-in-sidebar' ); ?></h5>
    10711120
    10721121                        <div class="pis-column">
     
    11301179                                esc_attr( $instance['offset_number'] ),
    11311180                                '5',
    1132                                 // translators: %s is -1.
    11331181                                sprintf(
     1182                                    // translators: %s is -1.
    11341183                                    esc_html__( 'This option will be ignored if you set %s in "Get this number of posts".', 'posts-in-sidebar' ),
    11351184                                    '<code>-1</code>'
     
    11731222                                    <?php
    11741223                                    esc_html_e(
    1175                                         'When the option "When on single posts, get posts from the current category" is activated and the post has multiple categories, Posts in Sidebar will choose the category with the lowest initial letter, just as WordPress does when we get the list of the categories of a post.', 'posts-in-sidebar'
     1224                                        'When the option "When on single posts, get posts from the current category" is activated and the post has multiple categories, Posts in Sidebar will choose the category with the lowest initial letter, just as WordPress does when we get the list of the categories of a post.',
     1225                                        'posts-in-sidebar'
    11761226                                    );
    11771227                                    ?>
     
    11821232                                        // translators: Opening and closing "strong" HTML tag.
    11831233                                        esc_html__(
    1184                                             'If you activate the option %1$s"Use the main category as WordPress does for permalinks"%2$s (formerly known here as "Sort categories"), Posts in Sidebar will get the category with the lowest category ID. This is the WordPress behaviour when it determines the permalink structure if the category is used in the permalink.', 'posts-in-sidebar'
     1234                                            'If you activate the option %1$s"Use the main category as WordPress does for permalinks"%2$s (formerly known here as "Sort categories"), Posts in Sidebar will get the category with the lowest category ID. This is the WordPress behaviour when it determines the permalink structure if the category is used in the permalink.',
     1235                                            'posts-in-sidebar'
    11851236                                        ),
    11861237                                        '<strong>',
     
    11941245                                        // translators: Opening and closing "strong" HTML tag.
    11951246                                        esc_html__(
    1196                                             'If you use the Yoast SEO plugin and want to use the main category as defined with that plugin, activate the option %1$s"Use the main category as defined in the Yoast SEO plugin"%2$s.', 'posts-in-sidebar'
     1247                                            'If you use the Yoast SEO plugin and want to use the main category as defined with that plugin, activate the option %1$s"Use the main category as defined in the Yoast SEO plugin"%2$s.',
     1248                                            'posts-in-sidebar'
    11971249                                        ),
    11981250                                        '<strong>',
  • posts-in-sidebar/trunk/languages/posts-in-sidebar.pot

    r2616008 r2622527  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Posts in Sidebar 4.16.2\n"
     5"Project-Id-Version: Posts in Sidebar 4.16.3\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/posts-in-sidebar\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2021-10-18T19:09:28+02:00\n"
     12"POT-Creation-Date: 2021-10-31T09:49:16+01:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.4.0\n"
     
    7676#. translators: there is some code in placeholders.
    7777#: includes/class-pis-posts-in-sidebar.php:845
    78 #: includes/class-pis-posts-in-sidebar.php:2400
    79 #: includes/class-pis-posts-in-sidebar.php:3342
     78#: includes/class-pis-posts-in-sidebar.php:2452
     79#: includes/class-pis-posts-in-sidebar.php:3394
    8080msgid "If a field requires one or more IDs, install %1$sthis plugin%2$s to easily find the IDs."
    8181msgstr ""
    8282
    83 #: includes/class-pis-posts-in-sidebar.php:859
    84 #: includes/class-pis-posts-in-sidebar.php:1243
    85 #: includes/class-pis-posts-in-sidebar.php:1367
    86 #: includes/class-pis-posts-in-sidebar.php:1502
    87 #: includes/class-pis-posts-in-sidebar.php:1627
    88 #: includes/class-pis-posts-in-sidebar.php:1772
    89 #: includes/class-pis-posts-in-sidebar.php:1930
    90 #: includes/class-pis-posts-in-sidebar.php:2045
    91 #: includes/class-pis-posts-in-sidebar.php:2160
    92 #: includes/class-pis-posts-in-sidebar.php:2275
     83#: includes/class-pis-posts-in-sidebar.php:852
     84#: includes/class-pis-posts-in-sidebar.php:860
     85#: includes/class-pis-posts-in-sidebar.php:1295
     86#: includes/class-pis-posts-in-sidebar.php:1419
     87#: includes/class-pis-posts-in-sidebar.php:1554
     88#: includes/class-pis-posts-in-sidebar.php:1679
     89#: includes/class-pis-posts-in-sidebar.php:1824
     90#: includes/class-pis-posts-in-sidebar.php:1982
     91#: includes/class-pis-posts-in-sidebar.php:2097
     92#: includes/class-pis-posts-in-sidebar.php:2212
     93#: includes/class-pis-posts-in-sidebar.php:2327
    9394#: includes/pis-select-options.php:167
    9495#: includes/pis-select-options.php:244
     
    9697msgstr ""
    9798
    98 #: includes/class-pis-posts-in-sidebar.php:864
    99 #: includes/class-pis-posts-in-sidebar.php:1248
    100 #: includes/class-pis-posts-in-sidebar.php:1372
    101 #: includes/class-pis-posts-in-sidebar.php:1507
    102 #: includes/class-pis-posts-in-sidebar.php:1632
    103 #: includes/class-pis-posts-in-sidebar.php:1777
    104 #: includes/class-pis-posts-in-sidebar.php:1935
    105 #: includes/class-pis-posts-in-sidebar.php:2050
    106 #: includes/class-pis-posts-in-sidebar.php:2165
    107 #: includes/class-pis-posts-in-sidebar.php:2280
     99#: includes/class-pis-posts-in-sidebar.php:865
     100#: includes/class-pis-posts-in-sidebar.php:1300
     101#: includes/class-pis-posts-in-sidebar.php:1424
     102#: includes/class-pis-posts-in-sidebar.php:1559
     103#: includes/class-pis-posts-in-sidebar.php:1684
     104#: includes/class-pis-posts-in-sidebar.php:1829
     105#: includes/class-pis-posts-in-sidebar.php:1987
     106#: includes/class-pis-posts-in-sidebar.php:2102
     107#: includes/class-pis-posts-in-sidebar.php:2217
     108#: includes/class-pis-posts-in-sidebar.php:2332
    108109msgid "Select a single post type."
    109110msgstr ""
    110111
    111 #: includes/class-pis-posts-in-sidebar.php:871
    112 #: includes/class-pis-posts-in-sidebar.php:1255
    113 #: includes/class-pis-posts-in-sidebar.php:1379
    114 #: includes/class-pis-posts-in-sidebar.php:1514
    115 #: includes/class-pis-posts-in-sidebar.php:1639
    116 #: includes/class-pis-posts-in-sidebar.php:1784
    117 #: includes/class-pis-posts-in-sidebar.php:1942
    118 #: includes/class-pis-posts-in-sidebar.php:2057
    119 #: includes/class-pis-posts-in-sidebar.php:2172
    120 #: includes/class-pis-posts-in-sidebar.php:2287
     112#: includes/class-pis-posts-in-sidebar.php:874
     113#: includes/class-pis-posts-in-sidebar.php:1307
     114#: includes/class-pis-posts-in-sidebar.php:1431
     115#: includes/class-pis-posts-in-sidebar.php:1566
     116#: includes/class-pis-posts-in-sidebar.php:1691
     117#: includes/class-pis-posts-in-sidebar.php:1836
     118#: includes/class-pis-posts-in-sidebar.php:1994
     119#: includes/class-pis-posts-in-sidebar.php:2109
     120#: includes/class-pis-posts-in-sidebar.php:2224
     121#: includes/class-pis-posts-in-sidebar.php:2339
    121122msgid "Multiple post types"
    122123msgstr ""
    123124
    124 #: includes/class-pis-posts-in-sidebar.php:875
    125 #: includes/class-pis-posts-in-sidebar.php:1259
    126 #: includes/class-pis-posts-in-sidebar.php:1383
    127 #: includes/class-pis-posts-in-sidebar.php:1518
    128 #: includes/class-pis-posts-in-sidebar.php:1643
    129 #: includes/class-pis-posts-in-sidebar.php:1788
    130 #: includes/class-pis-posts-in-sidebar.php:1946
    131 #: includes/class-pis-posts-in-sidebar.php:2061
    132 #: includes/class-pis-posts-in-sidebar.php:2176
    133 #: includes/class-pis-posts-in-sidebar.php:2291
    134 msgid "post, page, book, recipe"
    135 msgstr ""
    136 
    137 #: includes/class-pis-posts-in-sidebar.php:876
    138 #: includes/class-pis-posts-in-sidebar.php:1260
    139 #: includes/class-pis-posts-in-sidebar.php:1384
    140 #: includes/class-pis-posts-in-sidebar.php:1519
    141 #: includes/class-pis-posts-in-sidebar.php:1644
    142 #: includes/class-pis-posts-in-sidebar.php:1789
    143 #: includes/class-pis-posts-in-sidebar.php:1947
    144 #: includes/class-pis-posts-in-sidebar.php:2062
    145 #: includes/class-pis-posts-in-sidebar.php:2177
    146 #: includes/class-pis-posts-in-sidebar.php:2292
    147 msgid "Enter post types slugs, comma separated. This option, if filled, overrides the option above."
    148 msgstr ""
    149 
    150 #: includes/class-pis-posts-in-sidebar.php:883
    151 msgid "Get these posts exactly"
    152 msgstr ""
    153 
    154 #: includes/class-pis-posts-in-sidebar.php:888
    155 #: includes/class-pis-posts-in-sidebar.php:980
    156 #: includes/class-pis-posts-in-sidebar.php:3363
    157 #: includes/class-pis-posts-in-sidebar.php:3380
    158 #: includes/class-pis-posts-in-sidebar.php:3401
    159 #: includes/class-pis-posts-in-sidebar.php:3413
    160 #: includes/class-pis-posts-in-sidebar.php:3429
    161 msgid "Enter IDs, comma separated."
    162 msgstr ""
    163 
    164 #: includes/class-pis-posts-in-sidebar.php:899
    165 msgid "Get posts with these categories"
    166 msgstr ""
    167 
    168 #: includes/class-pis-posts-in-sidebar.php:903
    169 msgid "books, ebooks"
    170 msgstr ""
    171 
    172 #. translators: there is some code in placeholders.
    173 #: includes/class-pis-posts-in-sidebar.php:905
    174 msgid "Enter slugs, comma separated. To display posts that have all of the categories, use %1$s (a plus) between terms, for example:%2$s."
    175 msgstr ""
    176 
    177 #: includes/class-pis-posts-in-sidebar.php:916
    178 msgid "Get posts with these tags"
    179 msgstr ""
    180 
    181 #: includes/class-pis-posts-in-sidebar.php:920
    182 msgid "best-sellers"
    183 msgstr ""
    184 
    185 #. translators: there is some code in placeholders.
    186 #: includes/class-pis-posts-in-sidebar.php:922
    187 msgid "Enter slugs, comma separated. To display posts that have all of the tags, use %1$s (a plus) between terms, for example:%2$s."
    188 msgstr ""
    189 
    190 #: includes/class-pis-posts-in-sidebar.php:937
    191 msgid "Get posts by this author"
    192 msgstr ""
    193 
    194 #: includes/class-pis-posts-in-sidebar.php:948
    195 msgid "Get posts by these authors"
    196 msgstr ""
    197 
    198 #: includes/class-pis-posts-in-sidebar.php:952
    199 msgid "1, 23, 45"
    200 msgstr ""
    201 
    202 #: includes/class-pis-posts-in-sidebar.php:953
    203 msgid "Enter IDs, comma separated. Note that if you fill this field, the previous one will be ignored."
    204 msgstr ""
    205 
    206 #: includes/class-pis-posts-in-sidebar.php:960
    207 msgid "Get posts by recent comments"
    208 msgstr ""
    209 
    210 #: includes/class-pis-posts-in-sidebar.php:964
    211 msgid "Only published posts, in descending order, will be retrieved."
    212 msgstr ""
    213 
    214 #: includes/class-pis-posts-in-sidebar.php:975
    215 msgid "Get posts whose parent is in these IDs"
    216 msgstr ""
    217 
    218 #: includes/class-pis-posts-in-sidebar.php:979
    219 msgid "2, 5, 12, 14, 20"
    220 msgstr ""
    221 
    222 #: includes/class-pis-posts-in-sidebar.php:987
    223 msgid "Get posts with this post format"
    224 msgstr ""
    225 
    226 #: includes/class-pis-posts-in-sidebar.php:998
    227 msgid "Get posts with this post status"
    228 msgstr ""
    229 
    230 #: includes/class-pis-posts-in-sidebar.php:1013
    231 msgid "Get posts with this meta key"
    232 msgstr ""
    233 
    234 #: includes/class-pis-posts-in-sidebar.php:1017
    235 msgid "meta-key"
    236 msgstr ""
    237 
    238 #: includes/class-pis-posts-in-sidebar.php:1024
    239 msgid "Get posts with this meta value"
    240 msgstr ""
    241 
    242 #: includes/class-pis-posts-in-sidebar.php:1028
    243 msgid "meta-value"
    244 msgstr ""
    245 
    246 #: includes/class-pis-posts-in-sidebar.php:1035
    247 msgid "Get posts from this search"
    248 msgstr ""
    249 
    250 #: includes/class-pis-posts-in-sidebar.php:1039
    251 msgid "words to search"
    252 msgstr ""
    253 
    254 #: includes/class-pis-posts-in-sidebar.php:1046
    255 msgid "Get posts with/without password"
    256 msgstr ""
    257 
    258 #: includes/class-pis-posts-in-sidebar.php:1057
    259 msgid "Get posts with this password"
    260 msgstr ""
    261 
    262 #: includes/class-pis-posts-in-sidebar.php:1062
    263 msgid "correct horse battery staple"
    264 msgstr ""
    265 
    266 #: includes/class-pis-posts-in-sidebar.php:1077
    267 msgid "Get this number of posts"
    268 msgstr ""
    269 
    270 #. translators: %s is -1.
    271 #: includes/class-pis-posts-in-sidebar.php:1083
    272 #: includes/class-pis-posts-in-sidebar.php:1277
    273 #: includes/class-pis-posts-in-sidebar.php:1412
    274 #: includes/class-pis-posts-in-sidebar.php:1536
    275 #: includes/class-pis-posts-in-sidebar.php:1683
    276 #: includes/class-pis-posts-in-sidebar.php:1806
    277 #: includes/class-pis-posts-in-sidebar.php:1964
    278 #: includes/class-pis-posts-in-sidebar.php:2079
    279 #: includes/class-pis-posts-in-sidebar.php:2194
    280 #: includes/class-pis-posts-in-sidebar.php:2309
    281 msgid "The value %s shows all the posts."
    282 msgstr ""
    283 
    284 #: includes/class-pis-posts-in-sidebar.php:1090
    285 msgid "Do not display sticky posts on top of other posts"
    286 msgstr ""
    287 
    288 #: includes/class-pis-posts-in-sidebar.php:1094
    289 msgid "If you activate this option, sticky posts will be managed as other posts. Sticky post status will be automatically ignored if you set up an author or a taxonomy in this widget."
    290 msgstr ""
    291 
    292 #: includes/class-pis-posts-in-sidebar.php:1105
    293 #: includes/class-pis-posts-in-sidebar.php:1298
    294 #: includes/class-pis-posts-in-sidebar.php:1433
    295 #: includes/class-pis-posts-in-sidebar.php:1557
    296 #: includes/class-pis-posts-in-sidebar.php:1703
    297 #: includes/class-pis-posts-in-sidebar.php:1827
     125#: includes/class-pis-posts-in-sidebar.php:878
     126#: includes/class-pis-posts-in-sidebar.php:1311
     127#: includes/class-pis-posts-in-sidebar.php:1435
     128#: includes/class-pis-posts-in-sidebar.php:1570
     129#: includes/class-pis-posts-in-sidebar.php:1695
     130#: includes/class-pis-posts-in-sidebar.php:1840
    298131#: includes/class-pis-posts-in-sidebar.php:1998
    299132#: includes/class-pis-posts-in-sidebar.php:2113
    300133#: includes/class-pis-posts-in-sidebar.php:2228
    301134#: includes/class-pis-posts-in-sidebar.php:2343
     135msgid "post, page, book, recipe"
     136msgstr ""
     137
     138#: includes/class-pis-posts-in-sidebar.php:879
     139#: includes/class-pis-posts-in-sidebar.php:1312
     140#: includes/class-pis-posts-in-sidebar.php:1436
     141#: includes/class-pis-posts-in-sidebar.php:1571
     142#: includes/class-pis-posts-in-sidebar.php:1696
     143#: includes/class-pis-posts-in-sidebar.php:1841
     144#: includes/class-pis-posts-in-sidebar.php:1999
     145#: includes/class-pis-posts-in-sidebar.php:2114
     146#: includes/class-pis-posts-in-sidebar.php:2229
     147#: includes/class-pis-posts-in-sidebar.php:2344
     148msgid "Enter post types slugs, comma separated. This option, if filled, overrides the option above."
     149msgstr ""
     150
     151#: includes/class-pis-posts-in-sidebar.php:888
     152msgid "Get posts by IDs"
     153msgstr ""
     154
     155#: includes/class-pis-posts-in-sidebar.php:894
     156msgid "Get posts with these IDs"
     157msgstr ""
     158
     159#: includes/class-pis-posts-in-sidebar.php:899
     160#: includes/class-pis-posts-in-sidebar.php:913
     161#: includes/class-pis-posts-in-sidebar.php:3415
     162#: includes/class-pis-posts-in-sidebar.php:3432
     163#: includes/class-pis-posts-in-sidebar.php:3453
     164#: includes/class-pis-posts-in-sidebar.php:3465
     165#: includes/class-pis-posts-in-sidebar.php:3481
     166msgid "Enter IDs, comma separated."
     167msgstr ""
     168
     169#: includes/class-pis-posts-in-sidebar.php:908
     170msgid "Get posts whose parent is in these IDs"
     171msgstr ""
     172
     173#: includes/class-pis-posts-in-sidebar.php:912
     174msgid "2, 5, 12, 14, 20"
     175msgstr ""
     176
     177#: includes/class-pis-posts-in-sidebar.php:922
     178msgid "Get posts by taxonomy"
     179msgstr ""
     180
     181#: includes/class-pis-posts-in-sidebar.php:928
     182msgid "Get posts with these categories"
     183msgstr ""
     184
     185#: includes/class-pis-posts-in-sidebar.php:932
     186msgid "books, ebooks"
     187msgstr ""
     188
     189#. translators: there is some code in placeholders.
     190#: includes/class-pis-posts-in-sidebar.php:934
     191msgid "Enter slugs, comma separated. To display posts that have all of the categories, use %1$s (a plus) between terms, for example:%2$s."
     192msgstr ""
     193
     194#: includes/class-pis-posts-in-sidebar.php:943
     195msgid "Get posts with these tags"
     196msgstr ""
     197
     198#: includes/class-pis-posts-in-sidebar.php:947
     199msgid "best-sellers"
     200msgstr ""
     201
     202#. translators: there is some code in placeholders.
     203#: includes/class-pis-posts-in-sidebar.php:949
     204msgid "Enter slugs, comma separated. To display posts that have all of the tags, use %1$s (a plus) between terms, for example:%2$s."
     205msgstr ""
     206
     207#: includes/class-pis-posts-in-sidebar.php:958
     208msgid "Get posts by author"
     209msgstr ""
     210
     211#: includes/class-pis-posts-in-sidebar.php:964
     212msgid "Get posts by this author"
     213msgstr ""
     214
     215#: includes/class-pis-posts-in-sidebar.php:977
     216msgid "Get posts by these authors"
     217msgstr ""
     218
     219#: includes/class-pis-posts-in-sidebar.php:981
     220msgid "1, 23, 45"
     221msgstr ""
     222
     223#: includes/class-pis-posts-in-sidebar.php:982
     224msgid "Enter IDs, comma separated. Note that if you fill this field, the previous one will be ignored."
     225msgstr ""
     226
     227#: includes/class-pis-posts-in-sidebar.php:991
     228msgid "Get posts by post format and status"
     229msgstr ""
     230
     231#: includes/class-pis-posts-in-sidebar.php:997
     232msgid "Get posts with this post format"
     233msgstr ""
     234
     235#: includes/class-pis-posts-in-sidebar.php:1009
     236msgid "Get posts with this post status"
     237msgstr ""
     238
     239#: includes/class-pis-posts-in-sidebar.php:1022
     240msgid "Get posts by custom field"
     241msgstr ""
     242
     243#: includes/class-pis-posts-in-sidebar.php:1028
     244msgid "Get posts with this meta key"
     245msgstr ""
     246
     247#: includes/class-pis-posts-in-sidebar.php:1032
     248msgid "meta-key"
     249msgstr ""
     250
     251#: includes/class-pis-posts-in-sidebar.php:1041
     252msgid "Get posts with this meta value"
     253msgstr ""
     254
     255#: includes/class-pis-posts-in-sidebar.php:1045
     256msgid "meta-value"
     257msgstr ""
     258
     259#: includes/class-pis-posts-in-sidebar.php:1054
     260msgid "Get posts by recent comments and search"
     261msgstr ""
     262
     263#: includes/class-pis-posts-in-sidebar.php:1060
     264msgid "Get posts by recent comments"
     265msgstr ""
     266
     267#: includes/class-pis-posts-in-sidebar.php:1064
     268msgid "Only published posts, in descending order, will be retrieved."
     269msgstr ""
     270
     271#: includes/class-pis-posts-in-sidebar.php:1073
     272msgid "Get posts from this search"
     273msgstr ""
     274
     275#: includes/class-pis-posts-in-sidebar.php:1077
     276msgid "words to search"
     277msgstr ""
     278
     279#: includes/class-pis-posts-in-sidebar.php:1086
     280msgid "Get posts by password"
     281msgstr ""
     282
     283#: includes/class-pis-posts-in-sidebar.php:1092
     284msgid "Get posts with/without password"
     285msgstr ""
     286
     287#: includes/class-pis-posts-in-sidebar.php:1105
     288msgid "Get posts with this password"
     289msgstr ""
     290
     291#: includes/class-pis-posts-in-sidebar.php:1110
     292msgid "correct horse battery staple"
     293msgstr ""
     294
     295#: includes/class-pis-posts-in-sidebar.php:1119
     296msgid "Number of posts, order, sticky posts and skipping"
     297msgstr ""
     298
     299#: includes/class-pis-posts-in-sidebar.php:1126
     300msgid "Get this number of posts"
     301msgstr ""
     302
     303#. translators: %s is -1.
     304#: includes/class-pis-posts-in-sidebar.php:1132
     305#: includes/class-pis-posts-in-sidebar.php:1329
     306#: includes/class-pis-posts-in-sidebar.php:1464
     307#: includes/class-pis-posts-in-sidebar.php:1588
     308#: includes/class-pis-posts-in-sidebar.php:1735
     309#: includes/class-pis-posts-in-sidebar.php:1858
     310#: includes/class-pis-posts-in-sidebar.php:2016
     311#: includes/class-pis-posts-in-sidebar.php:2131
     312#: includes/class-pis-posts-in-sidebar.php:2246
     313#: includes/class-pis-posts-in-sidebar.php:2361
     314msgid "The value %s shows all the posts."
     315msgstr ""
     316
     317#: includes/class-pis-posts-in-sidebar.php:1139
     318msgid "Do not display sticky posts on top of other posts"
     319msgstr ""
     320
     321#: includes/class-pis-posts-in-sidebar.php:1143
     322msgid "If you activate this option, sticky posts will be managed as other posts. Sticky post status will be automatically ignored if you set up an author or a taxonomy in this widget."
     323msgstr ""
     324
     325#: includes/class-pis-posts-in-sidebar.php:1154
     326#: includes/class-pis-posts-in-sidebar.php:1350
     327#: includes/class-pis-posts-in-sidebar.php:1485
     328#: includes/class-pis-posts-in-sidebar.php:1609
     329#: includes/class-pis-posts-in-sidebar.php:1755
     330#: includes/class-pis-posts-in-sidebar.php:1879
     331#: includes/class-pis-posts-in-sidebar.php:2050
     332#: includes/class-pis-posts-in-sidebar.php:2165
     333#: includes/class-pis-posts-in-sidebar.php:2280
     334#: includes/class-pis-posts-in-sidebar.php:2395
    302335msgid "Order posts by"
    303336msgstr ""
    304337
    305 #: includes/class-pis-posts-in-sidebar.php:1116
    306 #: includes/class-pis-posts-in-sidebar.php:1309
    307 #: includes/class-pis-posts-in-sidebar.php:1444
    308 #: includes/class-pis-posts-in-sidebar.php:1568
     338#: includes/class-pis-posts-in-sidebar.php:1165
     339#: includes/class-pis-posts-in-sidebar.php:1361
     340#: includes/class-pis-posts-in-sidebar.php:1496
     341#: includes/class-pis-posts-in-sidebar.php:1620
     342#: includes/class-pis-posts-in-sidebar.php:1766
     343#: includes/class-pis-posts-in-sidebar.php:1890
     344#: includes/class-pis-posts-in-sidebar.php:2061
     345#: includes/class-pis-posts-in-sidebar.php:2176
     346#: includes/class-pis-posts-in-sidebar.php:2291
     347#: includes/class-pis-posts-in-sidebar.php:2406
     348msgid "The order will be"
     349msgstr ""
     350
     351#: includes/class-pis-posts-in-sidebar.php:1176
     352#: includes/class-pis-posts-in-sidebar.php:1372
     353#: includes/class-pis-posts-in-sidebar.php:1507
     354#: includes/class-pis-posts-in-sidebar.php:1631
     355#: includes/class-pis-posts-in-sidebar.php:1777
     356#: includes/class-pis-posts-in-sidebar.php:1901
     357#: includes/class-pis-posts-in-sidebar.php:2023
     358#: includes/class-pis-posts-in-sidebar.php:2138
     359#: includes/class-pis-posts-in-sidebar.php:2253
     360#: includes/class-pis-posts-in-sidebar.php:2368
     361msgid "Skip this number of posts"
     362msgstr ""
     363
     364#. translators: %s is -1.
     365#: includes/class-pis-posts-in-sidebar.php:1183
     366msgid "This option will be ignored if you set %s in \"Get this number of posts\"."
     367msgstr ""
     368
     369#: includes/class-pis-posts-in-sidebar.php:1198
     370msgid "Change the query when on single posts"
     371msgstr ""
     372
     373#. translators: there is some code in placeholders.
     374#: includes/class-pis-posts-in-sidebar.php:1205
     375msgid "In this section you can change some parameters of the query when on single posts. %1$sActivate only one of these.%2$s"
     376msgstr ""
     377
     378#: includes/class-pis-posts-in-sidebar.php:1209
     379msgid "Get posts from current category"
     380msgstr ""
     381
     382#: includes/class-pis-posts-in-sidebar.php:1217
     383msgid "How this plugin chooses the main category of the post."
     384msgstr ""
     385
     386#: includes/class-pis-posts-in-sidebar.php:1223
     387msgid "When the option \"When on single posts, get posts from the current category\" is activated and the post has multiple categories, Posts in Sidebar will choose the category with the lowest initial letter, just as WordPress does when we get the list of the categories of a post."
     388msgstr ""
     389
     390#. translators: Opening and closing "strong" HTML tag.
     391#: includes/class-pis-posts-in-sidebar.php:1233
     392msgid "If you activate the option %1$s\"Use the main category as WordPress does for permalinks\"%2$s (formerly known here as \"Sort categories\"), Posts in Sidebar will get the category with the lowest category ID. This is the WordPress behaviour when it determines the permalink structure if the category is used in the permalink."
     393msgstr ""
     394
     395#. translators: Opening and closing "strong" HTML tag.
     396#: includes/class-pis-posts-in-sidebar.php:1246
     397msgid "If you use the Yoast SEO plugin and want to use the main category as defined with that plugin, activate the option %1$s\"Use the main category as defined in the Yoast SEO plugin\"%2$s."
     398msgstr ""
     399
     400#: includes/class-pis-posts-in-sidebar.php:1264
     401msgid "When on single posts, get posts from the current category"
     402msgstr ""
     403
     404#: includes/class-pis-posts-in-sidebar.php:1268
     405msgid "When activated, this option will ignore other parameters like tags, date, post formats, etc. If you don't want to ignore other parameters, activate the checkbox below, at the end of this panel."
     406msgstr ""
     407
     408#: includes/class-pis-posts-in-sidebar.php:1275
     409msgid "Use the main category as WordPress does for permalinks"
     410msgstr ""
     411
     412#: includes/class-pis-posts-in-sidebar.php:1285
     413msgid "Use the main category as defined in the Yoast SEO plugin"
     414msgstr ""
     415
     416#: includes/class-pis-posts-in-sidebar.php:1323
     417#: includes/class-pis-posts-in-sidebar.php:1458
     418#: includes/class-pis-posts-in-sidebar.php:1582
     419#: includes/class-pis-posts-in-sidebar.php:1729
     420#: includes/class-pis-posts-in-sidebar.php:1852
     421msgid "When on single posts, get this number of posts"
     422msgstr ""
     423
     424#: includes/class-pis-posts-in-sidebar.php:1336
     425#: includes/class-pis-posts-in-sidebar.php:1471
     426#: includes/class-pis-posts-in-sidebar.php:1595
     427#: includes/class-pis-posts-in-sidebar.php:1742
     428#: includes/class-pis-posts-in-sidebar.php:1865
     429msgid "When on single posts, use this widget title"
     430msgstr ""
     431
     432#. translators: %s is a placeholder for a taxonomy.
     433#: includes/class-pis-posts-in-sidebar.php:1341
     434#: includes/class-pis-posts-in-sidebar.php:2041
     435msgid "Posts under %s"
     436msgstr ""
     437
     438#. translators: there is some code in placeholders.
     439#: includes/class-pis-posts-in-sidebar.php:1343
     440#: includes/class-pis-posts-in-sidebar.php:2043
     441msgid "Use %s to display the name of the category."
     442msgstr ""
     443
     444#: includes/class-pis-posts-in-sidebar.php:1383
     445#: includes/class-pis-posts-in-sidebar.php:1518
     446#: includes/class-pis-posts-in-sidebar.php:1642
     447#: includes/class-pis-posts-in-sidebar.php:1788
     448#: includes/class-pis-posts-in-sidebar.php:1912
     449msgid "Post title matching"
     450msgstr ""
     451
     452#: includes/class-pis-posts-in-sidebar.php:1387
     453msgid "Show posts that match the main post title. WordPress will show posts under the same category of the main post and matching in a search for the title of the main post."
     454msgstr ""
     455
     456#: includes/class-pis-posts-in-sidebar.php:1397
     457msgid "Get posts from current tag"
     458msgstr ""
     459
     460#: includes/class-pis-posts-in-sidebar.php:1408
     461msgid "When on single posts, get posts from the current tag"
     462msgstr ""
     463
     464#: includes/class-pis-posts-in-sidebar.php:1412
     465msgid "When activated, this function will get posts from the tag of the post, ignoring other parameters like categories, date, post formats, etc. If the post has multiple tags, the plugin will use the first tag in the array of tags (the tag with the lowest initial letter). If you don't want to ignore other parameters, activate the checkbox below, at the end of this panel."
     466msgstr ""
     467
     468#: includes/class-pis-posts-in-sidebar.php:1443
     469msgid "Sort tags"
     470msgstr ""
     471
     472#: includes/class-pis-posts-in-sidebar.php:1447
     473msgid "When activated, this function will sort the tags of the main post by tag ID. In this way the plugin will get posts from the tag with the lowest ID."
     474msgstr ""
     475
     476#. translators: %s is the name of the tag.
     477#: includes/class-pis-posts-in-sidebar.php:1476
     478#: includes/class-pis-posts-in-sidebar.php:2156
     479msgid "Posts tagged with %s"
     480msgstr ""
     481
     482#. translators: there is some code in placeholders.
     483#: includes/class-pis-posts-in-sidebar.php:1478
     484#: includes/class-pis-posts-in-sidebar.php:2158
     485msgid "Use %s to display the name of the tag."
     486msgstr ""
     487
     488#: includes/class-pis-posts-in-sidebar.php:1522
     489msgid "Show posts that match the main post title. WordPress will show posts with the same tag of the main post and matching in a search for the title of the main post."
     490msgstr ""
     491
     492#: includes/class-pis-posts-in-sidebar.php:1532
     493msgid "Get posts from current author"
     494msgstr ""
     495
     496#: includes/class-pis-posts-in-sidebar.php:1543
     497msgid "When on single posts, get posts from the current author"
     498msgstr ""
     499
     500#: includes/class-pis-posts-in-sidebar.php:1547
     501msgid "When activated, this function will get posts by the author of the post, ignoring other parameters like categories, tags, date, post formats, etc. If you don't want to ignore other parameters, activate the checkbox below, at the end of this panel."
     502msgstr ""
     503
     504#. translators: %s is the name of the author.
     505#: includes/class-pis-posts-in-sidebar.php:1600
     506#: includes/class-pis-posts-in-sidebar.php:2271
     507msgid "Posts by %s"
     508msgstr ""
     509
     510#. translators: there is some code in placeholders.
     511#: includes/class-pis-posts-in-sidebar.php:1602
     512#: includes/class-pis-posts-in-sidebar.php:2273
     513msgid "Use %s to display the name of the author."
     514msgstr ""
     515
     516#: includes/class-pis-posts-in-sidebar.php:1646
     517msgid "Show posts that match the main post title. WordPress will show posts by the same author of the main post and matching in a search for the title of the main post."
     518msgstr ""
     519
     520#: includes/class-pis-posts-in-sidebar.php:1656
     521msgid "Get posts from taxonomy using custom field"
     522msgstr ""
     523
     524#: includes/class-pis-posts-in-sidebar.php:1667
     525msgid "When on single posts, get posts from this custom field"
     526msgstr ""
     527
     528#. translators: there is some code in placeholders.
     529#: includes/class-pis-posts-in-sidebar.php:1672
     530msgid "When activated, this function will get posts from the category defined by the user via custom field, ignoring other parameters like categories, tags, date, post formats, etc. %1$sRead more on this%2$s. If you don't want to ignore other parameters, activate the checkbox below, at the end of this panel."
     531msgstr ""
     532
     533#: includes/class-pis-posts-in-sidebar.php:1703
     534msgid "Get posts with this custom field key"
     535msgstr ""
     536
    309537#: includes/class-pis-posts-in-sidebar.php:1714
    310 #: includes/class-pis-posts-in-sidebar.php:1838
    311 #: includes/class-pis-posts-in-sidebar.php:2009
    312 #: includes/class-pis-posts-in-sidebar.php:2124
    313 #: includes/class-pis-posts-in-sidebar.php:2239
    314 #: includes/class-pis-posts-in-sidebar.php:2354
    315 msgid "The order will be"
    316 msgstr ""
    317 
    318 #: includes/class-pis-posts-in-sidebar.php:1127
    319 #: includes/class-pis-posts-in-sidebar.php:1320
    320 #: includes/class-pis-posts-in-sidebar.php:1455
    321 #: includes/class-pis-posts-in-sidebar.php:1579
    322 #: includes/class-pis-posts-in-sidebar.php:1725
    323 #: includes/class-pis-posts-in-sidebar.php:1849
    324 #: includes/class-pis-posts-in-sidebar.php:1971
    325 #: includes/class-pis-posts-in-sidebar.php:2086
    326 #: includes/class-pis-posts-in-sidebar.php:2201
    327 #: includes/class-pis-posts-in-sidebar.php:2316
    328 msgid "Skip this number of posts"
    329 msgstr ""
    330 
    331 #. translators: %s is -1.
    332 #: includes/class-pis-posts-in-sidebar.php:1134
    333 msgid "This option will be ignored if you set %s in \"Get this number of posts\"."
    334 msgstr ""
    335 
    336 #: includes/class-pis-posts-in-sidebar.php:1149
    337 msgid "Change the query when on single posts"
    338 msgstr ""
    339 
    340 #. translators: there is some code in placeholders.
    341 #: includes/class-pis-posts-in-sidebar.php:1156
    342 msgid "In this section you can change some parameters of the query when on single posts. %1$sActivate only one of these.%2$s"
    343 msgstr ""
    344 
    345 #: includes/class-pis-posts-in-sidebar.php:1160
    346 msgid "Get posts from current category"
    347 msgstr ""
    348 
    349 #: includes/class-pis-posts-in-sidebar.php:1168
    350 msgid "How this plugin chooses the main category of the post."
    351 msgstr ""
    352 
    353 #: includes/class-pis-posts-in-sidebar.php:1174
    354 msgid "When the option \"When on single posts, get posts from the current category\" is activated and the post has multiple categories, Posts in Sidebar will choose the category with the lowest initial letter, just as WordPress does when we get the list of the categories of a post."
    355 msgstr ""
    356 
    357 #. translators: Opening and closing "strong" HTML tag.
    358 #: includes/class-pis-posts-in-sidebar.php:1183
    359 msgid "If you activate the option %1$s\"Use the main category as WordPress does for permalinks\"%2$s (formerly known here as \"Sort categories\"), Posts in Sidebar will get the category with the lowest category ID. This is the WordPress behaviour when it determines the permalink structure if the category is used in the permalink."
    360 msgstr ""
    361 
    362 #. translators: Opening and closing "strong" HTML tag.
    363 #: includes/class-pis-posts-in-sidebar.php:1195
    364 msgid "If you use the Yoast SEO plugin and want to use the main category as defined with that plugin, activate the option %1$s\"Use the main category as defined in the Yoast SEO plugin\"%2$s."
    365 msgstr ""
    366 
    367 #: includes/class-pis-posts-in-sidebar.php:1212
    368 msgid "When on single posts, get posts from the current category"
    369 msgstr ""
    370 
    371 #: includes/class-pis-posts-in-sidebar.php:1216
    372 msgid "When activated, this option will ignore other parameters like tags, date, post formats, etc. If you don't want to ignore other parameters, activate the checkbox below, at the end of this panel."
    373 msgstr ""
    374 
    375 #: includes/class-pis-posts-in-sidebar.php:1223
    376 msgid "Use the main category as WordPress does for permalinks"
    377 msgstr ""
    378 
    379 #: includes/class-pis-posts-in-sidebar.php:1233
    380 msgid "Use the main category as defined in the Yoast SEO plugin"
    381 msgstr ""
    382 
    383 #: includes/class-pis-posts-in-sidebar.php:1271
    384 #: includes/class-pis-posts-in-sidebar.php:1406
    385 #: includes/class-pis-posts-in-sidebar.php:1530
    386 #: includes/class-pis-posts-in-sidebar.php:1677
    387 #: includes/class-pis-posts-in-sidebar.php:1800
    388 msgid "When on single posts, get this number of posts"
    389 msgstr ""
    390 
    391 #: includes/class-pis-posts-in-sidebar.php:1284
    392 #: includes/class-pis-posts-in-sidebar.php:1419
    393 #: includes/class-pis-posts-in-sidebar.php:1543
    394 #: includes/class-pis-posts-in-sidebar.php:1690
    395 #: includes/class-pis-posts-in-sidebar.php:1813
    396 msgid "When on single posts, use this widget title"
    397 msgstr ""
    398 
    399 #. translators: %s is a placeholder for a taxonomy.
    400 #: includes/class-pis-posts-in-sidebar.php:1289
    401 #: includes/class-pis-posts-in-sidebar.php:1989
    402 msgid "Posts under %s"
    403 msgstr ""
    404 
    405 #. translators: there is some code in placeholders.
    406 #: includes/class-pis-posts-in-sidebar.php:1291
    407 #: includes/class-pis-posts-in-sidebar.php:1991
    408 msgid "Use %s to display the name of the category."
    409 msgstr ""
    410 
    411 #: includes/class-pis-posts-in-sidebar.php:1331
    412 #: includes/class-pis-posts-in-sidebar.php:1466
    413 #: includes/class-pis-posts-in-sidebar.php:1590
    414 #: includes/class-pis-posts-in-sidebar.php:1736
    415 #: includes/class-pis-posts-in-sidebar.php:1860
    416 msgid "Post title matching"
    417 msgstr ""
    418 
    419 #: includes/class-pis-posts-in-sidebar.php:1335
    420 msgid "Show posts that match the main post title. WordPress will show posts under the same category of the main post and matching in a search for the title of the main post."
    421 msgstr ""
    422 
    423 #: includes/class-pis-posts-in-sidebar.php:1345
    424 msgid "Get posts from current tag"
    425 msgstr ""
    426 
    427 #: includes/class-pis-posts-in-sidebar.php:1356
    428 msgid "When on single posts, get posts from the current tag"
    429 msgstr ""
    430 
    431 #: includes/class-pis-posts-in-sidebar.php:1360
    432 msgid "When activated, this function will get posts from the tag of the post, ignoring other parameters like categories, date, post formats, etc. If the post has multiple tags, the plugin will use the first tag in the array of tags (the tag with the lowest initial letter). If you don't want to ignore other parameters, activate the checkbox below, at the end of this panel."
    433 msgstr ""
    434 
    435 #: includes/class-pis-posts-in-sidebar.php:1391
    436 msgid "Sort tags"
    437 msgstr ""
    438 
    439 #: includes/class-pis-posts-in-sidebar.php:1395
    440 msgid "When activated, this function will sort the tags of the main post by tag ID. In this way the plugin will get posts from the tag with the lowest ID."
    441 msgstr ""
    442 
    443 #. translators: %s is the name of the tag.
    444 #: includes/class-pis-posts-in-sidebar.php:1424
    445 #: includes/class-pis-posts-in-sidebar.php:2104
    446 msgid "Posts tagged with %s"
    447 msgstr ""
    448 
    449 #. translators: there is some code in placeholders.
    450 #: includes/class-pis-posts-in-sidebar.php:1426
    451 #: includes/class-pis-posts-in-sidebar.php:2106
    452 msgid "Use %s to display the name of the tag."
    453 msgstr ""
    454 
    455 #: includes/class-pis-posts-in-sidebar.php:1470
    456 msgid "Show posts that match the main post title. WordPress will show posts with the same tag of the main post and matching in a search for the title of the main post."
    457 msgstr ""
    458 
    459 #: includes/class-pis-posts-in-sidebar.php:1480
    460 msgid "Get posts from current author"
    461 msgstr ""
    462 
    463 #: includes/class-pis-posts-in-sidebar.php:1491
    464 msgid "When on single posts, get posts from the current author"
    465 msgstr ""
    466 
    467 #: includes/class-pis-posts-in-sidebar.php:1495
    468 msgid "When activated, this function will get posts by the author of the post, ignoring other parameters like categories, tags, date, post formats, etc. If you don't want to ignore other parameters, activate the checkbox below, at the end of this panel."
    469 msgstr ""
    470 
    471 #. translators: %s is the name of the author.
    472 #: includes/class-pis-posts-in-sidebar.php:1548
    473 #: includes/class-pis-posts-in-sidebar.php:2219
    474 msgid "Posts by %s"
    475 msgstr ""
    476 
    477 #. translators: there is some code in placeholders.
    478 #: includes/class-pis-posts-in-sidebar.php:1550
    479 #: includes/class-pis-posts-in-sidebar.php:2221
    480 msgid "Use %s to display the name of the author."
    481 msgstr ""
    482 
    483 #: includes/class-pis-posts-in-sidebar.php:1594
    484 msgid "Show posts that match the main post title. WordPress will show posts by the same author of the main post and matching in a search for the title of the main post."
    485 msgstr ""
    486 
    487 #: includes/class-pis-posts-in-sidebar.php:1604
    488 msgid "Get posts from taxonomy using custom field"
    489 msgstr ""
    490 
    491 #: includes/class-pis-posts-in-sidebar.php:1615
    492 msgid "When on single posts, get posts from this custom field"
    493 msgstr ""
    494 
    495 #. translators: there is some code in placeholders.
    496 #: includes/class-pis-posts-in-sidebar.php:1620
    497 msgid "When activated, this function will get posts from the category defined by the user via custom field, ignoring other parameters like categories, tags, date, post formats, etc. %1$sRead more on this%2$s. If you don't want to ignore other parameters, activate the checkbox below, at the end of this panel."
    498 msgstr ""
    499 
    500 #: includes/class-pis-posts-in-sidebar.php:1651
    501 msgid "Get posts with this custom field key"
    502 msgstr ""
    503 
    504 #: includes/class-pis-posts-in-sidebar.php:1662
    505538msgid "Type of the taxonomy"
    506539msgstr ""
    507540
    508 #: includes/class-pis-posts-in-sidebar.php:1694
     541#: includes/class-pis-posts-in-sidebar.php:1746
    509542#: includes/pis-functions-general.php:35
    510543msgid "Posts"
     
    512545
    513546#. translators: %s is a `%s`.
    514 #: includes/class-pis-posts-in-sidebar.php:1696
     547#: includes/class-pis-posts-in-sidebar.php:1748
    515548msgid "Use %s to display the name of the taxonomy."
    516549msgstr ""
    517550
    518 #: includes/class-pis-posts-in-sidebar.php:1740
     551#: includes/class-pis-posts-in-sidebar.php:1792
    519552msgid "Show posts that match the main post title. WordPress will show posts with the same custom field of the main post and matching in a search for the title of the main post."
    520553msgstr ""
    521554
    522 #: includes/class-pis-posts-in-sidebar.php:1750
     555#: includes/class-pis-posts-in-sidebar.php:1802
    523556msgid "Get posts from current post format"
    524557msgstr ""
    525558
    526 #: includes/class-pis-posts-in-sidebar.php:1761
     559#: includes/class-pis-posts-in-sidebar.php:1813
    527560msgid "When on single posts, get posts with the current post format"
    528561msgstr ""
    529562
    530 #: includes/class-pis-posts-in-sidebar.php:1765
     563#: includes/class-pis-posts-in-sidebar.php:1817
    531564msgid "When activated, this function will get posts with the same post format of the post, ignoring other parameters like categories, tags, date, author, etc. If you don't want to ignore other parameters, activate the checkbox below, at the end of this panel."
    532565msgstr ""
    533566
    534567#. translators: %s is the name of a post format.
    535 #: includes/class-pis-posts-in-sidebar.php:1818
    536 #: includes/class-pis-posts-in-sidebar.php:2334
     568#: includes/class-pis-posts-in-sidebar.php:1870
     569#: includes/class-pis-posts-in-sidebar.php:2386
    537570msgid "Posts with %s post format"
    538571msgstr ""
    539572
    540573#. translators: %s is a literal `%s`.
    541 #: includes/class-pis-posts-in-sidebar.php:1820
    542 #: includes/class-pis-posts-in-sidebar.php:2336
     574#: includes/class-pis-posts-in-sidebar.php:1872
     575#: includes/class-pis-posts-in-sidebar.php:2388
    543576msgid "Use %s to display the name of the post format."
    544577msgstr ""
    545578
    546 #: includes/class-pis-posts-in-sidebar.php:1864
     579#: includes/class-pis-posts-in-sidebar.php:1916
    547580msgid "Show posts that match the main post title. WordPress will show posts with the same post format of the main post and matching in a search for the title of the main post."
    548581msgstr ""
    549582
    550 #: includes/class-pis-posts-in-sidebar.php:1879
    551 #: includes/class-pis-posts-in-sidebar.php:2373
    552 #: includes/class-pis-posts-in-sidebar.php:3311
     583#: includes/class-pis-posts-in-sidebar.php:1931
     584#: includes/class-pis-posts-in-sidebar.php:2425
     585#: includes/class-pis-posts-in-sidebar.php:3363
    553586msgid "Do not ignore other parameters"
    554587msgstr ""
    555588
    556 #: includes/class-pis-posts-in-sidebar.php:1883
    557 #: includes/class-pis-posts-in-sidebar.php:2377
     589#: includes/class-pis-posts-in-sidebar.php:1935
     590#: includes/class-pis-posts-in-sidebar.php:2429
    558591msgid "By default, when you activate one of the options above to change the query on single posts, the plugin will deactivate other parameters like categories, tags, date, author, and so on. To leave in action these parameters, activate this option."
    559592msgstr ""
    560593
    561 #: includes/class-pis-posts-in-sidebar.php:1897
     594#: includes/class-pis-posts-in-sidebar.php:1949
    562595msgid "Change the query when on archive page"
    563596msgstr ""
    564597
    565598#. translators: there is some code in placeholders.
    566 #: includes/class-pis-posts-in-sidebar.php:1904
     599#: includes/class-pis-posts-in-sidebar.php:1956
    567600msgid "In this section you can change some parameters of the query when on archive pages. %1$sYou can activate them all together.%2$s"
    568601msgstr ""
    569602
    570 #: includes/class-pis-posts-in-sidebar.php:1908
     603#: includes/class-pis-posts-in-sidebar.php:1960
    571604msgid "Get posts from current category archive page"
    572605msgstr ""
    573606
    574 #: includes/class-pis-posts-in-sidebar.php:1919
     607#: includes/class-pis-posts-in-sidebar.php:1971
    575608msgid "When on archive pages, get posts from the current category archive page"
    576609msgstr ""
    577610
    578 #: includes/class-pis-posts-in-sidebar.php:1923
     611#: includes/class-pis-posts-in-sidebar.php:1975
    579612msgid "When activated, this function will get posts from the archive page of the current category, ignoring other parameters like tags, date, post formats, etc. If you don't want to ignore other parameters, activate the checkbox below, at the end of this panel."
    580613msgstr ""
    581614
    582 #: includes/class-pis-posts-in-sidebar.php:1958
    583 #: includes/class-pis-posts-in-sidebar.php:2073
    584 #: includes/class-pis-posts-in-sidebar.php:2188
    585 #: includes/class-pis-posts-in-sidebar.php:2303
     615#: includes/class-pis-posts-in-sidebar.php:2010
     616#: includes/class-pis-posts-in-sidebar.php:2125
     617#: includes/class-pis-posts-in-sidebar.php:2240
     618#: includes/class-pis-posts-in-sidebar.php:2355
    586619msgid "When on archive pages, get this number of posts"
    587620msgstr ""
    588621
    589622#. translators: %s is -1.
    590 #: includes/class-pis-posts-in-sidebar.php:1977
    591 #: includes/class-pis-posts-in-sidebar.php:2092
    592 #: includes/class-pis-posts-in-sidebar.php:2207
    593 #: includes/class-pis-posts-in-sidebar.php:2322
     623#: includes/class-pis-posts-in-sidebar.php:2029
     624#: includes/class-pis-posts-in-sidebar.php:2144
     625#: includes/class-pis-posts-in-sidebar.php:2259
     626#: includes/class-pis-posts-in-sidebar.php:2374
    594627msgid "If you entered %s in the previous field, this option will be ignored."
    595628msgstr ""
    596629
    597 #: includes/class-pis-posts-in-sidebar.php:1984
    598 #: includes/class-pis-posts-in-sidebar.php:2099
    599 #: includes/class-pis-posts-in-sidebar.php:2214
    600 #: includes/class-pis-posts-in-sidebar.php:2329
     630#: includes/class-pis-posts-in-sidebar.php:2036
     631#: includes/class-pis-posts-in-sidebar.php:2151
     632#: includes/class-pis-posts-in-sidebar.php:2266
     633#: includes/class-pis-posts-in-sidebar.php:2381
    601634msgid "When on archive pages, use this widget title"
    602635msgstr ""
    603636
    604 #: includes/class-pis-posts-in-sidebar.php:2023
     637#: includes/class-pis-posts-in-sidebar.php:2075
    605638msgid "Get posts from current tag archive page"
    606639msgstr ""
    607640
    608 #: includes/class-pis-posts-in-sidebar.php:2034
     641#: includes/class-pis-posts-in-sidebar.php:2086
    609642msgid "When on archive pages, get posts from the current tag archive page"
    610643msgstr ""
    611644
    612 #: includes/class-pis-posts-in-sidebar.php:2038
     645#: includes/class-pis-posts-in-sidebar.php:2090
    613646msgid "When activated, this function will get posts from the archive page of the current tag, ignoring other parameters like categories, date, post formats, etc. If you don't want to ignore other parameters, activate the checkbox below, at the end of this panel."
    614647msgstr ""
    615648
    616 #: includes/class-pis-posts-in-sidebar.php:2138
     649#: includes/class-pis-posts-in-sidebar.php:2190
    617650msgid "Get posts from current author archive page"
    618651msgstr ""
    619652
    620 #: includes/class-pis-posts-in-sidebar.php:2149
     653#: includes/class-pis-posts-in-sidebar.php:2201
    621654msgid "When on archive pages, get posts from the current author archive page"
    622655msgstr ""
    623656
    624 #: includes/class-pis-posts-in-sidebar.php:2153
     657#: includes/class-pis-posts-in-sidebar.php:2205
    625658msgid "When activated, this function will get posts from the archive page of the current author, ignoring other parameters like categories, tags, date, post formats, etc. If you don't want to ignore other parameters, activate the checkbox below, at the end of this panel."
    626659msgstr ""
    627660
    628 #: includes/class-pis-posts-in-sidebar.php:2253
     661#: includes/class-pis-posts-in-sidebar.php:2305
    629662msgid "Get posts from current post format archive page"
    630663msgstr ""
    631664
    632 #: includes/class-pis-posts-in-sidebar.php:2264
     665#: includes/class-pis-posts-in-sidebar.php:2316
    633666msgid "When on archive pages, get posts from the current post format archive page"
    634667msgstr ""
    635668
    636 #: includes/class-pis-posts-in-sidebar.php:2268
     669#: includes/class-pis-posts-in-sidebar.php:2320
    637670msgid "When activated, this function will get posts from the archive page of the current post format, ignoring other parameters like categories, tags, date, author, etc. If you don't want to ignore other parameters, activate the checkbox below, at the end of this panel."
    638671msgstr ""
    639672
    640 #: includes/class-pis-posts-in-sidebar.php:2391
     673#: includes/class-pis-posts-in-sidebar.php:2443
    641674msgid "Custom taxonomy query"
    642675msgstr ""
    643676
    644 #: includes/class-pis-posts-in-sidebar.php:2395
     677#: includes/class-pis-posts-in-sidebar.php:2447
    645678msgid "This section lets you retrieve posts from any taxonomy (category, tags, and custom taxonomies). If you want to use only one taxonomy, use the \"Taxonomy A1\" field. If you have to put in relation two taxonomies (e.g., display posts that are in the \"quotes\" category but not in the \"wisdom\" tag), then use also the \"Taxonomy B1\" field. If you have to put in relation more taxonomies, start using also the \"A2\" and \"B2\" fields (e.g., display posts that are in the \"quotes\" category [A1] OR both have the \"Quote\" post format [B1] AND are in the \"wisdom\" category [B2])."
    646679msgstr ""
    647680
    648 #: includes/class-pis-posts-in-sidebar.php:2412
    649 #: includes/class-pis-posts-in-sidebar.php:2984
     681#: includes/class-pis-posts-in-sidebar.php:2464
     682#: includes/class-pis-posts-in-sidebar.php:3036
    650683msgid "Relation between Column A and Column B"
    651684msgstr ""
    652685
    653 #: includes/class-pis-posts-in-sidebar.php:2417
     686#: includes/class-pis-posts-in-sidebar.php:2469
    654687msgid "The logical relationship between each inner taxonomy array when there is more than one. Do not use with a single inner taxonomy array."
    655688msgstr ""
    656689
    657 #: includes/class-pis-posts-in-sidebar.php:2429
    658 #: includes/class-pis-posts-in-sidebar.php:3001
     690#: includes/class-pis-posts-in-sidebar.php:2481
     691#: includes/class-pis-posts-in-sidebar.php:3053
    659692msgid "Column A"
    660693msgstr ""
    661694
    662 #: includes/class-pis-posts-in-sidebar.php:2434
     695#: includes/class-pis-posts-in-sidebar.php:2486
    663696msgid "Taxonomy A1"
    664697msgstr ""
    665698
    666 #: includes/class-pis-posts-in-sidebar.php:2438
     699#: includes/class-pis-posts-in-sidebar.php:2490
    667700msgid "category"
    668701msgstr ""
    669702
    670 #: includes/class-pis-posts-in-sidebar.php:2439
    671 #: includes/class-pis-posts-in-sidebar.php:2502
    672 #: includes/class-pis-posts-in-sidebar.php:2556
    673 #: includes/class-pis-posts-in-sidebar.php:2619
     703#: includes/class-pis-posts-in-sidebar.php:2491
     704#: includes/class-pis-posts-in-sidebar.php:2554
     705#: includes/class-pis-posts-in-sidebar.php:2608
     706#: includes/class-pis-posts-in-sidebar.php:2671
    674707msgid "Enter the slug of the taxonomy."
    675708msgstr ""
    676709
    677 #: includes/class-pis-posts-in-sidebar.php:2446
    678 #: includes/class-pis-posts-in-sidebar.php:2509
    679 #: includes/class-pis-posts-in-sidebar.php:2563
    680 #: includes/class-pis-posts-in-sidebar.php:2626
     710#: includes/class-pis-posts-in-sidebar.php:2498
     711#: includes/class-pis-posts-in-sidebar.php:2561
     712#: includes/class-pis-posts-in-sidebar.php:2615
     713#: includes/class-pis-posts-in-sidebar.php:2678
    681714msgid "Field"
    682715msgstr ""
    683716
    684 #: includes/class-pis-posts-in-sidebar.php:2451
     717#: includes/class-pis-posts-in-sidebar.php:2503
     718#: includes/class-pis-posts-in-sidebar.php:2566
     719#: includes/class-pis-posts-in-sidebar.php:2620
     720#: includes/class-pis-posts-in-sidebar.php:2683
     721msgid "Select taxonomy term by this field."
     722msgstr ""
     723
     724#: includes/class-pis-posts-in-sidebar.php:2510
     725#: includes/class-pis-posts-in-sidebar.php:2573
     726#: includes/class-pis-posts-in-sidebar.php:2627
     727#: includes/class-pis-posts-in-sidebar.php:2690
     728msgid "Terms"
     729msgstr ""
     730
    685731#: includes/class-pis-posts-in-sidebar.php:2514
    686 #: includes/class-pis-posts-in-sidebar.php:2568
     732msgid "gnu-linux,kde"
     733msgstr ""
     734
     735#: includes/class-pis-posts-in-sidebar.php:2515
     736#: includes/class-pis-posts-in-sidebar.php:2578
     737#: includes/class-pis-posts-in-sidebar.php:2632
     738#: includes/class-pis-posts-in-sidebar.php:2695
     739msgid "Enter terms, comma separated."
     740msgstr ""
     741
     742#: includes/class-pis-posts-in-sidebar.php:2522
     743#: includes/class-pis-posts-in-sidebar.php:2585
     744#: includes/class-pis-posts-in-sidebar.php:2639
     745#: includes/class-pis-posts-in-sidebar.php:2702
     746#: includes/class-pis-posts-in-sidebar.php:3083
     747#: includes/class-pis-posts-in-sidebar.php:3148
     748#: includes/class-pis-posts-in-sidebar.php:3203
     749#: includes/class-pis-posts-in-sidebar.php:3267
     750msgid "Operator"
     751msgstr ""
     752
     753#: includes/class-pis-posts-in-sidebar.php:2527
     754#: includes/class-pis-posts-in-sidebar.php:2590
     755#: includes/class-pis-posts-in-sidebar.php:2644
     756#: includes/class-pis-posts-in-sidebar.php:2707
     757msgid "Operator to test for terms."
     758msgstr ""
     759
     760#: includes/class-pis-posts-in-sidebar.php:2536
     761msgid "Relation between A1 and A2 taxonomies"
     762msgstr ""
     763
     764#: includes/class-pis-posts-in-sidebar.php:2549
     765msgid "Taxonomy A2"
     766msgstr ""
     767
     768#: includes/class-pis-posts-in-sidebar.php:2553
     769msgid "movie-genre"
     770msgstr ""
     771
     772#: includes/class-pis-posts-in-sidebar.php:2577
     773msgid "action,sci-fi"
     774msgstr ""
     775
     776#: includes/class-pis-posts-in-sidebar.php:2598
     777#: includes/class-pis-posts-in-sidebar.php:3173
     778msgid "Column B"
     779msgstr ""
     780
     781#: includes/class-pis-posts-in-sidebar.php:2603
     782msgid "Taxonomy B1"
     783msgstr ""
     784
     785#: includes/class-pis-posts-in-sidebar.php:2607
     786msgid "post_tag"
     787msgstr ""
     788
    687789#: includes/class-pis-posts-in-sidebar.php:2631
    688 msgid "Select taxonomy term by this field."
    689 msgstr ""
    690 
    691 #: includes/class-pis-posts-in-sidebar.php:2458
    692 #: includes/class-pis-posts-in-sidebar.php:2521
    693 #: includes/class-pis-posts-in-sidebar.php:2575
    694 #: includes/class-pis-posts-in-sidebar.php:2638
    695 msgid "Terms"
    696 msgstr ""
    697 
    698 #: includes/class-pis-posts-in-sidebar.php:2462
    699 msgid "gnu-linux,kde"
    700 msgstr ""
    701 
    702 #: includes/class-pis-posts-in-sidebar.php:2463
    703 #: includes/class-pis-posts-in-sidebar.php:2526
    704 #: includes/class-pis-posts-in-sidebar.php:2580
    705 #: includes/class-pis-posts-in-sidebar.php:2643
    706 msgid "Enter terms, comma separated."
    707 msgstr ""
    708 
    709 #: includes/class-pis-posts-in-sidebar.php:2470
    710 #: includes/class-pis-posts-in-sidebar.php:2533
    711 #: includes/class-pis-posts-in-sidebar.php:2587
    712 #: includes/class-pis-posts-in-sidebar.php:2650
    713 #: includes/class-pis-posts-in-sidebar.php:3031
    714 #: includes/class-pis-posts-in-sidebar.php:3096
    715 #: includes/class-pis-posts-in-sidebar.php:3151
     790msgid "system,apache"
     791msgstr ""
     792
     793#: includes/class-pis-posts-in-sidebar.php:2653
     794msgid "Relation between B1 and B2 taxonomies"
     795msgstr ""
     796
     797#: includes/class-pis-posts-in-sidebar.php:2666
     798msgid "Taxonomy B2"
     799msgstr ""
     800
     801#: includes/class-pis-posts-in-sidebar.php:2670
     802msgid "post_format"
     803msgstr ""
     804
     805#: includes/class-pis-posts-in-sidebar.php:2694
     806msgid "post-format-quote"
     807msgstr ""
     808
     809#: includes/class-pis-posts-in-sidebar.php:2722
     810msgid "Date query"
     811msgstr ""
     812
     813#: includes/class-pis-posts-in-sidebar.php:2726
     814msgid "In this section you can define the period within posts have been published. You can get posts published in a certain period or after/before a date or in a dynamic period (based on current date)."
     815msgstr ""
     816
     817#: includes/class-pis-posts-in-sidebar.php:2730
     818msgid "Get posts published in a certain period"
     819msgstr ""
     820
     821#: includes/class-pis-posts-in-sidebar.php:2732
     822msgid "Define the period within posts are published. For example, you can pick up the posts published on 15 January, 2017 at 10."
     823msgstr ""
     824
     825#: includes/class-pis-posts-in-sidebar.php:2738
     826#: includes/class-pis-posts-in-sidebar.php:2837
     827#: includes/class-pis-posts-in-sidebar.php:2878
     828msgid "Year"
     829msgstr ""
     830
     831#: includes/class-pis-posts-in-sidebar.php:2743
     832msgid "4 digits year (e.g. 2015)."
     833msgstr ""
     834
     835#: includes/class-pis-posts-in-sidebar.php:2749
     836#: includes/class-pis-posts-in-sidebar.php:2848
     837#: includes/class-pis-posts-in-sidebar.php:2889
     838msgid "Month"
     839msgstr ""
     840
     841#: includes/class-pis-posts-in-sidebar.php:2754
     842msgid "Month number (from 1 to 12)."
     843msgstr ""
     844
     845#: includes/class-pis-posts-in-sidebar.php:2760
     846msgid "Week"
     847msgstr ""
     848
     849#: includes/class-pis-posts-in-sidebar.php:2765
     850msgid "Week of the year (from 0 to 53)."
     851msgstr ""
     852
     853#: includes/class-pis-posts-in-sidebar.php:2771
     854#: includes/class-pis-posts-in-sidebar.php:2859
     855#: includes/class-pis-posts-in-sidebar.php:2900
     856msgid "Day"
     857msgstr ""
     858
     859#: includes/class-pis-posts-in-sidebar.php:2776
     860msgid "Day of the month (from 1 to 31)."
     861msgstr ""
     862
     863#: includes/class-pis-posts-in-sidebar.php:2786
     864msgid "Hour"
     865msgstr ""
     866
     867#: includes/class-pis-posts-in-sidebar.php:2791
     868msgid "Hour (from 0 to 23)."
     869msgstr ""
     870
     871#: includes/class-pis-posts-in-sidebar.php:2797
     872msgid "Minute"
     873msgstr ""
     874
     875#: includes/class-pis-posts-in-sidebar.php:2802
     876msgid "Minute (from 0 to 59)."
     877msgstr ""
     878
     879#: includes/class-pis-posts-in-sidebar.php:2808
     880msgid "Second"
     881msgstr ""
     882
     883#: includes/class-pis-posts-in-sidebar.php:2813
     884msgid "Second (from 0 to 59)."
     885msgstr ""
     886
     887#: includes/class-pis-posts-in-sidebar.php:2825
     888msgid "Get posts published after/before a date"
     889msgstr ""
     890
     891#: includes/class-pis-posts-in-sidebar.php:2827
     892msgid "Here you can get posts published after/before a certain date. You can also use the two options together, for example, to get posts published between 2017-01-15 and 2017-01-31."
     893msgstr ""
     894
     895#: includes/class-pis-posts-in-sidebar.php:2831
     896msgid "Get posts published after this date"
     897msgstr ""
     898
     899#: includes/class-pis-posts-in-sidebar.php:2833
     900msgid "Get posts published after a certain date."
     901msgstr ""
     902
     903#: includes/class-pis-posts-in-sidebar.php:2842
     904#: includes/class-pis-posts-in-sidebar.php:2883
     905msgid "Accepts any four-digit year."
     906msgstr ""
     907
     908#: includes/class-pis-posts-in-sidebar.php:2853
     909#: includes/class-pis-posts-in-sidebar.php:2894
     910msgid "The month of the year. Accepts numbers 1-12."
     911msgstr ""
     912
     913#: includes/class-pis-posts-in-sidebar.php:2864
     914#: includes/class-pis-posts-in-sidebar.php:2905
     915msgid "The day of the month. Accepts numbers 1-31."
     916msgstr ""
     917
     918#: includes/class-pis-posts-in-sidebar.php:2872
     919msgid "Get posts published before this date"
     920msgstr ""
     921
     922#: includes/class-pis-posts-in-sidebar.php:2874
     923msgid "Get posts published before a certain date."
     924msgstr ""
     925
     926#: includes/class-pis-posts-in-sidebar.php:2915
     927msgid "Other options for after/before"
     928msgstr ""
     929
     930#: includes/class-pis-posts-in-sidebar.php:2921
     931msgid "Inclusive"
     932msgstr ""
     933
     934#: includes/class-pis-posts-in-sidebar.php:2925
     935msgid "For after/before, whether exact value should be matched or not"
     936msgstr ""
     937
     938#: includes/class-pis-posts-in-sidebar.php:2935
     939msgid "Column"
     940msgstr ""
     941
     942#: includes/class-pis-posts-in-sidebar.php:2940
     943msgid "Column to query against."
     944msgstr ""
     945
     946#: includes/class-pis-posts-in-sidebar.php:2952
     947msgid "Dynamic date query"
     948msgstr ""
     949
     950#: includes/class-pis-posts-in-sidebar.php:2954
     951msgid "Define the amount of time from now within the posts have been published. For example, you can get posts published 1 month ago or 2 years ago, and so on. An expression like \"1 month ago\" means: get posts that have been published in the last month, and not only published exactly one month ago."
     952msgstr ""
     953
     954#: includes/class-pis-posts-in-sidebar.php:2956
     955msgid "Also, please note that these options will override the corresponding options under \"Get posts published after/before a date\"."
     956msgstr ""
     957
     958#: includes/class-pis-posts-in-sidebar.php:2960
     959msgid "Get posts published after this amount of time"
     960msgstr ""
     961
     962#: includes/class-pis-posts-in-sidebar.php:2965
     963#: includes/class-pis-posts-in-sidebar.php:2993
     964msgid "Amount of time"
     965msgstr ""
     966
     967#: includes/class-pis-posts-in-sidebar.php:2976
     968#: includes/class-pis-posts-in-sidebar.php:3004
     969msgid "Type of date"
     970msgstr ""
     971
     972#: includes/class-pis-posts-in-sidebar.php:2988
     973msgid "Get posts published before this amount of time"
     974msgstr ""
     975
     976#: includes/class-pis-posts-in-sidebar.php:3023
     977msgid "Custom fields query"
     978msgstr ""
     979
     980#: includes/class-pis-posts-in-sidebar.php:3027
     981msgid "This section lets you retrieve posts from any custom field. If you want to use only one custom field, use the \"Custom field key A1\" field. If you have to put in relation two custom fields (e.g., display posts that have the meta key \"color\" and value \"red\" but meta key \"price\" with values between 10 and 20), then use also the \"Custom field key B1\" field. If you have to put in relation more custom fields, start using also the \"A2\" and \"B2\" fields."
     982msgstr ""
     983
     984#: includes/class-pis-posts-in-sidebar.php:3041
     985msgid "The logical relationship between each inner meta_query array when there is more than one."
     986msgstr ""
     987
     988#: includes/class-pis-posts-in-sidebar.php:3058
     989msgid "Custom field key A1"
     990msgstr ""
     991
     992#: includes/class-pis-posts-in-sidebar.php:3062
     993#: includes/class-pis-posts-in-sidebar.php:3127
     994#: includes/class-pis-posts-in-sidebar.php:3182
     995#: includes/class-pis-posts-in-sidebar.php:3246
     996msgid "color"
     997msgstr ""
     998
     999#: includes/class-pis-posts-in-sidebar.php:3063
     1000#: includes/class-pis-posts-in-sidebar.php:3128
     1001#: includes/class-pis-posts-in-sidebar.php:3183
     1002#: includes/class-pis-posts-in-sidebar.php:3247
     1003msgid "Enter the custom field key."
     1004msgstr ""
     1005
     1006#: includes/class-pis-posts-in-sidebar.php:3070
     1007#: includes/class-pis-posts-in-sidebar.php:3135
     1008#: includes/class-pis-posts-in-sidebar.php:3190
     1009#: includes/class-pis-posts-in-sidebar.php:3254
     1010msgid "Custom field value"
     1011msgstr ""
     1012
     1013#: includes/class-pis-posts-in-sidebar.php:3074
     1014#: includes/class-pis-posts-in-sidebar.php:3139
     1015#: includes/class-pis-posts-in-sidebar.php:3194
     1016#: includes/class-pis-posts-in-sidebar.php:3258
     1017msgid "blue, orange, red"
     1018msgstr ""
     1019
     1020#. translators: the placeholder contains some code.
     1021#: includes/class-pis-posts-in-sidebar.php:3076
     1022#: includes/class-pis-posts-in-sidebar.php:3141
     1023#: includes/class-pis-posts-in-sidebar.php:3196
     1024#: includes/class-pis-posts-in-sidebar.php:3260
     1025msgid "Enter one or more values of the custom field, comma separated. If you enter %s, this will be replaced with the current date and time."
     1026msgstr ""
     1027
     1028#: includes/class-pis-posts-in-sidebar.php:3088
     1029#: includes/class-pis-posts-in-sidebar.php:3153
     1030#: includes/class-pis-posts-in-sidebar.php:3208
     1031#: includes/class-pis-posts-in-sidebar.php:3272
     1032msgid "Operator to test for values."
     1033msgstr ""
     1034
     1035#: includes/class-pis-posts-in-sidebar.php:3095
     1036#: includes/class-pis-posts-in-sidebar.php:3160
    7161037#: includes/class-pis-posts-in-sidebar.php:3215
    717 msgid "Operator"
    718 msgstr ""
    719 
    720 #: includes/class-pis-posts-in-sidebar.php:2475
    721 #: includes/class-pis-posts-in-sidebar.php:2538
    722 #: includes/class-pis-posts-in-sidebar.php:2592
    723 #: includes/class-pis-posts-in-sidebar.php:2655
    724 msgid "Operator to test for terms."
    725 msgstr ""
    726 
    727 #: includes/class-pis-posts-in-sidebar.php:2484
    728 msgid "Relation between A1 and A2 taxonomies"
    729 msgstr ""
    730 
    731 #: includes/class-pis-posts-in-sidebar.php:2497
    732 msgid "Taxonomy A2"
    733 msgstr ""
    734 
    735 #: includes/class-pis-posts-in-sidebar.php:2501
    736 msgid "movie-genre"
    737 msgstr ""
    738 
    739 #: includes/class-pis-posts-in-sidebar.php:2525
    740 msgid "action,sci-fi"
    741 msgstr ""
    742 
    743 #: includes/class-pis-posts-in-sidebar.php:2546
    744 #: includes/class-pis-posts-in-sidebar.php:3121
    745 msgid "Column B"
    746 msgstr ""
    747 
    748 #: includes/class-pis-posts-in-sidebar.php:2551
    749 msgid "Taxonomy B1"
    750 msgstr ""
    751 
    752 #: includes/class-pis-posts-in-sidebar.php:2555
    753 msgid "post_tag"
    754 msgstr ""
    755 
    756 #: includes/class-pis-posts-in-sidebar.php:2579
    757 msgid "system,apache"
    758 msgstr ""
    759 
    760 #: includes/class-pis-posts-in-sidebar.php:2601
    761 msgid "Relation between B1 and B2 taxonomies"
    762 msgstr ""
    763 
    764 #: includes/class-pis-posts-in-sidebar.php:2614
    765 msgid "Taxonomy B2"
    766 msgstr ""
    767 
    768 #: includes/class-pis-posts-in-sidebar.php:2618
    769 msgid "post_format"
    770 msgstr ""
    771 
    772 #: includes/class-pis-posts-in-sidebar.php:2642
    773 msgid "post-format-quote"
    774 msgstr ""
    775 
    776 #: includes/class-pis-posts-in-sidebar.php:2670
    777 msgid "Date query"
    778 msgstr ""
    779 
    780 #: includes/class-pis-posts-in-sidebar.php:2674
    781 msgid "In this section you can define the period within posts have been published. You can get posts published in a certain period or after/before a date or in a dynamic period (based on current date)."
    782 msgstr ""
    783 
    784 #: includes/class-pis-posts-in-sidebar.php:2678
    785 msgid "Get posts published in a certain period"
    786 msgstr ""
    787 
    788 #: includes/class-pis-posts-in-sidebar.php:2680
    789 msgid "Define the period within posts are published. For example, you can pick up the posts published on 15 January, 2017 at 10."
    790 msgstr ""
    791 
    792 #: includes/class-pis-posts-in-sidebar.php:2686
    793 #: includes/class-pis-posts-in-sidebar.php:2785
    794 #: includes/class-pis-posts-in-sidebar.php:2826
    795 msgid "Year"
    796 msgstr ""
    797 
    798 #: includes/class-pis-posts-in-sidebar.php:2691
    799 msgid "4 digits year (e.g. 2015)."
    800 msgstr ""
    801 
    802 #: includes/class-pis-posts-in-sidebar.php:2697
    803 #: includes/class-pis-posts-in-sidebar.php:2796
    804 #: includes/class-pis-posts-in-sidebar.php:2837
    805 msgid "Month"
    806 msgstr ""
    807 
    808 #: includes/class-pis-posts-in-sidebar.php:2702
    809 msgid "Month number (from 1 to 12)."
    810 msgstr ""
    811 
    812 #: includes/class-pis-posts-in-sidebar.php:2708
    813 msgid "Week"
    814 msgstr ""
    815 
    816 #: includes/class-pis-posts-in-sidebar.php:2713
    817 msgid "Week of the year (from 0 to 53)."
    818 msgstr ""
    819 
    820 #: includes/class-pis-posts-in-sidebar.php:2719
    821 #: includes/class-pis-posts-in-sidebar.php:2807
    822 #: includes/class-pis-posts-in-sidebar.php:2848
    823 msgid "Day"
    824 msgstr ""
    825 
    826 #: includes/class-pis-posts-in-sidebar.php:2724
    827 msgid "Day of the month (from 1 to 31)."
    828 msgstr ""
    829 
    830 #: includes/class-pis-posts-in-sidebar.php:2734
    831 msgid "Hour"
    832 msgstr ""
    833 
    834 #: includes/class-pis-posts-in-sidebar.php:2739
    835 msgid "Hour (from 0 to 23)."
    836 msgstr ""
    837 
    838 #: includes/class-pis-posts-in-sidebar.php:2745
    839 msgid "Minute"
    840 msgstr ""
    841 
    842 #: includes/class-pis-posts-in-sidebar.php:2750
    843 msgid "Minute (from 0 to 59)."
    844 msgstr ""
    845 
    846 #: includes/class-pis-posts-in-sidebar.php:2756
    847 msgid "Second"
    848 msgstr ""
    849 
    850 #: includes/class-pis-posts-in-sidebar.php:2761
    851 msgid "Second (from 0 to 59)."
    852 msgstr ""
    853 
    854 #: includes/class-pis-posts-in-sidebar.php:2773
    855 msgid "Get posts published after/before a date"
    856 msgstr ""
    857 
    858 #: includes/class-pis-posts-in-sidebar.php:2775
    859 msgid "Here you can get posts published after/before a certain date. You can also use the two options together, for example, to get posts published between 2017-01-15 and 2017-01-31."
    860 msgstr ""
    861 
    862 #: includes/class-pis-posts-in-sidebar.php:2779
    863 msgid "Get posts published after this date"
    864 msgstr ""
    865 
    866 #: includes/class-pis-posts-in-sidebar.php:2781
    867 msgid "Get posts published after a certain date."
    868 msgstr ""
    869 
    870 #: includes/class-pis-posts-in-sidebar.php:2790
    871 #: includes/class-pis-posts-in-sidebar.php:2831
    872 msgid "Accepts any four-digit year."
    873 msgstr ""
    874 
    875 #: includes/class-pis-posts-in-sidebar.php:2801
    876 #: includes/class-pis-posts-in-sidebar.php:2842
    877 msgid "The month of the year. Accepts numbers 1-12."
    878 msgstr ""
    879 
    880 #: includes/class-pis-posts-in-sidebar.php:2812
    881 #: includes/class-pis-posts-in-sidebar.php:2853
    882 msgid "The day of the month. Accepts numbers 1-31."
    883 msgstr ""
    884 
    885 #: includes/class-pis-posts-in-sidebar.php:2820
    886 msgid "Get posts published before this date"
    887 msgstr ""
    888 
    889 #: includes/class-pis-posts-in-sidebar.php:2822
    890 msgid "Get posts published before a certain date."
    891 msgstr ""
    892 
    893 #: includes/class-pis-posts-in-sidebar.php:2863
    894 msgid "Other options for after/before"
    895 msgstr ""
    896 
    897 #: includes/class-pis-posts-in-sidebar.php:2869
    898 msgid "Inclusive"
    899 msgstr ""
    900 
    901 #: includes/class-pis-posts-in-sidebar.php:2873
    902 msgid "For after/before, whether exact value should be matched or not"
    903 msgstr ""
    904 
    905 #: includes/class-pis-posts-in-sidebar.php:2883
    906 msgid "Column"
    907 msgstr ""
    908 
    909 #: includes/class-pis-posts-in-sidebar.php:2888
    910 msgid "Column to query against."
    911 msgstr ""
    912 
    913 #: includes/class-pis-posts-in-sidebar.php:2900
    914 msgid "Dynamic date query"
    915 msgstr ""
    916 
    917 #: includes/class-pis-posts-in-sidebar.php:2902
    918 msgid "Define the amount of time from now within the posts have been published. For example, you can get posts published 1 month ago or 2 years ago, and so on. An expression like \"1 month ago\" means: get posts that have been published in the last month, and not only published exactly one month ago."
    919 msgstr ""
    920 
    921 #: includes/class-pis-posts-in-sidebar.php:2904
    922 msgid "Also, please note that these options will override the corresponding options under \"Get posts published after/before a date\"."
    923 msgstr ""
    924 
    925 #: includes/class-pis-posts-in-sidebar.php:2908
    926 msgid "Get posts published after this amount of time"
    927 msgstr ""
    928 
    929 #: includes/class-pis-posts-in-sidebar.php:2913
    930 #: includes/class-pis-posts-in-sidebar.php:2941
    931 msgid "Amount of time"
    932 msgstr ""
    933 
    934 #: includes/class-pis-posts-in-sidebar.php:2924
    935 #: includes/class-pis-posts-in-sidebar.php:2952
    936 msgid "Type of date"
    937 msgstr ""
    938 
    939 #: includes/class-pis-posts-in-sidebar.php:2936
    940 msgid "Get posts published before this amount of time"
    941 msgstr ""
    942 
    943 #: includes/class-pis-posts-in-sidebar.php:2971
    944 msgid "Custom fields query"
    945 msgstr ""
    946 
    947 #: includes/class-pis-posts-in-sidebar.php:2975
    948 msgid "This section lets you retrieve posts from any custom field. If you want to use only one custom field, use the \"Custom field key A1\" field. If you have to put in relation two custom fields (e.g., display posts that have the meta key \"color\" and value \"red\" but meta key \"price\" with values between 10 and 20), then use also the \"Custom field key B1\" field. If you have to put in relation more custom fields, start using also the \"A2\" and \"B2\" fields."
    949 msgstr ""
    950 
    951 #: includes/class-pis-posts-in-sidebar.php:2989
    952 msgid "The logical relationship between each inner meta_query array when there is more than one."
    953 msgstr ""
    954 
    955 #: includes/class-pis-posts-in-sidebar.php:3006
    956 msgid "Custom field key A1"
    957 msgstr ""
    958 
    959 #: includes/class-pis-posts-in-sidebar.php:3010
    960 #: includes/class-pis-posts-in-sidebar.php:3075
    961 #: includes/class-pis-posts-in-sidebar.php:3130
    962 #: includes/class-pis-posts-in-sidebar.php:3194
    963 msgid "color"
    964 msgstr ""
    965 
    966 #: includes/class-pis-posts-in-sidebar.php:3011
    967 #: includes/class-pis-posts-in-sidebar.php:3076
    968 #: includes/class-pis-posts-in-sidebar.php:3131
    969 #: includes/class-pis-posts-in-sidebar.php:3195
    970 msgid "Enter the custom field key."
    971 msgstr ""
    972 
    973 #: includes/class-pis-posts-in-sidebar.php:3018
    974 #: includes/class-pis-posts-in-sidebar.php:3083
    975 #: includes/class-pis-posts-in-sidebar.php:3138
    976 #: includes/class-pis-posts-in-sidebar.php:3202
    977 msgid "Custom field value"
    978 msgstr ""
    979 
    980 #: includes/class-pis-posts-in-sidebar.php:3022
    981 #: includes/class-pis-posts-in-sidebar.php:3087
    982 #: includes/class-pis-posts-in-sidebar.php:3142
    983 #: includes/class-pis-posts-in-sidebar.php:3206
    984 msgid "blue, orange, red"
    985 msgstr ""
    986 
    987 #. translators: the placeholder contains some code.
    988 #: includes/class-pis-posts-in-sidebar.php:3024
    989 #: includes/class-pis-posts-in-sidebar.php:3089
    990 #: includes/class-pis-posts-in-sidebar.php:3144
    991 #: includes/class-pis-posts-in-sidebar.php:3208
    992 msgid "Enter one or more values of the custom field, comma separated. If you enter %s, this will be replaced with the current date and time."
    993 msgstr ""
    994 
    995 #: includes/class-pis-posts-in-sidebar.php:3036
     1038#: includes/class-pis-posts-in-sidebar.php:3279
     1039msgid "Type"
     1040msgstr ""
     1041
    9961042#: includes/class-pis-posts-in-sidebar.php:3101
    997 #: includes/class-pis-posts-in-sidebar.php:3156
     1043#: includes/class-pis-posts-in-sidebar.php:3165
    9981044#: includes/class-pis-posts-in-sidebar.php:3220
    999 msgid "Operator to test for values."
    1000 msgstr ""
    1001 
    1002 #: includes/class-pis-posts-in-sidebar.php:3043
    1003 #: includes/class-pis-posts-in-sidebar.php:3108
    1004 #: includes/class-pis-posts-in-sidebar.php:3163
    1005 #: includes/class-pis-posts-in-sidebar.php:3227
    1006 msgid "Type"
    1007 msgstr ""
    1008 
    1009 #: includes/class-pis-posts-in-sidebar.php:3049
    1010 #: includes/class-pis-posts-in-sidebar.php:3113
    1011 #: includes/class-pis-posts-in-sidebar.php:3168
    1012 #: includes/class-pis-posts-in-sidebar.php:3232
     1045#: includes/class-pis-posts-in-sidebar.php:3284
    10131046msgid "Custom field type. Leave this field blank when using decimal values."
    10141047msgstr ""
    10151048
    1016 #: includes/class-pis-posts-in-sidebar.php:3058
     1049#: includes/class-pis-posts-in-sidebar.php:3110
    10171050msgid "Relation between A1 and A2 custom fields"
    10181051msgstr ""
    10191052
    1020 #: includes/class-pis-posts-in-sidebar.php:3071
     1053#: includes/class-pis-posts-in-sidebar.php:3123
    10211054msgid "Custom field key A2"
    10221055msgstr ""
    10231056
    1024 #: includes/class-pis-posts-in-sidebar.php:3126
     1057#: includes/class-pis-posts-in-sidebar.php:3178
    10251058msgid "Custom field key B1"
    10261059msgstr ""
    10271060
    1028 #: includes/class-pis-posts-in-sidebar.php:3177
     1061#: includes/class-pis-posts-in-sidebar.php:3229
    10291062msgid "Relation between B1 and B2 custom fields"
    10301063msgstr ""
    10311064
    1032 #: includes/class-pis-posts-in-sidebar.php:3190
     1065#: includes/class-pis-posts-in-sidebar.php:3242
    10331066msgid "Custom field key B2"
    10341067msgstr ""
    10351068
    1036 #: includes/class-pis-posts-in-sidebar.php:3246
     1069#: includes/class-pis-posts-in-sidebar.php:3298
    10371070msgid "Get posts from username"
    10381071msgstr ""
    10391072
    1040 #: includes/class-pis-posts-in-sidebar.php:3252
     1073#: includes/class-pis-posts-in-sidebar.php:3304
    10411074msgid "This section lets you retrieve posts that have a custom field key or a category equal to the username of the currently logged-in user. This means that you can show a custom list of posts for each user."
    10421075msgstr ""
    10431076
    1044 #: includes/class-pis-posts-in-sidebar.php:3258
     1077#: includes/class-pis-posts-in-sidebar.php:3310
    10451078msgid "If you want to use custom field keys, create &mdash; for each post or for the posts you want &mdash; a custom field where the meta key is equal to the user login name. The meta value can be empty, since it is ignored here. A single post can have multiple custom fields, one for each user."
    10461079msgstr ""
    10471080
    1048 #: includes/class-pis-posts-in-sidebar.php:3264
     1081#: includes/class-pis-posts-in-sidebar.php:3316
    10491082msgid "If you want to use categories, assign the posts you want to a category that has the same name of the user."
    10501083msgstr ""
    10511084
    1052 #: includes/class-pis-posts-in-sidebar.php:3270
     1085#: includes/class-pis-posts-in-sidebar.php:3322
    10531086msgid "When logged in, the user will see the posts you have marked with his username."
    10541087msgstr ""
    10551088
    1056 #: includes/class-pis-posts-in-sidebar.php:3276
     1089#: includes/class-pis-posts-in-sidebar.php:3328
    10571090msgid "If the user is not logged-in or the widget does not find any post having a meta key (or a category) with the username of the logged-in user, the widget will simply ignore this option."
    10581091msgstr ""
    10591092
    1060 #: includes/class-pis-posts-in-sidebar.php:3285
     1093#: includes/class-pis-posts-in-sidebar.php:3337
    10611094msgid "Get posts from current username"
    10621095msgstr ""
    10631096
    1064 #: includes/class-pis-posts-in-sidebar.php:3289
     1097#: includes/class-pis-posts-in-sidebar.php:3341
    10651098msgid "This option will use custom field keys."
    10661099msgstr ""
    10671100
    1068 #: includes/class-pis-posts-in-sidebar.php:3296
     1101#: includes/class-pis-posts-in-sidebar.php:3348
    10691102msgid "Use category instead of meta key"
    10701103msgstr ""
    10711104
    1072 #: includes/class-pis-posts-in-sidebar.php:3300
     1105#: includes/class-pis-posts-in-sidebar.php:3352
    10731106msgid "When you activate this option, make sure to activate also the option \"Get posts from current username\""
    10741107msgstr ""
    10751108
    1076 #: includes/class-pis-posts-in-sidebar.php:3315
     1109#: includes/class-pis-posts-in-sidebar.php:3367
    10771110msgid "By default, when you activate the option above to change the query, the plugin will deactivate other parameters like categories, tags, date, author, and so on. To leave in action these parameters, activate this option."
    10781111msgstr ""
    10791112
    1080 #: includes/class-pis-posts-in-sidebar.php:3329
     1113#: includes/class-pis-posts-in-sidebar.php:3381
    10811114msgid "Excluding posts"
    10821115msgstr ""
    10831116
    1084 #: includes/class-pis-posts-in-sidebar.php:3335
     1117#: includes/class-pis-posts-in-sidebar.php:3387
    10851118msgid "Define here which posts must be excluded from the query."
    10861119msgstr ""
    10871120
    1088 #: includes/class-pis-posts-in-sidebar.php:3358
     1121#: includes/class-pis-posts-in-sidebar.php:3410
    10891122msgid "Exclude posts by these authors"
    10901123msgstr ""
    10911124
    1092 #: includes/class-pis-posts-in-sidebar.php:3375
     1125#: includes/class-pis-posts-in-sidebar.php:3427
    10931126msgid "Exclude posts from these categories"
    10941127msgstr ""
    10951128
    1096 #: includes/class-pis-posts-in-sidebar.php:3396
     1129#: includes/class-pis-posts-in-sidebar.php:3448
    10971130msgid "Exclude posts from these tags"
    10981131msgstr ""
    10991132
    1100 #: includes/class-pis-posts-in-sidebar.php:3408
     1133#: includes/class-pis-posts-in-sidebar.php:3460
    11011134msgid "Exclude posts with these IDs"
    11021135msgstr ""
    11031136
    1104 #: includes/class-pis-posts-in-sidebar.php:3424
     1137#: includes/class-pis-posts-in-sidebar.php:3476
    11051138msgid "Exclude posts whose parent is in these IDs"
    11061139msgstr ""
    11071140
    1108 #: includes/class-pis-posts-in-sidebar.php:3436
     1141#: includes/class-pis-posts-in-sidebar.php:3488
    11091142msgid "Automatically exclude the current post in single post or the current page in single page"
    11101143msgstr ""
    11111144
    1112 #: includes/class-pis-posts-in-sidebar.php:3458
     1145#: includes/class-pis-posts-in-sidebar.php:3510
    11131146msgid "Displaying posts"
    11141147msgstr ""
    11151148
    1116 #: includes/class-pis-posts-in-sidebar.php:3462
     1149#: includes/class-pis-posts-in-sidebar.php:3514
    11171150msgid "Define here which elements you want to display in the widget."
    11181151msgstr ""
    11191152
    1120 #: includes/class-pis-posts-in-sidebar.php:3470
     1153#: includes/class-pis-posts-in-sidebar.php:3522
    11211154msgid "The title of the post"
    11221155msgstr ""
    11231156
    1124 #: includes/class-pis-posts-in-sidebar.php:3475
     1157#: includes/class-pis-posts-in-sidebar.php:3527
    11251158msgid "Display the title of the post"
    11261159msgstr ""
    11271160
    1128 #: includes/class-pis-posts-in-sidebar.php:3485
     1161#: includes/class-pis-posts-in-sidebar.php:3537
    11291162msgid "Link the title to the post"
    11301163msgstr ""
    11311164
    1132 #: includes/class-pis-posts-in-sidebar.php:3495
     1165#: includes/class-pis-posts-in-sidebar.php:3547
    11331166msgid "Show an arrow after the title"
    11341167msgstr ""
    11351168
    1136 #: includes/class-pis-posts-in-sidebar.php:3505
     1169#: includes/class-pis-posts-in-sidebar.php:3557
    11371170msgid "The length of the title"
    11381171msgstr ""
    11391172
    11401173#. translators: there is some code.
    1141 #: includes/class-pis-posts-in-sidebar.php:3511
     1174#: includes/class-pis-posts-in-sidebar.php:3563
    11421175msgid "Use %s to leave the length unchanged."
    11431176msgstr ""
    11441177
    1145 #: includes/class-pis-posts-in-sidebar.php:3518
     1178#: includes/class-pis-posts-in-sidebar.php:3570
    11461179msgid "Title length unit"
    11471180msgstr ""
    11481181
    1149 #: includes/class-pis-posts-in-sidebar.php:3529
     1182#: includes/class-pis-posts-in-sidebar.php:3581
    11501183msgid "Add an ellipsis after the shortened title"
    11511184msgstr ""
    11521185
    1153 #: includes/class-pis-posts-in-sidebar.php:3539
     1186#: includes/class-pis-posts-in-sidebar.php:3591
    11541187msgid "Type of HTML tag for post title"
    11551188msgstr ""
    11561189
    1157 #: includes/class-pis-posts-in-sidebar.php:3550
     1190#: includes/class-pis-posts-in-sidebar.php:3602
    11581191msgid "The text of the post"
    11591192msgstr ""
    11601193
    1161 #: includes/class-pis-posts-in-sidebar.php:3555
     1194#: includes/class-pis-posts-in-sidebar.php:3607
    11621195msgid "Display this type of text"
    11631196msgstr ""
    11641197
    11651198#. translators: there is some code.
    1166 #: includes/class-pis-posts-in-sidebar.php:3561
     1199#: includes/class-pis-posts-in-sidebar.php:3613
    11671200msgid "For more information regarding these types of text, please see %1$shere%2$s."
    11681201msgstr ""
    11691202
    1170 #: includes/class-pis-posts-in-sidebar.php:3568
     1203#: includes/class-pis-posts-in-sidebar.php:3620
    11711204msgid "The WordPress generated excerpt length will be"
    11721205msgstr ""
    11731206
    1174 #: includes/class-pis-posts-in-sidebar.php:3579
     1207#: includes/class-pis-posts-in-sidebar.php:3631
    11751208msgid "Excerpt length unit"
    11761209msgstr ""
    11771210
    1178 #: includes/class-pis-posts-in-sidebar.php:3590
     1211#: includes/class-pis-posts-in-sidebar.php:3642
    11791212msgid "Use this text for More link"
    11801213msgstr ""
    11811214
    1182 #: includes/class-pis-posts-in-sidebar.php:3594
     1215#: includes/class-pis-posts-in-sidebar.php:3646
    11831216#: includes/pis-functions-display.php:569
    11841217#: includes/pis-functions-general.php:303
     
    11861219msgstr ""
    11871220
    1188 #: includes/class-pis-posts-in-sidebar.php:3595
     1221#: includes/class-pis-posts-in-sidebar.php:3647
    11891222msgid "The \"Read more\" text will be automatically hidden if the length of the WordPress-generated excerpt is smaller than or equal to the user-defined length."
    11901223msgstr ""
    11911224
    1192 #: includes/class-pis-posts-in-sidebar.php:3602
     1225#: includes/class-pis-posts-in-sidebar.php:3654
    11931226msgid "Display an arrow after the text of the post"
    11941227msgstr ""
    11951228
    1196 #: includes/class-pis-posts-in-sidebar.php:3617
     1229#: includes/class-pis-posts-in-sidebar.php:3669
    11971230msgid "The featured image of the post"
    11981231msgstr ""
    11991232
    1200 #: includes/class-pis-posts-in-sidebar.php:3626
     1233#: includes/class-pis-posts-in-sidebar.php:3678
    12011234msgid "Your theme does not support the Post Thumbnail feature. No image will be displayed."
    12021235msgstr ""
    12031236
    1204 #: includes/class-pis-posts-in-sidebar.php:3632
     1237#: includes/class-pis-posts-in-sidebar.php:3684
    12051238msgid "Display the featured image of the post"
    12061239msgstr ""
    12071240
    1208 #: includes/class-pis-posts-in-sidebar.php:3642
     1241#: includes/class-pis-posts-in-sidebar.php:3694
    12091242msgid "The size of the thumbnail will be"
    12101243msgstr ""
    12111244
    1212 #: includes/class-pis-posts-in-sidebar.php:3653
     1245#: includes/class-pis-posts-in-sidebar.php:3705
    12131246msgid "Align the image to"
    12141247msgstr ""
    12151248
    12161249#. translators: there is some code.
    1217 #: includes/class-pis-posts-in-sidebar.php:3665
     1250#: includes/class-pis-posts-in-sidebar.php:3717
    12181251msgid "Note that in order to use image sizes different from the WordPress standards, add them to your theme's %3$sfunctions.php%4$s file. See the %1$sCodex%2$s for further information."
    12191252msgstr ""
    12201253
    12211254#. translators: there is some code.
    1222 #: includes/class-pis-posts-in-sidebar.php:3675
     1255#: includes/class-pis-posts-in-sidebar.php:3727
    12231256msgid "You can also use %1$sa plugin%2$s that could help you in doing it."
    12241257msgstr ""
    12251258
    1226 #: includes/class-pis-posts-in-sidebar.php:3686
     1259#: includes/class-pis-posts-in-sidebar.php:3738
    12271260msgid "The link of the featured image"
    12281261msgstr ""
    12291262
    1230 #: includes/class-pis-posts-in-sidebar.php:3691
     1263#: includes/class-pis-posts-in-sidebar.php:3743
    12311264msgid "Link the image to the post"
    12321265msgstr ""
    12331266
    1234 #: includes/class-pis-posts-in-sidebar.php:3695
     1267#: includes/class-pis-posts-in-sidebar.php:3747
    12351268msgid "If activated, the image will be linked to the post. If you want to change the link, enter another URL in the box below."
    12361269msgstr ""
    12371270
    1238 #: includes/class-pis-posts-in-sidebar.php:3702
     1271#: includes/class-pis-posts-in-sidebar.php:3754
    12391272msgid "Link the image to this URL"
    12401273msgstr ""
    12411274
    1242 #: includes/class-pis-posts-in-sidebar.php:3707
     1275#: includes/class-pis-posts-in-sidebar.php:3759
    12431276msgid "By default the featured image is linked to the post. Use this field to link the image to a URL of your choice. Please, note that every featured image of this widget will be linked to the same URL."
    12441277msgstr ""
    12451278
    1246 #: includes/class-pis-posts-in-sidebar.php:3711
     1279#: includes/class-pis-posts-in-sidebar.php:3763
    12471280msgid "Custom featured image"
    12481281msgstr ""
    12491282
    1250 #: includes/class-pis-posts-in-sidebar.php:3716
     1283#: includes/class-pis-posts-in-sidebar.php:3768
    12511284msgid "Use this image instead of the standard featured image"
    12521285msgstr ""
    12531286
    1254 #: includes/class-pis-posts-in-sidebar.php:3721
     1287#: includes/class-pis-posts-in-sidebar.php:3773
    12551288msgid "Paste here the URL of the image. Note that the same image will be used for all the posts in the widget, unless you activate the checkbox below."
    12561289msgstr ""
    12571290
    1258 #: includes/class-pis-posts-in-sidebar.php:3728
     1291#: includes/class-pis-posts-in-sidebar.php:3780
    12591292msgid "Use custom image URL only if the post has not a featured image."
    12601293msgstr ""
    12611294
    1262 #: includes/class-pis-posts-in-sidebar.php:3741
    1263 #: includes/class-pis-posts-in-sidebar.php:4109
    1264 #: includes/class-pis-posts-in-sidebar.php:4281
    1265 #: includes/class-pis-posts-in-sidebar.php:4311
    1266 #: includes/class-pis-posts-in-sidebar.php:4341
    1267 #: includes/class-pis-posts-in-sidebar.php:4482
     1295#: includes/class-pis-posts-in-sidebar.php:3793
     1296#: includes/class-pis-posts-in-sidebar.php:4161
     1297#: includes/class-pis-posts-in-sidebar.php:4333
     1298#: includes/class-pis-posts-in-sidebar.php:4363
     1299#: includes/class-pis-posts-in-sidebar.php:4393
     1300#: includes/class-pis-posts-in-sidebar.php:4534
    12681301msgid "Move this section"
    12691302msgstr ""
    12701303
    1271 #: includes/class-pis-posts-in-sidebar.php:3746
    1272 #: includes/class-pis-posts-in-sidebar.php:4114
    1273 #: includes/class-pis-posts-in-sidebar.php:4487
     1304#: includes/class-pis-posts-in-sidebar.php:3798
     1305#: includes/class-pis-posts-in-sidebar.php:4166
     1306#: includes/class-pis-posts-in-sidebar.php:4539
    12741307msgid "Display this section before the title of the post"
    12751308msgstr ""
    12761309
    1277 #: includes/class-pis-posts-in-sidebar.php:3761
     1310#: includes/class-pis-posts-in-sidebar.php:3813
    12781311msgid "Author, date/time and comments"
    12791312msgstr ""
    12801313
    1281 #: includes/class-pis-posts-in-sidebar.php:3769
     1314#: includes/class-pis-posts-in-sidebar.php:3821
    12821315#: includes/pis-select-options.php:155
    12831316#: includes/pis-select-options.php:232
     
    12861319msgstr ""
    12871320
    1288 #: includes/class-pis-posts-in-sidebar.php:3774
     1321#: includes/class-pis-posts-in-sidebar.php:3826
    12891322msgid "Display the author of the post"
    12901323msgstr ""
    12911324
    1292 #: includes/class-pis-posts-in-sidebar.php:3784
     1325#: includes/class-pis-posts-in-sidebar.php:3836
    12931326msgid "Use this text before author's name"
    12941327msgstr ""
    12951328
    1296 #: includes/class-pis-posts-in-sidebar.php:3788
     1329#: includes/class-pis-posts-in-sidebar.php:3840
    12971330#: includes/pis-functions-display.php:728
    12981331#: includes/pis-functions-general.php:308
     
    13001333msgstr ""
    13011334
    1302 #: includes/class-pis-posts-in-sidebar.php:3795
     1335#: includes/class-pis-posts-in-sidebar.php:3847
    13031336msgid "Link the author to his archive"
    13041337msgstr ""
    13051338
    1306 #: includes/class-pis-posts-in-sidebar.php:3806
     1339#: includes/class-pis-posts-in-sidebar.php:3858
    13071340#: includes/pis-select-options.php:171
    13081341#: includes/pis-select-options.php:248
     
    13101343msgstr ""
    13111344
    1312 #: includes/class-pis-posts-in-sidebar.php:3811
     1345#: includes/class-pis-posts-in-sidebar.php:3863
    13131346msgid "Display the date of the post"
    13141347msgstr ""
    13151348
    1316 #: includes/class-pis-posts-in-sidebar.php:3821
     1349#: includes/class-pis-posts-in-sidebar.php:3873
    13171350msgid "Use this text before date"
    13181351msgstr ""
    13191352
    1320 #: includes/class-pis-posts-in-sidebar.php:3825
     1353#: includes/class-pis-posts-in-sidebar.php:3877
    13211354#: includes/pis-functions-display.php:731
    13221355#: includes/pis-functions-general.php:315
     
    13241357msgstr ""
    13251358
    1326 #: includes/class-pis-posts-in-sidebar.php:3832
     1359#: includes/class-pis-posts-in-sidebar.php:3884
    13271360msgid "Link the date to the post"
    13281361msgstr ""
    13291362
    1330 #: includes/class-pis-posts-in-sidebar.php:3842
     1363#: includes/class-pis-posts-in-sidebar.php:3894
    13311364msgid "Display the time of the post"
    13321365msgstr ""
    13331366
    1334 #: includes/class-pis-posts-in-sidebar.php:3853
     1367#: includes/class-pis-posts-in-sidebar.php:3905
    13351368msgid "Comments"
    13361369msgstr ""
    13371370
    1338 #: includes/class-pis-posts-in-sidebar.php:3858
     1371#: includes/class-pis-posts-in-sidebar.php:3910
    13391372msgid "Display the number of comments"
    13401373msgstr ""
    13411374
    1342 #: includes/class-pis-posts-in-sidebar.php:3868
     1375#: includes/class-pis-posts-in-sidebar.php:3920
    13431376msgid "Use this text before comments"
    13441377msgstr ""
    13451378
    1346 #: includes/class-pis-posts-in-sidebar.php:3872
     1379#: includes/class-pis-posts-in-sidebar.php:3924
    13471380#: includes/pis-functions-display.php:735
    13481381#: includes/pis-functions-general.php:327
     
    13501383msgstr ""
    13511384
    1352 #: includes/class-pis-posts-in-sidebar.php:3879
     1385#: includes/class-pis-posts-in-sidebar.php:3931
    13531386msgid "Link the comments to post's comments"
    13541387msgstr ""
    13551388
    1356 #: includes/class-pis-posts-in-sidebar.php:3889
     1389#: includes/class-pis-posts-in-sidebar.php:3941
    13571390msgid "Display the number of comments only"
    13581391msgstr ""
    13591392
    1360 #: includes/class-pis-posts-in-sidebar.php:3907
     1393#: includes/class-pis-posts-in-sidebar.php:3959
    13611394msgid "Display author's Gravatar"
    13621395msgstr ""
    13631396
    1364 #: includes/class-pis-posts-in-sidebar.php:3919
     1397#: includes/class-pis-posts-in-sidebar.php:3971
    13651398msgid "Gravatar size"
    13661399msgstr ""
    13671400
    1368 #: includes/class-pis-posts-in-sidebar.php:3930
     1401#: includes/class-pis-posts-in-sidebar.php:3982
    13691402msgid "URL of the default Gravatar image"
    13701403msgstr ""
    13711404
    1372 #: includes/class-pis-posts-in-sidebar.php:3941
     1405#: includes/class-pis-posts-in-sidebar.php:3993
    13731406msgid "Gravatar position"
    13741407msgstr ""
    13751408
    1376 #: includes/class-pis-posts-in-sidebar.php:3956
     1409#: includes/class-pis-posts-in-sidebar.php:4008
    13771410msgid "Display the modification date of the post"
    13781411msgstr ""
    13791412
    1380 #: includes/class-pis-posts-in-sidebar.php:3966
     1413#: includes/class-pis-posts-in-sidebar.php:4018
    13811414msgid "Use this text before modification date"
    13821415msgstr ""
    13831416
    1384 #: includes/class-pis-posts-in-sidebar.php:3970
     1417#: includes/class-pis-posts-in-sidebar.php:4022
    13851418#: includes/pis-functions-display.php:733
    13861419#: includes/pis-functions-general.php:321
     
    13881421msgstr ""
    13891422
    1390 #: includes/class-pis-posts-in-sidebar.php:3977
     1423#: includes/class-pis-posts-in-sidebar.php:4029
    13911424msgid "Link the modification date to the post"
    13921425msgstr ""
    13931426
    1394 #: includes/class-pis-posts-in-sidebar.php:3987
     1427#: includes/class-pis-posts-in-sidebar.php:4039
    13951428msgid "Display the modification time of the post"
    13961429msgstr ""
    13971430
    1398 #: includes/class-pis-posts-in-sidebar.php:4001
     1431#: includes/class-pis-posts-in-sidebar.php:4053
    13991432msgid "Hide the comments section if there is no comment"
    14001433msgstr ""
    14011434
    1402 #: includes/class-pis-posts-in-sidebar.php:4011
     1435#: includes/class-pis-posts-in-sidebar.php:4063
    14031436msgid "Use this separator between author, date/time and comments"
    14041437msgstr ""
    14051438
    1406 #: includes/class-pis-posts-in-sidebar.php:4016
     1439#: includes/class-pis-posts-in-sidebar.php:4068
    14071440msgid "A space will be added before and after the separator."
    14081441msgstr ""
    14091442
    1410 #: includes/class-pis-posts-in-sidebar.php:4026
     1443#: includes/class-pis-posts-in-sidebar.php:4078
    14111444msgid "Date and time formatting"
    14121445msgstr ""
    14131446
    1414 #: includes/class-pis-posts-in-sidebar.php:4030
     1447#: includes/class-pis-posts-in-sidebar.php:4082
    14151448msgid "In these fields you can define the format of date and time for this widget."
    14161449msgstr ""
    14171450
    1418 #: includes/class-pis-posts-in-sidebar.php:4032
     1451#: includes/class-pis-posts-in-sidebar.php:4084
    14191452msgid "If you leave these fields blank, the widget will use the format as defined in the Settings page of WordPress."
    14201453msgstr ""
    14211454
    1422 #: includes/class-pis-posts-in-sidebar.php:4034
     1455#: includes/class-pis-posts-in-sidebar.php:4086
    14231456msgid "It's not necessary to fill all the fields, but only those you want to change."
    14241457msgstr ""
    14251458
    14261459#. translators: The link to date and time formatting in WordPress documentation.
    1427 #: includes/class-pis-posts-in-sidebar.php:4042
     1460#: includes/class-pis-posts-in-sidebar.php:4094
    14281461msgid "For more information about date and time formatting see the %1$sWordPress documentation%2$s."
    14291462msgstr ""
    14301463
    1431 #: includes/class-pis-posts-in-sidebar.php:4056
     1464#: includes/class-pis-posts-in-sidebar.php:4108
    14321465msgid "Date format"
    14331466msgstr ""
    14341467
    1435 #: includes/class-pis-posts-in-sidebar.php:4067
     1468#: includes/class-pis-posts-in-sidebar.php:4119
    14361469msgid "Time format"
    14371470msgstr ""
    14381471
    1439 #: includes/class-pis-posts-in-sidebar.php:4082
     1472#: includes/class-pis-posts-in-sidebar.php:4134
    14401473msgid "Modification date format"
    14411474msgstr ""
    14421475
    1443 #: includes/class-pis-posts-in-sidebar.php:4093
     1476#: includes/class-pis-posts-in-sidebar.php:4145
    14441477msgid "Modification time format"
    14451478msgstr ""
    14461479
    1447 #: includes/class-pis-posts-in-sidebar.php:4124
    1448 #: includes/class-pis-posts-in-sidebar.php:4497
     1480#: includes/class-pis-posts-in-sidebar.php:4176
     1481#: includes/class-pis-posts-in-sidebar.php:4549
    14491482msgid "Display this section after the title of the post"
    14501483msgstr ""
    14511484
    1452 #: includes/class-pis-posts-in-sidebar.php:4139
     1485#: includes/class-pis-posts-in-sidebar.php:4191
    14531486msgid "Taxonomies"
    14541487msgstr ""
    14551488
    1456 #: includes/class-pis-posts-in-sidebar.php:4147
     1489#: includes/class-pis-posts-in-sidebar.php:4199
    14571490msgid "Categories"
    14581491msgstr ""
    14591492
    1460 #: includes/class-pis-posts-in-sidebar.php:4152
     1493#: includes/class-pis-posts-in-sidebar.php:4204
    14611494msgid "Show the categories"
    14621495msgstr ""
    14631496
    1464 #: includes/class-pis-posts-in-sidebar.php:4162
     1497#: includes/class-pis-posts-in-sidebar.php:4214
    14651498msgid "Use this text before categories list"
    14661499msgstr ""
    14671500
    1468 #: includes/class-pis-posts-in-sidebar.php:4166
     1501#: includes/class-pis-posts-in-sidebar.php:4218
    14691502#: includes/pis-functions-display.php:160
    14701503#: includes/pis-functions-general.php:337
     
    14721505msgstr ""
    14731506
    1474 #: includes/class-pis-posts-in-sidebar.php:4173
     1507#: includes/class-pis-posts-in-sidebar.php:4225
    14751508msgid "Use this separator between categories"
    14761509msgstr ""
    14771510
    1478 #: includes/class-pis-posts-in-sidebar.php:4178
    1479 #: includes/class-pis-posts-in-sidebar.php:4228
    1480 #: includes/class-pis-posts-in-sidebar.php:4267
     1511#: includes/class-pis-posts-in-sidebar.php:4230
     1512#: includes/class-pis-posts-in-sidebar.php:4280
     1513#: includes/class-pis-posts-in-sidebar.php:4319
    14811514msgid "A space will be added after the separator."
    14821515msgstr ""
    14831516
    1484 #: includes/class-pis-posts-in-sidebar.php:4186
     1517#: includes/class-pis-posts-in-sidebar.php:4238
    14851518msgid "Tags"
    14861519msgstr ""
    14871520
    1488 #: includes/class-pis-posts-in-sidebar.php:4191
     1521#: includes/class-pis-posts-in-sidebar.php:4243
    14891522msgid "Show the tags"
    14901523msgstr ""
    14911524
    1492 #: includes/class-pis-posts-in-sidebar.php:4201
     1525#: includes/class-pis-posts-in-sidebar.php:4253
    14931526msgid "Use this text before tags list"
    14941527msgstr ""
    14951528
    1496 #: includes/class-pis-posts-in-sidebar.php:4205
     1529#: includes/class-pis-posts-in-sidebar.php:4257
    14971530#: includes/pis-functions-display.php:225
    14981531#: includes/pis-functions-general.php:344
     
    15001533msgstr ""
    15011534
    1502 #: includes/class-pis-posts-in-sidebar.php:4212
     1535#: includes/class-pis-posts-in-sidebar.php:4264
    15031536msgid "Use this hashtag"
    15041537msgstr ""
    15051538
    1506 #: includes/class-pis-posts-in-sidebar.php:4223
     1539#: includes/class-pis-posts-in-sidebar.php:4275
    15071540msgid "Use this separator between tags"
    15081541msgstr ""
    15091542
    1510 #: includes/class-pis-posts-in-sidebar.php:4236
     1543#: includes/class-pis-posts-in-sidebar.php:4288
    15111544msgid "Custom taxonomies"
    15121545msgstr ""
    15131546
    1514 #: includes/class-pis-posts-in-sidebar.php:4241
     1547#: includes/class-pis-posts-in-sidebar.php:4293
    15151548msgid "Show the custom taxonomies"
    15161549msgstr ""
    15171550
    1518 #: includes/class-pis-posts-in-sidebar.php:4251
     1551#: includes/class-pis-posts-in-sidebar.php:4303
    15191552msgid "Use this hashtag for terms"
    15201553msgstr ""
    15211554
    1522 #: includes/class-pis-posts-in-sidebar.php:4262
     1555#: includes/class-pis-posts-in-sidebar.php:4314
    15231556msgid "Use this separator between terms"
    15241557msgstr ""
    15251558
    1526 #: includes/class-pis-posts-in-sidebar.php:4286
     1559#: includes/class-pis-posts-in-sidebar.php:4338
    15271560msgid "Display the categories before the title of the post"
    15281561msgstr ""
    15291562
    1530 #: includes/class-pis-posts-in-sidebar.php:4296
     1563#: includes/class-pis-posts-in-sidebar.php:4348
    15311564msgid "Display the categories after the title of the post"
    15321565msgstr ""
    15331566
    1534 #: includes/class-pis-posts-in-sidebar.php:4316
     1567#: includes/class-pis-posts-in-sidebar.php:4368
    15351568msgid "Display the tags before the title of the post"
    15361569msgstr ""
    15371570
    1538 #: includes/class-pis-posts-in-sidebar.php:4326
     1571#: includes/class-pis-posts-in-sidebar.php:4378
    15391572msgid "Display the tags after the title of the post"
    15401573msgstr ""
    15411574
    1542 #: includes/class-pis-posts-in-sidebar.php:4346
     1575#: includes/class-pis-posts-in-sidebar.php:4398
    15431576msgid "Display the custom taxonomies before the title of the post"
    15441577msgstr ""
    15451578
    1546 #: includes/class-pis-posts-in-sidebar.php:4356
     1579#: includes/class-pis-posts-in-sidebar.php:4408
    15471580msgid "Display the custom taxonomies after the title of the post"
    15481581msgstr ""
    15491582
    1550 #: includes/class-pis-posts-in-sidebar.php:4375
     1583#: includes/class-pis-posts-in-sidebar.php:4427
    15511584msgid "The custom fields"
    15521585msgstr ""
    15531586
    1554 #: includes/class-pis-posts-in-sidebar.php:4383
     1587#: includes/class-pis-posts-in-sidebar.php:4435
    15551588msgid "Display all the custom fields"
    15561589msgstr ""
    15571590
    1558 #: includes/class-pis-posts-in-sidebar.php:4388
     1591#: includes/class-pis-posts-in-sidebar.php:4440
    15591592msgid "Display all the custom fields of the post"
    15601593msgstr ""
    15611594
    1562 #: includes/class-pis-posts-in-sidebar.php:4399
     1595#: includes/class-pis-posts-in-sidebar.php:4451
    15631596msgid "Display a single custom field"
    15641597msgstr ""
    15651598
    1566 #: includes/class-pis-posts-in-sidebar.php:4404
     1599#: includes/class-pis-posts-in-sidebar.php:4456
    15671600msgid "Display the custom field of the post"
    15681601msgstr ""
    15691602
    1570 #: includes/class-pis-posts-in-sidebar.php:4414
     1603#: includes/class-pis-posts-in-sidebar.php:4466
    15711604msgid "Display this custom field"
    15721605msgstr ""
    15731606
    1574 #: includes/class-pis-posts-in-sidebar.php:4429
     1607#: includes/class-pis-posts-in-sidebar.php:4481
    15751608msgid "Use this text before the custom field"
    15761609msgstr ""
    15771610
    1578 #: includes/class-pis-posts-in-sidebar.php:4433
     1611#: includes/class-pis-posts-in-sidebar.php:4485
    15791612msgid "Custom field:"
    15801613msgstr ""
    15811614
    1582 #: includes/class-pis-posts-in-sidebar.php:4440
     1615#: includes/class-pis-posts-in-sidebar.php:4492
    15831616msgid "The custom field content length will be (in characters)"
    15841617msgstr ""
    15851618
    1586 #: includes/class-pis-posts-in-sidebar.php:4451
     1619#: includes/class-pis-posts-in-sidebar.php:4503
    15871620msgid "Use this text for horizontal ellipsis"
    15881621msgstr ""
    15891622
    1590 #: includes/class-pis-posts-in-sidebar.php:4462
     1623#: includes/class-pis-posts-in-sidebar.php:4514
    15911624msgid "Also display the key of the custom field"
    15921625msgstr ""
    15931626
    1594 #: includes/class-pis-posts-in-sidebar.php:4472
     1627#: includes/class-pis-posts-in-sidebar.php:4524
    15951628msgid "Use this separator between meta key and value"
    15961629msgstr ""
    15971630
    1598 #: includes/class-pis-posts-in-sidebar.php:4512
     1631#: includes/class-pis-posts-in-sidebar.php:4564
    15991632msgid "The link to the archive"
    16001633msgstr ""
    16011634
    1602 #: includes/class-pis-posts-in-sidebar.php:4523
     1635#: includes/class-pis-posts-in-sidebar.php:4575
    16031636msgid "Display the link to the taxonomy archive"
    16041637msgstr ""
    16051638
    1606 #: includes/class-pis-posts-in-sidebar.php:4533
     1639#: includes/class-pis-posts-in-sidebar.php:4585
    16071640msgid "Link to the archive of"
    16081641msgstr ""
    16091642
    1610 #: includes/class-pis-posts-in-sidebar.php:4547
     1643#: includes/class-pis-posts-in-sidebar.php:4599
    16111644msgid "Taxonomy name"
    16121645msgstr ""
    16131646
    1614 #: includes/class-pis-posts-in-sidebar.php:4551
     1647#: includes/class-pis-posts-in-sidebar.php:4603
    16151648msgid "genre"
    16161649msgstr ""
    16171650
    16181651#. translators: %s contains some code.
    1619 #: includes/class-pis-posts-in-sidebar.php:4554
     1652#: includes/class-pis-posts-in-sidebar.php:4606
    16201653msgid "Enter the term name of the custom taxonomy (e.g., %1$sgenre%2$s). %3$sUse this field only if you selected \"Custom taxonomy\" in the \"Link to the archive of\" dropdown menu.%4$s"
    16211654msgstr ""
    16221655
    1623 #: includes/class-pis-posts-in-sidebar.php:4576
     1656#: includes/class-pis-posts-in-sidebar.php:4628
    16241657msgid "Taxonomy term name"
    16251658msgstr ""
    16261659
    1627 #: includes/class-pis-posts-in-sidebar.php:4580
     1660#: includes/class-pis-posts-in-sidebar.php:4632
    16281661msgid "science"
    16291662msgstr ""
    16301663
    16311664#. translators: %s contains some code.
    1632 #: includes/class-pis-posts-in-sidebar.php:4583
     1665#: includes/class-pis-posts-in-sidebar.php:4635
    16331666msgid "Enter the name of the taxonomy term (e.g., %1$sscience%2$s if the taxonomy is \"genre\").%3$sIf you selected \"Author\" in \"Link to the archive of\" field, enter the author slug; if you selected \"Category\", enter the category slug, and so on."
    16341667msgstr ""
    16351668
    1636 #: includes/class-pis-posts-in-sidebar.php:4598
     1669#: includes/class-pis-posts-in-sidebar.php:4650
    16371670msgid "Enable dynamic link in single posts and archive pages"
    16381671msgstr ""
    16391672
    1640 #: includes/class-pis-posts-in-sidebar.php:4602
     1673#: includes/class-pis-posts-in-sidebar.php:4654
    16411674msgid "When activated, this function will get the term name automatically in single posts and archive pages. The only required option is the field \"Link to the archive of\". If activated, the content of the field \"Taxonomy term name\" will be ignored in single posts and archive pages. This option will not work on post formats archives."
    16421675msgstr ""
    16431676
    1644 #: includes/class-pis-posts-in-sidebar.php:4614
     1677#: includes/class-pis-posts-in-sidebar.php:4666
    16451678msgid "Use this text for archive link"
    16461679msgstr ""
    16471680
    16481681#. translators: %s is the name of the taxonomy for the archive page link.
    1649 #: includes/class-pis-posts-in-sidebar.php:4619
     1682#: includes/class-pis-posts-in-sidebar.php:4671
    16501683#: includes/pis-functions-general.php:376
    16511684msgid "Display all posts under %s"
     
    16531686
    16541687#. translators: %s contains some code.
    1655 #: includes/class-pis-posts-in-sidebar.php:4622
     1688#: includes/class-pis-posts-in-sidebar.php:4674
    16561689msgid "Use %s to display the taxonomy term name."
    16571690msgstr ""
    16581691
    1659 #: includes/class-pis-posts-in-sidebar.php:4634
     1692#: includes/class-pis-posts-in-sidebar.php:4686
    16601693msgid "When no posts are found"
    16611694msgstr ""
    16621695
    1663 #: includes/class-pis-posts-in-sidebar.php:4642
     1696#: includes/class-pis-posts-in-sidebar.php:4694
    16641697msgid "Use this text when there are no posts"
    16651698msgstr ""
    16661699
    1667 #: includes/class-pis-posts-in-sidebar.php:4646
     1700#: includes/class-pis-posts-in-sidebar.php:4698
    16681701#: includes/pis-functions-general.php:379
    16691702msgid "No posts yet."
    16701703msgstr ""
    16711704
    1672 #: includes/class-pis-posts-in-sidebar.php:4653
     1705#: includes/class-pis-posts-in-sidebar.php:4705
    16731706msgid "Completely hide the widget if no posts are found"
    16741707msgstr ""
    16751708
    1676 #: includes/class-pis-posts-in-sidebar.php:4671
     1709#: includes/class-pis-posts-in-sidebar.php:4723
    16771710msgid "Styles"
    16781711msgstr ""
    16791712
    1680 #: includes/class-pis-posts-in-sidebar.php:4675
     1713#: includes/class-pis-posts-in-sidebar.php:4727
    16811714msgid "This section defines the margin for each line of the widget. Leave blank if you don't want to add any local style."
    16821715msgstr ""
    16831716
    1684 #: includes/class-pis-posts-in-sidebar.php:4684
     1717#: includes/class-pis-posts-in-sidebar.php:4736
    16851718msgid "Unit for margins"
    16861719msgstr ""
    16871720
    16881721#. translators: %s contains some code.
    1689 #: includes/class-pis-posts-in-sidebar.php:4698
     1722#: includes/class-pis-posts-in-sidebar.php:4750
    16901723msgid "Enter here only the value without any unit, e.g. enter %1$s if you want a space of 10px or enter %2$s if you don't want any space."
    16911724msgstr ""
    16921725
    1693 #: includes/class-pis-posts-in-sidebar.php:4712
     1726#: includes/class-pis-posts-in-sidebar.php:4764
    16941727msgid "Introduction bottom margin"
    16951728msgstr ""
    16961729
    1697 #: includes/class-pis-posts-in-sidebar.php:4713
     1730#: includes/class-pis-posts-in-sidebar.php:4765
    16981731msgid "Title bottom margin"
    16991732msgstr ""
    17001733
    1701 #: includes/class-pis-posts-in-sidebar.php:4714
     1734#: includes/class-pis-posts-in-sidebar.php:4766
    17021735msgid "Image left &amp; right margin"
    17031736msgstr ""
    17041737
    1705 #: includes/class-pis-posts-in-sidebar.php:4715
     1738#: includes/class-pis-posts-in-sidebar.php:4767
    17061739msgid "Image bottom margin"
    17071740msgstr ""
    17081741
    1709 #: includes/class-pis-posts-in-sidebar.php:4719
     1742#: includes/class-pis-posts-in-sidebar.php:4771
    17101743msgid "Excerpt bottom margin"
    17111744msgstr ""
    17121745
    1713 #: includes/class-pis-posts-in-sidebar.php:4720
     1746#: includes/class-pis-posts-in-sidebar.php:4772
    17141747msgid "Utility bottom margin"
    17151748msgstr ""
    17161749
    1717 #: includes/class-pis-posts-in-sidebar.php:4721
     1750#: includes/class-pis-posts-in-sidebar.php:4773
    17181751msgid "Categories bottom margin"
    17191752msgstr ""
    17201753
    1721 #: includes/class-pis-posts-in-sidebar.php:4722
     1754#: includes/class-pis-posts-in-sidebar.php:4774
    17221755msgid "Tags bottom margin"
    17231756msgstr ""
    17241757
    1725 #: includes/class-pis-posts-in-sidebar.php:4726
     1758#: includes/class-pis-posts-in-sidebar.php:4778
    17261759msgid "Terms bottom margin"
    17271760msgstr ""
    17281761
    1729 #: includes/class-pis-posts-in-sidebar.php:4727
     1762#: includes/class-pis-posts-in-sidebar.php:4779
    17301763msgid "Custom field bottom margin"
    17311764msgstr ""
    17321765
    1733 #: includes/class-pis-posts-in-sidebar.php:4728
     1766#: includes/class-pis-posts-in-sidebar.php:4780
    17341767msgid "Archive bottom margin"
    17351768msgstr ""
    17361769
    1737 #: includes/class-pis-posts-in-sidebar.php:4729
     1770#: includes/class-pis-posts-in-sidebar.php:4781
    17381771msgid "No-posts bottom margin"
    17391772msgstr ""
    17401773
    1741 #: includes/class-pis-posts-in-sidebar.php:4737
    1742 #: includes/class-pis-posts-in-sidebar.php:4770
     1774#: includes/class-pis-posts-in-sidebar.php:4789
     1775#: includes/class-pis-posts-in-sidebar.php:4822
    17431776msgid "Custom styles"
    17441777msgstr ""
    17451778
    17461779#. translators: %s contains some code.
    1747 #: includes/class-pis-posts-in-sidebar.php:4745
     1780#: includes/class-pis-posts-in-sidebar.php:4797
    17481781msgid "In this field you can add your own styles, for example: %s"
    17491782msgstr ""
    17501783
    17511784#. translators: %s contains some code.
    1752 #: includes/class-pis-posts-in-sidebar.php:4753
     1785#: includes/class-pis-posts-in-sidebar.php:4805
    17531786msgid "To apply a style only to elements of this widget, prefix every style with this ID selector: %s"
    17541787msgstr ""
    17551788
    17561789#. translators: %s contains some code.
    1757 #: includes/class-pis-posts-in-sidebar.php:4761
     1790#: includes/class-pis-posts-in-sidebar.php:4813
    17581791msgid "For example: %s"
    17591792msgstr ""
    17601793
    1761 #: includes/class-pis-posts-in-sidebar.php:4774
     1794#: includes/class-pis-posts-in-sidebar.php:4826
    17621795msgid "Enter here your CSS styles"
    17631796msgstr ""
    17641797
    1765 #: includes/class-pis-posts-in-sidebar.php:4786
     1798#: includes/class-pis-posts-in-sidebar.php:4838
    17661799msgid "Extras"
    17671800msgstr ""
    17681801
    1769 #: includes/class-pis-posts-in-sidebar.php:4793
     1802#: includes/class-pis-posts-in-sidebar.php:4845
    17701803msgid "Add a global container with this CSS class"
    17711804msgstr ""
    17721805
    17731806#. translators: %s contains some code.
    1774 #: includes/class-pis-posts-in-sidebar.php:4800
     1807#: includes/class-pis-posts-in-sidebar.php:4852
    17751808msgid "Enter the name of your container (for example, %1$s). The plugin will add a new %2$s container with this class. You can enter only one class and the name may contain only letters, hyphens and underscores. The new container will enclose all the widget, from the widget title to the last line."
    17761809msgstr ""
    17771810
    1778 #: includes/class-pis-posts-in-sidebar.php:4813
     1811#: includes/class-pis-posts-in-sidebar.php:4865
    17791812msgid "Use this type of list for the posts"
    17801813msgstr ""
    17811814
    1782 #: includes/class-pis-posts-in-sidebar.php:4824
     1815#: includes/class-pis-posts-in-sidebar.php:4876
    17831816msgid "Try to remove the bullets and the extra left space from the list elements"
    17841817msgstr ""
    17851818
    17861819#. translators: %s contains some code.
    1787 #: includes/class-pis-posts-in-sidebar.php:4830
     1820#: includes/class-pis-posts-in-sidebar.php:4882
    17881821msgid "If the plugin doesn't remove the bullets and/or the extra left space, you have to %1$sedit your CSS file%2$s manually."
    17891822msgstr ""
    17901823
    1791 #: includes/class-pis-posts-in-sidebar.php:4840
     1824#: includes/class-pis-posts-in-sidebar.php:4892
    17921825msgid "Add the WordPress standard classes to the post in the widget"
    17931826msgstr ""
    17941827
    17951828#. translators: %s contains some code.
    1796 #: includes/class-pis-posts-in-sidebar.php:4846
     1829#: includes/class-pis-posts-in-sidebar.php:4898
    17971830msgid "Every standard WordPress posts has a series of HTML classes, such as %s, and so on. Activating this option you can add these classes to the usual plugin's classes."
    17981831msgstr ""
    17991832
    1800 #: includes/class-pis-posts-in-sidebar.php:4863
     1833#: includes/class-pis-posts-in-sidebar.php:4915
    18011834msgid "Cache"
    18021835msgstr ""
    18031836
    1804 #: includes/class-pis-posts-in-sidebar.php:4874
     1837#: includes/class-pis-posts-in-sidebar.php:4926
    18051838msgid "Use a cache to serve the output"
    18061839msgstr ""
    18071840
    1808 #: includes/class-pis-posts-in-sidebar.php:4878
     1841#: includes/class-pis-posts-in-sidebar.php:4930
    18091842msgid "This option, if activated, will increase the performance but will show the same output during the defined cache time."
    18101843msgstr ""
    18111844
    1812 #: includes/class-pis-posts-in-sidebar.php:4892
     1845#: includes/class-pis-posts-in-sidebar.php:4944
    18131846msgid "The cache will be used for (in seconds)"
    18141847msgstr ""
    18151848
    18161849#. translators: %s contains some code.
    1817 #: includes/class-pis-posts-in-sidebar.php:4899
     1850#: includes/class-pis-posts-in-sidebar.php:4951
    18181851msgid "For example, %s for one hour of cache. To reset the cache, enter a value different from the previously saved."
    18191852msgstr ""
    18201853
    1821 #: includes/class-pis-posts-in-sidebar.php:4915
     1854#: includes/class-pis-posts-in-sidebar.php:4967
    18221855msgid "Debugging"
    18231856msgstr ""
    18241857
    18251858#. translators: %s contains the plugin version.
    1826 #: includes/class-pis-posts-in-sidebar.php:4923
     1859#: includes/class-pis-posts-in-sidebar.php:4975
    18271860msgid "You are using Posts in Sidebar version %s"
    18281861msgstr ""
    18291862
    18301863#. translators: %s contains the widget id.
    1831 #: includes/class-pis-posts-in-sidebar.php:4933
     1864#: includes/class-pis-posts-in-sidebar.php:4985
    18321865msgid "The ID of this widget is: %s"
    18331866msgstr ""
    18341867
    1835 #: includes/class-pis-posts-in-sidebar.php:4939
     1868#: includes/class-pis-posts-in-sidebar.php:4991
    18361869msgid "Use this options for debugging purposes only."
    18371870msgstr ""
    18381871
    1839 #: includes/class-pis-posts-in-sidebar.php:4941
     1872#: includes/class-pis-posts-in-sidebar.php:4993
    18401873msgid "Deactivate the following option only if you want to display debugging information publicly on your site."
    18411874msgstr ""
    18421875
    1843 #: includes/class-pis-posts-in-sidebar.php:4945
     1876#: includes/class-pis-posts-in-sidebar.php:4997
    18441877msgid "Display debugging information to admins only"
    18451878msgstr ""
    18461879
    1847 #: includes/class-pis-posts-in-sidebar.php:4956
     1880#: includes/class-pis-posts-in-sidebar.php:5008
    18481881msgid "Display the query for the widget"
    18491882msgstr ""
    18501883
    1851 #: includes/class-pis-posts-in-sidebar.php:4966
     1884#: includes/class-pis-posts-in-sidebar.php:5018
    18521885msgid "Display the complete set of parameters for the widget"
    18531886msgstr ""
    18541887
    1855 #: includes/class-pis-posts-in-sidebar.php:4976
     1888#: includes/class-pis-posts-in-sidebar.php:5028
    18561889msgid "Display the ID of the post just before the post title"
    18571890msgstr ""
    18581891
    18591892#. translators: %s contains the post ID as string.
    1860 #: includes/class-pis-posts-in-sidebar.php:4982
     1893#: includes/class-pis-posts-in-sidebar.php:5034
    18611894msgid "The ID will be displayed as %s."
    18621895msgstr ""
    18631896
    1864 #: includes/class-pis-posts-in-sidebar.php:4994
     1897#: includes/class-pis-posts-in-sidebar.php:5046
    18651898msgid "Note for widget duplication"
    18661899msgstr ""
    18671900
    1868 #: includes/class-pis-posts-in-sidebar.php:4998
     1901#: includes/class-pis-posts-in-sidebar.php:5050
    18691902msgid "When you duplicate the widget, please reload the page, so that you can open the panels in the duplicated widget."
    18701903msgstr ""
  • posts-in-sidebar/trunk/posts-in-sidebar.php

    r2616008 r2622527  
    1717 * Plugin URI: https://dev.aldolat.it/projects/posts-in-sidebar/
    1818 * Description: Publish a list of posts in your sidebar
    19  * Version: 4.16.2
     19 * Version: 4.16.3
    2020 * Author: Aldo Latino
    2121 * Author URI: https://www.aldolat.it/
     
    6767     * Define the version of the plugin.
    6868     */
    69     define( 'PIS_VERSION', '4.16.2' );
     69    define( 'PIS_VERSION', '4.16.3' );
    7070
    7171    /*
  • posts-in-sidebar/trunk/readme.txt

    r2616008 r2622527  
    55Requires at least: 4.6
    66Tested up to: 5.8
    7 Stable tag: 4.16.2
     7Stable tag: 4.16.3
    88License: GPLv3 or later
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    101101== Changelog ==
    102102
    103 = 4.16.2 =
     103= 4.16.3 =
    104104
    105 * Fixed displaying post ID to admins only.
    106 
    107 = 4.16.1 =
    108 
    109 * Added a new option in the Debug section for displaying the post ID just before the post title.
    110 * Changed the comment for an option.
    111 * Fixed i18n for a string.
     105* Changed admin UI in the "Getting posts" section.
    112106
    113107The full changelog is documented in the changelog file released along with the plugin package and is hosted on [GitHub](https://github.com/aldolat/posts-in-sidebar/blob/master/CHANGELOG.md).
Note: See TracChangeset for help on using the changeset viewer.