Plugin Directory

Changeset 2625328


Ignore:
Timestamp:
11/06/2021 02:00:40 AM (4 years ago)
Author:
willfonkam
Message:

Updating trunk to v1.1

Location:
wp-factcheck/trunk
Files:
1 added
16 edited

Legend:

Unmodified
Added
Removed
  • wp-factcheck/trunk/assets/js/main.js

    r2360776 r2625328  
    55        var form                    = {
    66            action:                 'wpfc_save_settings',
     7            wpfc_show_details:      $(".wpfc-show-details:checked").val(),
    78            wpfc_columns:           $("#wpfc-display-columns").val(),
    89            wpfc_icons:             $("#wpfc-show-icons").val(),
  • wp-factcheck/trunk/inc/activate.php

    r2360776 r2625328  
    1212    if( !$wpfc_options ) {
    1313        $opts                           = [
     14            'display'                   => 'yes',
    1415            'columns'                   => 'two-columns',
    1516            'icons'                     => 'show',
     
    2223            ],
    2324            'fonts'                     => [
    24                 'title'                 => 'Inter',
    25                 'content'               => 'Lora',
     25                'title'                 => 'default',
     26                'content'               => 'default',
    2627            ]
    2728        ];
  • wp-factcheck/trunk/inc/custom-post-type.php

    r2360776 r2625328  
    22function wpfc_post_types() {
    33    $labels = array(
    4         'name'                  => _x( 'Fact-checkings', 'Post type general name', 'wpfc' ),
    5         'singular_name'         => _x( 'Fact-checking', 'Post type singular name', 'wpfc' ),
    6         'menu_name'             => _x( 'Fact-checkings', 'Admin Menu text', 'wpfc' ),
    7         'name_admin_bar'        => _x( 'Fact-checking', 'Add New on Toolbar', 'wpfc' ),
    8         'add_new_item'          => __( 'Add New Fact-checking', 'wpfc' ),
    9         'new_item'              => __( 'New Fact-checking', 'wpfc' ),
    10         'edit_item'             => __( 'Edit Fact-checking', 'wpfc' ),
    11         'view_item'             => __( 'View Fact-checking', 'wpfc' ),
    12         'all_items'             => __( 'All Fact-checkings', 'wpfc' ),
    13         'search_items'          => __( 'Search Fact-checkings', 'wpfc' ),
    14         'parent_item_colon'     => __( 'Parent Fact-checkings:', 'wpfc' ),
    15         'not_found'             => __( 'No fact-checkings found.', 'wpfc' ),
     4        'name'                  => _x( 'Fact-checks', 'Post type general name', 'wpfc' ),
     5        'singular_name'         => _x( 'Fact-check', 'Post type singular name', 'wpfc' ),
     6        'menu_name'             => _x( 'Fact-checks', 'Admin Menu text', 'wpfc' ),
     7        'name_admin_bar'        => _x( 'Fact-check', 'Add New on Toolbar', 'wpfc' ),
     8        'add_new_item'          => __( 'Add New Fact-check', 'wpfc' ),
     9        'new_item'              => __( 'New Fact-check', 'wpfc' ),
     10        'edit_item'             => __( 'Edit Fact-check', 'wpfc' ),
     11        'view_item'             => __( 'View Fact-check', 'wpfc' ),
     12        'all_items'             => __( 'All Fact-checks', 'wpfc' ),
     13        'search_items'          => __( 'Search Fact-checks', 'wpfc' ),
     14        'parent_item_colon'     => __( 'Parent Fact-checks:', 'wpfc' ),
     15        'not_found'             => __( 'No fact-checks found.', 'wpfc' ),
    1616        'add_new'               => __( 'Add New', 'wpfc' ),
    17         'not_found_in_trash'    => __( 'No fact-checkings found in Trash.', 'wpfc' ),
    18         'featured_image'        => _x( 'Fact-checking Cover Image', 'Overrides the “Featured Image” phrase for this post type. Added in 4.3', 'wpfc' ),
     17        'not_found_in_trash'    => __( 'No fact-checks found in Trash.', 'wpfc' ),
     18        'featured_image'        => _x( 'Fact-check Cover Image', 'Overrides the “Featured Image” phrase for this post type. Added in 4.3', 'wpfc' ),
    1919        'set_featured_image'    => _x( 'Set cover image', 'Overrides the “Set featured image” phrase for this post type. Added in 4.3', 'wpfc' ),
    2020        'remove_featured_image' => _x( 'Remove cover image', 'Overrides the “Remove featured image” phrase for this post type. Added in 4.3', 'wpfc' ),
    2121        'use_featured_image'    => _x( 'Use as cover image', 'Overrides the “Use as featured image” phrase for this post type. Added in 4.3', 'wpfc' ),
    22         'archives'              => _x( 'Fact-checking archives', 'The post type archive label used in nav menus. Default “Post Archives”. Added in 4.4', 'wpfc' ),
    23         'insert_into_item'      => _x( 'Insert into fact-checking', 'Overrides the “Insert into post”/”Insert into page” phrase (used when inserting media into a post). Added in 4.4', 'wpfc' ),
    24         'uploaded_to_this_item' => _x( 'Uploaded to this fact-checking', 'Overrides the “Uploaded to this post”/”Uploaded to this page” phrase (used when viewing media attached to a post). Added in 4.4', 'wpfc' ),
    25         'filter_items_list'     => _x( 'Filter fact-checkings list', 'Screen reader text for the filter links heading on the post type listing screen. Default “Filter posts list”/”Filter pages list”. Added in 4.4', 'wpfc' ),
    26         'items_list_navigation' => _x( 'Fact-checkings list navigation', 'Screen reader text for the pagination heading on the post type listing screen. Default “Posts list navigation”/”Pages list navigation”. Added in 4.4', 'wpfc' ),
    27         'items_list'            => _x( 'Fact-checkings list', 'Screen reader text for the items list heading on the post type listing screen. Default “Posts list”/”Pages list”. Added in 4.4', 'wpfc' ),
     22        'archives'              => _x( 'Fact-check archives', 'The post type archive label used in nav menus. Default “Post Archives”. Added in 4.4', 'wpfc' ),
     23        'insert_into_item'      => _x( 'Insert into fact-check', 'Overrides the “Insert into post”/”Insert into page” phrase (used when inserting media into a post). Added in 4.4', 'wpfc' ),
     24        'uploaded_to_this_item' => _x( 'Uploaded to this fact-check', 'Overrides the “Uploaded to this post”/”Uploaded to this page” phrase (used when viewing media attached to a post). Added in 4.4', 'wpfc' ),
     25        'filter_items_list'     => _x( 'Filter fact-checks list', 'Screen reader text for the filter links heading on the post type listing screen. Default “Filter posts list”/”Filter pages list”. Added in 4.4', 'wpfc' ),
     26        'items_list_navigation' => _x( 'Fact-checks list navigation', 'Screen reader text for the pagination heading on the post type listing screen. Default “Posts list navigation”/”Pages list navigation”. Added in 4.4', 'wpfc' ),
     27        'items_list'            => _x( 'Fact-checks list', 'Screen reader text for the items list heading on the post type listing screen. Default “Posts list”/”Pages list”. Added in 4.4', 'wpfc' ),
    2828    );
    2929 
  • wp-factcheck/trunk/inc/enqueue.php

    r2360776 r2625328  
    55
    66    wp_register_style( 'wpfc-factcheck', $uri . 'assets/css/fact-check.css', [], $ver );
    7     wp_register_style( 'wpfc-font-inter', 'https://fonts.googleapis.com/css?family=Inter:400,500,600,700,800&display=swap' );
     7    wp_register_style( 'wpfc-admin', $uri . 'assets/css/admin-style.css', [], $ver );
    88   
    99    wp_enqueue_style( 'wp-color-picker' );
    1010    wp_enqueue_style( 'wpfc-font-inter' );
    1111    wp_enqueue_style( 'wpfc-factcheck' );
     12    wp_enqueue_style( 'wpfc-admin' );
    1213
    1314    wp_register_script( 'wpfc-color-picker', $uri . 'assets/js/color-picker.js', [ 'wp-color-picker' ], $ver, true );
     
    3233    wp_register_style( 'wpfc-font-icomoon', $uri . 'assets/font/icomoon/icomoon.css', [], $ver );
    3334    wp_register_style( 'wpfc-font-linearicons', $uri . 'assets/font/linearicons/linearicons.css', [], $ver );
    34     wp_register_style( 'wpfc-font-inter', 'https://fonts.googleapis.com/css?family=Inter:400,500,600,700,800&display=swap' );
    3535
    3636    // Inline Style
  • wp-factcheck/trunk/inc/filters.php

    r2360776 r2625328  
    22function wpfc_content_factcheck( $the_content ) {
    33    global $post;
     4    $wpfc_options   = get_option( 'wpfc-options' );
    45
    56    if( !is_singular( 'wpfc-fact-checking' ) ) {
     7        return $the_content;
     8    }
     9
     10    if( $wpfc_options['display'] == 'no' ) {
    611        return $the_content;
    712    }
  • wp-factcheck/trunk/inc/menu.php

    r2360776 r2625328  
    2020                        <div class="wpfc-option-row">
    2121                            <div>
     22                                Show Fact-check details
     23                                <div class="wpfc-option-details"><?php esc_html_e( 'Do you want to display the fact-check details above the post?', 'wpfc'); ?></div>
     24                            </div>
     25                            <div>
     26                                <label for="wpfc-show-details-yes"><?php esc_html_e( 'Yes', 'wpfc' ); ?></label> <input <?php checked( $wpfc_options['display'], 'yes', true ); ?> id="wpfc-show-details-yes" type="radio" class="wpfc-show-details" name="wpfc-show-details" value="yes"  />
     27
     28                                <label for="wpfc-show-details-no"><?php esc_html_e( 'No', 'wpfc' ); ?></label> <input <?php checked( $wpfc_options['display'], 'no', true ); ?> id="wpfc-show-details-no" type="radio" class="wpfc-show-details" name="wpfc-show-details" value="no"  />
     29                            </div>
     30                        </div>
     31
     32                        <div class="wpfc-option-row">
     33                            <div>
    2234                                Columns
    23                                 <div class="wpfc-option-details">How do you want to display the fact-checking details?</div>
     35                                <div class="wpfc-option-details"><?php esc_html_e( 'How do you want to display the fact-checking details?', 'wpfc' ); ?></div>
    2436                            </div>
    2537                            <div>
     
    3446                            <div>
    3547                                Icons
    36                                 <div class="wpfc-option-details">Do you want to display icons?</div>
     48                                <div class="wpfc-option-details"><?php esc_html_e( 'Do you want to display icons?', 'wpfc' ); ?></div>
    3749                            </div>
    3850                            <div>
     
    4759                            <div>
    4860                                Title Font
    49                                 <div class="wpfc-option-details">Choose the font you want to use on titles.</div>
     61                                <div class="wpfc-option-details"><?php esc_html_e( 'Choose the font you want to use on titles.', 'wpfc' ); ?></div>
    5062                            </div>
    5163                            <div>
     
    6173                            <div>
    6274                                Content Font
    63                                 <div class="wpfc-option-details">Choose the font you want to use on content.</div>
     75                                <div class="wpfc-option-details"><?php esc_html_e( 'Choose the font you want to use on content.', 'wpfc' ); ?></div>
    6476                            </div>
    6577                            <div>
     
    6981                                    <option <?php selected( $wpfc_options['fonts']['content'], 'Lora', true ); ?> value="Lora">Lora</option>
    7082                                </select>
    71                             </div>
    72                         </div>
    73 
    74                         <div class="wpfc-option-row">
    75                             <div>
    76                                 &nbsp;
    77                                 <div class="wpfc-option-details">&nbsp;</div>
    78                             </div>
    79                             <div>
    80                                 <input type="button" id="wpfc-submit" class="button button-primary" value="<?php esc_attr_e( 'Save Options', 'wpfc' ); ?>" />
    8183                            </div>
    8284                        </div>
     
    9597                            <div>
    9698                                Background Color
    97                                 <div class="wpfc-option-details">Choose a color for the background of the box.</div>
     99                                <div class="wpfc-option-details"><?php esc_html_e( 'Choose a color for the background of the box.', 'wpfc' ); ?></div>
    98100                            </div>
    99101                            <div>
     
    105107                            <div>
    106108                                Border Color
    107                                 <div class="wpfc-option-details">Choose a color for the border of the box.</div>
     109                                <div class="wpfc-option-details"><?php esc_html_e( 'Choose a color for the border of the box.', 'wpfc' ); ?></div>
    108110                            </div>
    109111                            <div>
     
    115117                            <div>
    116118                                Title Color
    117                                 <div class="wpfc-option-details">Choose a color for the titles.</div>
     119                                <div class="wpfc-option-details"><?php esc_html_e( 'Choose a color for the titles.', 'wpfc' ); ?></div>
    118120                            </div>
    119121                            <div>
     
    125127                            <div>
    126128                                Content Color
    127                                 <div class="wpfc-option-details">Choose a color for the content.</div>
     129                                <div class="wpfc-option-details"><?php esc_html_e( 'Choose a color for the content.', 'wpfc' ); ?></div>
    128130                            </div>
    129131                            <div>
     
    135137                            <div>
    136138                                Icons Color
    137                                 <div class="wpfc-option-details">Choose a color for the icons.</div>
     139                                <div class="wpfc-option-details"><?php esc_html_e( 'Choose a color for the icons.', 'wpfc' ); ?></div>
    138140                            </div>
    139141                            <div>
     
    145147                </div>
    146148            </div>
     149        </div>
     150    </div>
    147151
    148         </div>
     152    <div>
     153        <input type="button" id="wpfc-submit" class="button button-primary" value="<?php esc_attr_e( 'Save Options', 'wpfc' ); ?>" />
    149154    </div>
    150155    <?php
  • wp-factcheck/trunk/inc/meta-boxes.php

    r2360776 r2625328  
    44    add_meta_box(
    55          'wpfc_factcheck_claim',
    6           __( 'Claim' ),
     6          __( 'Claim', 'wpfc' ),
    77          'wpfc_display_metabox_claim',
    88          'wpfc-fact-checking',
    9           'side'
     9          'advanced'
    1010    );
    1111   
    1212    add_meta_box(
    1313        'wpfc_factcheck_verdict',
    14         __( 'Verdict' ),
     14        __( 'Verdict', 'wpfc' ),
    1515        'wpfc_display_metabox_verdict',
    1616        'wpfc-fact-checking',
    17         'side'
     17        'advanced'
    1818    );
    1919}
     
    2929    ?>
    3030 
    31     <div class="metabox-row">
    32         <label for="wpfc-claim"><?php esc_html_e( 'Claim', 'wpfc' ); ?></label>
    33         <textarea name="wpfc-claim" id="wpfc-claim" rows="4"><?php echo esc_textarea( $wpfc_claim ); ?></textarea>
    34     </div>
     31  <div class="wpfc-box">
     32        <div class="wpfc-row">
     33            <div class="wpfc-inner-row">
     34                <div class="wpfc-col left-col">
     35                    <div class="wpfc-title"><?php esc_html_e( 'Claim', 'wpfc' ); ?>
     36                    </div>
     37                </div>
     38                <div class="wpfc-col right-col"><textarea name="wpfc-claim" id="wpfc-claim" rows="4"><?php echo esc_textarea( $wpfc_claim ); ?></textarea>
     39                </div>
     40            </div>
     41        </div>
     42   
     43        <div class="wpfc-row">
     44            <div class="wpfc-inner-row">
     45                <div class="wpfc-col left-col">
     46                    <div class="wpfc-title"><?php esc_html_e( 'Author', 'wpfc' ); ?>
     47                    </div>
     48                </div>
     49                <div class="wpfc-col right-col"><input type="text" name="wpfc-author" id="wpfc-author" value="<?php echo esc_attr( $wpfc_author ); ?>" />
     50                </div>
     51            </div>
     52        </div>
    3553
    36     <div class="metabox-row">
    37         <label for="wpfc-author"><?php esc_html_e( 'Author', 'wpfc' ); ?></label>
    38         <input type="text" name="wpfc-author" id="wpfc-author" value="<?php echo esc_attr( $wpfc_author ); ?>" />
    39     </div>
     54        <div class="wpfc-row">
     55            <div class="wpfc-inner-row">
     56                <div class="wpfc-col left-col">
     57                    <div class="wpfc-title"><?php esc_html_e( 'Author Type', 'wpfc' ); ?></div>
     58                </div>
     59                <div class="wpfc-col right-col">
     60                  <select name="wpfc-author-type" id="wpfc-author-type">
     61                    <option value="Person" <?php selected( $wpfc_author_type, 'Person', true ); ?>> <?php esc_html_e( 'Person', 'wpfc' ); ?></option>
     62                    <option value="Organization" <?php selected( $wpfc_author_type, 'Organization', true ); ?>> <?php esc_html_e( 'Organisation', 'wpfc' ); ?></option>
     63                  </select>
     64                  </div>
     65            </div>
     66        </div>
    4067
    41     <div class="metabox-row">
    42         <label for="wpfc-author-type"><?php esc_html_e( 'Author Type', 'wpfc' ); ?></label>
    43         <select name="wpfc-author-type" id="wpfc-author-type">
    44           <option value="Person" <?php selected( $wpfc_author_type, 'Person', true ); ?>> <?php esc_html_e( 'Person', 'wpfc' ); ?></option>
    45           <option value="Organization" <?php selected( $wpfc_author_type, 'Organization', true ); ?>> <?php esc_html_e( 'Organisation', 'wpfc' ); ?></option>
    46         </select>
    47     </div>
    48 
    49     <div class="metabox-row">
    50         <label for="wpfc-source"><?php esc_html_e( 'Source/URL', 'wpfc' ); ?></label>
    51         <input type="text" name="wpfc-source" id="wpfc-source" value="<?php echo esc_attr( $wpfc_source ); ?>" />
     68        <div class="wpfc-row">
     69            <div class="wpfc-inner-row">
     70                <div class="wpfc-col left-col">
     71                    <div class="wpfc-title"><?php esc_html_e( 'Source/URL', 'wpfc' ); ?></div>
     72                </div>
     73                <div class="wpfc-col right-col">
     74                  <input type="text" name="wpfc-source" id="wpfc-source" value="<?php echo esc_attr( $wpfc_source ); ?>" />
     75                  </div>
     76            </div>
     77        </div>
    5278    </div>
    5379    <?php
     
    6793    ];
    6894      ?>
    69     <div class="metabox-row">
    70         <label for="wpfc-verdict"><?php esc_html_e( 'Verdict', 'wpfc' ); ?></label>
    71         <select name="wpfc-verdict" id="wpfc-verdict">
    72           <option value=""><?php esc_html_e( 'Choose a verdict', 'wpfc' ) ?></option>
    73           <?php
    74           for( $i=1; $i < sizeof($verdicts); $i++ ) {
    75             ?>
    76             <option value="<?php echo $i ?>" <?php selected( $wpfc_verdict, $i, true ); ?>><?php esc_html_e( $verdicts[$i] ); ?></option>
    77             <?php
    78           }
    79           ?>
    80         </select>
    81     </div>
    82    
    83     <div class="metabox-row">
    84         <label for="wpfc-explainer"><?php esc_html_e( 'Explainer', 'wpfc' ); ?></label>
    85         <textarea name="wpfc-explainer" id="wpfc-explainer" rows="4"><?php echo $wpfc_explainer; ?></textarea>
     95    <div class="wpfc-box">
     96        <div class="wpfc-row">
     97            <div class="wpfc-inner-row">
     98                <div class="wpfc-col left-col">
     99                    <div class="wpfc-title"><?php esc_html_e( 'Verdict', 'wpfc' ); ?></div>
     100                </div>
     101               
     102                <div class="wpfc-col right-col">
     103                  <select name="wpfc-verdict" id="wpfc-verdict">
     104                    <option value=""><?php esc_html_e( 'Choose a verdict', 'wpfc' ) ?></option>
     105                    <?php
     106                    for( $i=1; $i < sizeof($verdicts); $i++ ) {
     107                      ?>
     108                      <option value="<?php echo $i ?>" <?php selected( $wpfc_verdict, $i, true ); ?>><?php esc_html_e( $verdicts[$i] ); ?></option>
     109                      <?php
     110                    }
     111                    ?>
     112                  </select>
     113                </div>
     114          </div>
     115        </div>
     116
     117        <div class="wpfc-row">
     118            <div class="wpfc-inner-row">
     119                <div class="wpfc-col left-col">
     120                    <div class="wpfc-title"><?php esc_html_e( 'Explainer', 'wpfc' ); ?></div>
     121                </div>
     122               
     123                <div class="wpfc-col right-col">
     124                  <textarea name="wpfc-explainer" id="wpfc-explainer" rows="4"><?php echo $wpfc_explainer; ?></textarea>
     125                  </div>
     126            </div>
     127        </div>
    86128    </div>
    87129    <?php
  • wp-factcheck/trunk/inc/save-settings.php

    r2360776 r2625328  
    88    $wpfc_options                   = get_option( 'wpfc-options' );
    99    $opts                           = [
     10        'display'                   => sanitize_text_field( $_POST['wpfc_show_details'] ),
    1011        'columns'                   => sanitize_text_field( $_POST['wpfc_columns'] ),
    1112        'icons'                     => sanitize_text_field( $_POST['wpfc_icons'] ),
     
    1516            'content'               => sanitize_hex_color( $_POST['wpfc_content_color'] ),
    1617            'icons'                 => sanitize_hex_color( $_POST['wpfc_icon_color'] ),
    17             'title'                 => sanitize_hex_color( $_POST['wpfc_title_color'] )
     18            'title'                 => sanitize_hex_color( $_POST['wpfc_title_color'] ),
    1819        ],
    1920        'fonts'                     => [
    2021            'title'                 => sanitize_text_field( $_POST['wpfc_title_font'] ),
    21             'content'               => sanitize_text_field( $_POST['wpfc_content_font'] )
     22            'content'               => sanitize_text_field( $_POST['wpfc_content_font'] ),
    2223        ]
    2324    ];
  • wp-factcheck/trunk/lang/wpfc-fr_FR.po

    r2360776 r2625328  
    44"Report-Msgid-Bugs-To: \n"
    55"POT-Creation-Date: 2020-08-12 08:19+0000\n"
    6 "PO-Revision-Date: 2020-08-12 08:21+0000\n"
     6"PO-Revision-Date: 2021-11-05 12:41+0000\n"
    77"Last-Translator: \n"
    8 "Language-Team: French (France)\n"
     8"Language-Team: Français\n"
    99"Language: fr_FR\n"
    1010"Plural-Forms: nplurals=2; plural=n > 1;\n"
     
    1515"X-Loco-Version: 2.4.2; wp-5.5"
    1616
    17 #: inc/activate.php:6
    18 msgid ""
    19 "You have to upgrade your WordPress version before you can use this plugin"
    20 msgstr ""
    21 "Vous devez mettre votre version de WordPress à jour avant d'utiliser ce "
    22 "plugin"
    23 
    24 #: inc/custom-post-type.php:4
    25 msgctxt "Post type general name"
    26 msgid "Fact-checkings"
    27 msgstr "Fact-checkings"
    28 
    29 #: inc/custom-post-type.php:5
    30 msgctxt "Post type singular name"
    31 msgid "Fact-checking"
    32 msgstr "Fact-checking"
    33 
    34 #: inc/custom-post-type.php:6
    35 msgctxt "Admin Menu text"
    36 msgid "Fact-checkings"
    37 msgstr "Fact-checkings"
    38 
    39 #: inc/custom-post-type.php:7
    40 msgctxt "Add New on Toolbar"
    41 msgid "Fact-checking"
    42 msgstr "Fact-checking"
    43 
    44 #: inc/custom-post-type.php:8
    45 msgid "Add New Fact-checking"
    46 msgstr "Ajouter un fact-checking"
    47 
    48 #: inc/custom-post-type.php:9
    49 msgid "New Fact-checking"
    50 msgstr "Nouveau fact-checking"
    51 
    52 #: inc/custom-post-type.php:10
    53 msgid "Edit Fact-checking"
    54 msgstr "Modifier le fact-checking"
    55 
    56 #: inc/custom-post-type.php:11
    57 msgid "View Fact-checking"
    58 msgstr "Voir le fact-checking"
    59 
    60 #: inc/custom-post-type.php:12
    61 msgid "All Fact-checkings"
    62 msgstr "Tous les fact-checkings"
    63 
    64 #: inc/custom-post-type.php:13
    65 msgid "Search Fact-checkings"
    66 msgstr "Rechercher des fact-checkings"
    67 
    68 #: inc/custom-post-type.php:14
    69 msgid "Parent Fact-checkings:"
    70 msgstr "Fact-checking parent"
    71 
    72 #: inc/custom-post-type.php:15
    73 msgid "No fact-checkings found."
    74 msgstr "Aucun fact-checking trouvé"
    75 
    7617#: inc/custom-post-type.php:16
    7718msgid "Add New"
    7819msgstr "Ajouter"
    7920
    80 #: inc/custom-post-type.php:17
    81 msgid "No fact-checkings found in Trash."
    82 msgstr "Aucun fact-checking dans la corbeille"
    83 
    84 #: inc/custom-post-type.php:18
    85 msgctxt ""
    86 "Overrides the “Featured Image” phrase for this post type. Added in 4.3"
    87 msgid "Fact-checking Cover Image"
    88 msgstr "Image mise en avant"
    89 
    90 #: inc/custom-post-type.php:19
    91 msgctxt ""
    92 "Overrides the “Set featured image” phrase for this post type. Added in 4.3"
    93 msgid "Set cover image"
    94 msgstr "Définir l'image mise en avant"
    95 
    96 #: inc/custom-post-type.php:20
    97 msgctxt ""
    98 "Overrides the “Remove featured image” phrase for this post type. Added in 4.3"
    99 msgid "Remove cover image"
    100 msgstr "Supprimer l'image mise en avant"
    101 
    102 #: inc/custom-post-type.php:21
    103 msgctxt ""
    104 "Overrides the “Use as featured image” phrase for this post type. Added in 4.3"
    105 msgid "Use as cover image"
    106 msgstr "Utiliser comme image mise en avant"
    107 
    108 #: inc/custom-post-type.php:22
    109 msgctxt ""
    110 "The post type archive label used in nav menus. Default “Post Archives”. "
    111 "Added in 4.4"
    112 msgid "Fact-checking archives"
    113 msgstr "Archives de Fact-checking"
    114 
    115 #: inc/custom-post-type.php:23
    116 msgctxt ""
    117 "Overrides the “Insert into post”/”Insert into page” phrase (used when "
    118 "inserting media into a post). Added in 4.4"
    119 msgid "Insert into fact-checking"
    120 msgstr "Insérez dans l'article de fact-checking"
    121 
    122 #: inc/custom-post-type.php:24
    123 msgctxt ""
    124 "Overrides the “Uploaded to this post”/”Uploaded to this page” phrase (used "
    125 "when viewing media attached to a post). Added in 4.4"
    126 msgid "Uploaded to this fact-checking"
    127 msgstr "Téléversez dans cet article de fact-checking"
    128 
    129 #: inc/custom-post-type.php:25
    130 msgctxt ""
    131 "Screen reader text for the filter links heading on the post type listing "
    132 "screen. Default “Filter posts list”/”Filter pages list”. Added in 4.4"
    133 msgid "Filter fact-checkings list"
    134 msgstr "Trier la liste d'articles de fact-checking"
    135 
    136 #: inc/custom-post-type.php:26
    137 msgctxt ""
    138 "Screen reader text for the pagination heading on the post type listing "
    139 "screen. Default “Posts list navigation”/”Pages list navigation”. Added in 4.4"
    140 msgid "Fact-checkings list navigation"
    141 msgstr "Liste d'articles de fact-checking"
    142 
    143 #: inc/custom-post-type.php:27
    144 msgctxt ""
    145 "Screen reader text for the items list heading on the post type listing "
    146 "screen. Default “Posts list”/”Pages list”. Added in 4.4"
    147 msgid "Fact-checkings list"
    148 msgstr "Liste d'articles de fact-checking"
    149 
    150 #: inc/filters.php:18 inc/meta-boxes.php:62 inc/structured-data.php:18
    151 msgid "Incorrect"
    152 msgstr "Incorrect"
    153 
    154 #: inc/filters.php:23 inc/meta-boxes.php:63 inc/structured-data.php:22
    155 msgid "Mostly Incorrect"
    156 msgstr "Globalement incorrect"
    157 
    158 #: inc/filters.php:28 inc/meta-boxes.php:64 inc/structured-data.php:26
    159 msgid "Partially Correct"
    160 msgstr "A moitié correct"
    161 
    162 #: inc/filters.php:33 inc/meta-boxes.php:65 inc/structured-data.php:30
    163 msgid "Mostly Correct"
    164 msgstr "Globalement correct"
    165 
    166 #: inc/filters.php:38 inc/meta-boxes.php:66 inc/structured-data.php:34
    167 msgid "Correct"
    168 msgstr "Correct"
    169 
    170 #: inc/filters.php:53 inc/meta-boxes.php:32
    171 msgid "Claim"
    172 msgstr "Affirmation"
    173 
    174 #: inc/filters.php:55 inc/meta-boxes.php:37
    175 msgid "Author"
    176 msgstr "Auteur"
    177 
    178 #: inc/filters.php:64 inc/meta-boxes.php:70
    179 msgid "Verdict"
    180 msgstr "Verdict"
    181 
    182 #: inc/menu.php:3 inc/menu.php:11
    183 msgid "Settings"
    184 msgstr "Réglages"
    185 
    186 #: inc/menu.php:17
    187 msgid "Display Options"
    188 msgstr "Options d'affichage"
    189 
    190 #: inc/menu.php:80
    191 msgid "Save Options"
    192 msgstr "Enregistrer les réglages"
    193 
    194 #: inc/menu.php:91
    195 msgid "Color Options"
    196 msgstr "Options de couleur"
    197 
    198 #: inc/meta-boxes.php:42
    199 msgid "Author Type"
    200 msgstr "Type"
    201 
    202 #: inc/meta-boxes.php:44
    203 msgid "Person"
    204 msgstr "Personne"
    205 
    206 #: inc/meta-boxes.php:45
    207 msgid "Organisation"
    208 msgstr "Organisation"
    209 
    210 #: inc/meta-boxes.php:50
    211 msgid "Source/URL"
    212 msgstr "Source/URL"
    213 
    214 #: inc/meta-boxes.php:72
    215 msgid "Choose a verdict"
    216 msgstr "Sélectionnez un verdict"
    217 
    218 #: inc/meta-boxes.php:84
    219 msgid "Explainer"
    220 msgstr "Explication"
     21#: inc/custom-post-type.php:8
     22#| msgid "Add New Fact-checking"
     23msgid "Add New Fact-check"
     24msgstr "Ajouter un fact-check"
     25
     26#: inc/custom-post-type.php:7
     27#| msgid "Fact-checking"
     28msgctxt "Add New on Toolbar"
     29msgid "Fact-check"
     30msgstr "Fact-check"
     31
     32#: inc/custom-post-type.php:6
     33#| msgid "Fact-checkings"
     34msgctxt "Admin Menu text"
     35msgid "Fact-checks"
     36msgstr "Fact-checks"
     37
     38#: inc/custom-post-type.php:12
     39#| msgid "All Fact-checkings"
     40msgid "All Fact-checks"
     41msgstr "Tous les fact-checks"
    22142
    22243#: inc/save-settings.php:5
     
    22445msgstr "Une erreur est survenue pendant la sauvegarde des préférences"
    22546
    226 #: inc/save-settings.php:28
    227 msgid "Settings were successfully saved"
    228 msgstr "Vos réglages ont été enregistrés"
    229 
    230 #. Name of the plugin
    231 msgid "WP Factcheck"
    232 msgstr "WP Factcheck"
     47#: inc/filters.php:60 inc/meta-boxes.php:46
     48msgid "Author"
     49msgstr "Auteur"
     50
     51#: inc/meta-boxes.php:57
     52msgid "Author Type"
     53msgstr "Type"
     54
     55#: inc/menu.php:99
     56msgid "Choose a color for the background of the box."
     57msgstr "Choisissez une couleur d'arrière-plan"
     58
     59#: inc/menu.php:109
     60msgid "Choose a color for the border of the box."
     61msgstr "Choisissez une couleur de bordure"
     62
     63#: inc/menu.php:129
     64msgid "Choose a color for the content."
     65msgstr "Choisissez une couleur de texte pour le contenu"
     66
     67#: inc/menu.php:139
     68msgid "Choose a color for the icons."
     69msgstr "Choisissez une couleur pour les icônes"
     70
     71#: inc/menu.php:119
     72msgid "Choose a color for the titles."
     73msgstr "Choisissez une couleur de texte pour les titres"
     74
     75#: inc/meta-boxes.php:104
     76msgid "Choose a verdict"
     77msgstr "Sélectionnez un verdict"
     78
     79#: inc/menu.php:75
     80msgid "Choose the font you want to use on content."
     81msgstr "Choisissez la police à utiliser pour le contenu"
     82
     83#: inc/menu.php:61
     84msgid "Choose the font you want to use on titles."
     85msgstr "Choisissez la couleur de texte pour les titres"
     86
     87#: inc/filters.php:58 inc/meta-boxes.php:6 inc/meta-boxes.php:35
     88msgid "Claim"
     89msgstr "Affirmation"
     90
     91#: inc/menu.php:93
     92msgid "Color Options"
     93msgstr "Options de couleur"
     94
     95#: inc/filters.php:43 inc/meta-boxes.php:92 inc/structured-data.php:34
     96msgid "Correct"
     97msgstr "Correct"
    23398
    23499#. Description of the plugin
    235 #| "Create fact-checking articles with the possibility to add other useful "
    236 #| "information, like the claim, its source, the verdict and the explainer"
    237100msgid ""
    238101"Create fact-checking articles with the possibility to add other useful "
     
    243106"et des explications supplémentaires"
    244107
     108#: inc/menu.php:17
     109msgid "Display Options"
     110msgstr "Options d'affichage"
     111
     112#: inc/menu.php:48
     113msgid "Do you want to display icons?"
     114msgstr "Voulez-vous afficher les icônes ?"
     115
     116#: inc/menu.php:23
     117msgid "Do you want to display the fact-check details above the post?"
     118msgstr ""
     119"Voulez-vous afficher les détails du fact-check au dessus de l'articles ?"
     120
     121#: inc/custom-post-type.php:10
     122#| msgid "Edit Fact-checking"
     123msgid "Edit Fact-check"
     124msgstr "Modifier le fact-check"
     125
     126#: inc/meta-boxes.php:120
     127msgid "Explainer"
     128msgstr "Explication"
     129
     130#. Author of the plugin
     131msgid "Fotso Fonkam"
     132msgstr "Fotso Fonkam"
     133
     134#: inc/menu.php:35
     135msgid "How do you want to display the fact-checking details?"
     136msgstr "Comment voulez-vous afficher les détails du fact-check ?"
     137
     138#. Author URI of the plugin
     139msgid "http://www.iamfotso.cm/a-propos/"
     140msgstr "http://www.iamfotso.cm/a-propos/"
     141
    245142#. URI of the plugin
    246143msgid "http://www.iamfotso.cm/projects/wp-factcheck/"
    247144msgstr "http://www.iamfotso.cm/projects/wp-factcheck/"
    248145
    249 #. Author of the plugin
    250 msgid "Fotso Fonkam"
    251 msgstr "Fotso Fonkam"
    252 
    253 #. Author URI of the plugin
    254 msgid "http://www.iamfotso.cm/a-propos/"
    255 msgstr "http://www.iamfotso.cm/a-propos/"
     146#: inc/filters.php:23 inc/meta-boxes.php:88 inc/structured-data.php:18
     147msgid "Incorrect"
     148msgstr "Incorrect"
     149
     150#: inc/filters.php:38 inc/meta-boxes.php:91 inc/structured-data.php:30
     151msgid "Mostly Correct"
     152msgstr "Globalement correct"
     153
     154#: inc/filters.php:28 inc/meta-boxes.php:89 inc/structured-data.php:22
     155msgid "Mostly Incorrect"
     156msgstr "Globalement incorrect"
     157
     158#: inc/custom-post-type.php:9
     159#| msgid "New Fact-checking"
     160msgid "New Fact-check"
     161msgstr "Nouveau fact-check"
     162
     163#: inc/menu.php:28
     164msgid "No"
     165msgstr "Non"
     166
     167#: inc/custom-post-type.php:17
     168#| msgid "No fact-checkings found in Trash."
     169msgid "No fact-checks found in Trash."
     170msgstr "Aucun fact-check dans la corbeille"
     171
     172#: inc/custom-post-type.php:15
     173#| msgid "No fact-checkings found."
     174msgid "No fact-checks found."
     175msgstr "Aucun fact-check trouvé."
     176
     177#: inc/meta-boxes.php:62
     178msgid "Organisation"
     179msgstr "Organisation"
     180
     181#: inc/custom-post-type.php:18
     182#| msgid "Fact-checking Cover Image"
     183msgctxt ""
     184"Overrides the “Featured Image” phrase for this post type. Added in 4.3"
     185msgid "Fact-check Cover Image"
     186msgstr "Image mise en avant"
     187
     188#: inc/custom-post-type.php:23
     189#| msgid "Insert into fact-checking"
     190msgctxt ""
     191"Overrides the “Insert into post”/”Insert into page” phrase (used when "
     192"inserting media into a post). Added in 4.4"
     193msgid "Insert into fact-check"
     194msgstr "Insérez dans l'article de fact-check"
     195
     196#: inc/custom-post-type.php:20
     197msgctxt ""
     198"Overrides the “Remove featured image” phrase for this post type. Added in 4.3"
     199msgid "Remove cover image"
     200msgstr "Supprimer l'image mise en avant"
     201
     202#: inc/custom-post-type.php:19
     203msgctxt ""
     204"Overrides the “Set featured image” phrase for this post type. Added in 4.3"
     205msgid "Set cover image"
     206msgstr "Définir l'image mise en avant"
     207
     208#: inc/custom-post-type.php:24
     209#| msgid "Uploaded to this fact-checking"
     210msgctxt ""
     211"Overrides the “Uploaded to this post”/”Uploaded to this page” phrase (used "
     212"when viewing media attached to a post). Added in 4.4"
     213msgid "Uploaded to this fact-check"
     214msgstr "Téléversez dans cet article de fact-check"
     215
     216#: inc/custom-post-type.php:21
     217msgctxt ""
     218"Overrides the “Use as featured image” phrase for this post type. Added in 4.3"
     219msgid "Use as cover image"
     220msgstr "Utiliser comme image mise en avant"
     221
     222#: inc/custom-post-type.php:14
     223#| msgid "Parent Fact-checkings:"
     224msgid "Parent Fact-checks:"
     225msgstr "Fact-check parent"
     226
     227#: inc/filters.php:33 inc/meta-boxes.php:90 inc/structured-data.php:26
     228msgid "Partially Correct"
     229msgstr "A moitié correct"
     230
     231#: inc/meta-boxes.php:61
     232msgid "Person"
     233msgstr "Personne"
     234
     235#: inc/custom-post-type.php:4
     236#| msgid "Fact-checkings"
     237msgctxt "Post type general name"
     238msgid "Fact-checks"
     239msgstr "Fact-checks"
     240
     241#: inc/custom-post-type.php:5
     242#| msgid "Fact-checking"
     243msgctxt "Post type singular name"
     244msgid "Fact-check"
     245msgstr "Fact-check"
     246
     247#: inc/menu.php:153
     248msgid "Save Options"
     249msgstr "Enregistrer les réglages"
     250
     251#: inc/custom-post-type.php:25
     252#| msgid "Filter fact-checkings list"
     253msgctxt ""
     254"Screen reader text for the filter links heading on the post type listing "
     255"screen. Default “Filter posts list”/”Filter pages list”. Added in 4.4"
     256msgid "Filter fact-checks list"
     257msgstr "Trier la liste de fact-checks"
     258
     259#: inc/custom-post-type.php:27
     260#| msgid "Fact-checkings list"
     261msgctxt ""
     262"Screen reader text for the items list heading on the post type listing "
     263"screen. Default “Posts list”/”Pages list”. Added in 4.4"
     264msgid "Fact-checks list"
     265msgstr "Liste de fact-checking"
     266
     267#: inc/custom-post-type.php:26
     268#| msgid "Fact-checkings list navigation"
     269msgctxt ""
     270"Screen reader text for the pagination heading on the post type listing "
     271"screen. Default “Posts list navigation”/”Pages list navigation”. Added in 4.4"
     272msgid "Fact-checks list navigation"
     273msgstr "Liste de fact-checks"
     274
     275#: inc/custom-post-type.php:13
     276#| msgid "Search Fact-checkings"
     277msgid "Search Fact-checks"
     278msgstr "Rechercher des fact-checks"
     279
     280#: inc/menu.php:3 inc/menu.php:11
     281msgid "Settings"
     282msgstr "Réglages"
     283
     284#: inc/save-settings.php:29
     285msgid "Settings were successfully saved"
     286msgstr "Vos réglages ont été enregistrés"
     287
     288#: inc/meta-boxes.php:71
     289msgid "Source/URL"
     290msgstr "Source/URL"
     291
     292#: inc/custom-post-type.php:22
     293#| msgid "Fact-checking archives"
     294msgctxt ""
     295"The post type archive label used in nav menus. Default “Post Archives”. "
     296"Added in 4.4"
     297msgid "Fact-check archives"
     298msgstr "Archives de Fact-checks"
     299
     300#: inc/filters.php:69 inc/meta-boxes.php:14 inc/meta-boxes.php:99
     301msgid "Verdict"
     302msgstr "Verdict"
     303
     304#: inc/custom-post-type.php:11
     305#| msgid "View Fact-checking"
     306msgid "View Fact-check"
     307msgstr "Voir le fact-check"
     308
     309#. Name of the plugin
     310msgid "WP Factcheck"
     311msgstr "WP Factcheck"
     312
     313#: inc/menu.php:26
     314msgid "Yes"
     315msgstr "Oui"
     316
     317#: inc/activate.php:6
     318msgid ""
     319"You have to upgrade your WordPress version before you can use this plugin"
     320msgstr ""
     321"Vous devez mettre votre version de WordPress à jour avant d'utiliser ce "
     322"plugin"
  • wp-factcheck/trunk/lang/wpfc.pot

    r2360776 r2625328  
    44"Project-Id-Version: WP Factcheck\n"
    55"Report-Msgid-Bugs-To: \n"
    6 "POT-Creation-Date: 2020-08-12 08:19+0000\n"
     6"POT-Creation-Date: 2021-11-05 12:36+0000\n"
    77"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    88"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1616"X-Loco-Version: 2.4.0; wp-5.4.2"
    1717
    18 #: inc/activate.php:6
    19 msgid ""
    20 "You have to upgrade your WordPress version before you can use this plugin"
    21 msgstr ""
    22 
    23 #: inc/custom-post-type.php:4
    24 msgctxt "Post type general name"
    25 msgid "Fact-checkings"
    26 msgstr ""
    27 
    28 #: inc/custom-post-type.php:5
    29 msgctxt "Post type singular name"
    30 msgid "Fact-checking"
     18#: inc/custom-post-type.php:16
     19msgid "Add New"
     20msgstr ""
     21
     22#: inc/custom-post-type.php:8
     23msgid "Add New Fact-check"
     24msgstr ""
     25
     26#: inc/custom-post-type.php:7
     27msgctxt "Add New on Toolbar"
     28msgid "Fact-check"
    3129msgstr ""
    3230
    3331#: inc/custom-post-type.php:6
    3432msgctxt "Admin Menu text"
    35 msgid "Fact-checkings"
    36 msgstr ""
    37 
    38 #: inc/custom-post-type.php:7
    39 msgctxt "Add New on Toolbar"
    40 msgid "Fact-checking"
    41 msgstr ""
    42 
    43 #: inc/custom-post-type.php:8
    44 msgid "Add New Fact-checking"
    45 msgstr ""
    46 
    47 #: inc/custom-post-type.php:9
    48 msgid "New Fact-checking"
    49 msgstr ""
    50 
    51 #: inc/custom-post-type.php:10
    52 msgid "Edit Fact-checking"
    53 msgstr ""
    54 
    55 #: inc/custom-post-type.php:11
    56 msgid "View Fact-checking"
     33msgid "Fact-checks"
    5734msgstr ""
    5835
    5936#: inc/custom-post-type.php:12
    60 msgid "All Fact-checkings"
    61 msgstr ""
    62 
    63 #: inc/custom-post-type.php:13
    64 msgid "Search Fact-checkings"
    65 msgstr ""
    66 
    67 #: inc/custom-post-type.php:14
    68 msgid "Parent Fact-checkings:"
    69 msgstr ""
    70 
    71 #: inc/custom-post-type.php:15
    72 msgid "No fact-checkings found."
    73 msgstr ""
    74 
    75 #: inc/custom-post-type.php:16
    76 msgid "Add New"
    77 msgstr ""
    78 
    79 #: inc/custom-post-type.php:17
    80 msgid "No fact-checkings found in Trash."
    81 msgstr ""
    82 
    83 #: inc/custom-post-type.php:18
    84 msgctxt ""
    85 "Overrides the “Featured Image” phrase for this post type. Added in 4.3"
    86 msgid "Fact-checking Cover Image"
    87 msgstr ""
    88 
    89 #: inc/custom-post-type.php:19
    90 msgctxt ""
    91 "Overrides the “Set featured image” phrase for this post type. Added in 4.3"
    92 msgid "Set cover image"
    93 msgstr ""
    94 
    95 #: inc/custom-post-type.php:20
    96 msgctxt ""
    97 "Overrides the “Remove featured image” phrase for this post type. Added in 4.3"
    98 msgid "Remove cover image"
    99 msgstr ""
    100 
    101 #: inc/custom-post-type.php:21
    102 msgctxt ""
    103 "Overrides the “Use as featured image” phrase for this post type. Added in 4.3"
    104 msgid "Use as cover image"
    105 msgstr ""
    106 
    107 #: inc/custom-post-type.php:22
    108 msgctxt ""
    109 "The post type archive label used in nav menus. Default “Post Archives”. "
    110 "Added in 4.4"
    111 msgid "Fact-checking archives"
    112 msgstr ""
    113 
    114 #: inc/custom-post-type.php:23
    115 msgctxt ""
    116 "Overrides the “Insert into post”/”Insert into page” phrase (used when "
    117 "inserting media into a post). Added in 4.4"
    118 msgid "Insert into fact-checking"
    119 msgstr ""
    120 
    121 #: inc/custom-post-type.php:24
    122 msgctxt ""
    123 "Overrides the “Uploaded to this post”/”Uploaded to this page” phrase (used "
    124 "when viewing media attached to a post). Added in 4.4"
    125 msgid "Uploaded to this fact-checking"
    126 msgstr ""
    127 
    128 #: inc/custom-post-type.php:25
    129 msgctxt ""
    130 "Screen reader text for the filter links heading on the post type listing "
    131 "screen. Default “Filter posts list”/”Filter pages list”. Added in 4.4"
    132 msgid "Filter fact-checkings list"
    133 msgstr ""
    134 
    135 #: inc/custom-post-type.php:26
    136 msgctxt ""
    137 "Screen reader text for the pagination heading on the post type listing "
    138 "screen. Default “Posts list navigation”/”Pages list navigation”. Added in 4.4"
    139 msgid "Fact-checkings list navigation"
    140 msgstr ""
    141 
    142 #: inc/custom-post-type.php:27
    143 msgctxt ""
    144 "Screen reader text for the items list heading on the post type listing "
    145 "screen. Default “Posts list”/”Pages list”. Added in 4.4"
    146 msgid "Fact-checkings list"
    147 msgstr ""
    148 
    149 #: inc/filters.php:18 inc/meta-boxes.php:62 inc/structured-data.php:18
    150 msgid "Incorrect"
    151 msgstr ""
    152 
    153 #: inc/filters.php:23 inc/meta-boxes.php:63 inc/structured-data.php:22
    154 msgid "Mostly Incorrect"
    155 msgstr ""
    156 
    157 #: inc/filters.php:28 inc/meta-boxes.php:64 inc/structured-data.php:26
    158 msgid "Partially Correct"
    159 msgstr ""
    160 
    161 #: inc/filters.php:33 inc/meta-boxes.php:65 inc/structured-data.php:30
    162 msgid "Mostly Correct"
    163 msgstr ""
    164 
    165 #: inc/filters.php:38 inc/meta-boxes.php:66 inc/structured-data.php:34
    166 msgid "Correct"
    167 msgstr ""
    168 
    169 #: inc/filters.php:53 inc/meta-boxes.php:32
    170 msgid "Claim"
    171 msgstr ""
    172 
    173 #: inc/filters.php:55 inc/meta-boxes.php:37
    174 msgid "Author"
    175 msgstr ""
    176 
    177 #: inc/filters.php:64 inc/meta-boxes.php:70
    178 msgid "Verdict"
    179 msgstr ""
    180 
    181 #: inc/menu.php:3 inc/menu.php:11
    182 msgid "Settings"
    183 msgstr ""
    184 
    185 #: inc/menu.php:17
    186 msgid "Display Options"
    187 msgstr ""
    188 
    189 #: inc/menu.php:80
    190 msgid "Save Options"
    191 msgstr ""
    192 
    193 #: inc/menu.php:91
    194 msgid "Color Options"
    195 msgstr ""
    196 
    197 #: inc/meta-boxes.php:42
    198 msgid "Author Type"
    199 msgstr ""
    200 
    201 #: inc/meta-boxes.php:44
    202 msgid "Person"
    203 msgstr ""
    204 
    205 #: inc/meta-boxes.php:45
    206 msgid "Organisation"
    207 msgstr ""
    208 
    209 #: inc/meta-boxes.php:50
    210 msgid "Source/URL"
    211 msgstr ""
    212 
    213 #: inc/meta-boxes.php:72
    214 msgid "Choose a verdict"
    215 msgstr ""
    216 
    217 #: inc/meta-boxes.php:84
    218 msgid "Explainer"
     37msgid "All Fact-checks"
    21938msgstr ""
    22039
     
    22342msgstr ""
    22443
    225 #: inc/save-settings.php:28
    226 msgid "Settings were successfully saved"
    227 msgstr ""
    228 
    229 #. Name of the plugin
    230 msgid "WP Factcheck"
     44#: inc/filters.php:60 inc/meta-boxes.php:46
     45msgid "Author"
     46msgstr ""
     47
     48#: inc/meta-boxes.php:57
     49msgid "Author Type"
     50msgstr ""
     51
     52#: inc/menu.php:99
     53msgid "Choose a color for the background of the box."
     54msgstr ""
     55
     56#: inc/menu.php:109
     57msgid "Choose a color for the border of the box."
     58msgstr ""
     59
     60#: inc/menu.php:129
     61msgid "Choose a color for the content."
     62msgstr ""
     63
     64#: inc/menu.php:139
     65msgid "Choose a color for the icons."
     66msgstr ""
     67
     68#: inc/menu.php:119
     69msgid "Choose a color for the titles."
     70msgstr ""
     71
     72#: inc/meta-boxes.php:104
     73msgid "Choose a verdict"
     74msgstr ""
     75
     76#: inc/menu.php:75
     77msgid "Choose the font you want to use on content."
     78msgstr ""
     79
     80#: inc/menu.php:61
     81msgid "Choose the font you want to use on titles."
     82msgstr ""
     83
     84#: inc/filters.php:58 inc/meta-boxes.php:6 inc/meta-boxes.php:35
     85msgid "Claim"
     86msgstr ""
     87
     88#: inc/menu.php:93
     89msgid "Color Options"
     90msgstr ""
     91
     92#: inc/filters.php:43 inc/meta-boxes.php:92 inc/structured-data.php:34
     93msgid "Correct"
    23194msgstr ""
    23295
     
    237100msgstr ""
    238101
     102#: inc/menu.php:17
     103msgid "Display Options"
     104msgstr ""
     105
     106#: inc/menu.php:48
     107msgid "Do you want to display icons?"
     108msgstr ""
     109
     110#: inc/menu.php:23
     111msgid "Do you want to display the fact-check details above the post?"
     112msgstr ""
     113
     114#: inc/custom-post-type.php:10
     115msgid "Edit Fact-check"
     116msgstr ""
     117
     118#: inc/meta-boxes.php:120
     119msgid "Explainer"
     120msgstr ""
     121
     122#. Author of the plugin
     123msgid "Fotso Fonkam"
     124msgstr ""
     125
     126#: inc/menu.php:35
     127msgid "How do you want to display the fact-checking details?"
     128msgstr ""
     129
     130#. Author URI of the plugin
     131msgid "http://www.iamfotso.cm/a-propos/"
     132msgstr ""
     133
    239134#. URI of the plugin
    240135msgid "http://www.iamfotso.cm/projects/wp-factcheck/"
    241136msgstr ""
    242137
    243 #. Author of the plugin
    244 msgid "Fotso Fonkam"
    245 msgstr ""
    246 
    247 #. Author URI of the plugin
    248 msgid "http://www.iamfotso.cm/a-propos/"
    249 msgstr ""
     138#: inc/filters.php:23 inc/meta-boxes.php:88 inc/structured-data.php:18
     139msgid "Incorrect"
     140msgstr ""
     141
     142#: inc/filters.php:38 inc/meta-boxes.php:91 inc/structured-data.php:30
     143msgid "Mostly Correct"
     144msgstr ""
     145
     146#: inc/filters.php:28 inc/meta-boxes.php:89 inc/structured-data.php:22
     147msgid "Mostly Incorrect"
     148msgstr ""
     149
     150#: inc/custom-post-type.php:9
     151msgid "New Fact-check"
     152msgstr ""
     153
     154#: inc/menu.php:28
     155msgid "No"
     156msgstr ""
     157
     158#: inc/custom-post-type.php:17
     159msgid "No fact-checks found in Trash."
     160msgstr ""
     161
     162#: inc/custom-post-type.php:15
     163msgid "No fact-checks found."
     164msgstr ""
     165
     166#: inc/meta-boxes.php:62
     167msgid "Organisation"
     168msgstr ""
     169
     170#: inc/custom-post-type.php:18
     171msgctxt ""
     172"Overrides the “Featured Image” phrase for this post type. Added in 4.3"
     173msgid "Fact-check Cover Image"
     174msgstr ""
     175
     176#: inc/custom-post-type.php:23
     177msgctxt ""
     178"Overrides the “Insert into post”/”Insert into page” phrase (used when "
     179"inserting media into a post). Added in 4.4"
     180msgid "Insert into fact-check"
     181msgstr ""
     182
     183#: inc/custom-post-type.php:20
     184msgctxt ""
     185"Overrides the “Remove featured image” phrase for this post type. Added in 4.3"
     186msgid "Remove cover image"
     187msgstr ""
     188
     189#: inc/custom-post-type.php:19
     190msgctxt ""
     191"Overrides the “Set featured image” phrase for this post type. Added in 4.3"
     192msgid "Set cover image"
     193msgstr ""
     194
     195#: inc/custom-post-type.php:24
     196msgctxt ""
     197"Overrides the “Uploaded to this post”/”Uploaded to this page” phrase (used "
     198"when viewing media attached to a post). Added in 4.4"
     199msgid "Uploaded to this fact-check"
     200msgstr ""
     201
     202#: inc/custom-post-type.php:21
     203msgctxt ""
     204"Overrides the “Use as featured image” phrase for this post type. Added in 4.3"
     205msgid "Use as cover image"
     206msgstr ""
     207
     208#: inc/custom-post-type.php:14
     209msgid "Parent Fact-checks:"
     210msgstr ""
     211
     212#: inc/filters.php:33 inc/meta-boxes.php:90 inc/structured-data.php:26
     213msgid "Partially Correct"
     214msgstr ""
     215
     216#: inc/meta-boxes.php:61
     217msgid "Person"
     218msgstr ""
     219
     220#: inc/custom-post-type.php:4
     221msgctxt "Post type general name"
     222msgid "Fact-checks"
     223msgstr ""
     224
     225#: inc/custom-post-type.php:5
     226msgctxt "Post type singular name"
     227msgid "Fact-check"
     228msgstr ""
     229
     230#: inc/menu.php:153
     231msgid "Save Options"
     232msgstr ""
     233
     234#: inc/custom-post-type.php:25
     235msgctxt ""
     236"Screen reader text for the filter links heading on the post type listing "
     237"screen. Default “Filter posts list”/”Filter pages list”. Added in 4.4"
     238msgid "Filter fact-checks list"
     239msgstr ""
     240
     241#: inc/custom-post-type.php:27
     242msgctxt ""
     243"Screen reader text for the items list heading on the post type listing "
     244"screen. Default “Posts list”/”Pages list”. Added in 4.4"
     245msgid "Fact-checks list"
     246msgstr ""
     247
     248#: inc/custom-post-type.php:26
     249msgctxt ""
     250"Screen reader text for the pagination heading on the post type listing "
     251"screen. Default “Posts list navigation”/”Pages list navigation”. Added in 4.4"
     252msgid "Fact-checks list navigation"
     253msgstr ""
     254
     255#: inc/custom-post-type.php:13
     256msgid "Search Fact-checks"
     257msgstr ""
     258
     259#: inc/menu.php:3 inc/menu.php:11
     260msgid "Settings"
     261msgstr ""
     262
     263#: inc/save-settings.php:29
     264msgid "Settings were successfully saved"
     265msgstr ""
     266
     267#: inc/meta-boxes.php:71
     268msgid "Source/URL"
     269msgstr ""
     270
     271#: inc/custom-post-type.php:22
     272msgctxt ""
     273"The post type archive label used in nav menus. Default “Post Archives”. "
     274"Added in 4.4"
     275msgid "Fact-check archives"
     276msgstr ""
     277
     278#: inc/filters.php:69 inc/meta-boxes.php:14 inc/meta-boxes.php:99
     279msgid "Verdict"
     280msgstr ""
     281
     282#: inc/custom-post-type.php:11
     283msgid "View Fact-check"
     284msgstr ""
     285
     286#. Name of the plugin
     287msgid "WP Factcheck"
     288msgstr ""
     289
     290#: inc/menu.php:26
     291msgid "Yes"
     292msgstr ""
     293
     294#: inc/activate.php:6
     295msgid ""
     296"You have to upgrade your WordPress version before you can use this plugin"
     297msgstr ""
  • wp-factcheck/trunk/readme.txt

    r2510316 r2625328  
    22Contributors: willfonkam
    33Tags: factchecking, fake news, verify, claim, verdict, explainer, correct, fake, exaggerated, structured, data
    4 Requires at least: 4.9
    5 Tested up to: 5.7
    6 Stable tag: 1.0
     4Requires at least: 5.0
     5Tested up to: 5.8.1
     6Stable tag: 1.1
    77License: GPL2+
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3030= 1.0 =
    3131* Initial release.
     32= 1.1 =
     33* Design updated: Claim and verdict box appear below article in admin
     34* New setting option: users can choose to display fact-check details above article or not
  • wp-factcheck/trunk/wp-factcheck.php

    r2360776 r2625328  
    2121define( 'WPFC_PLUGIN_URL', __FILE__ );
    2222define( 'WPFC_DEV_MODE', true );
    23 define( 'WPFC_WP_VERSION', '4.9' );
     23define( 'WPFC_WP_VERSION', '5.8' );
    2424
    2525// INCLUDES
Note: See TracChangeset for help on using the changeset viewer.