From 75825a72bcc5d43ad04e8ea784c6cd6dd4118618 Mon Sep 17 00:00:00 2001 From: Ojo Paul Date: Thu, 8 Jun 2023 15:45:41 +0100 Subject: [PATCH 01/13] - Related Posts block is broken #1652 --- blocks/src/related-posts.js | 80 ++++++++++++++++++++----------------- 1 file changed, 43 insertions(+), 37 deletions(-) diff --git a/blocks/src/related-posts.js b/blocks/src/related-posts.js index 750941f9..e5d54687 100644 --- a/blocks/src/related-posts.js +++ b/blocks/src/related-posts.js @@ -1,48 +1,54 @@ (function (wp) { var el = wp.element.createElement, - registerBlockType = wp.blocks.registerBlockType, - ServerSideRender = wp.components.ServerSideRender, - TextControl = wp.components.TextControl, - SelectControl = wp.components.SelectControl, - InspectorControls = wp.editor.InspectorControls + registerBlockType = wp.blocks.registerBlockType, + ServerSideRender = wp.serverSideRender, + TextControl = wp.components.TextControl, + SelectControl = wp.components.SelectControl, + InspectorControls = wp.editor.InspectorControls, + withSelect = wp.data.withSelect; -registerBlockType('taxopress/related-posts', { - title: ST_RELATED_POST.panel_title, - icon: 'tag', - category: 'widgets', - edit: function(props) { - props.setAttributes({post_id: wp.data.select('core/editor').getCurrentPostId()}) + var RelatedPostsEdit = withSelect(function (select, props) { + var currentPostId = select('core/editor').getCurrentPostId(); + + return { + post_id: currentPostId, + }; + })(function (props) { return [ el(ServerSideRender, { + key: 'serverSideRender', block: 'taxopress/related-posts', attributes: props.attributes, }), - el(InspectorControls, {}, - el(SelectControl, - { - id: 'stb-related-post-select', - className: 'stb-block-related-post', - label: ST_RELATED_POST.select_label, - help: ST_RELATED_POST.select_desc, - options: ST_RELATED_POST.options, - onChange: (value) => { - props.setAttributes({relatedpost_id: value}), - props.setAttributes({post_id: wp.data.select('core/editor').getCurrentPostId()}) - }, - value: props.attributes.relatedpost_id - } - ), + el( + InspectorControls, + { key: 'inspectorControls' }, + el(SelectControl, { + id: 'stb-related-post-select', + className: 'stb-block-related-post', + label: ST_RELATED_POST.select_label, + help: ST_RELATED_POST.select_desc, + options: ST_RELATED_POST.options, + onChange: function (value) { + props.setAttributes({ + relatedpost_id: value, + post_id: props.post_id, + }); + }, + value: props.attributes.relatedpost_id, + }) ), + ]; + }); + registerBlockType('taxopress/related-posts', { + title: ST_RELATED_POST.panel_title, + icon: 'tag', + category: 'widgets', + edit: RelatedPostsEdit, - ] - }, - - save: function() { - return null - }, -}) - -} )( - window.wp -); \ No newline at end of file + save: function () { + return null; + }, + }); +})(window.wp); \ No newline at end of file From 933c66140305887da238b2d70ba6958117888e22 Mon Sep 17 00:00:00 2001 From: ojopaul Date: Wed, 14 Jun 2023 09:26:16 +0100 Subject: [PATCH 02/13] - Main Landing Page / Dashboard #1136 --- assets/css/admin.css | 200 +++++++ assets/js/admin.js | 60 ++- inc/class.admin.php | 748 ++++++++++++++------------- inc/dashboard.php | 123 +++++ inc/functions.inc.php | 293 +++++++---- inc/helper.options.admin.php | 154 ++---- inc/helper.options.default.php | 1 + includes-core/TaxopressCoreAdmin.php | 259 +++++----- 8 files changed, 1158 insertions(+), 680 deletions(-) create mode 100644 inc/dashboard.php diff --git a/assets/css/admin.css b/assets/css/admin.css index 22297e79..97bf3c09 100644 --- a/assets/css/admin.css +++ b/assets/css/admin.css @@ -1,3 +1,203 @@ + + +/* Start COPIED FROM PP BLOCKS */ +.taxopress-menus-wrapper.capabilities-dashboard input { + float: right; +} + +.st_wrap .taxopress-dashboard-settings-boxes { + margin-bottom: 20px; + margin-top: 20px; + display: grid; + grid-column-gap: 10px; + grid-row-gap: 10px; + grid-template-columns: repeat(3, 1fr); +} + +@media (max-width: 1200px) { + .st_wrap .taxopress-dashboard-settings-boxes { + grid-template-columns: repeat(2, 1fr) + } +} + +@media (max-width: 979px) { + .st_wrap .taxopress-dashboard-settings-boxes { + grid-template-columns: repeat(1, 1fr) + } +} + +.st_wrap .taxopress-dashboard-settings-boxes .taxopress-dashboard-settings-box { + position: relative; + padding: 20px 20px 0; + background-color: #fff; + box-shadow: 0 10px 30px 0 rgba(160, 166, 190, 0.08); + border: 1px solid #dcdcdc +} + +.st_wrap .taxopress-dashboard-settings-boxes .taxopress-dashboard-settings-box h3 { + margin: 0 0 1em; + line-height: 1.5em; + padding: 0 +} + +.st_wrap .taxopress-dashboard-settings-boxes .taxopress-dashboard-settings-box h3 span { + background: #000; + padding: 2px 5px; + color: #fff; + border-radius: 4px; + font-size: 0.8em +} + +.st_wrap .taxopress-dashboard-settings-boxes .taxopress-dashboard-settings-box h3 span.taxopress-label-beta { + background: #ccc +} + +.st_wrap .taxopress-dashboard-settings-boxes .taxopress-dashboard-settings-box .taxopress-dashboard-settings-description { + line-height: 1.6em; + padding: 0 0 20px; + height: 150px +} + +@media (max-width: 979px) { + .st_wrap .taxopress-dashboard-settings-boxes .taxopress-dashboard-settings-box .taxopress-dashboard-settings-description { + height: auto + } +} + +.st_wrap .taxopress-dashboard-settings-boxes .taxopress-dashboard-settings-box .taxopress-dashboard-settings-control { + background: #fbfbfb; + margin: 0 -20px; + padding: 0 20px; + line-height: 60px; + border-top: 1px solid #dcdcdc; + display: grid; + grid-template-columns: 1fr 3fr; + grid-column-gap: 20px +} + +@media (min-width: 980px) { + .st_wrap .taxopress-dashboard-settings-boxes .taxopress-dashboard-settings-box .taxopress-dashboard-settings-control { + position: absolute; + bottom: 0; + width: 100%; + box-sizing: border-box + } +} + +.st_wrap .taxopress-dashboard-settings-boxes .taxopress-dashboard-settings-box .taxopress-dashboard-settings-control .taxopress-switch-button { + float: none; + margin: 0 +} + +.st_wrap .taxopress-dashboard-settings-boxes .taxopress-dashboard-settings-box .taxopress-dashboard-settings-control .taxopress-switch-button .switch { + margin: 17px 0 +} + + +.taxopress-switch-button { + float: right; + margin-left: 10px; + margin-right: 30px; + line-height: 27px +} + +.taxopress-switch-button .switch { + position: relative; + display: inline-block; + width: 46px; + height: 26px; + margin: 10px +} + +.taxopress-switch-button .switch input { + display: none +} + +.taxopress-switch-button .switch .slider { + position: absolute; + cursor: pointer; + top: 0; + left: 0; + right: 0; + bottom: 0; + background-color: #ccc; + -webkit-transition: 0.4s; + -moz-transition: 0.4s; + -ms-transition: 0.4s; + -o-transition: 0.4s; + transition: 0.4s; + -webkit-border-radius: 40px; + -moz-border-radius: 40px; + border-radius: 40px; + width: auto +} + +.taxopress-switch-button .switch .slider:before { + position: absolute; + content: ''; + height: 22px; + width: 22px; + left: 2px; + bottom: 2px; + background-color: #fff; + -webkit-transition: 0.4s; + -moz-transition: 0.4s; + -ms-transition: 0.4s; + -o-transition: 0.4s; + transition: 0.4s; + -webkit-border-radius: 50%; + -moz-border-radius: 50%; + border-radius: 50% +} + +.taxopress-switch-button .switch input:checked+.slider { + background-color: #00d084 +} + +.taxopress-switch-button .switch input:checked+.slider:before { + -webkit-transform: translateX(20px); + -moz-transform: translateX(20px); + -ms-transform: translateX(20px); + -o-transform: translateX(20px); + transform: translateX(20px) +} + +.block-item-readonly .taxopress-switch-button .switch { + opacity: 0.3 +} + + +.taxopress-floating-status { + position: fixed; + bottom: 20px; + left: 184px; + background: #2c3338; + padding: 10px 15px; + border-radius: 4px; + margin-bottom: 10px; + transition: all 0.5s ease-out; + box-shadow: 0 0 15px #999; + z-index: 999; +} +@media (max-width: 782px) { + .taxopress-floating-status { + left: 60px; + } +} +.taxopress-floating-status.taxopress-floating-status--success { + color: #00d084; +} +.taxopress-floating-status.taxopress-floating-status--error { + color: #d63638; +} + +.taxopress-hide-menu-item { + display:none !important +} + +/* end COPIED FROM PP BLOCKS */ + + body.taxopress_page_st_terms tr.inline-edit-row td { padding-left: 20px !important; } diff --git a/assets/js/admin.js b/assets/js/admin.js index 9f4cccbd..ebc40c16 100644 --- a/assets/js/admin.js +++ b/assets/js/admin.js @@ -7,7 +7,6 @@ */ $(document).ready(function () { - // ------------------------------------------------------------- @@ -799,6 +798,65 @@ return str === null || str.match(/^ *$/) !== null; } + /* Start COPIED FROM PP BLOCKS */ + $(".taxopress-dashboard-settings-control .slider").bind("click", function (e) { + try { + e.preventDefault(); + if ($(this).hasClass("slider--disabled")) { + return false; + } + var checkbox = $(this).parent().find("input"); + var isChecked = checkbox.is(":checked") ? 1 : 0; + var newState = isChecked == 1 ? 0 : 1; + var feature = checkbox.data("feature"); + var option_key = checkbox.data("option_key"); + var slider = checkbox.parent().find(".slider"); + $.ajax({ + url: st_admin_localize.ajaxurl, + method: "POST", + data: { action: "save_taxopress_dashboard_feature_by_ajax", feature: option_key, new_state: newState, nonce: st_admin_localize.check_nonce }, + beforeSend: function () { + slider.css("opacity", 0.5); + }, + success: function () { + newState == 1 ? checkbox.prop("checked", true) : checkbox.prop("checked", false); + slider.css("opacity", 1); + taxopressDynamicSubmenu(feature, newState) + taxopressTimerStatus(); + }, + error: function (jqXHR, textStatus, errorThrown) { + console.error(jqXHR.responseText); + taxopressTimerStatus("error"); + }, + }); + } catch (e) { + console.error(e); + } + }); + function taxopressTimerStatus(type = "success") { + setTimeout(function () { + var uniqueClass = "taxopress-floating-msg-" + Math.round(new Date().getTime() + Math.random() * 100); + var message = type === "success" ? wp.i18n.__("Changes saved!", "capsman-enhanced") : wp.i18n.__(" Error: changes can't be saved.", "capsman-enhanced"); + var instances = $(".taxopress-floating-status").length; + $("#wpbody-content").after('' + message + ""); + $("." + uniqueClass) + .css("bottom", instances * 45) + .fadeIn(1e3) + .delay(1e4) + .fadeOut(1e3, function () { + $(this).remove(); + }); + }, 500); + } + function taxopressDynamicSubmenu(slug, newState) { + var pMenu = $("#toplevel_page_st_options"); + var cSubmenu = $(pMenu).find("li." + slug + "-menu-item"); + if (cSubmenu.length) { + newState == 1 ? cSubmenu.removeClass("taxopress-hide-menu-item").find("a").removeClass("taxopress-hide-menu-item") : cSubmenu.addClass("taxopress-hide-menu-item").find("a").addClass("taxopress-hide-menu-item"); + } + } + /* end COPIED FROM PP BLOCKS */ + }); })(jQuery); diff --git a/inc/class.admin.php b/inc/class.admin.php index bb02acdd..e124cef6 100644 --- a/inc/class.admin.php +++ b/inc/class.admin.php @@ -1,6 +1,7 @@ $term_id ] ); + wp_send_json_success(['term_id' => $term_id]); } /** @@ -224,41 +224,42 @@ public static function maybe_create_tag( $tag_name = '' ) { * * @return bool */ - private static function is_dev_url( $url = '' ) { + private static function is_dev_url($url = '') + { $is_local_url = false; // Trim it up - $url = strtolower( trim( $url ) ); + $url = strtolower(trim($url)); // Need to get the host...so let's add the scheme so we can use parse_url - if ( false === strpos( $url, 'http://' ) && false === strpos( $url, 'https://' ) ) { + if (false === strpos($url, 'http://') && false === strpos($url, 'https://')) { $url = 'http://' . $url; } - $url_parts = wp_parse_url( $url ); - $host = ! empty( $url_parts['host'] ) ? $url_parts['host'] : false; - if ( ! empty( $url ) && ! empty( $host ) ) { - if ( false !== ip2long( $host ) ) { - if ( ! filter_var( $host, FILTER_VALIDATE_IP, FILTER_FLAG_NO_PRIV_RANGE | FILTER_FLAG_NO_RES_RANGE ) ) { + $url_parts = wp_parse_url($url); + $host = !empty($url_parts['host']) ? $url_parts['host'] : false; + if (!empty($url) && !empty($host)) { + if (false !== ip2long($host)) { + if (!filter_var($host, FILTER_VALIDATE_IP, FILTER_FLAG_NO_PRIV_RANGE | FILTER_FLAG_NO_RES_RANGE)) { $is_local_url = true; } - } elseif ( 'localhost' === $host ) { + } elseif ('localhost' === $host) { $is_local_url = true; } - $tlds_to_check = array( '.local', ':8888', ':8080', ':8081', '.invalid', '.example', '.test' ); - foreach ( $tlds_to_check as $tld ) { - if ( false !== strpos( $host, $tld ) ) { + $tlds_to_check = array('.local', ':8888', ':8080', ':8081', '.invalid', '.example', '.test'); + foreach ($tlds_to_check as $tld) { + if (false !== strpos($host, $tld)) { $is_local_url = true; break; } } - if ( substr_count( $host, '.' ) > 1 ) { - $subdomains_to_check = array( 'dev.', '*.staging.', 'beta.', 'test.' ); - foreach ( $subdomains_to_check as $subdomain ) { - $subdomain = str_replace( '.', '(.)', $subdomain ); - $subdomain = str_replace( array( '*', '(.)' ), '(.*)', $subdomain ); - if ( preg_match( '/^(' . $subdomain . ')/', $host ) ) { + if (substr_count($host, '.') > 1) { + $subdomains_to_check = array('dev.', '*.staging.', 'beta.', 'test.'); + foreach ($subdomains_to_check as $subdomain) { + $subdomain = str_replace('.', '(.)', $subdomain); + $subdomain = str_replace(array('*', '(.)'), '(.*)', $subdomain); + if (preg_match('/^(' . $subdomain . ')/', $host)) { $is_local_url = true; break; } @@ -276,8 +277,9 @@ private static function is_dev_url( $url = '' ) { * @return void * @author WebFactory Ltd */ - public static function register_taxonomy() { - add_action( 'init', array( __CLASS__, 'init' ), 99999999 ); + public static function register_taxonomy() + { + add_action('init', array(__CLASS__, 'init'), 99999999); } /** @@ -286,52 +288,53 @@ public static function register_taxonomy() { * @return void * @author WebFactory Ltd */ - public static function init() { - self::$taxo_name = esc_html__( 'Post tags', 'simple-tags' ); - self::$post_type_name = esc_html__( 'Posts', 'simple-tags' ); + public static function init() + { + self::$taxo_name = esc_html__('Post tags', 'simple-tags'); + self::$post_type_name = esc_html__('Posts', 'simple-tags'); // Custom CPT ? - if ( isset( $_GET['cpt'] ) && ! empty( $_GET['cpt'] ) && post_type_exists( sanitize_text_field($_GET['cpt']) ) ) { - $cpt = get_post_type_object( sanitize_text_field($_GET['cpt']) ); + if (isset($_GET['cpt']) && !empty($_GET['cpt']) && post_type_exists(sanitize_text_field($_GET['cpt']))) { + $cpt = get_post_type_object(sanitize_text_field($_GET['cpt'])); self::$post_type = $cpt->name; self::$post_type_name = $cpt->labels->name; } // Get compatible taxo for current post type - $compatible_taxonomies = get_object_taxonomies( self::$post_type ); + $compatible_taxonomies = get_object_taxonomies(self::$post_type); // Custom taxo ? - if ( isset( $_GET['taxo'] ) && ! empty( $_GET['taxo'] ) && taxonomy_exists( sanitize_text_field($_GET['taxo']) ) ) { - $taxo = get_taxonomy( sanitize_text_field($_GET['taxo']) ); + if (isset($_GET['taxo']) && !empty($_GET['taxo']) && taxonomy_exists(sanitize_text_field($_GET['taxo']))) { + $taxo = get_taxonomy(sanitize_text_field($_GET['taxo'])); // Taxo is compatible ? - if ( in_array( $taxo->name, $compatible_taxonomies ) ) { + if (in_array($taxo->name, $compatible_taxonomies)) { self::$taxonomy = $taxo->name; self::$taxo_name = $taxo->labels->name; } else { - unset( $taxo ); + unset($taxo); } } // Default taxo from CPT... - if ( ! isset( $taxo ) && is_array( $compatible_taxonomies ) && ! empty( $compatible_taxonomies ) ) { + if (!isset($taxo) && is_array($compatible_taxonomies) && !empty($compatible_taxonomies)) { // Take post_tag before category - if ( in_array( 'post_tag', $compatible_taxonomies, true ) ) { - $taxo = get_taxonomy( 'post_tag' ); + if (in_array('post_tag', $compatible_taxonomies, true)) { + $taxo = get_taxonomy('post_tag'); } else { - $taxo = get_taxonomy( current( $compatible_taxonomies ) ); + $taxo = get_taxonomy(current($compatible_taxonomies)); } self::$taxonomy = $taxo->name; self::$taxo_name = $taxo->labels->name; // TODO: Redirect for help user that see the URL... - } elseif ( ! isset( $taxo ) ) { - wp_die( esc_html__( 'This custom post type not have taxonomies.', 'simple-tags' ) ); + } elseif (!isset($taxo)) { + wp_die(esc_html__('This custom post type not have taxonomies.', 'simple-tags')); } // Free memory - unset( $cpt, $taxo ); + unset($cpt, $taxo); } /** @@ -342,52 +345,52 @@ public static function init() { * @return void * @author Olatechpro */ - public static function boxSelectorTaxonomy( $page_value = '' ) { + public static function boxSelectorTaxonomy($page_value = '') + { echo '
' . PHP_EOL; echo '
' . PHP_EOL; echo '
' . PHP_EOL; - if ( ! empty( $page_value ) ) { + if (!empty($page_value)) { echo '' . PHP_EOL; } $taxonomies = []; echo '' . PHP_EOL; echo '' . PHP_EOL; - echo '' . PHP_EOL; + echo '' . PHP_EOL; echo '
' . PHP_EOL; echo '
' . PHP_EOL; echo '
' . PHP_EOL; - } /** @@ -396,62 +399,63 @@ public static function boxSelectorTaxonomy( $page_value = '' ) { * @return void * @author WebFactory Ltd */ - public static function admin_enqueue_scripts() { + public static function admin_enqueue_scripts() + { global $pagenow; do_action('taxopress_admin_class_before_assets_register'); //color picker style - wp_enqueue_style( 'wp-color-picker' ); + wp_enqueue_style('wp-color-picker'); // Helper TaxoPress - wp_register_script( 'st-helper-add-tags', STAGS_URL . '/assets/js/helper-add-tags.js', array( 'jquery' ), STAGS_VERSION ); - wp_register_script( 'st-helper-options', STAGS_URL . '/assets/js/helper-options.js', array( 'jquery', 'wp-color-picker' ), STAGS_VERSION ); + wp_register_script('st-helper-add-tags', STAGS_URL . '/assets/js/helper-add-tags.js', array('jquery'), STAGS_VERSION); + wp_register_script('st-helper-options', STAGS_URL . '/assets/js/helper-options.js', array('jquery', 'wp-color-picker'), STAGS_VERSION); // Register CSS - wp_register_style( 'st-admin', STAGS_URL . '/assets/css/admin.css', array(), STAGS_VERSION, 'all' ); + wp_register_style('st-admin', STAGS_URL . '/assets/css/admin.css', array(), STAGS_VERSION, 'all'); //Register and enqueue admin js - wp_register_script( 'st-admin-js', STAGS_URL . '/assets/js/admin.js', array( 'jquery' ), STAGS_VERSION ); - wp_enqueue_script( 'st-admin-js' ); - //localize script - wp_localize_script( 'st-admin-js', 'st_admin_localize', [ - 'ajaxurl' => admin_url('admin-ajax.php'), - 'select_valid'=> esc_html__( 'Please select a valid', 'simple-tags' ), - 'check_nonce' => wp_create_nonce('st-admin-js'), - ]); + wp_register_script('st-admin-js', STAGS_URL . '/assets/js/admin.js', array('jquery'), STAGS_VERSION); + wp_enqueue_script('st-admin-js'); + //localize script + wp_localize_script('st-admin-js', 'st_admin_localize', [ + 'ajaxurl' => admin_url('admin-ajax.php'), + 'select_valid' => esc_html__('Please select a valid', 'simple-tags'), + 'check_nonce' => wp_create_nonce('st-admin-js'), + ]); - //Register remodal assets - wp_register_script( 'st-remodal-js', STAGS_URL . '/assets/js/remodal.min.js', array( 'jquery' ), STAGS_VERSION ); - wp_register_style( 'st-remodal-css', STAGS_URL . '/assets/css/remodal.css', array(), STAGS_VERSION, 'all' ); - wp_register_style( 'st-remodal-default-theme-css', STAGS_URL . '/assets/css/remodal-default-theme.css', array(), STAGS_VERSION, 'all' ); + //Register remodal assets + wp_register_script('st-remodal-js', STAGS_URL . '/assets/js/remodal.min.js', array('jquery'), STAGS_VERSION); + wp_register_style('st-remodal-css', STAGS_URL . '/assets/css/remodal.css', array(), STAGS_VERSION, 'all'); + wp_register_style('st-remodal-default-theme-css', STAGS_URL . '/assets/css/remodal-default-theme.css', array(), STAGS_VERSION, 'all'); // Register location - $wp_post_pages = array( 'post.php', 'post-new.php' ); - $wp_page_pages = array( 'page.php', 'page-new.php' ); + $wp_post_pages = array('post.php', 'post-new.php'); + $wp_page_pages = array('page.php', 'page-new.php'); $taxopress_pages = taxopress_admin_pages(); // Common Helper for Post, Page and Plugin Page if ( - in_array( $pagenow, $wp_post_pages ) || - ( in_array( $pagenow, $wp_page_pages ) && is_page_have_tags() ) || - ( isset( $_GET['page'] ) && in_array( $_GET['page'], $taxopress_pages ) ) + in_array($pagenow, $wp_post_pages) || + (in_array($pagenow, $wp_page_pages) && is_page_have_tags()) || + (isset($_GET['page']) && in_array($_GET['page'], $taxopress_pages)) ) { - wp_enqueue_script( 'st-remodal-js' ); - wp_enqueue_style( 'st-remodal-css' ); - wp_enqueue_style( 'st-remodal-default-theme-css' ); - wp_enqueue_style( 'st-admin' ); + wp_enqueue_script('st-remodal-js'); + wp_enqueue_style('st-remodal-css'); + wp_enqueue_style('st-remodal-default-theme-css'); + wp_enqueue_style('st-admin'); do_action('taxopress_admin_class_after_styles_enqueue'); } // add jQuery tabs for options page. Use jQuery UI Tabs from WP - if ( isset( $_GET['page'] ) && in_array( $_GET['page'], array('st_options','st_terms_display') ) ) { - wp_enqueue_script( 'jquery-ui-tabs' ); - wp_enqueue_script( 'st-helper-options' ); + if (isset($_GET['page']) && in_array($_GET['page'], array('st_options', 'st_terms_display'))) { + wp_enqueue_script('jquery-ui-tabs'); + wp_enqueue_script('st-helper-options'); } do_action('taxopress_admin_class_after_assets_enqueue'); @@ -463,38 +467,39 @@ public static function admin_enqueue_scripts() { * @return void * @author olatechpro */ - public static function taxopress_log_post_type() { - - // set up labels - $labels = array( - 'name' => __('TaxoPress Logs', 'simple-tags'), - 'singular_name' => __('TaxoPress Logs', 'simple-tags'), - 'search_items' => __('Search TaxoPress Logs', 'simple-tags'), - 'all_items' => __('TaxoPress Logs', 'simple-tags'), - 'edit_item' => __('Edit TaxoPress Logs', 'simple-tags'), - 'update_item' => __('Update TaxoPress Logs', 'simple-tags'), - 'add_new_item' => __('Add New TaxoPress Logs', 'simple-tags'), - 'new_item_name' => __('New TaxoPress Logs', 'simple-tags'), - 'menu_name' => __('TaxoPress Logs', 'simple-tags') - ); - - register_post_type('taxopress_logs', array( - 'labels' => $labels, - 'public' => false, - 'show_ui' => false, - 'capability_type' => 'post', - 'hierarchical' => false, - 'rewrite' => array('slug' => 'taxopress_logs'), - 'query_var' => false, - 'show_in_nav_menus' => false, - 'menu_icon' => 'dashicons-editor-justify', - 'supports' => array( - 'title', - 'editor', - 'author', - ), - )); - } + public static function taxopress_log_post_type() + { + + // set up labels + $labels = array( + 'name' => __('TaxoPress Logs', 'simple-tags'), + 'singular_name' => __('TaxoPress Logs', 'simple-tags'), + 'search_items' => __('Search TaxoPress Logs', 'simple-tags'), + 'all_items' => __('TaxoPress Logs', 'simple-tags'), + 'edit_item' => __('Edit TaxoPress Logs', 'simple-tags'), + 'update_item' => __('Update TaxoPress Logs', 'simple-tags'), + 'add_new_item' => __('Add New TaxoPress Logs', 'simple-tags'), + 'new_item_name' => __('New TaxoPress Logs', 'simple-tags'), + 'menu_name' => __('TaxoPress Logs', 'simple-tags') + ); + + register_post_type('taxopress_logs', array( + 'labels' => $labels, + 'public' => false, + 'show_ui' => false, + 'capability_type' => 'post', + 'hierarchical' => false, + 'rewrite' => array('slug' => 'taxopress_logs'), + 'query_var' => false, + 'show_in_nav_menus' => false, + 'menu_icon' => 'dashicons-editor-justify', + 'supports' => array( + 'title', + 'editor', + 'author', + ), + )); + } /** * Add settings page on WordPress admin menu @@ -502,12 +507,13 @@ public static function taxopress_log_post_type() { * @return void * @author WebFactory Ltd */ - public static function admin_menu() { - self::$admin_url = admin_url( 'admin.php?page=' . self::MENU_SLUG ); + public static function admin_menu() + { + self::$admin_url = admin_url('admin.php?page=' . self::MENU_SLUG); add_menu_page( - __( 'TaxoPress: Options', 'simple-tags' ), - __( 'TaxoPress', 'simple-tags' ), + __('TaxoPress: Options', 'simple-tags'), + __('TaxoPress', 'simple-tags'), 'admin_simple_tags', self::MENU_SLUG, array( @@ -519,8 +525,8 @@ public static function admin_menu() { ); add_submenu_page( self::MENU_SLUG, - __( 'TaxoPress: Options', 'simple-tags' ), - __( 'Settings', 'simple-tags' ), + __('TaxoPress: Options', 'simple-tags'), + __('Settings', 'simple-tags'), 'admin_simple_tags', self::MENU_SLUG, array( @@ -536,18 +542,27 @@ public static function admin_menu() { * @return void * @author WebFactory Ltd */ - public static function page_options() { + public static function page_options() + { // Get options $options = (array) SimpleTags_Plugin::get_option(); - if(current_user_can('admin_simple_tags')){ - // Update or reset options - if ( isset( $_POST['updateoptions'] ) ) { - check_admin_referer( 'updateresetoptions-simpletags' ); + if (current_user_can('admin_simple_tags')) { + // Update or reset options + if (isset($_POST['updateoptions'])) { + $dashboard_options = taxopress_dashboard_options(); + $dashboard_option_keys = array_column($dashboard_options, 'option_key'); + + check_admin_referer('updateresetoptions-simpletags'); $sanitized_options = []; foreach ($options as $key => $value) { $value = isset($_POST[$key]) ? $_POST[$key] : ''; + + if (empty($value) && in_array($key, $dashboard_option_keys)) { + $value = SimpleTags_Plugin::get_option_value($key); + } + if (!is_array($value)) { $sanitized_options[$key] = taxopress_sanitize_text_field($value); } else { @@ -560,22 +575,21 @@ public static function page_options() { } $options = $sanitized_options; - SimpleTags_Plugin::set_option( $options ); - - do_action( 'simpletags_settings_save_general_end' ); + SimpleTags_Plugin::set_option($options); - add_settings_error( __CLASS__, __CLASS__, esc_html__( 'Options saved', 'simple-tags' ), 'updated' ); - } elseif ( isset( $_POST['reset_options'] ) ) { - check_admin_referer( 'updateresetoptions-simpletags' ); + do_action('simpletags_settings_save_general_end'); - SimpleTags_Plugin::set_default_option(); + add_settings_error(__CLASS__, __CLASS__, esc_html__('Options saved', 'simple-tags'), 'updated'); + } elseif (isset($_POST['reset_options'])) { + check_admin_referer('updateresetoptions-simpletags'); - add_settings_error( __CLASS__, __CLASS__, esc_html__( 'TaxoPress options resetted to default options!', 'simple-tags' ), 'updated' ); - } + SimpleTags_Plugin::set_default_option(); - } + add_settings_error(__CLASS__, __CLASS__, esc_html__('TaxoPress options resetted to default options!', 'simple-tags'), 'updated'); + } + } - settings_errors( __CLASS__ ); + settings_errors(__CLASS__); include STAGS_DIR . '/views/admin/page-settings.php'; } @@ -588,21 +602,22 @@ public static function page_options() { * @return string * @author WebFactory Ltd */ - public static function getTermsToEdit( $taxonomy = 'post_tag', $post_id = 0 ) { + public static function getTermsToEdit($taxonomy = 'post_tag', $post_id = 0) + { $post_id = (int) $post_id; - if ( ! $post_id ) { + if (!$post_id) { return ''; } - $terms = wp_get_post_terms( $post_id, $taxonomy, array( 'fields' => 'names' ) ); - if ( empty( $terms ) || is_wp_error( $terms ) ) { + $terms = wp_get_post_terms($post_id, $taxonomy, array('fields' => 'names')); + if (empty($terms) || is_wp_error($terms)) { return ''; } - $terms = array_unique( $terms ); // Remove duplicate - $terms = join( ', ', $terms ); - $terms = esc_attr( $terms ); - $terms = apply_filters( 'tags_to_edit', $terms ); + $terms = array_unique($terms); // Remove duplicate + $terms = join(', ', $terms); + $terms = esc_attr($terms); + $terms = apply_filters('tags_to_edit', $terms); return $terms; } @@ -613,11 +628,12 @@ public static function getTermsToEdit( $taxonomy = 'post_tag', $post_id = 0 ) { * @return string * @author WebFactory Ltd */ - public static function getDefaultContentBox() { - if ( (int) wp_count_terms( 'post_tag', array( 'hide_empty' => false ) ) == 0 ) { // TODO: Custom taxonomy - return esc_html__( 'This feature requires at least 1 tag to work. Begin by adding tags!', 'simple-tags' ); + public static function getDefaultContentBox() + { + if ((int) wp_count_terms('post_tag', array('hide_empty' => false)) == 0) { // TODO: Custom taxonomy + return esc_html__('This feature requires at least 1 tag to work. Begin by adding tags!', 'simple-tags'); } else { - return esc_html__( 'This feature works only with activated JavaScript. Activate it in your Web browser so you can!', 'simple-tags' ); + return esc_html__('This feature works only with activated JavaScript. Activate it in your Web browser so you can!', 'simple-tags'); } } @@ -627,7 +643,8 @@ public static function getDefaultContentBox() { * @return void * @author WebFactory Ltd */ - public static function printAdminFooter() { + public static function printAdminFooter() + { /* ?> - - + + $options ) { - $colspan = count( $options ) > 1 ? 'colspan="2"' : ''; + foreach ($option_data as $section => $options) { + $colspan = count($options) > 1 ? 'colspan="2"' : ''; $desc_html_tag = 'div'; - if($section === 'legacy'){ - $table_sub_tab = '
+ if ($section === 'legacy') { + $table_sub_tab = '
Tag Cloud | Tags for Current Post | Related Posts | Auto link
' . PHP_EOL; - }else{ - $table_sub_tab = ''; - } + } else { + $table_sub_tab = ''; + } - $output .= '
' . PHP_EOL; - $output .= $table_sub_tab; + $output .= '
' . PHP_EOL; + $output .= $table_sub_tab; $output .= '
' . PHP_EOL; - $output .= '' . self::getNiceTitleOptions( $section ) . '' . PHP_EOL; + $output .= '' . self::getNiceTitleOptions($section) . '' . PHP_EOL; $output .= '' . PHP_EOL; - foreach ( (array) $options as $option ) { + foreach ((array) $options as $option) { - $class = ''; - if($section === 'legacy'){ - $class = $option[5]; - } + $class = ''; + if ($section === 'legacy') { + $class = $option[5]; + } // Helper - if ( $option[2] == 'helper' ) { - $output .= '' . PHP_EOL; + if ($option[2] == 'helper') { + $output .= '' . PHP_EOL; continue; } // Fix notices - if ( ! isset( $option_actual[ $option[0] ] ) ) { - $option_actual[ $option[0] ] = ''; + if (!isset($option_actual[$option[0]])) { + $option_actual[$option[0]] = ''; } $input_type = ''; - switch ( $option[2] ) { + switch ($option[2]) { case 'radio': $input_type = array(); - foreach ( $option[3] as $value => $text ) { - $input_type[] = '' . PHP_EOL; + foreach ($option[3] as $value => $text) { + $input_type[] = '' . PHP_EOL; } - $input_type = implode( '
', $input_type ); + $input_type = implode('
', $input_type); break; case 'checkbox': $desc_html_tag = 'span'; - $input_type = '' . PHP_EOL; + $input_type = '' . PHP_EOL; break; case 'dropdown': - $selopts = explode( '/', $option[3] ); + $selopts = explode('/', $option[3]); $seldata = ''; - foreach ( (array) $selopts as $sel ) { - $seldata .= '' . PHP_EOL; + foreach ((array) $selopts as $sel) { + $seldata .= '' . PHP_EOL; } $input_type = '' . PHP_EOL; break; case 'text-color': - $input_type = '' . PHP_EOL; + $input_type = '' . PHP_EOL; break; case 'text': - $input_type = '' . PHP_EOL; + $input_type = '' . PHP_EOL; break; case 'number': - $input_type = '' . PHP_EOL; + $input_type = '' . PHP_EOL; break; } - if( is_array($option[2]) ){ - $input_type = '' . PHP_EOL; + if (is_array($option[2])) { + $input_type = '' . PHP_EOL; } // Additional Information $extra = ''; - if ( ! empty( $option[4] ) ) { - $extra = '<' . $desc_html_tag . ' class="stpexplan">' . __( $option[4] ) . '' . PHP_EOL; + if (!empty($option[4])) { + $extra = '<' . $desc_html_tag . ' class="stpexplan">' . __($option[4]) . '' . PHP_EOL; } // Output - $output .= '' . PHP_EOL; + $output .= '' . PHP_EOL; } $output .= '
' . stripslashes( $option[4] ) . '
' . stripslashes($option[4]) . '
' . $input_type . ' ' . $extra . '
' . $input_type . ' ' . $extra . '
' . PHP_EOL; $output .= '
' . PHP_EOL; @@ -771,22 +790,23 @@ public static function print_options( $option_data ) { * * @return string */ - public static function getNiceTitleOptions( $id = '' ) { - switch ( $id ) { + public static function getNiceTitleOptions($id = '') + { + switch ($id) { case 'administration': - return esc_html__( 'Administration', 'simple-tags' ); + return esc_html__('Administration', 'simple-tags'); case 'auto-links': - return esc_html__( 'Auto link', 'simple-tags' ); + return esc_html__('Auto link', 'simple-tags'); case 'features': - return esc_html__( 'Features', 'simple-tags' ); + return esc_html__('Features', 'simple-tags'); case 'embeddedtags': - return esc_html__( 'Embedded Tags', 'simple-tags' ); + return esc_html__('Embedded Tags', 'simple-tags'); case 'tagspost': - return esc_html__( 'Tags for Current Post', 'simple-tags' ); + return esc_html__('Tags for Current Post', 'simple-tags'); case 'relatedposts': - return esc_html__( 'Related Posts', 'simple-tags' ); + return esc_html__('Related Posts', 'simple-tags'); case 'legacy': - return esc_html__( 'Legacy', 'simple-tags' ); + return esc_html__('Legacy', 'simple-tags'); } return ''; @@ -799,31 +819,32 @@ public static function getNiceTitleOptions( $id = '' ) { * @return void * @author WebFactory Ltd */ - public static function upgrade() { + public static function upgrade() + { // Get current version number - $current_version = get_option( STAGS_OPTIONS_NAME . '-version' ); + $current_version = get_option(STAGS_OPTIONS_NAME . '-version'); // Upgrade needed ? - if ( $current_version == false || version_compare( $current_version, STAGS_VERSION, '<' ) ) { - $current_options = get_option( STAGS_OPTIONS_NAME ); - $default_options = (array) include( STAGS_DIR . '/inc/helper.options.default.php' ); + if ($current_version == false || version_compare($current_version, STAGS_VERSION, '<')) { + $current_options = get_option(STAGS_OPTIONS_NAME); + $default_options = (array) include(STAGS_DIR . '/inc/helper.options.default.php'); // Add new options - foreach ( $default_options as $key => $default_value ) { - if ( ! isset( $current_options[ $key ] ) ) { - $current_options[ $key ] = $default_value; + foreach ($default_options as $key => $default_value) { + if (!isset($current_options[$key])) { + $current_options[$key] = $default_value; } } // Remove old options - foreach ( $current_options as $key => $current_value ) { - if ( ! isset( $default_options[ $key ] ) ) { - unset( $current_options[ $key ] ); + foreach ($current_options as $key => $current_value) { + if (!isset($default_options[$key])) { + unset($current_options[$key]); } } - update_option( STAGS_OPTIONS_NAME . '-version', STAGS_VERSION ); - update_option( STAGS_OPTIONS_NAME, $current_options ); + update_option(STAGS_OPTIONS_NAME . '-version', STAGS_VERSION); + update_option(STAGS_OPTIONS_NAME, $current_options); } } @@ -838,26 +859,27 @@ public static function upgrade() { * @return array * @author WebFactory Ltd */ - public static function getTermsForAjax( $taxonomy = 'post_tag', $search = '', $order_by = 'name', $order = 'ASC', $limit = '' ) { + public static function getTermsForAjax($taxonomy = 'post_tag', $search = '', $order_by = 'name', $order = 'ASC', $limit = '') + { global $wpdb; - if ( ! empty( $search ) ) { - return $wpdb->get_results( $wpdb->prepare( " + if (!empty($search)) { + return $wpdb->get_results($wpdb->prepare(" SELECT DISTINCT t.name, t.term_id FROM {$wpdb->terms} AS t INNER JOIN {$wpdb->term_taxonomy} AS tt ON t.term_id = tt.term_id WHERE tt.taxonomy = %s AND t.name LIKE %s ORDER BY $order_by $order $limit - ", $taxonomy, '%' . $wpdb->esc_like($search) . '%' ) ); + ", $taxonomy, '%' . $wpdb->esc_like($search) . '%')); } else { - return $wpdb->get_results( $wpdb->prepare( " + return $wpdb->get_results($wpdb->prepare(" SELECT DISTINCT t.name, t.term_id FROM {$wpdb->terms} AS t INNER JOIN {$wpdb->term_taxonomy} AS tt ON t.term_id = tt.term_id WHERE tt.taxonomy = %s ORDER BY $order_by $order $limit - ", $taxonomy ) ); + ", $taxonomy)); } } } diff --git a/inc/dashboard.php b/inc/dashboard.php new file mode 100644 index 00000000..517cdf96 --- /dev/null +++ b/inc/dashboard.php @@ -0,0 +1,123 @@ + +

+
+ +
+ +
+
+
+ $option) : + $feature_option_key = $option['option_key']; + ?> +
+

+
+
+
+ +
+
+
+ +
+
+
+ +
+ +
+ + $menuItems) { - if ('st_options' === $menuName) { - $taxopress_settings = $taxopress_taxonomies = false; - - $taxopress_submenus = $submenu['st_options']; - foreach($taxopress_submenus as $key => $taxopress_submenu){ - if($taxopress_submenu[2] === 'st_options'){//settings - $taxopress_settings = $taxopress_submenu; - $taxopress_settings_key= $key; - unset($taxopress_submenus[$key]); - } - if($taxopress_submenu[2] === 'st_taxonomies'){//taxonomies - $taxopress_taxonomies = $taxopress_submenu; - $taxopress_taxonomies_key= $key; - unset($taxopress_submenus[$key]); + + foreach ($submenu as $menuName => $menuItems) { + if ('st_options' === $menuName) { + $taxopress_settings = $taxopress_dashboard = $taxopress_taxonomies = $taxopress_upgrade = false; + + $taxopress_submenus = $submenu['st_options']; + $dashboard_options = taxopress_dashboard_options(); + $dashboard_option_pages = array_keys($dashboard_options); + foreach ($taxopress_submenus as $key => $taxopress_submenu) { + $slug_ = $taxopress_submenu[2]; + if (in_array($slug_, $dashboard_option_pages)) { + if (1 === (int) SimpleTags_Plugin::get_option_value($dashboard_options[$slug_]['option_key'])) { + $showHide = ''; + } else { + $showHide = ' taxopress-hide-menu-item'; } + $taxopress_submenus[$key][4] = $slug_ . '-menu-item' . $showHide; } - if($taxopress_settings && $taxopress_taxonomies ){ - //swicth position - $taxopress_submenus[$taxopress_settings_key] = $taxopress_taxonomies; - $taxopress_submenus[$taxopress_taxonomies_key] = $taxopress_settings; + + if ($taxopress_submenu[2] === 'st_options') { //settings + $taxopress_settings = $taxopress_submenus[$key]; + unset($taxopress_submenus[$key]); + } + if ($taxopress_submenu[2] === 'st_taxonomies') { //taxonomies + $taxopress_taxonomies = $taxopress_submenus[$key]; + unset($taxopress_submenus[$key]); + } + if ($taxopress_submenu[2] === 'st_dashboard') { //dashboard + $taxopress_dashboard = $taxopress_submenus[$key]; + unset($taxopress_submenus[$key]); } + if ($taxopress_submenu[2] === 'st_options-menu-upgrade-link') { //upgrade to pro link + $taxopress_upgrade = $taxopress_submenus[$key]; + unset($taxopress_submenus[$key]); + } + } + // add taxonomies first so it can fall as second item after dashboard + if ($taxopress_taxonomies) { + $taxopress_submenus = array_merge([$taxopress_taxonomies], $taxopress_submenus); + } + // add dashboard as first item + if ($taxopress_dashboard) { + $taxopress_submenus = array_merge([$taxopress_dashboard], $taxopress_submenus); + } + // add settings as last item + if ($taxopress_settings) { + $taxopress_submenus = array_merge($taxopress_submenus, [$taxopress_settings]); + } + // upgrade to pro should be last item if exists + if ($taxopress_upgrade) { + $taxopress_submenus = array_merge($taxopress_submenus, [$taxopress_upgrade]); + } - //resort array - ksort($taxopress_submenus); + //resort array + ksort($taxopress_submenus); + $submenu['st_options'] = $taxopress_submenus; - $submenu['st_options'] = $taxopress_submenus; break; - } } } } @@ -107,9 +132,11 @@ function init_simple_tags() add_action('widgets_init', 'st_register_widget'); } -function taxopress_admin_pages(){ +function taxopress_admin_pages() +{ $taxopress_pages = [ + 'st_dashboard', 'st_mass_terms', 'st_auto', 'st_options', @@ -124,65 +151,69 @@ function taxopress_admin_pages(){ 'st_terms' ]; - return apply_filters('taxopress_admin_pages', $taxopress_pages); + return apply_filters('taxopress_admin_pages', $taxopress_pages); } -function is_taxopress_admin_page(){ - +function is_taxopress_admin_page() +{ + $taxopress_pages = taxopress_admin_pages(); $is_taxopress_page = false; - if ( isset( $_GET['page'] ) && in_array( $_GET['page'], $taxopress_pages )) { + if (isset($_GET['page']) && in_array($_GET['page'], $taxopress_pages)) { $is_taxopress_page = true; } return apply_filters('is_taxopress_admin_page', $is_taxopress_page); } -function taxopress_starts_with( $haystack, $needle ) { - $length = strlen( $needle ); - return substr( $haystack, 0, $length ) === $needle; +function taxopress_starts_with($haystack, $needle) +{ + $length = strlen($needle); + return substr($haystack, 0, $length) === $needle; } function taxopress_is_html($string) { - return preg_match("/<[^<]+>/",$string,$m) != 0; + return preg_match("/<[^<]+>/", $string, $m) != 0; } -function taxopress_is_screen_main_page(){ +function taxopress_is_screen_main_page() +{ - if(isset($_GET['action']) && $_GET['action'] === 'edit'){ - return false; - } + if (isset($_GET['action']) && $_GET['action'] === 'edit') { + return false; + } - if(isset($_GET['add']) && $_GET['add'] === 'new_item'){ - return false; - } + if (isset($_GET['add']) && $_GET['add'] === 'new_item') { + return false; + } - if(isset($_GET['add']) && $_GET['add'] === 'taxonomy'){ - return false; - } + if (isset($_GET['add']) && $_GET['add'] === 'taxonomy') { + return false; + } - return true; + return true; } function taxopress_format_class($class) { - return esc_attr(ltrim($class, '.')); + return esc_attr(ltrim($class, '.')); } -function taxopress_add_class_to_format($xformat, $class) { +function taxopress_add_class_to_format($xformat, $class) +{ $classes = $class; $html = $xformat; $patterns = array(); $replacements = array(); - // matches where anchor has existing classes contained in single quotes + // matches where anchor has existing classes contained in single quotes $patterns[0] = '/]*)class=\'([^\']*)\'([^>]*)>/'; $replacements[0] = ''; @@ -199,31 +230,34 @@ function taxopress_add_class_to_format($xformat, $class) { return $html; } -function taxopress_change_to_strings($join){ - if(is_array($join)){ +function taxopress_change_to_strings($join) +{ + if (is_array($join)) { $join = join(", ", $join); } return $join; } -function taxopress_change_to_array($array){ - if(!is_array($array)){ - $array = preg_split("/\s*,\s*/",$array); +function taxopress_change_to_array($array) +{ + if (!is_array($array)) { + $array = preg_split("/\s*,\s*/", $array); } return $array; } -function taxopress_html_character_and_entity($enity_code_as_key = false){ +function taxopress_html_character_and_entity($enity_code_as_key = false) +{ #Source https://dev.w3.org/html5/html-author/charref $character_set = [ //'&' => '&', '<' => '<', '>' => '>', ' ' => ' ', - '!' => '!', + '!' => '!', '"' => '"', '#' => '#', - '$'=> '$', + '$' => '$', '%' => '%', ''' => ''', '(' => '(', @@ -277,7 +311,7 @@ function taxopress_html_character_and_entity($enity_code_as_key = false){ '&' => '||taxopressamp||', ]; - if($enity_code_as_key){ + if ($enity_code_as_key) { $character_set = array_flip($character_set); } @@ -290,7 +324,8 @@ function taxopress_html_character_and_entity($enity_code_as_key = false){ * @param string $content * @return string */ -function taxopress_sanitize_text_field($content) { +function taxopress_sanitize_text_field($content) +{ if (is_array($content)) { return stripslashes_deep(array_map('taxopress_sanitize_text_field', $content)); @@ -299,6 +334,90 @@ function taxopress_sanitize_text_field($content) { $content = stripslashes_deep($content); $content = wp_kses_post($content); - + return $content; -} \ No newline at end of file +} + + + +/** + * Dashboard items + * + * @param mixed $current + * + * @return array + */ +function taxopress_dashboard_options() +{ + + $features = []; + + $features['st_taxonomies'] = [ + 'label' => esc_html__('Taxonomies', 'simple-tags'), + 'description' => esc_html__('This feature allows you to create new taxonomies and edit all the settings for each taxonomy.', 'simple-tags'), + 'option_key' => 'active_taxonomies', + ]; + + $features['st_terms_display'] = [ + 'label' => esc_html__('Terms Display', 'simple-tags'), + 'description' => esc_html__('This feature allows you to create a customizable display of all the terms in one taxonomy.', 'simple-tags'), + 'option_key' => 'active_terms_display', + ]; + + $features['st_post_tags'] = [ + 'label' => esc_html__('Terms for Current Post', 'simple-tags'), + 'description' => esc_html__('This feature allows you create a customizable display of all the terms assigned to the current post.', 'simple-tags'), + 'option_key' => 'active_post_tags', + ]; + + $features['st_related_posts'] = [ + 'label' => esc_html__('Related Posts', 'simple-tags'), + 'description' => esc_html__('The Related Posts feature works by checking for shared taxonomy terms. If your post has the terms “WordPress” and “Website”, then Related Posts will display other posts that also have the terms “WordPress” and “Website”.', 'simple-tags'), + 'option_key' => 'active_related_posts_new', + ]; + + $features['st_autolinks'] = [ + 'label' => esc_html__('Auto Links', 'simple-tags'), + 'description' => esc_html__('Auto Links can automatically create links to your defined terms. For example, if you have a term called “WordPress”, the Auto Links feature can find the word “WordPress” in your content and add links to the archive page for that term.', 'simple-tags'), + 'option_key' => 'active_auto_links', + ]; + + $features['st_autoterms'] = [ + 'label' => esc_html__('Auto Terms', 'simple-tags'), + 'description' => esc_html__('Auto Terms can scan your content and automatically assign new and existing terms.', 'simple-tags'), + 'option_key' => 'active_auto_terms', + ]; + + $features['st_suggestterms'] = [ + 'label' => esc_html__('Suggest Terms', 'simple-tags'), + 'description' => esc_html__('This feature helps when you\'re writing content. "Suggest Terms" can show a metabox where you can browse all your existing terms. "Suggest Terms" can also analyze your content and find new ideas for terms.', 'simple-tags'), + 'option_key' => 'active_suggest_terms', + ]; + + $features['st_mass_terms'] = [ + 'label' => esc_html__('Mass Edit terms', 'simple-tags'), + 'description' => esc_html__('This feature allows you to edit the terms of any taxonomy for multiple posts at the same time.', 'simple-tags'), + 'option_key' => 'active_mass_edit', + ]; + + $features['st_manage'] = [ + 'label' => esc_html__('Advanced Manage Terms', 'simple-tags'), + 'description' => esc_html__('This feature allows you to edit, merge, delete and add terms for any taxonomy.', 'simple-tags'), + 'option_key' => 'active_manage', + ]; + + $features = apply_filters('taxopress_dashboard_features', $features); + + return $features; +} + +/** + * Check if current version of taxopress is + * pro version + * + * @return void + */ +function taxopress_is_pro_version() +{ + return defined('TAXOPRESS_PRO_VERSION'); +} diff --git a/inc/helper.options.admin.php b/inc/helper.options.admin.php index 56b08b67..1b26c8e6 100644 --- a/inc/helper.options.admin.php +++ b/inc/helper.options.admin.php @@ -1,71 +1,5 @@ array( - array( - 'active_taxonomies', - __('Taxonomies', 'simple-tags'), - 'checkbox', - '1', - __('This feature allows you to create new taxonomies and edit all the settings for each taxonomy.', 'simple-tags') - ), - array( - 'active_terms_display', - __('Terms Display', 'simple-tags'), - 'checkbox', - '1', - __('This feature allows you to create a customizable display of all the terms in one taxonomy.', 'simple-tags') - ), - array( - 'active_post_tags', - __('Terms for Current Post', 'simple-tags'), - 'checkbox', - '1', - __('This feature allows you create a customizable display of all the terms assigned to the current post.', 'simple-tags') - ), - array( - 'active_related_posts_new', - __('Related Posts', 'simple-tags'), - 'checkbox', - '1', - __('The Related Posts feature works by checking for shared taxonomy terms. If your post has the terms “WordPress” and “Website”, then Related Posts will display other posts that also have the terms “WordPress” and “Website”.', 'simple-tags') - ), - array( - 'active_auto_links', - __('Auto Links', 'simple-tags'), - 'checkbox', - '1', - __('Auto Links can automatically create links to your defined terms. For example, if you have a term called “WordPress”, the Auto Links feature can find the word “WordPress” in your content and add links to the archive page for that term.', 'simple-tags') - ), - array( - 'active_auto_terms', - __('Auto Terms', 'simple-tags'), - 'checkbox', - '1', - __('Auto Terms can scan your content and automatically assign new and existing terms.', 'simple-tags') - ), - array( - 'active_suggest_terms', - __('Suggest Terms', 'simple-tags'), - 'checkbox', - '1', - __('This feature helps when you\'re writing content. "Suggest Terms" can show a metabox where you can browse all your existing terms. "Suggest Terms" can also analyze your content and find new ideas for terms.', 'simple-tags') - ), - array( - 'active_mass_edit', - __('Mass Edit terms', 'simple-tags'), - 'checkbox', - '1', - __('This feature allows you to edit the terms of any taxonomy for multiple posts at the same time.', 'simple-tags') - ), - array( - 'active_manage', - __('Advanced Manage Terms', 'simple-tags'), - 'checkbox', - '1', - __('This feature allows you to edit, merge, delete and add terms for any taxonomy.', 'simple-tags') - ) - ), - 'legacy' => array( @@ -75,7 +9,7 @@ 'text_helper', 'helper', '', - '

'.__('These settings are no longer being updated. Please use the "Terms Display" screen instead.', 'simple-tags').'



    + '

    ' . __('These settings are no longer being updated. Please use the "Terms Display" screen instead.', 'simple-tags') . '



    • ' . __('‘Order tags selection’ is the first step during tag\'s cloud generation, corresponding to collect tags.', 'simple-tags') . '
    • ' . __('‘Order tags display’ is the second. Once tags choosen, you can reorder them before display.', 'simple-tags') . '
    ' . @@ -180,9 +114,11 @@ __("The colours are hexadecimal colours, and need to have the full six digits (#eee is the shorthand version of #eeeeee).", 'simple-tags'), 'legacy-tab-content legacy-tag-cloud-content' ), - array('cloud_min_color', __('Least popular color:', 'simple-tags'), 'text-color', 'medium-text st-color-field', + array( + 'cloud_min_color', __('Least popular color:', 'simple-tags'), 'text-color', 'medium-text st-color-field', '', - 'legacy-tab-content legacy-tag-cloud-content'), + 'legacy-tab-content legacy-tag-cloud-content' + ), array( 'cloud_max_size', __('Most popular font size:', 'simple-tags'), @@ -191,9 +127,11 @@ __("The two font sizes are the size of the largest and smallest tags.", 'simple-tags'), 'legacy-tab-content legacy-tag-cloud-content' ), - array('cloud_min_size', __('Least popular font size:', 'simple-tags'), ['type' => 'number', 'attr' => 'min="0" max=""'], 'small-text', + array( + 'cloud_min_size', __('Least popular font size:', 'simple-tags'), ['type' => 'number', 'attr' => 'min="0" max=""'], 'small-text', '', - 'legacy-tab-content legacy-tag-cloud-content'), + 'legacy-tab-content legacy-tag-cloud-content' + ), array( 'cloud_unit', __('The units to display the font sizes with, on tag clouds:', 'simple-tags'), @@ -227,12 +165,14 @@ 'text_helper', 'helper', '', - '

    '.__('These settings are no longer being updated. Please use the "Terms for Current Post" screen instead.', 'simple-tags').'



    ', + '

    ' . __('These settings are no longer being updated. Please use the "Terms for Current Post" screen instead.', 'simple-tags') . '



    ', 'legacy-tab-content legacy-post-tags-content st-hide-content' ), - array('tt_feed', __('Automatically display tags list into feeds', 'simple-tags'), 'checkbox', '1', + array( + 'tt_feed', __('Automatically display tags list into feeds', 'simple-tags'), 'checkbox', '1', '', - 'legacy-tab-content legacy-post-tags-content st-hide-content'), + 'legacy-tab-content legacy-post-tags-content st-hide-content' + ), array( 'tt_embedded', __('Automatically display tags list into post content:', 'simple-tags'), @@ -249,15 +189,21 @@ '', 'legacy-tab-content legacy-post-tags-content st-hide-content' ), - array('tt_separator', __('Post tag separator string:', 'simple-tags'), 'text', 'regular-text', + array( + 'tt_separator', __('Post tag separator string:', 'simple-tags'), 'text', 'regular-text', '', - 'legacy-tab-content legacy-post-tags-content st-hide-content'), - array('tt_before', __('Text to display before tags list:', 'simple-tags'), 'text', 'regular-text', + 'legacy-tab-content legacy-post-tags-content st-hide-content' + ), + array( + 'tt_before', __('Text to display before tags list:', 'simple-tags'), 'text', 'regular-text', '', - 'legacy-tab-content legacy-post-tags-content st-hide-content'), - array('tt_after', __('Text to display after tags list:', 'simple-tags'), 'text', 'regular-text', + 'legacy-tab-content legacy-post-tags-content st-hide-content' + ), + array( + 'tt_after', __('Text to display after tags list:', 'simple-tags'), 'text', 'regular-text', '', - 'legacy-tab-content legacy-post-tags-content st-hide-content'), + 'legacy-tab-content legacy-post-tags-content st-hide-content' + ), array( 'tt_number', __('Max tags display:', 'simple-tags'), @@ -266,9 +212,11 @@ __('You must set zero (0) for display all tags.', 'simple-tags'), 'legacy-tab-content legacy-post-tags-content st-hide-content' ), - array('tt_inc_cats', __('Include categories in result ?', 'simple-tags'), 'checkbox', '1', + array( + 'tt_inc_cats', __('Include categories in result ?', 'simple-tags'), 'checkbox', '1', '', - 'legacy-tab-content legacy-post-tags-content st-hide-content'), + 'legacy-tab-content legacy-post-tags-content st-hide-content' + ), array( 'tt_xformat', __('Tag link format:', 'simple-tags'), @@ -277,9 +225,11 @@ __('You can find markers and explanations in the online documentation.', 'simple-tags'), 'legacy-tab-content legacy-post-tags-content st-hide-content' ), - array('tt_notagstext', __('Text to display if no tags found:', 'simple-tags'), 'text', 'widefat', + array( + 'tt_notagstext', __('Text to display if no tags found:', 'simple-tags'), 'text', 'widefat', '', - 'legacy-tab-content legacy-post-tags-content st-hide-content'), + 'legacy-tab-content legacy-post-tags-content st-hide-content' + ), array( 'tt_adv_usage', __('Advanced usage:', 'simple-tags'), @@ -298,7 +248,7 @@ 'text_helper', 'helper', '', - '

    '.__('These settings are no longer being updated. Please use the "Related Posts" screen instead.', 'simple-tags').'



    ', + '

    ' . __('These settings are no longer being updated. Please use the "Related Posts" screen instead.', 'simple-tags') . '



    ', 'legacy-tab-content legacy-related-posts-content st-hide-content' ), array( @@ -309,8 +259,10 @@ __('By default, related posts work with post tags, but you can use a custom taxonomy. Default value : post_tag', 'simple-tags'), 'legacy-tab-content legacy-related-posts-content st-hide-content' ), - array('rp_feed', __('Automatically display related posts into feeds', 'simple-tags'), 'checkbox', '1', '', - 'legacy-tab-content legacy-related-posts-content st-hide-content'), + array( + 'rp_feed', __('Automatically display related posts into feeds', 'simple-tags'), 'checkbox', '1', '', + 'legacy-tab-content legacy-related-posts-content st-hide-content' + ), array( 'rp_embedded', __('Automatically display related posts into post content', 'simple-tags'), @@ -426,14 +378,14 @@ __('This setting determines the maximum number of links created by article for the same tag. Default: 1.', 'simple-tags'), 'legacy-tab-content legacy-auto-link-content st-hide-content' ), - array( - 'auto_link_all', - __('Add links for unattached terms', 'simple-tags'), - 'checkbox', - '1', - __('By default, TaxoPress will only add Auto Links for terms that are attached to the post. If this box is checked, TaxoPress will add links for all terms', 'simple-tags'), + array( + 'auto_link_all', + __('Add links for unattached terms', 'simple-tags'), + 'checkbox', + '1', + __('By default, TaxoPress will only add Auto Links for terms that are attached to the post. If this box is checked, TaxoPress will add links for all terms', 'simple-tags'), 'legacy-tab-content legacy-auto-link-content st-hide-content' - ), + ), array( 'auto_link_case', __('Ignore case for auto link feature ?', 'simple-tags'), @@ -487,14 +439,14 @@ '', 'legacy-tab-content legacy-auto-link-content st-hide-content' ), - array( - 'auto_link_title_excl', - __('Add links for post title', 'simple-tags'), - 'checkbox', - '1', - __('By default, TaxoPress will exclude Auto Links for terms that are attached to the post title.', 'simple-tags'), + array( + 'auto_link_title_excl', + __('Add links for post title', 'simple-tags'), + 'checkbox', + '1', + __('By default, TaxoPress will exclude Auto Links for terms that are attached to the post title.', 'simple-tags'), 'legacy-tab-content legacy-auto-link-content st-hide-content' - ), + ), ), diff --git a/inc/helper.options.default.php b/inc/helper.options.default.php index 30de0348..080b1d30 100644 --- a/inc/helper.options.default.php +++ b/inc/helper.options.default.php @@ -12,6 +12,7 @@ 'active_manage' => 1, 'active_related_posts' => 1, 'active_autotags' => 1, + 'allow_embed_tcloud' => 1, // Auto link 'auto_link_tags' => 0, diff --git a/includes-core/TaxopressCoreAdmin.php b/includes-core/TaxopressCoreAdmin.php index 48b8855c..ceadd362 100644 --- a/includes-core/TaxopressCoreAdmin.php +++ b/includes-core/TaxopressCoreAdmin.php @@ -1,57 +1,59 @@ 'You\'re using TaxoPress Free. The Pro version has more features and support. %sUpgrade to Pro%s', - 'link' => 'https://taxopress.com/taxopress/', - 'screens' => [ - ['base' => 'taxopress_page_st_taxonomies', 'id' => 'taxopress_page_st_taxonomies'], - ['base' => 'taxopress_page_st_mass_terms', 'id' => 'taxopress_page_st_mass_terms'], - ['base' => 'taxopress_page_st_manage', 'id' => 'taxopress_page_st_manage'], - ['base' => 'taxopress_page_st_auto', 'id' => 'taxopress_page_st_auto'], - ['base' => 'toplevel_page_st_options', 'id' => 'toplevel_page_st_options'], - ['base' => 'taxopress_page_st_terms_display','id' => 'taxopress_page_st_terms_display'], - ['base' => 'taxopress_page_st_post_tags', 'id' => 'taxopress_page_st_post_tags'], - ['base' => 'taxopress_page_st_related_posts','id' => 'taxopress_page_st_related_posts'], - ['base' => 'taxopress_page_st_autolinks', 'id' => 'taxopress_page_st_autolinks'], - ['base' => 'taxopress_page_st_autoterms', 'id' => 'taxopress_page_st_autoterms'], - ['base' => 'taxopress_page_st_suggestterms','id' => 'taxopress_page_st_suggestterms'], - ['base' => 'taxopress_page_st_terms', 'id' => 'taxopress_page_st_terms'] - ] - ]; - - return $settings; - } - ); + if (current_user_can('simple_tags')) { + if (is_admin()) { + $autoloadPath = TAXOPRESS_ABSPATH . '/vendor/autoload.php'; + if (file_exists($autoloadPath)) { + require_once $autoloadPath; + } + require_once TAXOPRESS_ABSPATH . '/vendor/publishpress/wordpress-version-notices/includes.php'; + add_filter( + \PPVersionNotices\Module\TopNotice\Module::SETTINGS_FILTER, + function ($settings) { + $settings['publishpress-taxopress'] = [ + 'message' => 'You\'re using TaxoPress Free. The Pro version has more features and support. %sUpgrade to Pro%s', + 'link' => 'https://taxopress.com/taxopress/', + 'screens' => [ + ['base' => 'taxopress_page_st_dashboard', 'id' => 'taxopress_page_st_dashboard'], + ['base' => 'taxopress_page_st_taxonomies', 'id' => 'taxopress_page_st_taxonomies'], + ['base' => 'taxopress_page_st_mass_terms', 'id' => 'taxopress_page_st_mass_terms'], + ['base' => 'taxopress_page_st_manage', 'id' => 'taxopress_page_st_manage'], + ['base' => 'taxopress_page_st_auto', 'id' => 'taxopress_page_st_auto'], + ['base' => 'toplevel_page_st_options', 'id' => 'toplevel_page_st_options'], + ['base' => 'taxopress_page_st_terms_display', 'id' => 'taxopress_page_st_terms_display'], + ['base' => 'taxopress_page_st_post_tags', 'id' => 'taxopress_page_st_post_tags'], + ['base' => 'taxopress_page_st_related_posts', 'id' => 'taxopress_page_st_related_posts'], + ['base' => 'taxopress_page_st_autolinks', 'id' => 'taxopress_page_st_autolinks'], + ['base' => 'taxopress_page_st_autoterms', 'id' => 'taxopress_page_st_autoterms'], + ['base' => 'taxopress_page_st_suggestterms', 'id' => 'taxopress_page_st_suggestterms'], + ['base' => 'taxopress_page_st_terms', 'id' => 'taxopress_page_st_terms'] + ] + ]; - } - add_filter( - \PPVersionNotices\Module\MenuLink\Module::SETTINGS_FILTER, - function ($settings) { - $settings['publishpress-taxopress'] = [ - 'parent' => 'st_options', - 'label' => 'Upgrade to Pro', - 'link' => 'https://taxopress.com/taxopress/', - ]; - - return $settings; - }); + return $settings; + } + ); + } + add_filter( + \PPVersionNotices\Module\MenuLink\Module::SETTINGS_FILTER, + function ($settings) { + $settings['publishpress-taxopress'] = [ + 'parent' => 'st_options', + 'label' => 'Upgrade to Pro', + 'link' => 'https://taxopress.com/taxopress/', + ]; + return $settings; + } + ); } @@ -63,87 +65,87 @@ function ($settings) { add_action('taxopress_autoterms_after_autoterm_advanced', [$this, 'taxopress_core_autoterm_advanced_field']); } - function taxopress_load_admin_core_assets(){ - wp_register_style( 'st-admin-core', STAGS_URL . '/includes-core/assets/css/core.css', array(), STAGS_VERSION, 'all' ); + function taxopress_load_admin_core_assets() + { + wp_register_style('st-admin-core', STAGS_URL . '/includes-core/assets/css/core.css', array(), STAGS_VERSION, 'all'); } - - function taxopress_load_admin_core_styles(){ - wp_enqueue_style( 'st-admin-core' ); + + function taxopress_load_admin_core_styles() + { + wp_enqueue_style('st-admin-core'); } - - function taxopress_admin_advertising_sidebar_banner(){ - ?> - + + function taxopress_admin_advertising_sidebar_banner() + { +?> +
    -
    - - + function taxopress_pro_autoterm_schedule_field($current) + { + ?> - +

    @@ -162,11 +164,12 @@ function taxopress_pro_autoterm_schedule_field($current){
    - + + function taxopress_pro_autoterm_terms_to_use_field($current) + { + ?> - +

    @@ -185,11 +188,12 @@ function taxopress_pro_autoterm_terms_to_use_field($current){
    - + function taxopress_core_autoterm_advanced_field($current) + { + ?> - +

    @@ -208,7 +212,6 @@ function taxopress_core_autoterm_advanced_field($current){
    - Date: Wed, 14 Jun 2023 09:30:40 +0100 Subject: [PATCH 03/13] - Show synonyms on the Terms screen #1658 --- inc/class.client.autoterms.php | 573 +++++++++++--------- inc/post-tags.php | 962 +++++++++++++++++---------------- inc/terms-table.php | 355 ++++++------ inc/terms.php | 164 +++--- 4 files changed, 1093 insertions(+), 961 deletions(-) diff --git a/inc/class.client.autoterms.php b/inc/class.client.autoterms.php index 833412a8..0eafb456 100644 --- a/inc/class.client.autoterms.php +++ b/inc/class.client.autoterms.php @@ -1,17 +1,19 @@ post_type)){ - return; - } + if (!isset($object->post_type)) { + return; + } // Loop option for find if autoterms is actived on any taxonomy and post type - $current_post_type = $object->post_type; - $current_post_status = $object->post_status; - $autoterms = taxopress_get_autoterm_data(); - $flag = false; - foreach($autoterms as $autoterm_key => $autoterm_data){ - $eligible_post_status = isset($autoterm_data['post_status']) && is_array($autoterm_data['post_status']) ? $autoterm_data['post_status'] : ['publish']; - $eligible_post_types = isset($autoterm_data['post_types']) && is_array($autoterm_data['post_types']) ? $autoterm_data['post_types'] : []; - $eligible_post_types = array_filter($eligible_post_types); - - if(count($eligible_post_types) === 0){ - break; - } - if(!in_array($current_post_type, $eligible_post_types)){ - continue; - } - if(!in_array($current_post_status, $eligible_post_status)){ - continue; - } - - self::auto_terms_post( $object, $autoterm_data['taxonomy'], $autoterm_data, false, 'save_posts', 'st_autoterms' ); + $current_post_type = $object->post_type; + $current_post_status = $object->post_status; + $autoterms = taxopress_get_autoterm_data(); + $flag = false; + foreach ($autoterms as $autoterm_key => $autoterm_data) { + $eligible_post_status = isset($autoterm_data['post_status']) && is_array($autoterm_data['post_status']) ? $autoterm_data['post_status'] : ['publish']; + $eligible_post_types = isset($autoterm_data['post_types']) && is_array($autoterm_data['post_types']) ? $autoterm_data['post_types'] : []; + $eligible_post_types = array_filter($eligible_post_types); + + if (count($eligible_post_types) === 0) { + break; + } + if (!in_array($current_post_type, $eligible_post_types)) { + continue; + } + if (!in_array($current_post_status, $eligible_post_status)) { + continue; + } + + self::auto_terms_post($object, $autoterm_data['taxonomy'], $autoterm_data, false, 'save_posts', 'st_autoterms'); $flag = true; - } + } - if ( $flag == true ) { // Clean cache ? - clean_post_cache( $post_id ); + if ($flag == true) { // Clean cache ? + clean_post_cache($post_id); } return true; @@ -83,26 +86,27 @@ public static function save_post( $post_id = null, $object = null ) { * @return boolean * @author WebFactory Ltd */ - public static function auto_terms_post( $object, $taxonomy = 'post_tag', $options = array(), $counter = false, $action = 'save_posts', $component = 'st_autoterms' ) { + public static function auto_terms_post($object, $taxonomy = 'post_tag', $options = array(), $counter = false, $action = 'save_posts', $component = 'st_autoterms') + { global $wpdb; $terms_to_add = array(); - $exclude_autotags = get_post_meta( $object->ID, '_exclude_autotags', true ); - if ( $exclude_autotags ) { + $exclude_autotags = get_post_meta($object->ID, '_exclude_autotags', true); + if ($exclude_autotags) { return false; } // Option exists ? - if ( $options == false || empty( $options ) ) { - //update log - self::update_taxopress_logs( $object, $taxonomy, $options, $counter, $action, $component, $terms_to_add, 'failed', 'invalid_option'); + if ($options == false || empty($options)) { + //update log + self::update_taxopress_logs($object, $taxonomy, $options, $counter, $action, $component, $terms_to_add, 'failed', 'invalid_option'); return false; } - if ( get_the_terms( $object->ID, $taxonomy ) != false && (int)$options['autoterm_target'] === 1 ) { - //update log - self::update_taxopress_logs( $object, $taxonomy, $options, $counter, $action, $component, $terms_to_add, 'failed', 'term_only_option'); + if (get_the_terms($object->ID, $taxonomy) != false && (int)$options['autoterm_target'] === 1) { + //update log + self::update_taxopress_logs($object, $taxonomy, $options, $counter, $action, $component, $terms_to_add, 'failed', 'term_only_option'); return false; // Skip post with terms, if term only empty post option is checked } @@ -110,105 +114,123 @@ public static function auto_terms_post( $object, $taxonomy = 'post_tag', $option - if( isset($options['autoterm_from']) && $options['autoterm_from'] === 'post_title' ){ - $content = $object->post_title; - }elseif( isset($options['autoterm_from']) && $options['autoterm_from'] === 'post_content' ){ - $content = $object->post_content; - }else{ - $content = $object->post_content . ' ' . $object->post_title; - } + if (isset($options['autoterm_from']) && $options['autoterm_from'] === 'post_title') { + $content = $object->post_title; + } elseif (isset($options['autoterm_from']) && $options['autoterm_from'] === 'post_content') { + $content = $object->post_content; + } else { + $content = $object->post_content . ' ' . $object->post_title; + } - if ( isset( $object->post_excerpt ) ) { + if (isset($object->post_excerpt)) { $content .= ' ' . $object->post_excerpt; } - $content = trim( strip_tags( $content ) ); - if ( empty( $content ) ) { - //update log - self::update_taxopress_logs( $object, $taxonomy, $options, $counter, $action, $component, $terms_to_add, 'failed', 'empty_post_content'); + $content = trim(strip_tags($content)); + if (empty($content)) { + //update log + self::update_taxopress_logs($object, $taxonomy, $options, $counter, $action, $component, $terms_to_add, 'failed', 'empty_post_content'); return false; } - $autoterm_use_dandelion = isset($options['autoterm_use_dandelion']) ? (int)$options['autoterm_use_dandelion'] : 0; - $autoterm_use_opencalais = isset($options['autoterm_use_opencalais']) ? (int)$options['autoterm_use_opencalais'] : 0; + $autoterm_use_dandelion = isset($options['autoterm_use_dandelion']) ? (int)$options['autoterm_use_dandelion'] : 0; + $autoterm_use_opencalais = isset($options['autoterm_use_opencalais']) ? (int)$options['autoterm_use_opencalais'] : 0; //Autoterm with Dandelion - if ( $autoterm_use_dandelion > 0 && $options['terms_datatxt_access_token'] !== '' ) { + if ($autoterm_use_dandelion > 0 && $options['terms_datatxt_access_token'] !== '') { $request_ws_args = array(); - $request_ws_args['text'] = $content; + $request_ws_args['text'] = $content; // Custom confidence ? $request_ws_args['min_confidence'] = 0.6; - if ( $options['terms_datatxt_min_confidence'] != "" ) { + if ($options['terms_datatxt_min_confidence'] != "") { $request_ws_args['min_confidence'] = $options['terms_datatxt_min_confidence']; } $request_ws_args['token'] = $options['terms_datatxt_access_token']; // Build params - $response = wp_remote_post( 'https://api.dandelion.eu/datatxt/nex/v1', array( + $response = wp_remote_post('https://api.dandelion.eu/datatxt/nex/v1', array( 'user-agent' => 'WordPress simple-tags', 'body' => $request_ws_args - ) ); + )); $data = false; - if ( ! is_wp_error( $response ) && $response != null ) { - if ( wp_remote_retrieve_response_code( $response ) == 200 ) { - $data = wp_remote_retrieve_body( $response ); + if (!is_wp_error($response) && $response != null) { + if (wp_remote_retrieve_response_code($response) == 200) { + $data = wp_remote_retrieve_body($response); } } - if($data){ - $data = json_decode( $data ); + if ($data) { + $data = json_decode($data); $data = is_object($data) ? $data->annotations : ''; - if ( !empty( $data ) ) { - foreach ( (array) $data as $term ) { + if (!empty($data)) { + foreach ((array) $data as $term) { $term = $term->title; - $term = stripslashes( $term ); + $term = stripslashes($term); - if ( ! is_string( $term ) ) { + if (!is_string($term)) { continue; } - $term = trim( $term ); - if ( empty( $term ) ) { + $term = trim($term); + if (empty($term)) { continue; } //check if term belong to the post already - if(has_term( $term, $taxonomy, $object )){ + if (has_term($term, $taxonomy, $object)) { continue; } //exclude if name found in exclude terms - if(in_array($term, $autoterm_exclude)){ + if (in_array($term, $autoterm_exclude)) { continue; } - // Whole word ? - if ( isset( $options['autoterm_word'] ) && (int) $options['autoterm_word'] == 1 ) { - if ( preg_match("/\b" . preg_quote($term) . "\b/i", $content ) ) - { - $terms_to_add[] = $term; + //add primary term + $add_terms = []; + $add_terms[$term] = $term; + + // add term synonyms + $add_terms_object = get_term_by('name', esc_attr($term), $taxonomy); + if (is_object($add_terms_object) && isset($add_terms_object->term_id)) { + $term_synonyms = (array) get_term_meta($add_terms_object->term_id, '_taxopress_term_synonyms', true); + $term_synonyms = array_filter($term_synonyms); + if (!empty($term_synonyms)) { + foreach ($term_synonyms as $term_synonym) { + $add_terms[$term_synonym] = $term; + } } + } + + foreach ($add_terms as $find_term => $original_term) { - //make exception for hashtag special character - if (substr($term, 0, strlen('#')) === '#') { - $trim_term = ltrim($term, '#'); - if ( preg_match( "/\B(\#+$trim_term\b)(?!;)/i", $content ) ) { + // Whole word ? + if (isset($options['autoterm_word']) && (int) $options['autoterm_word'] == 1) { + if (preg_match("/\b" . preg_quote($find_term) . "\b/i", $content)) { $terms_to_add[] = $term; } - } - if ( isset( $options['autoterm_hash'] ) && (int) $options['autoterm_hash'] == 1 && stristr( $content, '#' . $term ) ) { + //make exception for hashtag special character + if (substr($find_term, 0, strlen('#')) === '#') { + $trim_term = ltrim($find_term, '#'); + if (preg_match("/\B(\#+$trim_term\b)(?!;)/i", $content)) { + $terms_to_add[] = $term; + } + } + + if (isset($options['autoterm_hash']) && (int) $options['autoterm_hash'] == 1 && stristr($content, '#' . $find_term)) { + $terms_to_add[] = $term; + } + } elseif (stristr($content, $find_term)) { $terms_to_add[] = $term; } - } elseif ( stristr( $content, $term ) ) { - $terms_to_add[] = $term; } } } } - } + } //Autoterm with OpenCalais - if ( $autoterm_use_opencalais > 0 && $options['terms_opencalais_key'] !== '' ) { - $response = wp_remote_post( 'https://api-eit.refinitiv.com/permid/calais', array( + if ($autoterm_use_opencalais > 0 && $options['terms_opencalais_key'] !== '') { + $response = wp_remote_post('https://api-eit.refinitiv.com/permid/calais', array( 'timeout' => 30, 'headers' => array( 'X-AG-Access-Token' => $options['terms_opencalais_key'], @@ -216,213 +238,265 @@ public static function auto_terms_post( $object, $taxonomy = 'post_tag', $option 'outputFormat' => 'application/json' ), 'body' => $content - ) ); + )); $data = false; - if ( ! is_wp_error( $response ) && $response != null ) { - if ( wp_remote_retrieve_response_code( $response ) == 200 ) { - $data_raw = json_decode( wp_remote_retrieve_body( $response ), true ); + if (!is_wp_error($response) && $response != null) { + if (wp_remote_retrieve_response_code($response) == 200) { + $data_raw = json_decode(wp_remote_retrieve_body($response), true); $data = array(); - if ( isset( $data_raw ) && is_array( $data_raw ) ) { - foreach ( $data_raw as $_data_raw ) { - if ( isset( $_data_raw['_typeGroup'] ) && $_data_raw['_typeGroup'] == 'socialTag' ) { + if (isset($data_raw) && is_array($data_raw)) { + foreach ($data_raw as $_data_raw) { + if (isset($_data_raw['_typeGroup']) && $_data_raw['_typeGroup'] == 'socialTag') { $data[] = $_data_raw['name']; } } } } } - if($data){ - if (!empty( $data )){ + if ($data) { + if (!empty($data)) { // Remove empty terms - $data = array_filter( $data, '_delete_empty_element' ); - $data = array_unique( $data ); + $data = array_filter($data, '_delete_empty_element'); + $data = array_unique($data); - foreach ( (array) $data as $term ) { - $term = stripslashes( $term ); + foreach ((array) $data as $term) { + $term = stripslashes($term); - if ( ! is_string( $term ) ) { + if (!is_string($term)) { continue; } - $term = trim( $term ); - if ( empty( $term ) ) { + $term = trim($term); + if (empty($term)) { continue; } //check if term belong to the post already - if(has_term( $term, $taxonomy, $object )){ + if (has_term($term, $taxonomy, $object)) { continue; } //exclude if name found in exclude terms - if(in_array($term, $autoterm_exclude)){ + if (in_array($term, $autoterm_exclude)) { continue; } - // Whole word ? - if ( isset( $options['autoterm_word'] ) && (int) $options['autoterm_word'] == 1 ) { - if ( preg_match("/\b" . preg_quote($term) . "\b/i", $content ) ) - { - $terms_to_add[] = $term; + //add primary term + $add_terms = []; + $add_terms[$term] = $term; + + // add term synonyms + $add_terms_object = get_term_by('name', esc_attr($term), $taxonomy); + if (is_object($add_terms_object) && isset($add_terms_object->term_id)) { + $term_synonyms = (array) get_term_meta($add_terms_object->term_id, '_taxopress_term_synonyms', true); + $term_synonyms = array_filter($term_synonyms); + if (!empty($term_synonyms)) { + foreach ($term_synonyms as $term_synonym) { + $add_terms[$term_synonym] = $term; + } } + } - //make exception for hashtag special character - if (substr($term, 0, strlen('#')) === '#') { - $trim_term = ltrim($term, '#'); - if ( preg_match( "/\B(\#+$trim_term\b)(?!;)/i", $content ) ) { + foreach ($add_terms as $find_term => $original_term) { + + // Whole word ? + if (isset($options['autoterm_word']) && (int) $options['autoterm_word'] == 1) { + if (preg_match("/\b" . preg_quote($find_term) . "\b/i", $content)) { $terms_to_add[] = $term; } - } - if ( isset( $options['autoterm_hash'] ) && (int) $options['autoterm_hash'] == 1 && stristr( $content, '#' . $term ) ) { + //make exception for hashtag special character + if (substr($find_term, 0, strlen('#')) === '#') { + $trim_term = ltrim($find_term, '#'); + if (preg_match("/\B(\#+$trim_term\b)(?!;)/i", $content)) { + $terms_to_add[] = $term; + } + } + + if (isset($options['autoterm_hash']) && (int) $options['autoterm_hash'] == 1 && stristr($content, '#' . $find_term)) { + $terms_to_add[] = $term; + } + } elseif (stristr($content, $find_term)) { $terms_to_add[] = $term; } - } elseif ( stristr( $content, $term ) ) { - $terms_to_add[] = $term; } } } } - - } + } // Auto term with specific auto terms list - if ( isset( $options['specific_terms'] ) && isset( $options['autoterm_useonly'] ) && (int)$options['autoterm_useonly'] === 1 ) { - $terms = maybe_unserialize( $options['specific_terms'] ); - $terms = taxopress_change_to_array($terms); - foreach ( $terms as $term ) { - if ( ! is_string( $term ) ) { + if (isset($options['specific_terms']) && isset($options['autoterm_useonly']) && (int)$options['autoterm_useonly'] === 1) { + $terms = maybe_unserialize($options['specific_terms']); + $terms = taxopress_change_to_array($terms); + foreach ($terms as $term) { + if (!is_string($term)) { continue; } - $term = trim( $term ); - if ( empty( $term ) ) { + $term = trim($term); + if (empty($term)) { continue; } //check if term belong to the post already - if(has_term( $term, $taxonomy, $object )){ + if (has_term($term, $taxonomy, $object)) { continue; } - //exclude if name found in exclude terms - if(in_array($term, $autoterm_exclude)){ + //exclude if name found in exclude terms + if (in_array($term, $autoterm_exclude)) { continue; - } + } - // Whole word ? - if ( isset( $options['autoterm_word'] ) && (int)$options['autoterm_word'] === 1 ) { - if ( preg_match("/\b" . preg_quote($term) . "\b/i", $content ) ) - { - $terms_to_add[] = $term; + //add primary term + $add_terms = []; + $add_terms[$term] = $term; + + // add term synonyms + $add_terms_object = get_term_by('name', esc_attr($term), $taxonomy); + if (is_object($add_terms_object) && isset($add_terms_object->term_id)) { + $term_synonyms = (array) get_term_meta($add_terms_object->term_id, '_taxopress_term_synonyms', true); + $term_synonyms = array_filter($term_synonyms); + if (!empty($term_synonyms)) { + foreach ($term_synonyms as $term_synonym) { + $add_terms[$term_synonym] = $term; + } } + } + + foreach ($add_terms as $find_term => $original_term) { - //make exception for hashtag special character - if (substr($term, 0, strlen('#')) === '#') { - $trim_term = ltrim($term, '#'); - if ( preg_match( "/\B(\#+$trim_term\b)(?!;)/i", $content ) ) { - $terms_to_add[] = $term; - } - } + // Whole word ? + if (isset($options['autoterm_word']) && (int)$options['autoterm_word'] === 1) { + if (preg_match("/\b" . preg_quote($find_term) . "\b/i", $content)) { + $terms_to_add[] = $term; + } + + //make exception for hashtag special character + if (substr($find_term, 0, strlen('#')) === '#') { + $trim_term = ltrim($find_term, '#'); + if (preg_match("/\B(\#+$trim_term\b)(?!;)/i", $content)) { + $terms_to_add[] = $term; + } + } - if ( isset( $options['autoterm_hash'] ) && (int)$options['autoterm_hash'] === 1 && stristr( $content, '#' . $term ) ) { + if (isset($options['autoterm_hash']) && (int)$options['autoterm_hash'] === 1 && stristr($content, '#' . $find_term)) { + $terms_to_add[] = $term; + } + } elseif (stristr($content, $find_term)) { $terms_to_add[] = $term; } - } elseif ( stristr( $content, $term ) ) { - $terms_to_add[] = $term; } } - unset( $terms, $term ); + unset($terms, $term); } // Auto terms with all terms - if ( isset( $options['autoterm_useall'] ) && (int)$options['autoterm_useall'] === 1 ) { + if (isset($options['autoterm_useall']) && (int)$options['autoterm_useall'] === 1) { // Get all terms - $terms = $wpdb->get_col( $wpdb->prepare( "SELECT DISTINCT name + $terms = $wpdb->get_col($wpdb->prepare("SELECT DISTINCT name FROM {$wpdb->terms} AS t INNER JOIN {$wpdb->term_taxonomy} AS tt ON t.term_id = tt.term_id - WHERE tt.taxonomy = %s", $taxonomy ) ); + WHERE tt.taxonomy = %s", $taxonomy)); - $terms = array_unique( $terms ); + $terms = array_unique($terms); - foreach ( $terms as $term ) { - $term = stripslashes( $term ); + foreach ($terms as $term) { + $term = stripslashes($term); - if ( ! is_string( $term ) ) { + if (!is_string($term)) { continue; } - $term = trim( $term ); - if ( empty( $term ) ) { + $term = trim($term); + if (empty($term)) { continue; } //check if term belong to the post already - if(has_term( $term, $taxonomy, $object )){ + if (has_term($term, $taxonomy, $object)) { continue; } - //exclude if name found in exclude terms - if(in_array($term, $autoterm_exclude)){ + //exclude if name found in exclude terms + if (in_array($term, $autoterm_exclude)) { continue; - } + } - // Whole word ? - if ( isset( $options['autoterm_word'] ) && (int) $options['autoterm_word'] == 1 ) { - if ( preg_match("/\b" . preg_quote($term) . "\b/i", $content ) ) - { - $terms_to_add[] = $term; + //add primary term + $add_terms = []; + $add_terms[$term] = $term; + + // add term synonyms + $add_terms_object = get_term_by('name', esc_attr($term), $taxonomy); + if (is_object($add_terms_object) && isset($add_terms_object->term_id)) { + $term_synonyms = (array) get_term_meta($add_terms_object->term_id, '_taxopress_term_synonyms', true); + $term_synonyms = array_filter($term_synonyms); + if (!empty($term_synonyms)) { + foreach ($term_synonyms as $term_synonym) { + $add_terms[$term_synonym] = $term; + } } + } - //make exception for hashtag special character - if (substr($term, 0, strlen('#')) === '#') { - $trim_term = ltrim($term, '#'); - if ( preg_match( "/\B(\#+$trim_term\b)(?!;)/i", $content ) ) { - $terms_to_add[] = $term; - } - } + foreach ($add_terms as $find_term => $original_term) { + // Whole word ? + if (isset($options['autoterm_word']) && (int) $options['autoterm_word'] == 1) { + if (preg_match("/\b" . preg_quote($find_term) . "\b/i", $content)) { + $terms_to_add[] = $term; + } + + //make exception for hashtag special character + if (substr($find_term, 0, strlen('#')) === '#') { + $trim_term = ltrim($find_term, '#'); + if (preg_match("/\B(\#+$trim_term\b)(?!;)/i", $content)) { + $terms_to_add[] = $term; + } + } - if ( isset( $options['autoterm_hash'] ) && (int) $options['autoterm_hash'] == 1 && stristr( $content, '#' . $term ) ) { + if (isset($options['autoterm_hash']) && (int) $options['autoterm_hash'] == 1 && stristr($content, '#' . $find_term)) { + $terms_to_add[] = $term; + } + } elseif (stristr($content, $find_term)) { $terms_to_add[] = $term; } - } elseif ( stristr( $content, $term ) ) { - $terms_to_add[] = $term; } } } // Append terms if terms to add - if ( ! empty( $terms_to_add ) ) { + if (!empty($terms_to_add)) { // Remove empty and duplicate elements - $terms_to_add = array_filter( $terms_to_add, '_delete_empty_element' ); - $terms_to_add = array_unique( $terms_to_add ); + $terms_to_add = array_filter($terms_to_add, '_delete_empty_element'); + $terms_to_add = array_unique($terms_to_add); //auto terms limit $terms_limit = isset($options['terms_limit']) ? (int)$options['terms_limit'] : 0; - if($terms_limit > 0 && count($terms_to_add) > $terms_limit){ + if ($terms_limit > 0 && count($terms_to_add) > $terms_limit) { $terms_to_add = array_slice($terms_to_add, 0, $terms_limit); } - if ( $counter == true ) { + if ($counter == true) { // Increment counter - $counter = ( (int) get_option( 'tmp_auto_terms_st' ) ) + count( $terms_to_add ); - update_option( 'tmp_auto_terms_st', $counter ); + $counter = ((int) get_option('tmp_auto_terms_st')) + count($terms_to_add); + update_option('tmp_auto_terms_st', $counter); } // Add terms to posts - wp_set_object_terms( $object->ID, $terms_to_add, $taxonomy, true ); + wp_set_object_terms($object->ID, $terms_to_add, $taxonomy, true); // Clean cache - clean_post_cache( $object->ID ); + clean_post_cache($object->ID); - //update log - self::update_taxopress_logs( $object, $taxonomy, $options, $counter, $action, $component, $terms_to_add, 'success', 'terms_added'); + //update log + self::update_taxopress_logs($object, $taxonomy, $options, $counter, $action, $component, $terms_to_add, 'success', 'terms_added'); return true; - }else{ - //update log - self::update_taxopress_logs( $object, $taxonomy, $options, $counter, $action, $component, $terms_to_add, 'failed', 'empty_terms'); - } + } else { + //update log + self::update_taxopress_logs($object, $taxonomy, $options, $counter, $action, $component, $terms_to_add, 'failed', 'empty_terms'); + } return false; } @@ -430,13 +504,13 @@ public static function auto_terms_post( $object, $taxonomy = 'post_tag', $option /** * Update taxopress logs * - * Known possible values - * - * COMPONENT: (st_autoterms) - * ACTION: (existing_content, save_posts, daily_cron_schedule, hourly_cron_schedule) - * STATUS: (failed, success) - * STATUS MESSAGE: (invalid_option, term_only_option, empty_post_content, terms_added, empty_terms) - * + * Known possible values + * + * COMPONENT: (st_autoterms) + * ACTION: (existing_content, save_posts, daily_cron_schedule, hourly_cron_schedule) + * STATUS: (failed, success) + * STATUS MESSAGE: (invalid_option, term_only_option, empty_post_content, terms_added, empty_terms) + * * @param object $object * @param string $taxonomy * @param array $options @@ -450,53 +524,52 @@ public static function auto_terms_post( $object, $taxonomy = 'post_tag', $option * @return boolean * @author olatechpro */ - public static function update_taxopress_logs( $object, $taxonomy = 'post_tag', $options = array(), $counter = false, $action = 'save_posts', $component = 'st_autoterms', $terms_to_add = [], $status = 'failed', $status_message = 'not_provided' ) { - - if (get_option('taxopress_autoterms_logs_disabled') || !post_type_exists('taxopress_logs')) { - return; - } - - $insert_post_args = array( - 'post_author' => get_current_user_id(), - 'post_title' => $object->post_title, - 'post_content' => $object->post_content, - 'post_status' => 'publish', - 'post_type' => 'taxopress_logs', - ); - $post_id = wp_insert_post($insert_post_args); - update_post_meta($post_id, '_taxopress_log_post_id', $object->ID); - update_post_meta($post_id, '_taxopress_log_taxonomy', $taxonomy); - update_post_meta($post_id, '_taxopress_log_post_type', get_post_type($object->ID)); - update_post_meta($post_id, '_taxopress_log_action', $action); - update_post_meta($post_id, '_taxopress_log_component', $component); - update_post_meta($post_id, '_taxopress_log_terms', implode (", ", $terms_to_add)); - update_post_meta($post_id, '_taxopress_log_status', $status); - update_post_meta($post_id, '_taxopress_log_status_message', $status_message); - update_post_meta($post_id, '_taxopress_log_options', $options); - update_post_meta($post_id, '_taxopress_log_option_id', $options['ID']); - - //for performance reason, delete only 1 posts if more than limit instead of querying all posts - $auto_terms_logs_limit = (int)get_option('taxopress_auto_terms_logs_limit', 1000); + public static function update_taxopress_logs($object, $taxonomy = 'post_tag', $options = array(), $counter = false, $action = 'save_posts', $component = 'st_autoterms', $terms_to_add = [], $status = 'failed', $status_message = 'not_provided') + { + + if (get_option('taxopress_autoterms_logs_disabled') || !post_type_exists('taxopress_logs')) { + return; + } + + $insert_post_args = array( + 'post_author' => get_current_user_id(), + 'post_title' => $object->post_title, + 'post_content' => $object->post_content, + 'post_status' => 'publish', + 'post_type' => 'taxopress_logs', + ); + $post_id = wp_insert_post($insert_post_args); + update_post_meta($post_id, '_taxopress_log_post_id', $object->ID); + update_post_meta($post_id, '_taxopress_log_taxonomy', $taxonomy); + update_post_meta($post_id, '_taxopress_log_post_type', get_post_type($object->ID)); + update_post_meta($post_id, '_taxopress_log_action', $action); + update_post_meta($post_id, '_taxopress_log_component', $component); + update_post_meta($post_id, '_taxopress_log_terms', implode(", ", $terms_to_add)); + update_post_meta($post_id, '_taxopress_log_status', $status); + update_post_meta($post_id, '_taxopress_log_status_message', $status_message); + update_post_meta($post_id, '_taxopress_log_options', $options); + update_post_meta($post_id, '_taxopress_log_option_id', $options['ID']); + + //for performance reason, delete only 1 posts if more than limit instead of querying all posts + $auto_terms_logs_limit = (int)get_option('taxopress_auto_terms_logs_limit', 1000); $current_logs_counts = wp_count_posts('taxopress_logs'); - $current_logs_count = isset($current_logs_counts->publish) ? $current_logs_counts->publish : 0; - - if(isset($current_logs_counts->publish) && (int)$current_logs_count > $auto_terms_logs_limit){ - $posts = get_posts(array( - 'post_type' => 'taxopress_logs', - 'post_status' => 'publish', - 'posts_per_page' => 1, - 'orderby' => 'ID', - 'order' => 'ASC', - 'fields' => 'ids' - )); - if(count($posts) > 0){ - foreach($posts as $post){ - wp_delete_post($post, true); + $current_logs_count = isset($current_logs_counts->publish) ? $current_logs_counts->publish : 0; + + if (isset($current_logs_counts->publish) && (int)$current_logs_count > $auto_terms_logs_limit) { + $posts = get_posts(array( + 'post_type' => 'taxopress_logs', + 'post_status' => 'publish', + 'posts_per_page' => 1, + 'orderby' => 'ID', + 'order' => 'ASC', + 'fields' => 'ids' + )); + if (count($posts) > 0) { + foreach ($posts as $post) { + wp_delete_post($post, true); } } - } - - } - + } + } } diff --git a/inc/post-tags.php b/inc/post-tags.php index fdec68cf..80ba6ef8 100644 --- a/inc/post-tags.php +++ b/inc/post-tags.php @@ -26,7 +26,6 @@ public function __construct() // Javascript add_action('admin_enqueue_scripts', [__CLASS__, 'admin_enqueue_scripts'], 11); - } /** @@ -119,54 +118,54 @@ public function page_manage_posttags() if (!isset($_GET['add'])) { //all tax - ?> +?>
    -
    -

    - +
    +

    + -
    +
    - ' . esc_html__('Search results for “%s”', 'simple-tags') . '', esc_html($search)); - } - ?> - ' . esc_html__('Search results for “%s”', 'simple-tags') . '', esc_html($search)); + } + ?> + terms_table->prepare_items(); - ?> + //the terms table instance + $this->terms_table->prepare_items(); + ?> -
    -
    -
    - terms_table->search_box(esc_html__('Search Terms for Current Post', 'simple-tags'), 'term'); ?> -
    -
    +
    +
    +
    + terms_table->search_box(esc_html__('Search Terms for Current Post', 'simple-tags'), 'term'); ?> +
    +
    -
    +
    -
    -
    - terms_table->display(); //Display the table ?> -
    -
    -

    +
    +
    + terms_table->display(); //Display the table + ?> +
    +
    +

    +
    -
    -
    +
    -
    - + taxopress_manage_posttags(); @@ -175,8 +174,8 @@ class="page-title-action"> } ?> - -
    + +
    -
    +
    - 0 && apply_filters('taxopress_post_tags_create_limit', - true)) { - $post_tags_limit = true; - } + if (!isset($current['title']) && count($posttags) > 0 && apply_filters( + 'taxopress_post_tags_create_limit', + true + )) { + $post_tags_limit = true; + } - $ui = new taxopress_admin_ui(); - ?> + $ui = new taxopress_admin_ui(); + ?> -
    -

    -
    +
    +

    +
    -
    + -
    +
    -
-
+ + true] + ); - - get_tr_start(); - - // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped - echo $ui->get_th_start(); - // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped - echo $ui->get_label('name', esc_html__('Title', 'simple-tags')) . $ui->get_required_span(); - // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped - echo $ui->get_th_end() . $ui->get_td_start(); - - // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped - echo $ui->get_text_input([ - 'namearray' => 'taxopress_post_tags', - 'name' => 'title', - 'textvalue' => isset($current['title']) ? esc_attr($current['title']) : '', - 'maxlength' => '32', - 'helptext' => '', - 'required' => true, - 'placeholder' => false, - 'wrap' => false, - ]); - - $options = []; - $main_option = []; - $other_option = []; - foreach (get_all_taxopress_taxonomies() as $_taxonomy) { - $_taxonomy = $_taxonomy->name; - $tax = get_taxonomy($_taxonomy); - if (empty($tax->labels->name)) { - continue; + // If they don't return an array, fall back to the original default. Don't need to check for empty, because empty array is default for $args param in get_post_types anyway. + if (!is_array($args)) { + $args = ['public' => true]; } - if ($tax->name === 'post_tag') { - $main_option[] = [ - 'attr' => $tax->name, - 'text' => $tax->labels->name. ' ('.$tax->name.')', - 'default' => 'true' - ]; - } else { - $other_option[] = [ - 'attr' => $tax->name, - 'text' => $tax->labels->name. ' ('.$tax->name.')' - ]; + $output = 'objects'; // Or objects. + + /** + * Filters the results returned to display for available post types for taxonomy. + * + * @param array $value Array of post type objects. + * @param array $args Array of arguments for the post type query. + * @param string $output The output type we want for the results. + */ + $post_types = apply_filters( + 'taxopress_get_post_types_for_taxonomies', + get_post_types($args, $output), + $args, + $output + ); + + $term_auto_locations = [ + 'homeonly' => esc_attr__('Homepage', 'simple-tags'), + 'blogonly' => esc_attr__('Blog display', 'simple-tags'), + ]; + foreach ($post_types as $post_type) { + $term_auto_locations[$post_type->name] = $post_type->label; } - } - $options = array_merge($main_option, $other_option); - - $select = [ - 'options' => $options, - ]; - $selected = isset($current) ? taxopress_disp_boolean($current['taxonomy']) : ''; - $select['selected'] = !empty($selected) ? $current['taxonomy'] : ''; - // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped - echo $ui->get_select_checkbox_input_main([ - 'namearray' => 'taxopress_post_tags', - 'name' => 'taxonomy', - 'labeltext' => esc_html__('Taxonomy', 'simple-tags'), - 'required' => true, - 'selections' => $select, // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped - ]); - - - // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped - echo $ui->get_td_end() . $ui->get_tr_end(); - ?> - - + echo '
' . esc_html__( + 'TaxoPress will attempt to automatically display terms in this content. It may not be successful for all post types and layouts.', + 'simple-tags' + ) . ' + '; + foreach ($term_auto_locations as $key => $value) { + + + echo ''; + + if ($key === 'blogonly') { + echo ''; + } + } + echo '
'; + + // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped + echo $ui->get_check_input([ + 'checkvalue' => $key, + 'checked' => (!empty($current['embedded']) && is_array($current['embedded']) && in_array( + $key, + $current['embedded'], + true + )) ? 'true' : 'false', + 'name' => esc_attr($key), + 'namearray' => 'embedded', + 'textvalue' => esc_attr($key), + 'labeltext' => "", + 'wrap' => false, + ]); + + echo '


'; - - get_number_input([ + 'namearray' => 'taxopress_post_tags', + 'name' => 'number', + 'textvalue' => isset($current['number']) ? esc_attr($current['number']) : '0', + 'labeltext' => esc_html__( + 'Maximum terms to display', + 'simple-tags' + ), + 'helptext' => esc_html__( + 'You must set zero (0) to display all post tags.', + 'simple-tags' + ), + 'min' => '0', + 'required' => true, + ]); - /** - * Filters the arguments for post types to list for taxonomy association. - * - * - * @param array $value Array of default arguments. - */ - $args = apply_filters('taxopress_attach_post_types_to_taxonomy', - ['public' => true]); - - // If they don't return an array, fall back to the original default. Don't need to check for empty, because empty array is default for $args param in get_post_types anyway. - if (!is_array($args)) { - $args = ['public' => true]; - } - $output = 'objects'; // Or objects. - - /** - * Filters the results returned to display for available post types for taxonomy. - * - * @param array $value Array of post type objects. - * @param array $args Array of arguments for the post type query. - * @param string $output The output type we want for the results. - */ - $post_types = apply_filters('taxopress_get_post_types_for_taxonomies', - get_post_types($args, $output), $args, $output); - - $term_auto_locations = [ - 'homeonly' => esc_attr__('Homepage', 'simple-tags'), - 'blogonly' => esc_attr__('Blog display', 'simple-tags'), - ]; - foreach ($post_types as $post_type) { - $term_auto_locations[$post_type->name] = $post_type->label; - } - - echo ''; + $select = [ + 'options' => [ + [ + 'attr' => '0', + 'text' => esc_attr__('False', 'simple-tags'), + 'default' => 'true', + ], + [ + 'attr' => '1', + 'text' => esc_attr__('True', 'simple-tags'), + ], + ], + ]; + $selected = (isset($current) && isset($current['hide_output'])) ? taxopress_disp_boolean($current['hide_output']) : ''; + $select['selected'] = !empty($selected) ? $current['hide_output'] : ''; + // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped + echo $ui->get_select_checkbox_input([ + 'namearray' => 'taxopress_post_tags', + 'name' => 'hide_output', + 'labeltext' => esc_html__( + 'Hide display output if no terms ?', + 'simple-tags' + ), + 'selections' => $select, // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped + ]); + ?> + - // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped - echo $ui->get_number_input([ - 'namearray' => 'taxopress_post_tags', - 'name' => 'number', - 'textvalue' => isset($current['number']) ? esc_attr($current['number']) : '0', - 'labeltext' => esc_html__('Maximum terms to display', - 'simple-tags'), - 'helptext' => esc_html__('You must set zero (0) to display all post tags.', - 'simple-tags'), - 'min' => '0', - 'required' => true, - ]); - ?> - + + "> - get_text_input([ + 'namearray' => 'taxopress_post_tags', + 'name' => 'wrap_class', + 'class' => '', + 'textvalue' => isset($current['wrap_class']) ? esc_attr($current['wrap_class']) : '', + 'labeltext' => esc_html__('Terms for Current Post div class', 'simple-tags'), + 'helptext' => '', + 'required' => false, + ]); - // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped - echo $ui->get_text_input([ - 'namearray' => 'taxopress_post_tags', - 'name' => 'separator', - 'textvalue' => isset($current['separator']) ? esc_attr($current['separator']) : ', ', - 'labeltext' => esc_html__('Post term separator string: ', - 'simple-tags'), - 'helptext' => '', - 'required' => false, - ]); - - // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped - echo $ui->get_text_input([ - 'namearray' => 'taxopress_post_tags', - 'name' => 'before', - 'textvalue' => isset($current['before']) ? esc_attr($current['before']) : 'Tags: ', - 'labeltext' => esc_html__('Text to display before terms list', - 'simple-tags'), - 'helptext' => '', - 'required' => false, - ]); - - // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped - echo $ui->get_text_input([ - 'namearray' => 'taxopress_post_tags', - 'name' => 'after', - 'textvalue' => isset($current['after']) ? esc_attr($current['after']) : '
', - 'labeltext' => esc_html__('Text to display after terms list', - 'simple-tags'), - 'helptext' => '', - 'required' => false, - ]); - - // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped - echo $ui->get_text_input([ - 'namearray' => 'taxopress_post_tags', - 'name' => 'notagtext', - 'textvalue' => isset($current['notagtext']) ? esc_attr($current['notagtext']) : 'No tags for this post.', - 'labeltext' => esc_html__('Text to display if no terms found', - 'simple-tags'), - 'helptext' => '', - 'required' => false, - ]); - - $select = [ - 'options' => [ - [ - 'attr' => '0', - 'text' => esc_attr__('False', 'simple-tags'), - 'default' => 'true', - ], - [ - 'attr' => '1', - 'text' => esc_attr__('True', 'simple-tags'), - ], - ], - ]; - $selected = (isset($current) && isset($current['hide_output'])) ? taxopress_disp_boolean($current['hide_output']) : ''; - $select['selected'] = !empty($selected) ? $current['hide_output'] : ''; - // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped - echo $ui->get_select_checkbox_input([ - 'namearray' => 'taxopress_post_tags', - 'name' => 'hide_output', - 'labeltext' => esc_html__('Hide display output if no terms ?', - 'simple-tags'), - 'selections' => $select, // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped - ]); - ?> + // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped + echo $ui->get_text_input([ + 'namearray' => 'taxopress_post_tags', + 'name' => 'link_class', + 'class' => '', + 'textvalue' => isset($current['link_class']) ? esc_attr($current['link_class']) : '', + 'labeltext' => esc_html__('Term link class', 'simple-tags'), + 'helptext' => '', + 'required' => false, + ]); - - - - - get_text_input([ - 'namearray' => 'taxopress_post_tags', - 'name' => 'wrap_class', - 'class' => '', - 'textvalue' => isset($current['wrap_class']) ? esc_attr($current['wrap_class']) : '', - 'labeltext' => esc_html__('Terms for Current Post div class', 'simple-tags'), - 'helptext' => '', - 'required' => false, - ]); - - // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped - echo $ui->get_text_input([ - 'namearray' => 'taxopress_post_tags', - 'name' => 'link_class', - 'class' => '', - 'textvalue' => isset($current['link_class']) ? esc_attr($current['link_class']) : '', - 'labeltext' => esc_html__('Term link class', 'simple-tags'), - 'helptext' => '', - 'required' => false, - ]); - - // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped - echo $ui->get_textarea_input([ + // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped + echo $ui->get_textarea_input([ 'namearray' => 'taxopress_post_tags', 'name' => 'xformat', 'class' => 'st-full-width', 'rows' => '4', 'cols' => '40', 'textvalue' => isset($current['xformat']) ? esc_attr($current['xformat']) : esc_attr('%tag_name%'), - 'labeltext' => esc_html__('Term link format', 'simple-tags'), - 'helptext' => sprintf(esc_html__('You can find markers and explanations %1sin the documentation%2s.', 'simple-tags'), '', ''), + 'labeltext' => esc_html__('Term link format', 'simple-tags'), + 'helptext' => sprintf(esc_html__('You can find markers and explanations %1sin the documentation%2s.', 'simple-tags'), '', ''), 'required' => false, ]); - // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped - echo $ui->get_td_end() . $ui->get_tr_end(); + // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped + echo $ui->get_td_end() . $ui->get_tr_end(); - ?> - + ?> + -
+
- + -
+
-
-
- + + + - + -
-
+
+
+
+
-
-
-
- - + + + - - - -
-
+
+
+
- -

- - - - - - + if (!$post_tags_limit) { ?> +

+ + + + + + + + +

+ + +

+ ' . esc_html__( + 'Shortcode: ', + 'simple-tags' + ); ?>   + +

- - -

- ' . esc_html__('Shortcode: ', - 'simple-tags'); ?>   - -

-

- + -
+ -
-
-
-
-
-

- -

-
+
+
+
+
+
+

+ +

+
-
-

:

-
    -
  • %tag_link%
  • -
  • %tag_name%
  • -
  • %tag_rel% (it creates rel="tag")
  • -
  • %tag_feed%
  • -
  • %tag_id%
  • -
  • %tag_name_attribute%
  • -
-

-
-
-
-
-
+
+

:

+
    +
  • %tag_link%
  • +
  • %tag_name%
  • +
  • %tag_rel% (it creates rel="tag")
  • +
  • %tag_feed%
  • +
  • %tag_id%
  • +
  • %tag_name_attribute%
  • +
+

+
+
+
+
+
- - + + -
+
- + - + -
+
- -
-
-
-
- -
+ +
+
+
+
+ +
-
-
-
- - -
+
+
+
+ + +
- esc_html__('Terms', 'simple-tags'), //plural name of the listed records 'ajax' => true //does this table support ajax? ]); - } - public function get_all_terms($count = false){ + public function get_all_terms($count = false) + { $taxonomies = array_keys(get_all_taxopress_taxonomies_request()); - + $search = (!empty($_REQUEST['s'])) ? sanitize_text_field($_REQUEST['s']) : ''; $orderby = (!empty($_REQUEST['orderby'])) ? sanitize_text_field($_REQUEST['orderby']) : 'ID'; @@ -32,11 +32,11 @@ public function get_all_terms($count = false){ $selected_post_type = (!empty($_REQUEST['terms_filter_post_type'])) ? [sanitize_text_field($_REQUEST['terms_filter_post_type'])] : ''; $selected_taxonomy = (!empty($_REQUEST['terms_filter_taxonomy'])) ? sanitize_text_field($_REQUEST['terms_filter_taxonomy']) : ''; - if(!empty($selected_taxonomy)){ + if (!empty($selected_taxonomy)) { $taxonomies = [$selected_taxonomy]; } - $terms_attr = array ( + $terms_attr = array( 'taxonomy' => $taxonomies, 'post_types' => $selected_post_type, 'orderby' => $orderby, @@ -47,7 +47,7 @@ public function get_all_terms($count = false){ 'pad_counts' => true, 'update_term_meta_cache' => true, ); - if($count){ + if ($count) { $terms_attr['number'] = 0; } else { $terms_attr['offset'] = $offset; @@ -56,7 +56,7 @@ public function get_all_terms($count = false){ $terms = get_terms($terms_attr); - if(empty($terms) || is_wp_error($terms)){ + if (empty($terms) || is_wp_error($terms)) { return []; } @@ -108,14 +108,19 @@ public function single_row($item) function get_columns() { $columns = [ - 'cb' => '', + 'cb' => '', 'name' => esc_html__('Title', 'simple-tags'), 'slug' => esc_html__('Slug', 'simple-tags'), 'taxonomy' => esc_html__('Taxonomy', 'simple-tags'), 'posttypes' => esc_html__('Post Types', 'simple-tags'), + 'synonyms' => esc_html__('Synonyms', 'simple-tags'), 'count' => esc_html__('Count', 'simple-tags') ]; + if (!taxopress_is_pro_version()) { + unset($columns['synonyms']); + } + return $columns; } @@ -136,16 +141,17 @@ protected function get_sortable_columns() return $sortable_columns; } - /** - * Render the bulk edit checkbox - * - * @param array $item - * - * @return string - */ - function column_cb( $item ) { + /** + * Render the bulk edit checkbox + * + * @param array $item + * + * @return string + */ + function column_cb($item) + { return sprintf('', 'taxopress_terms', $item->term_id); - } + } /** * Get the bulk actions to show in the top page dropdown @@ -161,14 +167,15 @@ protected function get_bulk_actions() return $actions; } - /** + /** * Add custom filter to tablenav - * - * @param string $which - */ - protected function extra_tablenav( $which ) { + * + * @param string $which + */ + protected function extra_tablenav($which) + { - if ( 'top' === $which ) { + if ('top' === $which) { $post_types = get_post_types(['public' => true], 'objects'); @@ -177,31 +184,31 @@ protected function extra_tablenav( $which ) { $selected_post_type = (!empty($_REQUEST['terms_filter_post_type'])) ? sanitize_text_field($_REQUEST['terms_filter_post_type']) : ''; $selected_taxonomy = (!empty($_REQUEST['terms_filter_taxonomy'])) ? sanitize_text_field($_REQUEST['terms_filter_taxonomy']) : ''; - $selected_option = 'public'; - if ( isset($_GET['taxonomy_type']) && $_GET['taxonomy_type'] === 'all') { - $selected_option = 'all'; - }elseif ( isset($_GET['taxonomy_type']) && $_GET['taxonomy_type'] === 'private') { - $selected_option = 'private'; - } - ?> + $selected_option = 'public'; + if (isset($_GET['taxonomy_type']) && $_GET['taxonomy_type'] === 'all') { + $selected_option = 'all'; + } elseif (isset($_GET['taxonomy_type']) && $_GET['taxonomy_type'] === 'private') { + $selected_option = 'private'; + } +?>
- name) .'" '.selected($selected_post_type, $post_type->name, false).'>'. esc_html($post_type->label) .''; + foreach ($post_types as $post_type) { + echo ''; } ?> - name) .'" '.selected($selected_taxonomy, $taxonomy->name, false).'>'. esc_html($taxonomy->labels->name) .''; + foreach ($taxonomies as $taxonomy) { + echo ''; } ?> @@ -211,13 +218,13 @@ protected function extra_tablenav( $which ) { - + - +
current_action() === 'taxopress-terms-delete-terms'){ + if ($this->current_action() === 'taxopress-terms-delete-terms') { $taxopress_terms = array_map('sanitize_text_field', (array)$_REQUEST['taxopress_terms']); if (!empty($taxopress_terms)) { - foreach($taxopress_terms as $taxopress_term){ - $term = get_term( $taxopress_term ); - wp_delete_term( $term->term_id, $term->taxonomy ); + foreach ($taxopress_terms as $taxopress_term) { + $term = get_term($taxopress_term); + wp_delete_term($term->term_id, $term->taxonomy); } - if(count($taxopress_terms) > 1){ + if (count($taxopress_terms) > 1) { // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped echo taxopress_admin_notices_helper(esc_html__('Terms deleted successfully.', 'simple-tags'), false); - }else{ + } else { // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped echo taxopress_admin_notices_helper(esc_html__('Term deleted successfully.', 'simple-tags'), false); } } } - } /** @@ -306,11 +312,10 @@ public function search_box($text, $input_id) ?> - term_id ) ) { - $actions['edit'] = sprintf( + if (current_user_can('edit_term', $item->term_id)) { + $actions['edit'] = sprintf( '%s', add_query_arg( [ @@ -382,14 +387,14 @@ protected function handle_row_actions($item, $column_name, $primary) ), esc_html__('Edit', 'simple-tags') ); - $actions['inline hide-if-no-js'] = sprintf( - '', - /* translators: %s: Taxonomy term name. */ - esc_attr( sprintf( esc_html__( 'Quick edit “%s” inline', 'simple-tags'), $item->name ) ), - esc_html__('Quick Edit', 'simple-tags') - ); - - $actions['remove_posts'] = sprintf( + $actions['inline hide-if-no-js'] = sprintf( + '', + /* translators: %s: Taxonomy term name. */ + esc_attr(sprintf(esc_html__('Quick edit “%s” inline', 'simple-tags'), $item->name)), + esc_html__('Quick Edit', 'simple-tags') + ); + + $actions['remove_posts'] = sprintf( '%s', add_query_arg( [ @@ -402,21 +407,23 @@ protected function handle_row_actions($item, $column_name, $primary) ), esc_html__('Remove From All Posts', 'simple-tags') ); - } + } - if ( current_user_can( 'delete_term', $item->term_id ) ) { - $actions['delete'] = sprintf( + if (current_user_can('delete_term', $item->term_id)) { + $actions['delete'] = sprintf( '%s', - add_query_arg([ - 'page' => 'st_terms', - 'action' => 'taxopress-delete-terms', - 'taxopress_terms' => esc_attr($item->term_id), - '_wpnonce' => wp_create_nonce('terms-action-request-nonce') - ], - admin_url('admin.php')), + add_query_arg( + [ + 'page' => 'st_terms', + 'action' => 'taxopress-delete-terms', + 'taxopress_terms' => esc_attr($item->term_id), + '_wpnonce' => wp_create_nonce('terms-action-request-nonce') + ], + admin_url('admin.php') + ), esc_html__('Delete', 'simple-tags') ); - } + } if (is_taxonomy_viewable($item->taxonomy)) { $actions['view'] = sprintf( @@ -429,6 +436,24 @@ protected function handle_row_actions($item, $column_name, $primary) return $column_name === $primary ? $this->row_actions($actions, false) : ''; } + /** + * Method for synonyms column + * + * @param array $item + * + * @return string + */ + protected function column_synonyms($item) + { + $term_synonyms = (array) get_term_meta($item->term_id, '_taxopress_term_synonyms', true); + $term_synonyms = array_filter($term_synonyms); + if (!empty($term_synonyms)) { + return join(', ', $term_synonyms); + } else { + return '-'; + } + } + /** * Method for name column * @@ -439,14 +464,14 @@ protected function handle_row_actions($item, $column_name, $primary) protected function column_name($item) { $taxonomy = get_taxonomy($item->taxonomy); - + $title = sprintf( '%2$s', add_query_arg( [ - 'taxonomy' => $item->taxonomy, - 'tag_ID' => $item->term_id, - 'post_type' => isset($taxonomy->object_type[0]) ? $taxonomy->object_type[0] : 'post', + 'taxonomy' => $item->taxonomy, + 'tag_ID' => $item->term_id, + 'post_type' => isset($taxonomy->object_type[0]) ? $taxonomy->object_type[0] : 'post', ], admin_url('term.php') ), @@ -454,14 +479,15 @@ protected function column_name($item) ); //for inline edit - $qe_data = get_term( $item->term_id, $item->taxonomy, OBJECT, 'edit'); + $qe_data = get_term($item->term_id, $item->taxonomy, OBJECT, 'edit'); - $title .= ''; return $title; } @@ -488,12 +514,12 @@ protected function column_slug($item) protected function column_posttypes($item) { $posttype = ''; - $sn = 0; + $sn = 0; $taxonomy = get_taxonomy($item->taxonomy); foreach ($taxonomy->object_type as $objecttype) { $sn++; $post_type_object = get_post_type_object($objecttype); - if(is_object($post_type_object)){ + if (is_object($post_type_object)) { $posttype .= $post_type_object->label; if ($sn < count($taxonomy->object_type)) { $posttype .= ', '; @@ -515,21 +541,22 @@ protected function column_count($item) { $taxonomy = get_taxonomy($item->taxonomy); - - if($taxonomy->query_var){ - return sprintf('%s', - add_query_arg( - [ - $taxonomy->query_var => esc_attr($item->slug), - 'post_type' => isset($taxonomy->object_type[0]) ? $taxonomy->object_type[0] : 'post', - ], - admin_url('edit.php') - ), - number_format_i18n($item->count)); - }else{ + + if ($taxonomy->query_var) { + return sprintf( + '%s', + add_query_arg( + [ + $taxonomy->query_var => esc_attr($item->slug), + 'post_type' => isset($taxonomy->object_type[0]) ? $taxonomy->object_type[0] : 'post', + ], + admin_url('edit.php') + ), + number_format_i18n($item->count) + ); + } else { return number_format_i18n($item->count); } - } /** @@ -543,87 +570,89 @@ protected function column_taxonomy($item) { $taxonomy = get_taxonomy($item->taxonomy); - if($taxonomy){ + if ($taxonomy) { $return = sprintf( '%2$s', add_query_arg( [ - 'page' => 'st_taxonomies', - 'add' => 'taxonomy', - 'action' => 'edit', + 'page' => 'st_taxonomies', + 'add' => 'taxonomy', + 'action' => 'edit', 'taxopress_taxonomy' => $taxonomy->name, ], taxopress_admin_url('admin.php') ), esc_html($taxonomy->labels->name) ); - }else{ + } else { $return = '—'; } return $return; } - /** - * Outputs the hidden row displayed when inline editing - * - * @since 3.1.0 - */ - public function inline_edit() { - ?> - -
- - - - - -
-
- + +
+ + + + + + + + +
+
+term_relationships.' AS r ON r.term_taxonomy_id = tt.term_taxonomy_id INNER JOIN '.$wpdb->posts.' AS p ON p.ID = r.object_id'; - $clauses['where'] .= ' AND p.post_type IN ('.implode(',', $post_types).')'; - $clauses['orderby'] = 'GROUP BY t.term_id '.$clauses['orderby']; + if (!empty($post_types)) { + $clauses['fields'] = 'DISTINCT ' . str_replace('tt.*', 'tt.term_taxonomy_id, tt.term_id, tt.taxonomy, tt.description, tt.parent', $clauses['fields']) . ', COUNT(t.term_id) AS count'; + $clauses['join'] .= ' INNER JOIN ' . $wpdb->term_relationships . ' AS r ON r.term_taxonomy_id = tt.term_taxonomy_id INNER JOIN ' . $wpdb->posts . ' AS p ON p.ID = r.object_id'; + $clauses['where'] .= ' AND p.post_type IN (' . implode(',', $post_types) . ')'; + $clauses['orderby'] = 'GROUP BY t.term_id ' . $clauses['orderby']; } } return $clauses; @@ -70,7 +70,7 @@ public static function admin_enqueue_scripts() // add JS for manage click tags if (isset($_GET['page']) && $_GET['page'] == 'st_terms') { wp_enqueue_style('st-taxonomies-css'); - wp_enqueue_script( 'admin-tags' ); + wp_enqueue_script('admin-tags'); wp_enqueue_script('inline-edit-tax'); } } @@ -80,51 +80,51 @@ public function taxopress_terms_inline_save_term_callback() { global $wpdb; - check_ajax_referer( 'taxinlineeditnonce', '_inline_edit' ); - - $edit_taxonomy = sanitize_key( $_POST['edit_taxonomy'] ); - $taxonomy = sanitize_key( $_POST['original_tax'] ); - $tax = get_taxonomy( $taxonomy ); - $edit_tax = get_taxonomy( $edit_taxonomy ); - - if ( ! $tax || !$edit_tax ) { - wp_die( 0 ); + check_ajax_referer('taxinlineeditnonce', '_inline_edit'); + + $edit_taxonomy = sanitize_key($_POST['edit_taxonomy']); + $taxonomy = sanitize_key($_POST['original_tax']); + $tax = get_taxonomy($taxonomy); + $edit_tax = get_taxonomy($edit_taxonomy); + + if (!$tax || !$edit_tax) { + wp_die(0); } - - if ( ! isset( $_POST['tax_ID'] ) || ! (int) $_POST['tax_ID'] ) { - wp_die( -1 ); + + if (!isset($_POST['tax_ID']) || !(int) $_POST['tax_ID']) { + wp_die(-1); } - + $id = (int) $_POST['tax_ID']; - - if ( ! current_user_can( 'edit_term', $id ) ) { - wp_die( -1 ); + + if (!current_user_can('edit_term', $id)) { + wp_die(-1); } - - $tag = get_term( $id, $taxonomy ); + + $tag = get_term($id, $taxonomy); $_POST['description'] = $tag->description; - - $updated = wp_update_term( $id, $taxonomy, $_POST ); - - if ( $updated && ! is_wp_error( $updated ) ) { - $tag = get_term( $updated['term_id'], $taxonomy ); - if ( ! $tag || is_wp_error( $tag ) ) { - if ( is_wp_error( $tag ) && $tag->get_error_message() ) { - wp_die( esc_html($tag->get_error_message()) ); + + $updated = wp_update_term($id, $taxonomy, $_POST); + + if ($updated && !is_wp_error($updated)) { + $tag = get_term($updated['term_id'], $taxonomy); + if (!$tag || is_wp_error($tag)) { + if (is_wp_error($tag) && $tag->get_error_message()) { + wp_die(esc_html($tag->get_error_message())); } - wp_die( esc_html__( 'Item not updated.' ) ); + wp_die(esc_html__('Item not updated.')); } else { - if($tax !== $edit_tax){ + if ($tax !== $edit_tax) { $update_term = $wpdb->update( $wpdb->prefix . 'term_taxonomy', - [ 'taxonomy' => $edit_taxonomy ], - [ 'term_taxonomy_id' => $tag->term_id ], - [ '%s' ], - [ '%d' ] + ['taxonomy' => $edit_taxonomy], + ['term_taxonomy_id' => $tag->term_id], + ['%s'], + ['%d'] ); - if($update_term){ + if ($update_term) { clean_term_cache($tag->term_id); - $tag = get_term( $tag->term_id ); + $tag = get_term($tag->term_id); } } } @@ -132,7 +132,7 @@ public function taxopress_terms_inline_save_term_callback() /*if ( is_wp_error( $updated ) && $updated->get_error_message() ) { wp_die( esc_html($updated->get_error_message()) ); }*/ - wp_die( esc_html__( 'Error updating term.' ) ); + wp_die(esc_html__('Error updating term.')); } $wp_list_table = new Taxopress_Terms_List(); @@ -141,7 +141,7 @@ public function taxopress_terms_inline_save_term_callback() wp_die(); } - + public static function set_screen($status, $option, $value) { @@ -216,8 +216,8 @@ public function page_manage_terms() settings_errors(__CLASS__); - ?> -
+?> +

@@ -229,8 +229,10 @@ public function page_manage_terms() ' . esc_html__('Search results for “%s”', - 'simple-tags') . '', esc_html($search)); + printf(' ' . esc_html__( + 'Search results for “%s”', + 'simple-tags' + ) . '', esc_html($search)); } ?>
- terms_table->display(); //Display the table ?> + terms_table->display(); //Display the table + ?>

@@ -263,35 +266,32 @@ public function page_manage_terms()
-terms_table->inline_edit(); ?> - - - + terms_table->inline_edit(); ?> + + +
- Date: Wed, 14 Jun 2023 09:36:37 +0100 Subject: [PATCH 04/13] - Synonyms option for Auto Links #1656 --- inc/autolinks-functions.php | 28 +- inc/autolinks.php | 1510 +++++++++++++++++--------------- inc/class.client.autolinks.php | 937 ++++++++++---------- 3 files changed, 1313 insertions(+), 1162 deletions(-) diff --git a/inc/autolinks-functions.php b/inc/autolinks-functions.php index d0cba0af..0337e9fa 100644 --- a/inc/autolinks-functions.php +++ b/inc/autolinks-functions.php @@ -1,4 +1,5 @@ +?>
-
-

- - -
- - - ' . esc_html__('Search results for “%s”', - 'simple-tags') . '', esc_html($search)); - } - ?> - terms_table->prepare_items(); - ?> - - -
-
-
- terms_table->search_box(esc_html__('Search Auto Links', 'simple-tags'), 'term'); ?> -
-
+
+

+ + +
+ + + ' . esc_html__( + 'Search results for “%s”', + 'simple-tags' + ) . '', esc_html($search)); + } + ?> + terms_table->prepare_items(); + ?> + + +
+
+
+ terms_table->search_box(esc_html__('Search Auto Links', 'simple-tags'), 'term'); ?> +
+
+ +
+ +
+
+ terms_table->display(); //Display the table + ?> +
+
+

+
+
-
-
-
- terms_table->display(); //Display the table ?> -
-
-

-
- - -
- taxopress_manage_autolinks(); @@ -176,8 +177,8 @@ class="page-title-action"> } ?> - -
+ +
-
- - "> - $autolinks = taxopress_get_autolink_data(); - $autolink_edit = false; - $autolink_limit = false; + 0 && apply_filters('taxopress_autolinks_create_limit', - true)) { - $autolink_limit = true; - } + if (!isset($current['title']) && count($autolinks) > 0 && apply_filters( + 'taxopress_autolinks_create_limit', + true + )) { + $autolink_limit = true; + } - $ui = new taxopress_admin_ui(); - ?> + $ui = new taxopress_admin_ui(); + ?> -
-

-
+
+

+
-
+ -
+
- +
-
-
-
+
+
+
- -

- - - - + if (!$autolink_limit) { ?> +

+ + + + + - -

- + +

-
+ - -
-
-
- -
-
-
+
-
+
- + -
+
-
+
- -
-
-
-
- -
+ +
+
+
+
+ +
-
-
-
- - -
+
+
+
+ + +
0 ) { - add_filter( 'the_content', array( __CLASS__, 'the_content' ), $auto_link_priority ); - add_filter( 'the_title', array( __CLASS__, 'the_title' ) ); - } + // Auto link tags + add_filter('the_posts', array(__CLASS__, 'the_posts'), 10); - //new UI - add_filter('the_content', array( __CLASS__, 'taxopress_autolinks_the_content'), 12); - add_filter('the_title', array( __CLASS__, 'taxopress_autolinks_the_title'), 12); - } + //legacy + if ('no' !== SimpleTags_Plugin::get_option_value('auto_link_views') && (int)SimpleTags_Plugin::get_option_value('auto_link_tags') > 0) { + add_filter('the_content', array(__CLASS__, 'the_content'), $auto_link_priority); + add_filter('the_title', array(__CLASS__, 'the_title')); + } + //new UI + add_filter('the_content', array(__CLASS__, 'taxopress_autolinks_the_content'), 12); + add_filter('the_title', array(__CLASS__, 'taxopress_autolinks_the_title'), 12); + } } /** @@ -45,13 +46,14 @@ public function __construct() { * * @return array */ - public static function the_posts( $posts ) { - if ( ! empty( $posts ) && is_array( $posts ) ) { - foreach ( (array) $posts as $post ) { + public static function the_posts($posts) + { + if (!empty($posts) && is_array($posts)) { + foreach ((array) $posts as $post) { self::$posts[] = (int) $post->ID; } - self::$posts = array_unique( self::$posts ); + self::$posts = array_unique(self::$posts); } return $posts; @@ -62,44 +64,44 @@ public static function the_posts( $posts ) { * * @return array */ - public static function get_tags_from_current_posts($options = false) { + public static function get_tags_from_current_posts($options = false) + { - if ( is_array( self::$posts ) && count( self::$posts ) > 0 ) { + if (is_array(self::$posts) && count(self::$posts) > 0) { // Generate SQL from post id - $postlist = implode( "', '", self::$posts ); + $postlist = implode("', '", self::$posts); // Generate key cache - $key = md5( maybe_serialize( $postlist ) ); + $key = md5(maybe_serialize($postlist)); $results = array(); - if($options){ - $term_taxonomy = $options['taxonomy']; - }else{ - $term_taxonomy = 'post_tag'; - } + if ($options) { + $term_taxonomy = $options['taxonomy']; + } else { + $term_taxonomy = 'post_tag'; + } // Get cache if exist - $cache = wp_cache_get( 'generate_keywords', 'simple-tags' ); - if ( $options || false === $cache ) - { - foreach ( self::$posts as $object_id ) { + $cache = wp_cache_get('generate_keywords', 'simple-tags'); + if ($options || false === $cache) { + foreach (self::$posts as $object_id) { // Get terms - $terms = get_object_term_cache( $object_id, $term_taxonomy ); - if ( false === $terms || is_wp_error( $terms ) ) { - $terms = wp_get_object_terms( $object_id, $term_taxonomy ); + $terms = get_object_term_cache($object_id, $term_taxonomy); + if (false === $terms || is_wp_error($terms)) { + $terms = wp_get_object_terms($object_id, $term_taxonomy); } - if ( false !== $terms && ! is_wp_error( $terms ) ) { - $results = array_merge( $results, $terms ); + if (false !== $terms && !is_wp_error($terms)) { + $results = array_merge($results, $terms); } } - $cache[ $key ] = $results; - wp_cache_set( 'generate_keywords', $cache, 'simple-tags' ); + $cache[$key] = $results; + wp_cache_set('generate_keywords', $cache, 'simple-tags'); } else { - if ( isset( $cache[ $key ] ) ) { - return $cache[ $key ]; + if (isset($cache[$key])) { + return $cache[$key]; } } @@ -114,40 +116,41 @@ public static function get_tags_from_current_posts($options = false) { * * @return array */ - public static function get_all_post_tags($options = false) { - if ( is_array( self::$posts ) && count( self::$posts ) > 0 ) { + public static function get_all_post_tags($options = false) + { + if (is_array(self::$posts) && count(self::$posts) > 0) { // Generate SQL from post id - $postlist = implode( "', '", self::$posts ); + $postlist = implode("', '", self::$posts); // Generate key cache - $key = md5( maybe_serialize( $postlist ) ); - - if($options){ - $term_taxonomy = $options['taxonomy']; - }else{ - $term_taxonomy = 'post_tag'; - } - $results = get_tags(['taxonomy' => $term_taxonomy, 'hide_empty' => false]); + $key = md5(maybe_serialize($postlist)); + + if ($options) { + $term_taxonomy = $options['taxonomy']; + } else { + $term_taxonomy = 'post_tag'; + } + $results = get_tags(['taxonomy' => $term_taxonomy, 'hide_empty' => false]); // Get cache if exist - $cache = wp_cache_get( 'generate_keywords', 'simple-tags' ); - if ( $options || false === $cache ) { - foreach ( self::$posts as $object_id ) { + $cache = wp_cache_get('generate_keywords', 'simple-tags'); + if ($options || false === $cache) { + foreach (self::$posts as $object_id) { // Get terms - $terms = get_object_term_cache( $object_id, $term_taxonomy ); - if ( false === $terms || is_wp_error( $terms ) ) { - $terms = wp_get_object_terms( $object_id, $term_taxonomy ); + $terms = get_object_term_cache($object_id, $term_taxonomy); + if (false === $terms || is_wp_error($terms)) { + $terms = wp_get_object_terms($object_id, $term_taxonomy); } - if ( false !== $terms && ! is_wp_error( $terms ) ) { - $results = array_merge( $results, $terms ); + if (false !== $terms && !is_wp_error($terms)) { + $results = array_merge($results, $terms); } } - $cache[ $key ] = $results; - wp_cache_set( 'generate_keywords', $cache, 'simple-tags' ); + $cache[$key] = $results; + wp_cache_set('generate_keywords', $cache, 'simple-tags'); } else { - if ( isset( $cache[ $key ] ) ) { - return $cache[ $key ]; + if (isset($cache[$key])) { + return $cache[$key]; } } @@ -161,50 +164,69 @@ public static function get_all_post_tags($options = false) { * Get links for each tag for auto link feature * */ - public static function prepare_auto_link_tags($options = false) { - global $post; - if($options){ - $auto_link_min = (int) $options['autolink_usage_min']; - $unattached_terms = (int) $options['unattached_terms']; - $autolink_min_char = (int) $options['autolink_min_char']; - $autolink_max_char = (int) $options['autolink_max_char']; - $ignore_attached = (int) $options['ignore_attached']; - $term_taxonomy = $options['taxonomy']; - }else{ - $auto_link_min = (int) SimpleTags_Plugin::get_option_value( 'auto_link_min' ); - $unattached_terms = (int) SimpleTags_Plugin::get_option_value( 'auto_link_all' ); - $autolink_min_char = 0; - $autolink_max_char = 0; - $ignore_attached = 0; - $term_taxonomy = 'post_tag'; - } - - if( 1 === $unattached_terms ){ + public static function prepare_auto_link_tags($options = false) + { + global $post; + if ($options) { + $auto_link_min = (int) $options['autolink_usage_min']; + $unattached_terms = (int) $options['unattached_terms']; + $autolink_min_char = (int) $options['autolink_min_char']; + $autolink_max_char = (int) $options['autolink_max_char']; + $ignore_attached = (int) $options['ignore_attached']; + $term_taxonomy = $options['taxonomy']; + } else { + $auto_link_min = (int) SimpleTags_Plugin::get_option_value('auto_link_min'); + $unattached_terms = (int) SimpleTags_Plugin::get_option_value('auto_link_all'); + $autolink_min_char = 0; + $autolink_max_char = 0; + $ignore_attached = 0; + $term_taxonomy = 'post_tag'; + } + + if (1 === $unattached_terms) { $terms = self::get_all_post_tags($options); - }else{ + } else { $terms = self::get_tags_from_current_posts($options); } - foreach ( (array) $terms as $term ) { - if($ignore_attached > 0){ - if(has_term( $term->term_id, $term_taxonomy, $post )){ - continue; - } - } - - //min character check - $min_char_pass = true; - if($autolink_min_char > 0){ - $min_char_pass = strlen($term->name) >= $autolink_min_char ? true : false; - } - //max character check - $max_char_pass = true; - if($autolink_max_char > 0){ - $max_char_pass = strlen($term->name) <= $autolink_max_char ? true : false; - } - - if ( $auto_link_min === 0 || $term->count >= $auto_link_min && $min_char_pass && $max_char_pass ) { - self::$link_tags[ $term->name ] = esc_url( get_term_link( $term, $term->taxonomy ) ); + foreach ((array) $terms as $term) { + if ($ignore_attached > 0) { + if (has_term($term->term_id, $term_taxonomy, $post)) { + continue; + } + } + + //add primary term + $primary_term_link = get_term_link($term, $term->taxonomy); + $add_terms = []; + $add_terms[$term->name] = $primary_term_link; + + // add term synonyms + if (is_array($options) && isset($options['synonyms_link']) && (int)$options['synonyms_link'] > 0) { + $term_synonyms = (array) get_term_meta($term->term_id, '_taxopress_term_synonyms', true); + $term_synonyms = array_filter($term_synonyms); + if (!empty($term_synonyms)) { + foreach ($term_synonyms as $term_synonym) { + $add_terms[$term_synonym] = $primary_term_link; + } + } + } + + foreach ($add_terms as $add_name => $add_term_link) { + //min character check + $min_char_pass = true; + if ($autolink_min_char > 0) { + $min_char_pass = strlen($add_name) >= $autolink_min_char ? true : false; + } + //max character check + $max_char_pass = true; + if ($autolink_max_char > 0) { + $max_char_pass = strlen($add_name) <= $autolink_max_char ? true : false; + } + + if ($auto_link_min === 0 || $term->count >= $auto_link_min && $min_char_pass && $max_char_pass) { + self::$link_tags[$add_name] = esc_url($add_term_link); + } } } @@ -218,22 +240,23 @@ public static function prepare_auto_link_tags($options = false) { * * @return string */ - public static function the_content( $content = '' ) { + public static function the_content($content = '') + { global $post; // Show only on singular view ? Check context - if ( 'singular' === SimpleTags_Plugin::get_option_value( 'auto_link_views' ) && ! is_singular() ) { + if ('singular' === SimpleTags_Plugin::get_option_value('auto_link_views') && !is_singular()) { return $content; } // Show only on single view ? Check context - if ( 'single' === SimpleTags_Plugin::get_option_value( 'auto_link_views' ) && ! is_single() ) { + if ('single' === SimpleTags_Plugin::get_option_value('auto_link_views') && !is_single()) { return $content; } // user preference for this post ? - $meta_value = get_post_meta( $post->ID, '_exclude_autolinks', true ); - if ( ! empty( $meta_value ) || is_admin() ) { + $meta_value = get_post_meta($post->ID, '_exclude_autolinks', true); + if (!empty($meta_value) || is_admin()) { return $content; } @@ -241,42 +264,42 @@ public static function the_content( $content = '' ) { self::prepare_auto_link_tags(); // Shuffle array - SimpleTags_Client::random_array( self::$link_tags ); + SimpleTags_Client::random_array(self::$link_tags); // HTML Rel (tag/no-follow) $rel = SimpleTags_Client::get_rel_attribut(); // only continue if the database actually returned any links - if ( ! isset( self::$link_tags ) || ! is_array( self::$link_tags ) || empty( self::$link_tags ) ) { + if (!isset(self::$link_tags) || !is_array(self::$link_tags) || empty(self::$link_tags)) { return $content; } // Case option ? - $case = ( 1 === (int) SimpleTags_Plugin::get_option_value( 'auto_link_case' ) ) ? 'i' : ''; - $strpos_fnc = ( 'i' === $case ) ? 'stripos' : 'strpos'; + $case = (1 === (int) SimpleTags_Plugin::get_option_value('auto_link_case')) ? 'i' : ''; + $strpos_fnc = ('i' === $case) ? 'stripos' : 'strpos'; // Prepare exclude terms array - $excludes_terms = explode( ',', SimpleTags_Plugin::get_option_value( 'auto_link_exclude' ) ); - if ( empty( $excludes_terms ) ) { + $excludes_terms = explode(',', SimpleTags_Plugin::get_option_value('auto_link_exclude')); + if (empty($excludes_terms)) { $excludes_terms = array(); } else { - $excludes_terms = array_filter( $excludes_terms, '_delete_empty_element' ); - $excludes_terms = array_unique( $excludes_terms ); + $excludes_terms = array_filter($excludes_terms, '_delete_empty_element'); + $excludes_terms = array_unique($excludes_terms); } $z = 0; $auto_link_replace = []; - foreach ( (array) self::$link_tags as $term_name => $term_link ) { + foreach ((array) self::$link_tags as $term_name => $term_link) { // Force string for tags "number" $term_name = (string) $term_name; // Exclude terms ? next... - if ( in_array( $term_name, (array) $excludes_terms, true ) ) { + if (in_array($term_name, (array) $excludes_terms, true)) { continue; } // Make a first test with PHP function, economize CPU with regexp - if ( false === $strpos_fnc( $content, $term_name ) ) { + if (false === $strpos_fnc($content, $term_name)) { continue; } @@ -291,21 +314,21 @@ public static function the_content( $content = '' ) { 'term_limit' => SimpleTags_Plugin::get_option_value('auto_link_max_by_tag'), 'type' => 'content', ]; - - if (!class_exists( 'DOMDocument' ) || !class_exists( 'DOMXPath' ) ) { - self::replace_by_links_regexp( $content, $term_name, $term_link, $case, $rel ); + + if (!class_exists('DOMDocument') || !class_exists('DOMXPath')) { + self::replace_by_links_regexp($content, $term_name, $term_link, $case, $rel); } - $z ++; + $z++; - if ( $z > (int) SimpleTags_Plugin::get_option_value( 'auto_link_max_by_post' ) ) { + if ($z > (int) SimpleTags_Plugin::get_option_value('auto_link_max_by_post')) { break; } } - if (class_exists( 'DOMDocument' ) && class_exists( 'DOMXPath' ) ) { - self::replace_by_links_dom( $content, $auto_link_replace); + if (class_exists('DOMDocument') && class_exists('DOMXPath')) { + self::replace_by_links_dom($content, $auto_link_replace); } - + return $content; @@ -323,7 +346,8 @@ public static function the_content( $content = '' ) { * * @return void */ - private static function replace_by_links_dom( &$content, $search = '', $replace = '', $case = '', $rel = '', $options = false, $content_type = 'content' ) { + private static function replace_by_links_dom(&$content, $search = '', $replace = '', $case = '', $rel = '', $options = false, $content_type = 'content') + { global $post, $autolinked_contents; if (!is_object($post) || !isset($post->ID) || empty($content)) { @@ -331,7 +355,7 @@ private static function replace_by_links_dom( &$content, $search = '', $replace } $dom = new DOMDocument(); - + if (!is_array($search)) { $search_lists = []; @@ -343,8 +367,8 @@ private static function replace_by_links_dom( &$content, $search = '', $replace 'options' => $options, 'option_id' => 0, 'option_idxx' => 0, - 'post_limit' => SimpleTags_Plugin::get_option_value( 'auto_link_max_by_post' ), - 'term_limit' => SimpleTags_Plugin::get_option_value( 'auto_link_max_by_tag' ), + 'post_limit' => SimpleTags_Plugin::get_option_value('auto_link_max_by_post'), + 'term_limit' => SimpleTags_Plugin::get_option_value('auto_link_max_by_tag'), 'type' => $content_type, ]; } else { @@ -368,34 +392,34 @@ private static function replace_by_links_dom( &$content, $search = '', $replace return $content; } - //replace html entity with their entity code - foreach(taxopress_html_character_and_entity() as $enity => $code){ - $content = str_replace($enity, $code,$content); - } + //replace html entity with their entity code + foreach (taxopress_html_character_and_entity() as $enity => $code) { + $content = str_replace($enity, $code, $content); + } //$content = str_replace('&#','|--|',$content);//https://github.com/TaxoPress/TaxoPress/issues/824 - //$content = str_replace('&','&',$content); //https://github.com/TaxoPress/TaxoPress/issues/770*/ - $content = '||starttaxopressrandom||' . $content . '||endtaxopressrandom||';//we're having issue when content start with styles https://wordpress.org/support/topic/3-7-2-auto-link-case-not-working/#post-16665257 + //$content = str_replace('&','&',$content); //https://github.com/TaxoPress/TaxoPress/issues/770*/ + $content = '||starttaxopressrandom||' . $content . '||endtaxopressrandom||'; //we're having issue when content start with styles https://wordpress.org/support/topic/3-7-2-auto-link-case-not-working/#post-16665257 //$content = utf8_decode($content); - libxml_use_internal_errors(true); + libxml_use_internal_errors(true); // loadXml needs properly formatted documents, so it's better to use loadHtml, but it needs a hack to properly handle UTF-8 encoding - $result = $dom->loadHtml( mb_convert_encoding( $content, 'HTML-ENTITIES', "UTF-8" ) ); + $result = $dom->loadHtml(mb_convert_encoding($content, 'HTML-ENTITIES', "UTF-8")); - if ( false === $result ) { + if (false === $result) { return; } - - $xpath = new DOMXPath( $dom ); + + $xpath = new DOMXPath($dom); $j = 0; - $replaced_count = 0; + $replaced_count = 0; $replaced_tags_counts = []; - $option_limits = []; - $term_limits = []; - $option_remaining = []; - $option_tagged_counts = []; + $option_limits = []; + $term_limits = []; + $option_remaining = []; + $option_tagged_counts = []; $node_text = []; - foreach ($search_lists as $search_details) { + foreach ($search_lists as $search_details) { $search = $search_details['term_name']; $replace = $search_details['term_link']; @@ -403,39 +427,39 @@ private static function replace_by_links_dom( &$content, $search = '', $replace $rel = $search_details['rel']; $options = $search_details['options']; - $search = str_replace('&','||taxopressamp||',$search);// https://github.com/TaxoPress/TaxoPress/issues/1638 + $search = str_replace('&', '||taxopressamp||', $search); // https://github.com/TaxoPress/TaxoPress/issues/1638 - if(is_array($options)) { + if (is_array($options)) { $autolink_case = $options['autolink_case']; $html_exclusion = $options['html_exclusion']; $exclude_class = $options['autolink_exclude_class']; $title_attribute = $options['autolink_title_attribute']; $link_class = isset($options['link_class']) ? taxopress_format_class($options['link_class']) : ''; - }else{ + } else { $autolink_case = 'lowercase'; $html_exclusion = []; $exclude_class = ''; - $title_attribute = SimpleTags_Plugin::get_option_value( 'auto_link_title' ); + $title_attribute = SimpleTags_Plugin::get_option_value('auto_link_title'); $link_class = ''; } - $detail_id = $search_details['type'] . '_' . $search_details['option_id']; + $detail_id = $search_details['type'] . '_' . $search_details['option_id']; + + if (!isset($option_limits[$detail_id])) { + $option_limits[$detail_id] = $search_details['post_limit']; + } + + if (!isset($option_remaining[$detail_id])) { + $option_remaining[$detail_id] = $option_limits[$detail_id]; + } - if (!isset($option_limits[$detail_id])) { - $option_limits[$detail_id] = $search_details['post_limit']; - } + if (!isset($term_limits[$detail_id])) { + $term_limits[$detail_id] = min($search_details['term_limit'], $option_remaining[$detail_id]); + } - if (!isset($option_remaining[$detail_id])) { - $option_remaining[$detail_id] = $option_limits[$detail_id]; - } - - if (!isset($term_limits[$detail_id])) { - $term_limits[$detail_id] = min($search_details['term_limit'], $option_remaining[$detail_id]); - } - - if (!isset($option_tagged_counts[$detail_id])) { - $option_tagged_counts[$detail_id] = 0; - } + if (!isset($option_tagged_counts[$detail_id])) { + $option_tagged_counts[$detail_id] = 0; + } $html_exclusion[] = 'meta'; $html_exclusion[] = 'link'; @@ -443,23 +467,23 @@ private static function replace_by_links_dom( &$content, $search = '', $replace //auto link exclusion $exclusion = '[not(ancestor::a)]'; - if(count($html_exclusion) > 0){ - foreach($html_exclusion as $exclude_ancestor){ - $exclusion .= '[not(ancestor::'.strtolower($exclude_ancestor).')]'; + if (count($html_exclusion) > 0) { + foreach ($html_exclusion as $exclude_ancestor) { + $exclusion .= '[not(ancestor::' . strtolower($exclude_ancestor) . ')]'; } } // Prepare exclude terms array - $excludes_class = explode( ',', $exclude_class ); - if ( !empty( $excludes_class ) ) { - $excludes_class = array_filter( $excludes_class ); - $excludes_class = array_unique( $excludes_class ); - if(count($excludes_class) > 0){ - foreach($excludes_class as $idclass ){ - if(substr( trim($idclass), 0, 1 ) === "#"){ + $excludes_class = explode(',', $exclude_class); + if (!empty($excludes_class)) { + $excludes_class = array_filter($excludes_class); + $excludes_class = array_unique($excludes_class); + if (count($excludes_class) > 0) { + foreach ($excludes_class as $idclass) { + if (substr(trim($idclass), 0, 1) === "#") { $div_id = ltrim(trim($idclass), "#"); $exclusion .= "[not(ancestor::div/@id='$div_id')]"; - }else{ + } else { $div_class = ltrim(trim($idclass), "."); $exclusion .= "[not(ancestor::div/@class='$div_class')]"; } @@ -467,13 +491,13 @@ private static function replace_by_links_dom( &$content, $search = '', $replace } } - foreach ($xpath->query('//text()'.$exclusion.'') as $node) { - $substitute = '$search"; - $link_openeing = '"; - $link_closing = ''; - $upperterm = strtoupper($search); - $lowerterm = strtolower($search); - + foreach ($xpath->query('//text()' . $exclusion . '') as $node) { + $substitute = '$search"; + $link_openeing = '"; + $link_closing = ''; + $upperterm = strtoupper($search); + $lowerterm = strtolower($search); + if ($option_limits[$detail_id] > 0 && 0 >= $option_remaining[$detail_id]) { @@ -490,59 +514,58 @@ private static function replace_by_links_dom( &$content, $search = '', $replace $same_usage_max = min($term_limits[$detail_id], $option_remaining[$detail_id]); } - //if ('i' === $case) { - if ($autolink_case === 'none') {//retain case - $replaced = preg_replace('/(?wholeText, $same_usage_max, $rep_count); - } elseif ($autolink_case === 'uppercase') {//uppercase - $replaced = preg_replace('/(?wholeText, $same_usage_max, $rep_count); - } elseif ($autolink_case === 'termcase') {//termcase - $replaced = preg_replace('/(?wholeText, $same_usage_max, $rep_count); - } else {//lowercase - $replaced = preg_replace('/(?wholeText, $same_usage_max, $rep_count); - } - /*} else { + //if ('i' === $case) { + if ($autolink_case === 'none') { //retain case + $replaced = preg_replace('/(?wholeText, $same_usage_max, $rep_count); + } elseif ($autolink_case === 'uppercase') { //uppercase + $replaced = preg_replace('/(?wholeText, $same_usage_max, $rep_count); + } elseif ($autolink_case === 'termcase') { //termcase + $replaced = preg_replace('/(?wholeText, $same_usage_max, $rep_count); + } else { //lowercase + $replaced = preg_replace('/(?wholeText, $same_usage_max, $rep_count); + } + /*} else { $replaced = str_replace($search, $substitute, $node->wholeText); }*/ - if ($replaced && !empty(trim($replaced))) { - $j ++; - if ($rep_count > 0) { + if ($replaced && !empty(trim($replaced))) { + $j++; + if ($rep_count > 0) { if (array_key_exists($search, $replaced_tags_counts)) { $replaced_tags_counts[$search] = $replaced_tags_counts[$search] + $rep_count; } else { $replaced_tags_counts[$search] = $rep_count; } - $option_tagged_counts[$detail_id] = $option_tagged_counts[$detail_id]+$rep_count; - $option_remaining[$detail_id] = $option_limits[$detail_id]-$option_tagged_counts[$detail_id]; - } - } - $newNode = $dom->createDocumentFragment(); - $newNode->appendXML($replaced); - $node->parentNode->replaceChild($newNode, $node); - if ($option_remaining[$detail_id] === 0) { - break; - } - } - } + $option_tagged_counts[$detail_id] = $option_tagged_counts[$detail_id] + $rep_count; + $option_remaining[$detail_id] = $option_limits[$detail_id] - $option_tagged_counts[$detail_id]; + } + } + $newNode = $dom->createDocumentFragment(); + $newNode->appendXML($replaced); + $node->parentNode->replaceChild($newNode, $node); + if ($option_remaining[$detail_id] === 0) { + break; + } + } + } // get only the body tag with its contents, then trim the body tag itself to get only the original content - $content = mb_substr( $dom->saveHTML( $xpath->query( '//body' )->item( 0 ) ), 6, - 7, "UTF-8" ); - $content = str_replace('|--|','&#',$content);//https://github.com/TaxoPress/TaxoPress/issues/824 - $content = str_replace('<','<',$content); - $content = str_replace('>','>',$content); - foreach(taxopress_html_character_and_entity(true) as $enity => $code){ - $content = str_replace($enity, $code,$content); - } - $content = str_replace('& ;rsquo;','’',$content); - $content = str_replace(['’', ' ’', '’', ' ’', '’', ' ’'],'\'', $content); - - $content = str_replace('&','&',$content); //https://github.com/TaxoPress/TaxoPress/issues/770 - $content = str_replace(';amp;',';',$content); //https://github.com/TaxoPress/TaxoPress/issues/810 - $content = str_replace('%7C--%7C038;','&',$content); //https://github.com/TaxoPress/TaxoPress/issues/1377 + $content = mb_substr($dom->saveHTML($xpath->query('//body')->item(0)), 6, -7, "UTF-8"); + $content = str_replace('|--|', '&#', $content); //https://github.com/TaxoPress/TaxoPress/issues/824 + $content = str_replace('<', '<', $content); + $content = str_replace('>', '>', $content); + foreach (taxopress_html_character_and_entity(true) as $enity => $code) { + $content = str_replace($enity, $code, $content); + } + $content = str_replace('& ;rsquo;', '’', $content); + $content = str_replace(['’', ' ’', '’', ' ’', '’', ' ’'], '\'', $content); + + $content = str_replace('&', '&', $content); //https://github.com/TaxoPress/TaxoPress/issues/770 + $content = str_replace(';amp;', ';', $content); //https://github.com/TaxoPress/TaxoPress/issues/810 + $content = str_replace('%7C--%7C038;', '&', $content); //https://github.com/TaxoPress/TaxoPress/issues/1377 $content = str_replace('||starttaxopressrandom||', '', $content); $content = str_replace('||endtaxopressrandom||', '', $content); - } /** @@ -554,25 +577,26 @@ private static function replace_by_links_dom( &$content, $search = '', $replace * @param string $case * @param string $rel */ - private static function replace_by_links_regexp( &$content, $search = '', $replace = '', $case = '', $rel = '', $options = false ) { - - if($options){ - $autolink_case = $options['autolink_case']; - $html_exclusion = $options['html_exclusion']; - $exclude_class = $options['autolink_exclude_class']; - $title_attribute = $options['autolink_title_attribute']; - $same_usage_max = $options['autolink_same_usage_max']; - $max_by_post = $options['autolink_usage_max']; - $link_class = isset($options['link_class']) ? taxopress_format_class($options['link_class']) : ''; - }else{ - $autolink_case = 'lowercase'; - $html_exclusion = []; - $exclude_class = ''; - $title_attribute = SimpleTags_Plugin::get_option_value( 'auto_link_title' ); - $same_usage_max = SimpleTags_Plugin::get_option_value( 'auto_link_max_by_tag' ); - $max_by_post = SimpleTags_Plugin::get_option_value( 'auto_link_max_by_post' ); - $link_class = ''; - } + private static function replace_by_links_regexp(&$content, $search = '', $replace = '', $case = '', $rel = '', $options = false) + { + + if ($options) { + $autolink_case = $options['autolink_case']; + $html_exclusion = $options['html_exclusion']; + $exclude_class = $options['autolink_exclude_class']; + $title_attribute = $options['autolink_title_attribute']; + $same_usage_max = $options['autolink_same_usage_max']; + $max_by_post = $options['autolink_usage_max']; + $link_class = isset($options['link_class']) ? taxopress_format_class($options['link_class']) : ''; + } else { + $autolink_case = 'lowercase'; + $html_exclusion = []; + $exclude_class = ''; + $title_attribute = SimpleTags_Plugin::get_option_value('auto_link_title'); + $same_usage_max = SimpleTags_Plugin::get_option_value('auto_link_max_by_tag'); + $max_by_post = SimpleTags_Plugin::get_option_value('auto_link_max_by_post'); + $link_class = ''; + } $must_tokenize = true; // will perform basic tokenization $tokens = null; // two kinds of tokens: markup and text @@ -580,13 +604,13 @@ private static function replace_by_links_regexp( &$content, $search = '', $repla $j = 0; $filtered = ''; // will filter text token by token - $match = '/(\PL|\A)(' . preg_quote( $search, '/' ) . ')(\PL|\Z)\b/u' . $case; - $substitute = '$1$2$3"; + $match = '/(\PL|\A)(' . preg_quote($search, '/') . ')(\PL|\Z)\b/u' . $case; + $substitute = '$1$2$3"; //$match = "/\b" . preg_quote($search, "/") . "\b/".$case; //$substitute = '$0"; // for efficiency only tokenize if forced to do so - if ( $must_tokenize ) { + if ($must_tokenize) { // this regexp is taken from PHP Markdown by Michel Fortin: http://www.michelf.com/projects/php-markdown/ $comment = '(?s:)|'; $processing_instruction = '(?s:<\?.*?\?>)|'; @@ -594,92 +618,88 @@ private static function replace_by_links_regexp( &$content, $search = '', $repla $markup = $comment . $processing_instruction . $tag; $flags = PREG_SPLIT_DELIM_CAPTURE; - $tokens = preg_split( "{($markup)}", $content, - 1, $flags ); + $tokens = preg_split("{($markup)}", $content, -1, $flags); $must_tokenize = false; - } // there should always be at least one token, but check just in case $anchor_level = 0; - if ( isset( $tokens ) && is_array( $tokens ) && count( $tokens ) > 0 ) { + if (isset($tokens) && is_array($tokens) && count($tokens) > 0) { $i = 0; - $ancestor = ''; - foreach ( $tokens as $token ) { - if ( ++ $i % 2 && $token !== '' ) - { // this token is (non-markup) text - - - $pass_check = true; - - if(!empty(trim($ancestor))){ - - //auto link exclusion - if(count($html_exclusion) > 0){ - foreach($html_exclusion as $exclude_ancestor){ - if(taxopress_starts_with( $ancestor, '<'.strtolower($exclude_ancestor).'' )){ - $pass_check = false; - break; - } - } - } - - - // Prepare exclude terms array - $excludes_class = explode( ',', $exclude_class ); - if ( !empty( $excludes_class ) ) { - $excludes_class = array_filter( $excludes_class ); - $excludes_class = array_unique( $excludes_class ); - if(count($excludes_class) > 0){ - foreach($excludes_class as $idclass ){ - if(substr( trim($idclass), 0, 1 ) === "#"){ - $div_id = ltrim(trim($idclass), "#"); - if ( preg_match_all('/<[a-z \'"]*id="'.$div_id.'"/i', $ancestor, $matches) || preg_match_all('/<[a-z \'"]*id=\''.$div_id.'\'/i', $ancestor, $matches)) { - $pass_check = false; - break; - } - }else{ - $div_class = ltrim(trim($idclass), "."); - if ( preg_match_all('/<[a-z ]*class="'.$div_class.'"/i', $ancestor, $matches) || preg_match_all('/<[a-z ]*class=\''.$div_class.'\'/i', $ancestor, $matches)) { - $pass_check = false; - break; - } - } - } - } - } - - - } - if ( $anchor_level === 0 && $pass_check ) { // linkify if not inside anchor tags - if ( preg_match( $match, $token ) ) { // use preg_match for compatibility with PHP 4 - $j ++; - - - $remaining_usage = $max_by_post-self::$tagged_link_count; - if( $same_usage_max > $remaining_usage){ - $same_usage_max = $remaining_usage; - } - - - if ( $same_usage_max > 0 ) {// Limit replacement at 1 by default, or options value ! - $token = preg_replace( $match, $substitute, $token, $same_usage_max, $rep_count ); // only PHP 5 supports calling preg_replace with 5 arguments - self::$tagged_link_count = self::$tagged_link_count+$rep_count; + $ancestor = ''; + foreach ($tokens as $token) { + if (++$i % 2 && $token !== '') { // this token is (non-markup) text + + + $pass_check = true; + + if (!empty(trim($ancestor))) { + + //auto link exclusion + if (count($html_exclusion) > 0) { + foreach ($html_exclusion as $exclude_ancestor) { + if (taxopress_starts_with($ancestor, '<' . strtolower($exclude_ancestor) . '')) { + $pass_check = false; + break; + } + } + } + + + // Prepare exclude terms array + $excludes_class = explode(',', $exclude_class); + if (!empty($excludes_class)) { + $excludes_class = array_filter($excludes_class); + $excludes_class = array_unique($excludes_class); + if (count($excludes_class) > 0) { + foreach ($excludes_class as $idclass) { + if (substr(trim($idclass), 0, 1) === "#") { + $div_id = ltrim(trim($idclass), "#"); + if (preg_match_all('/<[a-z \'"]*id="' . $div_id . '"/i', $ancestor, $matches) || preg_match_all('/<[a-z \'"]*id=\'' . $div_id . '\'/i', $ancestor, $matches)) { + $pass_check = false; + break; + } + } else { + $div_class = ltrim(trim($idclass), "."); + if (preg_match_all('/<[a-z ]*class="' . $div_class . '"/i', $ancestor, $matches) || preg_match_all('/<[a-z ]*class=\'' . $div_class . '\'/i', $ancestor, $matches)) { + $pass_check = false; + break; + } + } + } + } + } + } + if ($anchor_level === 0 && $pass_check) { // linkify if not inside anchor tags + if (preg_match($match, $token)) { // use preg_match for compatibility with PHP 4 + $j++; + + + $remaining_usage = $max_by_post - self::$tagged_link_count; + if ($same_usage_max > $remaining_usage) { + $same_usage_max = $remaining_usage; + } + + + if ($same_usage_max > 0) { // Limit replacement at 1 by default, or options value ! + $token = preg_replace($match, $substitute, $token, $same_usage_max, $rep_count); // only PHP 5 supports calling preg_replace with 5 arguments + self::$tagged_link_count = self::$tagged_link_count + $rep_count; } $must_tokenize = true; // re-tokenize next time around } - } + } } else { // this token is markup - if ( preg_match( "#<\s*a\s+[^>]*>#i", $token ) ) { // found - $ancestor = $token; - $anchor_level ++; - } elseif ( preg_match( "#<\s*/\s*a\s*>#i", $token ) ) { // found - $anchor_level --; - }elseif(taxopress_starts_with( $token, "]*>#i", $token)) { // found + $ancestor = $token; + $anchor_level++; + } elseif (preg_match("#<\s*/\s*a\s*>#i", $token)) { // found + $anchor_level--; + } elseif (taxopress_starts_with($token, "ID, '_exclude_autolinks', true ); - if ( ! empty( $meta_value ) || is_admin() ) { + $meta_value = get_post_meta($post->ID, '_exclude_autolinks', true); + if (!empty($meta_value) || is_admin()) { return $title; } @@ -721,43 +742,43 @@ public static function the_title( $title = '' ) { self::prepare_auto_link_tags(); // Shuffle array - SimpleTags_Client::random_array( self::$link_tags ); + SimpleTags_Client::random_array(self::$link_tags); // HTML Rel (tag/no-follow) $rel = SimpleTags_Client::get_rel_attribut(); // only continue if the database actually returned any links - if ( ! isset( self::$link_tags ) || ! is_array( self::$link_tags ) || empty( self::$link_tags ) ) { + if (!isset(self::$link_tags) || !is_array(self::$link_tags) || empty(self::$link_tags)) { return $title; } // Case option ? - $case = ( 1 === (int) SimpleTags_Plugin::get_option_value( 'auto_link_case' ) ) ? 'i' : ''; - $strpos_fnc = ( 'i' === $case ) ? 'stripos' : 'strpos'; + $case = (1 === (int) SimpleTags_Plugin::get_option_value('auto_link_case')) ? 'i' : ''; + $strpos_fnc = ('i' === $case) ? 'stripos' : 'strpos'; // Prepare exclude terms array - $excludes_terms = explode( ',', SimpleTags_Plugin::get_option_value( 'auto_link_exclude' ) ); - if ( empty( $excludes_terms ) ) { + $excludes_terms = explode(',', SimpleTags_Plugin::get_option_value('auto_link_exclude')); + if (empty($excludes_terms)) { $excludes_terms = array(); } else { - $excludes_terms = array_filter( $excludes_terms, '_delete_empty_element' ); - $excludes_terms = array_unique( $excludes_terms ); + $excludes_terms = array_filter($excludes_terms, '_delete_empty_element'); + $excludes_terms = array_unique($excludes_terms); } $z = 0; $auto_link_replace = []; - foreach ( (array) self::$link_tags as $term_name => $term_link ) { + foreach ((array) self::$link_tags as $term_name => $term_link) { // Force string for tags "number" $term_name = (string) $term_name; // Exclude terms ? next... - if ( in_array( $term_name, (array) $excludes_terms, true ) ) { + if (in_array($term_name, (array) $excludes_terms, true)) { continue; } // Make a first test with PHP function, economize CPU with regexp - if ( false === $strpos_fnc( $title, $term_name ) ) { + if (false === $strpos_fnc($title, $term_name)) { continue; } @@ -772,20 +793,20 @@ public static function the_title( $title = '' ) { 'term_limit' => SimpleTags_Plugin::get_option_value('auto_link_max_by_tag'), 'type' => 'content', ]; - - if (!class_exists( 'DOMDocument' ) || !class_exists( 'DOMXPath' ) ) { - self::replace_by_links_regexp( $title, $term_name, $term_link, $case, $rel ); + + if (!class_exists('DOMDocument') || !class_exists('DOMXPath')) { + self::replace_by_links_regexp($title, $term_name, $term_link, $case, $rel); } - $z ++; + $z++; - if ( $z > (int) SimpleTags_Plugin::get_option_value( 'auto_link_max_by_post' ) ) { + if ($z > (int) SimpleTags_Plugin::get_option_value('auto_link_max_by_post')) { break; } } - if (class_exists( 'DOMDocument' ) && class_exists( 'DOMXPath' ) ) { - self::replace_by_links_dom( $title, $auto_link_replace ); + if (class_exists('DOMDocument') && class_exists('DOMXPath')) { + self::replace_by_links_dom($title, $auto_link_replace); } return $title; @@ -799,23 +820,24 @@ public static function the_title( $title = '' ) { * * @return string */ - public static function taxopress_autolinks_the_content( $content = '' ) { + public static function taxopress_autolinks_the_content($content = '') + { global $post; - if(!is_object($post) || is_admin() ){ + if (!is_object($post) || is_admin()) { return $content; } - $post_tags = taxopress_get_autolink_data(); + $post_tags = taxopress_get_autolink_data(); // user preference for this post ? - $meta_value = get_post_meta( $post->ID, '_exclude_autolinks', true ); - if ( ! empty( $meta_value ) ) { + $meta_value = get_post_meta($post->ID, '_exclude_autolinks', true); + if (!empty($meta_value)) { return $content; } - if (count($post_tags) > 0) { + if (count($post_tags) > 0) { $auto_link_replace = []; foreach ($post_tags as $post_tag) { @@ -826,7 +848,7 @@ public static function taxopress_autolinks_the_content( $content = '' ) { continue; } - if (!in_array($post->post_type, $embedded )) { + if (!in_array($post->post_type, $embedded)) { continue; } @@ -840,45 +862,45 @@ public static function taxopress_autolinks_the_content( $content = '' ) { self::prepare_auto_link_tags($post_tag); // Shuffle array - SimpleTags_Client::random_array( self::$link_tags ); + SimpleTags_Client::random_array(self::$link_tags); // HTML Rel (tag/no-follow) $rel = SimpleTags_Client::get_rel_attribut(); // only continue if the database actually returned any links - if ( ! isset( self::$link_tags ) || ! is_array( self::$link_tags ) || empty( self::$link_tags ) ) { + if (!isset(self::$link_tags) || !is_array(self::$link_tags) || empty(self::$link_tags)) { $can_continue = false; - }else{ + } else { $can_continue = true; } if ($can_continue) { // Case option ? - $case = ( 1 === (int) $post_tag['ignore_case'] ) ? 'i' : ''; - $strpos_fnc = ( 'i' === $case ) ? 'stripos' : 'strpos'; + $case = (1 === (int) $post_tag['ignore_case']) ? 'i' : ''; + $strpos_fnc = ('i' === $case) ? 'stripos' : 'strpos'; // Prepare exclude terms array - $excludes_terms = explode( ',', $post_tag['auto_link_exclude'] ); - if ( empty( $excludes_terms ) ) { + $excludes_terms = explode(',', $post_tag['auto_link_exclude']); + if (empty($excludes_terms)) { $excludes_terms = array(); } else { - $excludes_terms = array_filter( $excludes_terms, '_delete_empty_element' ); - $excludes_terms = array_unique( $excludes_terms ); + $excludes_terms = array_filter($excludes_terms, '_delete_empty_element'); + $excludes_terms = array_unique($excludes_terms); } $z = 0; - foreach ( (array) self::$link_tags as $term_name => $term_link ) { - $z ++; + foreach ((array) self::$link_tags as $term_name => $term_link) { + $z++; // Force string for tags "number" $term_name = (string) $term_name; // Exclude terms ? next... - if ( in_array( $term_name, (array) $excludes_terms, true ) ) { + if (in_array($term_name, (array) $excludes_terms, true)) { continue; } // Make a first test with PHP function, economize CPU with regexp - if ( false === $strpos_fnc( $content, $term_name ) ) { + if (false === $strpos_fnc($content, $term_name)) { continue; } @@ -888,22 +910,22 @@ public static function taxopress_autolinks_the_content( $content = '' ) { 'case' => $case, 'rel' => $rel, 'options' => $post_tag, - 'option_id' => $post_tag['ID'], + 'option_id' => $post_tag['ID'], 'post_limit' => $post_tag['autolink_usage_max'], 'term_limit' => $post_tag['autolink_same_usage_max'], 'type' => 'content', ]; - - if (!class_exists( 'DOMDocument' ) || !class_exists( 'DOMXPath' ) ) { - self::replace_by_links_regexp( $content, $term_name, $term_link, $case, $rel, $post_tag ); + + if (!class_exists('DOMDocument') || !class_exists('DOMXPath')) { + self::replace_by_links_regexp($content, $term_name, $term_link, $case, $rel, $post_tag); } } } } - if (class_exists( 'DOMDocument' ) && class_exists( 'DOMXPath' ) ) { - self::replace_by_links_dom( $content, $auto_link_replace ); + if (class_exists('DOMDocument') && class_exists('DOMXPath')) { + self::replace_by_links_dom($content, $auto_link_replace); } - } + } return $content; } @@ -917,116 +939,115 @@ public static function taxopress_autolinks_the_content( $content = '' ) { * * @return string */ - public static function taxopress_autolinks_the_title( $title = '' ) { + public static function taxopress_autolinks_the_title($title = '') + { global $post; - if(!is_object($post) || is_admin() ){ + if (!is_object($post) || is_admin()) { return $title; } - $post_tags = taxopress_get_autolink_data(); + $post_tags = taxopress_get_autolink_data(); // user preference for this post ? - $meta_value = get_post_meta( $post->ID, '_exclude_autolinks', true ); - if ( ! empty( $meta_value ) ) { + $meta_value = get_post_meta($post->ID, '_exclude_autolinks', true); + if (!empty($meta_value)) { return $title; } - if (count($post_tags) > 0) { + if (count($post_tags) > 0) { + + foreach ($post_tags as $post_tag) { - foreach ($post_tags as $post_tag) { + // Get option + $embedded = (isset($post_tag['embedded']) && is_array($post_tag['embedded']) && count($post_tag['embedded']) > 0) ? $post_tag['embedded'] : false; - // Get option - $embedded = (isset($post_tag['embedded']) && is_array($post_tag['embedded']) && count($post_tag['embedded']) > 0) ? $post_tag['embedded'] : false; + if (!$embedded) { + continue; + } - if (!$embedded) { - continue; - } + if (!in_array($post->post_type, $embedded)) { + continue; + } - if (!in_array($post->post_type, $embedded )) { - continue; - } + if ($post_tag['autolink_display'] === 'post_content') { + continue; + } + //reset tags just in case + self::$link_tags = []; + // Get currents tags if no exists + self::prepare_auto_link_tags($post_tag); - if ($post_tag['autolink_display'] === 'post_content') { - continue; - } - //reset tags just in case - self::$link_tags = []; - // Get currents tags if no exists - self::prepare_auto_link_tags($post_tag); + // Shuffle array + SimpleTags_Client::random_array(self::$link_tags); - // Shuffle array - SimpleTags_Client::random_array( self::$link_tags ); + // HTML Rel (tag/no-follow) + $rel = SimpleTags_Client::get_rel_attribut(); - // HTML Rel (tag/no-follow) - $rel = SimpleTags_Client::get_rel_attribut(); + // only continue if the database actually returned any links + if (!isset(self::$link_tags) || !is_array(self::$link_tags) || empty(self::$link_tags)) { + $can_continue = false; + } else { + $can_continue = true; + } - // only continue if the database actually returned any links - if ( ! isset( self::$link_tags ) || ! is_array( self::$link_tags ) || empty( self::$link_tags ) ) { - $can_continue = false; - }else{ - $can_continue = true; - } + if ($can_continue) { - if( $can_continue ){ + // Case option ? + $case = (1 === (int) $post_tag['ignore_case']) ? 'i' : ''; + $strpos_fnc = ('i' === $case) ? 'stripos' : 'strpos'; - // Case option ? - $case = ( 1 === (int) $post_tag['ignore_case'] ) ? 'i' : ''; - $strpos_fnc = ( 'i' === $case ) ? 'stripos' : 'strpos'; + // Prepare exclude terms array + $excludes_terms = explode(',', $post_tag['auto_link_exclude']); + if (empty($excludes_terms)) { + $excludes_terms = array(); + } else { + $excludes_terms = array_filter($excludes_terms, '_delete_empty_element'); + $excludes_terms = array_unique($excludes_terms); + } - // Prepare exclude terms array - $excludes_terms = explode( ',', $post_tag['auto_link_exclude'] ); - if ( empty( $excludes_terms ) ) { - $excludes_terms = array(); - } else { - $excludes_terms = array_filter( $excludes_terms, '_delete_empty_element' ); - $excludes_terms = array_unique( $excludes_terms ); - } + $z = 0; + $auto_link_replace = []; + foreach ((array) self::$link_tags as $term_name => $term_link) { + $z++; + // Force string for tags "number" + $term_name = (string) $term_name; - $z = 0; - $auto_link_replace = []; - foreach ( (array) self::$link_tags as $term_name => $term_link ) { - $z ++; - // Force string for tags "number" - $term_name = (string) $term_name; + // Exclude terms ? next... + if (in_array($term_name, (array) $excludes_terms, true)) { + continue; + } - // Exclude terms ? next... - if ( in_array( $term_name, (array) $excludes_terms, true ) ) { - continue; - } + // Make a first test with PHP function, economize CPU with regexp + if (false === $strpos_fnc($title, $term_name)) { + continue; + } - // Make a first test with PHP function, economize CPU with regexp - if ( false === $strpos_fnc( $title, $term_name ) ) { - continue; - } + $auto_link_replace[] = [ + 'term_name' => $term_name, + 'term_link' => $term_link, + 'case' => $case, + 'rel' => $rel, + 'options' => $post_tag, + 'option_id' => $post_tag['ID'], + 'post_limit' => $post_tag['autolink_usage_max'], + 'term_limit' => $post_tag['autolink_same_usage_max'], + 'type' => 'content', + ]; - $auto_link_replace[] = [ - 'term_name' => $term_name, - 'term_link' => $term_link, - 'case' => $case, - 'rel' => $rel, - 'options' => $post_tag, - 'option_id' => $post_tag['ID'], - 'post_limit' => $post_tag['autolink_usage_max'], - 'term_limit' => $post_tag['autolink_same_usage_max'], - 'type' => 'content', - ]; - - if (!class_exists( 'DOMDocument' ) || !class_exists( 'DOMXPath' ) ) { - self::replace_by_links_regexp( $title, $term_name, $term_link, $case, $rel, $post_tag); + if (!class_exists('DOMDocument') || !class_exists('DOMXPath')) { + self::replace_by_links_regexp($title, $term_name, $term_link, $case, $rel, $post_tag); + } + } + if (class_exists('DOMDocument') && class_exists('DOMXPath')) { + self::replace_by_links_dom($title, $auto_link_replace); + } + } } } - if (class_exists( 'DOMDocument' ) && class_exists( 'DOMXPath' ) ) { - self::replace_by_links_dom( $title, $auto_link_replace); - } - } - } - - } return $title; } - } From 8b40f38147e6a1e9ef6ccba1806961c460dfc7a4 Mon Sep 17 00:00:00 2001 From: ojopaul Date: Wed, 14 Jun 2023 14:34:50 +0100 Subject: [PATCH 05/13] - Clarify the attachment options for Auto Links #1623 --- inc/autolinks-functions.php | 6 +-- inc/autolinks.php | 94 +++++++++++----------------------- inc/class.client.autolinks.php | 7 --- 3 files changed, 32 insertions(+), 75 deletions(-) diff --git a/inc/autolinks-functions.php b/inc/autolinks-functions.php index 0337e9fa..e810c93c 100644 --- a/inc/autolinks-functions.php +++ b/inc/autolinks-functions.php @@ -168,9 +168,8 @@ function taxopress_create_default_autolink() $default['taxopress_autolink']['hook_priority'] = '12'; $default['taxopress_autolink']['embedded'] = []; $default['taxopress_autolink']['html_exclusion'] = []; - $default['taxopress_autolink']['unattached_terms'] = '0'; + $default['taxopress_autolink']['unattached_terms'] = '1'; $default['taxopress_autolink']['ignore_case'] = '1'; - $default['taxopress_autolink']['ignore_attached'] = '0'; $default['taxopress_autolink']['autolink_dom'] = '1'; $default['taxopress_autolink']['synonyms_link'] = '0'; $default['autolink_submit'] = 'Add Auto Links'; @@ -226,9 +225,6 @@ function taxopress_update_autolink($data = []) if (!isset($data['taxopress_autolink']['ignore_case'])) { //auto set ignore case to true $data['taxopress_autolink']['ignore_case'] = 1; } - if (!isset($data['taxopress_autolink']['ignore_attached'])) { - $data['taxopress_autolink']['ignore_attached'] = 0; - } if (!isset($data['taxopress_autolink']['autolink_dom'])) { $data['taxopress_autolink']['autolink_dom'] = 0; } diff --git a/inc/autolinks.php b/inc/autolinks.php index 56c28c00..65ed3b01 100644 --- a/inc/autolinks.php +++ b/inc/autolinks.php @@ -474,69 +474,6 @@ public function taxopress_manage_autolinks() 'required' => false, ]); - - - $select = [ - 'options' => [ - [ - 'attr' => '0', - 'text' => esc_attr__('False', 'simple-tags'), - 'default' => 'true', - ], - [ - 'attr' => '1', - 'text' => esc_attr__('True', 'simple-tags'), - ], - ], - ]; - $selected = (isset($current) && isset($current['unattached_terms'])) ? taxopress_disp_boolean($current['unattached_terms']) : ''; - $select['selected'] = !empty($selected) ? $current['unattached_terms'] : ''; - // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped - echo $ui->get_select_checkbox_input([ - 'namearray' => 'taxopress_autolink', - 'name' => 'unattached_terms', - 'labeltext' => esc_html__( - 'Add links for unattached terms', - 'simple-tags' - ), - 'aftertext' => esc_html__( - 'By default, TaxoPress will only add Auto Links for terms that are attached to the post. If this box is checked, TaxoPress will add links for all terms.', - 'simple-tags' - ), - 'selections' => $select, // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped - ]); - - - $select = [ - 'options' => [ - [ - 'attr' => '0', - 'text' => esc_attr__('False', 'simple-tags'), - 'default' => 'true', - ], - [ - 'attr' => '1', - 'text' => esc_attr__('True', 'simple-tags'), - ], - ], - ]; - $selected = (isset($current) && isset($current['ignore_attached'])) ? taxopress_disp_boolean($current['ignore_attached']) : ''; - $select['selected'] = !empty($selected) ? $current['ignore_attached'] : ''; - // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped - echo $ui->get_select_checkbox_input([ - 'namearray' => 'taxopress_autolink', - 'name' => 'ignore_attached', - 'labeltext' => esc_html__( - 'Don\'t add links for attached terms', - 'simple-tags' - ), - 'aftertext' => esc_html__( - 'Don\'t add Auto Links if the term is already attached to the post.', - 'simple-tags' - ), - 'selections' => $select, // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped - ]); - // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped echo $ui->get_td_end() . $ui->get_tr_end(); ?> @@ -836,6 +773,37 @@ public function taxopress_manage_autolinks() 'selections' => $select, // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ]); + + $select = [ + 'options' => [ + [ + 'attr' => '0', + 'text' => esc_attr__('False', 'simple-tags'), + 'default' => 'true', + ], + [ + 'attr' => '1', + 'text' => esc_attr__('True', 'simple-tags'), + ], + ], + ]; + $selected = (isset($current) && isset($current['unattached_terms'])) ? taxopress_disp_boolean($current['unattached_terms']) : ''; + $select['selected'] = !empty($selected) ? $current['unattached_terms'] : ''; + // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped + echo $ui->get_select_checkbox_input([ + 'namearray' => 'taxopress_autolink', + 'name' => 'unattached_terms', + 'labeltext' => esc_html__( + 'Add links for all terms', + 'simple-tags' + ), + 'aftertext' => esc_html__( + 'By default, TaxoPress will add links for all terms. If this box is unchecked, Auto Links will only add links for terms that are attached to the post.', + 'simple-tags' + ), + 'selections' => $select, // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped + ]); + ?> diff --git a/inc/class.client.autolinks.php b/inc/class.client.autolinks.php index f215f2ea..e0f93a81 100644 --- a/inc/class.client.autolinks.php +++ b/inc/class.client.autolinks.php @@ -172,14 +172,12 @@ public static function prepare_auto_link_tags($options = false) $unattached_terms = (int) $options['unattached_terms']; $autolink_min_char = (int) $options['autolink_min_char']; $autolink_max_char = (int) $options['autolink_max_char']; - $ignore_attached = (int) $options['ignore_attached']; $term_taxonomy = $options['taxonomy']; } else { $auto_link_min = (int) SimpleTags_Plugin::get_option_value('auto_link_min'); $unattached_terms = (int) SimpleTags_Plugin::get_option_value('auto_link_all'); $autolink_min_char = 0; $autolink_max_char = 0; - $ignore_attached = 0; $term_taxonomy = 'post_tag'; } @@ -190,11 +188,6 @@ public static function prepare_auto_link_tags($options = false) } foreach ((array) $terms as $term) { - if ($ignore_attached > 0) { - if (has_term($term->term_id, $term_taxonomy, $post)) { - continue; - } - } //add primary term $primary_term_link = get_term_link($term, $term->taxonomy); From b1b5630dd0d089b261578e52804e505a93516c16 Mon Sep 17 00:00:00 2001 From: ojopaul Date: Thu, 15 Jun 2023 13:42:05 +0100 Subject: [PATCH 06/13] - composer update --- composer.lock | 459 +++++++++++++++----------------------------------- 1 file changed, 140 insertions(+), 319 deletions(-) diff --git a/composer.lock b/composer.lock index db1de412..5a36b971 100644 --- a/composer.lock +++ b/composer.lock @@ -440,25 +440,25 @@ }, { "name": "consolidation/annotated-command", - "version": "4.8.2", + "version": "4.9.1", "source": { "type": "git", "url": "https://github.com/consolidation/annotated-command.git", - "reference": "7f5dd1aafb93a10593ed70f3caa6a0cd5a32f0e3" + "reference": "e01152f698eff4cb5df3ebfe5e097ef335dbd3c9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/7f5dd1aafb93a10593ed70f3caa6a0cd5a32f0e3", - "reference": "7f5dd1aafb93a10593ed70f3caa6a0cd5a32f0e3", + "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/e01152f698eff4cb5df3ebfe5e097ef335dbd3c9", + "reference": "e01152f698eff4cb5df3ebfe5e097ef335dbd3c9", "shasum": "" }, "require": { - "consolidation/output-formatters": "^4.1.1", + "consolidation/output-formatters": "^4.3.1", "php": ">=7.1.3", - "psr/log": "^1|^2|^3", - "symfony/console": "^4.4.8|^5|^6", - "symfony/event-dispatcher": "^4.4.8|^5|^6", - "symfony/finder": "^4.4.8|^5|^6" + "psr/log": "^1 || ^2 || ^3", + "symfony/console": "^4.4.8 || ^5 || ^6", + "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6", + "symfony/finder": "^4.4.8 || ^5 || ^6" }, "require-dev": { "composer-runtime-api": "^2.0", @@ -490,9 +490,9 @@ "description": "Initialize Symfony Console commands from annotated command class methods.", "support": { "issues": "https://github.com/consolidation/annotated-command/issues", - "source": "https://github.com/consolidation/annotated-command/tree/4.8.2" + "source": "https://github.com/consolidation/annotated-command/tree/4.9.1" }, - "time": "2023-03-11T19:32:28+00:00" + "time": "2023-05-20T04:19:01+00:00" }, { "name": "consolidation/config", @@ -608,16 +608,16 @@ }, { "name": "consolidation/output-formatters", - "version": "4.2.4", + "version": "4.3.1", "source": { "type": "git", "url": "https://github.com/consolidation/output-formatters.git", - "reference": "b377db7e9435c50c4e019c26ec164b547e754ca0" + "reference": "f65524e9ecd2bd0021c4b18710005caaa6dcbd86" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/b377db7e9435c50c4e019c26ec164b547e754ca0", - "reference": "b377db7e9435c50c4e019c26ec164b547e754ca0", + "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/f65524e9ecd2bd0021c4b18710005caaa6dcbd86", + "reference": "f65524e9ecd2bd0021c4b18710005caaa6dcbd86", "shasum": "" }, "require": { @@ -656,9 +656,9 @@ "description": "Format text by applying transformations provided by plug-in formatters.", "support": { "issues": "https://github.com/consolidation/output-formatters/issues", - "source": "https://github.com/consolidation/output-formatters/tree/4.2.4" + "source": "https://github.com/consolidation/output-formatters/tree/4.3.1" }, - "time": "2023-02-24T03:39:10+00:00" + "time": "2023-05-20T03:23:06+00:00" }, { "name": "consolidation/robo", @@ -761,16 +761,16 @@ }, { "name": "consolidation/self-update", - "version": "2.1.0", + "version": "2.2.0", "source": { "type": "git", "url": "https://github.com/consolidation/self-update.git", - "reference": "714b09fdf0513f83292874bb12de0566066040c2" + "reference": "972a1016761c9b63314e040836a12795dff6953a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/self-update/zipball/714b09fdf0513f83292874bb12de0566066040c2", - "reference": "714b09fdf0513f83292874bb12de0566066040c2", + "url": "https://api.github.com/repos/consolidation/self-update/zipball/972a1016761c9b63314e040836a12795dff6953a", + "reference": "972a1016761c9b63314e040836a12795dff6953a", "shasum": "" }, "require": { @@ -810,9 +810,9 @@ "description": "Provides a self:update command for Symfony Console applications.", "support": { "issues": "https://github.com/consolidation/self-update/issues", - "source": "https://github.com/consolidation/self-update/tree/2.1.0" + "source": "https://github.com/consolidation/self-update/tree/2.2.0" }, - "time": "2023-02-21T19:33:55+00:00" + "time": "2023-03-18T01:37:41+00:00" }, { "name": "dealerdirect/phpcodesniffer-composer-installer", @@ -966,27 +966,28 @@ }, { "name": "grasmash/expander", - "version": "2.0.3", + "version": "3.0.0", "source": { "type": "git", "url": "https://github.com/grasmash/expander.git", - "reference": "b7cbc1f2fdf9a9c0e253a424c2a4058316b7cb6e" + "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/grasmash/expander/zipball/b7cbc1f2fdf9a9c0e253a424c2a4058316b7cb6e", - "reference": "b7cbc1f2fdf9a9c0e253a424c2a4058316b7cb6e", + "url": "https://api.github.com/repos/grasmash/expander/zipball/bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82", + "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82", "shasum": "" }, "require": { "dflydev/dot-access-data": "^3.0.0", - "php": ">=7.1", - "psr/log": "^1 | ^2 | ^3" + "php": ">=8.0", + "psr/log": "^2 | ^3" }, "require-dev": { "greg-1-anderson/composer-test-scenarios": "^1", - "phpunit/phpunit": "^6.0 || ^8.0 || ^9", - "squizlabs/php_codesniffer": "^2.7 || ^3.3" + "php-coveralls/php-coveralls": "^2.5", + "phpunit/phpunit": "^9", + "squizlabs/php_codesniffer": "^3.3" }, "type": "library", "extra": { @@ -1011,9 +1012,9 @@ "description": "Expands internal property references in PHP arrays file.", "support": { "issues": "https://github.com/grasmash/expander/issues", - "source": "https://github.com/grasmash/expander/tree/2.0.3" + "source": "https://github.com/grasmash/expander/tree/3.0.0" }, - "time": "2022-04-25T22:17:46+00:00" + "time": "2022-05-10T13:14:49+00:00" }, { "name": "league/container", @@ -1275,30 +1276,30 @@ }, { "name": "psr/log", - "version": "1.1.4", + "version": "2.0.0", "source": { "type": "git", "url": "https://github.com/php-fig/log.git", - "reference": "d49695b909c3b7628b6289db5479a1c204601f11" + "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11", - "reference": "d49695b909c3b7628b6289db5479a1c204601f11", + "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376", + "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376", "shasum": "" }, "require": { - "php": ">=5.3.0" + "php": ">=8.0.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.1.x-dev" + "dev-master": "2.0.x-dev" } }, "autoload": { "psr-4": { - "Psr\\Log\\": "Psr/Log/" + "Psr\\Log\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -1319,9 +1320,9 @@ "psr-3" ], "support": { - "source": "https://github.com/php-fig/log/tree/1.1.4" + "source": "https://github.com/php-fig/log/tree/2.0.0" }, - "time": "2021-05-03T11:20:27+00:00" + "time": "2021-07-14T16:41:46+00:00" }, { "name": "publishpress/publishpress-plugin-builder", @@ -1493,52 +1494,43 @@ }, { "name": "symfony/console", - "version": "v5.4.23", + "version": "v6.3.0", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "90f21e27d0d88ce38720556dd164d4a1e4c3934c" + "reference": "8788808b07cf0bdd6e4b7fdd23d8ddb1470c83b7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/90f21e27d0d88ce38720556dd164d4a1e4c3934c", - "reference": "90f21e27d0d88ce38720556dd164d4a1e4c3934c", + "url": "https://api.github.com/repos/symfony/console/zipball/8788808b07cf0bdd6e4b7fdd23d8ddb1470c83b7", + "reference": "8788808b07cf0bdd6e4b7fdd23d8ddb1470c83b7", "shasum": "" }, "require": { - "php": ">=7.2.5", - "symfony/deprecation-contracts": "^2.1|^3", + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php73": "^1.9", - "symfony/polyfill-php80": "^1.16", - "symfony/service-contracts": "^1.1|^2|^3", - "symfony/string": "^5.1|^6.0" + "symfony/service-contracts": "^2.5|^3", + "symfony/string": "^5.4|^6.0" }, "conflict": { - "psr/log": ">=3", - "symfony/dependency-injection": "<4.4", - "symfony/dotenv": "<5.1", - "symfony/event-dispatcher": "<4.4", - "symfony/lock": "<4.4", - "symfony/process": "<4.4" + "symfony/dependency-injection": "<5.4", + "symfony/dotenv": "<5.4", + "symfony/event-dispatcher": "<5.4", + "symfony/lock": "<5.4", + "symfony/process": "<5.4" }, "provide": { - "psr/log-implementation": "1.0|2.0" + "psr/log-implementation": "1.0|2.0|3.0" }, "require-dev": { - "psr/log": "^1|^2", - "symfony/config": "^4.4|^5.0|^6.0", - "symfony/dependency-injection": "^4.4|^5.0|^6.0", - "symfony/event-dispatcher": "^4.4|^5.0|^6.0", - "symfony/lock": "^4.4|^5.0|^6.0", - "symfony/process": "^4.4|^5.0|^6.0", - "symfony/var-dumper": "^4.4|^5.0|^6.0" - }, - "suggest": { - "psr/log": "For using the console logger", - "symfony/event-dispatcher": "", - "symfony/lock": "", - "symfony/process": "" + "psr/log": "^1|^2|^3", + "symfony/config": "^5.4|^6.0", + "symfony/dependency-injection": "^5.4|^6.0", + "symfony/event-dispatcher": "^5.4|^6.0", + "symfony/lock": "^5.4|^6.0", + "symfony/process": "^5.4|^6.0", + "symfony/var-dumper": "^5.4|^6.0" }, "type": "library", "autoload": { @@ -1572,7 +1564,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v5.4.23" + "source": "https://github.com/symfony/console/tree/v6.3.0" }, "funding": [ { @@ -1588,29 +1580,29 @@ "type": "tidelift" } ], - "time": "2023-04-24T18:47:29+00:00" + "time": "2023-05-29T12:49:39+00:00" }, { "name": "symfony/deprecation-contracts", - "version": "v2.5.2", + "version": "v3.3.0", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66" + "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66", - "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf", + "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=8.1" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "2.5-dev" + "dev-main": "3.4-dev" }, "thanks": { "name": "symfony/contracts", @@ -1639,7 +1631,7 @@ "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2" + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.3.0" }, "funding": [ { @@ -1655,48 +1647,43 @@ "type": "tidelift" } ], - "time": "2022-01-02T09:53:40+00:00" + "time": "2023-05-23T14:45:45+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v5.4.22", + "version": "v6.3.0", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "1df20e45d56da29a4b1d8259dd6e950acbf1b13f" + "reference": "3af8ac1a3f98f6dbc55e10ae59c9e44bfc38dfaa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1df20e45d56da29a4b1d8259dd6e950acbf1b13f", - "reference": "1df20e45d56da29a4b1d8259dd6e950acbf1b13f", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/3af8ac1a3f98f6dbc55e10ae59c9e44bfc38dfaa", + "reference": "3af8ac1a3f98f6dbc55e10ae59c9e44bfc38dfaa", "shasum": "" }, "require": { - "php": ">=7.2.5", - "symfony/deprecation-contracts": "^2.1|^3", - "symfony/event-dispatcher-contracts": "^2|^3", - "symfony/polyfill-php80": "^1.16" + "php": ">=8.1", + "symfony/event-dispatcher-contracts": "^2.5|^3" }, "conflict": { - "symfony/dependency-injection": "<4.4" + "symfony/dependency-injection": "<5.4", + "symfony/service-contracts": "<2.5" }, "provide": { "psr/event-dispatcher-implementation": "1.0", - "symfony/event-dispatcher-implementation": "2.0" + "symfony/event-dispatcher-implementation": "2.0|3.0" }, "require-dev": { "psr/log": "^1|^2|^3", - "symfony/config": "^4.4|^5.0|^6.0", - "symfony/dependency-injection": "^4.4|^5.0|^6.0", - "symfony/error-handler": "^4.4|^5.0|^6.0", - "symfony/expression-language": "^4.4|^5.0|^6.0", - "symfony/http-foundation": "^4.4|^5.0|^6.0", - "symfony/service-contracts": "^1.1|^2|^3", - "symfony/stopwatch": "^4.4|^5.0|^6.0" - }, - "suggest": { - "symfony/dependency-injection": "", - "symfony/http-kernel": "" + "symfony/config": "^5.4|^6.0", + "symfony/dependency-injection": "^5.4|^6.0", + "symfony/error-handler": "^5.4|^6.0", + "symfony/expression-language": "^5.4|^6.0", + "symfony/http-foundation": "^5.4|^6.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/stopwatch": "^5.4|^6.0" }, "type": "library", "autoload": { @@ -1724,7 +1711,7 @@ "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.22" + "source": "https://github.com/symfony/event-dispatcher/tree/v6.3.0" }, "funding": [ { @@ -1740,33 +1727,30 @@ "type": "tidelift" } ], - "time": "2023-03-17T11:31:58+00:00" + "time": "2023-04-21T14:41:17+00:00" }, { "name": "symfony/event-dispatcher-contracts", - "version": "v2.5.2", + "version": "v3.3.0", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1" + "reference": "a76aed96a42d2b521153fb382d418e30d18b59df" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1", - "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df", + "reference": "a76aed96a42d2b521153fb382d418e30d18b59df", "shasum": "" }, "require": { - "php": ">=7.2.5", + "php": ">=8.1", "psr/event-dispatcher": "^1" }, - "suggest": { - "symfony/event-dispatcher-implementation": "" - }, "type": "library", "extra": { "branch-alias": { - "dev-main": "2.5-dev" + "dev-main": "3.4-dev" }, "thanks": { "name": "symfony/contracts", @@ -1803,7 +1787,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2" + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.3.0" }, "funding": [ { @@ -1819,27 +1803,26 @@ "type": "tidelift" } ], - "time": "2022-01-02T09:53:40+00:00" + "time": "2023-05-23T14:45:45+00:00" }, { "name": "symfony/filesystem", - "version": "v5.4.23", + "version": "v6.3.0", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "b2f79d86cd9e7de0fff6d03baa80eaed7a5f38b5" + "reference": "97b698e1d77d356304def77a8d0cd73090b359ea" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/b2f79d86cd9e7de0fff6d03baa80eaed7a5f38b5", - "reference": "b2f79d86cd9e7de0fff6d03baa80eaed7a5f38b5", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/97b698e1d77d356304def77a8d0cd73090b359ea", + "reference": "97b698e1d77d356304def77a8d0cd73090b359ea", "shasum": "" }, "require": { - "php": ">=7.2.5", + "php": ">=8.1", "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-mbstring": "~1.8", - "symfony/polyfill-php80": "^1.16" + "symfony/polyfill-mbstring": "~1.8" }, "type": "library", "autoload": { @@ -1867,7 +1850,7 @@ "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/filesystem/tree/v5.4.23" + "source": "https://github.com/symfony/filesystem/tree/v6.3.0" }, "funding": [ { @@ -1883,26 +1866,27 @@ "type": "tidelift" } ], - "time": "2023-03-02T11:38:35+00:00" + "time": "2023-05-30T17:12:32+00:00" }, { "name": "symfony/finder", - "version": "v5.4.21", + "version": "v6.3.0", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "078e9a5e1871fcfe6a5ce421b539344c21afef19" + "reference": "d9b01ba073c44cef617c7907ce2419f8d00d75e2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/078e9a5e1871fcfe6a5ce421b539344c21afef19", - "reference": "078e9a5e1871fcfe6a5ce421b539344c21afef19", + "url": "https://api.github.com/repos/symfony/finder/zipball/d9b01ba073c44cef617c7907ce2419f8d00d75e2", + "reference": "d9b01ba073c44cef617c7907ce2419f8d00d75e2", "shasum": "" }, "require": { - "php": ">=7.2.5", - "symfony/deprecation-contracts": "^2.1|^3", - "symfony/polyfill-php80": "^1.16" + "php": ">=8.1" + }, + "require-dev": { + "symfony/filesystem": "^6.0" }, "type": "library", "autoload": { @@ -1930,7 +1914,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v5.4.21" + "source": "https://github.com/symfony/finder/tree/v6.3.0" }, "funding": [ { @@ -1946,7 +1930,7 @@ "type": "tidelift" } ], - "time": "2023-02-16T09:33:00+00:00" + "time": "2023-04-02T01:25:41+00:00" }, { "name": "symfony/polyfill-intl-grapheme", @@ -2196,185 +2180,22 @@ ], "time": "2022-11-03T14:55:06+00:00" }, - { - "name": "symfony/polyfill-php73", - "version": "v1.27.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-php73.git", - "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/9e8ecb5f92152187c4799efd3c96b78ccab18ff9", - "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9", - "shasum": "" - }, - "require": { - "php": ">=7.1" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.27-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" - } - }, - "autoload": { - "files": [ - "bootstrap.php" - ], - "psr-4": { - "Symfony\\Polyfill\\Php73\\": "" - }, - "classmap": [ - "Resources/stubs" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" - ], - "support": { - "source": "https://github.com/symfony/polyfill-php73/tree/v1.27.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2022-11-03T14:55:06+00:00" - }, - { - "name": "symfony/polyfill-php80", - "version": "v1.27.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936", - "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936", - "shasum": "" - }, - "require": { - "php": ">=7.1" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.27-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" - } - }, - "autoload": { - "files": [ - "bootstrap.php" - ], - "psr-4": { - "Symfony\\Polyfill\\Php80\\": "" - }, - "classmap": [ - "Resources/stubs" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Ion Bazan", - "email": "ion.bazan@gmail.com" - }, - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" - ], - "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2022-11-03T14:55:06+00:00" - }, { "name": "symfony/process", - "version": "v5.4.23", + "version": "v6.3.0", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "4b842fc4b61609e0a155a114082bd94e31e98287" + "reference": "8741e3ed7fe2e91ec099e02446fb86667a0f1628" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/4b842fc4b61609e0a155a114082bd94e31e98287", - "reference": "4b842fc4b61609e0a155a114082bd94e31e98287", + "url": "https://api.github.com/repos/symfony/process/zipball/8741e3ed7fe2e91ec099e02446fb86667a0f1628", + "reference": "8741e3ed7fe2e91ec099e02446fb86667a0f1628", "shasum": "" }, "require": { - "php": ">=7.2.5", - "symfony/polyfill-php80": "^1.16" + "php": ">=8.1" }, "type": "library", "autoload": { @@ -2402,7 +2223,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v5.4.23" + "source": "https://github.com/symfony/process/tree/v6.3.0" }, "funding": [ { @@ -2418,7 +2239,7 @@ "type": "tidelift" } ], - "time": "2023-04-18T13:50:24+00:00" + "time": "2023-05-19T08:06:44+00:00" }, { "name": "symfony/service-contracts", @@ -2505,34 +2326,34 @@ }, { "name": "symfony/string", - "version": "v5.4.22", + "version": "v6.3.0", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "8036a4c76c0dd29e60b6a7cafcacc50cf088ea62" + "reference": "f2e190ee75ff0f5eced645ec0be5c66fac81f51f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/8036a4c76c0dd29e60b6a7cafcacc50cf088ea62", - "reference": "8036a4c76c0dd29e60b6a7cafcacc50cf088ea62", + "url": "https://api.github.com/repos/symfony/string/zipball/f2e190ee75ff0f5eced645ec0be5c66fac81f51f", + "reference": "f2e190ee75ff0f5eced645ec0be5c66fac81f51f", "shasum": "" }, "require": { - "php": ">=7.2.5", + "php": ">=8.1", "symfony/polyfill-ctype": "~1.8", "symfony/polyfill-intl-grapheme": "~1.0", "symfony/polyfill-intl-normalizer": "~1.0", - "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php80": "~1.15" + "symfony/polyfill-mbstring": "~1.0" }, "conflict": { - "symfony/translation-contracts": ">=3.0" + "symfony/translation-contracts": "<2.5" }, "require-dev": { - "symfony/error-handler": "^4.4|^5.0|^6.0", - "symfony/http-client": "^4.4|^5.0|^6.0", - "symfony/translation-contracts": "^1.1|^2", - "symfony/var-exporter": "^4.4|^5.0|^6.0" + "symfony/error-handler": "^5.4|^6.0", + "symfony/http-client": "^5.4|^6.0", + "symfony/intl": "^6.2", + "symfony/translation-contracts": "^2.5|^3.0", + "symfony/var-exporter": "^5.4|^6.0" }, "type": "library", "autoload": { @@ -2571,7 +2392,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v5.4.22" + "source": "https://github.com/symfony/string/tree/v6.3.0" }, "funding": [ { @@ -2587,7 +2408,7 @@ "type": "tidelift" } ], - "time": "2023-03-14T06:11:53+00:00" + "time": "2023-03-21T21:06:29+00:00" }, { "name": "symfony/yaml", @@ -2725,5 +2546,5 @@ "php": ">=7.2.5" }, "platform-dev": [], - "plugin-api-version": "2.2.0" + "plugin-api-version": "2.3.0" } From 23411410abd8800636063410c95da98a0e0d6114 Mon Sep 17 00:00:00 2001 From: ojopaul Date: Thu, 15 Jun 2023 13:43:30 +0100 Subject: [PATCH 07/13] - Update translation --- languages/simple-tags-es_ES.mo | Bin 95552 -> 90194 bytes languages/simple-tags-es_ES.po | 1028 ++++++++++++++++--------------- languages/simple-tags-fr_FR.mo | Bin 98281 -> 92907 bytes languages/simple-tags-fr_FR.po | 1037 ++++++++++++++++---------------- languages/simple-tags-it_IT.mo | Bin 93332 -> 87979 bytes languages/simple-tags-it_IT.po | 1029 ++++++++++++++++--------------- languages/simple-tags.pot | 914 ++++++++++++++-------------- 7 files changed, 2058 insertions(+), 1950 deletions(-) diff --git a/languages/simple-tags-es_ES.mo b/languages/simple-tags-es_ES.mo index f558ae556559d6ddce46a212cf7e598cae565d0e..480495d311166fe93930e56cd2b9c06ca1e18df9 100644 GIT binary patch delta 14520 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" -"% (%post_comment%)" +"" +"%post_title% (%post_comment%)" msgstr "" -"%post_title" -"% (%post_comment%)" +"" +"%post_title% (%post_comment%)" #: inc/class.client.tagcloud.php:64 inc/class.client.tagcloud.php:271 -#: inc/helper.options.default.php:60 +#: inc/helper.options.default.php:61 msgid "" -"" -"%tag_name%" +"%tag_name%" msgstr "" -"" -"%tag_name%" +"%tag_name%" -#: inc/helper.options.default.php:38 +#: inc/helper.options.default.php:39 msgid "%tag_name%" msgstr "%tag_name%" -#: inc/post-tags-functions.php:155 inc/class.client.post_tags.php:111 +#: inc/class.client.post_tags.php:111 inc/post-tags-functions.php:155 msgid "" -"%tag_name%" +"" +"%tag_name%" msgstr "" -"%tag_name%" +"" +"%tag_name%" -#: inc/helper.options.admin.php:242 inc/helper.options.admin.php:321 -#: inc/helper.options.admin.php:467 +#: inc/helper.options.admin.php:182 inc/helper.options.admin.php:273 +#: inc/helper.options.admin.php:419 msgid "all – On your blog and feeds." msgstr "all – En tu blog y los feed rss." -#: inc/helper.options.admin.php:103 inc/helper.options.admin.php:126 +#: inc/helper.options.admin.php:37 inc/helper.options.admin.php:60 msgid "asc – Ascending." msgstr "asc – Ascendente." -#: inc/helper.options.admin.php:243 inc/helper.options.admin.php:322 +#: inc/helper.options.admin.php:183 inc/helper.options.admin.php:274 msgid "blogonly – Only on your blog." msgstr "blogonly – Sólo en tu blog." -#: inc/helper.options.admin.php:338 +#: inc/helper.options.admin.php:290 msgid "count-asc – Least common tags between posts" msgstr "count-asc – Etiquetas menos comunes entre entradas" -#: inc/helper.options.admin.php:339 +#: inc/helper.options.admin.php:291 msgid "" "count-desc – Most common tags between posts (default)" msgstr "" "count-desc – Etiquetas más comunes entre entradas " "(predeterminado)" -#: inc/helper.options.admin.php:114 +#: inc/helper.options.admin.php:48 msgid "count – Counter." msgstr "count – Contador." -#: inc/helper.options.admin.php:91 +#: inc/helper.options.admin.php:25 msgid "count – Counter. (default)" msgstr "count – Contador. (por defecto)" -#: inc/helper.options.admin.php:336 +#: inc/helper.options.admin.php:288 msgid "date-asc – Older Entries." msgstr "date-asc – Entradas antiguas." -#: inc/helper.options.admin.php:337 +#: inc/helper.options.admin.php:289 msgid "date-desc – Newer Entries." msgstr "date-desc – Entradas más nuevas." -#: inc/helper.options.admin.php:104 inc/helper.options.admin.php:127 +#: inc/helper.options.admin.php:38 inc/helper.options.admin.php:61 msgid "desc – Descending." msgstr "desc – Descendente." -#: inc/helper.options.admin.php:138 +#: inc/helper.options.admin.php:72 msgid "flat – Display inline (no list, just a div)" msgstr "flat – Mostra en línea (sin lista, sólo un div)." -#: inc/helper.options.admin.php:244 inc/helper.options.admin.php:323 +#: inc/helper.options.admin.php:184 inc/helper.options.admin.php:275 msgid "homeonly – Only on your home page." msgstr "homeonly – Sólo en tu página principal." -#: inc/helper.options.admin.php:137 +#: inc/helper.options.admin.php:71 msgid "list – Display a formatted list (ul/li)." msgstr "list – Mostrar una lista formateada (ul/li)." -#: inc/helper.options.admin.php:340 +#: inc/helper.options.admin.php:292 msgid "name-asc – Alphabetical." msgstr "name-asc – Alfabético." -#: inc/helper.options.admin.php:341 +#: inc/helper.options.admin.php:293 msgid "name-desc – Inverse Alphabetical." msgstr "name-desc – Orden alfabético inverso." -#: inc/helper.options.admin.php:92 inc/helper.options.admin.php:115 +#: inc/helper.options.admin.php:26 inc/helper.options.admin.php:49 msgid "name – Name." msgstr "name – Nombre." -#: inc/helper.options.admin.php:466 +#: inc/helper.options.admin.php:418 msgid "no – Nowhere" msgstr "no – En ningún lugar" -#: inc/helper.options.admin.php:241 inc/helper.options.admin.php:320 +#: inc/helper.options.admin.php:181 inc/helper.options.admin.php:272 msgid "no – Nowhere (default)" msgstr "no – En ningún sitio (predeterminado)" -#: inc/helper.options.admin.php:247 inc/helper.options.admin.php:326 +#: inc/helper.options.admin.php:187 inc/helper.options.admin.php:278 msgid "pageonly – Only on your page view." msgstr "pageonly – Sólo en la vista de página." -#: inc/helper.options.admin.php:93 inc/helper.options.admin.php:342 +#: inc/helper.options.admin.php:27 inc/helper.options.admin.php:294 msgid "random – Random." msgstr "random – Aleatorio." -#: inc/helper.options.admin.php:116 +#: inc/helper.options.admin.php:50 msgid "random – Random. (default)" msgstr "aleatorio – Aleatorio. (predeterminado)" -#: inc/helper.options.admin.php:468 +#: inc/helper.options.admin.php:420 msgid "single – Only on your single post view." msgstr "single – Solo en la vista de la entrada individual." -#: inc/helper.options.admin.php:246 inc/helper.options.admin.php:325 +#: inc/helper.options.admin.php:186 inc/helper.options.admin.php:277 msgid "singleonly – Only on your single view." msgstr "singleonly – Sólo en la vista de entrada singular." -#: inc/helper.options.admin.php:469 +#: inc/helper.options.admin.php:421 msgid "" -"singular – Only on your singular view (single post & " -"page) (default)." +"singular – Only on your singular view (single post & page)" +" (default)." msgstr "" "singular – Solo en su vista singular (entrada única y " "página) (por defecto)." -#: inc/helper.options.admin.php:245 inc/helper.options.admin.php:324 +#: inc/helper.options.admin.php:185 inc/helper.options.admin.php:276 msgid "" "singularonly – Only on your singular view (single & page)." msgstr "" "singularonly – Sólo en la vista singular (entrada y " "páginas)." -#: inc/helper.options.default.php:47 inc/class.client.related_posts.php:100 +#: inc/class.client.related_posts.php:100 inc/helper.options.default.php:48 msgid "

Related posts

" msgstr "

Entradas relacionadas

" #: inc/class.client.tagcloud.php:67 inc/class.client.tagcloud.php:274 -#: inc/helper.options.default.php:58 +#: inc/helper.options.default.php:59 msgid "

Tag Cloud

" msgstr "

Nube de etiquetas

" -#: inc/helper.options.admin.php:80 +#: inc/helper.options.admin.php:14 msgid "" "‘Order tags display’ is the second. Once tags " "choosen, you can reorder them before display." @@ -385,7 +385,7 @@ msgstr "" "segundo. Una vez elegidas las etiquetas, puedes reordenarlas antes de " "mostrarlas." -#: inc/helper.options.admin.php:79 +#: inc/helper.options.admin.php:13 msgid "" "‘Order tags selection’ is the first step during " "tag's cloud generation, corresponding to collect tags." @@ -394,12 +394,12 @@ msgstr "" "paso durante la generación de la nube de etiquetas, correspondiente a la " "recopilación de etiquetas." -#: inc/helper.options.admin.php:207 inc/helper.options.admin.php:285 -#: inc/helper.options.admin.php:380 +#: inc/helper.options.admin.php:145 inc/helper.options.admin.php:235 +#: inc/helper.options.admin.php:332 msgid "Advanced usage:" msgstr "Uso avanzado:" -#: inc/helper.options.admin.php:82 +#: inc/helper.options.admin.php:16 msgid "" "Example: You want display randomly the 100 tags most " "popular.
" @@ -432,7 +432,7 @@ msgstr "Activo" msgid "Add" msgstr "Añadir" -#: inc/autolinks.php:847 +#: inc/autolinks.php:939 msgid "Add Auto Links" msgstr "Añadir enlaces automáticos" @@ -444,16 +444,28 @@ msgstr "Añadir términos automáticos" msgid "Add Auto Terms to existing content" msgstr "Añade términos automáticos al contenido existente" -#: inc/helper.options.admin.php:492 +#: inc/autolinks.php:796 +msgid "Add links for all terms" +msgstr "" + +#: inc/helper.options.admin.php:444 msgid "Add links for post title" msgstr "Añadir enlaces para el título de la entrada" -#: inc/autolinks.php:467 inc/helper.options.admin.php:431 +#: inc/helper.options.admin.php:383 msgid "Add links for unattached terms" msgstr "Añadir enlaces para términos no adjuntos" -#: inc/suggestterms.php:127 inc/tag-clouds.php:128 inc/autolinks.php:128 -#: inc/related-posts.php:128 inc/post-tags.php:128 inc/taxonomies.php:155 +#: inc/autolinks.php:765 +msgid "Add links to synonyms" +msgstr "" + +#: inc/autolinks.php:769 +msgid "Add links to the content synonyms." +msgstr "" + +#: inc/autolinks.php:126 inc/post-tags.php:126 inc/related-posts.php:128 +#: inc/suggestterms.php:127 inc/tag-clouds.php:128 inc/taxonomies.php:155 msgid "Add New" msgstr "Añadir nuevo" @@ -464,7 +476,7 @@ msgstr "Añadir nuevo" msgid "Add new %s" msgstr "Añadir nuevo %s" -#: inc/autolinks.php:255 +#: inc/autolinks.php:257 msgid "Add new Auto Links" msgstr "Añadir nuevos enlaces automáticos" @@ -496,7 +508,7 @@ msgstr "Añadir nuevos términos sugeridos" msgid "Add new Taxonomy" msgstr "Añadir nueva taxonomía" -#: inc/class.admin.php:476 +#: inc/class.admin.php:481 msgid "Add New TaxoPress Logs" msgstr "Añadir nuevos registros de TaxoPress" @@ -546,7 +558,7 @@ msgstr "Añadir términos" msgid "Add Terms Display" msgstr "Añadir visualización de términos" -#: inc/post-tags.php:648 +#: inc/post-tags.php:679 msgid "Add Terms for Current Post" msgstr "Añadir términos para la entrada actual" @@ -575,16 +587,16 @@ msgstr "Añade la taxonomía a la API wp-json de WordPress." msgid "Admin Area" msgstr "Área de administración" -#: inc/class.admin.php:776 +#: inc/class.admin.php:797 msgid "Administration" msgstr "Administración" -#: inc/autolinks.php:302 inc/related-posts.php:295 inc/post-tags.php:296 -#: inc/autoterms.php:427 inc/taxonomies.php:370 +#: inc/autolinks.php:322 inc/autoterms.php:427 inc/post-tags.php:305 +#: inc/related-posts.php:295 inc/taxonomies.php:370 msgid "Advanced" msgstr "Avanzado" -#: inc/helper.options.admin.php:62 +#: inc/functions.inc.php:404 msgid "Advanced Manage Terms" msgstr "Administración avanzada de términos" @@ -592,8 +604,8 @@ msgstr "Administración avanzada de términos" msgid "Advanced usage:" msgstr "Uso avanzado:" -#: inc/related-posts-table.php:338 inc/related-posts-table.php:355 -#: inc/class.admin.mass.php:123 inc/tag-clouds-table.php:345 +#: inc/class.admin.mass.php:123 inc/related-posts-table.php:338 +#: inc/related-posts-table.php:355 inc/tag-clouds-table.php:345 msgid "All" msgstr "Todo" @@ -612,7 +624,7 @@ msgstr "¡Todo listo! Se añadieron %s términos." msgid "All Items" msgstr "Todos los elementos" -#: inc/autolinks.php:391 +#: inc/autolinks.php:414 msgid "All lowercase" msgstr "Todo en minúsculas" @@ -620,15 +632,15 @@ msgstr "Todo en minúsculas" msgid "All Media Tags" msgstr "Todas las etiquetas de medios" -#: inc/tag-clouds.php:334 inc/related-posts.php:378 +#: inc/related-posts.php:378 inc/tag-clouds.php:334 msgid "All post types" msgstr "Todos los tipos de contenido" -#: inc/terms-table.php:210 inc/taxonomies.php:194 +#: inc/taxonomies.php:194 inc/terms-table.php:217 msgid "All Taxonomies" msgstr "Todas las taxonomías" -#: inc/autolinks.php:387 +#: inc/autolinks.php:410 msgid "All uppercase" msgstr "Todo en mayúsculas" @@ -636,7 +648,7 @@ msgstr "Todo en mayúsculas" msgid "Alphabetical" msgstr "Alfabético" -#: inc/helper.options.admin.php:479 +#: inc/helper.options.admin.php:431 msgid "" "An engine replacement alternative uses DOMDocument PHP class and " "theoretically offers better performance. If your server does not offer the " @@ -670,8 +682,8 @@ msgstr "¿Estás seguro de que quieres desactivar todos los registros?" msgid "ASC" msgstr "Asc" -#: inc/suggestterms.php:515 inc/tag-clouds.php:453 inc/tag-clouds.php:488 -#: inc/class.admin.clickterms.php:89 +#: inc/class.admin.clickterms.php:89 inc/suggestterms.php:515 +#: inc/tag-clouds.php:453 inc/tag-clouds.php:488 msgid "Ascending" msgstr "Ascendente" @@ -679,7 +691,7 @@ msgstr "Ascendente" msgid "Attempt to automatically display related posts" msgstr "Intentar mostrar automáticamente las entradas relacionadas" -#: inc/post-tags.php:414 +#: inc/post-tags.php:429 msgid "Attempt to automatically display terms" msgstr "Intentar mostrar automáticamente los términos" @@ -687,15 +699,15 @@ msgstr "Intentar mostrar automáticamente los términos" msgid "Auto Link" msgstr "Enlance automático" -#: inc/class.admin.php:778 +#: inc/class.admin.php:799 msgid "Auto link" msgstr "Autoenlace" -#: inc/autolinks.php:430 inc/autolinks-table.php:69 +#: inc/autolinks-table.php:69 inc/autolinks.php:457 msgid "Auto Link areas" msgstr "Áreas de enlances automáticos" -#: inc/autolinks.php:401 +#: inc/autolinks.php:424 msgid "Auto Link case" msgstr "Formato de enlace automático" @@ -703,32 +715,32 @@ msgstr "Formato de enlace automático" msgid "Auto Link Post type" msgstr "Tipo de entrada de enlace automático" -#: inc/autolinks.php:440 +#: inc/autolinks.php:469 msgid "Auto Link title attribute" msgstr "Atributo de título de enlace automático" -#: inc/autolinks.php:72 inc/autolinks.php:73 inc/autolinks.php:126 -#: inc/helper.options.admin.php:34 inc/autolinks-table.php:15 +#: inc/autolinks-table.php:15 inc/autolinks.php:71 inc/autolinks.php:72 +#: inc/autolinks.php:125 inc/functions.inc.php:380 msgid "Auto Links" msgstr "Enlances automáticos" -#: inc/autolinks.php:130 inc/helper.options.admin.php:37 +#: inc/autolinks.php:128 inc/functions.inc.php:381 msgid "" -"Auto Links can automatically create links to your defined terms. For " -"example, if you have a term called “WordPress”, the Auto Links feature can " -"find the word “WordPress” in your content and add links to the archive page " -"for that term." +"Auto Links can automatically create links to your defined terms. For example," +" if you have a term called “WordPress”, the Auto Links feature can find the " +"word “WordPress” in your content and add links to the archive page for that " +"term." msgstr "" "Los enlaces automáticos pueden crear automáticamente enlaces a tus términos " "definidos. Por ejemplo, si tiene un término llamado «WordPress», la " "característica de enlaces automáticos puede encontrar la palabra «WordPress» " "en tu contenido y añadir enlaces a la página de archivo para ese término." -#: inc/autolinks-functions.php:261 +#: inc/autolinks-functions.php:266 msgid "Auto Links successfully deleted." msgstr "Los enlances automáticos han sido borrado correctamente." -#: inc/helper.options.admin.php:399 +#: inc/helper.options.admin.php:351 msgid "Auto links tags" msgstr "Etiquetas de enlaces automáticos" @@ -744,7 +756,7 @@ msgstr "Tipo de contenido de término automático" msgid "Auto term settings not found" msgstr "Ajustes del término automático no encontrados" -#: inc/autoterms.php:74 inc/autoterms.php:75 inc/helper.options.admin.php:41 +#: inc/autoterms.php:74 inc/autoterms.php:75 inc/functions.inc.php:386 msgid "Auto Terms" msgstr "Términos automáticos" @@ -752,7 +764,7 @@ msgstr "Términos automáticos" msgid "Auto terms" msgstr "Términos automáticos" -#: inc/autoterms.php:241 inc/helper.options.admin.php:44 +#: inc/autoterms.php:241 inc/functions.inc.php:387 msgid "" "Auto Terms can scan your content and automatically assign new and existing " "terms." @@ -826,33 +838,33 @@ msgstr "Visualización automática" msgid "Automatic Term Suggestions" msgstr "Sugerencias automáticas de términos" -#: includes-core/TaxopressCoreAdmin.php:175 +#: includes-core/TaxopressCoreAdmin.php:178 msgid "Automatically add new terms to your content" msgstr "Añade automáticamente nuevos términos a tu contenido" -#: includes-core/TaxopressCoreAdmin.php:98 +#: includes-core/TaxopressCoreAdmin.php:103 msgid "Automatically add terms to imported content" msgstr "Añade automáticamente nuevos términos al contenido importado" -#: includes-core/TaxopressCoreAdmin.php:97 +#: includes-core/TaxopressCoreAdmin.php:102 msgid "Automatically create new terms" msgstr "Crear automáticamente nuevos términos" -#: inc/helper.options.admin.php:312 +#: inc/helper.options.admin.php:263 msgid "Automatically display related posts into feeds" msgstr "Mostrar automáticamente entradas relacionadas en los feeds" -#: inc/helper.options.admin.php:316 +#: inc/helper.options.admin.php:268 msgid "Automatically display related posts into post content" msgstr "" "Mostrar automáticamente entradas relacionadas dentro del contenido de la " "entrada" -#: inc/helper.options.admin.php:233 +#: inc/helper.options.admin.php:172 msgid "Automatically display tags list into feeds" msgstr "Mostrar automáticamente la lista de etiquetas en los feeds" -#: inc/helper.options.admin.php:238 +#: inc/helper.options.admin.php:178 msgid "Automatically display tags list into post content:" msgstr "" "Mostrar automáticamente la lista de etiquetas en el contenido de las " @@ -883,12 +895,13 @@ msgstr "Volver a las etiquetas de medios" msgid "Batches wait time" msgstr "Tiempo de espera por el procesamiento por lotes" -#: inc/related-posts.php:505 inc/post-tags.php:408 inc/post-tags-table.php:343 -#: inc/related-posts-table.php:383 inc/autolinks-table.php:344 +#: inc/autolinks-table.php:344 inc/post-tags-table.php:343 +#: inc/post-tags.php:423 inc/related-posts-table.php:383 +#: inc/related-posts.php:505 msgid "Blog display" msgstr "Visualización del blog" -#: inc/helper.options.admin.php:309 +#: inc/helper.options.admin.php:259 msgid "" "By default, related posts work with post tags, but you can use a custom " "taxonomy. Default value : post_tag" @@ -896,7 +909,13 @@ msgstr "" "Por defecto, las entradas relacionadas funcionan con etiquetas de entrada, " "pero puedes usar una taxonomía personalizada. Valor por defecto: `post_tag`" -#: inc/helper.options.admin.php:495 +#: inc/autolinks.php:800 +msgid "" +"By default, TaxoPress will add links for all terms. If this box is unchecked," +" Auto Links will only add links for terms that are attached to the post." +msgstr "" + +#: inc/helper.options.admin.php:447 msgid "" "By default, TaxoPress will exclude Auto Links for terms that are attached to " "the post title." @@ -904,7 +923,7 @@ msgstr "" "Por defecto, TaxoPress excluirá los enlaces automáticos para los términos " "que se adjuntan al título de la entrada." -#: inc/helper.options.admin.php:434 +#: inc/helper.options.admin.php:386 msgid "" "By default, TaxoPress will only add Auto Links for terms that are attached " "to the post. If this box is checked, TaxoPress will add links for all terms" @@ -913,30 +932,21 @@ msgstr "" "que se adjuntan a la entrada. Si esta caja está marcada, TaxoPress añadirá " "enlaces para todos los términos" -#: inc/autolinks.php:469 -msgid "" -"By default, TaxoPress will only add Auto Links for terms that are attached " -"to the post. If this box is checked, TaxoPress will add links for all terms." -msgstr "" -"Por defecto, TaxoPress solo añadirá enlaces automáticos para los términos " -"que se adjuntan a la entrada. Si esta casilla está marcada, TaxoPress " -"añadirá enlaces para todos los términos." - #: inc/taxonomies.php:508 msgid "" "Can terms in this taxonomy be organized into hierarchical relationships?" msgstr "" "¿Pueden los términos de esta taxonomía organizarse en relaciones jerárquicas?" -#: inc/terms-table.php:609 +#: inc/terms-table.php:638 msgid "Cancel" msgstr "Cancelar" -#: inc/class.admin.php:386 +#: inc/class.admin.php:390 msgid "Change selection" msgstr "Cambiar la selección" -#: inc/autolinks.php:748 +#: inc/autolinks.php:835 msgid "" "Change the priority of the Auto Links functions on the_content hook. This is " "useful for fixing conflicts with other plugins. Higher number means autolink " @@ -1000,11 +1010,11 @@ msgstr "" msgid "Click to display tags" msgstr "Haz clic para mostrar las etiquetas" -#: inc/tag-clouds.php:384 inc/tag-clouds-table.php:362 +#: inc/tag-clouds-table.php:362 inc/tag-clouds.php:384 msgid "Cloud" msgstr "Nube" -#: inc/autolinks.php:687 +#: inc/autolinks.php:699 msgid "code" msgstr "code" @@ -1016,17 +1026,17 @@ msgstr "Completado: %s entradas comprobadas." msgid "Content statuses" msgstr "Estados de contenido" -#: inc/autolinks.php:292 +#: inc/autolinks.php:301 msgid "Control" msgstr "Control" -#: inc/terms-table.php:116 inc/class-taxonomies-table.php:71 -#: inc/class-tag-table.php:43 +#: inc/class-tag-table.php:43 inc/class-taxonomies-table.php:71 +#: inc/terms-table.php:117 msgid "Count" msgstr "Contador" -#: inc/suggestterms.php:490 inc/tag-clouds.php:436 inc/tag-clouds.php:471 #: inc/class.admin.clickterms.php:76 inc/class.widgets.php:272 +#: inc/suggestterms.php:490 inc/tag-clouds.php:436 inc/tag-clouds.php:471 msgid "Counter" msgstr "Contador" @@ -1034,11 +1044,11 @@ msgstr "Contador" msgid "Counter (default)" msgstr "Contador (por defecto)" -#: inc/post-tags.php:73 +#: inc/post-tags.php:72 msgid "Current Post" msgstr "Entrada actual" -#: inc/related-posts.php:382 inc/related-posts-table.php:336 +#: inc/related-posts-table.php:336 inc/related-posts.php:382 msgid "Current post type" msgstr "Tipo de contenido actual" @@ -1085,6 +1095,10 @@ msgstr "Valor de confianza de la API de Dandelion" msgid "Dandelion API token" msgstr "Token de la API de Dandelion" +#: inc/dashboard.php:62 inc/dashboard.php:63 inc/dashboard.php:89 +msgid "Dashboard" +msgstr "" + #: inc/class.admin.suggest.php:57 msgid "dataTXT by Dandelion" msgstr "dataTXT de Dandelion" @@ -1110,11 +1124,11 @@ msgstr "Taxonomía por defecto" msgid "Default Terms" msgstr "Términos por defecto" -#: inc/autoterms-table.php:275 inc/terms-table.php:158 inc/terms-table.php:417 +#: inc/autolinks-table.php:275 inc/autoterms-logs-table.php:240 +#: inc/autoterms-table.php:275 inc/class-tag-table.php:195 #: inc/post-tags-table.php:275 inc/related-posts-table.php:276 -#: inc/autoterms-logs-table.php:240 inc/class-tag-table.php:195 -#: inc/tag-clouds-table.php:276 inc/suggestterms-table.php:274 -#: inc/autolinks-table.php:275 +#: inc/suggestterms-table.php:274 inc/tag-clouds-table.php:276 +#: inc/terms-table.php:164 inc/terms-table.php:424 msgid "Delete" msgstr "Borrar" @@ -1142,8 +1156,8 @@ msgstr "Borrar términos no utilizados" msgid "DESC (default)" msgstr "Desc (por defecto)" -#: inc/suggestterms.php:519 inc/tag-clouds.php:454 inc/tag-clouds.php:489 -#: inc/class.admin.clickterms.php:89 +#: inc/class.admin.clickterms.php:89 inc/suggestterms.php:519 +#: inc/tag-clouds.php:454 inc/tag-clouds.php:489 msgid "Descending" msgstr "Descendente" @@ -1155,9 +1169,9 @@ msgstr "Describe para qué se usa tu taxonomía." msgid "Description" msgstr "Descripción" -#: inc/suggestterms.php:163 inc/terms.php:257 inc/tag-clouds.php:161 -#: inc/autolinks.php:161 inc/related-posts.php:161 inc/post-tags.php:160 -#: inc/autoterms.php:218 inc/autoterms.php:273 inc/taxonomies.php:203 +#: inc/autolinks.php:162 inc/autoterms.php:218 inc/autoterms.php:273 +#: inc/post-tags.php:159 inc/related-posts.php:161 inc/suggestterms.php:163 +#: inc/tag-clouds.php:161 inc/taxonomies.php:203 inc/terms.php:260 msgid "Description here." msgstr "Descripción aquí." @@ -1165,7 +1179,7 @@ msgstr "Descripción aquí." msgid "Design" msgstr "Diseño" -#: includes-core/TaxopressCoreAdmin.php:126 +#: includes-core/TaxopressCoreAdmin.php:129 msgid "Detailed documentation is also available on the plugin website." msgstr "Una documentación detallada se encuentra en el sitio del plugin." @@ -1181,7 +1195,7 @@ msgstr "Desactivar términos automáticos" msgid "Disable Logs" msgstr "Desactivar los registros" -#: inc/related-posts.php:285 inc/post-tags.php:286 +#: inc/post-tags.php:291 inc/related-posts.php:285 msgid "Display" msgstr "Mostrar" @@ -1189,7 +1203,7 @@ msgstr "Mostrar" msgid "Display Format" msgstr "Formato de visualización" -#: inc/tag-clouds.php:394 inc/tag-clouds-table.php:69 +#: inc/tag-clouds-table.php:69 inc/tag-clouds.php:394 msgid "Display format" msgstr "Formato de visualización" @@ -1205,20 +1219,11 @@ msgstr "" msgid "Do you really want to restore the default options?" msgstr "¿Realmente quieres restaurar las opciones predeterminadas?" -#: inc/autolinks.php:496 -msgid "Don't add Auto Links if the term is already attached to the post." -msgstr "" -"No añadir enlaces automáticos si el término ya está adjunto a la entrada." - -#: inc/autolinks.php:494 -msgid "Don't add links for attached terms" -msgstr "No añadir enlaces para los términos adjuntos" - -#: inc/autoterms-table.php:264 inc/terms-table.php:383 -#: inc/post-tags-table.php:264 inc/related-posts-table.php:265 +#: inc/autolinks-table.php:264 inc/autoterms-table.php:264 #: inc/class-taxonomies-table.php:271 inc/class.admin.mass.php:263 -#: inc/tag-clouds-table.php:265 inc/suggestterms-table.php:263 -#: inc/autolinks-table.php:264 +#: inc/post-tags-table.php:264 inc/related-posts-table.php:265 +#: inc/suggestterms-table.php:263 inc/tag-clouds-table.php:265 +#: inc/terms-table.php:388 msgid "Edit" msgstr "Editar" @@ -1229,7 +1234,7 @@ msgstr "Editar" msgid "Edit %s" msgstr "Editar %s" -#: inc/autolinks.php:248 +#: inc/autolinks.php:250 msgid "Edit Auto Links" msgstr "Editar los enlaces automáticos" @@ -1261,7 +1266,7 @@ msgstr "Editar los términos sugeridos" msgid "Edit Taxonomy" msgstr "Editar taxonomía" -#: inc/class.admin.php:474 +#: inc/class.admin.php:479 msgid "Edit TaxoPress Logs" msgstr "Editar los registros de TaxoPress" @@ -1273,15 +1278,15 @@ msgstr "Editar visualización de términos" msgid "Edit Terms for Current Post" msgstr "Editar los términos para la entrada actual" -#: inc/class.admin.suggest.php:55 inc/class.admin.clickterms.php:132 +#: inc/class.admin.clickterms.php:132 inc/class.admin.suggest.php:55 msgid "Edit this metabox" msgstr "Editar esta caja meta" -#: inc/tag-clouds.php:592 inc/class.widgets.php:320 +#: inc/class.widgets.php:320 inc/tag-clouds.php:592 msgid "Em" msgstr "Em" -#: inc/class.admin.php:782 +#: inc/class.admin.php:803 msgid "Embedded Tags" msgstr "Incrustadas" @@ -1289,7 +1294,7 @@ msgstr "Incrustadas" msgid "Enable a custom query_var key for this taxonomy." msgstr "Activa una clave `query_var` personalizada para esta taxonomía." -#: inc/helper.options.admin.php:463 +#: inc/helper.options.admin.php:415 msgid "Enable autolinks into post content for theses views:" msgstr "" "Activar los enlaces automáticos en el contenido de la entrada para estas " @@ -1303,26 +1308,26 @@ msgstr "Activar los colores de los términos" msgid "Enable Logs" msgstr "Activar los registros" -#: inc/autolinks.php:542 +#: inc/autolinks.php:523 msgid "Enable this Auto Links instance for:" msgstr "Activar esta instancia de enlaces automáticos para:" -#: inc/helper.options.admin.php:218 +#: inc/helper.options.admin.php:156 msgid "" -"Enabling this will allow Wordpress to look for tag cloud shortcode " -"[st_tag_cloud] or [st-tag-cloud] when displaying " -"posts. WordPress replace this shortcode by a tag cloud." +"Enabling this will allow Wordpress to look for tag cloud shortcode " +"[st_tag_cloud] or [st-tag-cloud] when displaying posts. " +"WordPress replace this shortcode by a tag cloud." msgstr "" "Al activar esto permitirá que WordPress busque el shortcode de la nube de " "etiquetas [st_tag_cloud] o [st-tag-cloud] al " "mostrar entradas. WordPress reemplaza este shortcode por una nube de " "etiquetas." -#: includes-core/TaxopressCoreAdmin.php:88 +#: includes-core/TaxopressCoreAdmin.php:93 msgid "Enhance the power of TaxoPress with the Pro version:" msgstr "Aumente la potencia de TaxoPress con la versión Pro:" -#: inc/helper.options.admin.php:169 inc/helper.options.admin.php:372 +#: inc/helper.options.admin.php:103 inc/helper.options.admin.php:324 msgid "Enter the positioned title before the list, leave blank for no title:" msgstr "Introduce título previo a la lista, déjalo en blanco para ninguno:" @@ -1338,11 +1343,11 @@ msgstr "" msgid "Enter the terms to rename and their new names." msgstr "Introduce los términos a renombrar y sus nuevos nombres." -#: inc/helper.options.admin.php:364 +#: inc/helper.options.admin.php:316 msgid "Enter the text to show when there is no related post:" msgstr "Introduce texto a mostrar cuando no hay entradas relacionadas:" -#: inc/helper.options.admin.php:161 +#: inc/helper.options.admin.php:95 msgid "Enter the text to show when there is no tag:" msgstr "Introduce el texto a mostrar cuando no hay etiquetas:" @@ -1360,7 +1365,11 @@ msgstr "" "Error. ¡Tienes que introducir un solo término para fusionarlo en el nombre " "del nuevo término!" -#: inc/helper.options.admin.php:450 +#: inc/class.admin.php:169 +msgid "Error: wrong data" +msgstr "" + +#: inc/helper.options.admin.php:402 msgid "" "Example: If you enter the term \"Paris\", the auto link tags feature will " "never replace this term by this link." @@ -1368,7 +1377,7 @@ msgstr "" "Ejemplo: si ingresa el término «París», la característica de enlace " "automático de etiquetas nunca reemplazará este término por este enlace." -#: inc/helper.options.admin.php:442 +#: inc/helper.options.admin.php:394 msgid "" "Example: If you ignore case, auto link feature will replace the word " "\"wordpress\" by the tag link \"WordPress\"." @@ -1376,7 +1385,7 @@ msgstr "" "Ejemplo: Si ignoras las mayúsculas, la función de autoenlace sustituirá la " "palabra «wordpress» con el enlace a la etiqueta «WordPress»." -#: inc/helper.options.admin.php:402 +#: inc/helper.options.admin.php:354 msgid "" "Example: You have a tag called \"WordPress\" and your post content contains " "\"wordpress\", this feature will replace \"wordpress\" by a link to " @@ -1384,10 +1393,10 @@ msgid "" msgstr "" "Ejemplo: Tienes una etiqueta llamada «WordPress» y en el contenido de tu " "entrada aparece «wordpress», esta caracteristica sustituirá «wordpress» por " -"un enlace a la página de la etiqueta «wordpress». (http://myblog.net/tag/" -"wordpress/)" +"un enlace a la página de la etiqueta «wordpress». (http://myblog." +"net/tag/wordpress/)" -#: inc/autolinks.php:297 +#: inc/autolinks.php:308 msgid "Exceptions" msgstr "Excepciones" @@ -1395,13 +1404,13 @@ msgstr "Excepciones" msgid "Exclude previously analyzed content" msgstr "Excluir el contenido analizado previamente" -#: inc/helper.options.admin.php:447 +#: inc/helper.options.admin.php:399 msgid "Exclude some terms from tag link. For Ads Link subtition, etc." msgstr "" "Excluye algunos términos del enlace de la etiqueta. Para subtítulos de " "enlaces de anuncios, etc." -#: inc/autolinks.php:656 +#: inc/autolinks.php:660 msgid "Exclude terms from Auto Links" msgstr "Excluir términos de enlaces automáticos" @@ -1421,14 +1430,14 @@ msgstr "Términos existentes de la taxonomía" msgid "Existing terms on your site" msgstr "Términos exixtentes en tu sitio" +#: inc/autolinks.php:749 inc/autolinks.php:781 inc/autolinks.php:847 +#: inc/autoterms.php:600 inc/autoterms.php:614 inc/autoterms.php:645 +#: inc/autoterms.php:659 inc/autoterms.php:689 inc/autoterms.php:746 +#: inc/autoterms.php:771 inc/autoterms.php:796 inc/autoterms.php:871 +#: inc/post-tags.php:546 inc/related-posts.php:458 inc/related-posts.php:671 #: inc/suggestterms.php:444 inc/suggestterms.php:555 inc/suggestterms.php:569 #: inc/suggestterms.php:598 inc/suggestterms.php:656 inc/tag-clouds.php:516 -#: inc/tag-clouds.php:539 inc/tag-clouds.php:612 inc/autolinks.php:452 -#: inc/autolinks.php:479 inc/autolinks.php:758 inc/related-posts.php:458 -#: inc/related-posts.php:671 inc/post-tags.php:515 inc/autoterms.php:600 -#: inc/autoterms.php:614 inc/autoterms.php:645 inc/autoterms.php:659 -#: inc/autoterms.php:689 inc/autoterms.php:746 inc/autoterms.php:771 -#: inc/autoterms.php:796 inc/autoterms.php:871 inc/taxonomies.php:492 +#: inc/tag-clouds.php:539 inc/tag-clouds.php:612 inc/taxonomies.php:492 #: inc/taxonomies.php:611 inc/taxonomies.php:626 inc/taxonomies.php:767 #: inc/taxonomies.php:803 inc/taxonomies.php:828 inc/taxonomies.php:863 #: inc/taxonomies.php:887 inc/taxonomies.php:911 inc/taxonomies.php:936 @@ -1437,16 +1446,16 @@ msgstr "Términos exixtentes en tu sitio" msgid "False" msgstr "Falso" -#: includes-core/TaxopressCoreAdmin.php:99 +#: includes-core/TaxopressCoreAdmin.php:104 msgid "Fast, professional support" msgstr "Asistencia rápida y profesional" -#: inc/class.admin.php:780 +#: inc/class.admin.php:801 msgid "Features" msgstr "Características" -#: inc/terms-table.php:215 inc/autoterms-logs-table.php:172 -#: inc/class.admin.mass.php:225 +#: inc/autoterms-logs-table.php:172 inc/class.admin.mass.php:225 +#: inc/terms-table.php:222 msgid "Filter" msgstr "Filtrar" @@ -1496,7 +1505,7 @@ msgstr "" "El tamaño mínimo de la fuente no debe ser mayor que el valor del tamaño " "máximo de la fuente." -#: inc/autolinks.php:636 +#: inc/autolinks.php:639 msgid "" "For example, '4' would only link terms that are of 4 characters or less in " "length." @@ -1504,7 +1513,7 @@ msgstr "" "Por ejemplo, «4» solo vincularía términos que tengan 4 caracteres o menos de " "longitud." -#: inc/autolinks.php:623 +#: inc/autolinks.php:622 msgid "" "For example, '4' would only link terms that are of 4 characters or more in " "length." @@ -1512,7 +1521,7 @@ msgstr "" "Por ejemplo, «4» solo vincularía términos que tengan 4 caracteres o más de " "longitud." -#: inc/helper.options.admin.php:458 +#: inc/helper.options.admin.php:410 msgid "" "For expert, possibility to change the priority of autolinks functions on " "the_content hook. Useful for fix a conflict with an another plugin. Default: " @@ -1526,33 +1535,33 @@ msgstr "" msgid "Format:" msgstr "Formato:" -#: inc/suggestterms.php:285 inc/tag-clouds.php:281 inc/autolinks.php:282 -#: inc/related-posts.php:280 inc/post-tags.php:281 inc/autoterms.php:402 +#: inc/autolinks.php:287 inc/autoterms.php:402 inc/post-tags.php:284 +#: inc/related-posts.php:280 inc/suggestterms.php:285 inc/tag-clouds.php:281 #: inc/taxonomies.php:340 msgid "General" msgstr "General" -#: inc/autolinks.php:677 inc/related-posts.php:337 +#: inc/autolinks.php:689 inc/related-posts.php:337 msgid "H1" msgstr "H1" -#: inc/autolinks.php:678 inc/related-posts.php:341 +#: inc/autolinks.php:690 inc/related-posts.php:341 msgid "H2" msgstr "H2" -#: inc/autolinks.php:679 inc/related-posts.php:345 +#: inc/autolinks.php:691 inc/related-posts.php:345 msgid "H3" msgstr "H3" -#: inc/autolinks.php:680 inc/related-posts.php:349 +#: inc/autolinks.php:692 inc/related-posts.php:349 msgid "H4" msgstr "H4" -#: inc/autolinks.php:681 inc/related-posts.php:354 +#: inc/autolinks.php:693 inc/related-posts.php:354 msgid "H5" msgstr "H5" -#: inc/autolinks.php:682 inc/related-posts.php:358 +#: inc/autolinks.php:694 inc/related-posts.php:358 msgid "H6" msgstr "H6" @@ -1577,7 +1586,7 @@ msgstr "" "Estos son los tokens que puedes utilizar para el formato del enlace de " "término" -#: inc/post-tags.php:684 +#: inc/post-tags.php:717 msgid "Here are the tokens you can use for Terms for Current Post format" msgstr "" "Estos son los tokens que puedes utilizar para el formato de términos para la " @@ -1586,15 +1595,15 @@ msgstr "" #: review-request/review.php:275 msgid "" "Hey, you've been using TaxoPress for %s on your site. We hope the plugin has " -"been useful. Please could you quickly leave a 5-star rating on WordPress." -"org? It really does help to keep TaxoPress growing." +"been useful. Please could you quickly leave a 5-star rating on WordPress.org?" +" It really does help to keep TaxoPress growing." msgstr "" "Hola, has utilizado TaxoPress durante %s en tu sitio. Esperamos que el " "plugin haya sido útil. Por favor, ¿podría dejar rápidamente una valoración " "de 5 estrellas en WordPress.org? De verdad que ayuda a que TaxoPress siga " "creciendo." -#: inc/post-tags.php:530 +#: inc/post-tags.php:561 msgid "Hide display output if no terms ?" msgstr "¿Ocultar la salida si no hay términos?" @@ -1614,8 +1623,9 @@ msgstr "¿Ocultar el título en la salida?" msgid "Hide title in output?" msgstr "¿Quieres ocultar el título en la salida?" -#: inc/related-posts.php:504 inc/post-tags.php:407 inc/post-tags-table.php:342 -#: inc/related-posts-table.php:382 inc/autolinks-table.php:343 +#: inc/autolinks-table.php:343 inc/post-tags-table.php:342 +#: inc/post-tags.php:422 inc/related-posts-table.php:382 +#: inc/related-posts.php:504 msgid "Homepage" msgstr "Página de inicio" @@ -1637,7 +1647,7 @@ msgid "" msgstr "" "Si eliges 5, TaxoPress borrará todos los términos adjuntos a menos de 5 %s." -#: inc/autolinks.php:658 +#: inc/autolinks.php:664 msgid "" "If you enter the terms \"WordPress\", \"Website\" the Auto Links feature " "will never replace these terms. Separate multiple entries with a comma." @@ -1646,13 +1656,13 @@ msgstr "" "enlaces automáticos nunca reemplazará estos términos. Separa varias entradas " "con una coma." -#: includes-core/TaxopressCoreAdmin.php:115 +#: includes-core/TaxopressCoreAdmin.php:120 msgid "If you need help or have a new feature request, let us know." msgstr "" "Si necesitas ayuda o tienes una petición de nueva característica, háznoslo " "saber." -#: inc/autolinks.php:873 inc/autoterms.php:1122 +#: inc/autolinks.php:966 inc/autoterms.php:1122 #, php-format msgid "" "If your website language does not use the A-Z alphabet, %1s please read this " @@ -1661,11 +1671,11 @@ msgstr "" "Si el idioma de tu web no utiliza el alfabeto A-Z, %1s por favor lee esta " "documentación. %2s" -#: inc/helper.options.admin.php:439 +#: inc/helper.options.admin.php:391 msgid "Ignore case for auto link feature ?" msgstr "¿Ignorar mayúsculas para la función de autoenlace?" -#: inc/helper.options.admin.php:269 +#: inc/helper.options.admin.php:216 msgid "Include categories in result ?" msgstr "¿Incluir categorías en el resultado?" @@ -1673,6 +1683,10 @@ msgstr "¿Incluir categorías en el resultado?" msgid "Invalid access token !" msgstr "¡Token de acceso no válido!" +#: inc/class.admin.php:164 +msgid "Invalid nonce token!" +msgstr "" + #: inc/post-tags-functions.php:354 msgid "Invalid post terms ID." msgstr "ID de términos de entrada no válida." @@ -1716,15 +1730,15 @@ msgstr "Por favor, selecciona al menos una taxonomía para continuar" msgid "Least common tags between posts" msgstr "Etiquetas menos comunes entre las entradas" -#: inc/helper.options.admin.php:183 +#: inc/helper.options.admin.php:118 msgid "Least popular color:" msgstr "Color de menos popular:" -#: inc/helper.options.admin.php:194 +#: inc/helper.options.admin.php:131 msgid "Least popular font size:" msgstr "Tamaño fuente menos popular:" -#: inc/class.admin.php:788 +#: inc/class.admin.php:809 msgid "Legacy" msgstr "Heredado" @@ -1754,8 +1768,8 @@ msgstr "" msgid "Limit the number of logs" msgstr "Limitar el número de registros" -#: inc/tag-clouds.php:385 inc/tag-clouds-table.php:363 -#: inc/class.widgets.php:335 +#: inc/class.widgets.php:335 inc/tag-clouds-table.php:363 +#: inc/tag-clouds.php:385 msgid "List (UL/LI)" msgstr "Lista (UL/LI)" @@ -1763,7 +1777,7 @@ msgstr "Lista (UL/LI)" msgid "Logs" msgstr "Registros" -#: inc/autolinks.php:231 +#: inc/autolinks.php:233 msgid "Manage Auto Links" msgstr "Gestionar los enlaces automáticos" @@ -1803,7 +1817,7 @@ msgstr "Actualización manual de la entrada" msgid "Mass Edit Terms" msgstr "Editar términos en lotes" -#: inc/helper.options.admin.php:55 +#: inc/functions.inc.php:398 msgid "Mass Edit terms" msgstr "Editar términos en lotes" @@ -1811,7 +1825,7 @@ msgstr "Editar términos en lotes" msgid "Mass edit terms" msgstr "Editar términos en lotes" -#: inc/helper.options.admin.php:263 +#: inc/helper.options.admin.php:209 msgid "Max tags display:" msgstr "Máx. de etiquetas a mostrar:" @@ -1819,31 +1833,31 @@ msgstr "Máx. de etiquetas a mostrar:" msgid "Max tags to display: (default: 45)" msgstr "Máx. de etiquetas a mostrar: (predeterminado: 45)" -#: inc/autolinks.php:634 +#: inc/autolinks.php:635 msgid "Maximum character length for an Auto Link" msgstr "Longitud máxima de caracteres para un enlace automático" -#: inc/helper.options.admin.php:423 +#: inc/helper.options.admin.php:375 msgid "Maximum number of links for the same tag:" msgstr "Número máximo de enlaces para la misma etiqueta:" -#: inc/autolinks.php:608 +#: inc/autolinks.php:601 msgid "Maximum number of links for the same term" msgstr "Número máximo de enlaces para el mismo término" -#: inc/helper.options.admin.php:415 +#: inc/helper.options.admin.php:367 msgid "Maximum number of links per article:" msgstr "Número máximo de enlaces por artículo:" -#: inc/autolinks.php:595 +#: inc/autolinks.php:584 msgid "Maximum number of links per post" msgstr "Número máximo de enlaces por entrada" -#: inc/helper.options.admin.php:356 +#: inc/helper.options.admin.php:308 msgid "Maximum number of related posts to display: (default: 5)" msgstr "Número máximo de entradas relacionadas a mostrar: (predeterminado 5)" -#: inc/helper.options.admin.php:153 +#: inc/helper.options.admin.php:87 msgid "Maximum number of tags to display: (default: 45)" msgstr "Número máximo de etiquetas a mostrar: (predeterminado: 45)" @@ -1851,11 +1865,11 @@ msgstr "Número máximo de etiquetas a mostrar: (predeterminado: 45)" msgid "Maximum related posts to display" msgstr "Máximas entradas relacionadas a mostrar" -#: inc/suggestterms.php:475 inc/class.admin.clickterms.php:104 +#: inc/class.admin.clickterms.php:104 inc/suggestterms.php:475 msgid "Maximum terms" msgstr "Cantidad máxima de términos" -#: inc/tag-clouds.php:563 inc/post-tags.php:451 +#: inc/post-tags.php:471 inc/tag-clouds.php:563 msgid "Maximum terms to display" msgstr "Términos máximos a mostrar" @@ -1906,7 +1920,7 @@ msgstr "Fusionar términos" msgid "Metabox callback" msgstr "Respuesta de la caja meta" -#: inc/suggestterms.php:505 inc/class.admin.clickterms.php:79 +#: inc/class.admin.clickterms.php:79 inc/suggestterms.php:505 msgid "Method for choosing terms" msgstr "Método de elección de los términos" @@ -1922,7 +1936,7 @@ msgstr "Método para elegir los términos de la base de datos" msgid "Migrate terms to newly renamed taxonomy?" msgstr "¿Migrar términos a taxonomía recién renombrada?" -#: inc/autolinks.php:621 +#: inc/autolinks.php:618 msgid "Minimum character length for an Auto Link" msgstr "Longitud mínima de caracteres para un enlace automático" @@ -1930,11 +1944,11 @@ msgstr "Longitud mínima de caracteres para un enlace automático" msgid "Minimum number of uses for each term:" msgstr "Número mínimo de usos para cada término:" -#: inc/autolinks.php:582 +#: inc/autolinks.php:567 msgid "Minimum term usage for Auto Links" msgstr "Uso mínimo del término para los enlaces automáticos" -#: inc/helper.options.admin.php:407 +#: inc/helper.options.admin.php:359 msgid "Minimum usage for terms" msgstr "Uso mínimo de términos" @@ -1946,22 +1960,22 @@ msgstr "Falta una taxonomía válida para poder funcionar. Inténtelo de nuevo." msgid "Most common tags between posts" msgstr "Etiquetas más comunes entre las entradas" -#: inc/helper.options.admin.php:177 +#: inc/helper.options.admin.php:111 msgid "Most popular color:" msgstr "Color de más popular:" -#: inc/helper.options.admin.php:188 +#: inc/helper.options.admin.php:124 msgid "Most popular font size:" msgstr "Tamaño fuente más popular:" -#: inc/suggestterms.php:486 inc/tag-clouds.php:434 inc/tag-clouds.php:470 -#: inc/class-taxonomies-table.php:66 inc/class.admin.clickterms.php:76 -#: inc/class-tag-table.php:41 inc/class.widgets.php:238 -#: inc/class.widgets.php:270 +#: inc/class-tag-table.php:41 inc/class-taxonomies-table.php:66 +#: inc/class.admin.clickterms.php:76 inc/class.widgets.php:238 +#: inc/class.widgets.php:270 inc/suggestterms.php:486 inc/tag-clouds.php:434 +#: inc/tag-clouds.php:470 msgid "Name" msgstr "Nombre" -#: includes-core/TaxopressCoreAdmin.php:110 +#: includes-core/TaxopressCoreAdmin.php:115 msgid "Need TaxoPress Support?" msgstr "¿Necesitas soporte de TaxoPress?" @@ -1983,7 +1997,7 @@ msgstr "Nombre del nuevo elemento" msgid "New Media Tag name" msgstr "Nombre de la nueva etiqueta de medios" -#: inc/class.admin.php:477 +#: inc/class.admin.php:482 msgid "New TaxoPress Logs" msgstr "Nuevos registros de TaxoPress" @@ -1999,10 +2013,11 @@ msgstr "Nombre del nuevo término:" msgid "Newer Entries" msgstr "Entradas siguientes" -#: inc/suggestterms.php:805 inc/tag-clouds.php:849 inc/autolinks.php:907 -#: inc/related-posts.php:882 inc/post-tags.php:726 inc/post-tags-table.php:355 -#: inc/related-posts-table.php:395 inc/class-taxonomies-table.php:372 -#: inc/autoterms.php:1156 inc/taxonomies.php:1701 +#: inc/autolinks.php:999 inc/autoterms.php:1156 +#: inc/class-taxonomies-table.php:372 inc/post-tags-table.php:355 +#: inc/post-tags.php:758 inc/related-posts-table.php:395 +#: inc/related-posts.php:882 inc/suggestterms.php:805 inc/tag-clouds.php:849 +#: inc/taxonomies.php:1701 msgid "No" msgstr "No" @@ -2024,7 +2039,7 @@ msgstr "Ningún %s encontrado en la papelera." msgid "No %s found." msgstr "No se ha encontrado %s." -#: includes-core/TaxopressCoreAdmin.php:100 +#: includes-core/TaxopressCoreAdmin.php:105 msgid "No ads inside the plugin" msgstr "No hay anuncios en el plugin" @@ -2032,15 +2047,15 @@ msgstr "No hay anuncios en el plugin" msgid "No content to edit." msgstr "No hay contenido que editar." +#: inc/autolinks-table.php:91 inc/autoterms-logs-table.php:217 #: inc/autoterms-table.php:91 inc/post-tags-table.php:91 -#: inc/related-posts-table.php:92 inc/autoterms-logs-table.php:217 -#: inc/tag-clouds-table.php:92 inc/suggestterms-table.php:90 -#: inc/autolinks-table.php:91 +#: inc/related-posts-table.php:92 inc/suggestterms-table.php:90 +#: inc/tag-clouds-table.php:92 msgid "No item avaliable." msgstr "Ningún elemento disponible." -#: inc/tag-clouds.php:418 inc/related-posts.php:591 inc/autoterms.php:944 -#: inc/autoterms.php:978 +#: inc/autoterms.php:944 inc/autoterms.php:978 inc/related-posts.php:591 +#: inc/tag-clouds.php:418 msgid "No limit" msgstr "Sin límite" @@ -2070,13 +2085,17 @@ msgstr "¡No se han especificado nuevos términos!" msgid "No new/old valid term specified!" msgstr "¡No se ha especificado ningún término nuevo/antiguo válido!" +#: inc/class.admin.php:154 +msgid "No permission!" +msgstr "" + #: inc/related-posts-widget.php:142 msgid "No Related Posts shortcode available. Add new shortcode " msgstr "" "No hay disponible un shortcode de entradas relacionadas. Añade un nuevo " "shortcode " -#: inc/helper.options.default.php:46 inc/class.client.related_posts.php:101 +#: inc/class.client.related_posts.php:101 inc/helper.options.default.php:47 #: inc/related-posts-functions.php:155 msgid "No related posts." msgstr "No hay entradas relacionadas." @@ -2089,20 +2108,20 @@ msgstr "No hay resultados de la API de dataTXT." msgid "No results from OpenCalais service." msgstr "No hay resultados del servicio de OpenCalais." -#: inc/class.admin.suggest.php:351 inc/class.admin.clickterms.php:269 +#: inc/class.admin.clickterms.php:269 inc/class.admin.suggest.php:351 msgid "No results from your WordPress database." msgstr "No hay resultados de tu base de datos de WordPress." -#: inc/post-tags-functions.php:156 inc/class.client.post_tags.php:112 +#: inc/class.client.post_tags.php:112 inc/post-tags-functions.php:156 msgid "No tag for this post." msgstr "No hay etiquetas para esta entrada." -#: inc/helper.options.default.php:35 +#: inc/helper.options.default.php:36 msgid "No tags for this post." msgstr "No hay etiquetas para esta entrada." #: inc/class.client.tagcloud.php:66 inc/class.client.tagcloud.php:273 -#: inc/helper.options.default.php:57 +#: inc/helper.options.default.php:58 msgid "No tags." msgstr "No hay etiquetas." @@ -2150,11 +2169,11 @@ msgstr "" "No hay disponibles términos para el shortcode de la entrada actual. Añade un " "nuevo shortcode " -#: inc/terms-table.php:271 +#: inc/terms-table.php:277 msgid "No terms found." msgstr "Ningún término encontrado." -#: inc/class.admin.suggest.php:334 inc/class.admin.clickterms.php:221 +#: inc/class.admin.clickterms.php:221 inc/class.admin.suggest.php:334 msgid "No terms in your WordPress database." msgstr "No hay términos en tu base de datos de WordPress." @@ -2170,9 +2189,9 @@ msgstr "¡Ningún término válido especificado!" msgid "Nonce failed verification" msgstr "Verificación nonce fallida" -#: inc/related-posts.php:333 inc/autoterms-table.php:356 -#: inc/autoterms-logs-table.php:428 inc/suggestterms-table.php:355 -#: inc/autolinks-table.php:356 +#: inc/autolinks-table.php:356 inc/autoterms-logs-table.php:428 +#: inc/autoterms-table.php:356 inc/related-posts.php:333 +#: inc/suggestterms-table.php:355 msgid "None" msgstr "Ninguno" @@ -2184,9 +2203,9 @@ msgstr "No encontrado" msgid "Not found" msgstr "No encontrado" -#: inc/suggestterms.php:94 inc/terms.php:194 inc/tag-clouds.php:95 -#: inc/autolinks.php:95 inc/related-posts.php:95 inc/post-tags.php:95 -#: inc/autoterms.php:105 inc/autoterms.php:112 inc/taxonomies.php:122 +#: inc/autolinks.php:94 inc/autoterms.php:105 inc/autoterms.php:112 +#: inc/post-tags.php:94 inc/related-posts.php:95 inc/suggestterms.php:94 +#: inc/tag-clouds.php:95 inc/taxonomies.php:122 inc/terms.php:194 msgid "Number of items per page" msgstr "Número de elementos por página" @@ -2194,8 +2213,8 @@ msgstr "Número de elementos por página" msgid "Object" msgstr "Objeto" -#: inc/suggestterms.php:797 inc/tag-clouds.php:842 inc/autolinks.php:900 -#: inc/related-posts.php:875 inc/post-tags.php:719 inc/autoterms.php:1149 +#: inc/autolinks.php:993 inc/autoterms.php:1149 inc/post-tags.php:752 +#: inc/related-posts.php:875 inc/suggestterms.php:797 inc/tag-clouds.php:842 #: inc/taxonomies.php:1694 msgid "Okay" msgstr "Vale" @@ -2237,11 +2256,11 @@ msgstr "" "sitio web del servicio para obtener una clave y configurarla en las opciones " "de TaxoPress." -#: inc/related-posts.php:290 inc/post-tags.php:291 inc/autoterms.php:412 +#: inc/autoterms.php:412 inc/post-tags.php:298 inc/related-posts.php:290 msgid "Options" msgstr "Opciones" -#: inc/class.admin.php:566 +#: inc/class.admin.php:582 msgid "Options saved" msgstr "Opciones guardadas" @@ -2253,11 +2272,11 @@ msgstr "Ordenar por en la selección de etiquetas de la base de datos:" msgid "Order by for display tags:" msgstr "Ordenar por para la visualización de etiquetas:" -#: inc/helper.options.admin.php:111 +#: inc/helper.options.admin.php:45 msgid "Order by for tags display:" msgstr "Ordenar por visualización de etiquetas:" -#: inc/helper.options.admin.php:88 +#: inc/helper.options.admin.php:22 msgid "Order by for tags selection:" msgstr "Ordenar por selección de etiquetas:" @@ -2269,11 +2288,11 @@ msgstr "Orden para la selección de etiquetas de la base de datos:" msgid "Order for display tags:" msgstr "Orden por la visualización de etiquetas:" -#: inc/helper.options.admin.php:123 +#: inc/helper.options.admin.php:57 msgid "Order tags display:" msgstr "Orden visualización de etiquetas:" -#: inc/helper.options.admin.php:100 +#: inc/helper.options.admin.php:34 msgid "Order tags selection:" msgstr "Orden selección de etiquetas:" @@ -2281,7 +2300,7 @@ msgstr "Orden selección de etiquetas:" msgid "Ordering for choosing term from the database" msgstr "Orden para elegir el término de la base de datos" -#: inc/suggestterms.php:530 inc/class.admin.clickterms.php:92 +#: inc/class.admin.clickterms.php:92 inc/suggestterms.php:530 msgid "Ordering for choosing terms" msgstr "Ordenación de los términos a elegir" @@ -2341,7 +2360,7 @@ msgstr "¡Permiso denegado!" msgid "Permission denied." msgstr "Permiso denegado." -#: inc/tag-clouds.php:591 inc/class.widgets.php:318 +#: inc/class.widgets.php:318 inc/tag-clouds.php:591 msgid "Pixel" msgstr "Pixel" @@ -2366,8 +2385,8 @@ msgstr "Por favor, elige una opción para «Estados de contenido»" msgid "Please choose an option for \"Sources\"" msgstr "Por favor, elige una opción para «Fuentes»" -#: inc/suggestterms.php:793 inc/tag-clouds.php:839 inc/autolinks.php:897 -#: inc/related-posts.php:872 inc/post-tags.php:716 inc/autoterms.php:1146 +#: inc/autolinks.php:990 inc/autoterms.php:1146 inc/post-tags.php:749 +#: inc/related-posts.php:872 inc/suggestterms.php:793 inc/tag-clouds.php:839 #: inc/taxonomies.php:1691 msgid "Please complete the following required fields to save your changes:" msgstr "" @@ -2392,7 +2411,7 @@ msgstr "Por favor, proporciona un nombre de taxonomía" msgid "Please provide a taxonomy to delete" msgstr "Por favor, proporciona una taxonomía para borrar" -#: inc/class.admin.php:421 +#: inc/class.admin.php:425 msgid "Please select a valid" msgstr "Por favor, selecciona uno válido" @@ -2430,11 +2449,11 @@ msgstr "Etiquetas de medios populares" msgid "Post" msgstr "Entrada" -#: inc/autolinks.php:410 inc/autoterms.php:503 inc/autolinks-table.php:372 +#: inc/autolinks-table.php:372 inc/autolinks.php:435 inc/autoterms.php:503 msgid "Post Content" msgstr "Contenido de la entrada" -#: inc/autolinks.php:419 inc/autoterms.php:511 inc/autolinks-table.php:374 +#: inc/autolinks-table.php:374 inc/autolinks.php:444 inc/autoterms.php:511 msgid "Post Content and Title" msgstr "Contenido y título de la entrada" @@ -2442,23 +2461,23 @@ msgstr "Contenido y título de la entrada" msgid "Post content is empty." msgstr "El contenido de la entrada está vacío." -#: inc/helper.options.admin.php:348 +#: inc/helper.options.admin.php:300 msgid "Post link format:" msgstr "Formato de enlace en entrada:" -#: inc/helper.options.admin.php:252 +#: inc/helper.options.admin.php:193 msgid "Post tag separator string:" msgstr "Cadena de separación de etiquetas:" -#: inc/class.admin.php:290 +#: inc/class.admin.php:293 msgid "Post tags" msgstr "Etiquetas de entrada" -#: inc/post-tags.php:472 +#: inc/post-tags.php:495 msgid "Post term separator string:\t" msgstr "Cadena de separación de los términos de la entrada:\t" -#: inc/autolinks.php:415 inc/autoterms.php:507 inc/autolinks-table.php:373 +#: inc/autolinks-table.php:373 inc/autolinks.php:440 inc/autoterms.php:507 msgid "Post Title" msgstr "Título de la entrada" @@ -2466,27 +2485,27 @@ msgstr "Título de la entrada" msgid "Post title" msgstr "Título de entrada" -#: inc/tag-clouds.php:349 inc/related-posts.php:403 -#: inc/related-posts-table.php:68 inc/tag-clouds-table.php:68 +#: inc/related-posts-table.php:68 inc/related-posts.php:403 +#: inc/tag-clouds-table.php:68 inc/tag-clouds.php:349 msgid "Post Type" msgstr "Tipo de contenido" -#: inc/terms-table.php:192 inc/autoterms-logs-table.php:128 -#: inc/autoterms-logs-table.php:189 +#: inc/autoterms-logs-table.php:128 inc/autoterms-logs-table.php:189 +#: inc/terms-table.php:199 msgid "Post type" msgstr "Tipo de contenido" -#: inc/suggestterms.php:400 inc/autolinks.php:287 inc/terms-table.php:115 -#: inc/class-taxonomies-table.php:70 inc/autoterms.php:559 -#: inc/taxonomies.php:345 +#: inc/autolinks.php:294 inc/autoterms.php:559 +#: inc/class-taxonomies-table.php:70 inc/suggestterms.php:400 +#: inc/taxonomies.php:345 inc/terms-table.php:115 msgid "Post Types" msgstr "Tipos de contenido" -#: inc/class.admin.php:291 +#: inc/class.admin.php:294 msgid "Posts" msgstr "Entradas" -#: inc/autolinks-functions.php:154 inc/helper.options.default.php:27 +#: inc/autolinks-functions.php:160 inc/helper.options.default.php:28 msgid "Posts tagged with %s" msgstr "Entradas etiquetadas con %s" @@ -2494,27 +2513,27 @@ msgstr "Entradas etiquetadas con %s" msgid "Pourcent" msgstr "Porcentaje" -#: inc/autolinks.php:686 +#: inc/autolinks.php:698 msgid "pre" msgstr "pre" -#: inc/autolinks.php:668 +#: inc/autolinks.php:676 msgid "Prevent Auto Links inside classes or IDs" msgstr "Evitar enlaces automáticos dentro de clases o ID" -#: inc/autolinks.php:690 +#: inc/autolinks.php:702 msgid "Prevent Auto Links inside elements" msgstr "Evitar enlaces automáticos dentro de elementos" -#: inc/helper.options.admin.php:455 +#: inc/helper.options.admin.php:407 msgid "Priority on hook the_content" msgstr "Prioridad en el gancho de `the_content`" -#: inc/autolinks.php:746 +#: inc/autolinks.php:831 msgid "Priority on the_content and the_title hook" msgstr "Prioridad en los ganchos `the_content` y `the_title`" -#: inc/terms-table.php:212 inc/taxonomies.php:196 +#: inc/taxonomies.php:196 inc/terms-table.php:219 msgid "Private Taxonomies" msgstr "Taxonomías privadas" @@ -2530,7 +2549,7 @@ msgstr "Pública" msgid "Public Queryable" msgstr "Consultable públicamente" -#: inc/terms-table.php:211 inc/taxonomies.php:195 +#: inc/taxonomies.php:195 inc/terms-table.php:218 msgid "Public Taxonomies" msgstr "Taxonomías públicas" @@ -2542,22 +2561,22 @@ msgstr "Cantidad…" msgid "Query Var" msgstr "Variables de la consulta" -#: inc/terms-table.php:582 +#: inc/terms-table.php:611 msgid "Quick Edit" msgstr "Edición rápida" #. %s: Taxonomy term name. -#: inc/terms-table.php:388 +#: inc/terms-table.php:393 msgid "Quick edit “%s” inline" msgstr "Edición rápida “%s” integrada" -#: inc/terms-table.php:389 +#: inc/terms-table.php:394 msgid "Quick Edit" msgstr "Edición rápida" -#: inc/suggestterms.php:495 inc/tag-clouds.php:437 inc/tag-clouds.php:472 -#: inc/related-posts.php:640 inc/class.admin.clickterms.php:76 -#: inc/class.widgets.php:246 +#: inc/class.admin.clickterms.php:76 inc/class.widgets.php:246 +#: inc/related-posts.php:640 inc/suggestterms.php:495 inc/tag-clouds.php:437 +#: inc/tag-clouds.php:472 msgid "Random" msgstr "Aleatorio" @@ -2581,9 +2600,9 @@ msgstr "Clave de registro" msgid "Related Post" msgstr "Entradas relacionadas" -#: inc/related-posts.php:72 inc/related-posts.php:73 inc/related-posts.php:126 -#: inc/class.admin.php:786 inc/related-posts-table.php:15 -#: inc/helper.options.admin.php:27 +#: inc/class.admin.php:807 inc/functions.inc.php:374 +#: inc/related-posts-table.php:15 inc/related-posts.php:72 +#: inc/related-posts.php:73 inc/related-posts.php:126 msgid "Related Posts" msgstr "Entradas relacionadas" @@ -2595,7 +2614,7 @@ msgstr "Entradas relacionadas (TaxoPress)" msgid "Related Posts are added on " msgstr "Las entradas relacionadas se añaden en " -#: inc/helper.options.admin.php:388 +#: inc/helper.options.admin.php:340 msgid "Related posts by terms" msgstr "Entradas relacionadas por términos" @@ -2615,7 +2634,7 @@ msgstr "No se han encontrado entradas relacionadas." msgid "Related Posts Order" msgstr "Orden de las entradas relacionadas" -#: inc/helper.options.admin.php:332 +#: inc/helper.options.admin.php:284 msgid "Related Posts Order:" msgstr "Orden de las entradas relacionadas:" @@ -2629,7 +2648,7 @@ msgstr "" msgid "Related Posts successfully deleted." msgstr "Entradas relacionadas borradas correctamente." -#: inc/terms-table.php:403 +#: inc/terms-table.php:408 msgid "Remove From All Posts" msgstr "Eliminar de todas las entradas" @@ -2657,20 +2676,20 @@ msgstr "Renombrar términos" msgid "Renamed term(s) «%1$s» to «%2$s»" msgstr "Término(s) renombrado(s) «%1$s» a «%2$s»" -#: inc/post-tags.php:689 +#: inc/post-tags.php:722 msgid "Replaced by the RSS tag link" msgstr "Reemplazado por el enlace de la etiqueta RSS" -#: inc/post-tags.php:690 +#: inc/post-tags.php:723 msgid "Replaced by the tag ID" msgstr "Reemplazado por el ID de la etiqueta" -#: inc/post-tags.php:691 +#: inc/post-tags.php:724 msgid "Replaced by the tag’s name, formatted for attribute HTML" msgstr "" "Reemplazado por el nombre de la etiqueta, formateado para el atributo HTML" -#: includes-core/TaxopressCoreAdmin.php:117 +#: includes-core/TaxopressCoreAdmin.php:122 msgid "Request Support" msgstr "Pedir soporte técnico" @@ -2702,12 +2721,12 @@ msgstr "Reescribir jerárquico" msgid "Rewrite With Front" msgstr "Reescribir con el front" -#: inc/post-tags-table.php:345 inc/related-posts-table.php:385 -#: inc/autolinks-table.php:346 +#: inc/autolinks-table.php:346 inc/post-tags-table.php:345 +#: inc/related-posts-table.php:385 msgid "RSS feed" msgstr "Feed RSS" -#: inc/autolinks.php:841 +#: inc/autolinks.php:933 msgid "Save Auto Links" msgstr "Guardar los enlaces automáticos" @@ -2731,7 +2750,7 @@ msgstr "Guardar taxonomía" msgid "Save Terms Display" msgstr "Guardar visualización de términos" -#: inc/post-tags.php:642 +#: inc/post-tags.php:673 msgid "Save Terms for Current Post" msgstr "Guardar los términos para la entrada actual" @@ -2739,7 +2758,7 @@ msgstr "Guardar los términos para la entrada actual" msgid "Schedule" msgstr "Programación" -#: includes-core/TaxopressCoreAdmin.php:152 +#: includes-core/TaxopressCoreAdmin.php:154 msgid "Schedule Auto Terms for your content" msgstr "Programar términos automáticos para tu contenido" @@ -2765,7 +2784,7 @@ msgstr "" "Texto del lector de pantalla para el encabezado de paginación en la pantalla " "de listado de términos." -#: inc/autolinks.php:684 +#: inc/autolinks.php:696 msgid "script" msgstr "script" @@ -2805,9 +2824,9 @@ msgid "Search Related Posts" msgstr "Buscar entradas relacionadas" #. %s: search keywords -#: inc/suggestterms.php:138 inc/terms.php:232 inc/tag-clouds.php:136 -#: inc/autolinks.php:136 inc/related-posts.php:136 inc/post-tags.php:136 -#: inc/autoterms.php:193 inc/autoterms.php:248 inc/taxonomies.php:163 +#: inc/autolinks.php:134 inc/autoterms.php:193 inc/autoterms.php:248 +#: inc/post-tags.php:134 inc/related-posts.php:136 inc/suggestterms.php:138 +#: inc/tag-clouds.php:136 inc/taxonomies.php:163 inc/terms.php:232 msgid "Search results for “%s”" msgstr "Resultados de la búsqueda para «%s»" @@ -2819,11 +2838,11 @@ msgstr "Buscar términos sugeridos" msgid "Search Taxonomies" msgstr "Buscar taxonomías" -#: inc/class.admin.php:472 +#: inc/class.admin.php:477 msgid "Search TaxoPress Logs" msgstr "Buscar en los registros de TaxoPress" -#: inc/terms.php:246 +#: inc/terms.php:248 msgid "Search Terms" msgstr "Buscar términos" @@ -2831,7 +2850,7 @@ msgstr "Buscar términos" msgid "Search Terms Display" msgstr "Buscar visualización de términos" -#: inc/post-tags.php:149 +#: inc/post-tags.php:147 msgid "Search Terms for Current Post" msgstr "Buscar términos para la entrada actual" @@ -2877,7 +2896,7 @@ msgstr "Separar los elementos con comas" msgid "Separate Media Tags with commas" msgstr "Separar las etiquetas de medios con comas" -#: inc/autolinks.php:670 +#: inc/autolinks.php:680 msgid "" "Separate multiple entries with a comma. For example: .notag, #main-header" msgstr "" @@ -2901,9 +2920,9 @@ msgstr "" #: inc/taxonomies.php:1520 msgid "" -"Sets a callback function name for the meta box display. Hierarchical " -"default: post_categories_meta_box, non-hierarchical default: " -"post_tags_meta_box. To remove the metabox completely, use \"false\"." +"Sets a callback function name for the meta box display. Hierarchical default:" +" post_categories_meta_box, non-hierarchical default: post_tags_meta_box. To " +"remove the metabox completely, use \"false\"." msgstr "" "Establece un nombre de función de respuesta para la visualización de la caja " "meta. Valor jerárquico por defecto: `post_categories_meta_box`. Valor no " @@ -2914,14 +2933,14 @@ msgstr "" msgid "Sets a custom query_var slug for this taxonomy." msgstr "Establece un slug `query_var` personalizado para esta taxonomía." -#: inc/class.admin.php:523 inc/autoterms-logs-table.php:164 -#: inc/autoterms-logs-table.php:195 +#: inc/autoterms-logs-table.php:164 inc/autoterms-logs-table.php:195 +#: inc/class.admin.php:529 msgid "Settings" msgstr "Ajustes" -#: inc/autolinks-functions.php:252 inc/post-tags-functions.php:189 +#: inc/autolinks-functions.php:257 inc/autoterms-functions.php:333 +#: inc/post-tags-functions.php:189 inc/related-posts-functions.php:230 #: inc/suggestterms-functions.php:246 inc/tag-clouds-functions.php:238 -#: inc/related-posts-functions.php:230 inc/autoterms-functions.php:333 msgid "Settings updated successfully." msgstr "Los ajustes han sido actualizado correctamente." @@ -2934,7 +2953,7 @@ msgstr "Shortcode" msgid "Shortcode entry successfully deleted." msgstr "Entrada del shortcode borrada correctamente." -#: inc/tag-clouds.php:779 inc/related-posts.php:814 inc/post-tags.php:659 +#: inc/post-tags.php:691 inc/related-posts.php:814 inc/tag-clouds.php:779 msgid "Shortcode: " msgstr "Shortcode: " @@ -2963,7 +2982,7 @@ msgstr "" msgid "Show Existing Terms" msgstr "Mostrar los términos existentes" -#: inc/suggestterms.php:459 inc/class.admin.clickterms.php:173 +#: inc/class.admin.clickterms.php:173 inc/suggestterms.php:459 msgid "Show existing terms" msgstr "Mostrar los términos existentes" @@ -2991,8 +3010,8 @@ msgstr "Mostrar en la API REST" msgid "Show user interface" msgstr "Muestra la interfaz de usuario" -#: inc/post-tags-table.php:344 inc/related-posts-table.php:384 -#: inc/autolinks-table.php:345 +#: inc/autolinks-table.php:345 inc/post-tags-table.php:344 +#: inc/related-posts-table.php:384 msgid "Single post display" msgstr "Pantalla de entrada individual" @@ -3000,8 +3019,8 @@ msgstr "Pantalla de entrada individual" msgid "Singular Label" msgstr "Etiqueta singular" -#: inc/tag-clouds.php:435 inc/terms-table.php:113 inc/terms-table.php:590 -#: inc/class-tag-table.php:42 inc/class.widgets.php:240 inc/taxonomies.php:376 +#: inc/class-tag-table.php:42 inc/class.widgets.php:240 inc/tag-clouds.php:435 +#: inc/taxonomies.php:376 inc/terms-table.php:113 inc/terms-table.php:619 msgid "Slug" msgstr "Slug" @@ -3013,8 +3032,8 @@ msgstr "Este slug ya existe" msgid "Slug has changed" msgstr "El slug ha cambiado" -#: inc/autoterms-table.php:69 inc/autoterms-logs-table.php:146 -#: inc/autoterms-logs-table.php:191 +#: inc/autoterms-logs-table.php:146 inc/autoterms-logs-table.php:191 +#: inc/autoterms-table.php:69 msgid "Source" msgstr "Origen" @@ -3038,7 +3057,7 @@ msgstr "Aviso de estado" msgid "Stop words" msgstr "Palabras de parada" -#: inc/autolinks.php:685 +#: inc/autolinks.php:697 msgid "style" msgstr "style" @@ -3062,8 +3081,8 @@ msgstr "Término sugerido" msgid "Suggest Term Post type" msgstr "Término sugerido por el tipo de contenido" +#: inc/functions.inc.php:392 inc/suggestterms-table.php:15 #: inc/suggestterms.php:71 inc/suggestterms.php:72 inc/suggestterms.php:125 -#: inc/helper.options.admin.php:48 inc/suggestterms-table.php:15 msgid "Suggest Terms" msgstr "Términos sugeridos" @@ -3087,6 +3106,10 @@ msgstr "términos sugeridos" msgid "Support hashtags symbols # in Auto Terms." msgstr "Compatible con símbolos de hashtags # en los términos automáticos." +#: inc/autolinks.php:315 inc/terms-table.php:116 +msgid "Synonyms" +msgstr "" + #: inc/class-tag-table.php:12 msgid "Tag Cloud" msgstr "Nube de etiqueta" @@ -3099,12 +3122,12 @@ msgstr "Nube de etiquetas" msgid "Tag Cloud (TaxoPress Legacy)" msgstr "Nube de etiquetas (TaxoPress heredado)" -#: inc/helper.options.admin.php:215 +#: inc/helper.options.admin.php:153 msgid "Tag cloud Shortcode" msgstr "Shortcode de la nube de etiqueta" -#: inc/class.widgets.php:369 inc/helper.options.admin.php:145 -#: inc/helper.options.admin.php:274 +#: inc/class.widgets.php:369 inc/helper.options.admin.php:79 +#: inc/helper.options.admin.php:222 msgid "Tag link format:" msgstr "Formato de enlace de etiqueta:" @@ -3116,16 +3139,16 @@ msgstr "Etiquetas" msgid "Tags Cloud" msgstr "Nube de etiquetas" -#: inc/helper.options.admin.php:134 +#: inc/helper.options.admin.php:68 msgid "Tags cloud type format:" msgstr "Tipo de formato de nube de etiquetas:" -#: inc/class.admin.php:784 +#: inc/class.admin.php:805 msgid "Tags for Current Post" msgstr "Entrada actual" -#: inc/helper.options.default.php:33 inc/post-tags-functions.php:152 -#: inc/class.client.post_tags.php:106 +#: inc/class.client.post_tags.php:106 inc/helper.options.default.php:34 +#: inc/post-tags-functions.php:152 msgid "Tags: " msgstr "Etiquetas: " @@ -3133,19 +3156,19 @@ msgstr "Etiquetas: " msgid "Target content" msgstr "Contenido objetivo" -#: inc/class-taxonomies-table.php:15 inc/helper.options.admin.php:6 +#: inc/class-taxonomies-table.php:15 inc/functions.inc.php:356 #: inc/taxonomies.php:99 inc/taxonomies.php:100 inc/taxonomies.php:153 msgid "Taxonomies" msgstr "Taxonomías" -#: inc/tag-clouds.php:377 inc/autolinks.php:367 inc/related-posts.php:440 -#: inc/post-tags.php:363 inc/autoterms-table.php:67 inc/terms-table.php:114 -#: inc/terms-table.php:201 inc/post-tags-table.php:67 -#: inc/related-posts-table.php:67 inc/class-taxonomies-table.php:14 +#: inc/autolinks-table.php:67 inc/autolinks.php:388 #: inc/autoterms-logs-table.php:137 inc/autoterms-logs-table.php:190 -#: inc/class.admin.clickterms.php:55 inc/autoterms.php:493 -#: inc/tag-clouds-table.php:67 inc/suggestterms-table.php:67 -#: inc/autolinks-table.php:67 +#: inc/autoterms-table.php:67 inc/autoterms.php:493 +#: inc/class-taxonomies-table.php:14 inc/class.admin.clickterms.php:55 +#: inc/post-tags-table.php:67 inc/post-tags.php:373 +#: inc/related-posts-table.php:67 inc/related-posts.php:440 +#: inc/suggestterms-table.php:67 inc/tag-clouds-table.php:67 +#: inc/tag-clouds.php:377 inc/terms-table.php:114 inc/terms-table.php:208 msgid "Taxonomy" msgstr "Taxonomía" @@ -3169,14 +3192,14 @@ msgstr "Slug de taxonomía" msgid "Taxonomy slug cannot be numbers only." msgstr "El slug de taxonomía no puede ser solo números." -#: inc/helper.options.admin.php:306 +#: inc/helper.options.admin.php:256 msgid "Taxonomy:" msgstr "Taxonomía:" #. Name of the plugin #. Author of the plugin -#: inc/class.admin.php:510 inc/class.admin.post.php:38 -#: inc/class-taxonomies-table.php:353 +#: inc/class-taxonomies-table.php:353 inc/class.admin.php:516 +#: inc/class.admin.post.php:38 msgid "TaxoPress" msgstr "TaxoPress" @@ -3188,21 +3211,21 @@ msgstr "" "TaxoPress te permite crear y gestionar etiquetas, categorías y todos los " "términos de la taxonomía de WordPress." -#: inc/autolinks.php:869 inc/autoterms.php:1118 +#: inc/autolinks.php:962 inc/autoterms.php:1118 msgid "TaxoPress and Languages" msgstr "TaxoPress y los idiomas" -#: inc/class.admin.php:470 inc/class.admin.php:471 inc/class.admin.php:473 -#: inc/class.admin.php:478 +#: inc/class.admin.php:475 inc/class.admin.php:476 inc/class.admin.php:478 +#: inc/class.admin.php:483 msgid "TaxoPress Logs" msgstr "Registros de TaxoPress" -#: inc/class.admin.php:572 +#: inc/class.admin.php:588 msgid "TaxoPress options resetted to default options!" msgstr "" "¡Las opciones de TaxoPress se han restablecido a sus valores por defecto!" -#: includes-core/TaxopressCoreAdmin.php:203 +#: includes-core/TaxopressCoreAdmin.php:207 msgid "" "TaxoPress Pro allows you to change how Auto Terms analyzes your posts. You " "will need to know how to write Regular Expressions to use this feature." @@ -3211,7 +3234,7 @@ msgstr "" "analizan tus entradas. Es necesario que sepas escribir las expresiones " "regulares para utilizar esta característica." -#: includes-core/TaxopressCoreAdmin.php:180 +#: includes-core/TaxopressCoreAdmin.php:183 msgid "" "TaxoPress Pro allows you to generate new terms for your content using the " "Dandelion and Open Calais services. These services can analyze your content " @@ -3221,7 +3244,7 @@ msgstr "" "utilizando los servicios Dandelion y Open Calais. Estos servicios pueden " "analizar tu contenido y añadir nuevos términos." -#: includes-core/TaxopressCoreAdmin.php:157 +#: includes-core/TaxopressCoreAdmin.php:159 msgid "" "TaxoPress Pro allows you to schedule the \"Auto Terms to existing content\" " "feature. This is helpful if you regularly import content into WordPress. " @@ -3254,7 +3277,7 @@ msgstr "" "este contenido. Es posible que no funcione con todos los tipos de contenido " "y diseños." -#: inc/post-tags.php:415 +#: inc/post-tags.php:432 msgid "" "TaxoPress will attempt to automatically display terms in this content. It " "may not be successful for all post types and layouts." @@ -3262,7 +3285,7 @@ msgstr "" "TaxoPress intentará mostrar automáticamente los términos en este contenido. " "Es posible que no funcione con todos los tipos de contenido y diseños." -#: inc/autolinks.php:543 +#: inc/autolinks.php:526 msgid "" "TaxoPress will attempt to automatically insert Auto Links in this content. " "It may not be successful for all post types and layouts." @@ -3279,7 +3302,7 @@ msgstr "TaxoPress: Gestionar términos" msgid "TaxoPress: Mass Edit Terms" msgstr "TaxoPress: Editar términos en lotes" -#: inc/class.admin.php:509 inc/class.admin.php:522 +#: inc/class.admin.php:515 inc/class.admin.php:528 #: views/admin/page-settings.php:3 msgid "TaxoPress: Options" msgstr "TaxoPress: Opciones" @@ -3292,7 +3315,7 @@ msgstr "Plantillas" msgid "Term" msgstr "Término" -#: inc/terms-table.php:248 inc/terms-functions.php:81 +#: inc/terms-functions.php:81 inc/terms-table.php:255 msgid "Term deleted successfully." msgstr "Término borrado con éxito." @@ -3304,21 +3327,21 @@ msgstr "Clase div de visualización de términos" msgid "Term group" msgstr "Grupo de término" -#: inc/tag-clouds.php:686 inc/autolinks.php:736 inc/related-posts.php:717 -#: inc/post-tags.php:561 +#: inc/autolinks.php:821 inc/post-tags.php:593 inc/related-posts.php:717 +#: inc/tag-clouds.php:686 msgid "Term link class" msgstr "Clase de enlace de término" -#: inc/tag-clouds.php:699 inc/related-posts.php:730 inc/post-tags.php:574 +#: inc/post-tags.php:606 inc/related-posts.php:730 inc/tag-clouds.php:699 msgid "Term link format" msgstr "Formato del enlace del término" -#: inc/terms-table.php:585 +#: inc/terms-table.php:614 msgctxt "term name" msgid "Name" msgstr "Nombre" -#: inc/terms-table.php:594 +#: inc/terms-table.php:623 msgctxt "term name" msgid "Taxonomy" msgstr "Taxonomía" @@ -3347,7 +3370,7 @@ msgstr "Término(s) para fusionar:" msgid "Term(s) to rename:" msgstr "Término(s) para renombrar:" -#: inc/terms.php:171 inc/terms.php:172 inc/terms.php:223 inc/terms-table.php:15 +#: inc/terms-table.php:15 inc/terms.php:171 inc/terms.php:172 inc/terms.php:223 msgid "Terms" msgstr "Términos" @@ -3363,13 +3386,13 @@ msgstr "Términos añadidos" msgid "Terms added successfully" msgstr "Términos añadidos correctamente" -#: inc/terms-table.php:245 +#: inc/terms-table.php:252 msgid "Terms deleted successfully." msgstr "Términos borrados con éxito." -#: inc/tag-clouds.php:72 inc/tag-clouds.php:73 inc/tag-clouds.php:126 -#: inc/tag-clouds-table.php:14 inc/tag-clouds-table.php:15 -#: inc/helper.options.admin.php:13 +#: inc/functions.inc.php:362 inc/tag-clouds-table.php:14 +#: inc/tag-clouds-table.php:15 inc/tag-clouds.php:72 inc/tag-clouds.php:73 +#: inc/tag-clouds.php:126 msgid "Terms Display" msgstr "Visualización de términos" @@ -3389,9 +3412,9 @@ msgstr "Formato de visualización de los términos" msgid "Terms Display successfully deleted." msgstr "Visualización de términos borrada correctamente." -#: inc/post-tags.php:72 inc/post-tags.php:126 inc/post-tags.php:679 -#: inc/post-tags-table.php:14 inc/post-tags-table.php:15 -#: inc/helper.options.admin.php:20 +#: inc/functions.inc.php:368 inc/post-tags-table.php:14 +#: inc/post-tags-table.php:15 inc/post-tags.php:71 inc/post-tags.php:125 +#: inc/post-tags.php:712 msgid "Terms for Current Post" msgstr "Términos para la entrada actual" @@ -3403,11 +3426,11 @@ msgstr "Términos para la entrada actual (TaxoPress)" msgid "Terms for Current Post are added on " msgstr "Los términos para la entrada actual se añaden en " -#: inc/post-tags.php:550 +#: inc/post-tags.php:582 msgid "Terms for Current Post div class" msgstr "Términos para la clase `div` de la entrada actual" -#: inc/autolinks.php:691 +#: inc/autolinks.php:705 msgid "Terms inside these html tags will not be auto link." msgstr "" "Los términos dentro de estas etiquetas html no se enlacerán automáticamente." @@ -3418,31 +3441,31 @@ msgstr "" "Los términos se añadirán a todas %s si no se especifica «Término(s) para " "coincidir»." -#: inc/helper.options.admin.php:258 +#: inc/helper.options.admin.php:203 msgid "Text to display after tags list:" msgstr "Texto a mostrar después de la lista de etiquetas:" -#: inc/post-tags.php:494 +#: inc/post-tags.php:521 msgid "Text to display after terms list" msgstr "Texto a mostrar después de la lista de términos" -#: inc/helper.options.admin.php:255 +#: inc/helper.options.admin.php:198 msgid "Text to display before tags list:" msgstr "Texto a mostrar antes de la lista de etiquetas:" -#: inc/post-tags.php:483 +#: inc/post-tags.php:508 msgid "Text to display before terms list" msgstr "Texto a mostrar antes de la lista de términos" -#: inc/helper.options.admin.php:280 +#: inc/helper.options.admin.php:229 msgid "Text to display if no tags found:" msgstr "Texto a mostrar si no hay etiquetas:" -#: inc/post-tags.php:505 +#: inc/post-tags.php:534 msgid "Text to display if no terms found" msgstr "Texto a mostrar si no se encuentran términos" -#: inc/helper.options.admin.php:484 +#: inc/helper.options.admin.php:436 msgid "Text to display into title attribute for links:" msgstr "Texto para mostrar en el atributo de título de los enlaces:" @@ -3450,7 +3473,7 @@ msgstr "Texto para mostrar en el atributo de título de los enlaces:" msgid "Text to show when there is no related post" msgstr "Texto a mostrar cuando no hay entradas relacionadas" -#: inc/class.admin.php:650 +#: inc/class.admin.php:669 msgid "Thanks for using TaxoPress | %1sTaxoPress.com%2s | Version %3s" msgstr "Gracias por utilizar TaxoPress | %1sTaxoPress.com%2s | Versión %3s" @@ -3463,7 +3486,7 @@ msgstr "El plugin activo %s no es compatible con tu versión de PHP." msgid "The base slug that this taxonomy will use in the REST API." msgstr "El slug base que esta taxonomía utilizará en la API REST." -#: inc/helper.options.admin.php:180 +#: inc/helper.options.admin.php:114 msgid "" "The colours are hexadecimal colours, and need to have the full six digits " "(#eee is the shorthand version of #eeeeee)." @@ -3483,7 +3506,7 @@ msgstr "El color de la fuente para el término" msgid "The font size for the term" msgstr "El tamaƥo de la fuente para el término" -#: inc/helper.options.admin.php:202 +#: inc/helper.options.admin.php:140 msgid "" "The font size units option determines the units that the two font sizes use." msgstr "" @@ -3506,7 +3529,7 @@ msgstr "" "El nombre de una clase personalizada Rest Controller en lugar de " "WP_REST_Terms_Controller." -#: inc/post-tags.php:687 +#: inc/post-tags.php:720 msgid "The name of the tag" msgstr "El nombre de la etiqueta" @@ -3518,7 +3541,7 @@ msgstr "El nombre del término" msgid "The name of the term with any HTML stripped out" msgstr "El nombre del término con todo el HTML eliminado" -#: inc/autolinks.php:776 +#: inc/autolinks.php:867 msgid "" "The new Auto Links engine uses the DOMDocument PHP class and may offer " "better performance. If your server does not support this functionality, " @@ -3544,7 +3567,7 @@ msgstr "El número de veces que el término se ha utilizado" msgid "The post excerpt" msgstr "Extracto de la entrada" -#: inc/related-posts.php:130 inc/helper.options.admin.php:30 +#: inc/functions.inc.php:375 inc/related-posts.php:130 msgid "" "The Related Posts feature works by checking for shared taxonomy terms. If " "your post has the terms “WordPress” and “Website”, then Related Posts will " @@ -3585,13 +3608,13 @@ msgstr "" msgid "The title of the post" msgstr "Título de la entrada" -#: inc/helper.options.admin.php:191 +#: inc/helper.options.admin.php:127 msgid "The two font sizes are the size of the largest and smallest tags." msgstr "" "Los dos tamaños de fuentes son los tamaños de las etiquetas más grandes y " "más pequeñas." -#: inc/helper.options.admin.php:199 +#: inc/helper.options.admin.php:137 msgid "The units to display the font sizes with, on tag clouds:" msgstr "" "Unidad para visualizar los tamaños de fuente en las nubes de etiquetas:" @@ -3600,7 +3623,7 @@ msgstr "" msgid "The URL of the post" msgstr "URL de la entrada" -#: inc/post-tags.php:686 +#: inc/post-tags.php:719 msgid "The URL of the tag" msgstr "La URL de la etiqueta" @@ -3633,7 +3656,7 @@ msgstr "No hay extracto porque esta es una entrada protegida." msgid "There's no content to scan." msgstr "No hay contenido que analizar." -#: inc/helper.options.admin.php:301 +#: inc/helper.options.admin.php:251 msgid "" "These settings are no longer being updated. Please use the \"Related Posts\" " "screen instead." @@ -3641,7 +3664,7 @@ msgstr "" "Estos ajustes ya no se actualizarán más. Por favor, usa en su lugar la " "pantalla «Entradas relacionadas»." -#: inc/helper.options.admin.php:78 +#: inc/helper.options.admin.php:12 msgid "" "These settings are no longer being updated. Please use the \"Terms Display\" " "screen instead." @@ -3649,7 +3672,7 @@ msgstr "" "Estos ajustes ya no se actualizarán más. Por favor, usa en su lugar la " "pantalla «Visualización de términos»." -#: inc/helper.options.admin.php:230 +#: inc/helper.options.admin.php:168 msgid "" "These settings are no longer being updated. Please use the \"Terms for " "Current Post\" screen instead." @@ -3657,7 +3680,7 @@ msgstr "" "Estos ajustes ya no se actualizarán más. Por favor, usa en su lugar la " "pantalla «Términos para la entrada actual»." -#: inc/class.admin.php:330 +#: inc/class.admin.php:333 msgid "This custom post type not have taxonomies." msgstr "Este tipo de contenido personalizado no tiene taxonomías." @@ -3678,7 +3701,7 @@ msgstr "" "Esto te permite omitir las entradas que ya han sido analizadas por la " "característica de contenido existente." -#: inc/post-tags.php:130 inc/helper.options.admin.php:23 +#: inc/functions.inc.php:369 inc/post-tags.php:128 msgid "" "This feature allows you create a customizable display of all the terms " "assigned to the current post." @@ -3686,7 +3709,7 @@ msgstr "" "Esta característica te permite crear una visualización personalizable de " "todos los términos asignados a la entrada actual." -#: inc/tag-clouds.php:130 inc/helper.options.admin.php:16 +#: inc/functions.inc.php:363 inc/tag-clouds.php:130 msgid "" "This feature allows you to create a customizable display of all the terms in " "one taxonomy." @@ -3694,7 +3717,7 @@ msgstr "" "Esta característica te permite crear una visualización personalizable de " "todos los términos de una taxonomía." -#: inc/helper.options.admin.php:9 inc/taxonomies.php:157 +#: inc/functions.inc.php:357 inc/taxonomies.php:157 msgid "" "This feature allows you to create new taxonomies and edit all the settings " "for each taxonomy." @@ -3702,14 +3725,14 @@ msgstr "" "Esta característica te permite crear nuevas taxonomías y editar todos los " "ajustes de cada taxonomía." -#: inc/helper.options.admin.php:391 +#: inc/helper.options.admin.php:343 msgid "" "This feature allows you to display related posts based on terms relation." msgstr "" "Esta característica te permite mostrar entradas relacionadas en función de " "la relación de términos." -#: inc/helper.options.admin.php:58 +#: inc/functions.inc.php:399 msgid "" "This feature allows you to edit the terms of any taxonomy for multiple posts " "at the same time." @@ -3717,7 +3740,7 @@ msgstr "" "Esta característica te permite editar los términos de cualquier taxonomía " "para varias entradas al mismo tiempo." -#: inc/helper.options.admin.php:65 +#: inc/functions.inc.php:405 msgid "" "This feature allows you to edit, merge, delete and add terms for any " "taxonomy." @@ -3730,7 +3753,7 @@ msgid "This feature allows you to remove rarely used terms." msgstr "" "Esta función te permite borrar términos que se utilizan con poca frecuencia." -#: inc/suggestterms.php:130 inc/helper.options.admin.php:51 +#: inc/functions.inc.php:393 inc/suggestterms.php:130 msgid "" "This feature helps when you're writing content. \"Suggest Terms\" can show a " "metabox where you can browse all your existing terms. \"Suggest Terms\" can " @@ -3749,7 +3772,7 @@ msgstr "" "Esta función te permite añadir uno o más términos nuevos a todos los %s que " "coincidan con cualquiera de los términos dados." -#: inc/class.admin.php:617 +#: inc/class.admin.php:634 msgid "This feature requires at least 1 tag to work. Begin by adding tags!" msgstr "" "Esta función requiere al menos 1 etiqueta para funcionar. ¡Empieza por " @@ -3770,7 +3793,7 @@ msgstr "" "Esta función muestra una caja meta en la que se pueden buscar todos los " "términos existentes." -#: inc/class.admin.php:619 +#: inc/class.admin.php:636 msgid "" "This feature works only with activated JavaScript. Activate it in your Web " "browser so you can!" @@ -3811,7 +3834,7 @@ msgstr "" msgid "this page." msgstr "esta página." -#: inc/tag-clouds.php:808 inc/post-tags.php:688 +#: inc/post-tags.php:721 inc/tag-clouds.php:808 msgid "This provides rel tag markup" msgstr "Esto proporciona el marcado de la etiqueta rel" @@ -3820,13 +3843,17 @@ msgid "This screen allows you search and edit all the terms on your site." msgstr "" "Esta pantalla te permite buscar y editar todos los términos de tu sitio." +#: inc/dashboard.php:91 +msgid "This screen allows you to enable or disable TaxoPress features." +msgstr "" + #: inc/autoterms.php:993 msgid "This setting allows you to add Auto Terms only to recent content." msgstr "" "Este ajuste te permite de añadir términos automáticos sólo al contenido más " "reciente." -#: inc/autolinks.php:610 +#: inc/autolinks.php:605 msgid "" "This setting determines the maximum number of Auto Links for each term in " "one post." @@ -3834,12 +3861,12 @@ msgstr "" "Este ajuste determina el número máximo de enlaces automáticos para cada " "término en una entrada." -#: inc/autolinks.php:597 +#: inc/autolinks.php:588 msgid "This setting determines the maximum number of Auto Links in one post." msgstr "" "Este ajuste determina el número máximo de enlaces automáticos en una entrada." -#: inc/helper.options.admin.php:426 +#: inc/helper.options.admin.php:378 msgid "" "This setting determines the maximum number of links created by article for " "the same tag. Default: 1." @@ -3847,7 +3874,7 @@ msgstr "" "Este ajuste determina el número máximo de enlaces creados por artículo para " "la misma etiqueta. Por defecto: 1." -#: inc/helper.options.admin.php:418 +#: inc/helper.options.admin.php:370 msgid "" "This setting determines the maximum number of links created by article. " "Default: 10." @@ -3855,7 +3882,7 @@ msgstr "" "Este ajuste determina el número máximo de enlaces por artículo. " "Predeterminado: 10." -#: inc/helper.options.admin.php:410 +#: inc/helper.options.admin.php:362 msgid "" "This setting helps prevent rarely used terms from being used by Auto Links. " "Default: 1." @@ -3883,12 +3910,11 @@ msgstr "" "Esto añadirá los términos existentes de la taxonomía seleccionada en la " "pestaña «General»." -#: inc/suggestterms.php:316 inc/tag-clouds.php:316 inc/autolinks.php:320 -#: inc/related-posts.php:313 inc/post-tags.php:314 inc/autoterms-table.php:66 -#: inc/terms-table.php:112 inc/post-tags-table.php:66 -#: inc/related-posts-table.php:66 inc/autoterms.php:445 -#: inc/tag-clouds-table.php:66 inc/suggestterms-table.php:66 -#: inc/autolinks-table.php:66 +#: inc/autolinks-table.php:66 inc/autolinks.php:341 inc/autoterms-table.php:66 +#: inc/autoterms.php:445 inc/post-tags-table.php:66 inc/post-tags.php:324 +#: inc/related-posts-table.php:66 inc/related-posts.php:313 +#: inc/suggestterms-table.php:66 inc/suggestterms.php:316 +#: inc/tag-clouds-table.php:66 inc/tag-clouds.php:316 inc/terms-table.php:112 msgid "Title" msgstr "Título" @@ -3900,14 +3926,14 @@ msgstr "Título de la cabecera" msgid "Title:" msgstr "Título:" -#: inc/autolinks.php:584 +#: inc/autolinks.php:571 msgid "" "To be included in Auto Links, a term must be used at least this many times." msgstr "" "Para ser incluido en los enlaces automáticos, un término debe usarse al " "menos esta cantidad de veces." -#: inc/autolinks.php:267 +#: inc/autolinks.php:269 msgid "To create more Auto Links, please upgrade to TaxoPress Pro." msgstr "Para crear más enlaces automáticos, actualiza a TaxoPress Pro." @@ -3935,14 +3961,14 @@ msgstr "" "Para crear más términos para la entrada actual, por favor, actualiza a " "TaxoPress Pro." +#: inc/autolinks.php:753 inc/autolinks.php:786 inc/autolinks.php:851 +#: inc/autoterms.php:605 inc/autoterms.php:618 inc/autoterms.php:650 +#: inc/autoterms.php:663 inc/autoterms.php:694 inc/autoterms.php:751 +#: inc/autoterms.php:776 inc/autoterms.php:801 inc/autoterms.php:876 +#: inc/post-tags.php:551 inc/related-posts.php:463 inc/related-posts.php:676 #: inc/suggestterms.php:449 inc/suggestterms.php:559 inc/suggestterms.php:574 #: inc/suggestterms.php:603 inc/suggestterms.php:661 inc/tag-clouds.php:521 -#: inc/tag-clouds.php:544 inc/tag-clouds.php:616 inc/autolinks.php:457 -#: inc/autolinks.php:484 inc/autolinks.php:762 inc/related-posts.php:463 -#: inc/related-posts.php:676 inc/post-tags.php:520 inc/autoterms.php:605 -#: inc/autoterms.php:618 inc/autoterms.php:650 inc/autoterms.php:663 -#: inc/autoterms.php:694 inc/autoterms.php:751 inc/autoterms.php:776 -#: inc/autoterms.php:801 inc/autoterms.php:876 inc/taxonomies.php:497 +#: inc/tag-clouds.php:544 inc/tag-clouds.php:616 inc/taxonomies.php:497 #: inc/taxonomies.php:616 inc/taxonomies.php:630 inc/taxonomies.php:771 #: inc/taxonomies.php:807 inc/taxonomies.php:833 inc/taxonomies.php:867 #: inc/taxonomies.php:891 inc/taxonomies.php:915 inc/taxonomies.php:941 @@ -3951,7 +3977,7 @@ msgstr "" msgid "True" msgstr "Verdadero" -#: inc/helper.options.admin.php:476 +#: inc/helper.options.admin.php:428 msgid "Try new engine replacement ?" msgstr "¿Probar el nuevo motor de reemplazo?" @@ -3963,31 +3989,31 @@ msgstr "Tamaño de fuente de la unidad" msgid "Unit font size:" msgstr "Unidad de tamaño de fuente:" -#: includes-core/TaxopressCoreAdmin.php:94 +#: includes-core/TaxopressCoreAdmin.php:99 msgid "Unlimited “Auto Links”" msgstr "«Enlaces automáticos» ilimitados" -#: includes-core/TaxopressCoreAdmin.php:95 +#: includes-core/TaxopressCoreAdmin.php:100 msgid "Unlimited “Auto Terms”" msgstr "«Términos automáticos» ilimitados" -#: includes-core/TaxopressCoreAdmin.php:93 +#: includes-core/TaxopressCoreAdmin.php:98 msgid "Unlimited “Related Posts”" msgstr "«Entradas correladas» ilimitadas" -#: includes-core/TaxopressCoreAdmin.php:96 +#: includes-core/TaxopressCoreAdmin.php:101 msgid "Unlimited “Suggest Terms”" msgstr "«Términos sugeridos» ilimitados" -#: includes-core/TaxopressCoreAdmin.php:91 +#: includes-core/TaxopressCoreAdmin.php:96 msgid "Unlimited “Term Display”" msgstr "«Visualización de términos» ilimitados" -#: includes-core/TaxopressCoreAdmin.php:92 +#: includes-core/TaxopressCoreAdmin.php:97 msgid "Unlimited “Terms for Current Posts”" msgstr "«Términos por la entrada actual» ilimitados" -#: inc/terms-table.php:610 inc/autoterms-logs-table.php:550 +#: inc/autoterms-logs-table.php:550 inc/terms-table.php:639 msgid "Update" msgstr "Actualizar" @@ -4016,20 +4042,20 @@ msgstr "Actualizar el nombre de la etiqueta de medios" msgid "Update options »" msgstr "Actualizar opciones »" -#: inc/class.admin.php:475 +#: inc/class.admin.php:480 msgid "Update TaxoPress Logs" msgstr "Actualizar los registros de TaxoPress" -#: inc/suggestterms.php:717 inc/tag-clouds.php:731 inc/autolinks.php:807 -#: inc/related-posts.php:763 inc/post-tags.php:608 inc/autoterms.php:1056 -#: includes-core/TaxopressCoreAdmin.php:103 -#: includes-core/TaxopressCoreAdmin.php:159 -#: includes-core/TaxopressCoreAdmin.php:182 -#: includes-core/TaxopressCoreAdmin.php:205 +#: inc/autolinks.php:899 inc/autoterms.php:1056 inc/post-tags.php:639 +#: inc/related-posts.php:763 inc/suggestterms.php:717 inc/tag-clouds.php:731 +#: includes-core/TaxopressCoreAdmin.php:108 +#: includes-core/TaxopressCoreAdmin.php:161 +#: includes-core/TaxopressCoreAdmin.php:185 +#: includes-core/TaxopressCoreAdmin.php:209 msgid "Upgrade to Pro" msgstr "Actualizar a Pro" -#: includes-core/TaxopressCoreAdmin.php:83 +#: includes-core/TaxopressCoreAdmin.php:88 msgid "Upgrade to TaxoPress Pro" msgstr "Actualizar a TaxoPress Pro" @@ -4046,15 +4072,15 @@ msgstr "" msgid "Use auto color cloud:" msgstr "Usar auto color de nube:" -#: inc/autolinks.php:383 +#: inc/autolinks.php:406 msgid "Use case of term" msgstr "Usar el formato del término" -#: inc/autolinks.php:377 +#: inc/autolinks.php:398 msgid "Use case of text in content" msgstr "Usar el formato del texto del contenido" -#: inc/autolinks.php:774 +#: inc/autolinks.php:863 msgid "Use new Auto Links engine" msgstr "Usar el nuevo motor de enlaces automáticos" @@ -4062,7 +4088,7 @@ msgstr "Usar el nuevo motor de enlaces automáticos" msgid "Use only some terms in the selected taxonomy." msgstr "Usa solo algunos términos en la taxonomía seleccionada." -#: includes-core/TaxopressCoreAdmin.php:198 +#: includes-core/TaxopressCoreAdmin.php:202 msgid "Use Regular Expressions to modify Auto Terms" msgstr "Utilizar expresiones regulares para modificar los términos automáticos" @@ -4105,7 +4131,7 @@ msgstr "" "Se usa por indicar que no hay términos en la taxonomía dada asociados con un " "objeto." -#: inc/terms-table.php:425 inc/class-taxonomies-table.php:281 +#: inc/class-taxonomies-table.php:281 inc/terms-table.php:432 msgid "View" msgstr "Ver" @@ -4120,7 +4146,7 @@ msgstr "Ver %s" msgid "View Item" msgstr "Ver elemento" -#: includes-core/TaxopressCoreAdmin.php:128 +#: includes-core/TaxopressCoreAdmin.php:131 msgid "View Knowledge Base" msgstr "Ver la base de conocimiento" @@ -4140,7 +4166,7 @@ msgstr "Que mostrar" msgid "Whole words" msgstr "Palabras completas" -#: inc/autolinks.php:270 +#: inc/autolinks.php:274 msgid "" "With TaxoPress Pro, you can create unlimited Auto Links. You can create Auto " "Links for any taxonomy." @@ -4184,7 +4210,7 @@ msgstr "" "Puedes crear visualización de términos para cualquier taxonomía y luego " "mostrar esa visualización de términos en cualquier lugar de tu sitio." -#: inc/post-tags.php:269 +#: inc/post-tags.php:271 msgid "" "With TaxoPress Pro, you can create unlimited Terms for Current Post. You can " "create Terms for Current Post for any taxonomy and then display those Terms " @@ -4207,71 +4233,71 @@ msgstr "" msgid "WordPress core" msgstr "Núcleo de WordPress" -#: inc/suggestterms.php:807 inc/tag-clouds.php:851 inc/autolinks.php:909 -#: inc/related-posts.php:884 inc/post-tags.php:728 -#: inc/class-taxonomies-table.php:374 inc/autoterms.php:1158 +#: inc/autolinks.php:1000 inc/autoterms.php:1158 +#: inc/class-taxonomies-table.php:374 inc/post-tags.php:759 +#: inc/related-posts.php:884 inc/suggestterms.php:807 inc/tag-clouds.php:851 #: inc/taxonomies.php:1703 msgid "Yes" msgstr "Sí" -#: inc/post-tags.php:693 +#: inc/post-tags.php:726 msgid "You can also add HTML elements to the formatting." msgstr "También puedes añadir elementos HTML al formato." -#: inc/related-posts.php:731 inc/post-tags.php:575 +#: inc/post-tags.php:607 inc/related-posts.php:731 msgid "You can find markers and explanations %1sin the documentation%2s." msgstr "Puedes encontrar marcadores y explicaciones %1sen la documentación%2s." -#: inc/helper.options.admin.php:148 inc/helper.options.admin.php:277 -#: inc/helper.options.admin.php:351 +#: inc/helper.options.admin.php:82 inc/helper.options.admin.php:225 +#: inc/helper.options.admin.php:303 msgid "" -"You can find markers and explanations in the online documentation." +"You can find markers and explanations in the online documentation." msgstr "" -"Puedes encontrar marcadores y explicaciones en la documentación online." +"Puedes encontrar marcadores y explicaciones en la documentación online." #: inc/taxonomies.php:1588 msgid "You can only delete taxonomies created with TaxoPress." msgstr "Solo puedes borrar las taxonomías creadas con TaxoPress." -#: inc/helper.options.admin.php:383 +#: inc/helper.options.admin.php:335 msgid "" "You can use the same syntax as st_related_posts()public static " -"function to customize display. See documentation for more details." +"function to customize display. See documentation for more details." msgstr "" -"Puedes usar la misma sintaxis que la función estática pública " -"st_related_posts () para personalizar la visualización. " -"Consulta la documentación para obtener más detalles." +"Puedes usar la misma sintaxis que la función estática pública " +"st_related_posts () para personalizar la visualización. Consulta la " +"" +"documentación para obtener más detalles." -#: inc/helper.options.admin.php:210 +#: inc/helper.options.admin.php:148 msgid "" "You can use the same syntax as st_tag_cloud() public static " -"function to customize display. See documentation for more details." +"function to customize display. See documentation for more details." msgstr "" -"Puedes utilizar la misma sintaxis que la función estática pública " -"st_tag_cloud() para personalizar la visualización. Consulta la " -"documentación para obtener más detalles." +"Puedes utilizar la misma sintaxis que la función estática pública " +"st_tag_cloud() para personalizar la visualización. Consulta la documentación " +"para obtener más detalles." -#: inc/helper.options.admin.php:288 +#: inc/helper.options.admin.php:238 msgid "" "You can use the same syntax as st_the_tags() public static " -"function to customize display. See documentation for more details." +"function to customize display. See documentation for more details." msgstr "" -"Puedes utilizar la misma sintaxis que la función estática pública " -"st_the_tags () para personalizar la visualización. Consulta la " -"documentación para obtener más detalles." +"Puedes utilizar la misma sintaxis que la función estática pública " +"st_the_tags () para personalizar la visualización. Consulta la documentación " +"para obtener más detalles." -#: inc/helper.options.admin.php:83 +#: inc/helper.options.admin.php:17 msgid "" -"You must set ‘Order tags selection’ to count-desc for retrieve the 100 tags most popular and ‘Order tags " +"You must set ‘Order tags selection’ to count-" +"desc for retrieve the 100 tags most popular and ‘Order tags " "display’ to random for randomize cloud." msgstr "" "Debes fijar ‘Orden selección de etiquetas’ a contador-" @@ -4279,11 +4305,11 @@ msgstr "" "visualización de etiquetas’ a aleatorio para generar " "la nube aleatoriamente." -#: inc/helper.options.admin.php:266 +#: inc/helper.options.admin.php:212 msgid "You must set zero (0) for display all tags." msgstr "Debes fijarlo a cero (0) para mostrar todas las etiquetas." -#: inc/post-tags.php:453 +#: inc/post-tags.php:475 msgid "You must set zero (0) to display all post tags." msgstr "" "Debes fijarlo a cero (0) para que se muestren todas las etiquetas de las " @@ -4305,7 +4331,7 @@ msgstr "" "Necesitas una clave API para usar OpenCalais para sugerir términos. %1sHaz " "clic aquí para ver la documentación.%2s." -#: inc/related-posts.php:759 inc/post-tags.php:604 +#: inc/post-tags.php:636 inc/related-posts.php:759 msgid "" "You're using TaxoPress Free.\n" " The Pro version has more " @@ -4315,8 +4341,8 @@ msgstr "" " La versión Pro tiene más " "características y mejor soporte." -#: inc/suggestterms.php:712 inc/tag-clouds.php:727 inc/autolinks.php:803 -#: inc/autoterms.php:1052 +#: inc/autolinks.php:896 inc/autoterms.php:1052 inc/suggestterms.php:712 +#: inc/tag-clouds.php:727 msgid "" "You're using TaxoPress Free.\n" " The Pro version has more features " diff --git a/languages/simple-tags-fr_FR.mo b/languages/simple-tags-fr_FR.mo index fe0cc185476da50ac35cd63771bfe4c92a300950..2261bbe95bfb2979b85815fbdb6afa31b5482ab2 100644 GIT binary patch delta 14515 zcmYM*d3?>s{>Sm}AqkR@L%LVT zr;_8iPBeu)T*yGZxGNULVHl1xZ2KBp--$uApT=0cYU_UKj^j@~4Ao&Y24f8jz!n&a zolp}QlB4T5lPMISVF`xdI@CaRqaHYE>sQfB{Z9w*5EM3m>9h^c1^e?&^-S470E{zQU$hyN2T= z<18$RU)uUrtVunDf4Ge)w4$IJmSQ>Fi)HZ-TQAD=6zYaZlQS4oaT78I=Ncwr@!F1) zf=#dlj<>Ev<Bd7iR$nHYH4ye zFarrj`{Tmv+sBErm z>y1z^>WWIzvG)2rR7a~(1Nj2IcnCGI>!>Bj+sNz!wK5^*B^L6^WSZ)T6MUhE}MVgfub95{oUV zx5PMHh57IZYQU#$`zzZXN6PE@WYj?GqdIJd8b}uU<2ZbT)6q-+&X{KA!g5rI*P&jp z%X$=BQ@?;-Ola;nWw04)U?Z>;F2h*dZ`*I!dVVrkOHv8hnND+z#u@0Pe`gZ~&Fmzq zPbD%s``2NmUk=D~&J_J6flra$_5o$J3}ae}xH{N?0pm4|Elh1r+k* zN>nm#M!one48-rT3;u+Qv05v~8Hi_)RdZ?(9_7L`R0QYXRa}Y69k-2n&m!DK{Ug+b zI=3bM3f-u-X1}gLh3YtJM!%x6Hi%8F&!dW{7Y;;UoPc`KG*riHFc0pq*T1y&gBU{l zanyt^+xo3`#J>m)&u9q6&iMVEfJ_sCC{(1}L<*WwC2L)*NWC>`22)Ts&cGm?Z(WT_+HI)k_gIgkI{eXk z2Q~0ls2PWLG}ogsg8rQp3L1GU%!R#BH}*lzY&a&Piz&Dji{N!s?!3Um7}LpIzlj{4 zPVvr;(;u_2Jf6fJQ0vR2n{ojp(_TxmTz!K2oQo_y3(AA+vdHg7Mp#=)42dQoeHHOd-oEoCi@ zdAUCUl`EA{OO%Fn@O4bXPw^PuL`8agmN`k!W)c5*8vddo3`_Jj`@1sg#m!L>$v{q1 zCktoeR;-RS`j~G(qfwE$h*9_w^}gbLjVY+5X@=T{T~JH;Mqk%-IF<&D_&rpzoyBtK z+s}NHsf2p4Ef&T8=!X+g6PS)#g6$ZGhfo9g1NB~iGEvVpM;$`Teya$xDdd>?!{!( z+Oqh1#aqFh4%PT=)_-L(dTNo;+BXdME~BJnH_+7)t+6 zeF_S7CMu-!bpbb`I^KtQ@q5&MzKF{1sG%l8spzHN5;d@4sNFCLBk>a~gI}WtatHN% zu3^MqFAk@mq>I46@b z2MZ53&lkrM)Dwpje`RMg8f0Ho$R=7>qLO6~hT;#X5dMy3@dfH^PZ+^(0c?m`;~}UC zjX@1)Dk`VuVF)hAVBF%`hObZq_#QRVJE#XAqh|8TTJS$6xni*|?TJ_y-^22F4z(M6 z-ZHt8fDNb*LFK>>)NZ(f$`SWDg~AlPBh7=AQ8Va*%Hjd2wH%5Xkc(P^nW%v+K`qTD z)N@-g4ELh$KZ}aQ&$fQcUVn^4!gT^zAkDlu>c%wG64XV#pu24!h#JrcEQF&`$u}1@ zvn8k#?f~lf-!K6^Z<~RZMP09j%Bfx$to=WLg4SeoP6Hn>sDZ3N4PYJW!R@F>oI`bd z9TkCl7>=INrac1HK`GQ4C!z*i9ksNrZF@%y)czkxK_MN9deKx=vaLcrn2k!ZqgVug zv+d8ZDD{vrX8R?e)-(&X1n;1hb|vb*9jM*%Eoy+T(AApxjWuf*ifPons1SBUz344W z$2q7797PTI0%}G#Py@Y(ib(Ep=Dsj%9ICytwF&C^F5`&5E)1k00>`03yA<_d^bzXC z-=Jo48JplEYxVJFCeu($HV3to?^`#ZCa?!J(KELFXViNijwk*q_@O$8K)s*>>VbOp zdMhkWy$>qHlQ9z4VGvclzKVJd5gZ=_C`WV;DvK3@QQ-Q5`))9XQdG&Hd$2OWPHdTZ>T>bvIJbng1mw z;|Y7ibJP+9Pche1QQ2G{^@0pkXb0H(1nWZ7`_`imes0^pL_L2Rm3-Hb+;N?o6yj)j zfO=t(spbXcQQNNuYAG6{u4kZ^_6{(Z6$$f<}B1xyQ*jQ*q&Y0I~{B$Sl+GB2?1+7qx4Sq6T&ewQFvmB6ASW7C-FFf- zz?&F@udo!x%r&{t2rE(VkM(i+T;lAdaLwM3Yo3WjNoxaZKkE!k;{HvjNL|93=r`ZY zsDU*T@6bL7l~b7{f@VAzRd=xlE>J;7>-YE;1}-o^zbB(+v=bHjGuRyOVoOY4XkIiE z6`7T&fn{Sh{)&pg`-{w)e}Rg`RSZVo#pbJ;8%9B)&P2U%zPYg*>Hzr= z%i@nX1^t$opVhOh2T%ilf}JpQsc{HqQ9p)?T)7Vzobo)ALU$S-U~g=-%slWJcBLM? z+?=qY?e zLl4}7xmTOBdpp*pehTYgL2hb`?XUr^M-BKMs-w1R_=c-?)C`@E%^x5V@inRoQOW)b z2I5WB=Z^Cig=Y91t6}4{#wl2n`hM#xYt2vin;-4t&<77=Bp$~C_&WyS-&hR&))}L* zIQ8n*PUz~vQ4~t!BJ{((r~~2<>V@B-lI993C+=B&IMxbMFNR@Q4t0NhEQ)PWxiT2p zD9%#U^9dWw`)Y3>{z{hCH0Z#19n0Z6n1P>R8w}WJ{tVX*m89!XYyAWjfs9S&i%2KT zN4*z@;$YN(CSYEiiwgY`48XOUh<|Si+h~wsn`y)`I1r=%YwELcKlO@R_^T!UiF$F% zPt9M$yI}?Dy->Nb5GUbztc)GE5=EScC$RfAmJ1Wz?WXWICem<#&6|XGQ5_ZEVgB^` zHjboz9*1L#&&)5NgQyvW?=&Z894aCySO}}4Lf!%sus8bST+EH`2NbmCE72F%Vi0aZ z&2SHDjgO-qyn-t{WG~jHK5ds->u*r^UBwdkCq`rFZgaw>VoB=lQAs!&xzBZ$*c*1C z9{3Tf<1^G6rF~%zl=@hTdJl}lsaP5}qat<|qtIuM**zsOhI)5Y1SVl+T!I?NDGby8 z|C54V=>Mg;P{Epkdg0p`sRvO5_zYw5qSe`J4x%`$NPB10bMInZ{4XlP4=_JIK_#j0 zJ_bwwP7npHVIkCoXbizbTd#rIevMEs%CvSzy|6Fl!4aq>8;jj>7OuuWur|*5%AADX zp&}8!pZF^jtth182<(U(u^;*zFf$&E<*Cm{W%+)rf{##N3r102g)zAAYvP|w;TjFqu;3xHrY%qddJA8}&8Qdti$gH|usLcspqIMmh+7T`Vh4f?Fa2|D|AE$%{5RRoW1(k$d zFcIHIg?=q6q$f}VxQ!_oa?%W-A!>lVQA;=h_5M#W5#56nG?IJR6QjO0Ycm101Z%Je z{)kGhhnN?2oax2+P}gJ82Wwye)NZ%B`sbJrZ=-VLF_y=a@6E2sLPc-{YQW1e9Cu-?_Wv0Q3dvKf z>S6R}%)f+g@PnCwiyGhp>o)XKKZUR315C$mXU)g;QmjV(0;;{xIrDMd5}Qze9~5MvGcl0*Rn&{_q8D>tG`pb`Y9RG-IJU6rE8sTZC0`7bfEa zY>ClV&2D%DeW|~X+MX*=13iNI@B(U^|AI>5TUT8(vPU!&q9NZkv+bf#9agn=!MfC4 zY=H-H2!{M(w(kVgQf|ck(Tm+s19UM47h^Q;#!`3*qfkGEx$Zh8C}`$&(Tka= zwS614UpHbdJc32=7>46DtcB08HCDT6I+%kg)VE_E5B*>|_4~K@pu>dQd^F=2Ow<1N z=agwfLp^MOi?JMD#w7H=W4_;~<0R^HaT6B2%MVQ4hYJ0^dnS30VGrt$QQIx!zB!0o z>pb+*z8Xu=zjKg+5B`E>@OKQx;0GoLqESl|kIId@SQ#@=Ni`eG;yPPDi(1nA7>S_| z%~B+z>TR(<4nubkg&!#l#0HP}8iiX?**o=5<6P7dEVVATuCjh)U29#BdAWZR=Efb^ z40mA<^m%L|+UGIxR|vnLp_2T|oJ{vnOHt`>lRR%*mtipNdr>*_9k$2ca2Hm4!gqdr zjQz0ZQ$Iw7FI`3j3+=iv`2zJ4H*bbZhYrdR*h*hay zK`$10X4X0lbM`$pqd_1p_g#afOh=cxS;YM;M@isWYN0o0P6#}ar4lePZ?J)WGCss<`_O;8WE z#V*+2)(>Mi^@|vZk5MxX$>qseirQF{`e@Wdc4La}LppNebDM#6!fMoAtg8LLhk{1* z7b+y)gubq7I^osF^OsDBOn%^%X3NPf_=U_?q{{qb67mmBdvr ziT<6&6!hXzs0U}FI$ndy?!%~#BK=GUbufZ@7gWxS!u~i7_1t|_wuf;1Rlyoq9RGt_ z^92}-2hi0T|4tzuy?KpIQAsrdT6s76~m}MMXha6KC?uz7)ZSqY6+X8 zw&e!&Vwk@t=c`*4e~IMbw)61eqKtjEYbRmx3;oMXgZ{)Y^7N&2*$~UyPc`4pcJkM?H4} zb--LkMdS~hgAY*$kQ;1v#SyGP-8aOO^GB*G_@=JUrJ((utDs4;%BUMVqZj9(l4uL+ zz`23y=wDlRLd{GHp>iM^y;ub`;7n8`dZP}o@u($Ojl9owc2iJteTz!AUr^beuaH@a z@~Fu4v-PQ{7wkg~=sYTvw=o)@pgImO?8*6l5Q|!}KB)J8fJyijhHC%cr%;)O++m)a zuSn^reOw1Mur8?W`37qLPDXV+2eqA6qh@#tb#&iC9Z-)@OBhtdw3kOMT@}WjVJ%DvH}{P|-M0)~ zW%oV`I>T?EW)NA-%rMqk67>hem82MU!y|!531vW#XZh2jK?he05yP@s1q_@ zlzD#<)BviYa-d5T`(GoRO@li81aoGFUh0o*duR!BUm7aQ+n`?5AGP0Sp>km#>OFU` zA%=L(?#V=bD9yuUJb}9Zxl5rsg@kC+VL#M|&~((yw_!WHjyhn{V@&9J;{x4>FEO&D z$Ekx6rA(x{qPB5AR3w&SRs0xrUi^eL(Y;GS$x$}eY_q|r2+Tx9W*fG^6ZU$sI8V-x z$23&3jzjI1MW`8VMRoiWs>9&YWKumm;2Ur<^8 z)YeNSn2@JiyP*!4NvPy|7uDffROC*h2KEFM>O6^NNy1R?_u{u$8Bfr^<5QNk^Y9>! zr(UqU$?o~6&~L;o_z$kY^+_IQ12#-H=fMM11cLZ&tplqHYR#LYc1;J{-V-&@x3D~} zMz<`5(-f2gFHlEmjf!TQHAQ9j1XOZmqt1uFP@e%W(ThHn?Dj>?yb)?39Z)$k7?lfC zumtWyMee6c?Eh#Af6<`*TqMOjkc`TO#;5_c#8B*lTAE>~fiFkB@EBIXTc`mwt|4x^DNILwo_~Z&#%!#OFK`yttY((z zIBG`z)y+YZjQy!+puTGDLvUo@TG-RVfTA{ut=ilcI#W$!|Z{Tqz;uhoqC%K^~=Z{V+aU}JEjXXL3B623`{-DO5 zoWB`QM82gtr*JmySDKh_JOi7W`>vq=`%|Z7Gt)sfYFnf>HwQ;=JWu^Syo&=~Ge>ZT z7M`5H7fi%Xw4cSknAFl7)r)Z~^*^vT_HX5Jrs203kL_BU{>Ec(`sdTcY^OdLLUj-- z`^TYPFa?|9Eo(|!6LJ?D)BYVc!y@g>fU;0W>^{_5e~nT20F@g-877CypsO`$K|wk2 zA1sBdQSC>tGTy}kSgO4lU?tR-)CQ>gdZM16ZtFYj^-HLu`w8mgD@N*TyC$Os+^Pfn z|1gE+G-#x~GEH*LMV(X|QAu?UYolLBPtM|{>PkFgK+lAY~`4C=Gw zT`Y);QAxhR`b}r{zqZ|V8j9fG7>EVBc$}3Ofgj=*_yjw5_2m40uWdJvbDR1Dj3CJ_ zb@wV40N@%hYybcN delta 19605 zcmZA92Yk)f ztEg3@sx9UBdf#*W{~q7Z<8ksl>vKM5e(p_t`+ayh_3!Uedw$B2YQDqeN$EIwF@PVN zQ#nqCa>{j_U3DEN6nA3)-oPyQ6!T-sdXD490vLofY&sruk)DWoa22ZkWShQ*rFg9K zl1N$#LhGA`BQYoGny3ca+x)>cJry&NzYYuGKAXOd=}137J@6&^W99~qlO79TRt!fC zq`Fs+<9tjcBN@FgGY&_Ma0cpzRW`j3-K0-pcD#@3$UCfpnHrjbG(tV_V@!ixtUXX2 z?1vig2u#oOo$*9`a2963#Wuacy3^(#Ks9(0)zDe&h*xnbmTlxXRq-OSI!-`i$BDp> zSP*B~^ggUi`Zx5%5D9K#D)h$Uq-SF>JYv(2P*a_|skyN#mL~1NX#5n5;xmlGe9asu z5Sv>2qxR4o)P2dQ4n1$i`s;z&n>$Vgtcm5(gRSr&GP_Qe7G}yjVHVPZaR^SuahS5D zS(-`6EzTy?0RF>j81^xBuor3u``Yy2kD33BWDF-mPQ?Pa7_~;ps0W@vEzMQTj(0FK zzP9?&Ta^c*FBU_Um%-c^gE_Ga>eP%tE#XoR5j|jo^&slTvzQHkvi^zwq|>!F`FT(c zMPgQLj4F@AoH!8Gk(ubmMW}%t#L{>Z1JIMD4M&1V5mb*_qGlo%wJH0eIx-Zs+dn}~ zhXooAzz%oiUG-gUC@T1fxds8)~!sgKT7{U^~Yt zi~~>)T7v5EI-7sd=KqVjKUI6v(VVCbg`hf87B#>o_#E4zoBiiB>R<}`qNZ>-YNXSx z%a8-$Y(qD`#SjeS?5Sfh7>tRiQ!>xyAF}D&s3l3;$#E*88-uVtx;;cZL^QHhs0VMc z=|iXyoxr^K18M{>F*iD~X0PNy9lzq%)|j941oX}nYRxZV82Wa0oRS!Y9yQpFh}Nh- zYBP>TZNj;zUA-QeU1tw2z)W2nXCZFD9#}b!S-{PxJ@FhhlmFl?Oc!tV&_h&vuC9)A z05f)F{xz~wWCY_KEQY?_%#@WujjRzCz~NXHSD-fK6-P3nP4_oXBtBmSsGY=6>eH?1)`lI&1P)vtYYZJj2DOBr zq4v^wJc%!C`N2MpQ;YNyWEGvLM4b-Se>o8ykF!_|Q}i_>ErCI#o1$(^LfUc;Sws3c z&T-NUP)pIKzxh;)$I7Iqp!UjX^vAo_SE!Eq3}B!-|864Mr4>=NLDU?S+6OlP-)(*T5Rs0`(E@EG8l!;bN>Z(5&q>>uuB$ z{BC_@{log)`qKJ0Y5=cMyFV32Bno{|d#N&(!_kA7|1(4mlA);{H`u&l*JCK@uP{44 z#cY^%h-o+5CI0h?X#-Zk$Q9abmY(*W*Z&B?%v8Eoz{A+FU4m0PnIBG4c zqaN4*)#EN0f$On2Uco?2HQd}6j5$e{M=e=X)BswerhFV0#`&m@B%|8B;US_M^Nld) zu?%X;YM^e6v9`eg(!H!>P{(coX21O0b;bD`Szgc8waibnOg zgLSfX59&DGL^rxdnYAl`nvu4s{OPDA*^U~}=cr?P34QSvYGxmxI`k5A>-?u?2~@$2 zIt5{<8zWF_ThXScpq6Sr=E4nF2#;b>yo-7hW*Kb;5{)X4#~_@BIdD6w{z=Tw^POiz zvXbFH##9JKEkQ+_u7+CE)~JqkLXET+YKn(hXP~BZ73!GoLDf5kIz8W_26zG0&JUQ4 z=R0?ZXbt~G-H>*y=}-TWrJZg5aMXi8K^?O-sPnuPwY&d7%}|N1|q85^70Sq3Uf!&D=I@iH9%}Gfy;A zT?4iG8lj%o28UqpiOjz~#qN@!2A*IbzCm`UlXsG_ENaS{S`$&5X*z1}tV7M<0W5~+ zF%Q1RBA8>cS>h_F0o6x!sHKO9HbX3Gje4V|R{2WLLUm*frp3dk8&9G}@}2cpOilVP z?22!&I(C_2z5{N+LZmNa4SbEY&{JiqIW`k8KN&l)Af7{w=o#w9wA0K8ilZJ>0kxJ@ zF&#EW&0t$p#}ZIWGXk}_$DsDsOjP~#=&SR;%Vr$16;7f?eiJqFCrCxdce+`Etf&Se zQ2EiQ4%I?!)_UlJoiGFwumH|ME#apah8Hl4&i{Y5g8vM&sY;=ipaQBR^=!I5>VbVw z9TXboBs&Ykba43{|yG{{QJ!`Yg+)l#|kr$AB}z(gKDTH zYP0o4jdVO}lPyMV#!qejIn*in1$F#hqn0%46SD-ZP)nPL9#xz`BobGkdiWix16Qqg zPz^mpO<~w9(@<@!K)M5F!o{c#Z$@p_{iu!}LCwe|RK0uFSF`N-PdnRG$c<{CxJ^f+ zM%WNFwLMTTjsd8K7okS79qZt6tKS?mkdIMI)&VnPck3|JW}H5U`PWF-+JarEhQG94 zMLpn=El)Am)DJ+_3&MO@1~tXaQ8P3IOW=H4eiC(xezoPk^GvroHvvB1pK64Y^Ci<*HiQO`Mx>G3(LzUM6wt!?;1 zv$?vVrfN85#2FZY%WU~M)DqmbXpE9r2CPL=I^OCe(kYUnRf(`LLMq%0AyzQ_Ts($%B=9|w#Y)<+H*4256 zU|!U~a4d?~Q5{LMkLkxqqz}#|)O%svr{=5GD%4E!hRD&x~du9h_!z0$qn1%F1 z%#LqS^|K|LV;PLaNLNZ`{$~;CL53Q5jcPFSVY68ZU@p>?u{gHE7B~@`;!TXf5?`22 zIt1I3K8>1z!bi+!Nl{eCOJP>5gz8X}BOddL>_mp9J^|C?Ak-R;wcbOHtW*D}`HSas zRJ#2!UaOe$OTPKy2~@-G2L>*aItx@D(Nz3%~}se)tiNZxE6!(IJ$Yh z^Ba+ZWTZJ~HeVR3VhmEj>5jT#3Rc9es3p3OdGJpRMt`QUFqTGb+ICn1$76onhtYTu z3t*;iH3J@At3K` zb6;hwPP#p&;rY%gB7V3LeeqM&S{=a*c*5p?kC{o|u<6I>Px=*VseCRNGojkcj%hI% zGh#99h|#zjm!hXCkxCcMKNyZe&BPhhOgNX!yE_eG#38B{JUT~ zRD)Zv4?e(;vGp~xcXp%J{sQjDXUHqV*?ir66Y6$@`PYrJZkV3G!_K73-ZZCR32JIr zpr&#?>W#S_1MxJfgZFKD@QhBUFdrskHoWd3l7+}qbYse&%&rYa zO=)wRo`|aV8L9(kP&0A|^J0dd&3hsgHT5kpKMqHAUK z&7g;!Ohi4dkGZfr7Q(Tpj%>p6F20;f(l76t5tO)RI#|ORi*Cw2*c(@21m> zP#yUb2Vj~fJOqc~mss%+^Ns2qwkEyiDf6F}$eX9;m7D4ryWYiep!Pz8=jK8EkQ3%i z!Z3_`VW#vG)RLS>jnL;$GgC!TGuQ?70-A?f(mR+M)4epu)c+;(uO62t!x!tJ&U*{= z!FHG(<1qk7ppM^c)C0F!zs2gLpJPKT{g-*KjK@gQFHlQX=oP<7V>#6GE_;ZC5cwI^ zu+QJ-xD>>kq(iLLFdOMMsD}EYW^Np6^G-u`a3iY2$*2)uL^u9}=`i;{=Dkq})06fz zAd;0xYt+blV+%||jqq#KQar|-nE78bGhwI)ma@iRWzy}j6)r=K{3U88i@Y`uj6m&` zis;t)Z%0Hu9*KJ3JPgA97>w6YZ?dvc7ygV@ z@E>e~<^NOrtp7A3QDp4Gv@ZS!2v~vi*06R%LecC~DKC%k1+0+FS$kkzRp*n2egauWkNC)MY#rXI{?%%Z;Tp19IBpYFp+Q~3s56CiP|KOQJc*tt4W8Tc6kk~hW${dWG`wdo}fBf zAb?$sZBgw_#QL}cb>C|&jg_*w^yc+A1BmFHPe4uO7V8nznq5M5Mjy74g)?eW_tS0%}RNp=RosP2Wbn>i5j@Dk9u*fN4*ixV0t`ny^fmdyOY6RjSkTN+1=I}2dWe)HG7U8oU)X{lP-~td*zAFYbm+Pn*@%&C?29ZBdFQAcybS!w2VI-z3?DGCfRT}$~o`E{= zP7$-oqEPi(qZ_ATS=@$t;oLzz=x>{TiyBCl5bqxFIDtgmWRynrxFu>PI-}lTBT!4Q z64l^-)aLpIwb^c=c6-`TvlPWpGZSyq<52e}qwc?i>cD*r()oW$L=VmpX5Re;QES!( z)$k(Ju{(@v;4$js)K%2w{l-)d^~S7%>R21p@k~S=-!Z8BrlC&LO4I<)p^wi0JtBHT zJw>gdUorDeFNRvX(x`J@6*ZF9Hou=ukFd_OZbNO(6R7s?qj!din}HNV&0IV5Xo|<# zj18z$a1N_r$#7G#KdRnh)b373y~FRIK74YQFe5BzEsIUauZKl(IqHFDupT}|y$32r zaQ=gcG>b4J9f+Em(bgrX2k%3T=qjoMuTl3Ej5IS-3pK(HSPI9XrhY%FqsLG)_zLx4 z|B^1JFBU1u`R_tx5gD55H>g)++EV5L*-#xQi`oNiP#v6#df+P;2G2n|6)Z9DPtZOkNOarh#L7$ zY>vO8UNGg#nwjg2b5#%DV(xP0rU5mvz* zvmU4!n2eg4o!Ai1*z%mw<||qm)aD(IIxTaN0ePGqMD*aBs0U`OXhsx+n!0|N3Mbk0 zbky-$gK2Od>XrOCYQ~PErur@FI0jWR^~+!;(lMw#)XJOB`5R3njEp&`DL#zq&_mRe z=BsSJE;m7qU=-HD1*i_*LhbUuY`Q=dGv(#1?NINR(WuQg9re7mSXk%(JQ4NmC2Fcu zS2ar#fOU4Ch}XuSJF)*a9`hJy3gLECymSYU*xc5WYa2=WKOM{czM?_z2aZ2ACDw zpq8c&s^d#g?VZB1c(0DfOnqQo(}5CLh=Q7^7fuhosN>bE zk#QpG^L!O*Gw#N!_!_5S#l~idPNN3o)5N@I!cpJ-nxVdFd6J3ffw`KR2bM&Ad{)Ox z*a0>5Q7vWvF_maS+}`jl6wx)9@#_iS#4Xd7t0Hd^z2P+N5b)dS}Mtv?QY4 zISDm2kqoy6CZJv{+p!N`!roY;mCG54yHQhGqP5HW?|i+nAL$BhT+SHWhN>Ul*5&{|B;CY{g~==IGu_&I+$-f-8-6wZ=gOa8gw!b*p1o? zrDDx{qcdJ1JqsUWx6bAj+@g#5dw~brkbeQYV(~a$)jZ#sM`Q&4j&ayE-sMchZ!i>_ zb~O(ifhvECI!;}>nKxSkYWELEm5;@`c+Xn0yP5Kl7(@P9tcTeWIRENVED^n8lTmAZ z4D;g?)ZXyxVKz}=)RNRk?STOpj4N&a2`oeUA!ft^JxvEAQD0JPpziO8x_@F%&c8DD z*b3KB@9vkVH($#0;3BpUYW+xo{O8z*pG1 zzsvjgz9s`)&I8g? z5SRDAV)+lBk$yUqsiomxhM8Bd?+9~$J=AGffn(7<(zw>@DLl&bWHV|cVa$jhmPPG} zTBxO{Ywd)Z>OrV?`)br?+=AMKyKH(tW+r_YQ{uO%&z6gr9)CpotNqV^t8wpA;{J*gJluPgp!dQ1t0wuUNHiwA zpsWPx@Dx1%8IjUtYPvar-fIsPKD-+7fN#jFYBQfxZ|eWlX<*CRVg}oeW>TXKqwWaW z7)xBsn~C%+-EYQk{ z=8JsfHzZHjE$>hB!!yt(^tqkug9oj$`Pb}Cxv(k^|BpHy@Jq_|LGu1OK>j%D=$PpW zC*B;_;#2(Dw*84!r+^b;#$TKUV<_O%I28%H(vcoS{z7|$@)}d77gi_o{~=zScwgf0 zucJ1?VQ?PWc2e8>3*s`$Pm$kF<;44F{d15wLdZY`K0UoxcH$d}zs0`@E*^5$mOY`y zpQf7AoBX=uzat!@-ur7hk>QjTvG*vyi7kvEe&M*p!VFH%MIg|%c{w=mJcR7K?e<$eD z*E24U!>in>PUb~YcZvT;&~+c%(7;;C$`f*vrw^5Xi8sXNwlnpq*NU{hEgiD=5_Kl) z2Ui+fPx0-P2PtB&Dk+)&_Eh+Tg7IXIp>bVtge}C=+M8QpEz(`6w}kMF_*>MKOn5{( znDD<>S@OOoGm!g>V4Q6)&HK7q|MfKFB5WdFg^-50KHX;9O1JHUa&U77!YT3-2pI{v zNN1<6u3v3E#itQ({{DXC%ag+wBIkF?ej;2U?*!`k-YdQB*;f=?BMc$8A!@>5pt&8GHHu;qZax+~5XXT?|eg zDmEo=-UpRC+IVkUw}&+?_sq6s70CO+<`-AHga@Rb5Zc<#=n)}=9|)r~{z?=CQ6a0X z&=EJ-25S&MX&aox4XteaG*%;gM0vEmkB@q%9eGKFa^!^&{^gz`xR<2{j`mfU!lP?(Bm$n5Ve=5KW5O(4#91@9Niag+_Fj;;gb^}!JG_#WzXBYaO>S7RJ* zqK?bvt)o1Mu#m8cFu~?~*Z&0>nF;l|i7%~Ac^*=P3g436OgKo`NYHhU@@+WOHlVy> z#OEktFMZeh$HvRp4l5bWy;%vBh=0yK7g8|){C?ovAtT9FoJT<^0^cE>WrQ`9ohIno zPB`L?@lA%Z{Dfe_X~J;s=}wqV2(xXKB%YhFj*yqU)P!Kdc+xcpfARg(nMh<5fnQ7< zH-!axKyN~7((!~Tl-IyuU_pPXJ*6 zdDCoW6zLAcj}!EK@9%GN1_io?Q2DBfdjIqKDdbltoevw*fpoUsCF>`Y-67t~c5bb` z_omgC{6n@=u^2+#PA2Vf4wB$ou~ULdr3lA~>+-{RY(`#d;*V|qHS&HYOd|aaAqNc= zAia}#I{cInNnGEO-(L~bnML9$`MN@J6?vih{2#yr{V&YV1tG6haf?A6~gXNOz-? zy1pRvB-|zZL6}aR**FaUq~TkHCIsIP?){qhW%9ZZsu2GI+hQ&5^R%Pk2_#Ms-e1e8 z@Ga>BHX|ePMmFAzvJbDO+&`M~iDY&qv?pHIc6JbT>yS5#JY5BCzT$68p2sOor9xyB zqwvfBX?!>NF9|+W?u%y$UlD(88w@4=IYHMN?!7{ODwFj7jHS(HAEfKr_A_Hn>h{#< ze- zo-gq|gt??U^WghfkNkDydG_WygY<9gvzAb zVk=yN=TVp2`;(<3uO{(SJp4CXmVo|x|JR}LG2t^RbUD1)sCA1)Z52NrQ;r(@kNKHBrOZ}oYbFlR%>iOEbizrX8^S_IbNTxcU4L1-Pkob>u zWx^}Ub>%026!Ce)OX5gxuKDp1G~u2*)Y0|Y+7Am-_a@;S@uh?clouxb8Ns{%{vq>g zGLPbKg!6>mgmQ!hgyobKpz<&tP>uLI!a(AeP*->29}~J#SJ(H{)z#CcYhogKscr@k09tPLLu(CPI@xoQ_`yl zx-yfm>u1tS@HcOYy@S1|>mC1Y3bPPe+QM%5oozr_ZYut0(*ZP?-_{dDNQV<5iNB-X zG{SR2W&7ZISc-e!QeKjH3d-`}QQKZ2@A^}?iGp7+hTsrCPSE8?M|>N3M{NFR zyhjKpzch75Ql|ix!9=`IzWy(rbgd>YCGi-WR^Bo4`jPf@k{?;J3&09v|nXqRRUw4oC{;&y??5=;gh+YhwQoYSP32r&e4-lJ|$ZkV*W%hwWX_>Uf8O z#hb 1;\n" -"X-Generator: Poedit 3.0.1\n" +"X-Generator: Loco https://localise.biz/" #: inc/class.admin.mass.php:83 msgid "%1$s %2$s(s) terms updated with success !" @@ -168,7 +168,7 @@ msgstr "(par exemple, voir l’emploi)" msgid "*Replace \"term_slug\" with the slug of the actual taxonomy term." msgstr "*Remplacez « term_slug\" par le slug du terme taxonomique actuel." -#: inc/tag-clouds.php:415 inc/related-posts.php:579 +#: inc/related-posts.php:579 inc/tag-clouds.php:415 #: review-request/review.php:290 msgid "1 month" msgstr "1 mois" @@ -181,7 +181,7 @@ msgstr "il y a 1 mois" msgid "1 week" msgstr "1 semaine" -#: inc/tag-clouds.php:417 inc/related-posts.php:587 +#: inc/related-posts.php:587 inc/tag-clouds.php:417 msgid "1 year" msgstr "1 an" @@ -189,7 +189,7 @@ msgstr "1 an" msgid "1 year ago" msgstr "il y a un an" -#: inc/tag-clouds.php:414 inc/related-posts.php:575 +#: inc/related-posts.php:575 inc/tag-clouds.php:414 msgid "2 weeks" msgstr "2 semaine" @@ -197,7 +197,7 @@ msgstr "2 semaine" msgid "2 weeks ago" msgstr "il y a 2 semaines" -#: inc/tag-clouds.php:412 inc/related-posts.php:567 +#: inc/related-posts.php:567 inc/tag-clouds.php:412 msgid "24 hours" msgstr "24 heures" @@ -209,7 +209,7 @@ msgstr "il y a 24 heures" msgid "3 months" msgstr "3 mois" -#: inc/tag-clouds.php:416 inc/related-posts.php:583 +#: inc/related-posts.php:583 inc/tag-clouds.php:416 msgid "6 months" msgstr "6 mois" @@ -217,7 +217,7 @@ msgstr "6 mois" msgid "6 months ago" msgstr "il y a 6 mois" -#: inc/tag-clouds.php:413 inc/related-posts.php:571 +#: inc/related-posts.php:571 inc/tag-clouds.php:413 msgid "7 days" msgstr "7 jours" @@ -225,163 +225,163 @@ msgstr "7 jours" msgid "7 days ago" msgstr "il y a 7 jours" -#: inc/helper.options.default.php:48 inc/class.client.related_posts.php:103 +#: inc/class.client.related_posts.php:103 inc/helper.options.default.php:49 msgid "" -"%post_title" -"% (%post_comment%)" +"" +"%post_title% (%post_comment%)" msgstr "" -"%post_title" -"% (%post_comment%)" +"" +"%post_title% (%post_comment%)" #: inc/class.client.tagcloud.php:64 inc/class.client.tagcloud.php:271 -#: inc/helper.options.default.php:60 +#: inc/helper.options.default.php:61 msgid "" -"" -"%tag_name%" +"%tag_name%" msgstr "" -"%tag_name%" +"%tag_name%" -#: inc/helper.options.default.php:38 +#: inc/helper.options.default.php:39 msgid "%tag_name%" msgstr "%tag_name%" -#: inc/post-tags-functions.php:155 inc/class.client.post_tags.php:111 +#: inc/class.client.post_tags.php:111 inc/post-tags-functions.php:155 msgid "" -"%tag_name%" +"" +"%tag_name%" msgstr "" -"%tag_name%" +"" +"%tag_name%" -#: inc/helper.options.admin.php:242 inc/helper.options.admin.php:321 -#: inc/helper.options.admin.php:467 +#: inc/helper.options.admin.php:182 inc/helper.options.admin.php:273 +#: inc/helper.options.admin.php:419 msgid "all – On your blog and feeds." msgstr "all – Dans le blog et les flux RSS." -#: inc/helper.options.admin.php:103 inc/helper.options.admin.php:126 +#: inc/helper.options.admin.php:37 inc/helper.options.admin.php:60 msgid "asc – Ascending." msgstr "asc – Ascendant." -#: inc/helper.options.admin.php:243 inc/helper.options.admin.php:322 +#: inc/helper.options.admin.php:183 inc/helper.options.admin.php:274 msgid "blogonly – Only on your blog." msgstr "blogonly – Seulement dans le blog." -#: inc/helper.options.admin.php:338 +#: inc/helper.options.admin.php:290 msgid "count-asc – Least common tags between posts" msgstr "" "compte-asc – Les étiquettes les moins communes entre les " "publications" -#: inc/helper.options.admin.php:339 +#: inc/helper.options.admin.php:291 msgid "" "count-desc – Most common tags between posts (default)" msgstr "" "count-desc – Les étiquettes les plus courantes entre les " "publications (par défaut)" -#: inc/helper.options.admin.php:114 +#: inc/helper.options.admin.php:48 msgid "count – Counter." msgstr "count – Compteur." -#: inc/helper.options.admin.php:91 +#: inc/helper.options.admin.php:25 msgid "count – Counter. (default)" msgstr "count – Compteur. (défaut)" -#: inc/helper.options.admin.php:336 +#: inc/helper.options.admin.php:288 msgid "date-asc – Older Entries." msgstr "date-asc – Anciennes entrées." -#: inc/helper.options.admin.php:337 +#: inc/helper.options.admin.php:289 msgid "date-desc – Newer Entries." msgstr "date-desc – Entrées plus récentes." -#: inc/helper.options.admin.php:104 inc/helper.options.admin.php:127 +#: inc/helper.options.admin.php:38 inc/helper.options.admin.php:61 msgid "desc – Descending." msgstr "desc – Descendant." -#: inc/helper.options.admin.php:138 +#: inc/helper.options.admin.php:72 msgid "flat – Display inline (no list, just a div)" msgstr "" "flat – Afficher en ligne (pas de liste, juste un balise " "div)" -#: inc/helper.options.admin.php:244 inc/helper.options.admin.php:323 +#: inc/helper.options.admin.php:184 inc/helper.options.admin.php:275 msgid "homeonly – Only on your home page." msgstr "homeonly – Seulement sur la page d’accueil du blog." -#: inc/helper.options.admin.php:137 +#: inc/helper.options.admin.php:71 msgid "list – Display a formatted list (ul/li)." msgstr "list – Afficher une liste formatée (ul/li)." -#: inc/helper.options.admin.php:340 +#: inc/helper.options.admin.php:292 msgid "name-asc – Alphabetical." msgstr "name-asc – Ordre alphabétique." -#: inc/helper.options.admin.php:341 +#: inc/helper.options.admin.php:293 msgid "name-desc – Inverse Alphabetical." msgstr "name-desc – Inverse de l’ordre alphabétique." -#: inc/helper.options.admin.php:92 inc/helper.options.admin.php:115 +#: inc/helper.options.admin.php:26 inc/helper.options.admin.php:49 msgid "name – Name." msgstr "name – Nom." -#: inc/helper.options.admin.php:466 +#: inc/helper.options.admin.php:418 msgid "no – Nowhere" msgstr "no – Nulle part" -#: inc/helper.options.admin.php:241 inc/helper.options.admin.php:320 +#: inc/helper.options.admin.php:181 inc/helper.options.admin.php:272 msgid "no – Nowhere (default)" msgstr "no – Nulle part (par défaut)" -#: inc/helper.options.admin.php:247 inc/helper.options.admin.php:326 +#: inc/helper.options.admin.php:187 inc/helper.options.admin.php:278 msgid "pageonly – Only on your page view." msgstr "pageonly – Seulement sur votre page vue." -#: inc/helper.options.admin.php:93 inc/helper.options.admin.php:342 +#: inc/helper.options.admin.php:27 inc/helper.options.admin.php:294 msgid "random – Random." msgstr "random – Aléatoire." -#: inc/helper.options.admin.php:116 +#: inc/helper.options.admin.php:50 msgid "random – Random. (default)" msgstr "random – Aléatoire. (par défaut)" -#: inc/helper.options.admin.php:468 +#: inc/helper.options.admin.php:420 msgid "single – Only on your single post view." msgstr "" "unique – Seulement sur la vue de votre publication unique." -#: inc/helper.options.admin.php:246 inc/helper.options.admin.php:325 +#: inc/helper.options.admin.php:186 inc/helper.options.admin.php:277 msgid "singleonly – Only on your single view." msgstr "singleonly – Seulement sur votre vue unique." -#: inc/helper.options.admin.php:469 +#: inc/helper.options.admin.php:421 msgid "" -"singular – Only on your singular view (single post & " -"page) (default)." +"singular – Only on your singular view (single post & page)" +" (default)." msgstr "" "singular – Seulement sur votre vue singulière " "(publication et page uniques) (par défaut)." -#: inc/helper.options.admin.php:245 inc/helper.options.admin.php:324 +#: inc/helper.options.admin.php:185 inc/helper.options.admin.php:276 msgid "" "singularonly – Only on your singular view (single & page)." msgstr "" "singularonly – Seulement sur votre vue singulière (simple " "et page)." -#: inc/helper.options.default.php:47 inc/class.client.related_posts.php:100 +#: inc/class.client.related_posts.php:100 inc/helper.options.default.php:48 msgid "

Related posts

" msgstr "

Publications similaires

" #: inc/class.client.tagcloud.php:67 inc/class.client.tagcloud.php:274 -#: inc/helper.options.default.php:58 +#: inc/helper.options.default.php:59 msgid "

Tag Cloud

" msgstr "

Nuage d’étiquettes

" -#: inc/helper.options.admin.php:80 +#: inc/helper.options.admin.php:14 msgid "" "‘Order tags display’ is the second. Once tags " "choosen, you can reorder them before display." @@ -390,7 +390,7 @@ msgstr "" "seconde étape. Une fois les étiquettes sélectionnées, vous pouvez les " "réorganiser avant de les afficher." -#: inc/helper.options.admin.php:79 +#: inc/helper.options.admin.php:13 msgid "" "‘Order tags selection’ is the first step during " "tag's cloud generation, corresponding to collect tags." @@ -399,12 +399,12 @@ msgstr "" "première étape de la génération du nuage d’étiquettes, elle correspond à la " "récupération des étiquettes." -#: inc/helper.options.admin.php:207 inc/helper.options.admin.php:285 -#: inc/helper.options.admin.php:380 +#: inc/helper.options.admin.php:145 inc/helper.options.admin.php:235 +#: inc/helper.options.admin.php:332 msgid "Advanced usage:" msgstr "Utilisation avancée :" -#: inc/helper.options.admin.php:82 +#: inc/helper.options.admin.php:16 msgid "" "Example: You want display randomly the 100 tags most " "popular.
" @@ -438,7 +438,7 @@ msgstr "Active" msgid "Add" msgstr "Ajouter" -#: inc/autolinks.php:847 +#: inc/autolinks.php:939 msgid "Add Auto Links" msgstr "Ajouter liens automatiques" @@ -450,16 +450,28 @@ msgstr "Ajouter les termes automatiques" msgid "Add Auto Terms to existing content" msgstr "Ajouter les termes automatiques à tout le contenu existant" -#: inc/helper.options.admin.php:492 +#: inc/autolinks.php:796 +msgid "Add links for all terms" +msgstr "" + +#: inc/helper.options.admin.php:444 msgid "Add links for post title" msgstr "Ajouter des liens pour le titre de la publication" -#: inc/autolinks.php:467 inc/helper.options.admin.php:431 +#: inc/helper.options.admin.php:383 msgid "Add links for unattached terms" msgstr "Ajouter des liens pour les termes non attachés" -#: inc/suggestterms.php:127 inc/tag-clouds.php:128 inc/autolinks.php:128 -#: inc/related-posts.php:128 inc/post-tags.php:128 inc/taxonomies.php:155 +#: inc/autolinks.php:765 +msgid "Add links to synonyms" +msgstr "" + +#: inc/autolinks.php:769 +msgid "Add links to the content synonyms." +msgstr "" + +#: inc/autolinks.php:126 inc/post-tags.php:126 inc/related-posts.php:128 +#: inc/suggestterms.php:127 inc/tag-clouds.php:128 inc/taxonomies.php:155 msgid "Add New" msgstr "Add New" @@ -470,7 +482,7 @@ msgstr "Add New" msgid "Add new %s" msgstr "Ajouter nouveau %s" -#: inc/autolinks.php:255 +#: inc/autolinks.php:257 msgid "Add new Auto Links" msgstr "Ajouter liens automatiques" @@ -502,7 +514,7 @@ msgstr "Ajouter de nouveaux termes suggérés" msgid "Add new Taxonomy" msgstr "Ajouter une nouvelle taxonomie" -#: inc/class.admin.php:476 +#: inc/class.admin.php:481 msgid "Add New TaxoPress Logs" msgstr "Ajouter de nouveaux journaux TaxoPress" @@ -552,7 +564,7 @@ msgstr "Ajouter les termes" msgid "Add Terms Display" msgstr "Ajouter l’affichage des termes" -#: inc/post-tags.php:648 +#: inc/post-tags.php:679 msgid "Add Terms for Current Post" msgstr "Ajouter les termes pour la publication actuelle" @@ -582,16 +594,16 @@ msgstr "Ajouter la taxonomie à l’API wp-json de WordPress." msgid "Admin Area" msgstr "Zone d’administration" -#: inc/class.admin.php:776 +#: inc/class.admin.php:797 msgid "Administration" msgstr "Administration" -#: inc/autolinks.php:302 inc/related-posts.php:295 inc/post-tags.php:296 -#: inc/autoterms.php:427 inc/taxonomies.php:370 +#: inc/autolinks.php:322 inc/autoterms.php:427 inc/post-tags.php:305 +#: inc/related-posts.php:295 inc/taxonomies.php:370 msgid "Advanced" msgstr "Avancée" -#: inc/helper.options.admin.php:62 +#: inc/functions.inc.php:404 msgid "Advanced Manage Terms" msgstr "Gestion avancée des termes" @@ -599,8 +611,8 @@ msgstr "Gestion avancée des termes" msgid "Advanced usage:" msgstr "Utilisation avancée :" -#: inc/related-posts-table.php:338 inc/related-posts-table.php:355 -#: inc/class.admin.mass.php:123 inc/tag-clouds-table.php:345 +#: inc/class.admin.mass.php:123 inc/related-posts-table.php:338 +#: inc/related-posts-table.php:355 inc/tag-clouds-table.php:345 msgid "All" msgstr "Tous" @@ -619,7 +631,7 @@ msgstr "Terminé ! %s terme(s) ajouté(s)." msgid "All Items" msgstr "Tous les éléments" -#: inc/autolinks.php:391 +#: inc/autolinks.php:414 msgid "All lowercase" msgstr "Tout en minuscules" @@ -627,15 +639,15 @@ msgstr "Tout en minuscules" msgid "All Media Tags" msgstr "Toutes les étiquettes de média" -#: inc/tag-clouds.php:334 inc/related-posts.php:378 +#: inc/related-posts.php:378 inc/tag-clouds.php:334 msgid "All post types" msgstr "Tous les types de publication" -#: inc/terms-table.php:210 inc/taxonomies.php:194 +#: inc/taxonomies.php:194 inc/terms-table.php:217 msgid "All Taxonomies" msgstr "Toutes les taxonomies" -#: inc/autolinks.php:387 +#: inc/autolinks.php:410 msgid "All uppercase" msgstr "Tout en majuscules" @@ -643,7 +655,7 @@ msgstr "Tout en majuscules" msgid "Alphabetical" msgstr "Alphabétique" -#: inc/helper.options.admin.php:479 +#: inc/helper.options.admin.php:431 msgid "" "An engine replacement alternative uses DOMDocument PHP class and " "theoretically offers better performance. If your server does not offer the " @@ -678,8 +690,8 @@ msgstr "Confirmez-vous vouloir désactiver les journaux ?" msgid "ASC" msgstr "ASC" -#: inc/suggestterms.php:515 inc/tag-clouds.php:453 inc/tag-clouds.php:488 -#: inc/class.admin.clickterms.php:89 +#: inc/class.admin.clickterms.php:89 inc/suggestterms.php:515 +#: inc/tag-clouds.php:453 inc/tag-clouds.php:488 msgid "Ascending" msgstr "Ascendant" @@ -687,7 +699,7 @@ msgstr "Ascendant" msgid "Attempt to automatically display related posts" msgstr "Tenter d’afficher automatiquement les publications similaires" -#: inc/post-tags.php:414 +#: inc/post-tags.php:429 msgid "Attempt to automatically display terms" msgstr "Tenter d’afficher automatiquement les termes" @@ -695,15 +707,15 @@ msgstr "Tenter d’afficher automatiquement les termes" msgid "Auto Link" msgstr "Lien automatique" -#: inc/class.admin.php:778 +#: inc/class.admin.php:799 msgid "Auto link" msgstr "Liens automatiques" -#: inc/autolinks.php:430 inc/autolinks-table.php:69 +#: inc/autolinks-table.php:69 inc/autolinks.php:457 msgid "Auto Link areas" msgstr "Zones de liens automatiques" -#: inc/autolinks.php:401 +#: inc/autolinks.php:424 msgid "Auto Link case" msgstr "Casse de lien automatique" @@ -711,21 +723,21 @@ msgstr "Casse de lien automatique" msgid "Auto Link Post type" msgstr "Type de publication du lien automatique" -#: inc/autolinks.php:440 +#: inc/autolinks.php:469 msgid "Auto Link title attribute" msgstr "Attribut de titre de lien automatique" -#: inc/autolinks.php:72 inc/autolinks.php:73 inc/autolinks.php:126 -#: inc/helper.options.admin.php:34 inc/autolinks-table.php:15 +#: inc/autolinks-table.php:15 inc/autolinks.php:71 inc/autolinks.php:72 +#: inc/autolinks.php:125 inc/functions.inc.php:380 msgid "Auto Links" msgstr "Liens automatiques" -#: inc/autolinks.php:130 inc/helper.options.admin.php:37 +#: inc/autolinks.php:128 inc/functions.inc.php:381 msgid "" -"Auto Links can automatically create links to your defined terms. For " -"example, if you have a term called “WordPress”, the Auto Links feature can " -"find the word “WordPress” in your content and add links to the archive page " -"for that term." +"Auto Links can automatically create links to your defined terms. For example," +" if you have a term called “WordPress”, the Auto Links feature can find the " +"word “WordPress” in your content and add links to the archive page for that " +"term." msgstr "" "Les liens automatiques peuvent créer automatiquement des liens vers vos " "termes définis. Par exemple, si vous avez un terme appelé « WordPress », la " @@ -733,11 +745,11 @@ msgstr "" "contenu et ajouter des liens vers la page d’archives correspondant à ce " "terme." -#: inc/autolinks-functions.php:261 +#: inc/autolinks-functions.php:266 msgid "Auto Links successfully deleted." msgstr "Les liens automatiques ont été supprimés avec succès." -#: inc/helper.options.admin.php:399 +#: inc/helper.options.admin.php:351 msgid "Auto links tags" msgstr "Étiquettes de liens automatiques" @@ -753,7 +765,7 @@ msgstr "Terme automatique pour le type de contenu" msgid "Auto term settings not found" msgstr "Réglages du terme automatique non trouvés" -#: inc/autoterms.php:74 inc/autoterms.php:75 inc/helper.options.admin.php:41 +#: inc/autoterms.php:74 inc/autoterms.php:75 inc/functions.inc.php:386 msgid "Auto Terms" msgstr "Termes automatiques" @@ -761,7 +773,7 @@ msgstr "Termes automatiques" msgid "Auto terms" msgstr "Termes automatiques" -#: inc/autoterms.php:241 inc/helper.options.admin.php:44 +#: inc/autoterms.php:241 inc/functions.inc.php:387 msgid "" "Auto Terms can scan your content and automatically assign new and existing " "terms." @@ -835,33 +847,33 @@ msgstr "Affichage automatique" msgid "Automatic Term Suggestions" msgstr "Suggestions automatiques de termes" -#: includes-core/TaxopressCoreAdmin.php:175 +#: includes-core/TaxopressCoreAdmin.php:178 msgid "Automatically add new terms to your content" msgstr "Ajoutez automatiquement de nouveaux termes à votre contenu" -#: includes-core/TaxopressCoreAdmin.php:98 +#: includes-core/TaxopressCoreAdmin.php:103 msgid "Automatically add terms to imported content" msgstr "Ajoutez automatiquement des termes au contenu importé" -#: includes-core/TaxopressCoreAdmin.php:97 +#: includes-core/TaxopressCoreAdmin.php:102 msgid "Automatically create new terms" msgstr "Créez automatiquement de nouveaux termes" -#: inc/helper.options.admin.php:312 +#: inc/helper.options.admin.php:263 msgid "Automatically display related posts into feeds" msgstr "Ajouter automatiquement les publications similaires dans le flux RSS" -#: inc/helper.options.admin.php:316 +#: inc/helper.options.admin.php:268 msgid "Automatically display related posts into post content" msgstr "" "Ajouter automatiquement les publications similaires dans le contenu des " "publications" -#: inc/helper.options.admin.php:233 +#: inc/helper.options.admin.php:172 msgid "Automatically display tags list into feeds" msgstr "Ajouter automatiquement la liste des étiquettes dans le flux RSS" -#: inc/helper.options.admin.php:238 +#: inc/helper.options.admin.php:178 msgid "Automatically display tags list into post content:" msgstr "" "Afficher automatiquement la liste des étiquettes dans le contenu des " @@ -892,12 +904,13 @@ msgstr "Retour aux étiquettes de média" msgid "Batches wait time" msgstr "Temps d’attente pour les lots" -#: inc/related-posts.php:505 inc/post-tags.php:408 inc/post-tags-table.php:343 -#: inc/related-posts-table.php:383 inc/autolinks-table.php:344 +#: inc/autolinks-table.php:344 inc/post-tags-table.php:343 +#: inc/post-tags.php:423 inc/related-posts-table.php:383 +#: inc/related-posts.php:505 msgid "Blog display" msgstr "Affichage du blog" -#: inc/helper.options.admin.php:309 +#: inc/helper.options.admin.php:259 msgid "" "By default, related posts work with post tags, but you can use a custom " "taxonomy. Default value : post_tag" @@ -906,7 +919,13 @@ msgstr "" "mais vous pouvez utiliser une taxonomie personnalisée. Valeur par défaut : " "post_tag" -#: inc/helper.options.admin.php:495 +#: inc/autolinks.php:800 +msgid "" +"By default, TaxoPress will add links for all terms. If this box is unchecked," +" Auto Links will only add links for terms that are attached to the post." +msgstr "" + +#: inc/helper.options.admin.php:447 msgid "" "By default, TaxoPress will exclude Auto Links for terms that are attached to " "the post title." @@ -914,7 +933,7 @@ msgstr "" "Par défaut, TaxoPress exclut les liens automatiques pour les termes qui sont " "attachés au titre de la publication." -#: inc/helper.options.admin.php:434 +#: inc/helper.options.admin.php:386 msgid "" "By default, TaxoPress will only add Auto Links for terms that are attached " "to the post. If this box is checked, TaxoPress will add links for all terms" @@ -923,15 +942,6 @@ msgstr "" "qui sont attachés à la publication. Si cette case est cochée, TaxoPress " "ajoutera des liens pour tous les termes" -#: inc/autolinks.php:469 -msgid "" -"By default, TaxoPress will only add Auto Links for terms that are attached " -"to the post. If this box is checked, TaxoPress will add links for all terms." -msgstr "" -"Par défaut, TaxoPress n’ajoutera des liens automatiques que pour les termes " -"qui sont attachés à la publication. Si cette case est cochée, TaxoPress " -"ajoutera des liens pour tous les termes." - #: inc/taxonomies.php:508 msgid "" "Can terms in this taxonomy be organized into hierarchical relationships?" @@ -939,15 +949,15 @@ msgstr "" "Les termes de cette taxonomie peuvent-ils être organisés en relations " "hiérarchiques ?" -#: inc/terms-table.php:609 +#: inc/terms-table.php:638 msgid "Cancel" msgstr "Annuler" -#: inc/class.admin.php:386 +#: inc/class.admin.php:390 msgid "Change selection" msgstr "Modifier la sélection" -#: inc/autolinks.php:748 +#: inc/autolinks.php:835 msgid "" "Change the priority of the Auto Links functions on the_content hook. This is " "useful for fixing conflicts with other plugins. Higher number means autolink " @@ -1012,11 +1022,11 @@ msgstr "" msgid "Click to display tags" msgstr "Cliquez pour afficher les étiquettes" -#: inc/tag-clouds.php:384 inc/tag-clouds-table.php:362 +#: inc/tag-clouds-table.php:362 inc/tag-clouds.php:384 msgid "Cloud" msgstr "Cloud" -#: inc/autolinks.php:687 +#: inc/autolinks.php:699 msgid "code" msgstr "code" @@ -1028,17 +1038,17 @@ msgstr "Terminé : %s publications vérifiées." msgid "Content statuses" msgstr "États du contenu" -#: inc/autolinks.php:292 +#: inc/autolinks.php:301 msgid "Control" msgstr "Contrôle" -#: inc/terms-table.php:116 inc/class-taxonomies-table.php:71 -#: inc/class-tag-table.php:43 +#: inc/class-tag-table.php:43 inc/class-taxonomies-table.php:71 +#: inc/terms-table.php:117 msgid "Count" msgstr "Nombre" -#: inc/suggestterms.php:490 inc/tag-clouds.php:436 inc/tag-clouds.php:471 #: inc/class.admin.clickterms.php:76 inc/class.widgets.php:272 +#: inc/suggestterms.php:490 inc/tag-clouds.php:436 inc/tag-clouds.php:471 msgid "Counter" msgstr "Compteur" @@ -1046,11 +1056,11 @@ msgstr "Compteur" msgid "Counter (default)" msgstr "Compteur (par défaut)" -#: inc/post-tags.php:73 +#: inc/post-tags.php:72 msgid "Current Post" msgstr "Publication actuelle" -#: inc/related-posts.php:382 inc/related-posts-table.php:336 +#: inc/related-posts-table.php:336 inc/related-posts.php:382 msgid "Current post type" msgstr "Type de publication actuel" @@ -1097,6 +1107,10 @@ msgstr "Valeur de confiance de l’API Dandelion" msgid "Dandelion API token" msgstr "Jeton de l’API Dandelion" +#: inc/dashboard.php:62 inc/dashboard.php:63 inc/dashboard.php:89 +msgid "Dashboard" +msgstr "" + #: inc/class.admin.suggest.php:57 msgid "dataTXT by Dandelion" msgstr "dataTXT par Dandelion" @@ -1122,11 +1136,11 @@ msgstr "Taxonomie par défaut" msgid "Default Terms" msgstr "Termes par défaut" -#: inc/autoterms-table.php:275 inc/terms-table.php:158 inc/terms-table.php:417 +#: inc/autolinks-table.php:275 inc/autoterms-logs-table.php:240 +#: inc/autoterms-table.php:275 inc/class-tag-table.php:195 #: inc/post-tags-table.php:275 inc/related-posts-table.php:276 -#: inc/autoterms-logs-table.php:240 inc/class-tag-table.php:195 -#: inc/tag-clouds-table.php:276 inc/suggestterms-table.php:274 -#: inc/autolinks-table.php:275 +#: inc/suggestterms-table.php:274 inc/tag-clouds-table.php:276 +#: inc/terms-table.php:164 inc/terms-table.php:424 msgid "Delete" msgstr "Effacer" @@ -1154,8 +1168,8 @@ msgstr "Supprimer les termes inutilisés" msgid "DESC (default)" msgstr "DESC (par défaut)" -#: inc/suggestterms.php:519 inc/tag-clouds.php:454 inc/tag-clouds.php:489 -#: inc/class.admin.clickterms.php:89 +#: inc/class.admin.clickterms.php:89 inc/suggestterms.php:519 +#: inc/tag-clouds.php:454 inc/tag-clouds.php:489 msgid "Descending" msgstr "Descendant" @@ -1167,9 +1181,9 @@ msgstr "Décrivez à quoi sert votre taxonomie." msgid "Description" msgstr "Description" -#: inc/suggestterms.php:163 inc/terms.php:257 inc/tag-clouds.php:161 -#: inc/autolinks.php:161 inc/related-posts.php:161 inc/post-tags.php:160 -#: inc/autoterms.php:218 inc/autoterms.php:273 inc/taxonomies.php:203 +#: inc/autolinks.php:162 inc/autoterms.php:218 inc/autoterms.php:273 +#: inc/post-tags.php:159 inc/related-posts.php:161 inc/suggestterms.php:163 +#: inc/tag-clouds.php:161 inc/taxonomies.php:203 inc/terms.php:260 msgid "Description here." msgstr "La description ici." @@ -1177,7 +1191,7 @@ msgstr "La description ici." msgid "Design" msgstr "Design" -#: includes-core/TaxopressCoreAdmin.php:126 +#: includes-core/TaxopressCoreAdmin.php:129 msgid "Detailed documentation is also available on the plugin website." msgstr "" "Une documentation détaillée est également disponible sur le site de " @@ -1195,7 +1209,7 @@ msgstr "Désactiver les termes automatiques" msgid "Disable Logs" msgstr "Désactiver les journaux" -#: inc/related-posts.php:285 inc/post-tags.php:286 +#: inc/post-tags.php:291 inc/related-posts.php:285 msgid "Display" msgstr "Afficher" @@ -1203,7 +1217,7 @@ msgstr "Afficher" msgid "Display Format" msgstr "Format d’affichage" -#: inc/tag-clouds.php:394 inc/tag-clouds-table.php:69 +#: inc/tag-clouds-table.php:69 inc/tag-clouds.php:394 msgid "Display format" msgstr "Format d’affichage" @@ -1220,21 +1234,11 @@ msgstr "" msgid "Do you really want to restore the default options?" msgstr "Êtes-vous sur de vouloir restaurer les options par défaut ?" -#: inc/autolinks.php:496 -msgid "Don't add Auto Links if the term is already attached to the post." -msgstr "" -"N’ajoutez pas de liens automatiques si le terme est déjà attaché à la " -"publication." - -#: inc/autolinks.php:494 -msgid "Don't add links for attached terms" -msgstr "Ne pas ajouter de liens pour les termes attachés" - -#: inc/autoterms-table.php:264 inc/terms-table.php:383 -#: inc/post-tags-table.php:264 inc/related-posts-table.php:265 +#: inc/autolinks-table.php:264 inc/autoterms-table.php:264 #: inc/class-taxonomies-table.php:271 inc/class.admin.mass.php:263 -#: inc/tag-clouds-table.php:265 inc/suggestterms-table.php:263 -#: inc/autolinks-table.php:264 +#: inc/post-tags-table.php:264 inc/related-posts-table.php:265 +#: inc/suggestterms-table.php:263 inc/tag-clouds-table.php:265 +#: inc/terms-table.php:388 msgid "Edit" msgstr "Modifier" @@ -1245,7 +1249,7 @@ msgstr "Modifier" msgid "Edit %s" msgstr "Modifier %s" -#: inc/autolinks.php:248 +#: inc/autolinks.php:250 msgid "Edit Auto Links" msgstr "Modifier les liens automatiques" @@ -1277,7 +1281,7 @@ msgstr "Modifier les termes suggérés" msgid "Edit Taxonomy" msgstr "Modifier la taxonomie" -#: inc/class.admin.php:474 +#: inc/class.admin.php:479 msgid "Edit TaxoPress Logs" msgstr "Modifier les journaux de TaxoPress" @@ -1289,15 +1293,15 @@ msgstr "Modifier l’affichage de termes" msgid "Edit Terms for Current Post" msgstr "Modifier les termes pour la publication actuelle" -#: inc/class.admin.suggest.php:55 inc/class.admin.clickterms.php:132 +#: inc/class.admin.clickterms.php:132 inc/class.admin.suggest.php:55 msgid "Edit this metabox" msgstr "Modifier cette boîte méta" -#: inc/tag-clouds.php:592 inc/class.widgets.php:320 +#: inc/class.widgets.php:320 inc/tag-clouds.php:592 msgid "Em" msgstr "Em" -#: inc/class.admin.php:782 +#: inc/class.admin.php:803 msgid "Embedded Tags" msgstr "Étiquettes embarquées" @@ -1305,7 +1309,7 @@ msgstr "Étiquettes embarquées" msgid "Enable a custom query_var key for this taxonomy." msgstr "Activez une clé query_var personnalisée pour cette taxonomie." -#: inc/helper.options.admin.php:463 +#: inc/helper.options.admin.php:415 msgid "Enable autolinks into post content for theses views:" msgstr "" "Activer les liens automatiques dans le contenu de la publication pour ces " @@ -1319,26 +1323,26 @@ msgstr "Activer les couleurs pour les termes" msgid "Enable Logs" msgstr "Activer la journalisation" -#: inc/autolinks.php:542 +#: inc/autolinks.php:523 msgid "Enable this Auto Links instance for:" msgstr "Activez cette instance de liens automatiques pour :" -#: inc/helper.options.admin.php:218 +#: inc/helper.options.admin.php:156 msgid "" -"Enabling this will allow Wordpress to look for tag cloud shortcode " -"[st_tag_cloud] or [st-tag-cloud] when displaying " -"posts. WordPress replace this shortcode by a tag cloud." +"Enabling this will allow Wordpress to look for tag cloud shortcode " +"[st_tag_cloud] or [st-tag-cloud] when displaying posts. " +"WordPress replace this shortcode by a tag cloud." msgstr "" "L’activation de cette option permet à WordPress de rechercher le code court " "[st_tag_cloud] ou [st-tag-cloud] du nuage " "d’etiquettes lors de l’affichage des publications. WordPress replace ce code " "court par un nuage d’étiquettes." -#: includes-core/TaxopressCoreAdmin.php:88 +#: includes-core/TaxopressCoreAdmin.php:93 msgid "Enhance the power of TaxoPress with the Pro version:" msgstr "Augmentez la puissance de TaxoPress avec la version Pro :" -#: inc/helper.options.admin.php:169 inc/helper.options.admin.php:372 +#: inc/helper.options.admin.php:103 inc/helper.options.admin.php:324 msgid "Enter the positioned title before the list, leave blank for no title:" msgstr "" "Entrer le titre positionné avant la liste, laisser vide, pour ne rien " @@ -1356,12 +1360,12 @@ msgstr "" msgid "Enter the terms to rename and their new names." msgstr "Saisissez les termes à renommer et leurs nouveaux noms." -#: inc/helper.options.admin.php:364 +#: inc/helper.options.admin.php:316 msgid "Enter the text to show when there is no related post:" msgstr "" "Saisissez le texte à afficher lorsqu’il n’y a pas de publication similaire :" -#: inc/helper.options.admin.php:161 +#: inc/helper.options.admin.php:95 msgid "Enter the text to show when there is no tag:" msgstr "Entrer le texte à afficher lorsqu’il n’y a pas d’étiquette :" @@ -1379,7 +1383,11 @@ msgstr "" "Erreur. Vous devez saisir un seul terme à fusionner dans le nouveau nom du " "terme !" -#: inc/helper.options.admin.php:450 +#: inc/class.admin.php:169 +msgid "Error: wrong data" +msgstr "" + +#: inc/helper.options.admin.php:402 msgid "" "Example: If you enter the term \"Paris\", the auto link tags feature will " "never replace this term by this link." @@ -1387,7 +1395,7 @@ msgstr "" "Exemple : Si vous entrez le terme « Paris », la fonctionnalité de liens " "automatiques ne replacera jamais ce mot par un lien." -#: inc/helper.options.admin.php:442 +#: inc/helper.options.admin.php:394 msgid "" "Example: If you ignore case, auto link feature will replace the word " "\"wordpress\" by the tag link \"WordPress\"." @@ -1396,7 +1404,7 @@ msgstr "" "étiquettes remplacera le mot « wordpress » par le lien de l’étiquette " "« WordPress »." -#: inc/helper.options.admin.php:402 +#: inc/helper.options.admin.php:354 msgid "" "Example: You have a tag called \"WordPress\" and your post content contains " "\"wordpress\", this feature will replace \"wordpress\" by a link to " @@ -1404,10 +1412,10 @@ msgid "" msgstr "" "Exemple: Vous avez un mot clef nommé \"WordPress\" et le contenu de votre " "article contient le mot \"wordpress\", cette fonctionnalité remplacera le " -"mot \"wordpress\" par un lien \"wordpress\" pointant sur la page du mot " -"clef. (http://monblog.net/tag/wordpress/)" +"mot \"wordpress\" par un lien \"wordpress\" pointant sur la page du mot clef." +" (http://monblog.net/tag/wordpress/)" -#: inc/autolinks.php:297 +#: inc/autolinks.php:308 msgid "Exceptions" msgstr "Exceptions" @@ -1415,13 +1423,13 @@ msgstr "Exceptions" msgid "Exclude previously analyzed content" msgstr "Exclure le contenu précédemment analysé" -#: inc/helper.options.admin.php:447 +#: inc/helper.options.admin.php:399 msgid "Exclude some terms from tag link. For Ads Link subtition, etc." msgstr "" "Exclure certains termes du lien d’étiquete. Pour la substitution de liens " "publicitaires, etc." -#: inc/autolinks.php:656 +#: inc/autolinks.php:660 msgid "Exclude terms from Auto Links" msgstr "Exclure les termes des liens automatiques" @@ -1441,14 +1449,14 @@ msgstr "Termes existants de la taxonomie" msgid "Existing terms on your site" msgstr "Termes existants sur votre site" +#: inc/autolinks.php:749 inc/autolinks.php:781 inc/autolinks.php:847 +#: inc/autoterms.php:600 inc/autoterms.php:614 inc/autoterms.php:645 +#: inc/autoterms.php:659 inc/autoterms.php:689 inc/autoterms.php:746 +#: inc/autoterms.php:771 inc/autoterms.php:796 inc/autoterms.php:871 +#: inc/post-tags.php:546 inc/related-posts.php:458 inc/related-posts.php:671 #: inc/suggestterms.php:444 inc/suggestterms.php:555 inc/suggestterms.php:569 #: inc/suggestterms.php:598 inc/suggestterms.php:656 inc/tag-clouds.php:516 -#: inc/tag-clouds.php:539 inc/tag-clouds.php:612 inc/autolinks.php:452 -#: inc/autolinks.php:479 inc/autolinks.php:758 inc/related-posts.php:458 -#: inc/related-posts.php:671 inc/post-tags.php:515 inc/autoterms.php:600 -#: inc/autoterms.php:614 inc/autoterms.php:645 inc/autoterms.php:659 -#: inc/autoterms.php:689 inc/autoterms.php:746 inc/autoterms.php:771 -#: inc/autoterms.php:796 inc/autoterms.php:871 inc/taxonomies.php:492 +#: inc/tag-clouds.php:539 inc/tag-clouds.php:612 inc/taxonomies.php:492 #: inc/taxonomies.php:611 inc/taxonomies.php:626 inc/taxonomies.php:767 #: inc/taxonomies.php:803 inc/taxonomies.php:828 inc/taxonomies.php:863 #: inc/taxonomies.php:887 inc/taxonomies.php:911 inc/taxonomies.php:936 @@ -1457,16 +1465,16 @@ msgstr "Termes existants sur votre site" msgid "False" msgstr "Faux" -#: includes-core/TaxopressCoreAdmin.php:99 +#: includes-core/TaxopressCoreAdmin.php:104 msgid "Fast, professional support" msgstr "Une assistance rapide et professionnelle" -#: inc/class.admin.php:780 +#: inc/class.admin.php:801 msgid "Features" msgstr "Fonctionnalités" -#: inc/terms-table.php:215 inc/autoterms-logs-table.php:172 -#: inc/class.admin.mass.php:225 +#: inc/autoterms-logs-table.php:172 inc/class.admin.mass.php:225 +#: inc/terms-table.php:222 msgid "Filter" msgstr "Filtrer" @@ -1516,7 +1524,7 @@ msgstr "" "La taille de police minimale ne doit pas être supérieure à la valeur " "maximale de la taille de police." -#: inc/autolinks.php:636 +#: inc/autolinks.php:639 msgid "" "For example, '4' would only link terms that are of 4 characters or less in " "length." @@ -1524,7 +1532,7 @@ msgstr "" "Par exemple, « 4 » permet de lier uniquement les termes qui ont une longueur " "de 4 caractères ou moins." -#: inc/autolinks.php:623 +#: inc/autolinks.php:622 msgid "" "For example, '4' would only link terms that are of 4 characters or more in " "length." @@ -1532,7 +1540,7 @@ msgstr "" "Par exemple, « 4 » permet de lier uniquement les termes qui ont une longueur " "de 4 caractères ou plus." -#: inc/helper.options.admin.php:458 +#: inc/helper.options.admin.php:410 msgid "" "For expert, possibility to change the priority of autolinks functions on " "the_content hook. Useful for fix a conflict with an another plugin. Default: " @@ -1546,33 +1554,33 @@ msgstr "" msgid "Format:" msgstr "Format :" -#: inc/suggestterms.php:285 inc/tag-clouds.php:281 inc/autolinks.php:282 -#: inc/related-posts.php:280 inc/post-tags.php:281 inc/autoterms.php:402 +#: inc/autolinks.php:287 inc/autoterms.php:402 inc/post-tags.php:284 +#: inc/related-posts.php:280 inc/suggestterms.php:285 inc/tag-clouds.php:281 #: inc/taxonomies.php:340 msgid "General" msgstr "Général" -#: inc/autolinks.php:677 inc/related-posts.php:337 +#: inc/autolinks.php:689 inc/related-posts.php:337 msgid "H1" msgstr "H1" -#: inc/autolinks.php:678 inc/related-posts.php:341 +#: inc/autolinks.php:690 inc/related-posts.php:341 msgid "H2" msgstr "H2" -#: inc/autolinks.php:679 inc/related-posts.php:345 +#: inc/autolinks.php:691 inc/related-posts.php:345 msgid "H3" msgstr "H3" -#: inc/autolinks.php:680 inc/related-posts.php:349 +#: inc/autolinks.php:692 inc/related-posts.php:349 msgid "H4" msgstr "H4" -#: inc/autolinks.php:681 inc/related-posts.php:354 +#: inc/autolinks.php:693 inc/related-posts.php:354 msgid "H5" msgstr "H5" -#: inc/autolinks.php:682 inc/related-posts.php:358 +#: inc/autolinks.php:694 inc/related-posts.php:358 msgid "H6" msgstr "H6" @@ -1596,7 +1604,7 @@ msgid "Here are the tokens you can use for Term link format" msgstr "" "Voici les jetons que vous pouvez utiliser pour le format de lien des termes" -#: inc/post-tags.php:684 +#: inc/post-tags.php:717 msgid "Here are the tokens you can use for Terms for Current Post format" msgstr "" "Voici les jetons que vous pouvez utiliser pour le format des termes pour la " @@ -1605,15 +1613,15 @@ msgstr "" #: review-request/review.php:275 msgid "" "Hey, you've been using TaxoPress for %s on your site. We hope the plugin has " -"been useful. Please could you quickly leave a 5-star rating on WordPress." -"org? It really does help to keep TaxoPress growing." +"been useful. Please could you quickly leave a 5-star rating on WordPress.org?" +" It really does help to keep TaxoPress growing." msgstr "" "Bonjour, vous utilisez TaxoPress depuis %s sur votre site. Nous espérons que " "l’extension vous a été utile. Pourriez-vous rapidement laisser une " "évaluation de 5 étoiles sur WordPress.org ? Cela aide vraiment à maintenir " "la croissance de TaxoPress." -#: inc/post-tags.php:530 +#: inc/post-tags.php:561 msgid "Hide display output if no terms ?" msgstr "Cacher la sortie de l’affichage si aucun terme ?" @@ -1633,8 +1641,9 @@ msgstr "Cacher le titre dans la sortie ?" msgid "Hide title in output?" msgstr "Cacher le titre dans la sortie ?" -#: inc/related-posts.php:504 inc/post-tags.php:407 inc/post-tags-table.php:342 -#: inc/related-posts-table.php:382 inc/autolinks-table.php:343 +#: inc/autolinks-table.php:343 inc/post-tags-table.php:342 +#: inc/post-tags.php:422 inc/related-posts-table.php:382 +#: inc/related-posts.php:504 msgid "Homepage" msgstr "Page d’accueil" @@ -1657,7 +1666,7 @@ msgstr "" "Si vous choisissez 5, Taxopress supprimera tous les termes attachés à moins " "de 5 %s." -#: inc/autolinks.php:658 +#: inc/autolinks.php:664 msgid "" "If you enter the terms \"WordPress\", \"Website\" the Auto Links feature " "will never replace these terms. Separate multiple entries with a comma." @@ -1666,13 +1675,13 @@ msgstr "" "liens automatiques ne remplacera jamais ces termes. Séparez les entrées " "multiples par une virgule." -#: includes-core/TaxopressCoreAdmin.php:115 +#: includes-core/TaxopressCoreAdmin.php:120 msgid "If you need help or have a new feature request, let us know." msgstr "" "Si vous avez besoin d’aide ou si vous avez une nouvelle demande de " "fonctionnalité, faites-le nous savoir." -#: inc/autolinks.php:873 inc/autoterms.php:1122 +#: inc/autolinks.php:966 inc/autoterms.php:1122 #, php-format msgid "" "If your website language does not use the A-Z alphabet, %1s please read this " @@ -1681,11 +1690,11 @@ msgstr "" "Si la langue de votre site n’utilise pas l’alphabet A-Z, %1s veuillez lire " "cette documentation. %2s" -#: inc/helper.options.admin.php:439 +#: inc/helper.options.admin.php:391 msgid "Ignore case for auto link feature ?" msgstr "Ignorer la casse pour la fonctionnalité de lien automatique ?" -#: inc/helper.options.admin.php:269 +#: inc/helper.options.admin.php:216 msgid "Include categories in result ?" msgstr "Inclure les catégories dans le resultat ?" @@ -1693,6 +1702,10 @@ msgstr "Inclure les catégories dans le resultat ?" msgid "Invalid access token !" msgstr "Jeton d’accès invalide !" +#: inc/class.admin.php:164 +msgid "Invalid nonce token!" +msgstr "" + #: inc/post-tags-functions.php:354 msgid "Invalid post terms ID." msgstr "ID de termes de la publication invalide." @@ -1737,15 +1750,15 @@ msgstr "Veuillez sélectionner au moins une taxonomie pour continuer" msgid "Least common tags between posts" msgstr "Les étiquettes les moins communes entre les publications" -#: inc/helper.options.admin.php:183 +#: inc/helper.options.admin.php:118 msgid "Least popular color:" msgstr "La couleur la moins populaire :" -#: inc/helper.options.admin.php:194 +#: inc/helper.options.admin.php:131 msgid "Least popular font size:" msgstr "La taille de police la moins populaire :" -#: inc/class.admin.php:788 +#: inc/class.admin.php:809 msgid "Legacy" msgstr "Héritage" @@ -1776,8 +1789,8 @@ msgstr "" msgid "Limit the number of logs" msgstr "Limiter le nombre de journaux" -#: inc/tag-clouds.php:385 inc/tag-clouds-table.php:363 -#: inc/class.widgets.php:335 +#: inc/class.widgets.php:335 inc/tag-clouds-table.php:363 +#: inc/tag-clouds.php:385 msgid "List (UL/LI)" msgstr "Liste (UL/LI)" @@ -1785,7 +1798,7 @@ msgstr "Liste (UL/LI)" msgid "Logs" msgstr "Journaux" -#: inc/autolinks.php:231 +#: inc/autolinks.php:233 msgid "Manage Auto Links" msgstr "Gérer les liens automatiques" @@ -1825,7 +1838,7 @@ msgstr "Mise à jour manuelle de la publication" msgid "Mass Edit Terms" msgstr "Edition en masse de termes" -#: inc/helper.options.admin.php:55 +#: inc/functions.inc.php:398 msgid "Mass Edit terms" msgstr "Modification en masse de termes" @@ -1833,7 +1846,7 @@ msgstr "Modification en masse de termes" msgid "Mass edit terms" msgstr "Edition en masse de termes" -#: inc/helper.options.admin.php:263 +#: inc/helper.options.admin.php:209 msgid "Max tags display:" msgstr "Nombre maximum d’étiquettes à afficher :" @@ -1841,32 +1854,32 @@ msgstr "Nombre maximum d’étiquettes à afficher :" msgid "Max tags to display: (default: 45)" msgstr "Nombre maximum d’étiquettes à afficher : (par défaut : 45)" -#: inc/autolinks.php:634 +#: inc/autolinks.php:635 msgid "Maximum character length for an Auto Link" msgstr "Longueur maximale des caractères pour un lien automatique" -#: inc/helper.options.admin.php:423 +#: inc/helper.options.admin.php:375 msgid "Maximum number of links for the same tag:" msgstr "Nombre maximum de liens pour la même étiquette :" -#: inc/autolinks.php:608 +#: inc/autolinks.php:601 msgid "Maximum number of links for the same term" msgstr "Nombre maximum de liens automatiques pour le même terme" -#: inc/helper.options.admin.php:415 +#: inc/helper.options.admin.php:367 msgid "Maximum number of links per article:" msgstr "Nombre maximum de liens par publication :" -#: inc/autolinks.php:595 +#: inc/autolinks.php:584 msgid "Maximum number of links per post" msgstr "Nombre maximum de liens par publication" -#: inc/helper.options.admin.php:356 +#: inc/helper.options.admin.php:308 msgid "Maximum number of related posts to display: (default: 5)" msgstr "" "Nombre maximale de publications similaires à afficher : (par défaut : 5)" -#: inc/helper.options.admin.php:153 +#: inc/helper.options.admin.php:87 msgid "Maximum number of tags to display: (default: 45)" msgstr "Nombre maximum d’étiquettes à afficher : (par défaut : 45)" @@ -1874,11 +1887,11 @@ msgstr "Nombre maximum d’étiquettes à afficher : (par défaut : 45)" msgid "Maximum related posts to display" msgstr "Nombre maximal de publications similaires à afficher" -#: inc/suggestterms.php:475 inc/class.admin.clickterms.php:104 +#: inc/class.admin.clickterms.php:104 inc/suggestterms.php:475 msgid "Maximum terms" msgstr "Maximum de termes" -#: inc/tag-clouds.php:563 inc/post-tags.php:451 +#: inc/post-tags.php:471 inc/tag-clouds.php:563 msgid "Maximum terms to display" msgstr "Nombre maximal de termes à afficher" @@ -1929,7 +1942,7 @@ msgstr "Fusionner les termes" msgid "Metabox callback" msgstr "Rappel de la boîte méta" -#: inc/suggestterms.php:505 inc/class.admin.clickterms.php:79 +#: inc/class.admin.clickterms.php:79 inc/suggestterms.php:505 msgid "Method for choosing terms" msgstr "Méthode de choix des termes" @@ -1945,7 +1958,7 @@ msgstr "Méthode pour choisir les termes dans la base de données" msgid "Migrate terms to newly renamed taxonomy?" msgstr "Migrer les termes vers une taxonomie nouvellement renommée ?" -#: inc/autolinks.php:621 +#: inc/autolinks.php:618 msgid "Minimum character length for an Auto Link" msgstr "Longueur minimale des caractères pour un lien automatique" @@ -1953,11 +1966,11 @@ msgstr "Longueur minimale des caractères pour un lien automatique" msgid "Minimum number of uses for each term:" msgstr "Nombre minimum d’utilisations pour chaque terme :" -#: inc/autolinks.php:582 +#: inc/autolinks.php:567 msgid "Minimum term usage for Auto Links" msgstr "Utilisation minimale pour les liens automatiques" -#: inc/helper.options.admin.php:407 +#: inc/helper.options.admin.php:359 msgid "Minimum usage for terms" msgstr "Utilisation minimale pour les termes" @@ -1969,22 +1982,22 @@ msgstr "Il manque une taxonomie valide pour le travail. Réessayer." msgid "Most common tags between posts" msgstr "Les étiquettes les plus courantes entre les publications" -#: inc/helper.options.admin.php:177 +#: inc/helper.options.admin.php:111 msgid "Most popular color:" msgstr "La couleur la plus populaire :" -#: inc/helper.options.admin.php:188 +#: inc/helper.options.admin.php:124 msgid "Most popular font size:" msgstr "La taille de police la plus populaire :" -#: inc/suggestterms.php:486 inc/tag-clouds.php:434 inc/tag-clouds.php:470 -#: inc/class-taxonomies-table.php:66 inc/class.admin.clickterms.php:76 -#: inc/class-tag-table.php:41 inc/class.widgets.php:238 -#: inc/class.widgets.php:270 +#: inc/class-tag-table.php:41 inc/class-taxonomies-table.php:66 +#: inc/class.admin.clickterms.php:76 inc/class.widgets.php:238 +#: inc/class.widgets.php:270 inc/suggestterms.php:486 inc/tag-clouds.php:434 +#: inc/tag-clouds.php:470 msgid "Name" msgstr "Nom" -#: includes-core/TaxopressCoreAdmin.php:110 +#: includes-core/TaxopressCoreAdmin.php:115 msgid "Need TaxoPress Support?" msgstr "Besoin d’aide pour TaxoPress ?" @@ -2006,7 +2019,7 @@ msgstr "Nom du nouvel élément" msgid "New Media Tag name" msgstr "Nouveau nom d’étiquette de média" -#: inc/class.admin.php:477 +#: inc/class.admin.php:482 msgid "New TaxoPress Logs" msgstr "Nouveaux journaux de TaxoPress" @@ -2022,10 +2035,11 @@ msgstr "Nouveau nome du terme :" msgid "Newer Entries" msgstr "Entrées plus récentes" -#: inc/suggestterms.php:805 inc/tag-clouds.php:849 inc/autolinks.php:907 -#: inc/related-posts.php:882 inc/post-tags.php:726 inc/post-tags-table.php:355 -#: inc/related-posts-table.php:395 inc/class-taxonomies-table.php:372 -#: inc/autoterms.php:1156 inc/taxonomies.php:1701 +#: inc/autolinks.php:999 inc/autoterms.php:1156 +#: inc/class-taxonomies-table.php:372 inc/post-tags-table.php:355 +#: inc/post-tags.php:758 inc/related-posts-table.php:395 +#: inc/related-posts.php:882 inc/suggestterms.php:805 inc/tag-clouds.php:849 +#: inc/taxonomies.php:1701 msgid "No" msgstr "Non" @@ -2047,7 +2061,7 @@ msgstr "Aucun %s n’a été trouvé dans la corbeille." msgid "No %s found." msgstr "Aucun %s trouvé." -#: includes-core/TaxopressCoreAdmin.php:100 +#: includes-core/TaxopressCoreAdmin.php:105 msgid "No ads inside the plugin" msgstr "Aucune publicité dans l’extension" @@ -2055,15 +2069,15 @@ msgstr "Aucune publicité dans l’extension" msgid "No content to edit." msgstr "Pas de contenu à éditer." +#: inc/autolinks-table.php:91 inc/autoterms-logs-table.php:217 #: inc/autoterms-table.php:91 inc/post-tags-table.php:91 -#: inc/related-posts-table.php:92 inc/autoterms-logs-table.php:217 -#: inc/tag-clouds-table.php:92 inc/suggestterms-table.php:90 -#: inc/autolinks-table.php:91 +#: inc/related-posts-table.php:92 inc/suggestterms-table.php:90 +#: inc/tag-clouds-table.php:92 msgid "No item avaliable." msgstr "Aucun élément disponible." -#: inc/tag-clouds.php:418 inc/related-posts.php:591 inc/autoterms.php:944 -#: inc/autoterms.php:978 +#: inc/autoterms.php:944 inc/autoterms.php:978 inc/related-posts.php:591 +#: inc/tag-clouds.php:418 msgid "No limit" msgstr "Aucune limite" @@ -2093,13 +2107,17 @@ msgstr "Pas de nouveau(x) terme(s) spécifié(s) !" msgid "No new/old valid term specified!" msgstr "Aucun terme valide nouveau/ancien n’est spécifié !" +#: inc/class.admin.php:154 +msgid "No permission!" +msgstr "" + #: inc/related-posts-widget.php:142 msgid "No Related Posts shortcode available. Add new shortcode " msgstr "" "Aucun code court de publications similaires disponible. Ajouter un nouveau " "code court " -#: inc/helper.options.default.php:46 inc/class.client.related_posts.php:101 +#: inc/class.client.related_posts.php:101 inc/helper.options.default.php:47 #: inc/related-posts-functions.php:155 msgid "No related posts." msgstr "Aucune publication similaire." @@ -2112,20 +2130,20 @@ msgstr "Pas de résultats de l’API dataTXT." msgid "No results from OpenCalais service." msgstr "Aucun résultat depuis le service OpenCalais." -#: inc/class.admin.suggest.php:351 inc/class.admin.clickterms.php:269 +#: inc/class.admin.clickterms.php:269 inc/class.admin.suggest.php:351 msgid "No results from your WordPress database." msgstr "Aucun résultat depuis la base de données de WordPress." -#: inc/post-tags-functions.php:156 inc/class.client.post_tags.php:112 +#: inc/class.client.post_tags.php:112 inc/post-tags-functions.php:156 msgid "No tag for this post." msgstr "Aucune étiquette pour cette publication." -#: inc/helper.options.default.php:35 +#: inc/helper.options.default.php:36 msgid "No tags for this post." msgstr "Aucune étiquette pour cette publication." #: inc/class.client.tagcloud.php:66 inc/class.client.tagcloud.php:273 -#: inc/helper.options.default.php:57 +#: inc/helper.options.default.php:58 msgid "No tags." msgstr "Aucune étiquette." @@ -2173,11 +2191,11 @@ msgstr "" "Aucun code court « termes pour la publication actuelle\" n’est disponible. " "Ajouter un nouveau code court " -#: inc/terms-table.php:271 +#: inc/terms-table.php:277 msgid "No terms found." msgstr "Aucun terme n’a été trouvé." -#: inc/class.admin.suggest.php:334 inc/class.admin.clickterms.php:221 +#: inc/class.admin.clickterms.php:221 inc/class.admin.suggest.php:334 msgid "No terms in your WordPress database." msgstr "Aucun terme dans la base de données de WordPress." @@ -2193,9 +2211,9 @@ msgstr "Aucun terme valide spécifié !" msgid "Nonce failed verification" msgstr "Échec de la vérification de nonce" -#: inc/related-posts.php:333 inc/autoterms-table.php:356 -#: inc/autoterms-logs-table.php:428 inc/suggestterms-table.php:355 -#: inc/autolinks-table.php:356 +#: inc/autolinks-table.php:356 inc/autoterms-logs-table.php:428 +#: inc/autoterms-table.php:356 inc/related-posts.php:333 +#: inc/suggestterms-table.php:355 msgid "None" msgstr "Acun" @@ -2207,9 +2225,9 @@ msgstr "Non trouvé" msgid "Not found" msgstr "Non trouvé" -#: inc/suggestterms.php:94 inc/terms.php:194 inc/tag-clouds.php:95 -#: inc/autolinks.php:95 inc/related-posts.php:95 inc/post-tags.php:95 -#: inc/autoterms.php:105 inc/autoterms.php:112 inc/taxonomies.php:122 +#: inc/autolinks.php:94 inc/autoterms.php:105 inc/autoterms.php:112 +#: inc/post-tags.php:94 inc/related-posts.php:95 inc/suggestterms.php:94 +#: inc/tag-clouds.php:95 inc/taxonomies.php:122 inc/terms.php:194 msgid "Number of items per page" msgstr "Nombre d’éléments par page" @@ -2217,8 +2235,8 @@ msgstr "Nombre d’éléments par page" msgid "Object" msgstr "Objet" -#: inc/suggestterms.php:797 inc/tag-clouds.php:842 inc/autolinks.php:900 -#: inc/related-posts.php:875 inc/post-tags.php:719 inc/autoterms.php:1149 +#: inc/autolinks.php:993 inc/autoterms.php:1149 inc/post-tags.php:752 +#: inc/related-posts.php:875 inc/suggestterms.php:797 inc/tag-clouds.php:842 #: inc/taxonomies.php:1694 msgid "Okay" msgstr "D’accord" @@ -2262,11 +2280,11 @@ msgstr "" "inscrire sur le site du service pour obtenir une clé et la définir dans les " "options de TaxoPress." -#: inc/related-posts.php:290 inc/post-tags.php:291 inc/autoterms.php:412 +#: inc/autoterms.php:412 inc/post-tags.php:298 inc/related-posts.php:290 msgid "Options" msgstr "Options" -#: inc/class.admin.php:566 +#: inc/class.admin.php:582 msgid "Options saved" msgstr "Les options ont été enregistrées" @@ -2278,11 +2296,11 @@ msgstr "Trier par pour les étiquettes de sélection de la BD :" msgid "Order by for display tags:" msgstr "Ordre pour l’affichage des étiquettes :" -#: inc/helper.options.admin.php:111 +#: inc/helper.options.admin.php:45 msgid "Order by for tags display:" msgstr "Ordre par pour étiquettes affichés :" -#: inc/helper.options.admin.php:88 +#: inc/helper.options.admin.php:22 msgid "Order by for tags selection:" msgstr "Ordre par pour une sélection des étiquettes :" @@ -2294,11 +2312,11 @@ msgstr "Ordre pour les étiquettes de sélection de la BD :" msgid "Order for display tags:" msgstr "Ordre pour l’affichage des étiquettes :" -#: inc/helper.options.admin.php:123 +#: inc/helper.options.admin.php:57 msgid "Order tags display:" msgstr "Ordre d’affichage des étiquettes :" -#: inc/helper.options.admin.php:100 +#: inc/helper.options.admin.php:34 msgid "Order tags selection:" msgstr "Ordre de la sélection des étiquettes :" @@ -2306,7 +2324,7 @@ msgstr "Ordre de la sélection des étiquettes :" msgid "Ordering for choosing term from the database" msgstr "Tri pour choisir un terme dans la base de données" -#: inc/suggestterms.php:530 inc/class.admin.clickterms.php:92 +#: inc/class.admin.clickterms.php:92 inc/suggestterms.php:530 msgid "Ordering for choosing terms" msgstr "Ordre de choix des termes" @@ -2366,7 +2384,7 @@ msgstr "Droit refusé !" msgid "Permission denied." msgstr "Droit refusé." -#: inc/tag-clouds.php:591 inc/class.widgets.php:318 +#: inc/class.widgets.php:318 inc/tag-clouds.php:591 msgid "Pixel" msgstr "Pixel" @@ -2390,8 +2408,8 @@ msgstr "Veuillez choisir une option pour les « états du contenu »" msgid "Please choose an option for \"Sources\"" msgstr "Veuillez choisir une option pour « Sources »." -#: inc/suggestterms.php:793 inc/tag-clouds.php:839 inc/autolinks.php:897 -#: inc/related-posts.php:872 inc/post-tags.php:716 inc/autoterms.php:1146 +#: inc/autolinks.php:990 inc/autoterms.php:1146 inc/post-tags.php:749 +#: inc/related-posts.php:872 inc/suggestterms.php:793 inc/tag-clouds.php:839 #: inc/taxonomies.php:1691 msgid "Please complete the following required fields to save your changes:" msgstr "" @@ -2401,8 +2419,8 @@ msgstr "" #: inc/taxonomies-functions.php:1193 msgid "Please do not use quotes in post type/taxonomy names or rewrite slugs" msgstr "" -"Veuillez ne pas utiliser de guillemets dans les noms de type de publication/" -"taxonomie ou les slugs de réécriture" +"Veuillez ne pas utiliser de guillemets dans les noms de type de " +"publication/taxonomie ou les slugs de réécriture" #: inc/taxonomies-functions.php:1156 msgid "Please provide a post type to attach to." @@ -2416,7 +2434,7 @@ msgstr "Veuillez fournir un nom de taxonomie" msgid "Please provide a taxonomy to delete" msgstr "Veuillez fournir un nom de taxonomie à supprimer" -#: inc/class.admin.php:421 +#: inc/class.admin.php:425 msgid "Please select a valid" msgstr "Veuillez sélectionner un valide" @@ -2454,11 +2472,11 @@ msgstr "Étiquettes de média populaires" msgid "Post" msgstr "Publication" -#: inc/autolinks.php:410 inc/autoterms.php:503 inc/autolinks-table.php:372 +#: inc/autolinks-table.php:372 inc/autolinks.php:435 inc/autoterms.php:503 msgid "Post Content" msgstr "Contenu de la publication" -#: inc/autolinks.php:419 inc/autoterms.php:511 inc/autolinks-table.php:374 +#: inc/autolinks-table.php:374 inc/autolinks.php:444 inc/autoterms.php:511 msgid "Post Content and Title" msgstr "Contenu et titre de la publication" @@ -2466,23 +2484,23 @@ msgstr "Contenu et titre de la publication" msgid "Post content is empty." msgstr "Le contenu de la publication est vide." -#: inc/helper.options.admin.php:348 +#: inc/helper.options.admin.php:300 msgid "Post link format:" msgstr "Format des liens des publications :" -#: inc/helper.options.admin.php:252 +#: inc/helper.options.admin.php:193 msgid "Post tag separator string:" msgstr "Chaine de séparation des étiquettes de publication : " -#: inc/class.admin.php:290 +#: inc/class.admin.php:293 msgid "Post tags" msgstr "Étiquettes de la publication" -#: inc/post-tags.php:472 +#: inc/post-tags.php:495 msgid "Post term separator string:\t" msgstr "Chaîne de séparation des termes de la publication : \t" -#: inc/autolinks.php:415 inc/autoterms.php:507 inc/autolinks-table.php:373 +#: inc/autolinks-table.php:373 inc/autolinks.php:440 inc/autoterms.php:507 msgid "Post Title" msgstr "Titre de la publication" @@ -2490,27 +2508,27 @@ msgstr "Titre de la publication" msgid "Post title" msgstr "Titre de la publication" -#: inc/tag-clouds.php:349 inc/related-posts.php:403 -#: inc/related-posts-table.php:68 inc/tag-clouds-table.php:68 +#: inc/related-posts-table.php:68 inc/related-posts.php:403 +#: inc/tag-clouds-table.php:68 inc/tag-clouds.php:349 msgid "Post Type" msgstr "Type de publication" -#: inc/terms-table.php:192 inc/autoterms-logs-table.php:128 -#: inc/autoterms-logs-table.php:189 +#: inc/autoterms-logs-table.php:128 inc/autoterms-logs-table.php:189 +#: inc/terms-table.php:199 msgid "Post type" msgstr "Type de publication" -#: inc/suggestterms.php:400 inc/autolinks.php:287 inc/terms-table.php:115 -#: inc/class-taxonomies-table.php:70 inc/autoterms.php:559 -#: inc/taxonomies.php:345 +#: inc/autolinks.php:294 inc/autoterms.php:559 +#: inc/class-taxonomies-table.php:70 inc/suggestterms.php:400 +#: inc/taxonomies.php:345 inc/terms-table.php:115 msgid "Post Types" msgstr "Types de publication" -#: inc/class.admin.php:291 +#: inc/class.admin.php:294 msgid "Posts" msgstr "Publications" -#: inc/autolinks-functions.php:154 inc/helper.options.default.php:27 +#: inc/autolinks-functions.php:160 inc/helper.options.default.php:28 msgid "Posts tagged with %s" msgstr "Publications étiquetées avec %s" @@ -2518,27 +2536,27 @@ msgstr "Publications étiquetées avec %s" msgid "Pourcent" msgstr "Pourcentage" -#: inc/autolinks.php:686 +#: inc/autolinks.php:698 msgid "pre" msgstr "avant" -#: inc/autolinks.php:668 +#: inc/autolinks.php:676 msgid "Prevent Auto Links inside classes or IDs" msgstr "Empêcher les liens automatiques dans les éléments ou les IDs" -#: inc/autolinks.php:690 +#: inc/autolinks.php:702 msgid "Prevent Auto Links inside elements" msgstr "Empêcher les liens automatiques dans les éléments" -#: inc/helper.options.admin.php:455 +#: inc/helper.options.admin.php:407 msgid "Priority on hook the_content" msgstr "Priorité sur le crochet the_content" -#: inc/autolinks.php:746 +#: inc/autolinks.php:831 msgid "Priority on the_content and the_title hook" msgstr "Priorité des crochets the_content et the_title" -#: inc/terms-table.php:212 inc/taxonomies.php:196 +#: inc/taxonomies.php:196 inc/terms-table.php:219 msgid "Private Taxonomies" msgstr "Taxonomies privées" @@ -2554,7 +2572,7 @@ msgstr "Public" msgid "Public Queryable" msgstr "Publiquement interrogeable" -#: inc/terms-table.php:211 inc/taxonomies.php:195 +#: inc/taxonomies.php:195 inc/terms-table.php:218 msgid "Public Taxonomies" msgstr "Taxonomies publiques" @@ -2566,22 +2584,22 @@ msgstr "Quantité…" msgid "Query Var" msgstr "Query Var" -#: inc/terms-table.php:582 +#: inc/terms-table.php:611 msgid "Quick Edit" msgstr "Modification rapide" #. %s: Taxonomy term name. -#: inc/terms-table.php:388 +#: inc/terms-table.php:393 msgid "Quick edit “%s” inline" msgstr "Modification rapide “%s” en ligne" -#: inc/terms-table.php:389 +#: inc/terms-table.php:394 msgid "Quick Edit" msgstr "Modification  rapide" -#: inc/suggestterms.php:495 inc/tag-clouds.php:437 inc/tag-clouds.php:472 -#: inc/related-posts.php:640 inc/class.admin.clickterms.php:76 -#: inc/class.widgets.php:246 +#: inc/class.admin.clickterms.php:76 inc/class.widgets.php:246 +#: inc/related-posts.php:640 inc/suggestterms.php:495 inc/tag-clouds.php:437 +#: inc/tag-clouds.php:472 msgid "Random" msgstr "Aléatoire" @@ -2605,9 +2623,9 @@ msgstr "Clé d’enregistrement" msgid "Related Post" msgstr "Publications similaires" -#: inc/related-posts.php:72 inc/related-posts.php:73 inc/related-posts.php:126 -#: inc/class.admin.php:786 inc/related-posts-table.php:15 -#: inc/helper.options.admin.php:27 +#: inc/class.admin.php:807 inc/functions.inc.php:374 +#: inc/related-posts-table.php:15 inc/related-posts.php:72 +#: inc/related-posts.php:73 inc/related-posts.php:126 msgid "Related Posts" msgstr "Publications similaires" @@ -2619,7 +2637,7 @@ msgstr "Publications similaires (TaxoPress)" msgid "Related Posts are added on " msgstr "Les publications similaires sont ajoutées sur " -#: inc/helper.options.admin.php:388 +#: inc/helper.options.admin.php:340 msgid "Related posts by terms" msgstr "Publications similaires par les termes" @@ -2639,7 +2657,7 @@ msgstr "Publications similaires non trouvées." msgid "Related Posts Order" msgstr "Tri de publications similaires" -#: inc/helper.options.admin.php:332 +#: inc/helper.options.admin.php:284 msgid "Related Posts Order:" msgstr "Ordre des publications similaires :" @@ -2653,7 +2671,7 @@ msgstr "" msgid "Related Posts successfully deleted." msgstr "Les publications similaires ont été supprimées avec succès." -#: inc/terms-table.php:403 +#: inc/terms-table.php:408 msgid "Remove From All Posts" msgstr "Retirer de toutes les publications" @@ -2683,19 +2701,19 @@ msgstr "" "Le(s) terme(s) «%1$s» a (ont) été renommé(s) en «" "%2$s»" -#: inc/post-tags.php:689 +#: inc/post-tags.php:722 msgid "Replaced by the RSS tag link" msgstr "Remplacé par le lien de l’étiquette RSS" -#: inc/post-tags.php:690 +#: inc/post-tags.php:723 msgid "Replaced by the tag ID" msgstr "Remplacé par l’ID de l’étiquette" -#: inc/post-tags.php:691 +#: inc/post-tags.php:724 msgid "Replaced by the tag’s name, formatted for attribute HTML" msgstr "Remplacé par le nom de l’étiquette, mis en forme pour l’attribut HTML" -#: includes-core/TaxopressCoreAdmin.php:117 +#: includes-core/TaxopressCoreAdmin.php:122 msgid "Request Support" msgstr "Demande d’assistance" @@ -2727,12 +2745,12 @@ msgstr "Réécrire la hiérarchie" msgid "Rewrite With Front" msgstr "Réécriture avec la base" -#: inc/post-tags-table.php:345 inc/related-posts-table.php:385 -#: inc/autolinks-table.php:346 +#: inc/autolinks-table.php:346 inc/post-tags-table.php:345 +#: inc/related-posts-table.php:385 msgid "RSS feed" msgstr "Flux RSS" -#: inc/autolinks.php:841 +#: inc/autolinks.php:933 msgid "Save Auto Links" msgstr "Enregistrer les liens automatiques" @@ -2756,7 +2774,7 @@ msgstr "Enregistrer la taxonomie" msgid "Save Terms Display" msgstr "Enregistrer l’affichage des termes" -#: inc/post-tags.php:642 +#: inc/post-tags.php:673 msgid "Save Terms for Current Post" msgstr "Enregistrer les termes pour la publication actuelle" @@ -2764,7 +2782,7 @@ msgstr "Enregistrer les termes pour la publication actuelle" msgid "Schedule" msgstr "Planifier" -#: includes-core/TaxopressCoreAdmin.php:152 +#: includes-core/TaxopressCoreAdmin.php:154 msgid "Schedule Auto Terms for your content" msgstr "Programmez des termes automatiques pour votre contenu" @@ -2790,7 +2808,7 @@ msgstr "" "Texte pour lecteur d’écran pour le titre de la pagination sur l’écran de la " "liste des termes." -#: inc/autolinks.php:684 +#: inc/autolinks.php:696 msgid "script" msgstr "script" @@ -2830,9 +2848,9 @@ msgid "Search Related Posts" msgstr "Rechercher les publications similaires" #. %s: search keywords -#: inc/suggestterms.php:138 inc/terms.php:232 inc/tag-clouds.php:136 -#: inc/autolinks.php:136 inc/related-posts.php:136 inc/post-tags.php:136 -#: inc/autoterms.php:193 inc/autoterms.php:248 inc/taxonomies.php:163 +#: inc/autolinks.php:134 inc/autoterms.php:193 inc/autoterms.php:248 +#: inc/post-tags.php:134 inc/related-posts.php:136 inc/suggestterms.php:138 +#: inc/tag-clouds.php:136 inc/taxonomies.php:163 inc/terms.php:232 msgid "Search results for “%s”" msgstr "Résultats de recherche pour “%s”" @@ -2844,11 +2862,11 @@ msgstr "Rechercher les termes suggérés" msgid "Search Taxonomies" msgstr "Rechercher les taxonomies" -#: inc/class.admin.php:472 +#: inc/class.admin.php:477 msgid "Search TaxoPress Logs" msgstr "Rechercher les journaux de TaxoPress" -#: inc/terms.php:246 +#: inc/terms.php:248 msgid "Search Terms" msgstr "Rechercher des termes" @@ -2856,7 +2874,7 @@ msgstr "Rechercher des termes" msgid "Search Terms Display" msgstr "Rechercher l’affichage de termes" -#: inc/post-tags.php:149 +#: inc/post-tags.php:147 msgid "Search Terms for Current Post" msgstr "Rechercher les termes pour la publication actuelle" @@ -2902,7 +2920,7 @@ msgstr "Séparez les éléments par des virgules" msgid "Separate Media Tags with commas" msgstr "Séparez les étiquettes de média par des virgules" -#: inc/autolinks.php:670 +#: inc/autolinks.php:680 msgid "" "Separate multiple entries with a comma. For example: .notag, #main-header" msgstr "" @@ -2927,9 +2945,9 @@ msgstr "" #: inc/taxonomies.php:1520 msgid "" -"Sets a callback function name for the meta box display. Hierarchical " -"default: post_categories_meta_box, non-hierarchical default: " -"post_tags_meta_box. To remove the metabox completely, use \"false\"." +"Sets a callback function name for the meta box display. Hierarchical default:" +" post_categories_meta_box, non-hierarchical default: post_tags_meta_box. To " +"remove the metabox completely, use \"false\"." msgstr "" "Définit un nom de fonction de rappel pour l’affichage de la boîte méta. " "Hiérarchique par défaut : post_categories_meta_box, non-hiérarchique par " @@ -2940,14 +2958,14 @@ msgstr "" msgid "Sets a custom query_var slug for this taxonomy." msgstr "Définir un slug de query_var personnalisé pour cette taxonomie." -#: inc/class.admin.php:523 inc/autoterms-logs-table.php:164 -#: inc/autoterms-logs-table.php:195 +#: inc/autoterms-logs-table.php:164 inc/autoterms-logs-table.php:195 +#: inc/class.admin.php:529 msgid "Settings" msgstr "Réglages" -#: inc/autolinks-functions.php:252 inc/post-tags-functions.php:189 +#: inc/autolinks-functions.php:257 inc/autoterms-functions.php:333 +#: inc/post-tags-functions.php:189 inc/related-posts-functions.php:230 #: inc/suggestterms-functions.php:246 inc/tag-clouds-functions.php:238 -#: inc/related-posts-functions.php:230 inc/autoterms-functions.php:333 msgid "Settings updated successfully." msgstr "Les réglages ont été mis à jour avec succès." @@ -2960,7 +2978,7 @@ msgstr "Code court" msgid "Shortcode entry successfully deleted." msgstr "L’entrée du code court a été supprimé avec succès." -#: inc/tag-clouds.php:779 inc/related-posts.php:814 inc/post-tags.php:659 +#: inc/post-tags.php:691 inc/related-posts.php:814 inc/tag-clouds.php:779 msgid "Shortcode: " msgstr "Code court : " @@ -2990,7 +3008,7 @@ msgstr "" msgid "Show Existing Terms" msgstr "Afficher les termes existants" -#: inc/suggestterms.php:459 inc/class.admin.clickterms.php:173 +#: inc/class.admin.clickterms.php:173 inc/suggestterms.php:459 msgid "Show existing terms" msgstr "Afficher les termes exixtants" @@ -3018,8 +3036,8 @@ msgstr "Afficher dans l’API REST" msgid "Show user interface" msgstr "Afficher l’interface de l’utilisateur ou utilisatrice" -#: inc/post-tags-table.php:344 inc/related-posts-table.php:384 -#: inc/autolinks-table.php:345 +#: inc/autolinks-table.php:345 inc/post-tags-table.php:344 +#: inc/related-posts-table.php:384 msgid "Single post display" msgstr "Affichage de la publication individuelle" @@ -3027,8 +3045,8 @@ msgstr "Affichage de la publication individuelle" msgid "Singular Label" msgstr "Libellé au singulier" -#: inc/tag-clouds.php:435 inc/terms-table.php:113 inc/terms-table.php:590 -#: inc/class-tag-table.php:42 inc/class.widgets.php:240 inc/taxonomies.php:376 +#: inc/class-tag-table.php:42 inc/class.widgets.php:240 inc/tag-clouds.php:435 +#: inc/taxonomies.php:376 inc/terms-table.php:113 inc/terms-table.php:619 msgid "Slug" msgstr "Slug" @@ -3040,8 +3058,8 @@ msgstr "Ce slug existe déjà" msgid "Slug has changed" msgstr "Le slug a changé" -#: inc/autoterms-table.php:69 inc/autoterms-logs-table.php:146 -#: inc/autoterms-logs-table.php:191 +#: inc/autoterms-logs-table.php:146 inc/autoterms-logs-table.php:191 +#: inc/autoterms-table.php:69 msgid "Source" msgstr "Source" @@ -3065,7 +3083,7 @@ msgstr "Message de l’état" msgid "Stop words" msgstr "Arrêtez les mots" -#: inc/autolinks.php:685 +#: inc/autolinks.php:697 msgid "style" msgstr "style" @@ -3089,8 +3107,8 @@ msgstr "Terme suggéré" msgid "Suggest Term Post type" msgstr "Terme suggéré pour le type de contenu" +#: inc/functions.inc.php:392 inc/suggestterms-table.php:15 #: inc/suggestterms.php:71 inc/suggestterms.php:72 inc/suggestterms.php:125 -#: inc/helper.options.admin.php:48 inc/suggestterms-table.php:15 msgid "Suggest Terms" msgstr "Termes suggérés" @@ -3115,6 +3133,10 @@ msgid "Support hashtags symbols # in Auto Terms." msgstr "" "Prise en charge des symboles # des hashtags dans les termes automatiques." +#: inc/autolinks.php:315 inc/terms-table.php:116 +msgid "Synonyms" +msgstr "" + #: inc/class-tag-table.php:12 msgid "Tag Cloud" msgstr "Nuage d’étiquettes" @@ -3127,12 +3149,12 @@ msgstr "Nuage d’étiquettes" msgid "Tag Cloud (TaxoPress Legacy)" msgstr "Nuage d’étiquettes (TaxoPress héritage)" -#: inc/helper.options.admin.php:215 +#: inc/helper.options.admin.php:153 msgid "Tag cloud Shortcode" msgstr "Code court du nuage d’étiquettes" -#: inc/class.widgets.php:369 inc/helper.options.admin.php:145 -#: inc/helper.options.admin.php:274 +#: inc/class.widgets.php:369 inc/helper.options.admin.php:79 +#: inc/helper.options.admin.php:222 msgid "Tag link format:" msgstr "Format des liens des étiquettes :" @@ -3144,16 +3166,16 @@ msgstr "Étiquettes" msgid "Tags Cloud" msgstr "Nuages d’étiquettes" -#: inc/helper.options.admin.php:134 +#: inc/helper.options.admin.php:68 msgid "Tags cloud type format:" msgstr "Type de format de nuage d’étiquettes :" -#: inc/class.admin.php:784 +#: inc/class.admin.php:805 msgid "Tags for Current Post" msgstr "Étiquettes de la publication actuelle" -#: inc/helper.options.default.php:33 inc/post-tags-functions.php:152 -#: inc/class.client.post_tags.php:106 +#: inc/class.client.post_tags.php:106 inc/helper.options.default.php:34 +#: inc/post-tags-functions.php:152 msgid "Tags: " msgstr "Étiquettes : " @@ -3161,19 +3183,19 @@ msgstr "Étiquettes : " msgid "Target content" msgstr "Contenu ciblé" -#: inc/class-taxonomies-table.php:15 inc/helper.options.admin.php:6 +#: inc/class-taxonomies-table.php:15 inc/functions.inc.php:356 #: inc/taxonomies.php:99 inc/taxonomies.php:100 inc/taxonomies.php:153 msgid "Taxonomies" msgstr "Taxonomies" -#: inc/tag-clouds.php:377 inc/autolinks.php:367 inc/related-posts.php:440 -#: inc/post-tags.php:363 inc/autoterms-table.php:67 inc/terms-table.php:114 -#: inc/terms-table.php:201 inc/post-tags-table.php:67 -#: inc/related-posts-table.php:67 inc/class-taxonomies-table.php:14 +#: inc/autolinks-table.php:67 inc/autolinks.php:388 #: inc/autoterms-logs-table.php:137 inc/autoterms-logs-table.php:190 -#: inc/class.admin.clickterms.php:55 inc/autoterms.php:493 -#: inc/tag-clouds-table.php:67 inc/suggestterms-table.php:67 -#: inc/autolinks-table.php:67 +#: inc/autoterms-table.php:67 inc/autoterms.php:493 +#: inc/class-taxonomies-table.php:14 inc/class.admin.clickterms.php:55 +#: inc/post-tags-table.php:67 inc/post-tags.php:373 +#: inc/related-posts-table.php:67 inc/related-posts.php:440 +#: inc/suggestterms-table.php:67 inc/tag-clouds-table.php:67 +#: inc/tag-clouds.php:377 inc/terms-table.php:114 inc/terms-table.php:208 msgid "Taxonomy" msgstr "Taxonomie" @@ -3197,14 +3219,14 @@ msgstr "Slug de la taxonomie" msgid "Taxonomy slug cannot be numbers only." msgstr "Le slug de taxonomie ne peut pas être uniquement des chiffres." -#: inc/helper.options.admin.php:306 +#: inc/helper.options.admin.php:256 msgid "Taxonomy:" msgstr "Taxonomie :" #. Name of the plugin #. Author of the plugin -#: inc/class.admin.php:510 inc/class.admin.post.php:38 -#: inc/class-taxonomies-table.php:353 +#: inc/class-taxonomies-table.php:353 inc/class.admin.php:516 +#: inc/class.admin.post.php:38 msgid "TaxoPress" msgstr "TaxoPress" @@ -3216,21 +3238,21 @@ msgstr "" "TaxoPress vous permet de créer et de gérer des étiquettes, des catégories et " "tous les termes de votre taxonomie WordPress." -#: inc/autolinks.php:869 inc/autoterms.php:1118 +#: inc/autolinks.php:962 inc/autoterms.php:1118 msgid "TaxoPress and Languages" msgstr "TaxoPress et les langues" -#: inc/class.admin.php:470 inc/class.admin.php:471 inc/class.admin.php:473 -#: inc/class.admin.php:478 +#: inc/class.admin.php:475 inc/class.admin.php:476 inc/class.admin.php:478 +#: inc/class.admin.php:483 msgid "TaxoPress Logs" msgstr "Journaux de TaxoPress" -#: inc/class.admin.php:572 +#: inc/class.admin.php:588 msgid "TaxoPress options resetted to default options!" msgstr "" "Les options de TaxoPress ont été réinitialisées aux options par défaut !" -#: includes-core/TaxopressCoreAdmin.php:203 +#: includes-core/TaxopressCoreAdmin.php:207 msgid "" "TaxoPress Pro allows you to change how Auto Terms analyzes your posts. You " "will need to know how to write Regular Expressions to use this feature." @@ -3239,7 +3261,7 @@ msgstr "" "analysent vos publications. Vous devrez savoir comment écrire des " "expressions régulières pour utiliser cette fonctionnalité." -#: includes-core/TaxopressCoreAdmin.php:180 +#: includes-core/TaxopressCoreAdmin.php:183 msgid "" "TaxoPress Pro allows you to generate new terms for your content using the " "Dandelion and Open Calais services. These services can analyze your content " @@ -3249,7 +3271,7 @@ msgstr "" "en utilisant les services Dandelion et Open Calais. Ces services peuvent " "analyser votre contenu et ajouter de nouveaux termes." -#: includes-core/TaxopressCoreAdmin.php:157 +#: includes-core/TaxopressCoreAdmin.php:159 msgid "" "TaxoPress Pro allows you to schedule the \"Auto Terms to existing content\" " "feature. This is helpful if you regularly import content into WordPress. " @@ -3283,7 +3305,7 @@ msgstr "" "dans ce contenu. Cela peut ne pas réussir pour tous les types de publication " "et de mises en page." -#: inc/post-tags.php:415 +#: inc/post-tags.php:432 msgid "" "TaxoPress will attempt to automatically display terms in this content. It " "may not be successful for all post types and layouts." @@ -3292,7 +3314,7 @@ msgstr "" "Cela peut ne pas réussir pour tous les types de publication et de mises en " "page." -#: inc/autolinks.php:543 +#: inc/autolinks.php:526 msgid "" "TaxoPress will attempt to automatically insert Auto Links in this content. " "It may not be successful for all post types and layouts." @@ -3309,7 +3331,7 @@ msgstr "TaxoPress : Gérer les termes" msgid "TaxoPress: Mass Edit Terms" msgstr "TaxoPress : Edition en masse de termes" -#: inc/class.admin.php:509 inc/class.admin.php:522 +#: inc/class.admin.php:515 inc/class.admin.php:528 #: views/admin/page-settings.php:3 msgid "TaxoPress: Options" msgstr "TaxoPress : Options" @@ -3322,7 +3344,7 @@ msgstr "Modèles" msgid "Term" msgstr "Terme" -#: inc/terms-table.php:248 inc/terms-functions.php:81 +#: inc/terms-functions.php:81 inc/terms-table.php:255 msgid "Term deleted successfully." msgstr "Le terme a bien été supprimé." @@ -3334,21 +3356,21 @@ msgstr "Classe div d’affichage du terme" msgid "Term group" msgstr "Groupe du terme" -#: inc/tag-clouds.php:686 inc/autolinks.php:736 inc/related-posts.php:717 -#: inc/post-tags.php:561 +#: inc/autolinks.php:821 inc/post-tags.php:593 inc/related-posts.php:717 +#: inc/tag-clouds.php:686 msgid "Term link class" msgstr "Classe lien de terme" -#: inc/tag-clouds.php:699 inc/related-posts.php:730 inc/post-tags.php:574 +#: inc/post-tags.php:606 inc/related-posts.php:730 inc/tag-clouds.php:699 msgid "Term link format" msgstr "Format du lien du terme" -#: inc/terms-table.php:585 +#: inc/terms-table.php:614 msgctxt "term name" msgid "Name" msgstr "Nom" -#: inc/terms-table.php:594 +#: inc/terms-table.php:623 msgctxt "term name" msgid "Taxonomy" msgstr "Taxonomie" @@ -3377,7 +3399,7 @@ msgstr "Terme(s) à fusionner :" msgid "Term(s) to rename:" msgstr "Terme(s) à renommer :" -#: inc/terms.php:171 inc/terms.php:172 inc/terms.php:223 inc/terms-table.php:15 +#: inc/terms-table.php:15 inc/terms.php:171 inc/terms.php:172 inc/terms.php:223 msgid "Terms" msgstr "Termes" @@ -3393,13 +3415,13 @@ msgstr "Termes ajoutés" msgid "Terms added successfully" msgstr "Termes bien ajoutés" -#: inc/terms-table.php:245 +#: inc/terms-table.php:252 msgid "Terms deleted successfully." msgstr "Les termes ont bien été supprimés." -#: inc/tag-clouds.php:72 inc/tag-clouds.php:73 inc/tag-clouds.php:126 -#: inc/tag-clouds-table.php:14 inc/tag-clouds-table.php:15 -#: inc/helper.options.admin.php:13 +#: inc/functions.inc.php:362 inc/tag-clouds-table.php:14 +#: inc/tag-clouds-table.php:15 inc/tag-clouds.php:72 inc/tag-clouds.php:73 +#: inc/tag-clouds.php:126 msgid "Terms Display" msgstr "Affichage de termes" @@ -3419,9 +3441,9 @@ msgstr "Format d’affichage des termes" msgid "Terms Display successfully deleted." msgstr "L’affichage de termes a été supprimé avec succès." -#: inc/post-tags.php:72 inc/post-tags.php:126 inc/post-tags.php:679 -#: inc/post-tags-table.php:14 inc/post-tags-table.php:15 -#: inc/helper.options.admin.php:20 +#: inc/functions.inc.php:368 inc/post-tags-table.php:14 +#: inc/post-tags-table.php:15 inc/post-tags.php:71 inc/post-tags.php:125 +#: inc/post-tags.php:712 msgid "Terms for Current Post" msgstr "Termes pour la publication actuelle" @@ -3433,11 +3455,11 @@ msgstr "Termes pour la publication actuelle (TaxoPress)" msgid "Terms for Current Post are added on " msgstr "Les termes pour la publication actuelle sont ajoutés sur " -#: inc/post-tags.php:550 +#: inc/post-tags.php:582 msgid "Terms for Current Post div class" msgstr "Classe div termes pour la publication actuelle" -#: inc/autolinks.php:691 +#: inc/autolinks.php:705 msgid "Terms inside these html tags will not be auto link." msgstr "" "Les termes à l’intérieur de ces balises html ne seront pas liés " @@ -3449,31 +3471,31 @@ msgstr "" "Les termes seront ajoutés à tous les %s si aucun « Terme(s) à correspondre » " "n’est spécifié." -#: inc/helper.options.admin.php:258 +#: inc/helper.options.admin.php:203 msgid "Text to display after tags list:" msgstr "Texte à afficher après la liste des étiquettes :" -#: inc/post-tags.php:494 +#: inc/post-tags.php:521 msgid "Text to display after terms list" msgstr "Texte à afficher après la liste des étiquettes" -#: inc/helper.options.admin.php:255 +#: inc/helper.options.admin.php:198 msgid "Text to display before tags list:" msgstr "Texte à afficher avant la liste des étiquettes :" -#: inc/post-tags.php:483 +#: inc/post-tags.php:508 msgid "Text to display before terms list" msgstr "Texte à afficher avant la liste des étiquettes" -#: inc/helper.options.admin.php:280 +#: inc/helper.options.admin.php:229 msgid "Text to display if no tags found:" msgstr "Texte à afficher si aucune étiquette n’a été trouvé :" -#: inc/post-tags.php:505 +#: inc/post-tags.php:534 msgid "Text to display if no terms found" msgstr "Texte à afficher si aucune étiquette n’est trouvée" -#: inc/helper.options.admin.php:484 +#: inc/helper.options.admin.php:436 msgid "Text to display into title attribute for links:" msgstr "Texte à afficher dans l’attribut de titre pour les liens :" @@ -3481,7 +3503,7 @@ msgstr "Texte à afficher dans l’attribut de titre pour les liens :" msgid "Text to show when there is no related post" msgstr "Texte à afficher lorsqu’il n’y a pas de publication similaire" -#: inc/class.admin.php:650 +#: inc/class.admin.php:669 msgid "Thanks for using TaxoPress | %1sTaxoPress.com%2s | Version %3s" msgstr "Merci d’utiliser TaxoPress | %1sTaxoPress.com%2s | Version %3s" @@ -3494,7 +3516,7 @@ msgstr "L’extension active %s n’est pas compatible avec votre version de PHP msgid "The base slug that this taxonomy will use in the REST API." msgstr "Le slug de base que cette taxonomie utilisera dans l’API REST." -#: inc/helper.options.admin.php:180 +#: inc/helper.options.admin.php:114 msgid "" "The colours are hexadecimal colours, and need to have the full six digits " "(#eee is the shorthand version of #eeeeee)." @@ -3514,7 +3536,7 @@ msgstr "La couleur de la police pour le terme" msgid "The font size for the term" msgstr "La taille de la police pour le terme" -#: inc/helper.options.admin.php:202 +#: inc/helper.options.admin.php:140 msgid "" "The font size units option determines the units that the two font sizes use." msgstr "" @@ -3537,7 +3559,7 @@ msgstr "" "Le nom d’une classe de Rest Controller personnalisée au lieu de " "WP_REST_Terms_Controller." -#: inc/post-tags.php:687 +#: inc/post-tags.php:720 msgid "The name of the tag" msgstr "Le nom de l’étiquette" @@ -3549,7 +3571,7 @@ msgstr "Le nom du terme" msgid "The name of the term with any HTML stripped out" msgstr "Le nom du terme, sans le HTML" -#: inc/autolinks.php:776 +#: inc/autolinks.php:867 msgid "" "The new Auto Links engine uses the DOMDocument PHP class and may offer " "better performance. If your server does not support this functionality, " @@ -3575,7 +3597,7 @@ msgstr "Le nombre de fois où le terme est utilisé" msgid "The post excerpt" msgstr "L’extrait de la publication" -#: inc/related-posts.php:130 inc/helper.options.admin.php:30 +#: inc/functions.inc.php:375 inc/related-posts.php:130 msgid "" "The Related Posts feature works by checking for shared taxonomy terms. If " "your post has the terms “WordPress” and “Website”, then Related Posts will " @@ -3618,13 +3640,13 @@ msgstr "" msgid "The title of the post" msgstr "Le titre de la publication" -#: inc/helper.options.admin.php:191 +#: inc/helper.options.admin.php:127 msgid "The two font sizes are the size of the largest and smallest tags." msgstr "" "Les 2 tailles de polices représentent la taille maximale et minimale des " "étiquettes." -#: inc/helper.options.admin.php:199 +#: inc/helper.options.admin.php:137 msgid "The units to display the font sizes with, on tag clouds:" msgstr "" "Unité à utiliser pour la taille des polices dans le nuage d’étiquettes :" @@ -3633,7 +3655,7 @@ msgstr "" msgid "The URL of the post" msgstr "L’URL de la publication" -#: inc/post-tags.php:686 +#: inc/post-tags.php:719 msgid "The URL of the tag" msgstr "L’URL de l’étiquette" @@ -3667,7 +3689,7 @@ msgstr "Il n’y a pas d’extrait car ceci est une publication protégée." msgid "There's no content to scan." msgstr "Il n’y a pas de contenu à analyser." -#: inc/helper.options.admin.php:301 +#: inc/helper.options.admin.php:251 msgid "" "These settings are no longer being updated. Please use the \"Related Posts\" " "screen instead." @@ -3675,7 +3697,7 @@ msgstr "" "Ces réglages ne sont plus mis à jour. Veuillez utiliser l’écran " "« Publications similaires\" à la place." -#: inc/helper.options.admin.php:78 +#: inc/helper.options.admin.php:12 msgid "" "These settings are no longer being updated. Please use the \"Terms Display\" " "screen instead." @@ -3683,7 +3705,7 @@ msgstr "" "Ces réglages ne sont plus mis à jour. Veuillez utiliser l’écran « Affichage " "de termes » à la place." -#: inc/helper.options.admin.php:230 +#: inc/helper.options.admin.php:168 msgid "" "These settings are no longer being updated. Please use the \"Terms for " "Current Post\" screen instead." @@ -3691,7 +3713,7 @@ msgstr "" "Ces réglages ne sont plus mis à jour. Veuillez utiliser l’écran « Termes " "pour la publication actuelle » à la place." -#: inc/class.admin.php:330 +#: inc/class.admin.php:333 msgid "This custom post type not have taxonomies." msgstr "Ce type de publication personnalisé n’a pas de taxonomies." @@ -3712,7 +3734,7 @@ msgstr "" "Cela vous permet d’ignorer les messages qui ont déjà été analysés par la " "fonctionnalité contenu existant." -#: inc/post-tags.php:130 inc/helper.options.admin.php:23 +#: inc/functions.inc.php:369 inc/post-tags.php:128 msgid "" "This feature allows you create a customizable display of all the terms " "assigned to the current post." @@ -3720,7 +3742,7 @@ msgstr "" "Cette fonctionnalité vous permet de créer un affichage personnalisable de " "tous les termes assignés à la publication actuelle." -#: inc/tag-clouds.php:130 inc/helper.options.admin.php:16 +#: inc/functions.inc.php:363 inc/tag-clouds.php:130 msgid "" "This feature allows you to create a customizable display of all the terms in " "one taxonomy." @@ -3728,7 +3750,7 @@ msgstr "" "Cette fonctionnalité vous permet de créer un affichage personnalisable de " "tous les termes de une taxonomie." -#: inc/helper.options.admin.php:9 inc/taxonomies.php:157 +#: inc/functions.inc.php:357 inc/taxonomies.php:157 msgid "" "This feature allows you to create new taxonomies and edit all the settings " "for each taxonomy." @@ -3736,14 +3758,14 @@ msgstr "" "Cette fonction vous permet de créer de nouvelles taxonomies et de modifier " "tous les réglages de chaque taxonomie." -#: inc/helper.options.admin.php:391 +#: inc/helper.options.admin.php:343 msgid "" "This feature allows you to display related posts based on terms relation." msgstr "" "Cette fonctionnalité vous permet d’afficher les publications similaires en " "fonction de la correspondance des termes." -#: inc/helper.options.admin.php:58 +#: inc/functions.inc.php:399 msgid "" "This feature allows you to edit the terms of any taxonomy for multiple posts " "at the same time." @@ -3751,7 +3773,7 @@ msgstr "" "Cette fonctionnalité vous permet de modifier les termes de n’importe quelle " "taxonomie pour plusieurs publications en même temps." -#: inc/helper.options.admin.php:65 +#: inc/functions.inc.php:405 msgid "" "This feature allows you to edit, merge, delete and add terms for any " "taxonomy." @@ -3764,16 +3786,16 @@ msgid "This feature allows you to remove rarely used terms." msgstr "" "Cette fonctionnalité vous permet de supprimer les termes rarement utilisés." -#: inc/suggestterms.php:130 inc/helper.options.admin.php:51 +#: inc/functions.inc.php:393 inc/suggestterms.php:130 msgid "" "This feature helps when you're writing content. \"Suggest Terms\" can show a " "metabox where you can browse all your existing terms. \"Suggest Terms\" can " "also analyze your content and find new ideas for terms." msgstr "" -"Cette fonction est utile lorsque vous rédigez du contenu. « Termes suggérés" -"\" peut afficher une boîte méta où vous pouvez parcourir tous vos termes " -"existants. « Termes suggérés\" peut également analyser votre contenu et " -"trouver de nouvelles idées de termes." +"Cette fonction est utile lorsque vous rédigez du contenu. « Termes " +"suggérés\" peut afficher une boîte méta où vous pouvez parcourir tous vos " +"termes existants. « Termes suggérés\" peut également analyser votre contenu " +"et trouver de nouvelles idées de termes." #: inc/class.admin.manage.php:169 msgid "" @@ -3783,7 +3805,7 @@ msgstr "" "Cette fonctionnalité vous permet d’ajouter un ou plusieurs nouveaux termes à " "tous vos %s qui correspondent à l’un des termes donnés." -#: inc/class.admin.php:617 +#: inc/class.admin.php:634 msgid "This feature requires at least 1 tag to work. Begin by adding tags!" msgstr "" "Cette fonctionnalité nécéssite au moins 1 étiquette pour fonctionner. " @@ -3804,7 +3826,7 @@ msgstr "" "Cette fonctionnalité affiche une boîte méta où vous pouvez parcourir tous " "vos termes existants." -#: inc/class.admin.php:619 +#: inc/class.admin.php:636 msgid "" "This feature works only with activated JavaScript. Activate it in your Web " "browser so you can!" @@ -3846,7 +3868,7 @@ msgstr "" msgid "this page." msgstr "cette page." -#: inc/tag-clouds.php:808 inc/post-tags.php:688 +#: inc/post-tags.php:721 inc/tag-clouds.php:808 msgid "This provides rel tag markup" msgstr "Cela fournit le marquage de la balise rel" @@ -3856,13 +3878,17 @@ msgstr "" "Cet écran vous permet de rechercher et de modifier tous les termes de votre " "site." +#: inc/dashboard.php:91 +msgid "This screen allows you to enable or disable TaxoPress features." +msgstr "" + #: inc/autoterms.php:993 msgid "This setting allows you to add Auto Terms only to recent content." msgstr "" "Ce réglage vous permet d’ajouter des termes automatiques uniquement au " "contenu récent." -#: inc/autolinks.php:610 +#: inc/autolinks.php:605 msgid "" "This setting determines the maximum number of Auto Links for each term in " "one post." @@ -3870,13 +3896,13 @@ msgstr "" "Ce réglage détermine le nombre maximum de liens automatiques pour chaque " "terme dans une publication." -#: inc/autolinks.php:597 +#: inc/autolinks.php:588 msgid "This setting determines the maximum number of Auto Links in one post." msgstr "" "Ce réglage détermine le nombre maximum de liens automatiques dans une " "publication." -#: inc/helper.options.admin.php:426 +#: inc/helper.options.admin.php:378 msgid "" "This setting determines the maximum number of links created by article for " "the same tag. Default: 1." @@ -3884,7 +3910,7 @@ msgstr "" "Ce réglage détermine le nombre maximum de liens créés par publication pour " "la même étiquette. Valeur par défaut : 1." -#: inc/helper.options.admin.php:418 +#: inc/helper.options.admin.php:370 msgid "" "This setting determines the maximum number of links created by article. " "Default: 10." @@ -3892,7 +3918,7 @@ msgstr "" "Ce réglage détermine le nombre maximum de liens créés par publication. " "Valeur par défaut : 10." -#: inc/helper.options.admin.php:410 +#: inc/helper.options.admin.php:362 msgid "" "This setting helps prevent rarely used terms from being used by Auto Links. " "Default: 1." @@ -3920,12 +3946,11 @@ msgstr "" "Cela ajoutera les termes existants de la taxonomie sélectionnée dans " "l’onglet « Général »." -#: inc/suggestterms.php:316 inc/tag-clouds.php:316 inc/autolinks.php:320 -#: inc/related-posts.php:313 inc/post-tags.php:314 inc/autoterms-table.php:66 -#: inc/terms-table.php:112 inc/post-tags-table.php:66 -#: inc/related-posts-table.php:66 inc/autoterms.php:445 -#: inc/tag-clouds-table.php:66 inc/suggestterms-table.php:66 -#: inc/autolinks-table.php:66 +#: inc/autolinks-table.php:66 inc/autolinks.php:341 inc/autoterms-table.php:66 +#: inc/autoterms.php:445 inc/post-tags-table.php:66 inc/post-tags.php:324 +#: inc/related-posts-table.php:66 inc/related-posts.php:313 +#: inc/suggestterms-table.php:66 inc/suggestterms.php:316 +#: inc/tag-clouds-table.php:66 inc/tag-clouds.php:316 inc/terms-table.php:112 msgid "Title" msgstr "Titre" @@ -3937,14 +3962,14 @@ msgstr "En-tête du titre" msgid "Title:" msgstr "Titre:" -#: inc/autolinks.php:584 +#: inc/autolinks.php:571 msgid "" "To be included in Auto Links, a term must be used at least this many times." msgstr "" "Pour être inclus dans les liens automatiques, un terme doit être utilisé au " "moins autant de fois." -#: inc/autolinks.php:267 +#: inc/autolinks.php:269 msgid "To create more Auto Links, please upgrade to TaxoPress Pro." msgstr "" "Pour créer plus des liens automatiques, veuillez passer à TaxoPress Pro." @@ -3974,14 +3999,14 @@ msgstr "" "Pour créer plus de termes pour la publication actuelle, veuillez passer à " "TaxoPress Pro." +#: inc/autolinks.php:753 inc/autolinks.php:786 inc/autolinks.php:851 +#: inc/autoterms.php:605 inc/autoterms.php:618 inc/autoterms.php:650 +#: inc/autoterms.php:663 inc/autoterms.php:694 inc/autoterms.php:751 +#: inc/autoterms.php:776 inc/autoterms.php:801 inc/autoterms.php:876 +#: inc/post-tags.php:551 inc/related-posts.php:463 inc/related-posts.php:676 #: inc/suggestterms.php:449 inc/suggestterms.php:559 inc/suggestterms.php:574 #: inc/suggestterms.php:603 inc/suggestterms.php:661 inc/tag-clouds.php:521 -#: inc/tag-clouds.php:544 inc/tag-clouds.php:616 inc/autolinks.php:457 -#: inc/autolinks.php:484 inc/autolinks.php:762 inc/related-posts.php:463 -#: inc/related-posts.php:676 inc/post-tags.php:520 inc/autoterms.php:605 -#: inc/autoterms.php:618 inc/autoterms.php:650 inc/autoterms.php:663 -#: inc/autoterms.php:694 inc/autoterms.php:751 inc/autoterms.php:776 -#: inc/autoterms.php:801 inc/autoterms.php:876 inc/taxonomies.php:497 +#: inc/tag-clouds.php:544 inc/tag-clouds.php:616 inc/taxonomies.php:497 #: inc/taxonomies.php:616 inc/taxonomies.php:630 inc/taxonomies.php:771 #: inc/taxonomies.php:807 inc/taxonomies.php:833 inc/taxonomies.php:867 #: inc/taxonomies.php:891 inc/taxonomies.php:915 inc/taxonomies.php:941 @@ -3990,7 +4015,7 @@ msgstr "" msgid "True" msgstr "Vrai" -#: inc/helper.options.admin.php:476 +#: inc/helper.options.admin.php:428 msgid "Try new engine replacement ?" msgstr "Essayer le nouveau moteur de remplacement ?" @@ -4002,31 +4027,31 @@ msgstr "Taille de police de l’unité" msgid "Unit font size:" msgstr "Unité pour la taille :" -#: includes-core/TaxopressCoreAdmin.php:94 +#: includes-core/TaxopressCoreAdmin.php:99 msgid "Unlimited “Auto Links”" msgstr "« Liens automatiques » illimités" -#: includes-core/TaxopressCoreAdmin.php:95 +#: includes-core/TaxopressCoreAdmin.php:100 msgid "Unlimited “Auto Terms”" msgstr "« Termes automatiques » illimités" -#: includes-core/TaxopressCoreAdmin.php:93 +#: includes-core/TaxopressCoreAdmin.php:98 msgid "Unlimited “Related Posts”" msgstr "« Publications similaires » illimitées" -#: includes-core/TaxopressCoreAdmin.php:96 +#: includes-core/TaxopressCoreAdmin.php:101 msgid "Unlimited “Suggest Terms”" msgstr "« Termes suggérés » illimités" -#: includes-core/TaxopressCoreAdmin.php:91 +#: includes-core/TaxopressCoreAdmin.php:96 msgid "Unlimited “Term Display”" msgstr "« Affichage de termes » illimités" -#: includes-core/TaxopressCoreAdmin.php:92 +#: includes-core/TaxopressCoreAdmin.php:97 msgid "Unlimited “Terms for Current Posts”" msgstr "« Termes pour la publication actuelle » illimités" -#: inc/terms-table.php:610 inc/autoterms-logs-table.php:550 +#: inc/autoterms-logs-table.php:550 inc/terms-table.php:639 msgid "Update" msgstr "Mettre à jour" @@ -4055,20 +4080,20 @@ msgstr "Mis à jour du nom d’étiquette de média" msgid "Update options »" msgstr "Mettre à jour les options »" -#: inc/class.admin.php:475 +#: inc/class.admin.php:480 msgid "Update TaxoPress Logs" msgstr "Mise à jour des journaux de TaxoPress" -#: inc/suggestterms.php:717 inc/tag-clouds.php:731 inc/autolinks.php:807 -#: inc/related-posts.php:763 inc/post-tags.php:608 inc/autoterms.php:1056 -#: includes-core/TaxopressCoreAdmin.php:103 -#: includes-core/TaxopressCoreAdmin.php:159 -#: includes-core/TaxopressCoreAdmin.php:182 -#: includes-core/TaxopressCoreAdmin.php:205 +#: inc/autolinks.php:899 inc/autoterms.php:1056 inc/post-tags.php:639 +#: inc/related-posts.php:763 inc/suggestterms.php:717 inc/tag-clouds.php:731 +#: includes-core/TaxopressCoreAdmin.php:108 +#: includes-core/TaxopressCoreAdmin.php:161 +#: includes-core/TaxopressCoreAdmin.php:185 +#: includes-core/TaxopressCoreAdmin.php:209 msgid "Upgrade to Pro" msgstr "Passer en version Pro" -#: includes-core/TaxopressCoreAdmin.php:83 +#: includes-core/TaxopressCoreAdmin.php:88 msgid "Upgrade to TaxoPress Pro" msgstr "Passer en version TaxoPress Pro" @@ -4085,15 +4110,15 @@ msgstr "" msgid "Use auto color cloud:" msgstr "Utilisez le nuage de couleurs automatique :" -#: inc/autolinks.php:383 +#: inc/autolinks.php:406 msgid "Use case of term" msgstr "Utiliser la casse du terme" -#: inc/autolinks.php:377 +#: inc/autolinks.php:398 msgid "Use case of text in content" msgstr "Utiliser la casse du texte dans le contenu" -#: inc/autolinks.php:774 +#: inc/autolinks.php:863 msgid "Use new Auto Links engine" msgstr "Utiliser le nouveau moteur de liens automatiques" @@ -4101,7 +4126,7 @@ msgstr "Utiliser le nouveau moteur de liens automatiques" msgid "Use only some terms in the selected taxonomy." msgstr "N’utiliser que certains termes de la taxonomie sélectionnée." -#: includes-core/TaxopressCoreAdmin.php:198 +#: includes-core/TaxopressCoreAdmin.php:202 msgid "Use Regular Expressions to modify Auto Terms" msgstr "" "Utilisez des expressions régulières pour modifier les termes automatiques" @@ -4145,7 +4170,7 @@ msgstr "" "Utilisé pour indiquer qu’il n’y a pas de termes dans la taxonomie donnée " "associés à un objet." -#: inc/terms-table.php:425 inc/class-taxonomies-table.php:281 +#: inc/class-taxonomies-table.php:281 inc/terms-table.php:432 msgid "View" msgstr "Voir" @@ -4160,7 +4185,7 @@ msgstr "Voir %s" msgid "View Item" msgstr "Voir l’élément" -#: includes-core/TaxopressCoreAdmin.php:128 +#: includes-core/TaxopressCoreAdmin.php:131 msgid "View Knowledge Base" msgstr "Voir la base de connaissances" @@ -4180,7 +4205,7 @@ msgstr "Ce qu’il faut montrer" msgid "Whole words" msgstr "Mots entiers" -#: inc/autolinks.php:270 +#: inc/autolinks.php:274 msgid "" "With TaxoPress Pro, you can create unlimited Auto Links. You can create Auto " "Links for any taxonomy." @@ -4227,7 +4252,7 @@ msgstr "" "Vous pouvez créer des affichages de termes pour n’importe quelle taxonomie " "et ensuite afficher ces affichages de termes où vous voulez sur votre site." -#: inc/post-tags.php:269 +#: inc/post-tags.php:271 msgid "" "With TaxoPress Pro, you can create unlimited Terms for Current Post. You can " "create Terms for Current Post for any taxonomy and then display those Terms " @@ -4250,28 +4275,28 @@ msgstr "" msgid "WordPress core" msgstr "Cœur de WordPress" -#: inc/suggestterms.php:807 inc/tag-clouds.php:851 inc/autolinks.php:909 -#: inc/related-posts.php:884 inc/post-tags.php:728 -#: inc/class-taxonomies-table.php:374 inc/autoterms.php:1158 +#: inc/autolinks.php:1000 inc/autoterms.php:1158 +#: inc/class-taxonomies-table.php:374 inc/post-tags.php:759 +#: inc/related-posts.php:884 inc/suggestterms.php:807 inc/tag-clouds.php:851 #: inc/taxonomies.php:1703 msgid "Yes" msgstr "Oui" -#: inc/post-tags.php:693 +#: inc/post-tags.php:726 msgid "You can also add HTML elements to the formatting." msgstr "Vous pouvez également ajouter des éléments HTML à la mise en forme." -#: inc/related-posts.php:731 inc/post-tags.php:575 +#: inc/post-tags.php:607 inc/related-posts.php:731 msgid "You can find markers and explanations %1sin the documentation%2s." msgstr "" "Vous pouvez trouver des marqueurs et des explications %1sdans la " "documentation%2s." -#: inc/helper.options.admin.php:148 inc/helper.options.admin.php:277 -#: inc/helper.options.admin.php:351 +#: inc/helper.options.admin.php:82 inc/helper.options.admin.php:225 +#: inc/helper.options.admin.php:303 msgid "" -"You can find markers and explanations in the online documentation." +"You can find markers and explanations in the online documentation." msgstr "" "Vous pouvez trouver des repères et des explications dans la documentation en ligne." @@ -4280,43 +4305,43 @@ msgstr "" msgid "You can only delete taxonomies created with TaxoPress." msgstr "Vous pouvez uniquement supprimer les taxonomies créées avec TaxoPress." -#: inc/helper.options.admin.php:383 +#: inc/helper.options.admin.php:335 msgid "" "You can use the same syntax as st_related_posts()public static " -"function to customize display. See documentation for more details." +"function to customize display. See documentation for more details." msgstr "" -"Vous pouvez utiliser la même syntaxe que la fonction statique publique " -"st_related_posts() pour personnaliser l’affichage. Voir la documentation " -"pour plus de détails." +"Vous pouvez utiliser la même syntaxe que la fonction statique publique " +"st_related_posts() pour personnaliser l’affichage. Voir la " +"documentation pour plus de détails." -#: inc/helper.options.admin.php:210 +#: inc/helper.options.admin.php:148 msgid "" "You can use the same syntax as st_tag_cloud() public static " -"function to customize display. See documentation for more details." +"function to customize display. See documentation for more details." msgstr "" -"Vous pouvez utiliser la même syntaxe que la fonction statique publique " -"st_tag_cloud() pour personnaliser l’affichage. Voir la documentation " -"pour plus de détails." +"Vous pouvez utiliser la même syntaxe que la fonction statique publique " +"st_tag_cloud() pour personnaliser l’affichage. Voir la documentation pour plus " +"de détails." -#: inc/helper.options.admin.php:288 +#: inc/helper.options.admin.php:238 msgid "" "You can use the same syntax as st_the_tags() public static " -"function to customize display. See documentation for more details." +"function to customize display. See documentation for more details." msgstr "" -"Vous pouvez utiliser la même syntaxe que la fonction statique publique " -"st_the_tags() pour personnaliser l’affichage. Voir la documentation " -"pour plus de détails." +"Vous pouvez utiliser la même syntaxe que la fonction statique publique " +"st_the_tags() pour personnaliser l’affichage. Voir la documentation pour plus " +"de détails." -#: inc/helper.options.admin.php:83 +#: inc/helper.options.admin.php:17 msgid "" -"You must set ‘Order tags selection’ to count-desc for retrieve the 100 tags most popular and ‘Order tags " +"You must set ‘Order tags selection’ to count-" +"desc for retrieve the 100 tags most popular and ‘Order tags " "display’ to random for randomize cloud." msgstr "" "Vous devez fixer l’option ‘Ordre de sélection des étiquettes’ " @@ -4324,11 +4349,11 @@ msgstr "" "utilisés. Fixer ensuite l’option ‘Ordre d’affichage des " "étiquettes’ sur random pour mélanger le nuage." -#: inc/helper.options.admin.php:266 +#: inc/helper.options.admin.php:212 msgid "You must set zero (0) for display all tags." msgstr "Vous devez mettre zéro (0) pour afficher toutes les étiquettes." -#: inc/post-tags.php:453 +#: inc/post-tags.php:475 msgid "You must set zero (0) to display all post tags." msgstr "" "Vous devez définir zéro (0) pour afficher toutes les étiquettes de " @@ -4350,7 +4375,7 @@ msgstr "" "Vous avez besoin d’une clé API pour utiliser OpenCalais afin de suggérer des " "termes. %1sCliquez ici pour la documentation.%2s." -#: inc/related-posts.php:759 inc/post-tags.php:604 +#: inc/post-tags.php:636 inc/related-posts.php:759 msgid "" "You're using TaxoPress Free.\n" " The Pro version has more " @@ -4360,8 +4385,8 @@ msgstr "" " La version Pro a plus de " "fonctionnalités et de support." -#: inc/suggestterms.php:712 inc/tag-clouds.php:727 inc/autolinks.php:803 -#: inc/autoterms.php:1052 +#: inc/autolinks.php:896 inc/autoterms.php:1052 inc/suggestterms.php:712 +#: inc/tag-clouds.php:727 msgid "" "You're using TaxoPress Free.\n" " The Pro version has more features " diff --git a/languages/simple-tags-it_IT.mo b/languages/simple-tags-it_IT.mo index 7a92e778f3357d4de7222f830d8f962494827c4c..dbcbf03eec908adbef0b96e7c2baed4e67a7fb17 100644 GIT binary patch delta 14515 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 CHaZUg delta 19608 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 W-vtCE*%Olfzt&0HvR_{~%post_title" -"% (%post_comment%)" +"" +"%post_title% (%post_comment%)" msgstr "" -"%post_title" -"% (%post_comment%)" +"" +"%post_title% (%post_comment%)" #: inc/class.client.tagcloud.php:64 inc/class.client.tagcloud.php:271 -#: inc/helper.options.default.php:60 +#: inc/helper.options.default.php:61 msgid "" -"" -"%tag_name%" +"%tag_name%" msgstr "" -"" -"%tag_name%" +"%tag_name%" -#: inc/helper.options.default.php:38 +#: inc/helper.options.default.php:39 msgid "%tag_name%" msgstr "%tag_name%" -#: inc/post-tags-functions.php:155 inc/class.client.post_tags.php:111 +#: inc/class.client.post_tags.php:111 inc/post-tags-functions.php:155 msgid "" -"%tag_name%" +"" +"%tag_name%" msgstr "" -"%tag_name%" +"" +"%tag_name%" -#: inc/helper.options.admin.php:242 inc/helper.options.admin.php:321 -#: inc/helper.options.admin.php:467 +#: inc/helper.options.admin.php:182 inc/helper.options.admin.php:273 +#: inc/helper.options.admin.php:419 msgid "all – On your blog and feeds." msgstr "all – Nel tuo blog e nei feed." -#: inc/helper.options.admin.php:103 inc/helper.options.admin.php:126 +#: inc/helper.options.admin.php:37 inc/helper.options.admin.php:60 msgid "asc – Ascending." msgstr "asc – Ascendente." -#: inc/helper.options.admin.php:243 inc/helper.options.admin.php:322 +#: inc/helper.options.admin.php:183 inc/helper.options.admin.php:274 msgid "blogonly – Only on your blog." msgstr "blogonly – Solo nel tuo blog." -#: inc/helper.options.admin.php:338 +#: inc/helper.options.admin.php:290 msgid "count-asc – Least common tags between posts" msgstr "count-asc – Tag meno comuni tra gli articoli" -#: inc/helper.options.admin.php:339 +#: inc/helper.options.admin.php:291 msgid "" "count-desc – Most common tags between posts (default)" msgstr "" "count-desc – Tag più comuni tra gli articoli (predefinito)" -#: inc/helper.options.admin.php:114 +#: inc/helper.options.admin.php:48 msgid "count – Counter." msgstr "count – Contatore." -#: inc/helper.options.admin.php:91 +#: inc/helper.options.admin.php:25 msgid "count – Counter. (default)" msgstr "count – Contatore. (predefinito)" -#: inc/helper.options.admin.php:336 +#: inc/helper.options.admin.php:288 msgid "date-asc – Older Entries." msgstr "date-asc – Più vecchi." -#: inc/helper.options.admin.php:337 +#: inc/helper.options.admin.php:289 msgid "date-desc – Newer Entries." msgstr "date-desc – Più recenti." -#: inc/helper.options.admin.php:104 inc/helper.options.admin.php:127 +#: inc/helper.options.admin.php:38 inc/helper.options.admin.php:61 msgid "desc – Descending." msgstr "desc – Discendente." -#: inc/helper.options.admin.php:138 +#: inc/helper.options.admin.php:72 msgid "flat – Display inline (no list, just a div)" msgstr "" "flat – Mostra sulla stessa riga (nessun elenco, solo un " "div)" -#: inc/helper.options.admin.php:244 inc/helper.options.admin.php:323 +#: inc/helper.options.admin.php:184 inc/helper.options.admin.php:275 msgid "homeonly – Only on your home page." msgstr "homeonly – Solo nella homepage." -#: inc/helper.options.admin.php:137 +#: inc/helper.options.admin.php:71 msgid "list – Display a formatted list (ul/li)." msgstr "list – Mostra una lista formattata (ul/li)." -#: inc/helper.options.admin.php:340 +#: inc/helper.options.admin.php:292 msgid "name-asc – Alphabetical." msgstr "name-asc – Alfabetico." -#: inc/helper.options.admin.php:341 +#: inc/helper.options.admin.php:293 msgid "name-desc – Inverse Alphabetical." msgstr "name-desc – Alfabetico inverso." -#: inc/helper.options.admin.php:92 inc/helper.options.admin.php:115 +#: inc/helper.options.admin.php:26 inc/helper.options.admin.php:49 msgid "name – Name." msgstr "name – Nome." -#: inc/helper.options.admin.php:466 +#: inc/helper.options.admin.php:418 msgid "no – Nowhere" msgstr "no – Da nessuna parte" -#: inc/helper.options.admin.php:241 inc/helper.options.admin.php:320 +#: inc/helper.options.admin.php:181 inc/helper.options.admin.php:272 msgid "no – Nowhere (default)" msgstr "no – Da nessuna parte (predefinito)" -#: inc/helper.options.admin.php:247 inc/helper.options.admin.php:326 +#: inc/helper.options.admin.php:187 inc/helper.options.admin.php:278 msgid "pageonly – Only on your page view." msgstr "pageonly – Solo sulla visualizzazione della pagina." -#: inc/helper.options.admin.php:93 inc/helper.options.admin.php:342 +#: inc/helper.options.admin.php:27 inc/helper.options.admin.php:294 msgid "random – Random." msgstr "random – Casuale." -#: inc/helper.options.admin.php:116 +#: inc/helper.options.admin.php:50 msgid "random – Random. (default)" msgstr "random – Casuale. (predefinito)" -#: inc/helper.options.admin.php:468 +#: inc/helper.options.admin.php:420 msgid "single – Only on your single post view." msgstr "" "singleonly – Solo nella vista dell'articolo singolo." -#: inc/helper.options.admin.php:246 inc/helper.options.admin.php:325 +#: inc/helper.options.admin.php:186 inc/helper.options.admin.php:277 msgid "singleonly – Only on your single view." msgstr "singleonly – Solo nella vista singola." -#: inc/helper.options.admin.php:469 +#: inc/helper.options.admin.php:421 msgid "" -"singular – Only on your singular view (single post & " -"page) (default)." +"singular – Only on your singular view (single post & page)" +" (default)." msgstr "" "singular – Solo nelle viste singole (pagina e articolo " "singolo). (predefinito)" -#: inc/helper.options.admin.php:245 inc/helper.options.admin.php:324 +#: inc/helper.options.admin.php:185 inc/helper.options.admin.php:276 msgid "" "singularonly – Only on your singular view (single & page)." msgstr "" "singularonly – Solo nelle viste singole (pagina e " "articolo singolo)." -#: inc/helper.options.default.php:47 inc/class.client.related_posts.php:100 +#: inc/class.client.related_posts.php:100 inc/helper.options.default.php:48 msgid "

Related posts

" msgstr "

Articoli correlati

" #: inc/class.client.tagcloud.php:67 inc/class.client.tagcloud.php:274 -#: inc/helper.options.default.php:58 +#: inc/helper.options.default.php:59 msgid "

Tag Cloud

" msgstr "

Nuvola di tag

" -#: inc/helper.options.admin.php:80 +#: inc/helper.options.admin.php:14 msgid "" "‘Order tags display’ is the second. Once tags " "choosen, you can reorder them before display." @@ -388,7 +388,7 @@ msgstr "" "secondo passo. Una volta che hai scelto i tag li puoi ordinare prima della " "visualizzazione." -#: inc/helper.options.admin.php:79 +#: inc/helper.options.admin.php:13 msgid "" "‘Order tags selection’ is the first step during " "tag's cloud generation, corresponding to collect tags." @@ -397,12 +397,12 @@ msgstr "" "passo della generazione della nuvola di tag, corrispondente alla raccolta " "dei tag." -#: inc/helper.options.admin.php:207 inc/helper.options.admin.php:285 -#: inc/helper.options.admin.php:380 +#: inc/helper.options.admin.php:145 inc/helper.options.admin.php:235 +#: inc/helper.options.admin.php:332 msgid "Advanced usage:" msgstr "Utilizzo avanzato:" -#: inc/helper.options.admin.php:82 +#: inc/helper.options.admin.php:16 msgid "" "Example: You want display randomly the 100 tags most " "popular.
" @@ -435,7 +435,7 @@ msgstr "Attivo" msgid "Add" msgstr "Aggiungi" -#: inc/autolinks.php:847 +#: inc/autolinks.php:939 msgid "Add Auto Links" msgstr "Aggiungi auto link" @@ -447,16 +447,28 @@ msgstr "Aggiungi termini automatici" msgid "Add Auto Terms to existing content" msgstr "Aggiungi termini automatici ai contenuti esistenti" -#: inc/helper.options.admin.php:492 +#: inc/autolinks.php:796 +msgid "Add links for all terms" +msgstr "" + +#: inc/helper.options.admin.php:444 msgid "Add links for post title" msgstr "Aggiungi un link al titolo dell'articolo" -#: inc/autolinks.php:467 inc/helper.options.admin.php:431 +#: inc/helper.options.admin.php:383 msgid "Add links for unattached terms" msgstr "Aggiungi link per termini non allegati" -#: inc/suggestterms.php:127 inc/tag-clouds.php:128 inc/autolinks.php:128 -#: inc/related-posts.php:128 inc/post-tags.php:128 inc/taxonomies.php:155 +#: inc/autolinks.php:765 +msgid "Add links to synonyms" +msgstr "" + +#: inc/autolinks.php:769 +msgid "Add links to the content synonyms." +msgstr "" + +#: inc/autolinks.php:126 inc/post-tags.php:126 inc/related-posts.php:128 +#: inc/suggestterms.php:127 inc/tag-clouds.php:128 inc/taxonomies.php:155 msgid "Add New" msgstr "Aggiungi nuovo" @@ -467,7 +479,7 @@ msgstr "Aggiungi nuovo" msgid "Add new %s" msgstr "Aggiungi nuovi %s" -#: inc/autolinks.php:255 +#: inc/autolinks.php:257 msgid "Add new Auto Links" msgstr "Aggiungi nuovi auto link" @@ -499,7 +511,7 @@ msgstr "Aggiungi nuovi termini suggeriti" msgid "Add new Taxonomy" msgstr "Aggiungi nuova tassonomia" -#: inc/class.admin.php:476 +#: inc/class.admin.php:481 msgid "Add New TaxoPress Logs" msgstr "Aggiungi nuovo TaxoPress Logs" @@ -549,7 +561,7 @@ msgstr "Aggiungi i termini" msgid "Add Terms Display" msgstr "Aggiungi visualizzazione termini" -#: inc/post-tags.php:648 +#: inc/post-tags.php:679 msgid "Add Terms for Current Post" msgstr "Aggiungi termini all'articolo corrente" @@ -577,16 +589,16 @@ msgstr "Aggiungi la tassonomia all'API wp-json di WordPress." msgid "Admin Area" msgstr "Area d'amministrazione" -#: inc/class.admin.php:776 +#: inc/class.admin.php:797 msgid "Administration" msgstr "Amministrazione" -#: inc/autolinks.php:302 inc/related-posts.php:295 inc/post-tags.php:296 -#: inc/autoterms.php:427 inc/taxonomies.php:370 +#: inc/autolinks.php:322 inc/autoterms.php:427 inc/post-tags.php:305 +#: inc/related-posts.php:295 inc/taxonomies.php:370 msgid "Advanced" msgstr "Avanzate" -#: inc/helper.options.admin.php:62 +#: inc/functions.inc.php:404 msgid "Advanced Manage Terms" msgstr "Gestione avanzata dei termini" @@ -594,8 +606,8 @@ msgstr "Gestione avanzata dei termini" msgid "Advanced usage:" msgstr "Utilizzo avanzato:" -#: inc/related-posts-table.php:338 inc/related-posts-table.php:355 -#: inc/class.admin.mass.php:123 inc/tag-clouds-table.php:345 +#: inc/class.admin.mass.php:123 inc/related-posts-table.php:338 +#: inc/related-posts-table.php:355 inc/tag-clouds-table.php:345 msgid "All" msgstr "Tutte" @@ -614,7 +626,7 @@ msgstr "Tutto fatto! %s termini aggiunti." msgid "All Items" msgstr "Tutti gli elementi" -#: inc/autolinks.php:391 +#: inc/autolinks.php:414 msgid "All lowercase" msgstr "Tutto minuscolo" @@ -622,15 +634,15 @@ msgstr "Tutto minuscolo" msgid "All Media Tags" msgstr "Tutti i tag media" -#: inc/tag-clouds.php:334 inc/related-posts.php:378 +#: inc/related-posts.php:378 inc/tag-clouds.php:334 msgid "All post types" msgstr "Tutti i tipi di contenuto" -#: inc/terms-table.php:210 inc/taxonomies.php:194 +#: inc/taxonomies.php:194 inc/terms-table.php:217 msgid "All Taxonomies" msgstr "Tutte le tassonomie" -#: inc/autolinks.php:387 +#: inc/autolinks.php:410 msgid "All uppercase" msgstr "Tutto maiuscolo" @@ -638,7 +650,7 @@ msgstr "Tutto maiuscolo" msgid "Alphabetical" msgstr "Alfabetico" -#: inc/helper.options.admin.php:479 +#: inc/helper.options.admin.php:431 msgid "" "An engine replacement alternative uses DOMDocument PHP class and " "theoretically offers better performance. If your server does not offer the " @@ -672,8 +684,8 @@ msgstr "Sei sicuro di voler disabilitare tutti i log?" msgid "ASC" msgstr "ASC" -#: inc/suggestterms.php:515 inc/tag-clouds.php:453 inc/tag-clouds.php:488 -#: inc/class.admin.clickterms.php:89 +#: inc/class.admin.clickterms.php:89 inc/suggestterms.php:515 +#: inc/tag-clouds.php:453 inc/tag-clouds.php:488 msgid "Ascending" msgstr "Crescente" @@ -681,7 +693,7 @@ msgstr "Crescente" msgid "Attempt to automatically display related posts" msgstr "Tentativo di visualizzare automaticamente gli articoli correlati" -#: inc/post-tags.php:414 +#: inc/post-tags.php:429 msgid "Attempt to automatically display terms" msgstr "Tentativo di visualizzare i termini automaticamente" @@ -689,15 +701,15 @@ msgstr "Tentativo di visualizzare i termini automaticamente" msgid "Auto Link" msgstr "Auto link" -#: inc/class.admin.php:778 +#: inc/class.admin.php:799 msgid "Auto link" msgstr "Auto link" -#: inc/autolinks.php:430 inc/autolinks-table.php:69 +#: inc/autolinks-table.php:69 inc/autolinks.php:457 msgid "Auto Link areas" msgstr "Aree auto link" -#: inc/autolinks.php:401 +#: inc/autolinks.php:424 msgid "Auto Link case" msgstr "Formato auto link" @@ -705,32 +717,32 @@ msgstr "Formato auto link" msgid "Auto Link Post type" msgstr "Tipo di contenuto auto link" -#: inc/autolinks.php:440 +#: inc/autolinks.php:469 msgid "Auto Link title attribute" msgstr "Attributo title auto link" -#: inc/autolinks.php:72 inc/autolinks.php:73 inc/autolinks.php:126 -#: inc/helper.options.admin.php:34 inc/autolinks-table.php:15 +#: inc/autolinks-table.php:15 inc/autolinks.php:71 inc/autolinks.php:72 +#: inc/autolinks.php:125 inc/functions.inc.php:380 msgid "Auto Links" msgstr "Auto link" -#: inc/autolinks.php:130 inc/helper.options.admin.php:37 +#: inc/autolinks.php:128 inc/functions.inc.php:381 msgid "" -"Auto Links can automatically create links to your defined terms. For " -"example, if you have a term called “WordPress”, the Auto Links feature can " -"find the word “WordPress” in your content and add links to the archive page " -"for that term." +"Auto Links can automatically create links to your defined terms. For example," +" if you have a term called “WordPress”, the Auto Links feature can find the " +"word “WordPress” in your content and add links to the archive page for that " +"term." msgstr "" "Auto link può creare automaticamente link ai tuoi termini definiti. Per " "esempio, se hai un termine chiamato “WordPress”, la caratteristica Auto link " "può trovare nel tuo contenuto la parola “WordPress” e aggiungere i link alla " "pagina d'archivio per quel termine." -#: inc/autolinks-functions.php:261 +#: inc/autolinks-functions.php:266 msgid "Auto Links successfully deleted." msgstr "Auto link eliminati con successo." -#: inc/helper.options.admin.php:399 +#: inc/helper.options.admin.php:351 msgid "Auto links tags" msgstr "Tag auto link" @@ -746,7 +758,7 @@ msgstr "Termine automatico per tipo di contenuto" msgid "Auto term settings not found" msgstr "Impostazioni dei termini automatici non trovate" -#: inc/autoterms.php:74 inc/autoterms.php:75 inc/helper.options.admin.php:41 +#: inc/autoterms.php:74 inc/autoterms.php:75 inc/functions.inc.php:386 msgid "Auto Terms" msgstr "Termini automatici" @@ -754,7 +766,7 @@ msgstr "Termini automatici" msgid "Auto terms" msgstr "Termine automatici" -#: inc/autoterms.php:241 inc/helper.options.admin.php:44 +#: inc/autoterms.php:241 inc/functions.inc.php:387 msgid "" "Auto Terms can scan your content and automatically assign new and existing " "terms." @@ -828,32 +840,32 @@ msgstr "Visualizzazione automatica" msgid "Automatic Term Suggestions" msgstr "Suggerimenti termini automatici" -#: includes-core/TaxopressCoreAdmin.php:175 +#: includes-core/TaxopressCoreAdmin.php:178 msgid "Automatically add new terms to your content" msgstr "Aggiungi automaticamente nuovi termini al tuo contenuto" -#: includes-core/TaxopressCoreAdmin.php:98 +#: includes-core/TaxopressCoreAdmin.php:103 msgid "Automatically add terms to imported content" msgstr "Aggiungi automaticamente i termini ai contenuti importati" -#: includes-core/TaxopressCoreAdmin.php:97 +#: includes-core/TaxopressCoreAdmin.php:102 msgid "Automatically create new terms" msgstr "Crea automaticamente nuovi termini" -#: inc/helper.options.admin.php:312 +#: inc/helper.options.admin.php:263 msgid "Automatically display related posts into feeds" msgstr "Mostra automaticamente gli articoli correlati nei feed" -#: inc/helper.options.admin.php:316 +#: inc/helper.options.admin.php:268 msgid "Automatically display related posts into post content" msgstr "" "Mostra automaticamente gli articoli correlati nel contenuto dell'articolo" -#: inc/helper.options.admin.php:233 +#: inc/helper.options.admin.php:172 msgid "Automatically display tags list into feeds" msgstr "Mostra automaticamente l'elenco dei tag nei feed" -#: inc/helper.options.admin.php:238 +#: inc/helper.options.admin.php:178 msgid "Automatically display tags list into post content:" msgstr "Mostra automaticamente i tag nel contenuto degli articoli:" @@ -882,12 +894,13 @@ msgstr "Torna ai tag media" msgid "Batches wait time" msgstr "Tempo di attesa elaborazione dei lotti" -#: inc/related-posts.php:505 inc/post-tags.php:408 inc/post-tags-table.php:343 -#: inc/related-posts-table.php:383 inc/autolinks-table.php:344 +#: inc/autolinks-table.php:344 inc/post-tags-table.php:343 +#: inc/post-tags.php:423 inc/related-posts-table.php:383 +#: inc/related-posts.php:505 msgid "Blog display" msgstr "Visualizzazione del blog" -#: inc/helper.options.admin.php:309 +#: inc/helper.options.admin.php:259 msgid "" "By default, related posts work with post tags, but you can use a custom " "taxonomy. Default value : post_tag" @@ -896,7 +909,13 @@ msgstr "" "degli articoli, ma puoi usare anche una tassonomia personalizzata. Valore " "predefinito: post_tag" -#: inc/helper.options.admin.php:495 +#: inc/autolinks.php:800 +msgid "" +"By default, TaxoPress will add links for all terms. If this box is unchecked," +" Auto Links will only add links for terms that are attached to the post." +msgstr "" + +#: inc/helper.options.admin.php:447 msgid "" "By default, TaxoPress will exclude Auto Links for terms that are attached to " "the post title." @@ -904,7 +923,7 @@ msgstr "" "Per impostazione predefinita, TaxoPress escluderà gli auto link per i " "termini allegati al titolo dell'articolo." -#: inc/helper.options.admin.php:434 +#: inc/helper.options.admin.php:386 msgid "" "By default, TaxoPress will only add Auto Links for terms that are attached " "to the post. If this box is checked, TaxoPress will add links for all terms" @@ -913,15 +932,6 @@ msgstr "" "termini allegati al titolo dell'articolo. Se questa casella è selezionata, " "TaxoPress aggiungerà un link a tutti i termini" -#: inc/autolinks.php:469 -msgid "" -"By default, TaxoPress will only add Auto Links for terms that are attached " -"to the post. If this box is checked, TaxoPress will add links for all terms." -msgstr "" -"Per impostazione predefinita, TaxoPress includerà gli auto link per i " -"termini allegati al titolo dell'articolo. Se questa casella è selezionata, " -"TaxoPress aggiungerà un link a tutti i termini." - #: inc/taxonomies.php:508 msgid "" "Can terms in this taxonomy be organized into hierarchical relationships?" @@ -929,15 +939,15 @@ msgstr "" "I termini di questa tassonomia possono essere organizzati in relazioni " "gerarchiche?" -#: inc/terms-table.php:609 +#: inc/terms-table.php:638 msgid "Cancel" msgstr "Annulla" -#: inc/class.admin.php:386 +#: inc/class.admin.php:390 msgid "Change selection" msgstr "Cambia la selezione" -#: inc/autolinks.php:748 +#: inc/autolinks.php:835 msgid "" "Change the priority of the Auto Links functions on the_content hook. This is " "useful for fixing conflicts with other plugins. Higher number means autolink " @@ -1002,11 +1012,11 @@ msgstr "" msgid "Click to display tags" msgstr "Fai clic per visualizzare i tag" -#: inc/tag-clouds.php:384 inc/tag-clouds-table.php:362 +#: inc/tag-clouds-table.php:362 inc/tag-clouds.php:384 msgid "Cloud" msgstr "Nuvola" -#: inc/autolinks.php:687 +#: inc/autolinks.php:699 msgid "code" msgstr "code" @@ -1018,17 +1028,17 @@ msgstr "Completato: %s articoli controllati." msgid "Content statuses" msgstr "Stati del contenuto" -#: inc/autolinks.php:292 +#: inc/autolinks.php:301 msgid "Control" msgstr "Controllo" -#: inc/terms-table.php:116 inc/class-taxonomies-table.php:71 -#: inc/class-tag-table.php:43 +#: inc/class-tag-table.php:43 inc/class-taxonomies-table.php:71 +#: inc/terms-table.php:117 msgid "Count" msgstr "Conteggio" -#: inc/suggestterms.php:490 inc/tag-clouds.php:436 inc/tag-clouds.php:471 #: inc/class.admin.clickterms.php:76 inc/class.widgets.php:272 +#: inc/suggestterms.php:490 inc/tag-clouds.php:436 inc/tag-clouds.php:471 msgid "Counter" msgstr "Contatore" @@ -1036,11 +1046,11 @@ msgstr "Contatore" msgid "Counter (default)" msgstr "Contatore (predefinito)" -#: inc/post-tags.php:73 +#: inc/post-tags.php:72 msgid "Current Post" msgstr "Articolo corrente" -#: inc/related-posts.php:382 inc/related-posts-table.php:336 +#: inc/related-posts-table.php:336 inc/related-posts.php:382 msgid "Current post type" msgstr "Tipo di contenuto corrente" @@ -1087,6 +1097,10 @@ msgstr "Valore di confidenza dell'API Dandelion" msgid "Dandelion API token" msgstr "Token dell'API Dandelion" +#: inc/dashboard.php:62 inc/dashboard.php:63 inc/dashboard.php:89 +msgid "Dashboard" +msgstr "" + #: inc/class.admin.suggest.php:57 msgid "dataTXT by Dandelion" msgstr "dataTXT by Dandelion" @@ -1111,11 +1125,11 @@ msgstr "Tassonomia predefinita" msgid "Default Terms" msgstr "Termini predefiniti" -#: inc/autoterms-table.php:275 inc/terms-table.php:158 inc/terms-table.php:417 +#: inc/autolinks-table.php:275 inc/autoterms-logs-table.php:240 +#: inc/autoterms-table.php:275 inc/class-tag-table.php:195 #: inc/post-tags-table.php:275 inc/related-posts-table.php:276 -#: inc/autoterms-logs-table.php:240 inc/class-tag-table.php:195 -#: inc/tag-clouds-table.php:276 inc/suggestterms-table.php:274 -#: inc/autolinks-table.php:275 +#: inc/suggestterms-table.php:274 inc/tag-clouds-table.php:276 +#: inc/terms-table.php:164 inc/terms-table.php:424 msgid "Delete" msgstr "Elimina" @@ -1143,8 +1157,8 @@ msgstr "Elimina i termini non utilizzati" msgid "DESC (default)" msgstr "Disc (predefinito)" -#: inc/suggestterms.php:519 inc/tag-clouds.php:454 inc/tag-clouds.php:489 -#: inc/class.admin.clickterms.php:89 +#: inc/class.admin.clickterms.php:89 inc/suggestterms.php:519 +#: inc/tag-clouds.php:454 inc/tag-clouds.php:489 msgid "Descending" msgstr "Decrescente" @@ -1156,9 +1170,9 @@ msgstr "Descrivi a cosa serve la tua tassonomia." msgid "Description" msgstr "Descrizione" -#: inc/suggestterms.php:163 inc/terms.php:257 inc/tag-clouds.php:161 -#: inc/autolinks.php:161 inc/related-posts.php:161 inc/post-tags.php:160 -#: inc/autoterms.php:218 inc/autoterms.php:273 inc/taxonomies.php:203 +#: inc/autolinks.php:162 inc/autoterms.php:218 inc/autoterms.php:273 +#: inc/post-tags.php:159 inc/related-posts.php:161 inc/suggestterms.php:163 +#: inc/tag-clouds.php:161 inc/taxonomies.php:203 inc/terms.php:260 msgid "Description here." msgstr "Inserisci qui la descrizione." @@ -1166,7 +1180,7 @@ msgstr "Inserisci qui la descrizione." msgid "Design" msgstr "Design" -#: includes-core/TaxopressCoreAdmin.php:126 +#: includes-core/TaxopressCoreAdmin.php:129 msgid "Detailed documentation is also available on the plugin website." msgstr "" "Una documentazione più dettagliata è inoltre disponibile sul sito del plugin." @@ -1183,7 +1197,7 @@ msgstr "Disattiva Termini automatici" msgid "Disable Logs" msgstr "Disabilita tutti i log" -#: inc/related-posts.php:285 inc/post-tags.php:286 +#: inc/post-tags.php:291 inc/related-posts.php:285 msgid "Display" msgstr "Visualizza" @@ -1191,7 +1205,7 @@ msgstr "Visualizza" msgid "Display Format" msgstr "Formato visualizzazione" -#: inc/tag-clouds.php:394 inc/tag-clouds-table.php:69 +#: inc/tag-clouds-table.php:69 inc/tag-clouds.php:394 msgid "Display format" msgstr "Formato di visualizzazione" @@ -1207,19 +1221,11 @@ msgstr "" msgid "Do you really want to restore the default options?" msgstr "Vuoi veramente ripristinare le opzioni predefinite?" -#: inc/autolinks.php:496 -msgid "Don't add Auto Links if the term is already attached to the post." -msgstr "Non aggiungere auto link se il termine è già allegato all'articolo." - -#: inc/autolinks.php:494 -msgid "Don't add links for attached terms" -msgstr "Non aggiungere i link ai termini già allegati" - -#: inc/autoterms-table.php:264 inc/terms-table.php:383 -#: inc/post-tags-table.php:264 inc/related-posts-table.php:265 +#: inc/autolinks-table.php:264 inc/autoterms-table.php:264 #: inc/class-taxonomies-table.php:271 inc/class.admin.mass.php:263 -#: inc/tag-clouds-table.php:265 inc/suggestterms-table.php:263 -#: inc/autolinks-table.php:264 +#: inc/post-tags-table.php:264 inc/related-posts-table.php:265 +#: inc/suggestterms-table.php:263 inc/tag-clouds-table.php:265 +#: inc/terms-table.php:388 msgid "Edit" msgstr "Modifica" @@ -1230,7 +1236,7 @@ msgstr "Modifica" msgid "Edit %s" msgstr "Modifica %s" -#: inc/autolinks.php:248 +#: inc/autolinks.php:250 msgid "Edit Auto Links" msgstr "Modifica auto link" @@ -1262,7 +1268,7 @@ msgstr "Modifica termini suggeriti" msgid "Edit Taxonomy" msgstr "Modifica tassonomia" -#: inc/class.admin.php:474 +#: inc/class.admin.php:479 msgid "Edit TaxoPress Logs" msgstr "Modifica TaxoPress Logs" @@ -1274,15 +1280,15 @@ msgstr "Modifica la visualizzazione dei termini" msgid "Edit Terms for Current Post" msgstr "Modifica i termini per l'articolo corrente" -#: inc/class.admin.suggest.php:55 inc/class.admin.clickterms.php:132 +#: inc/class.admin.clickterms.php:132 inc/class.admin.suggest.php:55 msgid "Edit this metabox" msgstr "Modifica questa metabox" -#: inc/tag-clouds.php:592 inc/class.widgets.php:320 +#: inc/class.widgets.php:320 inc/tag-clouds.php:592 msgid "Em" msgstr "Em" -#: inc/class.admin.php:782 +#: inc/class.admin.php:803 msgid "Embedded Tags" msgstr "Tag incorporati" @@ -1290,7 +1296,7 @@ msgstr "Tag incorporati" msgid "Enable a custom query_var key for this taxonomy." msgstr "Abilita una chiave query_var personalizzata per questa tassonomia." -#: inc/helper.options.admin.php:463 +#: inc/helper.options.admin.php:415 msgid "Enable autolinks into post content for theses views:" msgstr "Abilita l'auto link nel contenuto degli articoli per queste viste:" @@ -1302,26 +1308,26 @@ msgstr "Abilita i colori per i termini" msgid "Enable Logs" msgstr "Abilita tutti i log" -#: inc/autolinks.php:542 +#: inc/autolinks.php:523 msgid "Enable this Auto Links instance for:" msgstr "Abilita questa istanza di auto link per:" -#: inc/helper.options.admin.php:218 +#: inc/helper.options.admin.php:156 msgid "" -"Enabling this will allow Wordpress to look for tag cloud shortcode " -"[st_tag_cloud] or [st-tag-cloud] when displaying " -"posts. WordPress replace this shortcode by a tag cloud." +"Enabling this will allow Wordpress to look for tag cloud shortcode " +"[st_tag_cloud] or [st-tag-cloud] when displaying posts. " +"WordPress replace this shortcode by a tag cloud." msgstr "" "Abilitando questa opzione consentirà a WordPress di cercare lo shortcode " -"della nuvola di tag [st_tag_cloud] o [st-tag-cloud] nel visualizzare gli articoli. WordPress sostituisce questo shortcode " -"con un tag cloud." +"della nuvola di tag [st_tag_cloud] o [st-tag-cloud]" +" nel visualizzare gli articoli. WordPress sostituisce questo shortcode con " +"un tag cloud." -#: includes-core/TaxopressCoreAdmin.php:88 +#: includes-core/TaxopressCoreAdmin.php:93 msgid "Enhance the power of TaxoPress with the Pro version:" msgstr "Rafforza il potere di TaxoPress con la versione Pro:" -#: inc/helper.options.admin.php:169 inc/helper.options.admin.php:372 +#: inc/helper.options.admin.php:103 inc/helper.options.admin.php:324 msgid "Enter the positioned title before the list, leave blank for no title:" msgstr "" "Inserisci il titolo da posizionare prima dell'elenco, lascia vuoto per " @@ -1339,11 +1345,11 @@ msgstr "" msgid "Enter the terms to rename and their new names." msgstr "Inserisci i termini da rinominare e i loro nuovi nomi." -#: inc/helper.options.admin.php:364 +#: inc/helper.options.admin.php:316 msgid "Enter the text to show when there is no related post:" msgstr "Inserisci il testo da mostrare quando non ci sono articoli correlati:" -#: inc/helper.options.admin.php:161 +#: inc/helper.options.admin.php:95 msgid "Enter the text to show when there is no tag:" msgstr "Inserire il testo da mostrare quando non ci sono tag:" @@ -1361,7 +1367,11 @@ msgstr "" "Errore. Devi inserire un termine singolo per unirlo in un termine dal nome " "nuovo!" -#: inc/helper.options.admin.php:450 +#: inc/class.admin.php:169 +msgid "Error: wrong data" +msgstr "" + +#: inc/helper.options.admin.php:402 msgid "" "Example: If you enter the term \"Paris\", the auto link tags feature will " "never replace this term by this link." @@ -1369,7 +1379,7 @@ msgstr "" "Esempio: se inserisci il termine \"Parigi\", l'opzione auto link tag non " "sostituirà mai questo termine con questo link." -#: inc/helper.options.admin.php:442 +#: inc/helper.options.admin.php:394 msgid "" "Example: If you ignore case, auto link feature will replace the word " "\"wordpress\" by the tag link \"WordPress\"." @@ -1377,7 +1387,7 @@ msgstr "" "Esempio: se usi ignora il formato, l'opzione auto link sostituirà la parola " "\"wordpress\" con il collegamento al tag \"WordPress\"." -#: inc/helper.options.admin.php:402 +#: inc/helper.options.admin.php:354 msgid "" "Example: You have a tag called \"WordPress\" and your post content contains " "\"wordpress\", this feature will replace \"wordpress\" by a link to " @@ -1385,10 +1395,10 @@ msgid "" msgstr "" "Esempio: se hai un tag che si chiama \"WordPress\" e il tuo articolo " "contiene la parola \"wordpress\", questa opzione rimpiazzerà \"wordpress\" " -"con un link alla pagina dei tag \"wordpress\". (http://myblog.net/tag/" -"wordpress/)" +"con un link alla pagina dei tag \"wordpress\". (http://myblog." +"net/tag/wordpress/)" -#: inc/autolinks.php:297 +#: inc/autolinks.php:308 msgid "Exceptions" msgstr "Eccezioni" @@ -1396,13 +1406,13 @@ msgstr "Eccezioni" msgid "Exclude previously analyzed content" msgstr "Escludi il contenuto analizzato in precedenza" -#: inc/helper.options.admin.php:447 +#: inc/helper.options.admin.php:399 msgid "Exclude some terms from tag link. For Ads Link subtition, etc." msgstr "" "Escludere alcuni termini dai link automatici ai tag per consentire l'uso di " "sistemi alternativi (pubblicità, ecc.)" -#: inc/autolinks.php:656 +#: inc/autolinks.php:660 msgid "Exclude terms from Auto Links" msgstr "Escludi i termini dagli auto link" @@ -1422,14 +1432,14 @@ msgstr "Termini di tassonomia esistenti" msgid "Existing terms on your site" msgstr "Termini esistenti sul tuo sito" +#: inc/autolinks.php:749 inc/autolinks.php:781 inc/autolinks.php:847 +#: inc/autoterms.php:600 inc/autoterms.php:614 inc/autoterms.php:645 +#: inc/autoterms.php:659 inc/autoterms.php:689 inc/autoterms.php:746 +#: inc/autoterms.php:771 inc/autoterms.php:796 inc/autoterms.php:871 +#: inc/post-tags.php:546 inc/related-posts.php:458 inc/related-posts.php:671 #: inc/suggestterms.php:444 inc/suggestterms.php:555 inc/suggestterms.php:569 #: inc/suggestterms.php:598 inc/suggestterms.php:656 inc/tag-clouds.php:516 -#: inc/tag-clouds.php:539 inc/tag-clouds.php:612 inc/autolinks.php:452 -#: inc/autolinks.php:479 inc/autolinks.php:758 inc/related-posts.php:458 -#: inc/related-posts.php:671 inc/post-tags.php:515 inc/autoterms.php:600 -#: inc/autoterms.php:614 inc/autoterms.php:645 inc/autoterms.php:659 -#: inc/autoterms.php:689 inc/autoterms.php:746 inc/autoterms.php:771 -#: inc/autoterms.php:796 inc/autoterms.php:871 inc/taxonomies.php:492 +#: inc/tag-clouds.php:539 inc/tag-clouds.php:612 inc/taxonomies.php:492 #: inc/taxonomies.php:611 inc/taxonomies.php:626 inc/taxonomies.php:767 #: inc/taxonomies.php:803 inc/taxonomies.php:828 inc/taxonomies.php:863 #: inc/taxonomies.php:887 inc/taxonomies.php:911 inc/taxonomies.php:936 @@ -1438,16 +1448,16 @@ msgstr "Termini esistenti sul tuo sito" msgid "False" msgstr "Falso" -#: includes-core/TaxopressCoreAdmin.php:99 +#: includes-core/TaxopressCoreAdmin.php:104 msgid "Fast, professional support" msgstr "Supporto rapido e professionale" -#: inc/class.admin.php:780 +#: inc/class.admin.php:801 msgid "Features" msgstr "Caratteristiche" -#: inc/terms-table.php:215 inc/autoterms-logs-table.php:172 -#: inc/class.admin.mass.php:225 +#: inc/autoterms-logs-table.php:172 inc/class.admin.mass.php:225 +#: inc/terms-table.php:222 msgid "Filter" msgstr "Filtro" @@ -1497,7 +1507,7 @@ msgstr "" "La dimensione del font minimo non può essere più grande del valore della " "dimensione del font massimo." -#: inc/autolinks.php:636 +#: inc/autolinks.php:639 msgid "" "For example, '4' would only link terms that are of 4 characters or less in " "length." @@ -1505,7 +1515,7 @@ msgstr "" "Ad esempio, \"4\" collegherebbe solo termini di lunghezza pari o inferiore a " "4 caratteri." -#: inc/autolinks.php:623 +#: inc/autolinks.php:622 msgid "" "For example, '4' would only link terms that are of 4 characters or more in " "length." @@ -1513,7 +1523,7 @@ msgstr "" "Ad esempio, \"4\" collegherebbe solo termini di lunghezza pari o superiore a " "4 caratteri." -#: inc/helper.options.admin.php:458 +#: inc/helper.options.admin.php:410 msgid "" "For expert, possibility to change the priority of autolinks functions on " "the_content hook. Useful for fix a conflict with an another plugin. Default: " @@ -1527,33 +1537,33 @@ msgstr "" msgid "Format:" msgstr "Formato:" -#: inc/suggestterms.php:285 inc/tag-clouds.php:281 inc/autolinks.php:282 -#: inc/related-posts.php:280 inc/post-tags.php:281 inc/autoterms.php:402 +#: inc/autolinks.php:287 inc/autoterms.php:402 inc/post-tags.php:284 +#: inc/related-posts.php:280 inc/suggestterms.php:285 inc/tag-clouds.php:281 #: inc/taxonomies.php:340 msgid "General" msgstr "Generale" -#: inc/autolinks.php:677 inc/related-posts.php:337 +#: inc/autolinks.php:689 inc/related-posts.php:337 msgid "H1" msgstr "H1" -#: inc/autolinks.php:678 inc/related-posts.php:341 +#: inc/autolinks.php:690 inc/related-posts.php:341 msgid "H2" msgstr "H2" -#: inc/autolinks.php:679 inc/related-posts.php:345 +#: inc/autolinks.php:691 inc/related-posts.php:345 msgid "H3" msgstr "H3" -#: inc/autolinks.php:680 inc/related-posts.php:349 +#: inc/autolinks.php:692 inc/related-posts.php:349 msgid "H4" msgstr "H4" -#: inc/autolinks.php:681 inc/related-posts.php:354 +#: inc/autolinks.php:693 inc/related-posts.php:354 msgid "H5" msgstr "H5" -#: inc/autolinks.php:682 inc/related-posts.php:358 +#: inc/autolinks.php:694 inc/related-posts.php:358 msgid "H6" msgstr "H6" @@ -1574,7 +1584,7 @@ msgstr "Ecco i token che puoi usare per il formato degli articoli correlati" msgid "Here are the tokens you can use for Term link format" msgstr "Ecco i token che puoi usare per il formato del link del termine" -#: inc/post-tags.php:684 +#: inc/post-tags.php:717 msgid "Here are the tokens you can use for Terms for Current Post format" msgstr "" "Ecco i token che puoi usare per il formato dei termini per l'articolo " @@ -1583,14 +1593,14 @@ msgstr "" #: review-request/review.php:275 msgid "" "Hey, you've been using TaxoPress for %s on your site. We hope the plugin has " -"been useful. Please could you quickly leave a 5-star rating on WordPress." -"org? It really does help to keep TaxoPress growing." +"been useful. Please could you quickly leave a 5-star rating on WordPress.org?" +" It really does help to keep TaxoPress growing." msgstr "" "Ciao, stai usando sul tuo sito TaxoPress da %s . Speriamo che il plugin ti " "sia stato utile. Potresti lasciarci rapidamente una valutazione di 5 stelle " "su WordPress.org? Questo ci stimola davvero a migliorare TaxoPress." -#: inc/post-tags.php:530 +#: inc/post-tags.php:561 msgid "Hide display output if no terms ?" msgstr "Nascondere la schermata di visualizzazione se non ci sono termini?" @@ -1611,8 +1621,9 @@ msgstr "Nascondere il titolo nella visualizzazione?" msgid "Hide title in output?" msgstr "Vuoi nascondere il titolo nella schermata?" -#: inc/related-posts.php:504 inc/post-tags.php:407 inc/post-tags-table.php:342 -#: inc/related-posts-table.php:382 inc/autolinks-table.php:343 +#: inc/autolinks-table.php:343 inc/post-tags-table.php:342 +#: inc/post-tags.php:422 inc/related-posts-table.php:382 +#: inc/related-posts.php:504 msgid "Homepage" msgstr "Homepage" @@ -1634,7 +1645,7 @@ msgid "" msgstr "" "Se scegli 5, Taxopress eliminerà tutti i termini associati a meno dil 5 %s." -#: inc/autolinks.php:658 +#: inc/autolinks.php:664 msgid "" "If you enter the terms \"WordPress\", \"Website\" the Auto Links feature " "will never replace these terms. Separate multiple entries with a comma." @@ -1642,13 +1653,13 @@ msgstr "" "Esempio: se inserisci il termine \"WordPress\", \"Sito web\" l'opzione auto " "link non sostituirà mai questi termini. Separare le voci con una virgola." -#: includes-core/TaxopressCoreAdmin.php:115 +#: includes-core/TaxopressCoreAdmin.php:120 msgid "If you need help or have a new feature request, let us know." msgstr "" "Se hai bisogno di aiuto o vuoi fare una richiesta per una nuova " "caratteristica, contattaci." -#: inc/autolinks.php:873 inc/autoterms.php:1122 +#: inc/autolinks.php:966 inc/autoterms.php:1122 #, php-format msgid "" "If your website language does not use the A-Z alphabet, %1s please read this " @@ -1657,11 +1668,11 @@ msgstr "" "Se la lingua del tuo sito web non usa l'alfabeto A-Z, %1s leggi questa " "documentazione. %2s" -#: inc/helper.options.admin.php:439 +#: inc/helper.options.admin.php:391 msgid "Ignore case for auto link feature ?" msgstr "Ignorare il formato per l'opzione auto link?" -#: inc/helper.options.admin.php:269 +#: inc/helper.options.admin.php:216 msgid "Include categories in result ?" msgstr "Includere le categorie nei risultati?" @@ -1669,6 +1680,10 @@ msgstr "Includere le categorie nei risultati?" msgid "Invalid access token !" msgstr "Token di accesso non valido!" +#: inc/class.admin.php:164 +msgid "Invalid nonce token!" +msgstr "" + #: inc/post-tags-functions.php:354 msgid "Invalid post terms ID." msgstr "ID dei termini dell'articolo non valido." @@ -1711,15 +1726,15 @@ msgstr "Seleziona almeno una tassonomia per poter continuare" msgid "Least common tags between posts" msgstr "Tag meno comuni tra gli articoli" -#: inc/helper.options.admin.php:183 +#: inc/helper.options.admin.php:118 msgid "Least popular color:" msgstr "Colore meno usato:" -#: inc/helper.options.admin.php:194 +#: inc/helper.options.admin.php:131 msgid "Least popular font size:" msgstr "Dimensione del font meno usato:" -#: inc/class.admin.php:788 +#: inc/class.admin.php:809 msgid "Legacy" msgstr "Legacy" @@ -1749,8 +1764,8 @@ msgstr "" msgid "Limit the number of logs" msgstr "Limita il numero di log" -#: inc/tag-clouds.php:385 inc/tag-clouds-table.php:363 -#: inc/class.widgets.php:335 +#: inc/class.widgets.php:335 inc/tag-clouds-table.php:363 +#: inc/tag-clouds.php:385 msgid "List (UL/LI)" msgstr "Elenco (UL/LI)" @@ -1758,7 +1773,7 @@ msgstr "Elenco (UL/LI)" msgid "Logs" msgstr "Log" -#: inc/autolinks.php:231 +#: inc/autolinks.php:233 msgid "Manage Auto Links" msgstr "Gestisci gli auto link" @@ -1798,7 +1813,7 @@ msgstr "Aggiornamento manuale dell'articolo" msgid "Mass Edit Terms" msgstr "Modifica in blocco dei termini" -#: inc/helper.options.admin.php:55 +#: inc/functions.inc.php:398 msgid "Mass Edit terms" msgstr "Modifica in blocco i termini" @@ -1806,7 +1821,7 @@ msgstr "Modifica in blocco i termini" msgid "Mass edit terms" msgstr "Modifica in blocco dei termini" -#: inc/helper.options.admin.php:263 +#: inc/helper.options.admin.php:209 msgid "Max tags display:" msgstr "Visualizzazione massima dei tag:" @@ -1814,31 +1829,31 @@ msgstr "Visualizzazione massima dei tag:" msgid "Max tags to display: (default: 45)" msgstr "Numero massimo di tag da mostrare: (predefinito: 45)" -#: inc/autolinks.php:634 +#: inc/autolinks.php:635 msgid "Maximum character length for an Auto Link" msgstr "Numero massimo di caratteri per un auto link" -#: inc/helper.options.admin.php:423 +#: inc/helper.options.admin.php:375 msgid "Maximum number of links for the same tag:" msgstr "Numero massimo di link per lo stesso tag:" -#: inc/autolinks.php:608 +#: inc/autolinks.php:601 msgid "Maximum number of links for the same term" msgstr "Numero massimo di link per lo stesso termine" -#: inc/helper.options.admin.php:415 +#: inc/helper.options.admin.php:367 msgid "Maximum number of links per article:" msgstr "Numero massimo di link per articolo:" -#: inc/autolinks.php:595 +#: inc/autolinks.php:584 msgid "Maximum number of links per post" msgstr "Numero massimo di link per contenuto" -#: inc/helper.options.admin.php:356 +#: inc/helper.options.admin.php:308 msgid "Maximum number of related posts to display: (default: 5)" msgstr "Numero massimo di articoli correlati da visualizzare: (predefinito: 5)" -#: inc/helper.options.admin.php:153 +#: inc/helper.options.admin.php:87 msgid "Maximum number of tags to display: (default: 45)" msgstr "Numero massimo di tag da mostrare: (predefinito: 45)" @@ -1846,11 +1861,11 @@ msgstr "Numero massimo di tag da mostrare: (predefinito: 45)" msgid "Maximum related posts to display" msgstr "Numero massimo di articoli correlati da visualizzare" -#: inc/suggestterms.php:475 inc/class.admin.clickterms.php:104 +#: inc/class.admin.clickterms.php:104 inc/suggestterms.php:475 msgid "Maximum terms" msgstr "Termini massimi" -#: inc/tag-clouds.php:563 inc/post-tags.php:451 +#: inc/post-tags.php:471 inc/tag-clouds.php:563 msgid "Maximum terms to display" msgstr "Numero massimo di termini da visualizzare" @@ -1901,7 +1916,7 @@ msgstr "Unisci i termini" msgid "Metabox callback" msgstr "Metabox callback" -#: inc/suggestterms.php:505 inc/class.admin.clickterms.php:79 +#: inc/class.admin.clickterms.php:79 inc/suggestterms.php:505 msgid "Method for choosing terms" msgstr "Metodi per la scelta dei termini" @@ -1917,7 +1932,7 @@ msgstr "Metodo per selezionare i termini dal database" msgid "Migrate terms to newly renamed taxonomy?" msgstr "Trasferire i termini nella tassonomia appena rinominata?" -#: inc/autolinks.php:621 +#: inc/autolinks.php:618 msgid "Minimum character length for an Auto Link" msgstr "Numero minimo di caratteri per un auto link" @@ -1925,11 +1940,11 @@ msgstr "Numero minimo di caratteri per un auto link" msgid "Minimum number of uses for each term:" msgstr "Numero minimo di utilizzo per ciascun termine:" -#: inc/autolinks.php:582 +#: inc/autolinks.php:567 msgid "Minimum term usage for Auto Links" msgstr "Utilizzo minimo per i termini degli auto link" -#: inc/helper.options.admin.php:407 +#: inc/helper.options.admin.php:359 msgid "Minimum usage for terms" msgstr "Utilizzo minimo per i termini" @@ -1941,22 +1956,22 @@ msgstr "Manca la tassonomia valida per poter funzionare. Riprova." msgid "Most common tags between posts" msgstr "Tag più comuni tra gli articoli" -#: inc/helper.options.admin.php:177 +#: inc/helper.options.admin.php:111 msgid "Most popular color:" msgstr "Colore più usato:" -#: inc/helper.options.admin.php:188 +#: inc/helper.options.admin.php:124 msgid "Most popular font size:" msgstr "Dimensione del font più usato:" -#: inc/suggestterms.php:486 inc/tag-clouds.php:434 inc/tag-clouds.php:470 -#: inc/class-taxonomies-table.php:66 inc/class.admin.clickterms.php:76 -#: inc/class-tag-table.php:41 inc/class.widgets.php:238 -#: inc/class.widgets.php:270 +#: inc/class-tag-table.php:41 inc/class-taxonomies-table.php:66 +#: inc/class.admin.clickterms.php:76 inc/class.widgets.php:238 +#: inc/class.widgets.php:270 inc/suggestterms.php:486 inc/tag-clouds.php:434 +#: inc/tag-clouds.php:470 msgid "Name" msgstr "Nome" -#: includes-core/TaxopressCoreAdmin.php:110 +#: includes-core/TaxopressCoreAdmin.php:115 msgid "Need TaxoPress Support?" msgstr "Hai bisogno dell'assistenza di TaxoPress?" @@ -1978,7 +1993,7 @@ msgstr "Nome nuovo elemento" msgid "New Media Tag name" msgstr "Nome del nuovo tag media" -#: inc/class.admin.php:477 +#: inc/class.admin.php:482 msgid "New TaxoPress Logs" msgstr "Nuovo TaxoPress Logs" @@ -1994,10 +2009,11 @@ msgstr "Nome del nuovo termine:" msgid "Newer Entries" msgstr "Voci più recenti" -#: inc/suggestterms.php:805 inc/tag-clouds.php:849 inc/autolinks.php:907 -#: inc/related-posts.php:882 inc/post-tags.php:726 inc/post-tags-table.php:355 -#: inc/related-posts-table.php:395 inc/class-taxonomies-table.php:372 -#: inc/autoterms.php:1156 inc/taxonomies.php:1701 +#: inc/autolinks.php:999 inc/autoterms.php:1156 +#: inc/class-taxonomies-table.php:372 inc/post-tags-table.php:355 +#: inc/post-tags.php:758 inc/related-posts-table.php:395 +#: inc/related-posts.php:882 inc/suggestterms.php:805 inc/tag-clouds.php:849 +#: inc/taxonomies.php:1701 msgid "No" msgstr "No" @@ -2019,7 +2035,7 @@ msgstr "Nessun %s trovato nel cestino." msgid "No %s found." msgstr "Nessun %s trovato." -#: includes-core/TaxopressCoreAdmin.php:100 +#: includes-core/TaxopressCoreAdmin.php:105 msgid "No ads inside the plugin" msgstr "Senza pubblicità all'interno del plugin" @@ -2027,15 +2043,15 @@ msgstr "Senza pubblicità all'interno del plugin" msgid "No content to edit." msgstr "Nessun contenuto da modificare." +#: inc/autolinks-table.php:91 inc/autoterms-logs-table.php:217 #: inc/autoterms-table.php:91 inc/post-tags-table.php:91 -#: inc/related-posts-table.php:92 inc/autoterms-logs-table.php:217 -#: inc/tag-clouds-table.php:92 inc/suggestterms-table.php:90 -#: inc/autolinks-table.php:91 +#: inc/related-posts-table.php:92 inc/suggestterms-table.php:90 +#: inc/tag-clouds-table.php:92 msgid "No item avaliable." msgstr "Nessun elemento disponibile." -#: inc/tag-clouds.php:418 inc/related-posts.php:591 inc/autoterms.php:944 -#: inc/autoterms.php:978 +#: inc/autoterms.php:944 inc/autoterms.php:978 inc/related-posts.php:591 +#: inc/tag-clouds.php:418 msgid "No limit" msgstr "Illimitato" @@ -2065,13 +2081,17 @@ msgstr "Nessun termine specificato!" msgid "No new/old valid term specified!" msgstr "Nessun nuovo/vecchio termine è stato specificato!" +#: inc/class.admin.php:154 +msgid "No permission!" +msgstr "" + #: inc/related-posts-widget.php:142 msgid "No Related Posts shortcode available. Add new shortcode " msgstr "" "Non sono disponibili shortcode per gli articoli correlati. Aggiungi nuovo " "shortcode " -#: inc/helper.options.default.php:46 inc/class.client.related_posts.php:101 +#: inc/class.client.related_posts.php:101 inc/helper.options.default.php:47 #: inc/related-posts-functions.php:155 msgid "No related posts." msgstr "Nessun articolo correlato." @@ -2084,20 +2104,20 @@ msgstr "Nessun risultato dalla API dataTXT." msgid "No results from OpenCalais service." msgstr "Nessun risultato dal servizio OpenCalais." -#: inc/class.admin.suggest.php:351 inc/class.admin.clickterms.php:269 +#: inc/class.admin.clickterms.php:269 inc/class.admin.suggest.php:351 msgid "No results from your WordPress database." msgstr "Nessun risultato dal tuo database di Wordpress." -#: inc/post-tags-functions.php:156 inc/class.client.post_tags.php:112 +#: inc/class.client.post_tags.php:112 inc/post-tags-functions.php:156 msgid "No tag for this post." msgstr "Nessun tag per questo articolo." -#: inc/helper.options.default.php:35 +#: inc/helper.options.default.php:36 msgid "No tags for this post." msgstr "Nessun tag per questo articolo." #: inc/class.client.tagcloud.php:66 inc/class.client.tagcloud.php:273 -#: inc/helper.options.default.php:57 +#: inc/helper.options.default.php:58 msgid "No tags." msgstr "Nessun tag." @@ -2144,11 +2164,11 @@ msgstr "" "Non sono disponibili termini per lo shortcode dell'articolo corrente. " "Aggiungi nuovo shortcode " -#: inc/terms-table.php:271 +#: inc/terms-table.php:277 msgid "No terms found." msgstr "Non è stato trovato alcun termine." -#: inc/class.admin.suggest.php:334 inc/class.admin.clickterms.php:221 +#: inc/class.admin.clickterms.php:221 inc/class.admin.suggest.php:334 msgid "No terms in your WordPress database." msgstr "Nessun termine nel tuo database di WordPress." @@ -2164,9 +2184,9 @@ msgstr "Non è stato specificato alcun termine valido!" msgid "Nonce failed verification" msgstr "Verifica nonce fallita" -#: inc/related-posts.php:333 inc/autoterms-table.php:356 -#: inc/autoterms-logs-table.php:428 inc/suggestterms-table.php:355 -#: inc/autolinks-table.php:356 +#: inc/autolinks-table.php:356 inc/autoterms-logs-table.php:428 +#: inc/autoterms-table.php:356 inc/related-posts.php:333 +#: inc/suggestterms-table.php:355 msgid "None" msgstr "Nessuno" @@ -2178,9 +2198,9 @@ msgstr "Non trovato" msgid "Not found" msgstr "Non trovato" -#: inc/suggestterms.php:94 inc/terms.php:194 inc/tag-clouds.php:95 -#: inc/autolinks.php:95 inc/related-posts.php:95 inc/post-tags.php:95 -#: inc/autoterms.php:105 inc/autoterms.php:112 inc/taxonomies.php:122 +#: inc/autolinks.php:94 inc/autoterms.php:105 inc/autoterms.php:112 +#: inc/post-tags.php:94 inc/related-posts.php:95 inc/suggestterms.php:94 +#: inc/tag-clouds.php:95 inc/taxonomies.php:122 inc/terms.php:194 msgid "Number of items per page" msgstr "Numero di elementi per pagina" @@ -2188,8 +2208,8 @@ msgstr "Numero di elementi per pagina" msgid "Object" msgstr "Oggetto" -#: inc/suggestterms.php:797 inc/tag-clouds.php:842 inc/autolinks.php:900 -#: inc/related-posts.php:875 inc/post-tags.php:719 inc/autoterms.php:1149 +#: inc/autolinks.php:993 inc/autoterms.php:1149 inc/post-tags.php:752 +#: inc/related-posts.php:875 inc/suggestterms.php:797 inc/tag-clouds.php:842 #: inc/taxonomies.php:1694 msgid "Okay" msgstr "Okay" @@ -2232,11 +2252,11 @@ msgstr "" "sito del servizio per ottenere una chiave da immettere nelle opzioni di " "TaxoPress." -#: inc/related-posts.php:290 inc/post-tags.php:291 inc/autoterms.php:412 +#: inc/autoterms.php:412 inc/post-tags.php:298 inc/related-posts.php:290 msgid "Options" msgstr "Opzioni" -#: inc/class.admin.php:566 +#: inc/class.admin.php:582 msgid "Options saved" msgstr "Opzioni salvate" @@ -2248,11 +2268,11 @@ msgstr "Ordina la selezione di tag nel database per:" msgid "Order by for display tags:" msgstr "Ordina i tag mostrati per:" -#: inc/helper.options.admin.php:111 +#: inc/helper.options.admin.php:45 msgid "Order by for tags display:" msgstr "Ordine la visualizzazione dei tag per:" -#: inc/helper.options.admin.php:88 +#: inc/helper.options.admin.php:22 msgid "Order by for tags selection:" msgstr "Ordina la selezione dei tag per:" @@ -2264,11 +2284,11 @@ msgstr "Ordina la selezione di tag nel database:" msgid "Order for display tags:" msgstr "Ordine dei tag mostrati:" -#: inc/helper.options.admin.php:123 +#: inc/helper.options.admin.php:57 msgid "Order tags display:" msgstr "Ordine di visualizzazione dei tag:" -#: inc/helper.options.admin.php:100 +#: inc/helper.options.admin.php:34 msgid "Order tags selection:" msgstr "Ordina la selezione dei tag:" @@ -2276,7 +2296,7 @@ msgstr "Ordina la selezione dei tag:" msgid "Ordering for choosing term from the database" msgstr "Ordinamento per la scelta del termine dal database" -#: inc/suggestterms.php:530 inc/class.admin.clickterms.php:92 +#: inc/class.admin.clickterms.php:92 inc/suggestterms.php:530 msgid "Ordering for choosing terms" msgstr "Ordinamento per la scelta dei termini" @@ -2336,7 +2356,7 @@ msgstr "Autorizzazione negata!" msgid "Permission denied." msgstr "Autorizzazione negata." -#: inc/tag-clouds.php:591 inc/class.widgets.php:318 +#: inc/class.widgets.php:318 inc/tag-clouds.php:591 msgid "Pixel" msgstr "Pixel" @@ -2360,8 +2380,8 @@ msgstr "Scegli una opzione per \"Stati del contenuto\"" msgid "Please choose an option for \"Sources\"" msgstr "Scegli una opzione per le \"Fonti\"" -#: inc/suggestterms.php:793 inc/tag-clouds.php:839 inc/autolinks.php:897 -#: inc/related-posts.php:872 inc/post-tags.php:716 inc/autoterms.php:1146 +#: inc/autolinks.php:990 inc/autoterms.php:1146 inc/post-tags.php:749 +#: inc/related-posts.php:872 inc/suggestterms.php:793 inc/tag-clouds.php:839 #: inc/taxonomies.php:1691 msgid "Please complete the following required fields to save your changes:" msgstr "" @@ -2385,7 +2405,7 @@ msgstr "Fornisci un nome di tassonomia" msgid "Please provide a taxonomy to delete" msgstr "Fornisci una tassonomia da eliminare" -#: inc/class.admin.php:421 +#: inc/class.admin.php:425 msgid "Please select a valid" msgstr "Seleziona uno valido" @@ -2423,11 +2443,11 @@ msgstr "Tag media popolari" msgid "Post" msgstr "Articolo" -#: inc/autolinks.php:410 inc/autoterms.php:503 inc/autolinks-table.php:372 +#: inc/autolinks-table.php:372 inc/autolinks.php:435 inc/autoterms.php:503 msgid "Post Content" msgstr "Contenuto dell'articolo" -#: inc/autolinks.php:419 inc/autoterms.php:511 inc/autolinks-table.php:374 +#: inc/autolinks-table.php:374 inc/autolinks.php:444 inc/autoterms.php:511 msgid "Post Content and Title" msgstr "Contenuto e titolo dell'articolo" @@ -2435,23 +2455,23 @@ msgstr "Contenuto e titolo dell'articolo" msgid "Post content is empty." msgstr "Il contenuto dell'articolo è vuoto." -#: inc/helper.options.admin.php:348 +#: inc/helper.options.admin.php:300 msgid "Post link format:" msgstr "Formato dei link negli articoli:" -#: inc/helper.options.admin.php:252 +#: inc/helper.options.admin.php:193 msgid "Post tag separator string:" msgstr "Stringa di separazione dei tag negli articoli:" -#: inc/class.admin.php:290 +#: inc/class.admin.php:293 msgid "Post tags" msgstr "Tag dell'articolo" -#: inc/post-tags.php:472 +#: inc/post-tags.php:495 msgid "Post term separator string:\t" msgstr "Stringa di separazione dei termini negli articoli:\t" -#: inc/autolinks.php:415 inc/autoterms.php:507 inc/autolinks-table.php:373 +#: inc/autolinks-table.php:373 inc/autolinks.php:440 inc/autoterms.php:507 msgid "Post Title" msgstr "Titolo dell'articolo" @@ -2459,27 +2479,27 @@ msgstr "Titolo dell'articolo" msgid "Post title" msgstr "Titolo dell'articolo" -#: inc/tag-clouds.php:349 inc/related-posts.php:403 -#: inc/related-posts-table.php:68 inc/tag-clouds-table.php:68 +#: inc/related-posts-table.php:68 inc/related-posts.php:403 +#: inc/tag-clouds-table.php:68 inc/tag-clouds.php:349 msgid "Post Type" msgstr "Tipi di contenuto" -#: inc/terms-table.php:192 inc/autoterms-logs-table.php:128 -#: inc/autoterms-logs-table.php:189 +#: inc/autoterms-logs-table.php:128 inc/autoterms-logs-table.php:189 +#: inc/terms-table.php:199 msgid "Post type" msgstr "Tipo di contenuto" -#: inc/suggestterms.php:400 inc/autolinks.php:287 inc/terms-table.php:115 -#: inc/class-taxonomies-table.php:70 inc/autoterms.php:559 -#: inc/taxonomies.php:345 +#: inc/autolinks.php:294 inc/autoterms.php:559 +#: inc/class-taxonomies-table.php:70 inc/suggestterms.php:400 +#: inc/taxonomies.php:345 inc/terms-table.php:115 msgid "Post Types" msgstr "Tipi di contenuto" -#: inc/class.admin.php:291 +#: inc/class.admin.php:294 msgid "Posts" msgstr "Articoli" -#: inc/autolinks-functions.php:154 inc/helper.options.default.php:27 +#: inc/autolinks-functions.php:160 inc/helper.options.default.php:28 msgid "Posts tagged with %s" msgstr "Articoli taggati con %s" @@ -2487,27 +2507,27 @@ msgstr "Articoli taggati con %s" msgid "Pourcent" msgstr "Percentuale" -#: inc/autolinks.php:686 +#: inc/autolinks.php:698 msgid "pre" msgstr "pre" -#: inc/autolinks.php:668 +#: inc/autolinks.php:676 msgid "Prevent Auto Links inside classes or IDs" msgstr "Impedisci gli auto link all'interno di classi o ID" -#: inc/autolinks.php:690 +#: inc/autolinks.php:702 msgid "Prevent Auto Links inside elements" msgstr "Impedisci gli auto link all'interno degli elementi" -#: inc/helper.options.admin.php:455 +#: inc/helper.options.admin.php:407 msgid "Priority on hook the_content" msgstr "Priorità nell'hook the_content" -#: inc/autolinks.php:746 +#: inc/autolinks.php:831 msgid "Priority on the_content and the_title hook" msgstr "Priorità negli hook the_content e the_title" -#: inc/terms-table.php:212 inc/taxonomies.php:196 +#: inc/taxonomies.php:196 inc/terms-table.php:219 msgid "Private Taxonomies" msgstr "Tassonomie private" @@ -2523,7 +2543,7 @@ msgstr "Pubblico" msgid "Public Queryable" msgstr "Consultabile pubblicamente" -#: inc/terms-table.php:211 inc/taxonomies.php:195 +#: inc/taxonomies.php:195 inc/terms-table.php:218 msgid "Public Taxonomies" msgstr "Tassonomie pubbliche" @@ -2535,22 +2555,22 @@ msgstr "Quantità …" msgid "Query Var" msgstr "Query var" -#: inc/terms-table.php:582 +#: inc/terms-table.php:611 msgid "Quick Edit" msgstr "Modifica rapida" #. %s: Taxonomy term name. -#: inc/terms-table.php:388 +#: inc/terms-table.php:393 msgid "Quick edit “%s” inline" msgstr "Modifica rapida “%s” in linea" -#: inc/terms-table.php:389 +#: inc/terms-table.php:394 msgid "Quick Edit" msgstr "Modifica rapida" -#: inc/suggestterms.php:495 inc/tag-clouds.php:437 inc/tag-clouds.php:472 -#: inc/related-posts.php:640 inc/class.admin.clickterms.php:76 -#: inc/class.widgets.php:246 +#: inc/class.admin.clickterms.php:76 inc/class.widgets.php:246 +#: inc/related-posts.php:640 inc/suggestterms.php:495 inc/tag-clouds.php:437 +#: inc/tag-clouds.php:472 msgid "Random" msgstr "Casuale" @@ -2574,9 +2594,9 @@ msgstr "Chiave di registrazione" msgid "Related Post" msgstr "Articoli correlati" -#: inc/related-posts.php:72 inc/related-posts.php:73 inc/related-posts.php:126 -#: inc/class.admin.php:786 inc/related-posts-table.php:15 -#: inc/helper.options.admin.php:27 +#: inc/class.admin.php:807 inc/functions.inc.php:374 +#: inc/related-posts-table.php:15 inc/related-posts.php:72 +#: inc/related-posts.php:73 inc/related-posts.php:126 msgid "Related Posts" msgstr "Articoli correlati" @@ -2588,7 +2608,7 @@ msgstr "Articoli correlati (TaxoPress)" msgid "Related Posts are added on " msgstr "Gli articoli correlati vengono aggiunti su " -#: inc/helper.options.admin.php:388 +#: inc/helper.options.admin.php:340 msgid "Related posts by terms" msgstr "Articoli correlati per termini" @@ -2608,7 +2628,7 @@ msgstr "Articoli correlati non trovati." msgid "Related Posts Order" msgstr "Ordine degli articoli correlati" -#: inc/helper.options.admin.php:332 +#: inc/helper.options.admin.php:284 msgid "Related Posts Order:" msgstr "Ordine degli articoli correlati:" @@ -2622,7 +2642,7 @@ msgstr "" msgid "Related Posts successfully deleted." msgstr "Gli articoli correlati sono stati eliminati con successo." -#: inc/terms-table.php:403 +#: inc/terms-table.php:408 msgid "Remove From All Posts" msgstr "Rimuovi da tutti gli articoli" @@ -2651,19 +2671,19 @@ msgid "Renamed term(s) «%1$s» to «%2$s»" msgstr "" "I termini «%1$s» sono stati rinominati in «%2$s»" -#: inc/post-tags.php:689 +#: inc/post-tags.php:722 msgid "Replaced by the RSS tag link" msgstr "Sostituito dal tag link RSS" -#: inc/post-tags.php:690 +#: inc/post-tags.php:723 msgid "Replaced by the tag ID" msgstr "Sostituito dal tag ID" -#: inc/post-tags.php:691 +#: inc/post-tags.php:724 msgid "Replaced by the tag’s name, formatted for attribute HTML" msgstr "Sostituito dal tag del nome, formattato come attributo HTML" -#: includes-core/TaxopressCoreAdmin.php:117 +#: includes-core/TaxopressCoreAdmin.php:122 msgid "Request Support" msgstr "Richiesta di assistenza" @@ -2695,12 +2715,12 @@ msgstr "Riscrivi gerarchicamente" msgid "Rewrite With Front" msgstr "Riscrivi con la parte anteriore" -#: inc/post-tags-table.php:345 inc/related-posts-table.php:385 -#: inc/autolinks-table.php:346 +#: inc/autolinks-table.php:346 inc/post-tags-table.php:345 +#: inc/related-posts-table.php:385 msgid "RSS feed" msgstr "RSS feed" -#: inc/autolinks.php:841 +#: inc/autolinks.php:933 msgid "Save Auto Links" msgstr "Salva auto link" @@ -2724,7 +2744,7 @@ msgstr "Salva tassonomia" msgid "Save Terms Display" msgstr "Salva visualizzazione termini" -#: inc/post-tags.php:642 +#: inc/post-tags.php:673 msgid "Save Terms for Current Post" msgstr "Salva i termini per l'articolo corrente" @@ -2732,7 +2752,7 @@ msgstr "Salva i termini per l'articolo corrente" msgid "Schedule" msgstr "Programmazione" -#: includes-core/TaxopressCoreAdmin.php:152 +#: includes-core/TaxopressCoreAdmin.php:154 msgid "Schedule Auto Terms for your content" msgstr "Programma i termini automatici per il tuo contenuto" @@ -2758,7 +2778,7 @@ msgstr "" "Testo del lettore di schermo per l'intestazione di paginazione nella " "schermata dell'elenco dei termini." -#: inc/autolinks.php:684 +#: inc/autolinks.php:696 msgid "script" msgstr "script" @@ -2798,9 +2818,9 @@ msgid "Search Related Posts" msgstr "Cerca articoli correlati" #. %s: search keywords -#: inc/suggestterms.php:138 inc/terms.php:232 inc/tag-clouds.php:136 -#: inc/autolinks.php:136 inc/related-posts.php:136 inc/post-tags.php:136 -#: inc/autoterms.php:193 inc/autoterms.php:248 inc/taxonomies.php:163 +#: inc/autolinks.php:134 inc/autoterms.php:193 inc/autoterms.php:248 +#: inc/post-tags.php:134 inc/related-posts.php:136 inc/suggestterms.php:138 +#: inc/tag-clouds.php:136 inc/taxonomies.php:163 inc/terms.php:232 msgid "Search results for “%s”" msgstr "Risultati della ricerca per “%s”" @@ -2812,11 +2832,11 @@ msgstr "Cerca termini suggeriti" msgid "Search Taxonomies" msgstr "Cerca tassonomie" -#: inc/class.admin.php:472 +#: inc/class.admin.php:477 msgid "Search TaxoPress Logs" msgstr "Cerca TaxoPress Logs" -#: inc/terms.php:246 +#: inc/terms.php:248 msgid "Search Terms" msgstr "Cerca termini" @@ -2824,7 +2844,7 @@ msgstr "Cerca termini" msgid "Search Terms Display" msgstr "Cerca visualizzazione dei termini" -#: inc/post-tags.php:149 +#: inc/post-tags.php:147 msgid "Search Terms for Current Post" msgstr "Cerca i termini per l'articolo corrente" @@ -2870,7 +2890,7 @@ msgstr "Separa gli elementi con delle virgole" msgid "Separate Media Tags with commas" msgstr "Separa i tag media con delle virgole" -#: inc/autolinks.php:670 +#: inc/autolinks.php:680 msgid "" "Separate multiple entries with a comma. For example: .notag, #main-header" msgstr "" @@ -2894,9 +2914,9 @@ msgstr "" #: inc/taxonomies.php:1520 msgid "" -"Sets a callback function name for the meta box display. Hierarchical " -"default: post_categories_meta_box, non-hierarchical default: " -"post_tags_meta_box. To remove the metabox completely, use \"false\"." +"Sets a callback function name for the meta box display. Hierarchical default:" +" post_categories_meta_box, non-hierarchical default: post_tags_meta_box. To " +"remove the metabox completely, use \"false\"." msgstr "" "Imposta il nome di una funzione di callback per la visualizzazione del meta " "box. Predefinizione gerarchica: post_categories_meta_box, predefinizione non " @@ -2907,14 +2927,14 @@ msgstr "" msgid "Sets a custom query_var slug for this taxonomy." msgstr "Imposta uno slug query_var personalizzato per questa tassonomia." -#: inc/class.admin.php:523 inc/autoterms-logs-table.php:164 -#: inc/autoterms-logs-table.php:195 +#: inc/autoterms-logs-table.php:164 inc/autoterms-logs-table.php:195 +#: inc/class.admin.php:529 msgid "Settings" msgstr "Impostazioni" -#: inc/autolinks-functions.php:252 inc/post-tags-functions.php:189 +#: inc/autolinks-functions.php:257 inc/autoterms-functions.php:333 +#: inc/post-tags-functions.php:189 inc/related-posts-functions.php:230 #: inc/suggestterms-functions.php:246 inc/tag-clouds-functions.php:238 -#: inc/related-posts-functions.php:230 inc/autoterms-functions.php:333 msgid "Settings updated successfully." msgstr "Impostazioni aggiornate correttamente." @@ -2927,7 +2947,7 @@ msgstr "Shortcode" msgid "Shortcode entry successfully deleted." msgstr "La voce dello shortcode è stata eliminata con successo." -#: inc/tag-clouds.php:779 inc/related-posts.php:814 inc/post-tags.php:659 +#: inc/post-tags.php:691 inc/related-posts.php:814 inc/tag-clouds.php:779 msgid "Shortcode: " msgstr "Shortcode: " @@ -2956,7 +2976,7 @@ msgstr "" msgid "Show Existing Terms" msgstr "Mostra i termini esistenti" -#: inc/suggestterms.php:459 inc/class.admin.clickterms.php:173 +#: inc/class.admin.clickterms.php:173 inc/suggestterms.php:459 msgid "Show existing terms" msgstr "Mostra i termini esistenti" @@ -2984,8 +3004,8 @@ msgstr "Mostrare in API REST" msgid "Show user interface" msgstr "Mostra l'interfaccia utente" -#: inc/post-tags-table.php:344 inc/related-posts-table.php:384 -#: inc/autolinks-table.php:345 +#: inc/autolinks-table.php:345 inc/post-tags-table.php:344 +#: inc/related-posts-table.php:384 msgid "Single post display" msgstr "Visualizzazione articolo singolo" @@ -2993,8 +3013,8 @@ msgstr "Visualizzazione articolo singolo" msgid "Singular Label" msgstr "Etichetta singolare" -#: inc/tag-clouds.php:435 inc/terms-table.php:113 inc/terms-table.php:590 -#: inc/class-tag-table.php:42 inc/class.widgets.php:240 inc/taxonomies.php:376 +#: inc/class-tag-table.php:42 inc/class.widgets.php:240 inc/tag-clouds.php:435 +#: inc/taxonomies.php:376 inc/terms-table.php:113 inc/terms-table.php:619 msgid "Slug" msgstr "Slug" @@ -3006,8 +3026,8 @@ msgstr "Questo slug esiste già" msgid "Slug has changed" msgstr "Lo slug è stato modificato" -#: inc/autoterms-table.php:69 inc/autoterms-logs-table.php:146 -#: inc/autoterms-logs-table.php:191 +#: inc/autoterms-logs-table.php:146 inc/autoterms-logs-table.php:191 +#: inc/autoterms-table.php:69 msgid "Source" msgstr "Sorgente" @@ -3031,7 +3051,7 @@ msgstr "Messaggio di stato" msgid "Stop words" msgstr "Ferma le parole" -#: inc/autolinks.php:685 +#: inc/autolinks.php:697 msgid "style" msgstr "stile" @@ -3055,8 +3075,8 @@ msgstr "Suggerisci termine" msgid "Suggest Term Post type" msgstr "Suggerisci un termine per il tipo di contenuto" +#: inc/functions.inc.php:392 inc/suggestterms-table.php:15 #: inc/suggestterms.php:71 inc/suggestterms.php:72 inc/suggestterms.php:125 -#: inc/helper.options.admin.php:48 inc/suggestterms-table.php:15 msgid "Suggest Terms" msgstr "Termini suggeriti" @@ -3080,6 +3100,10 @@ msgstr "termini suggeriti" msgid "Support hashtags symbols # in Auto Terms." msgstr "Supporta i simboli hashtag # nei termini automatici." +#: inc/autolinks.php:315 inc/terms-table.php:116 +msgid "Synonyms" +msgstr "" + #: inc/class-tag-table.php:12 msgid "Tag Cloud" msgstr "Nuvola di tag" @@ -3092,12 +3116,12 @@ msgstr "Nuvola di tag" msgid "Tag Cloud (TaxoPress Legacy)" msgstr "Nuvola di tag (TaxoPress Legacy)" -#: inc/helper.options.admin.php:215 +#: inc/helper.options.admin.php:153 msgid "Tag cloud Shortcode" msgstr "Nuvola di tag shortcode" -#: inc/class.widgets.php:369 inc/helper.options.admin.php:145 -#: inc/helper.options.admin.php:274 +#: inc/class.widgets.php:369 inc/helper.options.admin.php:79 +#: inc/helper.options.admin.php:222 msgid "Tag link format:" msgstr "Formato dei link ai tag:" @@ -3109,16 +3133,16 @@ msgstr "Tag" msgid "Tags Cloud" msgstr "Nuvola di tag" -#: inc/helper.options.admin.php:134 +#: inc/helper.options.admin.php:68 msgid "Tags cloud type format:" msgstr "Tipo di formato per la nuvola di tag:" -#: inc/class.admin.php:784 +#: inc/class.admin.php:805 msgid "Tags for Current Post" msgstr "Tag per l'articolo corrente" -#: inc/helper.options.default.php:33 inc/post-tags-functions.php:152 -#: inc/class.client.post_tags.php:106 +#: inc/class.client.post_tags.php:106 inc/helper.options.default.php:34 +#: inc/post-tags-functions.php:152 msgid "Tags: " msgstr "Tag: " @@ -3126,19 +3150,19 @@ msgstr "Tag: " msgid "Target content" msgstr "Contenuto dell'obiettivo" -#: inc/class-taxonomies-table.php:15 inc/helper.options.admin.php:6 +#: inc/class-taxonomies-table.php:15 inc/functions.inc.php:356 #: inc/taxonomies.php:99 inc/taxonomies.php:100 inc/taxonomies.php:153 msgid "Taxonomies" msgstr "Tassonomie" -#: inc/tag-clouds.php:377 inc/autolinks.php:367 inc/related-posts.php:440 -#: inc/post-tags.php:363 inc/autoterms-table.php:67 inc/terms-table.php:114 -#: inc/terms-table.php:201 inc/post-tags-table.php:67 -#: inc/related-posts-table.php:67 inc/class-taxonomies-table.php:14 +#: inc/autolinks-table.php:67 inc/autolinks.php:388 #: inc/autoterms-logs-table.php:137 inc/autoterms-logs-table.php:190 -#: inc/class.admin.clickterms.php:55 inc/autoterms.php:493 -#: inc/tag-clouds-table.php:67 inc/suggestterms-table.php:67 -#: inc/autolinks-table.php:67 +#: inc/autoterms-table.php:67 inc/autoterms.php:493 +#: inc/class-taxonomies-table.php:14 inc/class.admin.clickterms.php:55 +#: inc/post-tags-table.php:67 inc/post-tags.php:373 +#: inc/related-posts-table.php:67 inc/related-posts.php:440 +#: inc/suggestterms-table.php:67 inc/tag-clouds-table.php:67 +#: inc/tag-clouds.php:377 inc/terms-table.php:114 inc/terms-table.php:208 msgid "Taxonomy" msgstr "Tassonomia" @@ -3162,14 +3186,14 @@ msgstr "Slug tassonomia" msgid "Taxonomy slug cannot be numbers only." msgstr "Lo slug della tassonomia non può essere soltanto un numero." -#: inc/helper.options.admin.php:306 +#: inc/helper.options.admin.php:256 msgid "Taxonomy:" msgstr "Tassonomia:" #. Name of the plugin #. Author of the plugin -#: inc/class.admin.php:510 inc/class.admin.post.php:38 -#: inc/class-taxonomies-table.php:353 +#: inc/class-taxonomies-table.php:353 inc/class.admin.php:516 +#: inc/class.admin.post.php:38 msgid "TaxoPress" msgstr "TaxoPress" @@ -3181,20 +3205,20 @@ msgstr "" "TaxoPress ti permette di creare e gestire tag, categorie e tutti i termini " "della tassonomia di WordPress." -#: inc/autolinks.php:869 inc/autoterms.php:1118 +#: inc/autolinks.php:962 inc/autoterms.php:1118 msgid "TaxoPress and Languages" msgstr "TaxoPress e le lingue" -#: inc/class.admin.php:470 inc/class.admin.php:471 inc/class.admin.php:473 -#: inc/class.admin.php:478 +#: inc/class.admin.php:475 inc/class.admin.php:476 inc/class.admin.php:478 +#: inc/class.admin.php:483 msgid "TaxoPress Logs" msgstr "TaxoPress Logs" -#: inc/class.admin.php:572 +#: inc/class.admin.php:588 msgid "TaxoPress options resetted to default options!" msgstr "Le opzioni di TaxoPress sono state ripristinate ai valori predefiniti!" -#: includes-core/TaxopressCoreAdmin.php:203 +#: includes-core/TaxopressCoreAdmin.php:207 msgid "" "TaxoPress Pro allows you to change how Auto Terms analyzes your posts. You " "will need to know how to write Regular Expressions to use this feature." @@ -3203,7 +3227,7 @@ msgstr "" "automatici\" analizza i tuoi articoli. Per utilizzare questa caratteristica " "è però necessario saper scrivere le espressioni regolari." -#: includes-core/TaxopressCoreAdmin.php:180 +#: includes-core/TaxopressCoreAdmin.php:183 msgid "" "TaxoPress Pro allows you to generate new terms for your content using the " "Dandelion and Open Calais services. These services can analyze your content " @@ -3213,7 +3237,7 @@ msgstr "" "utilizzando i servizi Dandelion e Open Calais. Questi servizi possono " "analizzare il tuo contenuto e aggiungere nuovi termini." -#: includes-core/TaxopressCoreAdmin.php:157 +#: includes-core/TaxopressCoreAdmin.php:159 msgid "" "TaxoPress Pro allows you to schedule the \"Auto Terms to existing content\" " "feature. This is helpful if you regularly import content into WordPress. " @@ -3246,7 +3270,7 @@ msgstr "" "questo contenuto. Potrebbe non funzionare con tutti i tipi di contenuto e " "layout." -#: inc/post-tags.php:415 +#: inc/post-tags.php:432 msgid "" "TaxoPress will attempt to automatically display terms in this content. It " "may not be successful for all post types and layouts." @@ -3254,7 +3278,7 @@ msgstr "" "TaxoPress tenterà di visualizzare automaticamente i termini in questo " "contenuto. Potrebbe non funzionare con tutti i tipi di contenuto e layout." -#: inc/autolinks.php:543 +#: inc/autolinks.php:526 msgid "" "TaxoPress will attempt to automatically insert Auto Links in this content. " "It may not be successful for all post types and layouts." @@ -3270,7 +3294,7 @@ msgstr "TaxoPress: Gestisci i termini" msgid "TaxoPress: Mass Edit Terms" msgstr "TaxoPress: Modifica in blocco dei termini" -#: inc/class.admin.php:509 inc/class.admin.php:522 +#: inc/class.admin.php:515 inc/class.admin.php:528 #: views/admin/page-settings.php:3 msgid "TaxoPress: Options" msgstr "TaxoPress: Opzioni" @@ -3283,7 +3307,7 @@ msgstr "Template" msgid "Term" msgstr "Termine" -#: inc/terms-table.php:248 inc/terms-functions.php:81 +#: inc/terms-functions.php:81 inc/terms-table.php:255 msgid "Term deleted successfully." msgstr "Termine eliminato correttamente." @@ -3295,21 +3319,21 @@ msgstr "Classe div della visualizzazione dei termini" msgid "Term group" msgstr "Gruppo di termini" -#: inc/tag-clouds.php:686 inc/autolinks.php:736 inc/related-posts.php:717 -#: inc/post-tags.php:561 +#: inc/autolinks.php:821 inc/post-tags.php:593 inc/related-posts.php:717 +#: inc/tag-clouds.php:686 msgid "Term link class" msgstr "Classe dei link deii termini" -#: inc/tag-clouds.php:699 inc/related-posts.php:730 inc/post-tags.php:574 +#: inc/post-tags.php:606 inc/related-posts.php:730 inc/tag-clouds.php:699 msgid "Term link format" msgstr "Formato dei link ai termini" -#: inc/terms-table.php:585 +#: inc/terms-table.php:614 msgctxt "term name" msgid "Name" msgstr "Nome" -#: inc/terms-table.php:594 +#: inc/terms-table.php:623 msgctxt "term name" msgid "Taxonomy" msgstr "Tassonomia" @@ -3338,7 +3362,7 @@ msgstr "Termini da unire:" msgid "Term(s) to rename:" msgstr "Termini da rinominare:" -#: inc/terms.php:171 inc/terms.php:172 inc/terms.php:223 inc/terms-table.php:15 +#: inc/terms-table.php:15 inc/terms.php:171 inc/terms.php:172 inc/terms.php:223 msgid "Terms" msgstr "Termini" @@ -3354,13 +3378,13 @@ msgstr "Termini aggiunti" msgid "Terms added successfully" msgstr "Termine aggiunto con successo" -#: inc/terms-table.php:245 +#: inc/terms-table.php:252 msgid "Terms deleted successfully." msgstr "Termini eliminati correttamente." -#: inc/tag-clouds.php:72 inc/tag-clouds.php:73 inc/tag-clouds.php:126 -#: inc/tag-clouds-table.php:14 inc/tag-clouds-table.php:15 -#: inc/helper.options.admin.php:13 +#: inc/functions.inc.php:362 inc/tag-clouds-table.php:14 +#: inc/tag-clouds-table.php:15 inc/tag-clouds.php:72 inc/tag-clouds.php:73 +#: inc/tag-clouds.php:126 msgid "Terms Display" msgstr "Visualizzazione dei termini" @@ -3380,9 +3404,9 @@ msgstr "Formato visualizzazione dei termini" msgid "Terms Display successfully deleted." msgstr "Le visualizzazioni dei termini sono state eliminate con successo." -#: inc/post-tags.php:72 inc/post-tags.php:126 inc/post-tags.php:679 -#: inc/post-tags-table.php:14 inc/post-tags-table.php:15 -#: inc/helper.options.admin.php:20 +#: inc/functions.inc.php:368 inc/post-tags-table.php:14 +#: inc/post-tags-table.php:15 inc/post-tags.php:71 inc/post-tags.php:125 +#: inc/post-tags.php:712 msgid "Terms for Current Post" msgstr "Termini per l'articolo corrente" @@ -3394,11 +3418,11 @@ msgstr "Termini per l'articolo corrente (TaxoPress)" msgid "Terms for Current Post are added on " msgstr "Termini per l'articolo corrente sono stati aggiunti in " -#: inc/post-tags.php:550 +#: inc/post-tags.php:582 msgid "Terms for Current Post div class" msgstr "Classe div per i termini per l'articolo corrente" -#: inc/autolinks.php:691 +#: inc/autolinks.php:705 msgid "Terms inside these html tags will not be auto link." msgstr "" "I termini contenuti in questi tag html non saranno trasformati in auto link." @@ -3409,31 +3433,31 @@ msgstr "" "Se non vengono specificati i \"Termini da abbinare\", i termini verranno " "aggiunti a tutti %s." -#: inc/helper.options.admin.php:258 +#: inc/helper.options.admin.php:203 msgid "Text to display after tags list:" msgstr "Testo da mostrare dopo la lista dei tag:" -#: inc/post-tags.php:494 +#: inc/post-tags.php:521 msgid "Text to display after terms list" msgstr "Testo da visualizzare dopo l'elenco dei termini" -#: inc/helper.options.admin.php:255 +#: inc/helper.options.admin.php:198 msgid "Text to display before tags list:" msgstr "Testo da mostrare prima della lista dei tag:" -#: inc/post-tags.php:483 +#: inc/post-tags.php:508 msgid "Text to display before terms list" msgstr "Testo da visualizzare prima dell'elenco dei termini" -#: inc/helper.options.admin.php:280 +#: inc/helper.options.admin.php:229 msgid "Text to display if no tags found:" msgstr "Testo da mostrare se non viene trovato alcun tag:" -#: inc/post-tags.php:505 +#: inc/post-tags.php:534 msgid "Text to display if no terms found" msgstr "Testo da visualizzare quando non si trovano termini" -#: inc/helper.options.admin.php:484 +#: inc/helper.options.admin.php:436 msgid "Text to display into title attribute for links:" msgstr "Testo da visualizzare nell'attributo title dei link:" @@ -3441,7 +3465,7 @@ msgstr "Testo da visualizzare nell'attributo title dei link:" msgid "Text to show when there is no related post" msgstr "Inserisci il testo da mostrare quando non ci sono articoli correlati" -#: inc/class.admin.php:650 +#: inc/class.admin.php:669 msgid "Thanks for using TaxoPress | %1sTaxoPress.com%2s | Version %3s" msgstr "Grazie per utilizzare TaxoPress | %1sTaxoPress.com%2s | Versione %3s" @@ -3454,7 +3478,7 @@ msgstr "Il plugin %s attivo non è compatibile con la tua versione di PHP." msgid "The base slug that this taxonomy will use in the REST API." msgstr "Lo slug di base che questa tassonomia utilizzerà nell'API REST." -#: inc/helper.options.admin.php:180 +#: inc/helper.options.admin.php:114 msgid "" "The colours are hexadecimal colours, and need to have the full six digits " "(#eee is the shorthand version of #eeeeee)." @@ -3474,7 +3498,7 @@ msgstr "Il colore del font del termine" msgid "The font size for the term" msgstr "Le dimensioni del font del termine" -#: inc/helper.options.admin.php:202 +#: inc/helper.options.admin.php:140 msgid "" "The font size units option determines the units that the two font sizes use." msgstr "" @@ -3497,7 +3521,7 @@ msgstr "" "Il nome di una classe Rest Controller personalizzata, invece di " "WP_REST_Terms_Controller." -#: inc/post-tags.php:687 +#: inc/post-tags.php:720 msgid "The name of the tag" msgstr "Nome del tag" @@ -3509,7 +3533,7 @@ msgstr "Il nome del termine" msgid "The name of the term with any HTML stripped out" msgstr "Il nome del termine ripulito del codice HTML" -#: inc/autolinks.php:776 +#: inc/autolinks.php:867 msgid "" "The new Auto Links engine uses the DOMDocument PHP class and may offer " "better performance. If your server does not support this functionality, " @@ -3535,7 +3559,7 @@ msgstr "Il numero di volte che il termine è stato usato" msgid "The post excerpt" msgstr "Il titolo del riassunto" -#: inc/related-posts.php:130 inc/helper.options.admin.php:30 +#: inc/functions.inc.php:375 inc/related-posts.php:130 msgid "" "The Related Posts feature works by checking for shared taxonomy terms. If " "your post has the terms “WordPress” and “Website”, then Related Posts will " @@ -3576,13 +3600,13 @@ msgstr "" msgid "The title of the post" msgstr "Il titolo dell'articolo" -#: inc/helper.options.admin.php:191 +#: inc/helper.options.admin.php:127 msgid "The two font sizes are the size of the largest and smallest tags." msgstr "" "Le dimensioni dei due font corrispondono alle dimensioni del tag più grande " "e più piccolo." -#: inc/helper.options.admin.php:199 +#: inc/helper.options.admin.php:137 msgid "The units to display the font sizes with, on tag clouds:" msgstr "L'unità di misura per visualizzare i font nelle nuvole di tag:" @@ -3590,7 +3614,7 @@ msgstr "L'unità di misura per visualizzare i font nelle nuvole di tag:" msgid "The URL of the post" msgstr "URL dell'articolo" -#: inc/post-tags.php:686 +#: inc/post-tags.php:719 msgid "The URL of the tag" msgstr "URL del tag" @@ -3623,7 +3647,7 @@ msgstr "Non c'è alcun riassunto perché l'articolo è protetto." msgid "There's no content to scan." msgstr "Nessun contenuto da ricercare." -#: inc/helper.options.admin.php:301 +#: inc/helper.options.admin.php:251 msgid "" "These settings are no longer being updated. Please use the \"Related Posts\" " "screen instead." @@ -3631,7 +3655,7 @@ msgstr "" "Queste impostazioni non vengono più aggiornate. Usa invece la schermata " "\"Articoli correlati\"." -#: inc/helper.options.admin.php:78 +#: inc/helper.options.admin.php:12 msgid "" "These settings are no longer being updated. Please use the \"Terms Display\" " "screen instead." @@ -3639,7 +3663,7 @@ msgstr "" "Queste impostazioni non vengono più aggiornate. Usa invece la schermata " "\"Visualizzazione termini\"." -#: inc/helper.options.admin.php:230 +#: inc/helper.options.admin.php:168 msgid "" "These settings are no longer being updated. Please use the \"Terms for " "Current Post\" screen instead." @@ -3647,7 +3671,7 @@ msgstr "" "Queste impostazioni non vengono più aggiornate. Usa invece la schermata " "\"Termini per l'articolo corrente\"." -#: inc/class.admin.php:330 +#: inc/class.admin.php:333 msgid "This custom post type not have taxonomies." msgstr "Questo tipo di contenuto personalizzato non ha una tassonomia." @@ -3668,7 +3692,7 @@ msgstr "" "Ciò consente di saltare gli articoli che sono già stati analizzati dalla " "funzionalità \"Contenuto esistente\"." -#: inc/post-tags.php:130 inc/helper.options.admin.php:23 +#: inc/functions.inc.php:369 inc/post-tags.php:128 msgid "" "This feature allows you create a customizable display of all the terms " "assigned to the current post." @@ -3676,7 +3700,7 @@ msgstr "" "Questa caratteristica ti permette di creare una visualizzazione " "personalizzabile di tutti i termini assegnati all'articolo corrente." -#: inc/tag-clouds.php:130 inc/helper.options.admin.php:16 +#: inc/functions.inc.php:363 inc/tag-clouds.php:130 msgid "" "This feature allows you to create a customizable display of all the terms in " "one taxonomy." @@ -3684,7 +3708,7 @@ msgstr "" "Questa caratteristica ti permette di creare una visualizzazione " "personalizzabile di tutti i termini di una tassonomia." -#: inc/helper.options.admin.php:9 inc/taxonomies.php:157 +#: inc/functions.inc.php:357 inc/taxonomies.php:157 msgid "" "This feature allows you to create new taxonomies and edit all the settings " "for each taxonomy." @@ -3692,14 +3716,14 @@ msgstr "" "Questa caratteristica ti permette di creare nuove tassonomie e modificare le " "impostazioni di ciascuna tassonomia." -#: inc/helper.options.admin.php:391 +#: inc/helper.options.admin.php:343 msgid "" "This feature allows you to display related posts based on terms relation." msgstr "" "Questa funzionalità ti permette di visualizzare gli articoli correlati in " "base alla relazione dei termini." -#: inc/helper.options.admin.php:58 +#: inc/functions.inc.php:399 msgid "" "This feature allows you to edit the terms of any taxonomy for multiple posts " "at the same time." @@ -3707,7 +3731,7 @@ msgstr "" "Questa funzionalità consente di modificare i termini di qualsiasi tassonomia " "per molti articoli contemporaneamente." -#: inc/helper.options.admin.php:65 +#: inc/functions.inc.php:405 msgid "" "This feature allows you to edit, merge, delete and add terms for any " "taxonomy." @@ -3720,7 +3744,7 @@ msgid "This feature allows you to remove rarely used terms." msgstr "" "Questa funzionalità ti permette di eliminare i termini usati raramente." -#: inc/suggestterms.php:130 inc/helper.options.admin.php:51 +#: inc/functions.inc.php:393 inc/suggestterms.php:130 msgid "" "This feature helps when you're writing content. \"Suggest Terms\" can show a " "metabox where you can browse all your existing terms. \"Suggest Terms\" can " @@ -3739,7 +3763,7 @@ msgstr "" "Questa funzione ti consente di aggiungere uno o più termini nuovi a tutti i " "%s che corrispondono a uno dei termini indicati." -#: inc/class.admin.php:617 +#: inc/class.admin.php:634 msgid "This feature requires at least 1 tag to work. Begin by adding tags!" msgstr "" "Questa caratteristica richiede almeno 1 tag per funzionare. Inizia ad " @@ -3760,7 +3784,7 @@ msgstr "" "Questa caratteristica mostra una metabox dove puoi scorrere tutti i termini " "esistenti." -#: inc/class.admin.php:619 +#: inc/class.admin.php:636 msgid "" "This feature works only with activated JavaScript. Activate it in your Web " "browser so you can!" @@ -3801,7 +3825,7 @@ msgstr "" msgid "this page." msgstr "questa pagina." -#: inc/tag-clouds.php:808 inc/post-tags.php:688 +#: inc/post-tags.php:721 inc/tag-clouds.php:808 msgid "This provides rel tag markup" msgstr "Questo fornisce il markup dei tag rel" @@ -3811,13 +3835,17 @@ msgstr "" "Questa schermata ti permette di cercare e modificare tutti i termini del tuo " "sito." +#: inc/dashboard.php:91 +msgid "This screen allows you to enable or disable TaxoPress features." +msgstr "" + #: inc/autoterms.php:993 msgid "This setting allows you to add Auto Terms only to recent content." msgstr "" "Questa impostazione ti consente di aggiungere termini automatici soltanto al " "tuo contenuto recente." -#: inc/autolinks.php:610 +#: inc/autolinks.php:605 msgid "" "This setting determines the maximum number of Auto Links for each term in " "one post." @@ -3825,12 +3853,12 @@ msgstr "" "Questo parametro imposta il numero massimo di auto link per ogni termine in " "un articolo." -#: inc/autolinks.php:597 +#: inc/autolinks.php:588 msgid "This setting determines the maximum number of Auto Links in one post." msgstr "" "Questo parametro imposta il numero massimo di auto link in un articolo." -#: inc/helper.options.admin.php:426 +#: inc/helper.options.admin.php:378 msgid "" "This setting determines the maximum number of links created by article for " "the same tag. Default: 1." @@ -3838,7 +3866,7 @@ msgstr "" "Questo parametro imposta il numero massimo di link creati per articolo dallo " "stesso tag. Predefinito: 1." -#: inc/helper.options.admin.php:418 +#: inc/helper.options.admin.php:370 msgid "" "This setting determines the maximum number of links created by article. " "Default: 10." @@ -3846,7 +3874,7 @@ msgstr "" "Questo parametro imposta il numero massimo di link creati in ogni articolo. " "Predefinito: 10." -#: inc/helper.options.admin.php:410 +#: inc/helper.options.admin.php:362 msgid "" "This setting helps prevent rarely used terms from being used by Auto Links. " "Default: 1." @@ -3874,12 +3902,11 @@ msgstr "" "Questo aggiungerà i termini esistenti dalla tassonomia selezionata nella " "scheda \"Generale\"." -#: inc/suggestterms.php:316 inc/tag-clouds.php:316 inc/autolinks.php:320 -#: inc/related-posts.php:313 inc/post-tags.php:314 inc/autoterms-table.php:66 -#: inc/terms-table.php:112 inc/post-tags-table.php:66 -#: inc/related-posts-table.php:66 inc/autoterms.php:445 -#: inc/tag-clouds-table.php:66 inc/suggestterms-table.php:66 -#: inc/autolinks-table.php:66 +#: inc/autolinks-table.php:66 inc/autolinks.php:341 inc/autoterms-table.php:66 +#: inc/autoterms.php:445 inc/post-tags-table.php:66 inc/post-tags.php:324 +#: inc/related-posts-table.php:66 inc/related-posts.php:313 +#: inc/suggestterms-table.php:66 inc/suggestterms.php:316 +#: inc/tag-clouds-table.php:66 inc/tag-clouds.php:316 inc/terms-table.php:112 msgid "Title" msgstr "Titolo" @@ -3891,14 +3918,14 @@ msgstr "Header del titolo" msgid "Title:" msgstr "Titolo:" -#: inc/autolinks.php:584 +#: inc/autolinks.php:571 msgid "" "To be included in Auto Links, a term must be used at least this many times." msgstr "" "Per essere incluso tra gli auto link, un termine deve essere utilizzato " "almeno questo numero di volte." -#: inc/autolinks.php:267 +#: inc/autolinks.php:269 msgid "To create more Auto Links, please upgrade to TaxoPress Pro." msgstr "Per creare più auto link, puoi aggiornare a TaxoPress Pro." @@ -3925,14 +3952,14 @@ msgstr "" "Per creare più termini per l'articolo corrente, puoi aggiornare a TaxoPress " "Pro." +#: inc/autolinks.php:753 inc/autolinks.php:786 inc/autolinks.php:851 +#: inc/autoterms.php:605 inc/autoterms.php:618 inc/autoterms.php:650 +#: inc/autoterms.php:663 inc/autoterms.php:694 inc/autoterms.php:751 +#: inc/autoterms.php:776 inc/autoterms.php:801 inc/autoterms.php:876 +#: inc/post-tags.php:551 inc/related-posts.php:463 inc/related-posts.php:676 #: inc/suggestterms.php:449 inc/suggestterms.php:559 inc/suggestterms.php:574 #: inc/suggestterms.php:603 inc/suggestterms.php:661 inc/tag-clouds.php:521 -#: inc/tag-clouds.php:544 inc/tag-clouds.php:616 inc/autolinks.php:457 -#: inc/autolinks.php:484 inc/autolinks.php:762 inc/related-posts.php:463 -#: inc/related-posts.php:676 inc/post-tags.php:520 inc/autoterms.php:605 -#: inc/autoterms.php:618 inc/autoterms.php:650 inc/autoterms.php:663 -#: inc/autoterms.php:694 inc/autoterms.php:751 inc/autoterms.php:776 -#: inc/autoterms.php:801 inc/autoterms.php:876 inc/taxonomies.php:497 +#: inc/tag-clouds.php:544 inc/tag-clouds.php:616 inc/taxonomies.php:497 #: inc/taxonomies.php:616 inc/taxonomies.php:630 inc/taxonomies.php:771 #: inc/taxonomies.php:807 inc/taxonomies.php:833 inc/taxonomies.php:867 #: inc/taxonomies.php:891 inc/taxonomies.php:915 inc/taxonomies.php:941 @@ -3941,7 +3968,7 @@ msgstr "" msgid "True" msgstr "Vero" -#: inc/helper.options.admin.php:476 +#: inc/helper.options.admin.php:428 msgid "Try new engine replacement ?" msgstr "Vuoi provare il nuovo motore alternativo?" @@ -3953,31 +3980,31 @@ msgstr "Unità di misura del font" msgid "Unit font size:" msgstr "Unità di misura del font:" -#: includes-core/TaxopressCoreAdmin.php:94 +#: includes-core/TaxopressCoreAdmin.php:99 msgid "Unlimited “Auto Links”" msgstr "\"Link automatici\" illimitati" -#: includes-core/TaxopressCoreAdmin.php:95 +#: includes-core/TaxopressCoreAdmin.php:100 msgid "Unlimited “Auto Terms”" msgstr "\"Termini automatici\" illimitati" -#: includes-core/TaxopressCoreAdmin.php:93 +#: includes-core/TaxopressCoreAdmin.php:98 msgid "Unlimited “Related Posts”" msgstr "\"Articoli correlati\" illimitati" -#: includes-core/TaxopressCoreAdmin.php:96 +#: includes-core/TaxopressCoreAdmin.php:101 msgid "Unlimited “Suggest Terms”" msgstr "\"Termini suggeriti\" illimitati" -#: includes-core/TaxopressCoreAdmin.php:91 +#: includes-core/TaxopressCoreAdmin.php:96 msgid "Unlimited “Term Display”" msgstr "\"Visualizzazione termini\" illimitata" -#: includes-core/TaxopressCoreAdmin.php:92 +#: includes-core/TaxopressCoreAdmin.php:97 msgid "Unlimited “Terms for Current Posts”" msgstr "\"Termini per l'articolo corrente\" illimitati" -#: inc/terms-table.php:610 inc/autoterms-logs-table.php:550 +#: inc/autoterms-logs-table.php:550 inc/terms-table.php:639 msgid "Update" msgstr "Aggiorna" @@ -4006,20 +4033,20 @@ msgstr "Aggiorna il nome del tag media" msgid "Update options »" msgstr "Aggiorna opzioni »" -#: inc/class.admin.php:475 +#: inc/class.admin.php:480 msgid "Update TaxoPress Logs" msgstr "Aggiorna TaxoPress Logs" -#: inc/suggestterms.php:717 inc/tag-clouds.php:731 inc/autolinks.php:807 -#: inc/related-posts.php:763 inc/post-tags.php:608 inc/autoterms.php:1056 -#: includes-core/TaxopressCoreAdmin.php:103 -#: includes-core/TaxopressCoreAdmin.php:159 -#: includes-core/TaxopressCoreAdmin.php:182 -#: includes-core/TaxopressCoreAdmin.php:205 +#: inc/autolinks.php:899 inc/autoterms.php:1056 inc/post-tags.php:639 +#: inc/related-posts.php:763 inc/suggestterms.php:717 inc/tag-clouds.php:731 +#: includes-core/TaxopressCoreAdmin.php:108 +#: includes-core/TaxopressCoreAdmin.php:161 +#: includes-core/TaxopressCoreAdmin.php:185 +#: includes-core/TaxopressCoreAdmin.php:209 msgid "Upgrade to Pro" msgstr "Aggiorna a Pro" -#: includes-core/TaxopressCoreAdmin.php:83 +#: includes-core/TaxopressCoreAdmin.php:88 msgid "Upgrade to TaxoPress Pro" msgstr "Aggiorna a TaxoPress Pro" @@ -4036,15 +4063,15 @@ msgstr "" msgid "Use auto color cloud:" msgstr "Usa colori automatici per la nuvola:" -#: inc/autolinks.php:383 +#: inc/autolinks.php:406 msgid "Use case of term" msgstr "Usa il formato del termine" -#: inc/autolinks.php:377 +#: inc/autolinks.php:398 msgid "Use case of text in content" msgstr "Usa il formato del testo nel contenuto" -#: inc/autolinks.php:774 +#: inc/autolinks.php:863 msgid "Use new Auto Links engine" msgstr "Usa il nuovo motore di auto link" @@ -4052,7 +4079,7 @@ msgstr "Usa il nuovo motore di auto link" msgid "Use only some terms in the selected taxonomy." msgstr "Usa solo alcuni termini nella tassonomia selezionata." -#: includes-core/TaxopressCoreAdmin.php:198 +#: includes-core/TaxopressCoreAdmin.php:202 msgid "Use Regular Expressions to modify Auto Terms" msgstr "Usa le espressioni regolari per modificare i termini automatici" @@ -4095,7 +4122,7 @@ msgstr "" "Utilizzato per indicare quando non ci sono termini di una determinata " "tassonomia associati ad un oggetto." -#: inc/terms-table.php:425 inc/class-taxonomies-table.php:281 +#: inc/class-taxonomies-table.php:281 inc/terms-table.php:432 msgid "View" msgstr "Visualizza" @@ -4110,7 +4137,7 @@ msgstr "Visualizza %s" msgid "View Item" msgstr "Visualizza elemento" -#: includes-core/TaxopressCoreAdmin.php:128 +#: includes-core/TaxopressCoreAdmin.php:131 msgid "View Knowledge Base" msgstr "Visualizza le informazioni di base" @@ -4130,7 +4157,7 @@ msgstr "Cosa vuoi visualizzare" msgid "Whole words" msgstr "Parole intere" -#: inc/autolinks.php:270 +#: inc/autolinks.php:274 msgid "" "With TaxoPress Pro, you can create unlimited Auto Links. You can create Auto " "Links for any taxonomy." @@ -4174,7 +4201,7 @@ msgstr "" "correlati. Puoi creare visualizzazioni di termini per ciascuna tassonomia " "che puoi visualizzare ovunque nel tuo sito." -#: inc/post-tags.php:269 +#: inc/post-tags.php:271 msgid "" "With TaxoPress Pro, you can create unlimited Terms for Current Post. You can " "create Terms for Current Post for any taxonomy and then display those Terms " @@ -4196,71 +4223,71 @@ msgstr "" msgid "WordPress core" msgstr "WordPress core" -#: inc/suggestterms.php:807 inc/tag-clouds.php:851 inc/autolinks.php:909 -#: inc/related-posts.php:884 inc/post-tags.php:728 -#: inc/class-taxonomies-table.php:374 inc/autoterms.php:1158 +#: inc/autolinks.php:1000 inc/autoterms.php:1158 +#: inc/class-taxonomies-table.php:374 inc/post-tags.php:759 +#: inc/related-posts.php:884 inc/suggestterms.php:807 inc/tag-clouds.php:851 #: inc/taxonomies.php:1703 msgid "Yes" msgstr "Sì" -#: inc/post-tags.php:693 +#: inc/post-tags.php:726 msgid "You can also add HTML elements to the formatting." msgstr "Puoi aggiungere anche elementi HTML alla formattazione." -#: inc/related-posts.php:731 inc/post-tags.php:575 +#: inc/post-tags.php:607 inc/related-posts.php:731 msgid "You can find markers and explanations %1sin the documentation%2s." msgstr "Puoi trovare i marcatori e le spiegazioni %1snella documentazione%2s." -#: inc/helper.options.admin.php:148 inc/helper.options.admin.php:277 -#: inc/helper.options.admin.php:351 +#: inc/helper.options.admin.php:82 inc/helper.options.admin.php:225 +#: inc/helper.options.admin.php:303 msgid "" -"You can find markers and explanations in the online documentation." +"You can find markers and explanations in the online documentation." msgstr "" -"Puoi trovare marcatori e spiegazioni nella documentazione online." +"Puoi trovare marcatori e spiegazioni nella documentazione online." #: inc/taxonomies.php:1588 msgid "You can only delete taxonomies created with TaxoPress." msgstr "Puoi solo eliminare le tassonomie create con TaxoPress." -#: inc/helper.options.admin.php:383 +#: inc/helper.options.admin.php:335 msgid "" "You can use the same syntax as st_related_posts()public static " -"function to customize display. See documentation for more details." +"function to customize display. See documentation for more details." msgstr "" -"Puoi utilizzare la stessa sintassi tipo st_related_posts()public static function per personalizzare la visualizzazione. Vedi la " -"documentazione per maggiori dettagli." +"Puoi utilizzare la stessa sintassi tipo st_related_posts()" +"public static function per personalizzare la visualizzazione. Vedi la documentazione" +" per maggiori dettagli." -#: inc/helper.options.admin.php:210 +#: inc/helper.options.admin.php:148 msgid "" "You can use the same syntax as st_tag_cloud() public static " -"function to customize display. See documentation for more details." +"function to customize display. See documentation for more details." msgstr "" "Puoi utilizzare la stessa sintassi tipo st_tag_cloud()public " -"static function per personalizzare la visualizzazione. Vedi la documentazione per " -"maggiori dettagli." +"static function per personalizzare la visualizzazione. Vedi la documentazione" +" per maggiori dettagli." -#: inc/helper.options.admin.php:288 +#: inc/helper.options.admin.php:238 msgid "" "You can use the same syntax as st_the_tags() public static " -"function to customize display. See documentation for more details." +"function to customize display. See documentation for more details." msgstr "" "Puoi utilizzare la stessa sintassi tipo st_the_tags()public " -"static function per personalizzare la visualizzazione. Vedi la documentazione per " -"maggiori dettagli." +"static function per personalizzare la visualizzazione. Vedi la documentazione" +" per maggiori dettagli." -#: inc/helper.options.admin.php:83 +#: inc/helper.options.admin.php:17 msgid "" -"You must set ‘Order tags selection’ to count-desc for retrieve the 100 tags most popular and ‘Order tags " +"You must set ‘Order tags selection’ to count-" +"desc for retrieve the 100 tags most popular and ‘Order tags " "display’ to random for randomize cloud." msgstr "" "Devi impostare ‘Ordina la selezione dei tag’ su count-" @@ -4268,11 +4295,11 @@ msgstr "" "visualizzazione dei tag’ su casuale per visualizzarli " "in maniera casuale." -#: inc/helper.options.admin.php:266 +#: inc/helper.options.admin.php:212 msgid "You must set zero (0) for display all tags." msgstr "Deve essere 0 (zero) per mostrare tutti i tag." -#: inc/post-tags.php:453 +#: inc/post-tags.php:475 msgid "You must set zero (0) to display all post tags." msgstr "" "Devi impostarlo a zero (0) per visualizzare tutti i tag degli articoli." @@ -4293,7 +4320,7 @@ msgstr "" "Hai bisogno di una chiave API per usare i termini suggeriti da OpenCalais. " "%1sFai clic qui per leggere la documentazione%2s." -#: inc/related-posts.php:759 inc/post-tags.php:604 +#: inc/post-tags.php:636 inc/related-posts.php:759 msgid "" "You're using TaxoPress Free.\n" " The Pro version has more " @@ -4303,8 +4330,8 @@ msgstr "" " La versione Pro ha molte più " "funzionalità e un miglior supporto." -#: inc/suggestterms.php:712 inc/tag-clouds.php:727 inc/autolinks.php:803 -#: inc/autoterms.php:1052 +#: inc/autolinks.php:896 inc/autoterms.php:1052 inc/suggestterms.php:712 +#: inc/tag-clouds.php:727 msgid "" "You're using TaxoPress Free.\n" " The Pro version has more features " diff --git a/languages/simple-tags.pot b/languages/simple-tags.pot index 271fe289..c753490f 100644 --- a/languages/simple-tags.pot +++ b/languages/simple-tags.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: TaxoPress 2.3\n" "Report-Msgid-Bugs-To: http://wordpress.org/tag/simple-tags\n" -"POT-Creation-Date: 2023-04-12 13:19+0000\n" +"POT-Creation-Date: 2023-06-15 12:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -185,7 +185,7 @@ msgstr "" msgid "*Replace \"term_slug\" with the slug of the actual taxonomy term." msgstr "" -#: inc/tag-clouds.php:415 inc/related-posts.php:579 +#: inc/related-posts.php:579 inc/tag-clouds.php:415 #: review-request/review.php:290 msgid "1 month" msgstr "" @@ -198,7 +198,7 @@ msgstr "" msgid "1 week" msgstr "" -#: inc/tag-clouds.php:417 inc/related-posts.php:587 +#: inc/related-posts.php:587 inc/tag-clouds.php:417 msgid "1 year" msgstr "" @@ -206,7 +206,7 @@ msgstr "" msgid "1 year ago" msgstr "" -#: inc/tag-clouds.php:414 inc/related-posts.php:575 +#: inc/related-posts.php:575 inc/tag-clouds.php:414 msgid "2 weeks" msgstr "" @@ -214,7 +214,7 @@ msgstr "" msgid "2 weeks ago" msgstr "" -#: inc/tag-clouds.php:412 inc/related-posts.php:567 +#: inc/related-posts.php:567 inc/tag-clouds.php:412 msgid "24 hours" msgstr "" @@ -226,7 +226,7 @@ msgstr "" msgid "3 months" msgstr "" -#: inc/tag-clouds.php:416 inc/related-posts.php:583 +#: inc/related-posts.php:583 inc/tag-clouds.php:416 msgid "6 months" msgstr "" @@ -234,7 +234,7 @@ msgstr "" msgid "6 months ago" msgstr "" -#: inc/tag-clouds.php:413 inc/related-posts.php:571 +#: inc/related-posts.php:571 inc/tag-clouds.php:413 msgid "7 days" msgstr "" @@ -242,162 +242,162 @@ msgstr "" msgid "7 days ago" msgstr "" -#: inc/helper.options.default.php:48 inc/class.client.related_posts.php:103 +#: inc/class.client.related_posts.php:103 inc/helper.options.default.php:49 msgid "" "" "%post_title% (%post_comment%)" msgstr "" #: inc/class.client.tagcloud.php:64 inc/class.client.tagcloud.php:271 -#: inc/helper.options.default.php:60 +#: inc/helper.options.default.php:61 msgid "" "%tag_name%" msgstr "" -#: inc/helper.options.default.php:38 +#: inc/helper.options.default.php:39 msgid "%tag_name%" msgstr "" -#: inc/post-tags-functions.php:155 inc/class.client.post_tags.php:111 +#: inc/class.client.post_tags.php:111 inc/post-tags-functions.php:155 msgid "" "" "%tag_name%" msgstr "" -#: inc/helper.options.admin.php:242 inc/helper.options.admin.php:321 -#: inc/helper.options.admin.php:467 +#: inc/helper.options.admin.php:182 inc/helper.options.admin.php:273 +#: inc/helper.options.admin.php:419 msgid "all – On your blog and feeds." msgstr "" -#: inc/helper.options.admin.php:103 inc/helper.options.admin.php:126 +#: inc/helper.options.admin.php:37 inc/helper.options.admin.php:60 msgid "asc – Ascending." msgstr "" -#: inc/helper.options.admin.php:243 inc/helper.options.admin.php:322 +#: inc/helper.options.admin.php:183 inc/helper.options.admin.php:274 msgid "blogonly – Only on your blog." msgstr "" -#: inc/helper.options.admin.php:338 +#: inc/helper.options.admin.php:290 msgid "count-asc – Least common tags between posts" msgstr "" -#: inc/helper.options.admin.php:339 +#: inc/helper.options.admin.php:291 msgid "" "count-desc – Most common tags between posts (default)" msgstr "" -#: inc/helper.options.admin.php:114 +#: inc/helper.options.admin.php:48 msgid "count – Counter." msgstr "" -#: inc/helper.options.admin.php:91 +#: inc/helper.options.admin.php:25 msgid "count – Counter. (default)" msgstr "" -#: inc/helper.options.admin.php:336 +#: inc/helper.options.admin.php:288 msgid "date-asc – Older Entries." msgstr "" -#: inc/helper.options.admin.php:337 +#: inc/helper.options.admin.php:289 msgid "date-desc – Newer Entries." msgstr "" -#: inc/helper.options.admin.php:104 inc/helper.options.admin.php:127 +#: inc/helper.options.admin.php:38 inc/helper.options.admin.php:61 msgid "desc – Descending." msgstr "" -#: inc/helper.options.admin.php:138 +#: inc/helper.options.admin.php:72 msgid "flat – Display inline (no list, just a div)" msgstr "" -#: inc/helper.options.admin.php:244 inc/helper.options.admin.php:323 +#: inc/helper.options.admin.php:184 inc/helper.options.admin.php:275 msgid "homeonly – Only on your home page." msgstr "" -#: inc/helper.options.admin.php:137 +#: inc/helper.options.admin.php:71 msgid "list – Display a formatted list (ul/li)." msgstr "" -#: inc/helper.options.admin.php:340 +#: inc/helper.options.admin.php:292 msgid "name-asc – Alphabetical." msgstr "" -#: inc/helper.options.admin.php:341 +#: inc/helper.options.admin.php:293 msgid "name-desc – Inverse Alphabetical." msgstr "" -#: inc/helper.options.admin.php:92 inc/helper.options.admin.php:115 +#: inc/helper.options.admin.php:26 inc/helper.options.admin.php:49 msgid "name – Name." msgstr "" -#: inc/helper.options.admin.php:466 +#: inc/helper.options.admin.php:418 msgid "no – Nowhere" msgstr "" -#: inc/helper.options.admin.php:241 inc/helper.options.admin.php:320 +#: inc/helper.options.admin.php:181 inc/helper.options.admin.php:272 msgid "no – Nowhere (default)" msgstr "" -#: inc/helper.options.admin.php:247 inc/helper.options.admin.php:326 +#: inc/helper.options.admin.php:187 inc/helper.options.admin.php:278 msgid "pageonly – Only on your page view." msgstr "" -#: inc/helper.options.admin.php:93 inc/helper.options.admin.php:342 +#: inc/helper.options.admin.php:27 inc/helper.options.admin.php:294 msgid "random – Random." msgstr "" -#: inc/helper.options.admin.php:116 +#: inc/helper.options.admin.php:50 msgid "random – Random. (default)" msgstr "" -#: inc/helper.options.admin.php:468 +#: inc/helper.options.admin.php:420 msgid "single – Only on your single post view." msgstr "" -#: inc/helper.options.admin.php:246 inc/helper.options.admin.php:325 +#: inc/helper.options.admin.php:186 inc/helper.options.admin.php:277 msgid "singleonly – Only on your single view." msgstr "" -#: inc/helper.options.admin.php:469 +#: inc/helper.options.admin.php:421 msgid "" "singular – Only on your singular view (single post & page)" " (default)." msgstr "" -#: inc/helper.options.admin.php:245 inc/helper.options.admin.php:324 +#: inc/helper.options.admin.php:185 inc/helper.options.admin.php:276 msgid "" "singularonly – Only on your singular view (single & page)." msgstr "" -#: inc/helper.options.default.php:47 inc/class.client.related_posts.php:100 +#: inc/class.client.related_posts.php:100 inc/helper.options.default.php:48 msgid "

Related posts

" msgstr "" #: inc/class.client.tagcloud.php:67 inc/class.client.tagcloud.php:274 -#: inc/helper.options.default.php:58 +#: inc/helper.options.default.php:59 msgid "

Tag Cloud

" msgstr "" -#: inc/helper.options.admin.php:80 +#: inc/helper.options.admin.php:14 msgid "" "‘Order tags display’ is the second. Once tags " "choosen, you can reorder them before display." msgstr "" -#: inc/helper.options.admin.php:79 +#: inc/helper.options.admin.php:13 msgid "" "‘Order tags selection’ is the first step during " "tag's cloud generation, corresponding to collect tags." msgstr "" -#: inc/helper.options.admin.php:207 inc/helper.options.admin.php:285 -#: inc/helper.options.admin.php:380 +#: inc/helper.options.admin.php:145 inc/helper.options.admin.php:235 +#: inc/helper.options.admin.php:332 msgid "Advanced usage:" msgstr "" -#: inc/helper.options.admin.php:82 +#: inc/helper.options.admin.php:16 msgid "" "Example: You want display randomly the 100 tags most " "popular.
" @@ -425,7 +425,7 @@ msgstr "" msgid "Add" msgstr "" -#: inc/autolinks.php:847 +#: inc/autolinks.php:939 msgid "Add Auto Links" msgstr "" @@ -437,16 +437,28 @@ msgstr "" msgid "Add Auto Terms to existing content" msgstr "" -#: inc/helper.options.admin.php:492 +#: inc/autolinks.php:796 +msgid "Add links for all terms" +msgstr "" + +#: inc/helper.options.admin.php:444 msgid "Add links for post title" msgstr "" -#: inc/autolinks.php:467 inc/helper.options.admin.php:431 +#: inc/helper.options.admin.php:383 msgid "Add links for unattached terms" msgstr "" -#: inc/suggestterms.php:127 inc/tag-clouds.php:128 inc/autolinks.php:128 -#: inc/related-posts.php:128 inc/post-tags.php:128 inc/taxonomies.php:155 +#: inc/autolinks.php:765 +msgid "Add links to synonyms" +msgstr "" + +#: inc/autolinks.php:769 +msgid "Add links to the content synonyms." +msgstr "" + +#: inc/autolinks.php:126 inc/post-tags.php:126 inc/related-posts.php:128 +#: inc/suggestterms.php:127 inc/tag-clouds.php:128 inc/taxonomies.php:155 msgid "Add New" msgstr "" @@ -458,7 +470,7 @@ msgstr "" msgid "Add new %s" msgstr "" -#: inc/autolinks.php:255 +#: inc/autolinks.php:257 msgid "Add new Auto Links" msgstr "" @@ -490,7 +502,7 @@ msgstr "" msgid "Add new Taxonomy" msgstr "" -#: inc/class.admin.php:476 +#: inc/class.admin.php:481 msgid "Add New TaxoPress Logs" msgstr "" @@ -541,7 +553,7 @@ msgstr "" msgid "Add Terms Display" msgstr "" -#: inc/post-tags.php:648 +#: inc/post-tags.php:679 msgid "Add Terms for Current Post" msgstr "" @@ -570,16 +582,16 @@ msgstr "" msgid "Admin Area" msgstr "" -#: inc/class.admin.php:776 +#: inc/class.admin.php:797 msgid "Administration" msgstr "" -#: inc/autolinks.php:302 inc/related-posts.php:295 inc/post-tags.php:296 -#: inc/autoterms.php:427 inc/taxonomies.php:370 +#: inc/autolinks.php:322 inc/autoterms.php:427 inc/post-tags.php:305 +#: inc/related-posts.php:295 inc/taxonomies.php:370 msgid "Advanced" msgstr "" -#: inc/helper.options.admin.php:62 +#: inc/functions.inc.php:404 msgid "Advanced Manage Terms" msgstr "" @@ -587,8 +599,8 @@ msgstr "" msgid "Advanced usage:" msgstr "" -#: inc/related-posts-table.php:338 inc/related-posts-table.php:355 -#: inc/class.admin.mass.php:123 inc/tag-clouds-table.php:345 +#: inc/class.admin.mass.php:123 inc/related-posts-table.php:338 +#: inc/related-posts-table.php:355 inc/tag-clouds-table.php:345 msgid "All" msgstr "" @@ -609,7 +621,7 @@ msgstr "" msgid "All Items" msgstr "" -#: inc/autolinks.php:391 +#: inc/autolinks.php:414 msgid "All lowercase" msgstr "" @@ -617,15 +629,15 @@ msgstr "" msgid "All Media Tags" msgstr "" -#: inc/tag-clouds.php:334 inc/related-posts.php:378 +#: inc/related-posts.php:378 inc/tag-clouds.php:334 msgid "All post types" msgstr "" -#: inc/terms-table.php:210 inc/taxonomies.php:194 +#: inc/taxonomies.php:194 inc/terms-table.php:217 msgid "All Taxonomies" msgstr "" -#: inc/autolinks.php:387 +#: inc/autolinks.php:410 msgid "All uppercase" msgstr "" @@ -633,7 +645,7 @@ msgstr "" msgid "Alphabetical" msgstr "" -#: inc/helper.options.admin.php:479 +#: inc/helper.options.admin.php:431 msgid "" "An engine replacement alternative uses DOMDocument PHP class and " "theoretically offers better performance. If your server does not offer the " @@ -662,8 +674,8 @@ msgstr "" msgid "ASC" msgstr "" -#: inc/suggestterms.php:515 inc/tag-clouds.php:453 inc/tag-clouds.php:488 -#: inc/class.admin.clickterms.php:89 +#: inc/class.admin.clickterms.php:89 inc/suggestterms.php:515 +#: inc/tag-clouds.php:453 inc/tag-clouds.php:488 msgid "Ascending" msgstr "" @@ -671,7 +683,7 @@ msgstr "" msgid "Attempt to automatically display related posts" msgstr "" -#: inc/post-tags.php:414 +#: inc/post-tags.php:429 msgid "Attempt to automatically display terms" msgstr "" @@ -679,15 +691,15 @@ msgstr "" msgid "Auto Link" msgstr "" -#: inc/class.admin.php:778 +#: inc/class.admin.php:799 msgid "Auto link" msgstr "" -#: inc/autolinks.php:430 inc/autolinks-table.php:69 +#: inc/autolinks-table.php:69 inc/autolinks.php:457 msgid "Auto Link areas" msgstr "" -#: inc/autolinks.php:401 +#: inc/autolinks.php:424 msgid "Auto Link case" msgstr "" @@ -695,16 +707,16 @@ msgstr "" msgid "Auto Link Post type" msgstr "" -#: inc/autolinks.php:440 +#: inc/autolinks.php:469 msgid "Auto Link title attribute" msgstr "" -#: inc/autolinks.php:72 inc/autolinks.php:73 inc/autolinks.php:126 -#: inc/helper.options.admin.php:34 inc/autolinks-table.php:15 +#: inc/autolinks-table.php:15 inc/autolinks.php:71 inc/autolinks.php:72 +#: inc/autolinks.php:125 inc/functions.inc.php:380 msgid "Auto Links" msgstr "" -#: inc/autolinks.php:130 inc/helper.options.admin.php:37 +#: inc/autolinks.php:128 inc/functions.inc.php:381 msgid "" "Auto Links can automatically create links to your defined terms. For example," " if you have a term called “WordPress”, the Auto Links feature can find the " @@ -712,11 +724,11 @@ msgid "" "term." msgstr "" -#: inc/autolinks-functions.php:261 +#: inc/autolinks-functions.php:266 msgid "Auto Links successfully deleted." msgstr "" -#: inc/helper.options.admin.php:399 +#: inc/helper.options.admin.php:351 msgid "Auto links tags" msgstr "" @@ -732,7 +744,7 @@ msgstr "" msgid "Auto term settings not found" msgstr "" -#: inc/autoterms.php:74 inc/autoterms.php:75 inc/helper.options.admin.php:41 +#: inc/autoterms.php:74 inc/autoterms.php:75 inc/functions.inc.php:386 msgid "Auto Terms" msgstr "" @@ -740,7 +752,7 @@ msgstr "" msgid "Auto terms" msgstr "" -#: inc/autoterms.php:241 inc/helper.options.admin.php:44 +#: inc/autoterms.php:241 inc/functions.inc.php:387 msgid "" "Auto Terms can scan your content and automatically assign new and existing " "terms." @@ -810,31 +822,31 @@ msgstr "" msgid "Automatic Term Suggestions" msgstr "" -#: includes-core/TaxopressCoreAdmin.php:175 +#: includes-core/TaxopressCoreAdmin.php:178 msgid "Automatically add new terms to your content" msgstr "" -#: includes-core/TaxopressCoreAdmin.php:98 +#: includes-core/TaxopressCoreAdmin.php:103 msgid "Automatically add terms to imported content" msgstr "" -#: includes-core/TaxopressCoreAdmin.php:97 +#: includes-core/TaxopressCoreAdmin.php:102 msgid "Automatically create new terms" msgstr "" -#: inc/helper.options.admin.php:312 +#: inc/helper.options.admin.php:263 msgid "Automatically display related posts into feeds" msgstr "" -#: inc/helper.options.admin.php:316 +#: inc/helper.options.admin.php:268 msgid "Automatically display related posts into post content" msgstr "" -#: inc/helper.options.admin.php:233 +#: inc/helper.options.admin.php:172 msgid "Automatically display tags list into feeds" msgstr "" -#: inc/helper.options.admin.php:238 +#: inc/helper.options.admin.php:178 msgid "Automatically display tags list into post content:" msgstr "" @@ -864,33 +876,34 @@ msgstr "" msgid "Batches wait time" msgstr "" -#: inc/related-posts.php:505 inc/post-tags.php:408 inc/post-tags-table.php:343 -#: inc/related-posts-table.php:383 inc/autolinks-table.php:344 +#: inc/autolinks-table.php:344 inc/post-tags-table.php:343 +#: inc/post-tags.php:423 inc/related-posts-table.php:383 +#: inc/related-posts.php:505 msgid "Blog display" msgstr "" -#: inc/helper.options.admin.php:309 +#: inc/helper.options.admin.php:259 msgid "" "By default, related posts work with post tags, but you can use a custom " "taxonomy. Default value : post_tag" msgstr "" -#: inc/helper.options.admin.php:495 +#: inc/autolinks.php:800 msgid "" -"By default, TaxoPress will exclude Auto Links for terms that are attached to " -"the post title." +"By default, TaxoPress will add links for all terms. If this box is unchecked," +" Auto Links will only add links for terms that are attached to the post." msgstr "" -#: inc/helper.options.admin.php:434 +#: inc/helper.options.admin.php:447 msgid "" -"By default, TaxoPress will only add Auto Links for terms that are attached " -"to the post. If this box is checked, TaxoPress will add links for all terms" +"By default, TaxoPress will exclude Auto Links for terms that are attached to " +"the post title." msgstr "" -#: inc/autolinks.php:469 +#: inc/helper.options.admin.php:386 msgid "" "By default, TaxoPress will only add Auto Links for terms that are attached " -"to the post. If this box is checked, TaxoPress will add links for all terms." +"to the post. If this box is checked, TaxoPress will add links for all terms" msgstr "" #: inc/taxonomies.php:508 @@ -898,15 +911,15 @@ msgid "" "Can terms in this taxonomy be organized into hierarchical relationships?" msgstr "" -#: inc/terms-table.php:609 +#: inc/terms-table.php:638 msgid "Cancel" msgstr "" -#: inc/class.admin.php:386 +#: inc/class.admin.php:390 msgid "Change selection" msgstr "" -#: inc/autolinks.php:748 +#: inc/autolinks.php:835 msgid "" "Change the priority of the Auto Links functions on the_content hook. This is " "useful for fixing conflicts with other plugins. Higher number means autolink " @@ -964,11 +977,11 @@ msgstr "" msgid "Click to display tags" msgstr "" -#: inc/tag-clouds.php:384 inc/tag-clouds-table.php:362 +#: inc/tag-clouds-table.php:362 inc/tag-clouds.php:384 msgid "Cloud" msgstr "" -#: inc/autolinks.php:687 +#: inc/autolinks.php:699 msgid "code" msgstr "" @@ -981,17 +994,17 @@ msgstr "" msgid "Content statuses" msgstr "" -#: inc/autolinks.php:292 +#: inc/autolinks.php:301 msgid "Control" msgstr "" -#: inc/terms-table.php:116 inc/class-taxonomies-table.php:71 -#: inc/class-tag-table.php:43 +#: inc/class-tag-table.php:43 inc/class-taxonomies-table.php:71 +#: inc/terms-table.php:117 msgid "Count" msgstr "" -#: inc/suggestterms.php:490 inc/tag-clouds.php:436 inc/tag-clouds.php:471 #: inc/class.admin.clickterms.php:76 inc/class.widgets.php:272 +#: inc/suggestterms.php:490 inc/tag-clouds.php:436 inc/tag-clouds.php:471 msgid "Counter" msgstr "" @@ -999,11 +1012,11 @@ msgstr "" msgid "Counter (default)" msgstr "" -#: inc/post-tags.php:73 +#: inc/post-tags.php:72 msgid "Current Post" msgstr "" -#: inc/related-posts.php:382 inc/related-posts-table.php:336 +#: inc/related-posts-table.php:336 inc/related-posts.php:382 msgid "Current post type" msgstr "" @@ -1047,6 +1060,10 @@ msgstr "" msgid "Dandelion API token" msgstr "" +#: inc/dashboard.php:62 inc/dashboard.php:63 inc/dashboard.php:89 +msgid "Dashboard" +msgstr "" + #: inc/class.admin.suggest.php:57 msgid "dataTXT by Dandelion" msgstr "" @@ -1071,11 +1088,11 @@ msgstr "" msgid "Default Terms" msgstr "" -#: inc/autoterms-table.php:275 inc/terms-table.php:158 inc/terms-table.php:417 +#: inc/autolinks-table.php:275 inc/autoterms-logs-table.php:240 +#: inc/autoterms-table.php:275 inc/class-tag-table.php:195 #: inc/post-tags-table.php:275 inc/related-posts-table.php:276 -#: inc/autoterms-logs-table.php:240 inc/class-tag-table.php:195 -#: inc/tag-clouds-table.php:276 inc/suggestterms-table.php:274 -#: inc/autolinks-table.php:275 +#: inc/suggestterms-table.php:274 inc/tag-clouds-table.php:276 +#: inc/terms-table.php:164 inc/terms-table.php:424 msgid "Delete" msgstr "" @@ -1103,8 +1120,8 @@ msgstr "" msgid "DESC (default)" msgstr "" -#: inc/suggestterms.php:519 inc/tag-clouds.php:454 inc/tag-clouds.php:489 -#: inc/class.admin.clickterms.php:89 +#: inc/class.admin.clickterms.php:89 inc/suggestterms.php:519 +#: inc/tag-clouds.php:454 inc/tag-clouds.php:489 msgid "Descending" msgstr "" @@ -1116,9 +1133,9 @@ msgstr "" msgid "Description" msgstr "" -#: inc/suggestterms.php:163 inc/terms.php:257 inc/tag-clouds.php:161 -#: inc/autolinks.php:161 inc/related-posts.php:161 inc/post-tags.php:160 -#: inc/autoterms.php:218 inc/autoterms.php:273 inc/taxonomies.php:203 +#: inc/autolinks.php:162 inc/autoterms.php:218 inc/autoterms.php:273 +#: inc/post-tags.php:159 inc/related-posts.php:161 inc/suggestterms.php:163 +#: inc/tag-clouds.php:161 inc/taxonomies.php:203 inc/terms.php:260 msgid "Description here." msgstr "" @@ -1126,7 +1143,7 @@ msgstr "" msgid "Design" msgstr "" -#: includes-core/TaxopressCoreAdmin.php:126 +#: includes-core/TaxopressCoreAdmin.php:129 msgid "Detailed documentation is also available on the plugin website." msgstr "" @@ -1142,7 +1159,7 @@ msgstr "" msgid "Disable Logs" msgstr "" -#: inc/related-posts.php:285 inc/post-tags.php:286 +#: inc/post-tags.php:291 inc/related-posts.php:285 msgid "Display" msgstr "" @@ -1150,7 +1167,7 @@ msgstr "" msgid "Display Format" msgstr "" -#: inc/tag-clouds.php:394 inc/tag-clouds-table.php:69 +#: inc/tag-clouds-table.php:69 inc/tag-clouds.php:394 msgid "Display format" msgstr "" @@ -1164,19 +1181,11 @@ msgstr "" msgid "Do you really want to restore the default options?" msgstr "" -#: inc/autolinks.php:496 -msgid "Don't add Auto Links if the term is already attached to the post." -msgstr "" - -#: inc/autolinks.php:494 -msgid "Don't add links for attached terms" -msgstr "" - -#: inc/autoterms-table.php:264 inc/terms-table.php:383 -#: inc/post-tags-table.php:264 inc/related-posts-table.php:265 +#: inc/autolinks-table.php:264 inc/autoterms-table.php:264 #: inc/class-taxonomies-table.php:271 inc/class.admin.mass.php:263 -#: inc/tag-clouds-table.php:265 inc/suggestterms-table.php:263 -#: inc/autolinks-table.php:264 +#: inc/post-tags-table.php:264 inc/related-posts-table.php:265 +#: inc/suggestterms-table.php:263 inc/tag-clouds-table.php:265 +#: inc/terms-table.php:388 msgid "Edit" msgstr "" @@ -1188,7 +1197,7 @@ msgstr "" msgid "Edit %s" msgstr "" -#: inc/autolinks.php:248 +#: inc/autolinks.php:250 msgid "Edit Auto Links" msgstr "" @@ -1220,7 +1229,7 @@ msgstr "" msgid "Edit Taxonomy" msgstr "" -#: inc/class.admin.php:474 +#: inc/class.admin.php:479 msgid "Edit TaxoPress Logs" msgstr "" @@ -1232,15 +1241,15 @@ msgstr "" msgid "Edit Terms for Current Post" msgstr "" -#: inc/class.admin.suggest.php:55 inc/class.admin.clickterms.php:132 +#: inc/class.admin.clickterms.php:132 inc/class.admin.suggest.php:55 msgid "Edit this metabox" msgstr "" -#: inc/tag-clouds.php:592 inc/class.widgets.php:320 +#: inc/class.widgets.php:320 inc/tag-clouds.php:592 msgid "Em" msgstr "" -#: inc/class.admin.php:782 +#: inc/class.admin.php:803 msgid "Embedded Tags" msgstr "" @@ -1248,7 +1257,7 @@ msgstr "" msgid "Enable a custom query_var key for this taxonomy." msgstr "" -#: inc/helper.options.admin.php:463 +#: inc/helper.options.admin.php:415 msgid "Enable autolinks into post content for theses views:" msgstr "" @@ -1260,22 +1269,22 @@ msgstr "" msgid "Enable Logs" msgstr "" -#: inc/autolinks.php:542 +#: inc/autolinks.php:523 msgid "Enable this Auto Links instance for:" msgstr "" -#: inc/helper.options.admin.php:218 +#: inc/helper.options.admin.php:156 msgid "" "Enabling this will allow Wordpress to look for tag cloud shortcode " "[st_tag_cloud] or [st-tag-cloud] when displaying posts. " "WordPress replace this shortcode by a tag cloud." msgstr "" -#: includes-core/TaxopressCoreAdmin.php:88 +#: includes-core/TaxopressCoreAdmin.php:93 msgid "Enhance the power of TaxoPress with the Pro version:" msgstr "" -#: inc/helper.options.admin.php:169 inc/helper.options.admin.php:372 +#: inc/helper.options.admin.php:103 inc/helper.options.admin.php:324 msgid "Enter the positioned title before the list, leave blank for no title:" msgstr "" @@ -1290,11 +1299,11 @@ msgstr "" msgid "Enter the terms to rename and their new names." msgstr "" -#: inc/helper.options.admin.php:364 +#: inc/helper.options.admin.php:316 msgid "Enter the text to show when there is no related post:" msgstr "" -#: inc/helper.options.admin.php:161 +#: inc/helper.options.admin.php:95 msgid "Enter the text to show when there is no tag:" msgstr "" @@ -1310,26 +1319,30 @@ msgstr "" msgid "Error. You need to enter a single term to merge to in new term name !" msgstr "" -#: inc/helper.options.admin.php:450 +#: inc/class.admin.php:169 +msgid "Error: wrong data" +msgstr "" + +#: inc/helper.options.admin.php:402 msgid "" "Example: If you enter the term \"Paris\", the auto link tags feature will " "never replace this term by this link." msgstr "" -#: inc/helper.options.admin.php:442 +#: inc/helper.options.admin.php:394 msgid "" "Example: If you ignore case, auto link feature will replace the word " "\"wordpress\" by the tag link \"WordPress\"." msgstr "" -#: inc/helper.options.admin.php:402 +#: inc/helper.options.admin.php:354 msgid "" "Example: You have a tag called \"WordPress\" and your post content contains " "\"wordpress\", this feature will replace \"wordpress\" by a link to " "\"wordpress\" tags page. (http://myblog.net/tag/wordpress/)" msgstr "" -#: inc/autolinks.php:297 +#: inc/autolinks.php:308 msgid "Exceptions" msgstr "" @@ -1337,11 +1350,11 @@ msgstr "" msgid "Exclude previously analyzed content" msgstr "" -#: inc/helper.options.admin.php:447 +#: inc/helper.options.admin.php:399 msgid "Exclude some terms from tag link. For Ads Link subtition, etc." msgstr "" -#: inc/autolinks.php:656 +#: inc/autolinks.php:660 msgid "Exclude terms from Auto Links" msgstr "" @@ -1361,14 +1374,14 @@ msgstr "" msgid "Existing terms on your site" msgstr "" +#: inc/autolinks.php:749 inc/autolinks.php:781 inc/autolinks.php:847 +#: inc/autoterms.php:600 inc/autoterms.php:614 inc/autoterms.php:645 +#: inc/autoterms.php:659 inc/autoterms.php:689 inc/autoterms.php:746 +#: inc/autoterms.php:771 inc/autoterms.php:796 inc/autoterms.php:871 +#: inc/post-tags.php:546 inc/related-posts.php:458 inc/related-posts.php:671 #: inc/suggestterms.php:444 inc/suggestterms.php:555 inc/suggestterms.php:569 #: inc/suggestterms.php:598 inc/suggestterms.php:656 inc/tag-clouds.php:516 -#: inc/tag-clouds.php:539 inc/tag-clouds.php:612 inc/autolinks.php:452 -#: inc/autolinks.php:479 inc/autolinks.php:758 inc/related-posts.php:458 -#: inc/related-posts.php:671 inc/post-tags.php:515 inc/autoterms.php:600 -#: inc/autoterms.php:614 inc/autoterms.php:645 inc/autoterms.php:659 -#: inc/autoterms.php:689 inc/autoterms.php:746 inc/autoterms.php:771 -#: inc/autoterms.php:796 inc/autoterms.php:871 inc/taxonomies.php:492 +#: inc/tag-clouds.php:539 inc/tag-clouds.php:612 inc/taxonomies.php:492 #: inc/taxonomies.php:611 inc/taxonomies.php:626 inc/taxonomies.php:767 #: inc/taxonomies.php:803 inc/taxonomies.php:828 inc/taxonomies.php:863 #: inc/taxonomies.php:887 inc/taxonomies.php:911 inc/taxonomies.php:936 @@ -1377,16 +1390,16 @@ msgstr "" msgid "False" msgstr "" -#: includes-core/TaxopressCoreAdmin.php:99 +#: includes-core/TaxopressCoreAdmin.php:104 msgid "Fast, professional support" msgstr "" -#: inc/class.admin.php:780 +#: inc/class.admin.php:801 msgid "Features" msgstr "" -#: inc/terms-table.php:215 inc/autoterms-logs-table.php:172 -#: inc/class.admin.mass.php:225 +#: inc/autoterms-logs-table.php:172 inc/class.admin.mass.php:225 +#: inc/terms-table.php:222 msgid "Filter" msgstr "" @@ -1434,19 +1447,19 @@ msgstr "" msgid "Font size minimum must not be greater than Font size maximum value." msgstr "" -#: inc/autolinks.php:636 +#: inc/autolinks.php:639 msgid "" "For example, '4' would only link terms that are of 4 characters or less in " "length." msgstr "" -#: inc/autolinks.php:623 +#: inc/autolinks.php:622 msgid "" "For example, '4' would only link terms that are of 4 characters or more in " "length." msgstr "" -#: inc/helper.options.admin.php:458 +#: inc/helper.options.admin.php:410 msgid "" "For expert, possibility to change the priority of autolinks functions on " "the_content hook. Useful for fix a conflict with an another plugin. Default: " @@ -1457,33 +1470,33 @@ msgstr "" msgid "Format:" msgstr "" -#: inc/suggestterms.php:285 inc/tag-clouds.php:281 inc/autolinks.php:282 -#: inc/related-posts.php:280 inc/post-tags.php:281 inc/autoterms.php:402 +#: inc/autolinks.php:287 inc/autoterms.php:402 inc/post-tags.php:284 +#: inc/related-posts.php:280 inc/suggestterms.php:285 inc/tag-clouds.php:281 #: inc/taxonomies.php:340 msgid "General" msgstr "" -#: inc/autolinks.php:677 inc/related-posts.php:337 +#: inc/autolinks.php:689 inc/related-posts.php:337 msgid "H1" msgstr "" -#: inc/autolinks.php:678 inc/related-posts.php:341 +#: inc/autolinks.php:690 inc/related-posts.php:341 msgid "H2" msgstr "" -#: inc/autolinks.php:679 inc/related-posts.php:345 +#: inc/autolinks.php:691 inc/related-posts.php:345 msgid "H3" msgstr "" -#: inc/autolinks.php:680 inc/related-posts.php:349 +#: inc/autolinks.php:692 inc/related-posts.php:349 msgid "H4" msgstr "" -#: inc/autolinks.php:681 inc/related-posts.php:354 +#: inc/autolinks.php:693 inc/related-posts.php:354 msgid "H5" msgstr "" -#: inc/autolinks.php:682 inc/related-posts.php:358 +#: inc/autolinks.php:694 inc/related-posts.php:358 msgid "H6" msgstr "" @@ -1504,7 +1517,7 @@ msgstr "" msgid "Here are the tokens you can use for Term link format" msgstr "" -#: inc/post-tags.php:684 +#: inc/post-tags.php:717 msgid "Here are the tokens you can use for Terms for Current Post format" msgstr "" @@ -1516,7 +1529,7 @@ msgid "" " It really does help to keep TaxoPress growing." msgstr "" -#: inc/post-tags.php:530 +#: inc/post-tags.php:561 msgid "Hide display output if no terms ?" msgstr "" @@ -1536,8 +1549,9 @@ msgstr "" msgid "Hide title in output?" msgstr "" -#: inc/related-posts.php:504 inc/post-tags.php:407 inc/post-tags-table.php:342 -#: inc/related-posts-table.php:382 inc/autolinks-table.php:343 +#: inc/autolinks-table.php:343 inc/post-tags-table.php:342 +#: inc/post-tags.php:422 inc/related-posts-table.php:382 +#: inc/related-posts.php:504 msgid "Homepage" msgstr "" @@ -1559,28 +1573,28 @@ msgid "" "If you choose 5, Taxopress will delete all terms attached to less than 5 %s." msgstr "" -#: inc/autolinks.php:658 +#: inc/autolinks.php:664 msgid "" "If you enter the terms \"WordPress\", \"Website\" the Auto Links feature " "will never replace these terms. Separate multiple entries with a comma." msgstr "" -#: includes-core/TaxopressCoreAdmin.php:115 +#: includes-core/TaxopressCoreAdmin.php:120 msgid "If you need help or have a new feature request, let us know." msgstr "" -#: inc/autolinks.php:873 inc/autoterms.php:1122 +#: inc/autolinks.php:966 inc/autoterms.php:1122 #, php-format msgid "" "If your website language does not use the A-Z alphabet, %1s please read this " "documentation. %2s" msgstr "" -#: inc/helper.options.admin.php:439 +#: inc/helper.options.admin.php:391 msgid "Ignore case for auto link feature ?" msgstr "" -#: inc/helper.options.admin.php:269 +#: inc/helper.options.admin.php:216 msgid "Include categories in result ?" msgstr "" @@ -1588,6 +1602,10 @@ msgstr "" msgid "Invalid access token !" msgstr "" +#: inc/class.admin.php:164 +msgid "Invalid nonce token!" +msgstr "" + #: inc/post-tags-functions.php:354 msgid "Invalid post terms ID." msgstr "" @@ -1628,15 +1646,15 @@ msgstr "" msgid "Least common tags between posts" msgstr "" -#: inc/helper.options.admin.php:183 +#: inc/helper.options.admin.php:118 msgid "Least popular color:" msgstr "" -#: inc/helper.options.admin.php:194 +#: inc/helper.options.admin.php:131 msgid "Least popular font size:" msgstr "" -#: inc/class.admin.php:788 +#: inc/class.admin.php:809 msgid "Legacy" msgstr "" @@ -1664,8 +1682,8 @@ msgstr "" msgid "Limit the number of logs" msgstr "" -#: inc/tag-clouds.php:385 inc/tag-clouds-table.php:363 -#: inc/class.widgets.php:335 +#: inc/class.widgets.php:335 inc/tag-clouds-table.php:363 +#: inc/tag-clouds.php:385 msgid "List (UL/LI)" msgstr "" @@ -1673,7 +1691,7 @@ msgstr "" msgid "Logs" msgstr "" -#: inc/autolinks.php:231 +#: inc/autolinks.php:233 msgid "Manage Auto Links" msgstr "" @@ -1713,7 +1731,7 @@ msgstr "" msgid "Mass Edit Terms" msgstr "" -#: inc/helper.options.admin.php:55 +#: inc/functions.inc.php:398 msgid "Mass Edit terms" msgstr "" @@ -1721,7 +1739,7 @@ msgstr "" msgid "Mass edit terms" msgstr "" -#: inc/helper.options.admin.php:263 +#: inc/helper.options.admin.php:209 msgid "Max tags display:" msgstr "" @@ -1729,31 +1747,31 @@ msgstr "" msgid "Max tags to display: (default: 45)" msgstr "" -#: inc/autolinks.php:634 +#: inc/autolinks.php:635 msgid "Maximum character length for an Auto Link" msgstr "" -#: inc/helper.options.admin.php:423 +#: inc/helper.options.admin.php:375 msgid "Maximum number of links for the same tag:" msgstr "" -#: inc/autolinks.php:608 +#: inc/autolinks.php:601 msgid "Maximum number of links for the same term" msgstr "" -#: inc/helper.options.admin.php:415 +#: inc/helper.options.admin.php:367 msgid "Maximum number of links per article:" msgstr "" -#: inc/autolinks.php:595 +#: inc/autolinks.php:584 msgid "Maximum number of links per post" msgstr "" -#: inc/helper.options.admin.php:356 +#: inc/helper.options.admin.php:308 msgid "Maximum number of related posts to display: (default: 5)" msgstr "" -#: inc/helper.options.admin.php:153 +#: inc/helper.options.admin.php:87 msgid "Maximum number of tags to display: (default: 45)" msgstr "" @@ -1761,11 +1779,11 @@ msgstr "" msgid "Maximum related posts to display" msgstr "" -#: inc/suggestterms.php:475 inc/class.admin.clickterms.php:104 +#: inc/class.admin.clickterms.php:104 inc/suggestterms.php:475 msgid "Maximum terms" msgstr "" -#: inc/tag-clouds.php:563 inc/post-tags.php:451 +#: inc/post-tags.php:471 inc/tag-clouds.php:563 msgid "Maximum terms to display" msgstr "" @@ -1815,7 +1833,7 @@ msgstr "" msgid "Metabox callback" msgstr "" -#: inc/suggestterms.php:505 inc/class.admin.clickterms.php:79 +#: inc/class.admin.clickterms.php:79 inc/suggestterms.php:505 msgid "Method for choosing terms" msgstr "" @@ -1831,7 +1849,7 @@ msgstr "" msgid "Migrate terms to newly renamed taxonomy?" msgstr "" -#: inc/autolinks.php:621 +#: inc/autolinks.php:618 msgid "Minimum character length for an Auto Link" msgstr "" @@ -1839,11 +1857,11 @@ msgstr "" msgid "Minimum number of uses for each term:" msgstr "" -#: inc/autolinks.php:582 +#: inc/autolinks.php:567 msgid "Minimum term usage for Auto Links" msgstr "" -#: inc/helper.options.admin.php:407 +#: inc/helper.options.admin.php:359 msgid "Minimum usage for terms" msgstr "" @@ -1855,22 +1873,22 @@ msgstr "" msgid "Most common tags between posts" msgstr "" -#: inc/helper.options.admin.php:177 +#: inc/helper.options.admin.php:111 msgid "Most popular color:" msgstr "" -#: inc/helper.options.admin.php:188 +#: inc/helper.options.admin.php:124 msgid "Most popular font size:" msgstr "" -#: inc/suggestterms.php:486 inc/tag-clouds.php:434 inc/tag-clouds.php:470 -#: inc/class-taxonomies-table.php:66 inc/class.admin.clickterms.php:76 -#: inc/class-tag-table.php:41 inc/class.widgets.php:238 -#: inc/class.widgets.php:270 +#: inc/class-tag-table.php:41 inc/class-taxonomies-table.php:66 +#: inc/class.admin.clickterms.php:76 inc/class.widgets.php:238 +#: inc/class.widgets.php:270 inc/suggestterms.php:486 inc/tag-clouds.php:434 +#: inc/tag-clouds.php:470 msgid "Name" msgstr "" -#: includes-core/TaxopressCoreAdmin.php:110 +#: includes-core/TaxopressCoreAdmin.php:115 msgid "Need TaxoPress Support?" msgstr "" @@ -1894,7 +1912,7 @@ msgstr "" msgid "New Media Tag name" msgstr "" -#: inc/class.admin.php:477 +#: inc/class.admin.php:482 msgid "New TaxoPress Logs" msgstr "" @@ -1910,10 +1928,11 @@ msgstr "" msgid "Newer Entries" msgstr "" -#: inc/suggestterms.php:805 inc/tag-clouds.php:849 inc/autolinks.php:907 -#: inc/related-posts.php:882 inc/post-tags.php:726 inc/post-tags-table.php:355 -#: inc/related-posts-table.php:395 inc/class-taxonomies-table.php:372 -#: inc/autoterms.php:1156 inc/taxonomies.php:1701 +#: inc/autolinks.php:999 inc/autoterms.php:1156 +#: inc/class-taxonomies-table.php:372 inc/post-tags-table.php:355 +#: inc/post-tags.php:758 inc/related-posts-table.php:395 +#: inc/related-posts.php:882 inc/suggestterms.php:805 inc/tag-clouds.php:849 +#: inc/taxonomies.php:1701 msgid "No" msgstr "" @@ -1939,7 +1958,7 @@ msgstr "" msgid "No %s found." msgstr "" -#: includes-core/TaxopressCoreAdmin.php:100 +#: includes-core/TaxopressCoreAdmin.php:105 msgid "No ads inside the plugin" msgstr "" @@ -1947,15 +1966,15 @@ msgstr "" msgid "No content to edit." msgstr "" +#: inc/autolinks-table.php:91 inc/autoterms-logs-table.php:217 #: inc/autoterms-table.php:91 inc/post-tags-table.php:91 -#: inc/related-posts-table.php:92 inc/autoterms-logs-table.php:217 -#: inc/tag-clouds-table.php:92 inc/suggestterms-table.php:90 -#: inc/autolinks-table.php:91 +#: inc/related-posts-table.php:92 inc/suggestterms-table.php:90 +#: inc/tag-clouds-table.php:92 msgid "No item avaliable." msgstr "" -#: inc/tag-clouds.php:418 inc/related-posts.php:591 inc/autoterms.php:944 -#: inc/autoterms.php:978 +#: inc/autoterms.php:944 inc/autoterms.php:978 inc/related-posts.php:591 +#: inc/tag-clouds.php:418 msgid "No limit" msgstr "" @@ -1983,11 +2002,15 @@ msgstr "" msgid "No new/old valid term specified!" msgstr "" +#: inc/class.admin.php:154 +msgid "No permission!" +msgstr "" + #: inc/related-posts-widget.php:142 msgid "No Related Posts shortcode available. Add new shortcode " msgstr "" -#: inc/helper.options.default.php:46 inc/class.client.related_posts.php:101 +#: inc/class.client.related_posts.php:101 inc/helper.options.default.php:47 #: inc/related-posts-functions.php:155 msgid "No related posts." msgstr "" @@ -2000,20 +2023,20 @@ msgstr "" msgid "No results from OpenCalais service." msgstr "" -#: inc/class.admin.suggest.php:351 inc/class.admin.clickterms.php:269 +#: inc/class.admin.clickterms.php:269 inc/class.admin.suggest.php:351 msgid "No results from your WordPress database." msgstr "" -#: inc/post-tags-functions.php:156 inc/class.client.post_tags.php:112 +#: inc/class.client.post_tags.php:112 inc/post-tags-functions.php:156 msgid "No tag for this post." msgstr "" -#: inc/helper.options.default.php:35 +#: inc/helper.options.default.php:36 msgid "No tags for this post." msgstr "" #: inc/class.client.tagcloud.php:66 inc/class.client.tagcloud.php:273 -#: inc/helper.options.default.php:57 +#: inc/helper.options.default.php:58 msgid "No tags." msgstr "" @@ -2057,11 +2080,11 @@ msgstr "" msgid "No terms for current post shortcode available. Add new shortcode " msgstr "" -#: inc/terms-table.php:271 +#: inc/terms-table.php:277 msgid "No terms found." msgstr "" -#: inc/class.admin.suggest.php:334 inc/class.admin.clickterms.php:221 +#: inc/class.admin.clickterms.php:221 inc/class.admin.suggest.php:334 msgid "No terms in your WordPress database." msgstr "" @@ -2077,9 +2100,9 @@ msgstr "" msgid "Nonce failed verification" msgstr "" -#: inc/related-posts.php:333 inc/autoterms-table.php:356 -#: inc/autoterms-logs-table.php:428 inc/suggestterms-table.php:355 -#: inc/autolinks-table.php:356 +#: inc/autolinks-table.php:356 inc/autoterms-logs-table.php:428 +#: inc/autoterms-table.php:356 inc/related-posts.php:333 +#: inc/suggestterms-table.php:355 msgid "None" msgstr "" @@ -2091,9 +2114,9 @@ msgstr "" msgid "Not found" msgstr "" -#: inc/suggestterms.php:94 inc/terms.php:194 inc/tag-clouds.php:95 -#: inc/autolinks.php:95 inc/related-posts.php:95 inc/post-tags.php:95 -#: inc/autoterms.php:105 inc/autoterms.php:112 inc/taxonomies.php:122 +#: inc/autolinks.php:94 inc/autoterms.php:105 inc/autoterms.php:112 +#: inc/post-tags.php:94 inc/related-posts.php:95 inc/suggestterms.php:94 +#: inc/tag-clouds.php:95 inc/taxonomies.php:122 inc/terms.php:194 msgid "Number of items per page" msgstr "" @@ -2101,8 +2124,8 @@ msgstr "" msgid "Object" msgstr "" -#: inc/suggestterms.php:797 inc/tag-clouds.php:842 inc/autolinks.php:900 -#: inc/related-posts.php:875 inc/post-tags.php:719 inc/autoterms.php:1149 +#: inc/autolinks.php:993 inc/autoterms.php:1149 inc/post-tags.php:752 +#: inc/related-posts.php:875 inc/suggestterms.php:797 inc/tag-clouds.php:842 #: inc/taxonomies.php:1694 msgid "Okay" msgstr "" @@ -2139,11 +2162,11 @@ msgid "" "obtain a key and set it on TaxoPress options." msgstr "" -#: inc/related-posts.php:290 inc/post-tags.php:291 inc/autoterms.php:412 +#: inc/autoterms.php:412 inc/post-tags.php:298 inc/related-posts.php:290 msgid "Options" msgstr "" -#: inc/class.admin.php:566 +#: inc/class.admin.php:582 msgid "Options saved" msgstr "" @@ -2155,11 +2178,11 @@ msgstr "" msgid "Order by for display tags:" msgstr "" -#: inc/helper.options.admin.php:111 +#: inc/helper.options.admin.php:45 msgid "Order by for tags display:" msgstr "" -#: inc/helper.options.admin.php:88 +#: inc/helper.options.admin.php:22 msgid "Order by for tags selection:" msgstr "" @@ -2171,11 +2194,11 @@ msgstr "" msgid "Order for display tags:" msgstr "" -#: inc/helper.options.admin.php:123 +#: inc/helper.options.admin.php:57 msgid "Order tags display:" msgstr "" -#: inc/helper.options.admin.php:100 +#: inc/helper.options.admin.php:34 msgid "Order tags selection:" msgstr "" @@ -2183,7 +2206,7 @@ msgstr "" msgid "Ordering for choosing term from the database" msgstr "" -#: inc/suggestterms.php:530 inc/class.admin.clickterms.php:92 +#: inc/class.admin.clickterms.php:92 inc/suggestterms.php:530 msgid "Ordering for choosing terms" msgstr "" @@ -2245,7 +2268,7 @@ msgstr "" msgid "Permission denied." msgstr "" -#: inc/tag-clouds.php:591 inc/class.widgets.php:318 +#: inc/class.widgets.php:318 inc/tag-clouds.php:591 msgid "Pixel" msgstr "" @@ -2269,8 +2292,8 @@ msgstr "" msgid "Please choose an option for \"Sources\"" msgstr "" -#: inc/suggestterms.php:793 inc/tag-clouds.php:839 inc/autolinks.php:897 -#: inc/related-posts.php:872 inc/post-tags.php:716 inc/autoterms.php:1146 +#: inc/autolinks.php:990 inc/autoterms.php:1146 inc/post-tags.php:749 +#: inc/related-posts.php:872 inc/suggestterms.php:793 inc/tag-clouds.php:839 #: inc/taxonomies.php:1691 msgid "Please complete the following required fields to save your changes:" msgstr "" @@ -2291,7 +2314,7 @@ msgstr "" msgid "Please provide a taxonomy to delete" msgstr "" -#: inc/class.admin.php:421 +#: inc/class.admin.php:425 msgid "Please select a valid" msgstr "" @@ -2330,11 +2353,11 @@ msgstr "" msgid "Post" msgstr "" -#: inc/autolinks.php:410 inc/autoterms.php:503 inc/autolinks-table.php:372 +#: inc/autolinks-table.php:372 inc/autolinks.php:435 inc/autoterms.php:503 msgid "Post Content" msgstr "" -#: inc/autolinks.php:419 inc/autoterms.php:511 inc/autolinks-table.php:374 +#: inc/autolinks-table.php:374 inc/autolinks.php:444 inc/autoterms.php:511 msgid "Post Content and Title" msgstr "" @@ -2342,23 +2365,23 @@ msgstr "" msgid "Post content is empty." msgstr "" -#: inc/helper.options.admin.php:348 +#: inc/helper.options.admin.php:300 msgid "Post link format:" msgstr "" -#: inc/helper.options.admin.php:252 +#: inc/helper.options.admin.php:193 msgid "Post tag separator string:" msgstr "" -#: inc/class.admin.php:290 +#: inc/class.admin.php:293 msgid "Post tags" msgstr "" -#: inc/post-tags.php:472 +#: inc/post-tags.php:495 msgid "Post term separator string:\t" msgstr "" -#: inc/autolinks.php:415 inc/autoterms.php:507 inc/autolinks-table.php:373 +#: inc/autolinks-table.php:373 inc/autolinks.php:440 inc/autoterms.php:507 msgid "Post Title" msgstr "" @@ -2366,27 +2389,27 @@ msgstr "" msgid "Post title" msgstr "" -#: inc/tag-clouds.php:349 inc/related-posts.php:403 -#: inc/related-posts-table.php:68 inc/tag-clouds-table.php:68 +#: inc/related-posts-table.php:68 inc/related-posts.php:403 +#: inc/tag-clouds-table.php:68 inc/tag-clouds.php:349 msgid "Post Type" msgstr "" -#: inc/terms-table.php:192 inc/autoterms-logs-table.php:128 -#: inc/autoterms-logs-table.php:189 +#: inc/autoterms-logs-table.php:128 inc/autoterms-logs-table.php:189 +#: inc/terms-table.php:199 msgid "Post type" msgstr "" -#: inc/suggestterms.php:400 inc/autolinks.php:287 inc/terms-table.php:115 -#: inc/class-taxonomies-table.php:70 inc/autoterms.php:559 -#: inc/taxonomies.php:345 +#: inc/autolinks.php:294 inc/autoterms.php:559 +#: inc/class-taxonomies-table.php:70 inc/suggestterms.php:400 +#: inc/taxonomies.php:345 inc/terms-table.php:115 msgid "Post Types" msgstr "" -#: inc/class.admin.php:291 +#: inc/class.admin.php:294 msgid "Posts" msgstr "" -#: inc/autolinks-functions.php:154 inc/helper.options.default.php:27 +#: inc/autolinks-functions.php:160 inc/helper.options.default.php:28 #, php-format msgid "Posts tagged with %s" msgstr "" @@ -2395,27 +2418,27 @@ msgstr "" msgid "Pourcent" msgstr "" -#: inc/autolinks.php:686 +#: inc/autolinks.php:698 msgid "pre" msgstr "" -#: inc/autolinks.php:668 +#: inc/autolinks.php:676 msgid "Prevent Auto Links inside classes or IDs" msgstr "" -#: inc/autolinks.php:690 +#: inc/autolinks.php:702 msgid "Prevent Auto Links inside elements" msgstr "" -#: inc/helper.options.admin.php:455 +#: inc/helper.options.admin.php:407 msgid "Priority on hook the_content" msgstr "" -#: inc/autolinks.php:746 +#: inc/autolinks.php:831 msgid "Priority on the_content and the_title hook" msgstr "" -#: inc/terms-table.php:212 inc/taxonomies.php:196 +#: inc/taxonomies.php:196 inc/terms-table.php:219 msgid "Private Taxonomies" msgstr "" @@ -2432,7 +2455,7 @@ msgstr "" msgid "Public Queryable" msgstr "" -#: inc/terms-table.php:211 inc/taxonomies.php:195 +#: inc/taxonomies.php:195 inc/terms-table.php:218 msgid "Public Taxonomies" msgstr "" @@ -2444,23 +2467,23 @@ msgstr "" msgid "Query Var" msgstr "" -#: inc/terms-table.php:582 +#: inc/terms-table.php:611 msgid "Quick Edit" msgstr "" #. %s: Taxonomy term name. -#: inc/terms-table.php:388 +#: inc/terms-table.php:393 #, php-format msgid "Quick edit “%s” inline" msgstr "" -#: inc/terms-table.php:389 +#: inc/terms-table.php:394 msgid "Quick Edit" msgstr "" -#: inc/suggestterms.php:495 inc/tag-clouds.php:437 inc/tag-clouds.php:472 -#: inc/related-posts.php:640 inc/class.admin.clickterms.php:76 -#: inc/class.widgets.php:246 +#: inc/class.admin.clickterms.php:76 inc/class.widgets.php:246 +#: inc/related-posts.php:640 inc/suggestterms.php:495 inc/tag-clouds.php:437 +#: inc/tag-clouds.php:472 msgid "Random" msgstr "" @@ -2484,9 +2507,9 @@ msgstr "" msgid "Related Post" msgstr "" -#: inc/related-posts.php:72 inc/related-posts.php:73 inc/related-posts.php:126 -#: inc/class.admin.php:786 inc/related-posts-table.php:15 -#: inc/helper.options.admin.php:27 +#: inc/class.admin.php:807 inc/functions.inc.php:374 +#: inc/related-posts-table.php:15 inc/related-posts.php:72 +#: inc/related-posts.php:73 inc/related-posts.php:126 msgid "Related Posts" msgstr "" @@ -2498,7 +2521,7 @@ msgstr "" msgid "Related Posts are added on " msgstr "" -#: inc/helper.options.admin.php:388 +#: inc/helper.options.admin.php:340 msgid "Related posts by terms" msgstr "" @@ -2518,7 +2541,7 @@ msgstr "" msgid "Related Posts Order" msgstr "" -#: inc/helper.options.admin.php:332 +#: inc/helper.options.admin.php:284 msgid "Related Posts Order:" msgstr "" @@ -2530,7 +2553,7 @@ msgstr "" msgid "Related Posts successfully deleted." msgstr "" -#: inc/terms-table.php:403 +#: inc/terms-table.php:408 msgid "Remove From All Posts" msgstr "" @@ -2560,19 +2583,19 @@ msgstr "" msgid "Renamed term(s) «%1$s» to «%2$s»" msgstr "" -#: inc/post-tags.php:689 +#: inc/post-tags.php:722 msgid "Replaced by the RSS tag link" msgstr "" -#: inc/post-tags.php:690 +#: inc/post-tags.php:723 msgid "Replaced by the tag ID" msgstr "" -#: inc/post-tags.php:691 +#: inc/post-tags.php:724 msgid "Replaced by the tag’s name, formatted for attribute HTML" msgstr "" -#: includes-core/TaxopressCoreAdmin.php:117 +#: includes-core/TaxopressCoreAdmin.php:122 msgid "Request Support" msgstr "" @@ -2604,12 +2627,12 @@ msgstr "" msgid "Rewrite With Front" msgstr "" -#: inc/post-tags-table.php:345 inc/related-posts-table.php:385 -#: inc/autolinks-table.php:346 +#: inc/autolinks-table.php:346 inc/post-tags-table.php:345 +#: inc/related-posts-table.php:385 msgid "RSS feed" msgstr "" -#: inc/autolinks.php:841 +#: inc/autolinks.php:933 msgid "Save Auto Links" msgstr "" @@ -2633,7 +2656,7 @@ msgstr "" msgid "Save Terms Display" msgstr "" -#: inc/post-tags.php:642 +#: inc/post-tags.php:673 msgid "Save Terms for Current Post" msgstr "" @@ -2641,7 +2664,7 @@ msgstr "" msgid "Schedule" msgstr "" -#: includes-core/TaxopressCoreAdmin.php:152 +#: includes-core/TaxopressCoreAdmin.php:154 msgid "Schedule Auto Terms for your content" msgstr "" @@ -2663,7 +2686,7 @@ msgid "" "Screen reader text for the pagination heading on the term listing screen." msgstr "" -#: inc/autolinks.php:684 +#: inc/autolinks.php:696 msgid "script" msgstr "" @@ -2704,9 +2727,9 @@ msgid "Search Related Posts" msgstr "" #. %s: search keywords -#: inc/suggestterms.php:138 inc/terms.php:232 inc/tag-clouds.php:136 -#: inc/autolinks.php:136 inc/related-posts.php:136 inc/post-tags.php:136 -#: inc/autoterms.php:193 inc/autoterms.php:248 inc/taxonomies.php:163 +#: inc/autolinks.php:134 inc/autoterms.php:193 inc/autoterms.php:248 +#: inc/post-tags.php:134 inc/related-posts.php:136 inc/suggestterms.php:138 +#: inc/tag-clouds.php:136 inc/taxonomies.php:163 inc/terms.php:232 #, php-format msgid "Search results for “%s”" msgstr "" @@ -2719,11 +2742,11 @@ msgstr "" msgid "Search Taxonomies" msgstr "" -#: inc/class.admin.php:472 +#: inc/class.admin.php:477 msgid "Search TaxoPress Logs" msgstr "" -#: inc/terms.php:246 +#: inc/terms.php:248 msgid "Search Terms" msgstr "" @@ -2731,7 +2754,7 @@ msgstr "" msgid "Search Terms Display" msgstr "" -#: inc/post-tags.php:149 +#: inc/post-tags.php:147 msgid "Search Terms for Current Post" msgstr "" @@ -2778,7 +2801,7 @@ msgstr "" msgid "Separate Media Tags with commas" msgstr "" -#: inc/autolinks.php:670 +#: inc/autolinks.php:680 msgid "" "Separate multiple entries with a comma. For example: .notag, #main-header" msgstr "" @@ -2808,14 +2831,14 @@ msgstr "" msgid "Sets a custom query_var slug for this taxonomy." msgstr "" -#: inc/class.admin.php:523 inc/autoterms-logs-table.php:164 -#: inc/autoterms-logs-table.php:195 +#: inc/autoterms-logs-table.php:164 inc/autoterms-logs-table.php:195 +#: inc/class.admin.php:529 msgid "Settings" msgstr "" -#: inc/autolinks-functions.php:252 inc/post-tags-functions.php:189 +#: inc/autolinks-functions.php:257 inc/autoterms-functions.php:333 +#: inc/post-tags-functions.php:189 inc/related-posts-functions.php:230 #: inc/suggestterms-functions.php:246 inc/tag-clouds-functions.php:238 -#: inc/related-posts-functions.php:230 inc/autoterms-functions.php:333 msgid "Settings updated successfully." msgstr "" @@ -2828,7 +2851,7 @@ msgstr "" msgid "Shortcode entry successfully deleted." msgstr "" -#: inc/tag-clouds.php:779 inc/related-posts.php:814 inc/post-tags.php:659 +#: inc/post-tags.php:691 inc/related-posts.php:814 inc/tag-clouds.php:779 msgid "Shortcode: " msgstr "" @@ -2856,7 +2879,7 @@ msgstr "" msgid "Show Existing Terms" msgstr "" -#: inc/suggestterms.php:459 inc/class.admin.clickterms.php:173 +#: inc/class.admin.clickterms.php:173 inc/suggestterms.php:459 msgid "Show existing terms" msgstr "" @@ -2884,8 +2907,8 @@ msgstr "" msgid "Show user interface" msgstr "" -#: inc/post-tags-table.php:344 inc/related-posts-table.php:384 -#: inc/autolinks-table.php:345 +#: inc/autolinks-table.php:345 inc/post-tags-table.php:344 +#: inc/related-posts-table.php:384 msgid "Single post display" msgstr "" @@ -2893,8 +2916,8 @@ msgstr "" msgid "Singular Label" msgstr "" -#: inc/tag-clouds.php:435 inc/terms-table.php:113 inc/terms-table.php:590 -#: inc/class-tag-table.php:42 inc/class.widgets.php:240 inc/taxonomies.php:376 +#: inc/class-tag-table.php:42 inc/class.widgets.php:240 inc/tag-clouds.php:435 +#: inc/taxonomies.php:376 inc/terms-table.php:113 inc/terms-table.php:619 msgid "Slug" msgstr "" @@ -2906,8 +2929,8 @@ msgstr "" msgid "Slug has changed" msgstr "" -#: inc/autoterms-table.php:69 inc/autoterms-logs-table.php:146 -#: inc/autoterms-logs-table.php:191 +#: inc/autoterms-logs-table.php:146 inc/autoterms-logs-table.php:191 +#: inc/autoterms-table.php:69 msgid "Source" msgstr "" @@ -2931,7 +2954,7 @@ msgstr "" msgid "Stop words" msgstr "" -#: inc/autolinks.php:685 +#: inc/autolinks.php:697 msgid "style" msgstr "" @@ -2955,8 +2978,8 @@ msgstr "" msgid "Suggest Term Post type" msgstr "" +#: inc/functions.inc.php:392 inc/suggestterms-table.php:15 #: inc/suggestterms.php:71 inc/suggestterms.php:72 inc/suggestterms.php:125 -#: inc/helper.options.admin.php:48 inc/suggestterms-table.php:15 msgid "Suggest Terms" msgstr "" @@ -2980,6 +3003,10 @@ msgstr "" msgid "Support hashtags symbols # in Auto Terms." msgstr "" +#: inc/autolinks.php:315 inc/terms-table.php:116 +msgid "Synonyms" +msgstr "" + #: inc/class-tag-table.php:12 msgid "Tag Cloud" msgstr "" @@ -2992,12 +3019,12 @@ msgstr "" msgid "Tag Cloud (TaxoPress Legacy)" msgstr "" -#: inc/helper.options.admin.php:215 +#: inc/helper.options.admin.php:153 msgid "Tag cloud Shortcode" msgstr "" -#: inc/class.widgets.php:369 inc/helper.options.admin.php:145 -#: inc/helper.options.admin.php:274 +#: inc/class.widgets.php:369 inc/helper.options.admin.php:79 +#: inc/helper.options.admin.php:222 msgid "Tag link format:" msgstr "" @@ -3009,16 +3036,16 @@ msgstr "" msgid "Tags Cloud" msgstr "" -#: inc/helper.options.admin.php:134 +#: inc/helper.options.admin.php:68 msgid "Tags cloud type format:" msgstr "" -#: inc/class.admin.php:784 +#: inc/class.admin.php:805 msgid "Tags for Current Post" msgstr "" -#: inc/helper.options.default.php:33 inc/post-tags-functions.php:152 -#: inc/class.client.post_tags.php:106 +#: inc/class.client.post_tags.php:106 inc/helper.options.default.php:34 +#: inc/post-tags-functions.php:152 msgid "Tags: " msgstr "" @@ -3026,19 +3053,19 @@ msgstr "" msgid "Target content" msgstr "" -#: inc/class-taxonomies-table.php:15 inc/helper.options.admin.php:6 +#: inc/class-taxonomies-table.php:15 inc/functions.inc.php:356 #: inc/taxonomies.php:99 inc/taxonomies.php:100 inc/taxonomies.php:153 msgid "Taxonomies" msgstr "" -#: inc/tag-clouds.php:377 inc/autolinks.php:367 inc/related-posts.php:440 -#: inc/post-tags.php:363 inc/autoterms-table.php:67 inc/terms-table.php:114 -#: inc/terms-table.php:201 inc/post-tags-table.php:67 -#: inc/related-posts-table.php:67 inc/class-taxonomies-table.php:14 +#: inc/autolinks-table.php:67 inc/autolinks.php:388 #: inc/autoterms-logs-table.php:137 inc/autoterms-logs-table.php:190 -#: inc/class.admin.clickterms.php:55 inc/autoterms.php:493 -#: inc/tag-clouds-table.php:67 inc/suggestterms-table.php:67 -#: inc/autolinks-table.php:67 +#: inc/autoterms-table.php:67 inc/autoterms.php:493 +#: inc/class-taxonomies-table.php:14 inc/class.admin.clickterms.php:55 +#: inc/post-tags-table.php:67 inc/post-tags.php:373 +#: inc/related-posts-table.php:67 inc/related-posts.php:440 +#: inc/suggestterms-table.php:67 inc/tag-clouds-table.php:67 +#: inc/tag-clouds.php:377 inc/terms-table.php:114 inc/terms-table.php:208 msgid "Taxonomy" msgstr "" @@ -3062,14 +3089,14 @@ msgstr "" msgid "Taxonomy slug cannot be numbers only." msgstr "" -#: inc/helper.options.admin.php:306 +#: inc/helper.options.admin.php:256 msgid "Taxonomy:" msgstr "" #. Name of the plugin #. Author of the plugin -#: inc/class.admin.php:510 inc/class.admin.post.php:38 -#: inc/class-taxonomies-table.php:353 +#: inc/class-taxonomies-table.php:353 inc/class.admin.php:516 +#: inc/class.admin.post.php:38 msgid "TaxoPress" msgstr "" @@ -3079,33 +3106,33 @@ msgid "" "WordPress taxonomy terms." msgstr "" -#: inc/autolinks.php:869 inc/autoterms.php:1118 +#: inc/autolinks.php:962 inc/autoterms.php:1118 msgid "TaxoPress and Languages" msgstr "" -#: inc/class.admin.php:470 inc/class.admin.php:471 inc/class.admin.php:473 -#: inc/class.admin.php:478 +#: inc/class.admin.php:475 inc/class.admin.php:476 inc/class.admin.php:478 +#: inc/class.admin.php:483 msgid "TaxoPress Logs" msgstr "" -#: inc/class.admin.php:572 +#: inc/class.admin.php:588 msgid "TaxoPress options resetted to default options!" msgstr "" -#: includes-core/TaxopressCoreAdmin.php:203 +#: includes-core/TaxopressCoreAdmin.php:207 msgid "" "TaxoPress Pro allows you to change how Auto Terms analyzes your posts. You " "will need to know how to write Regular Expressions to use this feature." msgstr "" -#: includes-core/TaxopressCoreAdmin.php:180 +#: includes-core/TaxopressCoreAdmin.php:183 msgid "" "TaxoPress Pro allows you to generate new terms for your content using the " "Dandelion and Open Calais services. These services can analyze your content " "and add new terms." msgstr "" -#: includes-core/TaxopressCoreAdmin.php:157 +#: includes-core/TaxopressCoreAdmin.php:159 msgid "" "TaxoPress Pro allows you to schedule the \"Auto Terms to existing content\" " "feature. This is helpful if you regularly import content into WordPress. " @@ -3131,13 +3158,13 @@ msgid "" "content. It may not be successful for all post types and layouts." msgstr "" -#: inc/post-tags.php:415 +#: inc/post-tags.php:432 msgid "" "TaxoPress will attempt to automatically display terms in this content. It " "may not be successful for all post types and layouts." msgstr "" -#: inc/autolinks.php:543 +#: inc/autolinks.php:526 msgid "" "TaxoPress will attempt to automatically insert Auto Links in this content. " "It may not be successful for all post types and layouts." @@ -3151,7 +3178,7 @@ msgstr "" msgid "TaxoPress: Mass Edit Terms" msgstr "" -#: inc/class.admin.php:509 inc/class.admin.php:522 +#: inc/class.admin.php:515 inc/class.admin.php:528 #: views/admin/page-settings.php:3 msgid "TaxoPress: Options" msgstr "" @@ -3164,7 +3191,7 @@ msgstr "" msgid "Term" msgstr "" -#: inc/terms-table.php:248 inc/terms-functions.php:81 +#: inc/terms-functions.php:81 inc/terms-table.php:255 msgid "Term deleted successfully." msgstr "" @@ -3176,21 +3203,21 @@ msgstr "" msgid "Term group" msgstr "" -#: inc/tag-clouds.php:686 inc/autolinks.php:736 inc/related-posts.php:717 -#: inc/post-tags.php:561 +#: inc/autolinks.php:821 inc/post-tags.php:593 inc/related-posts.php:717 +#: inc/tag-clouds.php:686 msgid "Term link class" msgstr "" -#: inc/tag-clouds.php:699 inc/related-posts.php:730 inc/post-tags.php:574 +#: inc/post-tags.php:606 inc/related-posts.php:730 inc/tag-clouds.php:699 msgid "Term link format" msgstr "" -#: inc/terms-table.php:585 +#: inc/terms-table.php:614 msgctxt "term name" msgid "Name" msgstr "" -#: inc/terms-table.php:594 +#: inc/terms-table.php:623 msgctxt "term name" msgid "Taxonomy" msgstr "" @@ -3220,7 +3247,7 @@ msgstr "" msgid "Term(s) to rename:" msgstr "" -#: inc/terms.php:171 inc/terms.php:172 inc/terms.php:223 inc/terms-table.php:15 +#: inc/terms-table.php:15 inc/terms.php:171 inc/terms.php:172 inc/terms.php:223 msgid "Terms" msgstr "" @@ -3237,13 +3264,13 @@ msgstr "" msgid "Terms added successfully" msgstr "" -#: inc/terms-table.php:245 +#: inc/terms-table.php:252 msgid "Terms deleted successfully." msgstr "" -#: inc/tag-clouds.php:72 inc/tag-clouds.php:73 inc/tag-clouds.php:126 -#: inc/tag-clouds-table.php:14 inc/tag-clouds-table.php:15 -#: inc/helper.options.admin.php:13 +#: inc/functions.inc.php:362 inc/tag-clouds-table.php:14 +#: inc/tag-clouds-table.php:15 inc/tag-clouds.php:72 inc/tag-clouds.php:73 +#: inc/tag-clouds.php:126 msgid "Terms Display" msgstr "" @@ -3263,9 +3290,9 @@ msgstr "" msgid "Terms Display successfully deleted." msgstr "" -#: inc/post-tags.php:72 inc/post-tags.php:126 inc/post-tags.php:679 -#: inc/post-tags-table.php:14 inc/post-tags-table.php:15 -#: inc/helper.options.admin.php:20 +#: inc/functions.inc.php:368 inc/post-tags-table.php:14 +#: inc/post-tags-table.php:15 inc/post-tags.php:71 inc/post-tags.php:125 +#: inc/post-tags.php:712 msgid "Terms for Current Post" msgstr "" @@ -3277,11 +3304,11 @@ msgstr "" msgid "Terms for Current Post are added on " msgstr "" -#: inc/post-tags.php:550 +#: inc/post-tags.php:582 msgid "Terms for Current Post div class" msgstr "" -#: inc/autolinks.php:691 +#: inc/autolinks.php:705 msgid "Terms inside these html tags will not be auto link." msgstr "" @@ -3290,31 +3317,31 @@ msgstr "" msgid "Terms will be added to all %s If no \"Term(s) to match\" is specified." msgstr "" -#: inc/helper.options.admin.php:258 +#: inc/helper.options.admin.php:203 msgid "Text to display after tags list:" msgstr "" -#: inc/post-tags.php:494 +#: inc/post-tags.php:521 msgid "Text to display after terms list" msgstr "" -#: inc/helper.options.admin.php:255 +#: inc/helper.options.admin.php:198 msgid "Text to display before tags list:" msgstr "" -#: inc/post-tags.php:483 +#: inc/post-tags.php:508 msgid "Text to display before terms list" msgstr "" -#: inc/helper.options.admin.php:280 +#: inc/helper.options.admin.php:229 msgid "Text to display if no tags found:" msgstr "" -#: inc/post-tags.php:505 +#: inc/post-tags.php:534 msgid "Text to display if no terms found" msgstr "" -#: inc/helper.options.admin.php:484 +#: inc/helper.options.admin.php:436 msgid "Text to display into title attribute for links:" msgstr "" @@ -3322,7 +3349,7 @@ msgstr "" msgid "Text to show when there is no related post" msgstr "" -#: inc/class.admin.php:650 +#: inc/class.admin.php:669 #, php-format msgid "Thanks for using TaxoPress | %1sTaxoPress.com%2s | Version %3s" msgstr "" @@ -3336,7 +3363,7 @@ msgstr "" msgid "The base slug that this taxonomy will use in the REST API." msgstr "" -#: inc/helper.options.admin.php:180 +#: inc/helper.options.admin.php:114 msgid "" "The colours are hexadecimal colours, and need to have the full six digits " "(#eee is the shorthand version of #eeeeee)." @@ -3354,7 +3381,7 @@ msgstr "" msgid "The font size for the term" msgstr "" -#: inc/helper.options.admin.php:202 +#: inc/helper.options.admin.php:140 msgid "" "The font size units option determines the units that the two font sizes use." msgstr "" @@ -3373,7 +3400,7 @@ msgid "" "WP_REST_Terms_Controller." msgstr "" -#: inc/post-tags.php:687 +#: inc/post-tags.php:720 msgid "The name of the tag" msgstr "" @@ -3385,7 +3412,7 @@ msgstr "" msgid "The name of the term with any HTML stripped out" msgstr "" -#: inc/autolinks.php:776 +#: inc/autolinks.php:867 msgid "" "The new Auto Links engine uses the DOMDocument PHP class and may offer " "better performance. If your server does not support this functionality, " @@ -3408,7 +3435,7 @@ msgstr "" msgid "The post excerpt" msgstr "" -#: inc/related-posts.php:130 inc/helper.options.admin.php:30 +#: inc/functions.inc.php:375 inc/related-posts.php:130 msgid "" "The Related Posts feature works by checking for shared taxonomy terms. If " "your post has the terms “WordPress” and “Website”, then Related Posts will " @@ -3439,11 +3466,11 @@ msgstr "" msgid "The title of the post" msgstr "" -#: inc/helper.options.admin.php:191 +#: inc/helper.options.admin.php:127 msgid "The two font sizes are the size of the largest and smallest tags." msgstr "" -#: inc/helper.options.admin.php:199 +#: inc/helper.options.admin.php:137 msgid "The units to display the font sizes with, on tag clouds:" msgstr "" @@ -3451,7 +3478,7 @@ msgstr "" msgid "The URL of the post" msgstr "" -#: inc/post-tags.php:686 +#: inc/post-tags.php:719 msgid "The URL of the tag" msgstr "" @@ -3482,25 +3509,25 @@ msgstr "" msgid "There's no content to scan." msgstr "" -#: inc/helper.options.admin.php:301 +#: inc/helper.options.admin.php:251 msgid "" "These settings are no longer being updated. Please use the \"Related Posts\" " "screen instead." msgstr "" -#: inc/helper.options.admin.php:78 +#: inc/helper.options.admin.php:12 msgid "" "These settings are no longer being updated. Please use the \"Terms Display\" " "screen instead." msgstr "" -#: inc/helper.options.admin.php:230 +#: inc/helper.options.admin.php:168 msgid "" "These settings are no longer being updated. Please use the \"Terms for " "Current Post\" screen instead." msgstr "" -#: inc/class.admin.php:330 +#: inc/class.admin.php:333 msgid "This custom post type not have taxonomies." msgstr "" @@ -3516,36 +3543,36 @@ msgid "" "Existing Content feature." msgstr "" -#: inc/post-tags.php:130 inc/helper.options.admin.php:23 +#: inc/functions.inc.php:369 inc/post-tags.php:128 msgid "" "This feature allows you create a customizable display of all the terms " "assigned to the current post." msgstr "" -#: inc/tag-clouds.php:130 inc/helper.options.admin.php:16 +#: inc/functions.inc.php:363 inc/tag-clouds.php:130 msgid "" "This feature allows you to create a customizable display of all the terms in " "one taxonomy." msgstr "" -#: inc/helper.options.admin.php:9 inc/taxonomies.php:157 +#: inc/functions.inc.php:357 inc/taxonomies.php:157 msgid "" "This feature allows you to create new taxonomies and edit all the settings " "for each taxonomy." msgstr "" -#: inc/helper.options.admin.php:391 +#: inc/helper.options.admin.php:343 msgid "" "This feature allows you to display related posts based on terms relation." msgstr "" -#: inc/helper.options.admin.php:58 +#: inc/functions.inc.php:399 msgid "" "This feature allows you to edit the terms of any taxonomy for multiple posts " "at the same time." msgstr "" -#: inc/helper.options.admin.php:65 +#: inc/functions.inc.php:405 msgid "" "This feature allows you to edit, merge, delete and add terms for any " "taxonomy." @@ -3555,7 +3582,7 @@ msgstr "" msgid "This feature allows you to remove rarely used terms." msgstr "" -#: inc/suggestterms.php:130 inc/helper.options.admin.php:51 +#: inc/functions.inc.php:393 inc/suggestterms.php:130 msgid "" "This feature helps when you're writing content. \"Suggest Terms\" can show a " "metabox where you can browse all your existing terms. \"Suggest Terms\" can " @@ -3569,7 +3596,7 @@ msgid "" "the terms given." msgstr "" -#: inc/class.admin.php:617 +#: inc/class.admin.php:634 msgid "This feature requires at least 1 tag to work. Begin by adding tags!" msgstr "" @@ -3584,7 +3611,7 @@ msgid "" "This feature shows a metabox where you can browse all your existing terms." msgstr "" -#: inc/class.admin.php:619 +#: inc/class.admin.php:636 msgid "" "This feature works only with activated JavaScript. Activate it in your Web " "browser so you can!" @@ -3618,7 +3645,7 @@ msgstr "" msgid "this page." msgstr "" -#: inc/tag-clouds.php:808 inc/post-tags.php:688 +#: inc/post-tags.php:721 inc/tag-clouds.php:808 msgid "This provides rel tag markup" msgstr "" @@ -3626,33 +3653,37 @@ msgstr "" msgid "This screen allows you search and edit all the terms on your site." msgstr "" +#: inc/dashboard.php:91 +msgid "This screen allows you to enable or disable TaxoPress features." +msgstr "" + #: inc/autoterms.php:993 msgid "This setting allows you to add Auto Terms only to recent content." msgstr "" -#: inc/autolinks.php:610 +#: inc/autolinks.php:605 msgid "" "This setting determines the maximum number of Auto Links for each term in " "one post." msgstr "" -#: inc/autolinks.php:597 +#: inc/autolinks.php:588 msgid "This setting determines the maximum number of Auto Links in one post." msgstr "" -#: inc/helper.options.admin.php:426 +#: inc/helper.options.admin.php:378 msgid "" "This setting determines the maximum number of links created by article for " "the same tag. Default: 1." msgstr "" -#: inc/helper.options.admin.php:418 +#: inc/helper.options.admin.php:370 msgid "" "This setting determines the maximum number of links created by article. " "Default: 10." msgstr "" -#: inc/helper.options.admin.php:410 +#: inc/helper.options.admin.php:362 msgid "" "This setting helps prevent rarely used terms from being used by Auto Links. " "Default: 1." @@ -3675,12 +3706,11 @@ msgid "" "tab." msgstr "" -#: inc/suggestterms.php:316 inc/tag-clouds.php:316 inc/autolinks.php:320 -#: inc/related-posts.php:313 inc/post-tags.php:314 inc/autoterms-table.php:66 -#: inc/terms-table.php:112 inc/post-tags-table.php:66 -#: inc/related-posts-table.php:66 inc/autoterms.php:445 -#: inc/tag-clouds-table.php:66 inc/suggestterms-table.php:66 -#: inc/autolinks-table.php:66 +#: inc/autolinks-table.php:66 inc/autolinks.php:341 inc/autoterms-table.php:66 +#: inc/autoterms.php:445 inc/post-tags-table.php:66 inc/post-tags.php:324 +#: inc/related-posts-table.php:66 inc/related-posts.php:313 +#: inc/suggestterms-table.php:66 inc/suggestterms.php:316 +#: inc/tag-clouds-table.php:66 inc/tag-clouds.php:316 inc/terms-table.php:112 msgid "Title" msgstr "" @@ -3692,12 +3722,12 @@ msgstr "" msgid "Title:" msgstr "" -#: inc/autolinks.php:584 +#: inc/autolinks.php:571 msgid "" "To be included in Auto Links, a term must be used at least this many times." msgstr "" -#: inc/autolinks.php:267 +#: inc/autolinks.php:269 msgid "To create more Auto Links, please upgrade to TaxoPress Pro." msgstr "" @@ -3721,14 +3751,14 @@ msgstr "" msgid "To create more Terms for Current Post, please upgrade to TaxoPress Pro." msgstr "" +#: inc/autolinks.php:753 inc/autolinks.php:786 inc/autolinks.php:851 +#: inc/autoterms.php:605 inc/autoterms.php:618 inc/autoterms.php:650 +#: inc/autoterms.php:663 inc/autoterms.php:694 inc/autoterms.php:751 +#: inc/autoterms.php:776 inc/autoterms.php:801 inc/autoterms.php:876 +#: inc/post-tags.php:551 inc/related-posts.php:463 inc/related-posts.php:676 #: inc/suggestterms.php:449 inc/suggestterms.php:559 inc/suggestterms.php:574 #: inc/suggestterms.php:603 inc/suggestterms.php:661 inc/tag-clouds.php:521 -#: inc/tag-clouds.php:544 inc/tag-clouds.php:616 inc/autolinks.php:457 -#: inc/autolinks.php:484 inc/autolinks.php:762 inc/related-posts.php:463 -#: inc/related-posts.php:676 inc/post-tags.php:520 inc/autoterms.php:605 -#: inc/autoterms.php:618 inc/autoterms.php:650 inc/autoterms.php:663 -#: inc/autoterms.php:694 inc/autoterms.php:751 inc/autoterms.php:776 -#: inc/autoterms.php:801 inc/autoterms.php:876 inc/taxonomies.php:497 +#: inc/tag-clouds.php:544 inc/tag-clouds.php:616 inc/taxonomies.php:497 #: inc/taxonomies.php:616 inc/taxonomies.php:630 inc/taxonomies.php:771 #: inc/taxonomies.php:807 inc/taxonomies.php:833 inc/taxonomies.php:867 #: inc/taxonomies.php:891 inc/taxonomies.php:915 inc/taxonomies.php:941 @@ -3737,7 +3767,7 @@ msgstr "" msgid "True" msgstr "" -#: inc/helper.options.admin.php:476 +#: inc/helper.options.admin.php:428 msgid "Try new engine replacement ?" msgstr "" @@ -3749,31 +3779,31 @@ msgstr "" msgid "Unit font size:" msgstr "" -#: includes-core/TaxopressCoreAdmin.php:94 +#: includes-core/TaxopressCoreAdmin.php:99 msgid "Unlimited “Auto Links”" msgstr "" -#: includes-core/TaxopressCoreAdmin.php:95 +#: includes-core/TaxopressCoreAdmin.php:100 msgid "Unlimited “Auto Terms”" msgstr "" -#: includes-core/TaxopressCoreAdmin.php:93 +#: includes-core/TaxopressCoreAdmin.php:98 msgid "Unlimited “Related Posts”" msgstr "" -#: includes-core/TaxopressCoreAdmin.php:96 +#: includes-core/TaxopressCoreAdmin.php:101 msgid "Unlimited “Suggest Terms”" msgstr "" -#: includes-core/TaxopressCoreAdmin.php:91 +#: includes-core/TaxopressCoreAdmin.php:96 msgid "Unlimited “Term Display”" msgstr "" -#: includes-core/TaxopressCoreAdmin.php:92 +#: includes-core/TaxopressCoreAdmin.php:97 msgid "Unlimited “Terms for Current Posts”" msgstr "" -#: inc/terms-table.php:610 inc/autoterms-logs-table.php:550 +#: inc/autoterms-logs-table.php:550 inc/terms-table.php:639 msgid "Update" msgstr "" @@ -3804,20 +3834,20 @@ msgstr "" msgid "Update options »" msgstr "" -#: inc/class.admin.php:475 +#: inc/class.admin.php:480 msgid "Update TaxoPress Logs" msgstr "" -#: inc/suggestterms.php:717 inc/tag-clouds.php:731 inc/autolinks.php:807 -#: inc/related-posts.php:763 inc/post-tags.php:608 inc/autoterms.php:1056 -#: includes-core/TaxopressCoreAdmin.php:103 -#: includes-core/TaxopressCoreAdmin.php:159 -#: includes-core/TaxopressCoreAdmin.php:182 -#: includes-core/TaxopressCoreAdmin.php:205 +#: inc/autolinks.php:899 inc/autoterms.php:1056 inc/post-tags.php:639 +#: inc/related-posts.php:763 inc/suggestterms.php:717 inc/tag-clouds.php:731 +#: includes-core/TaxopressCoreAdmin.php:108 +#: includes-core/TaxopressCoreAdmin.php:161 +#: includes-core/TaxopressCoreAdmin.php:185 +#: includes-core/TaxopressCoreAdmin.php:209 msgid "Upgrade to Pro" msgstr "" -#: includes-core/TaxopressCoreAdmin.php:83 +#: includes-core/TaxopressCoreAdmin.php:88 msgid "Upgrade to TaxoPress Pro" msgstr "" @@ -3831,15 +3861,15 @@ msgstr "" msgid "Use auto color cloud:" msgstr "" -#: inc/autolinks.php:383 +#: inc/autolinks.php:406 msgid "Use case of term" msgstr "" -#: inc/autolinks.php:377 +#: inc/autolinks.php:398 msgid "Use case of text in content" msgstr "" -#: inc/autolinks.php:774 +#: inc/autolinks.php:863 msgid "Use new Auto Links engine" msgstr "" @@ -3847,7 +3877,7 @@ msgstr "" msgid "Use only some terms in the selected taxonomy." msgstr "" -#: includes-core/TaxopressCoreAdmin.php:198 +#: includes-core/TaxopressCoreAdmin.php:202 msgid "Use Regular Expressions to modify Auto Terms" msgstr "" @@ -3880,7 +3910,7 @@ msgid "" "associated with an object." msgstr "" -#: inc/terms-table.php:425 inc/class-taxonomies-table.php:281 +#: inc/class-taxonomies-table.php:281 inc/terms-table.php:432 msgid "View" msgstr "" @@ -3896,7 +3926,7 @@ msgstr "" msgid "View Item" msgstr "" -#: includes-core/TaxopressCoreAdmin.php:128 +#: includes-core/TaxopressCoreAdmin.php:131 msgid "View Knowledge Base" msgstr "" @@ -3916,7 +3946,7 @@ msgstr "" msgid "Whole words" msgstr "" -#: inc/autolinks.php:270 +#: inc/autolinks.php:274 msgid "" "With TaxoPress Pro, you can create unlimited Auto Links. You can create Auto " "Links for any taxonomy." @@ -3948,7 +3978,7 @@ msgid "" "on your site." msgstr "" -#: inc/post-tags.php:269 +#: inc/post-tags.php:271 msgid "" "With TaxoPress Pro, you can create unlimited Terms for Current Post. You can " "create Terms for Current Post for any taxonomy and then display those Terms " @@ -3965,24 +3995,24 @@ msgstr "" msgid "WordPress core" msgstr "" -#: inc/suggestterms.php:807 inc/tag-clouds.php:851 inc/autolinks.php:909 -#: inc/related-posts.php:884 inc/post-tags.php:728 -#: inc/class-taxonomies-table.php:374 inc/autoterms.php:1158 +#: inc/autolinks.php:1000 inc/autoterms.php:1158 +#: inc/class-taxonomies-table.php:374 inc/post-tags.php:759 +#: inc/related-posts.php:884 inc/suggestterms.php:807 inc/tag-clouds.php:851 #: inc/taxonomies.php:1703 msgid "Yes" msgstr "" -#: inc/post-tags.php:693 +#: inc/post-tags.php:726 msgid "You can also add HTML elements to the formatting." msgstr "" -#: inc/related-posts.php:731 inc/post-tags.php:575 +#: inc/post-tags.php:607 inc/related-posts.php:731 #, php-format msgid "You can find markers and explanations %1sin the documentation%2s." msgstr "" -#: inc/helper.options.admin.php:148 inc/helper.options.admin.php:277 -#: inc/helper.options.admin.php:351 +#: inc/helper.options.admin.php:82 inc/helper.options.admin.php:225 +#: inc/helper.options.admin.php:303 msgid "" "You can find markers and explanations in the online documentation." @@ -3992,39 +4022,39 @@ msgstr "" msgid "You can only delete taxonomies created with TaxoPress." msgstr "" -#: inc/helper.options.admin.php:383 +#: inc/helper.options.admin.php:335 msgid "" "You can use the same syntax as st_related_posts()public static " "function to customize display. See documentation for more details." msgstr "" -#: inc/helper.options.admin.php:210 +#: inc/helper.options.admin.php:148 msgid "" "You can use the same syntax as st_tag_cloud() public static " "function to customize display. See documentation for more details." msgstr "" -#: inc/helper.options.admin.php:288 +#: inc/helper.options.admin.php:238 msgid "" "You can use the same syntax as st_the_tags() public static " "function to customize display. See documentation for more details." msgstr "" -#: inc/helper.options.admin.php:83 +#: inc/helper.options.admin.php:17 msgid "" "You must set ‘Order tags selection’ to count-" "desc for retrieve the 100 tags most popular and ‘Order tags " "display’ to random for randomize cloud." msgstr "" -#: inc/helper.options.admin.php:266 +#: inc/helper.options.admin.php:212 msgid "You must set zero (0) for display all tags." msgstr "" -#: inc/post-tags.php:453 +#: inc/post-tags.php:475 msgid "You must set zero (0) to display all post tags." msgstr "" @@ -4042,15 +4072,15 @@ msgid "" "documentation.%2s." msgstr "" -#: inc/related-posts.php:759 inc/post-tags.php:604 +#: inc/post-tags.php:636 inc/related-posts.php:759 msgid "" "You're using TaxoPress Free.\n" " The Pro version has more " "features and support." msgstr "" -#: inc/suggestterms.php:712 inc/tag-clouds.php:727 inc/autolinks.php:803 -#: inc/autoterms.php:1052 +#: inc/autolinks.php:896 inc/autoterms.php:1052 inc/suggestterms.php:712 +#: inc/tag-clouds.php:727 msgid "" "You're using TaxoPress Free.\n" " The Pro version has more features " From 7700be46c40e6b1ea5ff137a4b83b0eba1ff4160 Mon Sep 17 00:00:00 2001 From: ojopaul Date: Thu, 15 Jun 2023 13:49:45 +0100 Subject: [PATCH 08/13] - Update the changelog --- readme.txt | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/readme.txt b/readme.txt index dcd88344..10e51afe 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: publishpress, kevinB, stevejburge, andergmartins, olatechpro, ojop Tags: category, tag, taxonomy, related posts, tag cloud, terms, tagging, navigation, tag manager, tags manager, term manager, terms manager Requires at least: 3.3 Tested up to: 6.2 -Stable tag: 3.7.4 +Stable tag: 3.8.0 Requires PHP: 7.2.5 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -239,6 +239,14 @@ If you have a busy WooCommerce site, it can be difficult to organize all your pr == Changelog == +v3.8.0- 2023-06-15 +* Feature: Added TaxoPress Dashboard Page #1136 +* Feature: Added term synonyms, ability to use multiple names for one tag [Pro Feature], #174 +* Feature: Show synonyms on the Terms screen [Pro Version], #1658 +* Feature: Synonyms option for Auto Links [Pro Version], #1656 +* Update: Clarify the attachment options for Auto Links, #1623 +* Fixed: Related Posts block is broken, #1652 + v3.7.4- 2023-05-17 * Fixed: Settings changes not saving, #1635 * Fixed: Auto Links has problems with the & character, #1638 From 0d55cebb8a8314a1fbf29bcdae6e721a23a66171 Mon Sep 17 00:00:00 2001 From: ojopaul Date: Thu, 15 Jun 2023 13:50:26 +0100 Subject: [PATCH 09/13] - Commit the changes to the release branch --- simple-tags.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/simple-tags.php b/simple-tags.php index cc4a29cb..74907856 100644 --- a/simple-tags.php +++ b/simple-tags.php @@ -3,7 +3,7 @@ * Plugin Name: TaxoPress * Plugin URI: https://wordpress.org/plugins/simple-tags/ * Description: TaxoPress allows you to create and manage Tags, Categories, and all your WordPress taxonomy terms. - * Version: 3.7.4 + * Version: 3.8.0 * Author: TaxoPress * Author URI: https://taxopress.com * Text Domain: simple-tags @@ -57,7 +57,7 @@ } if (!defined('STAGS_VERSION')) { -define('STAGS_VERSION', '3.7.4'); +define('STAGS_VERSION', '3.8.0'); } From 1bc6c8744707061863dd9a194a41c7ed40b3a0f9 Mon Sep 17 00:00:00 2001 From: ojopaul Date: Thu, 15 Jun 2023 15:23:30 +0100 Subject: [PATCH 10/13] - Add Synonyms to Pro box #1668 --- includes-core/TaxopressCoreAdmin.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes-core/TaxopressCoreAdmin.php b/includes-core/TaxopressCoreAdmin.php index ceadd362..2729f7c5 100644 --- a/includes-core/TaxopressCoreAdmin.php +++ b/includes-core/TaxopressCoreAdmin.php @@ -101,6 +101,7 @@ function taxopress_admin_advertising_sidebar_banner()
  • +
  • From fb789bac21916def2d5fed4da11e1738cbf42847 Mon Sep 17 00:00:00 2001 From: ojopaul Date: Thu, 15 Jun 2023 15:27:03 +0100 Subject: [PATCH 11/13] - Small text change for Auto Links box #1666 --- inc/autolinks.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/inc/autolinks.php b/inc/autolinks.php index 65ed3b01..99e7f897 100644 --- a/inc/autolinks.php +++ b/inc/autolinks.php @@ -311,9 +311,9 @@ public function taxopress_manage_autolinks() ); ?> - @@ -740,7 +740,7 @@ public function taxopress_manage_autolinks() - + [ @@ -767,7 +767,7 @@ public function taxopress_manage_autolinks() 'simple-tags' ), 'aftertext' => esc_html__( - 'Add links to the content synonyms.', + 'Add links to the term synonyms.', 'simple-tags' ), 'selections' => $select, // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped From 7a9f37a5116a9c15f22e589793db3229de80d0ae Mon Sep 17 00:00:00 2001 From: ojopaul Date: Thu, 15 Jun 2023 15:54:40 +0100 Subject: [PATCH 12/13] - Small Dashboard tweaks #1664 --- inc/class.admin.php | 8 +++++--- inc/functions.inc.php | 20 +++++++++++++------- inc/helper.options.default.php | 5 +++-- 3 files changed, 21 insertions(+), 12 deletions(-) diff --git a/inc/class.admin.php b/inc/class.admin.php index e124cef6..25007217 100644 --- a/inc/class.admin.php +++ b/inc/class.admin.php @@ -46,9 +46,11 @@ public function __construct() SimpleTags_Dashboard::get_instance(); //terms - require STAGS_DIR . '/inc/terms-table.php'; - require STAGS_DIR . '/inc/terms.php'; - SimpleTags_Terms::get_instance(); + if ($dashboard_screen || 1 === (int) SimpleTags_Plugin::get_option_value('active_st_terms')) { + require STAGS_DIR . '/inc/terms-table.php'; + require STAGS_DIR . '/inc/terms.php'; + SimpleTags_Terms::get_instance(); + } //tag clouds/ terms display if ($dashboard_screen || 1 === (int) SimpleTags_Plugin::get_option_value('active_terms_display')) { diff --git a/inc/functions.inc.php b/inc/functions.inc.php index faeeb316..ebb74501 100644 --- a/inc/functions.inc.php +++ b/inc/functions.inc.php @@ -358,6 +358,12 @@ function taxopress_dashboard_options() 'option_key' => 'active_taxonomies', ]; + $features['st_terms'] = [ + 'label' => esc_html__('Terms', 'simple-tags'), + 'description' => esc_html__('This feature allows you to search and edit all the terms on your site.', 'simple-tags'), + 'option_key' => 'active_st_terms', + ]; + $features['st_terms_display'] = [ 'label' => esc_html__('Terms Display', 'simple-tags'), 'description' => esc_html__('This feature allows you to create a customizable display of all the terms in one taxonomy.', 'simple-tags'), @@ -372,13 +378,13 @@ function taxopress_dashboard_options() $features['st_related_posts'] = [ 'label' => esc_html__('Related Posts', 'simple-tags'), - 'description' => esc_html__('The Related Posts feature works by checking for shared taxonomy terms. If your post has the terms “WordPress” and “Website”, then Related Posts will display other posts that also have the terms “WordPress” and “Website”.', 'simple-tags'), + 'description' => esc_html__('This feature creates a display of similar posts. If a post has the terms “WordPress” and “Website”, Related Posts will display other posts with those same terms.', 'simple-tags'), 'option_key' => 'active_related_posts_new', ]; $features['st_autolinks'] = [ 'label' => esc_html__('Auto Links', 'simple-tags'), - 'description' => esc_html__('Auto Links can automatically create links to your defined terms. For example, if you have a term called “WordPress”, the Auto Links feature can find the word “WordPress” in your content and add links to the archive page for that term.', 'simple-tags'), + 'description' => esc_html__('This feature automatically adds links to your chosen terms. If you have a term called “WordPress”, Auto Links finds the word “WordPress” in your content and add links to the archive page for that term.', 'simple-tags'), 'option_key' => 'active_auto_links', ]; @@ -390,19 +396,19 @@ function taxopress_dashboard_options() $features['st_suggestterms'] = [ 'label' => esc_html__('Suggest Terms', 'simple-tags'), - 'description' => esc_html__('This feature helps when you\'re writing content. "Suggest Terms" can show a metabox where you can browse all your existing terms. "Suggest Terms" can also analyze your content and find new ideas for terms.', 'simple-tags'), + 'description' => esc_html__('This feature helps when you\'re writing content. "Suggest Terms" shows a box with all existing terms, and can also analyze your content to find new ideas for terms.', 'simple-tags'), 'option_key' => 'active_suggest_terms', ]; $features['st_mass_terms'] = [ - 'label' => esc_html__('Mass Edit terms', 'simple-tags'), - 'description' => esc_html__('This feature allows you to edit the terms of any taxonomy for multiple posts at the same time.', 'simple-tags'), + 'label' => esc_html__('Mass Edit Terms', 'simple-tags'), + 'description' => esc_html__('This feature allows you to quickly edit the terms attached to multiple posts at the same time.', 'simple-tags'), 'option_key' => 'active_mass_edit', ]; $features['st_manage'] = [ - 'label' => esc_html__('Advanced Manage Terms', 'simple-tags'), - 'description' => esc_html__('This feature allows you to edit, merge, delete and add terms for any taxonomy.', 'simple-tags'), + 'label' => esc_html__('Manage Terms', 'simple-tags'), + 'description' => esc_html__('This feature allows you to add, rename, merge, and delete terms for any taxonomy.', 'simple-tags'), 'option_key' => 'active_manage', ]; diff --git a/inc/helper.options.default.php b/inc/helper.options.default.php index 080b1d30..b741e22c 100644 --- a/inc/helper.options.default.php +++ b/inc/helper.options.default.php @@ -4,7 +4,7 @@ 'active_taxonomies' => 1, 'active_terms_display' => 1, 'active_post_tags' => 1, - 'active_related_posts_new'=> 1, + 'active_related_posts_new' => 1, 'active_auto_links' => 1, 'active_auto_terms' => 1, 'active_suggest_terms' => 1, @@ -12,7 +12,8 @@ 'active_manage' => 1, 'active_related_posts' => 1, 'active_autotags' => 1, - + 'active_st_terms' => 1, + 'allow_embed_tcloud' => 1, // Auto link 'auto_link_tags' => 0, From 0a7c756217aadf6063427e3b7263f86ba7b459fa Mon Sep 17 00:00:00 2001 From: ojopaul Date: Thu, 15 Jun 2023 15:57:14 +0100 Subject: [PATCH 13/13] - Update translation --- languages/simple-tags-es_ES.mo | Bin 90194 -> 89635 bytes languages/simple-tags-es_ES.po | 208 ++++++++++++++++++--------------- languages/simple-tags-fr_FR.mo | Bin 92907 -> 92324 bytes languages/simple-tags-fr_FR.po | 208 ++++++++++++++++++--------------- languages/simple-tags-it_IT.mo | Bin 87979 -> 87416 bytes languages/simple-tags-it_IT.po | 208 ++++++++++++++++++--------------- languages/simple-tags.pot | 202 ++++++++++++++++++-------------- 7 files changed, 455 insertions(+), 371 deletions(-) diff --git a/languages/simple-tags-es_ES.mo b/languages/simple-tags-es_ES.mo index 480495d311166fe93930e56cd2b9c06ca1e18df9..1fab4d504f4cd3229b8961423678fb861936a121 100644 GIT binary patch delta 14404 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 delta 14729 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 BdoKV0 diff --git a/languages/simple-tags-es_ES.po b/languages/simple-tags-es_ES.po index 866c222f..50c375ba 100644 --- a/languages/simple-tags-es_ES.po +++ b/languages/simple-tags-es_ES.po @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: Plugins - TaxoPress is the WordPress Tag, Category, and " "Taxonomy Manager - Stable (latest release)\n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2023-06-15 12:40+0000\n" +"PO-Revision-Date: 2023-06-15 14:56+0000\n" "Last-Translator: \n" "Language-Team: Spanish (Spain)\n" "Language: es_ES\n" @@ -225,7 +225,7 @@ msgstr "7 días" msgid "7 days ago" msgstr "Hace 7 días" -#: inc/class.client.related_posts.php:103 inc/helper.options.default.php:49 +#: inc/class.client.related_posts.php:103 inc/helper.options.default.php:50 msgid "" "" "%post_title% (%post_comment%)" @@ -234,7 +234,7 @@ msgstr "" "%post_title% (%post_comment%)" #: inc/class.client.tagcloud.php:64 inc/class.client.tagcloud.php:271 -#: inc/helper.options.default.php:61 +#: inc/helper.options.default.php:62 msgid "" "%tag_name%" -#: inc/helper.options.default.php:39 +#: inc/helper.options.default.php:40 msgid "%tag_name%" msgstr "%tag_name%" @@ -367,12 +367,12 @@ msgstr "" "singularonly – Sólo en la vista singular (entrada y " "páginas)." -#: inc/class.client.related_posts.php:100 inc/helper.options.default.php:48 +#: inc/class.client.related_posts.php:100 inc/helper.options.default.php:49 msgid "

    Related posts

    " msgstr "

    Entradas relacionadas

    " #: inc/class.client.tagcloud.php:67 inc/class.client.tagcloud.php:274 -#: inc/helper.options.default.php:59 +#: inc/helper.options.default.php:60 msgid "

    Tag Cloud

    " msgstr "

    Nube de etiquetas

    " @@ -461,7 +461,7 @@ msgid "Add links to synonyms" msgstr "" #: inc/autolinks.php:769 -msgid "Add links to the content synonyms." +msgid "Add links to the term synonyms." msgstr "" #: inc/autolinks.php:126 inc/post-tags.php:126 inc/related-posts.php:128 @@ -508,7 +508,7 @@ msgstr "Añadir nuevos términos sugeridos" msgid "Add new Taxonomy" msgstr "Añadir nueva taxonomía" -#: inc/class.admin.php:481 +#: inc/class.admin.php:483 msgid "Add New TaxoPress Logs" msgstr "Añadir nuevos registros de TaxoPress" @@ -587,7 +587,7 @@ msgstr "Añade la taxonomía a la API wp-json de WordPress." msgid "Admin Area" msgstr "Área de administración" -#: inc/class.admin.php:797 +#: inc/class.admin.php:799 msgid "Administration" msgstr "Administración" @@ -596,10 +596,6 @@ msgstr "Administración" msgid "Advanced" msgstr "Avanzado" -#: inc/functions.inc.php:404 -msgid "Advanced Manage Terms" -msgstr "Administración avanzada de términos" - #: inc/class.widgets.php:379 msgid "Advanced usage:" msgstr "Uso avanzado:" @@ -699,7 +695,7 @@ msgstr "Intentar mostrar automáticamente los términos" msgid "Auto Link" msgstr "Enlance automático" -#: inc/class.admin.php:799 +#: inc/class.admin.php:801 msgid "Auto link" msgstr "Autoenlace" @@ -720,11 +716,11 @@ msgid "Auto Link title attribute" msgstr "Atributo de título de enlace automático" #: inc/autolinks-table.php:15 inc/autolinks.php:71 inc/autolinks.php:72 -#: inc/autolinks.php:125 inc/functions.inc.php:380 +#: inc/autolinks.php:125 inc/functions.inc.php:386 msgid "Auto Links" msgstr "Enlances automáticos" -#: inc/autolinks.php:128 inc/functions.inc.php:381 +#: inc/autolinks.php:128 msgid "" "Auto Links can automatically create links to your defined terms. For example," " if you have a term called “WordPress”, the Auto Links feature can find the " @@ -756,7 +752,7 @@ msgstr "Tipo de contenido de término automático" msgid "Auto term settings not found" msgstr "Ajustes del término automático no encontrados" -#: inc/autoterms.php:74 inc/autoterms.php:75 inc/functions.inc.php:386 +#: inc/autoterms.php:74 inc/autoterms.php:75 inc/functions.inc.php:392 msgid "Auto Terms" msgstr "Términos automáticos" @@ -764,7 +760,7 @@ msgstr "Términos automáticos" msgid "Auto terms" msgstr "Términos automáticos" -#: inc/autoterms.php:241 inc/functions.inc.php:387 +#: inc/autoterms.php:241 inc/functions.inc.php:393 msgid "" "Auto Terms can scan your content and automatically assign new and existing " "terms." @@ -838,7 +834,7 @@ msgstr "Visualización automática" msgid "Automatic Term Suggestions" msgstr "Sugerencias automáticas de términos" -#: includes-core/TaxopressCoreAdmin.php:178 +#: includes-core/TaxopressCoreAdmin.php:179 msgid "Automatically add new terms to your content" msgstr "Añade automáticamente nuevos términos a tu contenido" @@ -942,7 +938,7 @@ msgstr "" msgid "Cancel" msgstr "Cancelar" -#: inc/class.admin.php:390 +#: inc/class.admin.php:392 msgid "Change selection" msgstr "Cambiar la selección" @@ -1179,7 +1175,7 @@ msgstr "Descripción aquí." msgid "Design" msgstr "Diseño" -#: includes-core/TaxopressCoreAdmin.php:129 +#: includes-core/TaxopressCoreAdmin.php:130 msgid "Detailed documentation is also available on the plugin website." msgstr "Una documentación detallada se encuentra en el sitio del plugin." @@ -1266,7 +1262,7 @@ msgstr "Editar los términos sugeridos" msgid "Edit Taxonomy" msgstr "Editar taxonomía" -#: inc/class.admin.php:479 +#: inc/class.admin.php:481 msgid "Edit TaxoPress Logs" msgstr "Editar los registros de TaxoPress" @@ -1286,7 +1282,7 @@ msgstr "Editar esta caja meta" msgid "Em" msgstr "Em" -#: inc/class.admin.php:803 +#: inc/class.admin.php:805 msgid "Embedded Tags" msgstr "Incrustadas" @@ -1365,7 +1361,7 @@ msgstr "" "Error. ¡Tienes que introducir un solo término para fusionarlo en el nombre " "del nuevo término!" -#: inc/class.admin.php:169 +#: inc/class.admin.php:171 msgid "Error: wrong data" msgstr "" @@ -1446,11 +1442,11 @@ msgstr "Términos exixtentes en tu sitio" msgid "False" msgstr "Falso" -#: includes-core/TaxopressCoreAdmin.php:104 +#: includes-core/TaxopressCoreAdmin.php:105 msgid "Fast, professional support" msgstr "Asistencia rápida y profesional" -#: inc/class.admin.php:801 +#: inc/class.admin.php:803 msgid "Features" msgstr "Características" @@ -1656,7 +1652,7 @@ msgstr "" "enlaces automáticos nunca reemplazará estos términos. Separa varias entradas " "con una coma." -#: includes-core/TaxopressCoreAdmin.php:120 +#: includes-core/TaxopressCoreAdmin.php:121 msgid "If you need help or have a new feature request, let us know." msgstr "" "Si necesitas ayuda o tienes una petición de nueva característica, háznoslo " @@ -1683,7 +1679,7 @@ msgstr "¿Incluir categorías en el resultado?" msgid "Invalid access token !" msgstr "¡Token de acceso no válido!" -#: inc/class.admin.php:164 +#: inc/class.admin.php:166 msgid "Invalid nonce token!" msgstr "" @@ -1738,7 +1734,7 @@ msgstr "Color de menos popular:" msgid "Least popular font size:" msgstr "Tamaño fuente menos popular:" -#: inc/class.admin.php:809 +#: inc/class.admin.php:811 msgid "Legacy" msgstr "Heredado" @@ -1798,6 +1794,7 @@ msgid "Manage Taxonomy" msgstr "Gestionar la taxonomía" #: inc/class.admin.manage.php:61 inc/class.admin.manage.php:132 +#: inc/functions.inc.php:410 msgid "Manage Terms" msgstr "Gestionar términos" @@ -1813,14 +1810,10 @@ msgstr "Gestionar los términos para la entrada actual" msgid "Manual post update" msgstr "Actualización manual de la entrada" -#: inc/class.admin.mass.php:31 +#: inc/class.admin.mass.php:31 inc/functions.inc.php:404 msgid "Mass Edit Terms" msgstr "Editar términos en lotes" -#: inc/functions.inc.php:398 -msgid "Mass Edit terms" -msgstr "Editar términos en lotes" - #: inc/class.admin.mass.php:115 msgid "Mass edit terms" msgstr "Editar términos en lotes" @@ -1975,7 +1968,7 @@ msgstr "Tamaño fuente más popular:" msgid "Name" msgstr "Nombre" -#: includes-core/TaxopressCoreAdmin.php:115 +#: includes-core/TaxopressCoreAdmin.php:116 msgid "Need TaxoPress Support?" msgstr "¿Necesitas soporte de TaxoPress?" @@ -1997,7 +1990,7 @@ msgstr "Nombre del nuevo elemento" msgid "New Media Tag name" msgstr "Nombre de la nueva etiqueta de medios" -#: inc/class.admin.php:482 +#: inc/class.admin.php:484 msgid "New TaxoPress Logs" msgstr "Nuevos registros de TaxoPress" @@ -2039,7 +2032,7 @@ msgstr "Ningún %s encontrado en la papelera." msgid "No %s found." msgstr "No se ha encontrado %s." -#: includes-core/TaxopressCoreAdmin.php:105 +#: includes-core/TaxopressCoreAdmin.php:106 msgid "No ads inside the plugin" msgstr "No hay anuncios en el plugin" @@ -2085,7 +2078,7 @@ msgstr "¡No se han especificado nuevos términos!" msgid "No new/old valid term specified!" msgstr "¡No se ha especificado ningún término nuevo/antiguo válido!" -#: inc/class.admin.php:154 +#: inc/class.admin.php:156 msgid "No permission!" msgstr "" @@ -2095,7 +2088,7 @@ msgstr "" "No hay disponible un shortcode de entradas relacionadas. Añade un nuevo " "shortcode " -#: inc/class.client.related_posts.php:101 inc/helper.options.default.php:47 +#: inc/class.client.related_posts.php:101 inc/helper.options.default.php:48 #: inc/related-posts-functions.php:155 msgid "No related posts." msgstr "No hay entradas relacionadas." @@ -2116,12 +2109,12 @@ msgstr "No hay resultados de tu base de datos de WordPress." msgid "No tag for this post." msgstr "No hay etiquetas para esta entrada." -#: inc/helper.options.default.php:36 +#: inc/helper.options.default.php:37 msgid "No tags for this post." msgstr "No hay etiquetas para esta entrada." #: inc/class.client.tagcloud.php:66 inc/class.client.tagcloud.php:273 -#: inc/helper.options.default.php:58 +#: inc/helper.options.default.php:59 msgid "No tags." msgstr "No hay etiquetas." @@ -2256,11 +2249,12 @@ msgstr "" "sitio web del servicio para obtener una clave y configurarla en las opciones " "de TaxoPress." -#: inc/autoterms.php:412 inc/post-tags.php:298 inc/related-posts.php:290 +#: inc/autolinks.php:315 inc/autoterms.php:412 inc/post-tags.php:298 +#: inc/related-posts.php:290 msgid "Options" msgstr "Opciones" -#: inc/class.admin.php:582 +#: inc/class.admin.php:584 msgid "Options saved" msgstr "Opciones guardadas" @@ -2411,7 +2405,7 @@ msgstr "Por favor, proporciona un nombre de taxonomía" msgid "Please provide a taxonomy to delete" msgstr "Por favor, proporciona una taxonomía para borrar" -#: inc/class.admin.php:425 +#: inc/class.admin.php:427 msgid "Please select a valid" msgstr "Por favor, selecciona uno válido" @@ -2469,7 +2463,7 @@ msgstr "Formato de enlace en entrada:" msgid "Post tag separator string:" msgstr "Cadena de separación de etiquetas:" -#: inc/class.admin.php:293 +#: inc/class.admin.php:295 msgid "Post tags" msgstr "Etiquetas de entrada" @@ -2501,11 +2495,11 @@ msgstr "Tipo de contenido" msgid "Post Types" msgstr "Tipos de contenido" -#: inc/class.admin.php:294 +#: inc/class.admin.php:296 msgid "Posts" msgstr "Entradas" -#: inc/autolinks-functions.php:160 inc/helper.options.default.php:28 +#: inc/autolinks-functions.php:160 inc/helper.options.default.php:29 msgid "Posts tagged with %s" msgstr "Entradas etiquetadas con %s" @@ -2600,7 +2594,7 @@ msgstr "Clave de registro" msgid "Related Post" msgstr "Entradas relacionadas" -#: inc/class.admin.php:807 inc/functions.inc.php:374 +#: inc/class.admin.php:809 inc/functions.inc.php:380 #: inc/related-posts-table.php:15 inc/related-posts.php:72 #: inc/related-posts.php:73 inc/related-posts.php:126 msgid "Related Posts" @@ -2689,7 +2683,7 @@ msgid "Replaced by the tag’s name, formatted for attribute HTML" msgstr "" "Reemplazado por el nombre de la etiqueta, formateado para el atributo HTML" -#: includes-core/TaxopressCoreAdmin.php:122 +#: includes-core/TaxopressCoreAdmin.php:123 msgid "Request Support" msgstr "Pedir soporte técnico" @@ -2758,7 +2752,7 @@ msgstr "Guardar los términos para la entrada actual" msgid "Schedule" msgstr "Programación" -#: includes-core/TaxopressCoreAdmin.php:154 +#: includes-core/TaxopressCoreAdmin.php:155 msgid "Schedule Auto Terms for your content" msgstr "Programar términos automáticos para tu contenido" @@ -2838,7 +2832,7 @@ msgstr "Buscar términos sugeridos" msgid "Search Taxonomies" msgstr "Buscar taxonomías" -#: inc/class.admin.php:477 +#: inc/class.admin.php:479 msgid "Search TaxoPress Logs" msgstr "Buscar en los registros de TaxoPress" @@ -2934,7 +2928,7 @@ msgid "Sets a custom query_var slug for this taxonomy." msgstr "Establece un slug `query_var` personalizado para esta taxonomía." #: inc/autoterms-logs-table.php:164 inc/autoterms-logs-table.php:195 -#: inc/class.admin.php:529 +#: inc/class.admin.php:531 msgid "Settings" msgstr "Ajustes" @@ -3081,7 +3075,7 @@ msgstr "Término sugerido" msgid "Suggest Term Post type" msgstr "Término sugerido por el tipo de contenido" -#: inc/functions.inc.php:392 inc/suggestterms-table.php:15 +#: inc/functions.inc.php:398 inc/suggestterms-table.php:15 #: inc/suggestterms.php:71 inc/suggestterms.php:72 inc/suggestterms.php:125 msgid "Suggest Terms" msgstr "Términos sugeridos" @@ -3106,7 +3100,7 @@ msgstr "términos sugeridos" msgid "Support hashtags symbols # in Auto Terms." msgstr "Compatible con símbolos de hashtags # en los términos automáticos." -#: inc/autolinks.php:315 inc/terms-table.php:116 +#: inc/terms-table.php:116 msgid "Synonyms" msgstr "" @@ -3143,11 +3137,11 @@ msgstr "Nube de etiquetas" msgid "Tags cloud type format:" msgstr "Tipo de formato de nube de etiquetas:" -#: inc/class.admin.php:805 +#: inc/class.admin.php:807 msgid "Tags for Current Post" msgstr "Entrada actual" -#: inc/class.client.post_tags.php:106 inc/helper.options.default.php:34 +#: inc/class.client.post_tags.php:106 inc/helper.options.default.php:35 #: inc/post-tags-functions.php:152 msgid "Tags: " msgstr "Etiquetas: " @@ -3198,7 +3192,7 @@ msgstr "Taxonomía:" #. Name of the plugin #. Author of the plugin -#: inc/class-taxonomies-table.php:353 inc/class.admin.php:516 +#: inc/class-taxonomies-table.php:353 inc/class.admin.php:518 #: inc/class.admin.post.php:38 msgid "TaxoPress" msgstr "TaxoPress" @@ -3215,17 +3209,17 @@ msgstr "" msgid "TaxoPress and Languages" msgstr "TaxoPress y los idiomas" -#: inc/class.admin.php:475 inc/class.admin.php:476 inc/class.admin.php:478 -#: inc/class.admin.php:483 +#: inc/class.admin.php:477 inc/class.admin.php:478 inc/class.admin.php:480 +#: inc/class.admin.php:485 msgid "TaxoPress Logs" msgstr "Registros de TaxoPress" -#: inc/class.admin.php:588 +#: inc/class.admin.php:590 msgid "TaxoPress options resetted to default options!" msgstr "" "¡Las opciones de TaxoPress se han restablecido a sus valores por defecto!" -#: includes-core/TaxopressCoreAdmin.php:207 +#: includes-core/TaxopressCoreAdmin.php:208 msgid "" "TaxoPress Pro allows you to change how Auto Terms analyzes your posts. You " "will need to know how to write Regular Expressions to use this feature." @@ -3234,7 +3228,7 @@ msgstr "" "analizan tus entradas. Es necesario que sepas escribir las expresiones " "regulares para utilizar esta característica." -#: includes-core/TaxopressCoreAdmin.php:183 +#: includes-core/TaxopressCoreAdmin.php:184 msgid "" "TaxoPress Pro allows you to generate new terms for your content using the " "Dandelion and Open Calais services. These services can analyze your content " @@ -3244,7 +3238,7 @@ msgstr "" "utilizando los servicios Dandelion y Open Calais. Estos servicios pueden " "analizar tu contenido y añadir nuevos términos." -#: includes-core/TaxopressCoreAdmin.php:159 +#: includes-core/TaxopressCoreAdmin.php:160 msgid "" "TaxoPress Pro allows you to schedule the \"Auto Terms to existing content\" " "feature. This is helpful if you regularly import content into WordPress. " @@ -3302,7 +3296,7 @@ msgstr "TaxoPress: Gestionar términos" msgid "TaxoPress: Mass Edit Terms" msgstr "TaxoPress: Editar términos en lotes" -#: inc/class.admin.php:515 inc/class.admin.php:528 +#: inc/class.admin.php:517 inc/class.admin.php:530 #: views/admin/page-settings.php:3 msgid "TaxoPress: Options" msgstr "TaxoPress: Opciones" @@ -3370,7 +3364,8 @@ msgstr "Término(s) para fusionar:" msgid "Term(s) to rename:" msgstr "Término(s) para renombrar:" -#: inc/terms-table.php:15 inc/terms.php:171 inc/terms.php:172 inc/terms.php:223 +#: inc/functions.inc.php:362 inc/terms-table.php:15 inc/terms.php:171 +#: inc/terms.php:172 inc/terms.php:223 msgid "Terms" msgstr "Términos" @@ -3390,7 +3385,7 @@ msgstr "Términos añadidos correctamente" msgid "Terms deleted successfully." msgstr "Términos borrados con éxito." -#: inc/functions.inc.php:362 inc/tag-clouds-table.php:14 +#: inc/functions.inc.php:368 inc/tag-clouds-table.php:14 #: inc/tag-clouds-table.php:15 inc/tag-clouds.php:72 inc/tag-clouds.php:73 #: inc/tag-clouds.php:126 msgid "Terms Display" @@ -3412,7 +3407,7 @@ msgstr "Formato de visualización de los términos" msgid "Terms Display successfully deleted." msgstr "Visualización de términos borrada correctamente." -#: inc/functions.inc.php:368 inc/post-tags-table.php:14 +#: inc/functions.inc.php:374 inc/post-tags-table.php:14 #: inc/post-tags-table.php:15 inc/post-tags.php:71 inc/post-tags.php:125 #: inc/post-tags.php:712 msgid "Terms for Current Post" @@ -3473,7 +3468,7 @@ msgstr "Texto para mostrar en el atributo de título de los enlaces:" msgid "Text to show when there is no related post" msgstr "Texto a mostrar cuando no hay entradas relacionadas" -#: inc/class.admin.php:669 +#: inc/class.admin.php:671 msgid "Thanks for using TaxoPress | %1sTaxoPress.com%2s | Version %3s" msgstr "Gracias por utilizar TaxoPress | %1sTaxoPress.com%2s | Versión %3s" @@ -3567,7 +3562,7 @@ msgstr "El número de veces que el término se ha utilizado" msgid "The post excerpt" msgstr "Extracto de la entrada" -#: inc/functions.inc.php:375 inc/related-posts.php:130 +#: inc/related-posts.php:130 msgid "" "The Related Posts feature works by checking for shared taxonomy terms. If " "your post has the terms “WordPress” and “Website”, then Related Posts will " @@ -3680,7 +3675,7 @@ msgstr "" "Estos ajustes ya no se actualizarán más. Por favor, usa en su lugar la " "pantalla «Términos para la entrada actual»." -#: inc/class.admin.php:333 +#: inc/class.admin.php:335 msgid "This custom post type not have taxonomies." msgstr "Este tipo de contenido personalizado no tiene taxonomías." @@ -3701,7 +3696,7 @@ msgstr "" "Esto te permite omitir las entradas que ya han sido analizadas por la " "característica de contenido existente." -#: inc/functions.inc.php:369 inc/post-tags.php:128 +#: inc/functions.inc.php:375 inc/post-tags.php:128 msgid "" "This feature allows you create a customizable display of all the terms " "assigned to the current post." @@ -3709,7 +3704,13 @@ msgstr "" "Esta característica te permite crear una visualización personalizable de " "todos los términos asignados a la entrada actual." -#: inc/functions.inc.php:363 inc/tag-clouds.php:130 +#: inc/functions.inc.php:411 +msgid "" +"This feature allows you to add, rename, merge, and delete terms for any " +"taxonomy." +msgstr "" + +#: inc/functions.inc.php:369 inc/tag-clouds.php:130 msgid "" "This feature allows you to create a customizable display of all the terms in " "one taxonomy." @@ -3732,28 +3733,36 @@ msgstr "" "Esta característica te permite mostrar entradas relacionadas en función de " "la relación de términos." -#: inc/functions.inc.php:399 -msgid "" -"This feature allows you to edit the terms of any taxonomy for multiple posts " -"at the same time." -msgstr "" -"Esta característica te permite editar los términos de cualquier taxonomía " -"para varias entradas al mismo tiempo." - #: inc/functions.inc.php:405 msgid "" -"This feature allows you to edit, merge, delete and add terms for any " -"taxonomy." +"This feature allows you to quickly edit the terms attached to multiple posts " +"at the same time." msgstr "" -"Esta característica te permite editar, fusionar, borrar y añadir términos " -"para cualquier taxonomía." #: inc/class.admin.manage.php:306 msgid "This feature allows you to remove rarely used terms." msgstr "" "Esta función te permite borrar términos que se utilizan con poca frecuencia." -#: inc/functions.inc.php:393 inc/suggestterms.php:130 +#: inc/functions.inc.php:363 +msgid "This feature allows you to search and edit all the terms on your site." +msgstr "" + +#: inc/functions.inc.php:387 +msgid "" +"This feature automatically adds links to your chosen terms. If you have a " +"term called “WordPress”, Auto Links finds the word “WordPress” in your " +"content and add links to the archive page for that term." +msgstr "" + +#: inc/functions.inc.php:381 +msgid "" +"This feature creates a display of similar posts. If a post has the terms " +"“WordPress” and “Website”, Related Posts will display other posts with those " +"same terms." +msgstr "" + +#: inc/suggestterms.php:130 msgid "" "This feature helps when you're writing content. \"Suggest Terms\" can show a " "metabox where you can browse all your existing terms. \"Suggest Terms\" can " @@ -3764,6 +3773,13 @@ msgstr "" "términos existentes. «Términos sugeridos» también puede analizar tu " "contenido y encontrar nuevas ideas de términos." +#: inc/functions.inc.php:399 +msgid "" +"This feature helps when you're writing content. \"Suggest Terms\" shows a " +"box with all existing terms, and can also analyze your content to find new " +"ideas for terms." +msgstr "" + #: inc/class.admin.manage.php:169 msgid "" "This feature lets you add one or more new terms to all %s which match any of " @@ -3772,7 +3788,7 @@ msgstr "" "Esta función te permite añadir uno o más términos nuevos a todos los %s que " "coincidan con cualquiera de los términos dados." -#: inc/class.admin.php:634 +#: inc/class.admin.php:636 msgid "This feature requires at least 1 tag to work. Begin by adding tags!" msgstr "" "Esta función requiere al menos 1 etiqueta para funcionar. ¡Empieza por " @@ -3793,7 +3809,7 @@ msgstr "" "Esta función muestra una caja meta en la que se pueden buscar todos los " "términos existentes." -#: inc/class.admin.php:636 +#: inc/class.admin.php:638 msgid "" "This feature works only with activated JavaScript. Activate it in your Web " "browser so you can!" @@ -4042,16 +4058,16 @@ msgstr "Actualizar el nombre de la etiqueta de medios" msgid "Update options »" msgstr "Actualizar opciones »" -#: inc/class.admin.php:480 +#: inc/class.admin.php:482 msgid "Update TaxoPress Logs" msgstr "Actualizar los registros de TaxoPress" #: inc/autolinks.php:899 inc/autoterms.php:1056 inc/post-tags.php:639 #: inc/related-posts.php:763 inc/suggestterms.php:717 inc/tag-clouds.php:731 -#: includes-core/TaxopressCoreAdmin.php:108 -#: includes-core/TaxopressCoreAdmin.php:161 -#: includes-core/TaxopressCoreAdmin.php:185 -#: includes-core/TaxopressCoreAdmin.php:209 +#: includes-core/TaxopressCoreAdmin.php:109 +#: includes-core/TaxopressCoreAdmin.php:162 +#: includes-core/TaxopressCoreAdmin.php:186 +#: includes-core/TaxopressCoreAdmin.php:210 msgid "Upgrade to Pro" msgstr "Actualizar a Pro" @@ -4088,10 +4104,14 @@ msgstr "Usar el nuevo motor de enlaces automáticos" msgid "Use only some terms in the selected taxonomy." msgstr "Usa solo algunos términos en la taxonomía seleccionada." -#: includes-core/TaxopressCoreAdmin.php:202 +#: includes-core/TaxopressCoreAdmin.php:203 msgid "Use Regular Expressions to modify Auto Terms" msgstr "Utilizar expresiones regulares para modificar los términos automáticos" +#: includes-core/TaxopressCoreAdmin.php:104 +msgid "Use synonyms for terms" +msgstr "" + #: inc/taxonomies.php:1042 msgid "" "Used as tab text when showing all terms for hierarchical taxonomy while " @@ -4146,7 +4166,7 @@ msgstr "Ver %s" msgid "View Item" msgstr "Ver elemento" -#: includes-core/TaxopressCoreAdmin.php:131 +#: includes-core/TaxopressCoreAdmin.php:132 msgid "View Knowledge Base" msgstr "Ver la base de conocimiento" diff --git a/languages/simple-tags-fr_FR.mo b/languages/simple-tags-fr_FR.mo index 2261bbe95bfb2979b85815fbdb6afa31b5482ab2..2eacbbcd7e2f8b6348ca7051f11041167d022ec4 100644 GIT binary patch delta 14399 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" "%post_title% (%post_comment%)" @@ -234,7 +234,7 @@ msgstr "" "%post_title% (%post_comment%)" #: inc/class.client.tagcloud.php:64 inc/class.client.tagcloud.php:271 -#: inc/helper.options.default.php:61 +#: inc/helper.options.default.php:62 msgid "" "%tag_name%" -#: inc/helper.options.default.php:39 +#: inc/helper.options.default.php:40 msgid "%tag_name%" msgstr "%tag_name%" @@ -372,12 +372,12 @@ msgstr "" "singularonly – Seulement sur votre vue singulière (simple " "et page)." -#: inc/class.client.related_posts.php:100 inc/helper.options.default.php:48 +#: inc/class.client.related_posts.php:100 inc/helper.options.default.php:49 msgid "

    Related posts

    " msgstr "

    Publications similaires

    " #: inc/class.client.tagcloud.php:67 inc/class.client.tagcloud.php:274 -#: inc/helper.options.default.php:59 +#: inc/helper.options.default.php:60 msgid "

    Tag Cloud

    " msgstr "

    Nuage d’étiquettes

    " @@ -467,7 +467,7 @@ msgid "Add links to synonyms" msgstr "" #: inc/autolinks.php:769 -msgid "Add links to the content synonyms." +msgid "Add links to the term synonyms." msgstr "" #: inc/autolinks.php:126 inc/post-tags.php:126 inc/related-posts.php:128 @@ -514,7 +514,7 @@ msgstr "Ajouter de nouveaux termes suggérés" msgid "Add new Taxonomy" msgstr "Ajouter une nouvelle taxonomie" -#: inc/class.admin.php:481 +#: inc/class.admin.php:483 msgid "Add New TaxoPress Logs" msgstr "Ajouter de nouveaux journaux TaxoPress" @@ -594,7 +594,7 @@ msgstr "Ajouter la taxonomie à l’API wp-json de WordPress." msgid "Admin Area" msgstr "Zone d’administration" -#: inc/class.admin.php:797 +#: inc/class.admin.php:799 msgid "Administration" msgstr "Administration" @@ -603,10 +603,6 @@ msgstr "Administration" msgid "Advanced" msgstr "Avancée" -#: inc/functions.inc.php:404 -msgid "Advanced Manage Terms" -msgstr "Gestion avancée des termes" - #: inc/class.widgets.php:379 msgid "Advanced usage:" msgstr "Utilisation avancée :" @@ -707,7 +703,7 @@ msgstr "Tenter d’afficher automatiquement les termes" msgid "Auto Link" msgstr "Lien automatique" -#: inc/class.admin.php:799 +#: inc/class.admin.php:801 msgid "Auto link" msgstr "Liens automatiques" @@ -728,11 +724,11 @@ msgid "Auto Link title attribute" msgstr "Attribut de titre de lien automatique" #: inc/autolinks-table.php:15 inc/autolinks.php:71 inc/autolinks.php:72 -#: inc/autolinks.php:125 inc/functions.inc.php:380 +#: inc/autolinks.php:125 inc/functions.inc.php:386 msgid "Auto Links" msgstr "Liens automatiques" -#: inc/autolinks.php:128 inc/functions.inc.php:381 +#: inc/autolinks.php:128 msgid "" "Auto Links can automatically create links to your defined terms. For example," " if you have a term called “WordPress”, the Auto Links feature can find the " @@ -765,7 +761,7 @@ msgstr "Terme automatique pour le type de contenu" msgid "Auto term settings not found" msgstr "Réglages du terme automatique non trouvés" -#: inc/autoterms.php:74 inc/autoterms.php:75 inc/functions.inc.php:386 +#: inc/autoterms.php:74 inc/autoterms.php:75 inc/functions.inc.php:392 msgid "Auto Terms" msgstr "Termes automatiques" @@ -773,7 +769,7 @@ msgstr "Termes automatiques" msgid "Auto terms" msgstr "Termes automatiques" -#: inc/autoterms.php:241 inc/functions.inc.php:387 +#: inc/autoterms.php:241 inc/functions.inc.php:393 msgid "" "Auto Terms can scan your content and automatically assign new and existing " "terms." @@ -847,7 +843,7 @@ msgstr "Affichage automatique" msgid "Automatic Term Suggestions" msgstr "Suggestions automatiques de termes" -#: includes-core/TaxopressCoreAdmin.php:178 +#: includes-core/TaxopressCoreAdmin.php:179 msgid "Automatically add new terms to your content" msgstr "Ajoutez automatiquement de nouveaux termes à votre contenu" @@ -953,7 +949,7 @@ msgstr "" msgid "Cancel" msgstr "Annuler" -#: inc/class.admin.php:390 +#: inc/class.admin.php:392 msgid "Change selection" msgstr "Modifier la sélection" @@ -1191,7 +1187,7 @@ msgstr "La description ici." msgid "Design" msgstr "Design" -#: includes-core/TaxopressCoreAdmin.php:129 +#: includes-core/TaxopressCoreAdmin.php:130 msgid "Detailed documentation is also available on the plugin website." msgstr "" "Une documentation détaillée est également disponible sur le site de " @@ -1281,7 +1277,7 @@ msgstr "Modifier les termes suggérés" msgid "Edit Taxonomy" msgstr "Modifier la taxonomie" -#: inc/class.admin.php:479 +#: inc/class.admin.php:481 msgid "Edit TaxoPress Logs" msgstr "Modifier les journaux de TaxoPress" @@ -1301,7 +1297,7 @@ msgstr "Modifier cette boîte méta" msgid "Em" msgstr "Em" -#: inc/class.admin.php:803 +#: inc/class.admin.php:805 msgid "Embedded Tags" msgstr "Étiquettes embarquées" @@ -1383,7 +1379,7 @@ msgstr "" "Erreur. Vous devez saisir un seul terme à fusionner dans le nouveau nom du " "terme !" -#: inc/class.admin.php:169 +#: inc/class.admin.php:171 msgid "Error: wrong data" msgstr "" @@ -1465,11 +1461,11 @@ msgstr "Termes existants sur votre site" msgid "False" msgstr "Faux" -#: includes-core/TaxopressCoreAdmin.php:104 +#: includes-core/TaxopressCoreAdmin.php:105 msgid "Fast, professional support" msgstr "Une assistance rapide et professionnelle" -#: inc/class.admin.php:801 +#: inc/class.admin.php:803 msgid "Features" msgstr "Fonctionnalités" @@ -1675,7 +1671,7 @@ msgstr "" "liens automatiques ne remplacera jamais ces termes. Séparez les entrées " "multiples par une virgule." -#: includes-core/TaxopressCoreAdmin.php:120 +#: includes-core/TaxopressCoreAdmin.php:121 msgid "If you need help or have a new feature request, let us know." msgstr "" "Si vous avez besoin d’aide ou si vous avez une nouvelle demande de " @@ -1702,7 +1698,7 @@ msgstr "Inclure les catégories dans le resultat ?" msgid "Invalid access token !" msgstr "Jeton d’accès invalide !" -#: inc/class.admin.php:164 +#: inc/class.admin.php:166 msgid "Invalid nonce token!" msgstr "" @@ -1758,7 +1754,7 @@ msgstr "La couleur la moins populaire :" msgid "Least popular font size:" msgstr "La taille de police la moins populaire :" -#: inc/class.admin.php:809 +#: inc/class.admin.php:811 msgid "Legacy" msgstr "Héritage" @@ -1819,6 +1815,7 @@ msgid "Manage Taxonomy" msgstr "Gérer la taxonomie" #: inc/class.admin.manage.php:61 inc/class.admin.manage.php:132 +#: inc/functions.inc.php:410 msgid "Manage Terms" msgstr "Gestion des termes" @@ -1834,14 +1831,10 @@ msgstr "Gérer les termes pour la publication actuelle" msgid "Manual post update" msgstr "Mise à jour manuelle de la publication" -#: inc/class.admin.mass.php:31 +#: inc/class.admin.mass.php:31 inc/functions.inc.php:404 msgid "Mass Edit Terms" msgstr "Edition en masse de termes" -#: inc/functions.inc.php:398 -msgid "Mass Edit terms" -msgstr "Modification en masse de termes" - #: inc/class.admin.mass.php:115 msgid "Mass edit terms" msgstr "Edition en masse de termes" @@ -1997,7 +1990,7 @@ msgstr "La taille de police la plus populaire :" msgid "Name" msgstr "Nom" -#: includes-core/TaxopressCoreAdmin.php:115 +#: includes-core/TaxopressCoreAdmin.php:116 msgid "Need TaxoPress Support?" msgstr "Besoin d’aide pour TaxoPress ?" @@ -2019,7 +2012,7 @@ msgstr "Nom du nouvel élément" msgid "New Media Tag name" msgstr "Nouveau nom d’étiquette de média" -#: inc/class.admin.php:482 +#: inc/class.admin.php:484 msgid "New TaxoPress Logs" msgstr "Nouveaux journaux de TaxoPress" @@ -2061,7 +2054,7 @@ msgstr "Aucun %s n’a été trouvé dans la corbeille." msgid "No %s found." msgstr "Aucun %s trouvé." -#: includes-core/TaxopressCoreAdmin.php:105 +#: includes-core/TaxopressCoreAdmin.php:106 msgid "No ads inside the plugin" msgstr "Aucune publicité dans l’extension" @@ -2107,7 +2100,7 @@ msgstr "Pas de nouveau(x) terme(s) spécifié(s) !" msgid "No new/old valid term specified!" msgstr "Aucun terme valide nouveau/ancien n’est spécifié !" -#: inc/class.admin.php:154 +#: inc/class.admin.php:156 msgid "No permission!" msgstr "" @@ -2117,7 +2110,7 @@ msgstr "" "Aucun code court de publications similaires disponible. Ajouter un nouveau " "code court " -#: inc/class.client.related_posts.php:101 inc/helper.options.default.php:47 +#: inc/class.client.related_posts.php:101 inc/helper.options.default.php:48 #: inc/related-posts-functions.php:155 msgid "No related posts." msgstr "Aucune publication similaire." @@ -2138,12 +2131,12 @@ msgstr "Aucun résultat depuis la base de données de WordPress." msgid "No tag for this post." msgstr "Aucune étiquette pour cette publication." -#: inc/helper.options.default.php:36 +#: inc/helper.options.default.php:37 msgid "No tags for this post." msgstr "Aucune étiquette pour cette publication." #: inc/class.client.tagcloud.php:66 inc/class.client.tagcloud.php:273 -#: inc/helper.options.default.php:58 +#: inc/helper.options.default.php:59 msgid "No tags." msgstr "Aucune étiquette." @@ -2280,11 +2273,12 @@ msgstr "" "inscrire sur le site du service pour obtenir une clé et la définir dans les " "options de TaxoPress." -#: inc/autoterms.php:412 inc/post-tags.php:298 inc/related-posts.php:290 +#: inc/autolinks.php:315 inc/autoterms.php:412 inc/post-tags.php:298 +#: inc/related-posts.php:290 msgid "Options" msgstr "Options" -#: inc/class.admin.php:582 +#: inc/class.admin.php:584 msgid "Options saved" msgstr "Les options ont été enregistrées" @@ -2434,7 +2428,7 @@ msgstr "Veuillez fournir un nom de taxonomie" msgid "Please provide a taxonomy to delete" msgstr "Veuillez fournir un nom de taxonomie à supprimer" -#: inc/class.admin.php:425 +#: inc/class.admin.php:427 msgid "Please select a valid" msgstr "Veuillez sélectionner un valide" @@ -2492,7 +2486,7 @@ msgstr "Format des liens des publications :" msgid "Post tag separator string:" msgstr "Chaine de séparation des étiquettes de publication : " -#: inc/class.admin.php:293 +#: inc/class.admin.php:295 msgid "Post tags" msgstr "Étiquettes de la publication" @@ -2524,11 +2518,11 @@ msgstr "Type de publication" msgid "Post Types" msgstr "Types de publication" -#: inc/class.admin.php:294 +#: inc/class.admin.php:296 msgid "Posts" msgstr "Publications" -#: inc/autolinks-functions.php:160 inc/helper.options.default.php:28 +#: inc/autolinks-functions.php:160 inc/helper.options.default.php:29 msgid "Posts tagged with %s" msgstr "Publications étiquetées avec %s" @@ -2623,7 +2617,7 @@ msgstr "Clé d’enregistrement" msgid "Related Post" msgstr "Publications similaires" -#: inc/class.admin.php:807 inc/functions.inc.php:374 +#: inc/class.admin.php:809 inc/functions.inc.php:380 #: inc/related-posts-table.php:15 inc/related-posts.php:72 #: inc/related-posts.php:73 inc/related-posts.php:126 msgid "Related Posts" @@ -2713,7 +2707,7 @@ msgstr "Remplacé par l’ID de l’étiquette" msgid "Replaced by the tag’s name, formatted for attribute HTML" msgstr "Remplacé par le nom de l’étiquette, mis en forme pour l’attribut HTML" -#: includes-core/TaxopressCoreAdmin.php:122 +#: includes-core/TaxopressCoreAdmin.php:123 msgid "Request Support" msgstr "Demande d’assistance" @@ -2782,7 +2776,7 @@ msgstr "Enregistrer les termes pour la publication actuelle" msgid "Schedule" msgstr "Planifier" -#: includes-core/TaxopressCoreAdmin.php:154 +#: includes-core/TaxopressCoreAdmin.php:155 msgid "Schedule Auto Terms for your content" msgstr "Programmez des termes automatiques pour votre contenu" @@ -2862,7 +2856,7 @@ msgstr "Rechercher les termes suggérés" msgid "Search Taxonomies" msgstr "Rechercher les taxonomies" -#: inc/class.admin.php:477 +#: inc/class.admin.php:479 msgid "Search TaxoPress Logs" msgstr "Rechercher les journaux de TaxoPress" @@ -2959,7 +2953,7 @@ msgid "Sets a custom query_var slug for this taxonomy." msgstr "Définir un slug de query_var personnalisé pour cette taxonomie." #: inc/autoterms-logs-table.php:164 inc/autoterms-logs-table.php:195 -#: inc/class.admin.php:529 +#: inc/class.admin.php:531 msgid "Settings" msgstr "Réglages" @@ -3107,7 +3101,7 @@ msgstr "Terme suggéré" msgid "Suggest Term Post type" msgstr "Terme suggéré pour le type de contenu" -#: inc/functions.inc.php:392 inc/suggestterms-table.php:15 +#: inc/functions.inc.php:398 inc/suggestterms-table.php:15 #: inc/suggestterms.php:71 inc/suggestterms.php:72 inc/suggestterms.php:125 msgid "Suggest Terms" msgstr "Termes suggérés" @@ -3133,7 +3127,7 @@ msgid "Support hashtags symbols # in Auto Terms." msgstr "" "Prise en charge des symboles # des hashtags dans les termes automatiques." -#: inc/autolinks.php:315 inc/terms-table.php:116 +#: inc/terms-table.php:116 msgid "Synonyms" msgstr "" @@ -3170,11 +3164,11 @@ msgstr "Nuages d’étiquettes" msgid "Tags cloud type format:" msgstr "Type de format de nuage d’étiquettes :" -#: inc/class.admin.php:805 +#: inc/class.admin.php:807 msgid "Tags for Current Post" msgstr "Étiquettes de la publication actuelle" -#: inc/class.client.post_tags.php:106 inc/helper.options.default.php:34 +#: inc/class.client.post_tags.php:106 inc/helper.options.default.php:35 #: inc/post-tags-functions.php:152 msgid "Tags: " msgstr "Étiquettes : " @@ -3225,7 +3219,7 @@ msgstr "Taxonomie :" #. Name of the plugin #. Author of the plugin -#: inc/class-taxonomies-table.php:353 inc/class.admin.php:516 +#: inc/class-taxonomies-table.php:353 inc/class.admin.php:518 #: inc/class.admin.post.php:38 msgid "TaxoPress" msgstr "TaxoPress" @@ -3242,17 +3236,17 @@ msgstr "" msgid "TaxoPress and Languages" msgstr "TaxoPress et les langues" -#: inc/class.admin.php:475 inc/class.admin.php:476 inc/class.admin.php:478 -#: inc/class.admin.php:483 +#: inc/class.admin.php:477 inc/class.admin.php:478 inc/class.admin.php:480 +#: inc/class.admin.php:485 msgid "TaxoPress Logs" msgstr "Journaux de TaxoPress" -#: inc/class.admin.php:588 +#: inc/class.admin.php:590 msgid "TaxoPress options resetted to default options!" msgstr "" "Les options de TaxoPress ont été réinitialisées aux options par défaut !" -#: includes-core/TaxopressCoreAdmin.php:207 +#: includes-core/TaxopressCoreAdmin.php:208 msgid "" "TaxoPress Pro allows you to change how Auto Terms analyzes your posts. You " "will need to know how to write Regular Expressions to use this feature." @@ -3261,7 +3255,7 @@ msgstr "" "analysent vos publications. Vous devrez savoir comment écrire des " "expressions régulières pour utiliser cette fonctionnalité." -#: includes-core/TaxopressCoreAdmin.php:183 +#: includes-core/TaxopressCoreAdmin.php:184 msgid "" "TaxoPress Pro allows you to generate new terms for your content using the " "Dandelion and Open Calais services. These services can analyze your content " @@ -3271,7 +3265,7 @@ msgstr "" "en utilisant les services Dandelion et Open Calais. Ces services peuvent " "analyser votre contenu et ajouter de nouveaux termes." -#: includes-core/TaxopressCoreAdmin.php:159 +#: includes-core/TaxopressCoreAdmin.php:160 msgid "" "TaxoPress Pro allows you to schedule the \"Auto Terms to existing content\" " "feature. This is helpful if you regularly import content into WordPress. " @@ -3331,7 +3325,7 @@ msgstr "TaxoPress : Gérer les termes" msgid "TaxoPress: Mass Edit Terms" msgstr "TaxoPress : Edition en masse de termes" -#: inc/class.admin.php:515 inc/class.admin.php:528 +#: inc/class.admin.php:517 inc/class.admin.php:530 #: views/admin/page-settings.php:3 msgid "TaxoPress: Options" msgstr "TaxoPress : Options" @@ -3399,7 +3393,8 @@ msgstr "Terme(s) à fusionner :" msgid "Term(s) to rename:" msgstr "Terme(s) à renommer :" -#: inc/terms-table.php:15 inc/terms.php:171 inc/terms.php:172 inc/terms.php:223 +#: inc/functions.inc.php:362 inc/terms-table.php:15 inc/terms.php:171 +#: inc/terms.php:172 inc/terms.php:223 msgid "Terms" msgstr "Termes" @@ -3419,7 +3414,7 @@ msgstr "Termes bien ajoutés" msgid "Terms deleted successfully." msgstr "Les termes ont bien été supprimés." -#: inc/functions.inc.php:362 inc/tag-clouds-table.php:14 +#: inc/functions.inc.php:368 inc/tag-clouds-table.php:14 #: inc/tag-clouds-table.php:15 inc/tag-clouds.php:72 inc/tag-clouds.php:73 #: inc/tag-clouds.php:126 msgid "Terms Display" @@ -3441,7 +3436,7 @@ msgstr "Format d’affichage des termes" msgid "Terms Display successfully deleted." msgstr "L’affichage de termes a été supprimé avec succès." -#: inc/functions.inc.php:368 inc/post-tags-table.php:14 +#: inc/functions.inc.php:374 inc/post-tags-table.php:14 #: inc/post-tags-table.php:15 inc/post-tags.php:71 inc/post-tags.php:125 #: inc/post-tags.php:712 msgid "Terms for Current Post" @@ -3503,7 +3498,7 @@ msgstr "Texte à afficher dans l’attribut de titre pour les liens :" msgid "Text to show when there is no related post" msgstr "Texte à afficher lorsqu’il n’y a pas de publication similaire" -#: inc/class.admin.php:669 +#: inc/class.admin.php:671 msgid "Thanks for using TaxoPress | %1sTaxoPress.com%2s | Version %3s" msgstr "Merci d’utiliser TaxoPress | %1sTaxoPress.com%2s | Version %3s" @@ -3597,7 +3592,7 @@ msgstr "Le nombre de fois où le terme est utilisé" msgid "The post excerpt" msgstr "L’extrait de la publication" -#: inc/functions.inc.php:375 inc/related-posts.php:130 +#: inc/related-posts.php:130 msgid "" "The Related Posts feature works by checking for shared taxonomy terms. If " "your post has the terms “WordPress” and “Website”, then Related Posts will " @@ -3713,7 +3708,7 @@ msgstr "" "Ces réglages ne sont plus mis à jour. Veuillez utiliser l’écran « Termes " "pour la publication actuelle » à la place." -#: inc/class.admin.php:333 +#: inc/class.admin.php:335 msgid "This custom post type not have taxonomies." msgstr "Ce type de publication personnalisé n’a pas de taxonomies." @@ -3734,7 +3729,7 @@ msgstr "" "Cela vous permet d’ignorer les messages qui ont déjà été analysés par la " "fonctionnalité contenu existant." -#: inc/functions.inc.php:369 inc/post-tags.php:128 +#: inc/functions.inc.php:375 inc/post-tags.php:128 msgid "" "This feature allows you create a customizable display of all the terms " "assigned to the current post." @@ -3742,7 +3737,13 @@ msgstr "" "Cette fonctionnalité vous permet de créer un affichage personnalisable de " "tous les termes assignés à la publication actuelle." -#: inc/functions.inc.php:363 inc/tag-clouds.php:130 +#: inc/functions.inc.php:411 +msgid "" +"This feature allows you to add, rename, merge, and delete terms for any " +"taxonomy." +msgstr "" + +#: inc/functions.inc.php:369 inc/tag-clouds.php:130 msgid "" "This feature allows you to create a customizable display of all the terms in " "one taxonomy." @@ -3765,28 +3766,36 @@ msgstr "" "Cette fonctionnalité vous permet d’afficher les publications similaires en " "fonction de la correspondance des termes." -#: inc/functions.inc.php:399 -msgid "" -"This feature allows you to edit the terms of any taxonomy for multiple posts " -"at the same time." -msgstr "" -"Cette fonctionnalité vous permet de modifier les termes de n’importe quelle " -"taxonomie pour plusieurs publications en même temps." - #: inc/functions.inc.php:405 msgid "" -"This feature allows you to edit, merge, delete and add terms for any " -"taxonomy." +"This feature allows you to quickly edit the terms attached to multiple posts " +"at the same time." msgstr "" -"Cette fonctionnalité vous permet de modifier, supprimer et ajouter des " -"termes pour n’importe quelle taxonomie." #: inc/class.admin.manage.php:306 msgid "This feature allows you to remove rarely used terms." msgstr "" "Cette fonctionnalité vous permet de supprimer les termes rarement utilisés." -#: inc/functions.inc.php:393 inc/suggestterms.php:130 +#: inc/functions.inc.php:363 +msgid "This feature allows you to search and edit all the terms on your site." +msgstr "" + +#: inc/functions.inc.php:387 +msgid "" +"This feature automatically adds links to your chosen terms. If you have a " +"term called “WordPress”, Auto Links finds the word “WordPress” in your " +"content and add links to the archive page for that term." +msgstr "" + +#: inc/functions.inc.php:381 +msgid "" +"This feature creates a display of similar posts. If a post has the terms " +"“WordPress” and “Website”, Related Posts will display other posts with those " +"same terms." +msgstr "" + +#: inc/suggestterms.php:130 msgid "" "This feature helps when you're writing content. \"Suggest Terms\" can show a " "metabox where you can browse all your existing terms. \"Suggest Terms\" can " @@ -3797,6 +3806,13 @@ msgstr "" "termes existants. « Termes suggérés\" peut également analyser votre contenu " "et trouver de nouvelles idées de termes." +#: inc/functions.inc.php:399 +msgid "" +"This feature helps when you're writing content. \"Suggest Terms\" shows a " +"box with all existing terms, and can also analyze your content to find new " +"ideas for terms." +msgstr "" + #: inc/class.admin.manage.php:169 msgid "" "This feature lets you add one or more new terms to all %s which match any of " @@ -3805,7 +3821,7 @@ msgstr "" "Cette fonctionnalité vous permet d’ajouter un ou plusieurs nouveaux termes à " "tous vos %s qui correspondent à l’un des termes donnés." -#: inc/class.admin.php:634 +#: inc/class.admin.php:636 msgid "This feature requires at least 1 tag to work. Begin by adding tags!" msgstr "" "Cette fonctionnalité nécéssite au moins 1 étiquette pour fonctionner. " @@ -3826,7 +3842,7 @@ msgstr "" "Cette fonctionnalité affiche une boîte méta où vous pouvez parcourir tous " "vos termes existants." -#: inc/class.admin.php:636 +#: inc/class.admin.php:638 msgid "" "This feature works only with activated JavaScript. Activate it in your Web " "browser so you can!" @@ -4080,16 +4096,16 @@ msgstr "Mis à jour du nom d’étiquette de média" msgid "Update options »" msgstr "Mettre à jour les options »" -#: inc/class.admin.php:480 +#: inc/class.admin.php:482 msgid "Update TaxoPress Logs" msgstr "Mise à jour des journaux de TaxoPress" #: inc/autolinks.php:899 inc/autoterms.php:1056 inc/post-tags.php:639 #: inc/related-posts.php:763 inc/suggestterms.php:717 inc/tag-clouds.php:731 -#: includes-core/TaxopressCoreAdmin.php:108 -#: includes-core/TaxopressCoreAdmin.php:161 -#: includes-core/TaxopressCoreAdmin.php:185 -#: includes-core/TaxopressCoreAdmin.php:209 +#: includes-core/TaxopressCoreAdmin.php:109 +#: includes-core/TaxopressCoreAdmin.php:162 +#: includes-core/TaxopressCoreAdmin.php:186 +#: includes-core/TaxopressCoreAdmin.php:210 msgid "Upgrade to Pro" msgstr "Passer en version Pro" @@ -4126,11 +4142,15 @@ msgstr "Utiliser le nouveau moteur de liens automatiques" msgid "Use only some terms in the selected taxonomy." msgstr "N’utiliser que certains termes de la taxonomie sélectionnée." -#: includes-core/TaxopressCoreAdmin.php:202 +#: includes-core/TaxopressCoreAdmin.php:203 msgid "Use Regular Expressions to modify Auto Terms" msgstr "" "Utilisez des expressions régulières pour modifier les termes automatiques" +#: includes-core/TaxopressCoreAdmin.php:104 +msgid "Use synonyms for terms" +msgstr "" + #: inc/taxonomies.php:1042 msgid "" "Used as tab text when showing all terms for hierarchical taxonomy while " @@ -4185,7 +4205,7 @@ msgstr "Voir %s" msgid "View Item" msgstr "Voir l’élément" -#: includes-core/TaxopressCoreAdmin.php:131 +#: includes-core/TaxopressCoreAdmin.php:132 msgid "View Knowledge Base" msgstr "Voir la base de connaissances" diff --git a/languages/simple-tags-it_IT.mo b/languages/simple-tags-it_IT.mo index dbcbf03eec908adbef0b96e7c2baed4e67a7fb17..d66cbbdf29e3493289f45bc3354db57a3379591b 100644 GIT binary patch delta 14409 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 LquLET?V|n" "%post_title% (%post_comment%)" @@ -235,7 +235,7 @@ msgstr "" "%post_title% (%post_comment%)" #: inc/class.client.tagcloud.php:64 inc/class.client.tagcloud.php:271 -#: inc/helper.options.default.php:61 +#: inc/helper.options.default.php:62 msgid "" "%tag_name%" -#: inc/helper.options.default.php:39 +#: inc/helper.options.default.php:40 msgid "%tag_name%" msgstr "%tag_name%" @@ -370,12 +370,12 @@ msgstr "" "singularonly – Solo nelle viste singole (pagina e " "articolo singolo)." -#: inc/class.client.related_posts.php:100 inc/helper.options.default.php:48 +#: inc/class.client.related_posts.php:100 inc/helper.options.default.php:49 msgid "

    Related posts

    " msgstr "

    Articoli correlati

    " #: inc/class.client.tagcloud.php:67 inc/class.client.tagcloud.php:274 -#: inc/helper.options.default.php:59 +#: inc/helper.options.default.php:60 msgid "

    Tag Cloud

    " msgstr "

    Nuvola di tag

    " @@ -464,7 +464,7 @@ msgid "Add links to synonyms" msgstr "" #: inc/autolinks.php:769 -msgid "Add links to the content synonyms." +msgid "Add links to the term synonyms." msgstr "" #: inc/autolinks.php:126 inc/post-tags.php:126 inc/related-posts.php:128 @@ -511,7 +511,7 @@ msgstr "Aggiungi nuovi termini suggeriti" msgid "Add new Taxonomy" msgstr "Aggiungi nuova tassonomia" -#: inc/class.admin.php:481 +#: inc/class.admin.php:483 msgid "Add New TaxoPress Logs" msgstr "Aggiungi nuovo TaxoPress Logs" @@ -589,7 +589,7 @@ msgstr "Aggiungi la tassonomia all'API wp-json di WordPress." msgid "Admin Area" msgstr "Area d'amministrazione" -#: inc/class.admin.php:797 +#: inc/class.admin.php:799 msgid "Administration" msgstr "Amministrazione" @@ -598,10 +598,6 @@ msgstr "Amministrazione" msgid "Advanced" msgstr "Avanzate" -#: inc/functions.inc.php:404 -msgid "Advanced Manage Terms" -msgstr "Gestione avanzata dei termini" - #: inc/class.widgets.php:379 msgid "Advanced usage:" msgstr "Utilizzo avanzato:" @@ -701,7 +697,7 @@ msgstr "Tentativo di visualizzare i termini automaticamente" msgid "Auto Link" msgstr "Auto link" -#: inc/class.admin.php:799 +#: inc/class.admin.php:801 msgid "Auto link" msgstr "Auto link" @@ -722,11 +718,11 @@ msgid "Auto Link title attribute" msgstr "Attributo title auto link" #: inc/autolinks-table.php:15 inc/autolinks.php:71 inc/autolinks.php:72 -#: inc/autolinks.php:125 inc/functions.inc.php:380 +#: inc/autolinks.php:125 inc/functions.inc.php:386 msgid "Auto Links" msgstr "Auto link" -#: inc/autolinks.php:128 inc/functions.inc.php:381 +#: inc/autolinks.php:128 msgid "" "Auto Links can automatically create links to your defined terms. For example," " if you have a term called “WordPress”, the Auto Links feature can find the " @@ -758,7 +754,7 @@ msgstr "Termine automatico per tipo di contenuto" msgid "Auto term settings not found" msgstr "Impostazioni dei termini automatici non trovate" -#: inc/autoterms.php:74 inc/autoterms.php:75 inc/functions.inc.php:386 +#: inc/autoterms.php:74 inc/autoterms.php:75 inc/functions.inc.php:392 msgid "Auto Terms" msgstr "Termini automatici" @@ -766,7 +762,7 @@ msgstr "Termini automatici" msgid "Auto terms" msgstr "Termine automatici" -#: inc/autoterms.php:241 inc/functions.inc.php:387 +#: inc/autoterms.php:241 inc/functions.inc.php:393 msgid "" "Auto Terms can scan your content and automatically assign new and existing " "terms." @@ -840,7 +836,7 @@ msgstr "Visualizzazione automatica" msgid "Automatic Term Suggestions" msgstr "Suggerimenti termini automatici" -#: includes-core/TaxopressCoreAdmin.php:178 +#: includes-core/TaxopressCoreAdmin.php:179 msgid "Automatically add new terms to your content" msgstr "Aggiungi automaticamente nuovi termini al tuo contenuto" @@ -943,7 +939,7 @@ msgstr "" msgid "Cancel" msgstr "Annulla" -#: inc/class.admin.php:390 +#: inc/class.admin.php:392 msgid "Change selection" msgstr "Cambia la selezione" @@ -1180,7 +1176,7 @@ msgstr "Inserisci qui la descrizione." msgid "Design" msgstr "Design" -#: includes-core/TaxopressCoreAdmin.php:129 +#: includes-core/TaxopressCoreAdmin.php:130 msgid "Detailed documentation is also available on the plugin website." msgstr "" "Una documentazione più dettagliata è inoltre disponibile sul sito del plugin." @@ -1268,7 +1264,7 @@ msgstr "Modifica termini suggeriti" msgid "Edit Taxonomy" msgstr "Modifica tassonomia" -#: inc/class.admin.php:479 +#: inc/class.admin.php:481 msgid "Edit TaxoPress Logs" msgstr "Modifica TaxoPress Logs" @@ -1288,7 +1284,7 @@ msgstr "Modifica questa metabox" msgid "Em" msgstr "Em" -#: inc/class.admin.php:803 +#: inc/class.admin.php:805 msgid "Embedded Tags" msgstr "Tag incorporati" @@ -1367,7 +1363,7 @@ msgstr "" "Errore. Devi inserire un termine singolo per unirlo in un termine dal nome " "nuovo!" -#: inc/class.admin.php:169 +#: inc/class.admin.php:171 msgid "Error: wrong data" msgstr "" @@ -1448,11 +1444,11 @@ msgstr "Termini esistenti sul tuo sito" msgid "False" msgstr "Falso" -#: includes-core/TaxopressCoreAdmin.php:104 +#: includes-core/TaxopressCoreAdmin.php:105 msgid "Fast, professional support" msgstr "Supporto rapido e professionale" -#: inc/class.admin.php:801 +#: inc/class.admin.php:803 msgid "Features" msgstr "Caratteristiche" @@ -1653,7 +1649,7 @@ msgstr "" "Esempio: se inserisci il termine \"WordPress\", \"Sito web\" l'opzione auto " "link non sostituirà mai questi termini. Separare le voci con una virgola." -#: includes-core/TaxopressCoreAdmin.php:120 +#: includes-core/TaxopressCoreAdmin.php:121 msgid "If you need help or have a new feature request, let us know." msgstr "" "Se hai bisogno di aiuto o vuoi fare una richiesta per una nuova " @@ -1680,7 +1676,7 @@ msgstr "Includere le categorie nei risultati?" msgid "Invalid access token !" msgstr "Token di accesso non valido!" -#: inc/class.admin.php:164 +#: inc/class.admin.php:166 msgid "Invalid nonce token!" msgstr "" @@ -1734,7 +1730,7 @@ msgstr "Colore meno usato:" msgid "Least popular font size:" msgstr "Dimensione del font meno usato:" -#: inc/class.admin.php:809 +#: inc/class.admin.php:811 msgid "Legacy" msgstr "Legacy" @@ -1794,6 +1790,7 @@ msgid "Manage Taxonomy" msgstr "Gestisci la tassonomia" #: inc/class.admin.manage.php:61 inc/class.admin.manage.php:132 +#: inc/functions.inc.php:410 msgid "Manage Terms" msgstr "Gestisci i termini" @@ -1809,14 +1806,10 @@ msgstr "Gestisci i termini per l'articolo corrente" msgid "Manual post update" msgstr "Aggiornamento manuale dell'articolo" -#: inc/class.admin.mass.php:31 +#: inc/class.admin.mass.php:31 inc/functions.inc.php:404 msgid "Mass Edit Terms" msgstr "Modifica in blocco dei termini" -#: inc/functions.inc.php:398 -msgid "Mass Edit terms" -msgstr "Modifica in blocco i termini" - #: inc/class.admin.mass.php:115 msgid "Mass edit terms" msgstr "Modifica in blocco dei termini" @@ -1971,7 +1964,7 @@ msgstr "Dimensione del font più usato:" msgid "Name" msgstr "Nome" -#: includes-core/TaxopressCoreAdmin.php:115 +#: includes-core/TaxopressCoreAdmin.php:116 msgid "Need TaxoPress Support?" msgstr "Hai bisogno dell'assistenza di TaxoPress?" @@ -1993,7 +1986,7 @@ msgstr "Nome nuovo elemento" msgid "New Media Tag name" msgstr "Nome del nuovo tag media" -#: inc/class.admin.php:482 +#: inc/class.admin.php:484 msgid "New TaxoPress Logs" msgstr "Nuovo TaxoPress Logs" @@ -2035,7 +2028,7 @@ msgstr "Nessun %s trovato nel cestino." msgid "No %s found." msgstr "Nessun %s trovato." -#: includes-core/TaxopressCoreAdmin.php:105 +#: includes-core/TaxopressCoreAdmin.php:106 msgid "No ads inside the plugin" msgstr "Senza pubblicità all'interno del plugin" @@ -2081,7 +2074,7 @@ msgstr "Nessun termine specificato!" msgid "No new/old valid term specified!" msgstr "Nessun nuovo/vecchio termine è stato specificato!" -#: inc/class.admin.php:154 +#: inc/class.admin.php:156 msgid "No permission!" msgstr "" @@ -2091,7 +2084,7 @@ msgstr "" "Non sono disponibili shortcode per gli articoli correlati. Aggiungi nuovo " "shortcode " -#: inc/class.client.related_posts.php:101 inc/helper.options.default.php:47 +#: inc/class.client.related_posts.php:101 inc/helper.options.default.php:48 #: inc/related-posts-functions.php:155 msgid "No related posts." msgstr "Nessun articolo correlato." @@ -2112,12 +2105,12 @@ msgstr "Nessun risultato dal tuo database di Wordpress." msgid "No tag for this post." msgstr "Nessun tag per questo articolo." -#: inc/helper.options.default.php:36 +#: inc/helper.options.default.php:37 msgid "No tags for this post." msgstr "Nessun tag per questo articolo." #: inc/class.client.tagcloud.php:66 inc/class.client.tagcloud.php:273 -#: inc/helper.options.default.php:58 +#: inc/helper.options.default.php:59 msgid "No tags." msgstr "Nessun tag." @@ -2252,11 +2245,12 @@ msgstr "" "sito del servizio per ottenere una chiave da immettere nelle opzioni di " "TaxoPress." -#: inc/autoterms.php:412 inc/post-tags.php:298 inc/related-posts.php:290 +#: inc/autolinks.php:315 inc/autoterms.php:412 inc/post-tags.php:298 +#: inc/related-posts.php:290 msgid "Options" msgstr "Opzioni" -#: inc/class.admin.php:582 +#: inc/class.admin.php:584 msgid "Options saved" msgstr "Opzioni salvate" @@ -2405,7 +2399,7 @@ msgstr "Fornisci un nome di tassonomia" msgid "Please provide a taxonomy to delete" msgstr "Fornisci una tassonomia da eliminare" -#: inc/class.admin.php:425 +#: inc/class.admin.php:427 msgid "Please select a valid" msgstr "Seleziona uno valido" @@ -2463,7 +2457,7 @@ msgstr "Formato dei link negli articoli:" msgid "Post tag separator string:" msgstr "Stringa di separazione dei tag negli articoli:" -#: inc/class.admin.php:293 +#: inc/class.admin.php:295 msgid "Post tags" msgstr "Tag dell'articolo" @@ -2495,11 +2489,11 @@ msgstr "Tipo di contenuto" msgid "Post Types" msgstr "Tipi di contenuto" -#: inc/class.admin.php:294 +#: inc/class.admin.php:296 msgid "Posts" msgstr "Articoli" -#: inc/autolinks-functions.php:160 inc/helper.options.default.php:28 +#: inc/autolinks-functions.php:160 inc/helper.options.default.php:29 msgid "Posts tagged with %s" msgstr "Articoli taggati con %s" @@ -2594,7 +2588,7 @@ msgstr "Chiave di registrazione" msgid "Related Post" msgstr "Articoli correlati" -#: inc/class.admin.php:807 inc/functions.inc.php:374 +#: inc/class.admin.php:809 inc/functions.inc.php:380 #: inc/related-posts-table.php:15 inc/related-posts.php:72 #: inc/related-posts.php:73 inc/related-posts.php:126 msgid "Related Posts" @@ -2683,7 +2677,7 @@ msgstr "Sostituito dal tag ID" msgid "Replaced by the tag’s name, formatted for attribute HTML" msgstr "Sostituito dal tag del nome, formattato come attributo HTML" -#: includes-core/TaxopressCoreAdmin.php:122 +#: includes-core/TaxopressCoreAdmin.php:123 msgid "Request Support" msgstr "Richiesta di assistenza" @@ -2752,7 +2746,7 @@ msgstr "Salva i termini per l'articolo corrente" msgid "Schedule" msgstr "Programmazione" -#: includes-core/TaxopressCoreAdmin.php:154 +#: includes-core/TaxopressCoreAdmin.php:155 msgid "Schedule Auto Terms for your content" msgstr "Programma i termini automatici per il tuo contenuto" @@ -2832,7 +2826,7 @@ msgstr "Cerca termini suggeriti" msgid "Search Taxonomies" msgstr "Cerca tassonomie" -#: inc/class.admin.php:477 +#: inc/class.admin.php:479 msgid "Search TaxoPress Logs" msgstr "Cerca TaxoPress Logs" @@ -2928,7 +2922,7 @@ msgid "Sets a custom query_var slug for this taxonomy." msgstr "Imposta uno slug query_var personalizzato per questa tassonomia." #: inc/autoterms-logs-table.php:164 inc/autoterms-logs-table.php:195 -#: inc/class.admin.php:529 +#: inc/class.admin.php:531 msgid "Settings" msgstr "Impostazioni" @@ -3075,7 +3069,7 @@ msgstr "Suggerisci termine" msgid "Suggest Term Post type" msgstr "Suggerisci un termine per il tipo di contenuto" -#: inc/functions.inc.php:392 inc/suggestterms-table.php:15 +#: inc/functions.inc.php:398 inc/suggestterms-table.php:15 #: inc/suggestterms.php:71 inc/suggestterms.php:72 inc/suggestterms.php:125 msgid "Suggest Terms" msgstr "Termini suggeriti" @@ -3100,7 +3094,7 @@ msgstr "termini suggeriti" msgid "Support hashtags symbols # in Auto Terms." msgstr "Supporta i simboli hashtag # nei termini automatici." -#: inc/autolinks.php:315 inc/terms-table.php:116 +#: inc/terms-table.php:116 msgid "Synonyms" msgstr "" @@ -3137,11 +3131,11 @@ msgstr "Nuvola di tag" msgid "Tags cloud type format:" msgstr "Tipo di formato per la nuvola di tag:" -#: inc/class.admin.php:805 +#: inc/class.admin.php:807 msgid "Tags for Current Post" msgstr "Tag per l'articolo corrente" -#: inc/class.client.post_tags.php:106 inc/helper.options.default.php:34 +#: inc/class.client.post_tags.php:106 inc/helper.options.default.php:35 #: inc/post-tags-functions.php:152 msgid "Tags: " msgstr "Tag: " @@ -3192,7 +3186,7 @@ msgstr "Tassonomia:" #. Name of the plugin #. Author of the plugin -#: inc/class-taxonomies-table.php:353 inc/class.admin.php:516 +#: inc/class-taxonomies-table.php:353 inc/class.admin.php:518 #: inc/class.admin.post.php:38 msgid "TaxoPress" msgstr "TaxoPress" @@ -3209,16 +3203,16 @@ msgstr "" msgid "TaxoPress and Languages" msgstr "TaxoPress e le lingue" -#: inc/class.admin.php:475 inc/class.admin.php:476 inc/class.admin.php:478 -#: inc/class.admin.php:483 +#: inc/class.admin.php:477 inc/class.admin.php:478 inc/class.admin.php:480 +#: inc/class.admin.php:485 msgid "TaxoPress Logs" msgstr "TaxoPress Logs" -#: inc/class.admin.php:588 +#: inc/class.admin.php:590 msgid "TaxoPress options resetted to default options!" msgstr "Le opzioni di TaxoPress sono state ripristinate ai valori predefiniti!" -#: includes-core/TaxopressCoreAdmin.php:207 +#: includes-core/TaxopressCoreAdmin.php:208 msgid "" "TaxoPress Pro allows you to change how Auto Terms analyzes your posts. You " "will need to know how to write Regular Expressions to use this feature." @@ -3227,7 +3221,7 @@ msgstr "" "automatici\" analizza i tuoi articoli. Per utilizzare questa caratteristica " "è però necessario saper scrivere le espressioni regolari." -#: includes-core/TaxopressCoreAdmin.php:183 +#: includes-core/TaxopressCoreAdmin.php:184 msgid "" "TaxoPress Pro allows you to generate new terms for your content using the " "Dandelion and Open Calais services. These services can analyze your content " @@ -3237,7 +3231,7 @@ msgstr "" "utilizzando i servizi Dandelion e Open Calais. Questi servizi possono " "analizzare il tuo contenuto e aggiungere nuovi termini." -#: includes-core/TaxopressCoreAdmin.php:159 +#: includes-core/TaxopressCoreAdmin.php:160 msgid "" "TaxoPress Pro allows you to schedule the \"Auto Terms to existing content\" " "feature. This is helpful if you regularly import content into WordPress. " @@ -3294,7 +3288,7 @@ msgstr "TaxoPress: Gestisci i termini" msgid "TaxoPress: Mass Edit Terms" msgstr "TaxoPress: Modifica in blocco dei termini" -#: inc/class.admin.php:515 inc/class.admin.php:528 +#: inc/class.admin.php:517 inc/class.admin.php:530 #: views/admin/page-settings.php:3 msgid "TaxoPress: Options" msgstr "TaxoPress: Opzioni" @@ -3362,7 +3356,8 @@ msgstr "Termini da unire:" msgid "Term(s) to rename:" msgstr "Termini da rinominare:" -#: inc/terms-table.php:15 inc/terms.php:171 inc/terms.php:172 inc/terms.php:223 +#: inc/functions.inc.php:362 inc/terms-table.php:15 inc/terms.php:171 +#: inc/terms.php:172 inc/terms.php:223 msgid "Terms" msgstr "Termini" @@ -3382,7 +3377,7 @@ msgstr "Termine aggiunto con successo" msgid "Terms deleted successfully." msgstr "Termini eliminati correttamente." -#: inc/functions.inc.php:362 inc/tag-clouds-table.php:14 +#: inc/functions.inc.php:368 inc/tag-clouds-table.php:14 #: inc/tag-clouds-table.php:15 inc/tag-clouds.php:72 inc/tag-clouds.php:73 #: inc/tag-clouds.php:126 msgid "Terms Display" @@ -3404,7 +3399,7 @@ msgstr "Formato visualizzazione dei termini" msgid "Terms Display successfully deleted." msgstr "Le visualizzazioni dei termini sono state eliminate con successo." -#: inc/functions.inc.php:368 inc/post-tags-table.php:14 +#: inc/functions.inc.php:374 inc/post-tags-table.php:14 #: inc/post-tags-table.php:15 inc/post-tags.php:71 inc/post-tags.php:125 #: inc/post-tags.php:712 msgid "Terms for Current Post" @@ -3465,7 +3460,7 @@ msgstr "Testo da visualizzare nell'attributo title dei link:" msgid "Text to show when there is no related post" msgstr "Inserisci il testo da mostrare quando non ci sono articoli correlati" -#: inc/class.admin.php:669 +#: inc/class.admin.php:671 msgid "Thanks for using TaxoPress | %1sTaxoPress.com%2s | Version %3s" msgstr "Grazie per utilizzare TaxoPress | %1sTaxoPress.com%2s | Versione %3s" @@ -3559,7 +3554,7 @@ msgstr "Il numero di volte che il termine è stato usato" msgid "The post excerpt" msgstr "Il titolo del riassunto" -#: inc/functions.inc.php:375 inc/related-posts.php:130 +#: inc/related-posts.php:130 msgid "" "The Related Posts feature works by checking for shared taxonomy terms. If " "your post has the terms “WordPress” and “Website”, then Related Posts will " @@ -3671,7 +3666,7 @@ msgstr "" "Queste impostazioni non vengono più aggiornate. Usa invece la schermata " "\"Termini per l'articolo corrente\"." -#: inc/class.admin.php:333 +#: inc/class.admin.php:335 msgid "This custom post type not have taxonomies." msgstr "Questo tipo di contenuto personalizzato non ha una tassonomia." @@ -3692,7 +3687,7 @@ msgstr "" "Ciò consente di saltare gli articoli che sono già stati analizzati dalla " "funzionalità \"Contenuto esistente\"." -#: inc/functions.inc.php:369 inc/post-tags.php:128 +#: inc/functions.inc.php:375 inc/post-tags.php:128 msgid "" "This feature allows you create a customizable display of all the terms " "assigned to the current post." @@ -3700,7 +3695,13 @@ msgstr "" "Questa caratteristica ti permette di creare una visualizzazione " "personalizzabile di tutti i termini assegnati all'articolo corrente." -#: inc/functions.inc.php:363 inc/tag-clouds.php:130 +#: inc/functions.inc.php:411 +msgid "" +"This feature allows you to add, rename, merge, and delete terms for any " +"taxonomy." +msgstr "" + +#: inc/functions.inc.php:369 inc/tag-clouds.php:130 msgid "" "This feature allows you to create a customizable display of all the terms in " "one taxonomy." @@ -3723,28 +3724,36 @@ msgstr "" "Questa funzionalità ti permette di visualizzare gli articoli correlati in " "base alla relazione dei termini." -#: inc/functions.inc.php:399 -msgid "" -"This feature allows you to edit the terms of any taxonomy for multiple posts " -"at the same time." -msgstr "" -"Questa funzionalità consente di modificare i termini di qualsiasi tassonomia " -"per molti articoli contemporaneamente." - #: inc/functions.inc.php:405 msgid "" -"This feature allows you to edit, merge, delete and add terms for any " -"taxonomy." +"This feature allows you to quickly edit the terms attached to multiple posts " +"at the same time." msgstr "" -"Questa funzionalità ti permette di modificare, unire, eliminare e aggiungere " -"termini per ciascuna tassonomia." #: inc/class.admin.manage.php:306 msgid "This feature allows you to remove rarely used terms." msgstr "" "Questa funzionalità ti permette di eliminare i termini usati raramente." -#: inc/functions.inc.php:393 inc/suggestterms.php:130 +#: inc/functions.inc.php:363 +msgid "This feature allows you to search and edit all the terms on your site." +msgstr "" + +#: inc/functions.inc.php:387 +msgid "" +"This feature automatically adds links to your chosen terms. If you have a " +"term called “WordPress”, Auto Links finds the word “WordPress” in your " +"content and add links to the archive page for that term." +msgstr "" + +#: inc/functions.inc.php:381 +msgid "" +"This feature creates a display of similar posts. If a post has the terms " +"“WordPress” and “Website”, Related Posts will display other posts with those " +"same terms." +msgstr "" + +#: inc/suggestterms.php:130 msgid "" "This feature helps when you're writing content. \"Suggest Terms\" can show a " "metabox where you can browse all your existing terms. \"Suggest Terms\" can " @@ -3755,6 +3764,13 @@ msgstr "" "esistenti. \"Termini suggeriti\" può analizzare il tuo contenuto e trovare " "nuove idee per i termini." +#: inc/functions.inc.php:399 +msgid "" +"This feature helps when you're writing content. \"Suggest Terms\" shows a " +"box with all existing terms, and can also analyze your content to find new " +"ideas for terms." +msgstr "" + #: inc/class.admin.manage.php:169 msgid "" "This feature lets you add one or more new terms to all %s which match any of " @@ -3763,7 +3779,7 @@ msgstr "" "Questa funzione ti consente di aggiungere uno o più termini nuovi a tutti i " "%s che corrispondono a uno dei termini indicati." -#: inc/class.admin.php:634 +#: inc/class.admin.php:636 msgid "This feature requires at least 1 tag to work. Begin by adding tags!" msgstr "" "Questa caratteristica richiede almeno 1 tag per funzionare. Inizia ad " @@ -3784,7 +3800,7 @@ msgstr "" "Questa caratteristica mostra una metabox dove puoi scorrere tutti i termini " "esistenti." -#: inc/class.admin.php:636 +#: inc/class.admin.php:638 msgid "" "This feature works only with activated JavaScript. Activate it in your Web " "browser so you can!" @@ -4033,16 +4049,16 @@ msgstr "Aggiorna il nome del tag media" msgid "Update options »" msgstr "Aggiorna opzioni »" -#: inc/class.admin.php:480 +#: inc/class.admin.php:482 msgid "Update TaxoPress Logs" msgstr "Aggiorna TaxoPress Logs" #: inc/autolinks.php:899 inc/autoterms.php:1056 inc/post-tags.php:639 #: inc/related-posts.php:763 inc/suggestterms.php:717 inc/tag-clouds.php:731 -#: includes-core/TaxopressCoreAdmin.php:108 -#: includes-core/TaxopressCoreAdmin.php:161 -#: includes-core/TaxopressCoreAdmin.php:185 -#: includes-core/TaxopressCoreAdmin.php:209 +#: includes-core/TaxopressCoreAdmin.php:109 +#: includes-core/TaxopressCoreAdmin.php:162 +#: includes-core/TaxopressCoreAdmin.php:186 +#: includes-core/TaxopressCoreAdmin.php:210 msgid "Upgrade to Pro" msgstr "Aggiorna a Pro" @@ -4079,10 +4095,14 @@ msgstr "Usa il nuovo motore di auto link" msgid "Use only some terms in the selected taxonomy." msgstr "Usa solo alcuni termini nella tassonomia selezionata." -#: includes-core/TaxopressCoreAdmin.php:202 +#: includes-core/TaxopressCoreAdmin.php:203 msgid "Use Regular Expressions to modify Auto Terms" msgstr "Usa le espressioni regolari per modificare i termini automatici" +#: includes-core/TaxopressCoreAdmin.php:104 +msgid "Use synonyms for terms" +msgstr "" + #: inc/taxonomies.php:1042 msgid "" "Used as tab text when showing all terms for hierarchical taxonomy while " @@ -4137,7 +4157,7 @@ msgstr "Visualizza %s" msgid "View Item" msgstr "Visualizza elemento" -#: includes-core/TaxopressCoreAdmin.php:131 +#: includes-core/TaxopressCoreAdmin.php:132 msgid "View Knowledge Base" msgstr "Visualizza le informazioni di base" diff --git a/languages/simple-tags.pot b/languages/simple-tags.pot index c753490f..68c67634 100644 --- a/languages/simple-tags.pot +++ b/languages/simple-tags.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: TaxoPress 2.3\n" "Report-Msgid-Bugs-To: http://wordpress.org/tag/simple-tags\n" -"POT-Creation-Date: 2023-06-15 12:40+0000\n" +"POT-Creation-Date: 2023-06-15 14:55+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -242,21 +242,21 @@ msgstr "" msgid "7 days ago" msgstr "" -#: inc/class.client.related_posts.php:103 inc/helper.options.default.php:49 +#: inc/class.client.related_posts.php:103 inc/helper.options.default.php:50 msgid "" "" "%post_title% (%post_comment%)" msgstr "" #: inc/class.client.tagcloud.php:64 inc/class.client.tagcloud.php:271 -#: inc/helper.options.default.php:61 +#: inc/helper.options.default.php:62 msgid "" "%tag_name%" msgstr "" -#: inc/helper.options.default.php:39 +#: inc/helper.options.default.php:40 msgid "%tag_name%" msgstr "" @@ -371,12 +371,12 @@ msgid "" "singularonly – Only on your singular view (single & page)." msgstr "" -#: inc/class.client.related_posts.php:100 inc/helper.options.default.php:48 +#: inc/class.client.related_posts.php:100 inc/helper.options.default.php:49 msgid "

    Related posts

    " msgstr "" #: inc/class.client.tagcloud.php:67 inc/class.client.tagcloud.php:274 -#: inc/helper.options.default.php:59 +#: inc/helper.options.default.php:60 msgid "

    Tag Cloud

    " msgstr "" @@ -454,7 +454,7 @@ msgid "Add links to synonyms" msgstr "" #: inc/autolinks.php:769 -msgid "Add links to the content synonyms." +msgid "Add links to the term synonyms." msgstr "" #: inc/autolinks.php:126 inc/post-tags.php:126 inc/related-posts.php:128 @@ -502,7 +502,7 @@ msgstr "" msgid "Add new Taxonomy" msgstr "" -#: inc/class.admin.php:481 +#: inc/class.admin.php:483 msgid "Add New TaxoPress Logs" msgstr "" @@ -582,7 +582,7 @@ msgstr "" msgid "Admin Area" msgstr "" -#: inc/class.admin.php:797 +#: inc/class.admin.php:799 msgid "Administration" msgstr "" @@ -591,10 +591,6 @@ msgstr "" msgid "Advanced" msgstr "" -#: inc/functions.inc.php:404 -msgid "Advanced Manage Terms" -msgstr "" - #: inc/class.widgets.php:379 msgid "Advanced usage:" msgstr "" @@ -691,7 +687,7 @@ msgstr "" msgid "Auto Link" msgstr "" -#: inc/class.admin.php:799 +#: inc/class.admin.php:801 msgid "Auto link" msgstr "" @@ -712,11 +708,11 @@ msgid "Auto Link title attribute" msgstr "" #: inc/autolinks-table.php:15 inc/autolinks.php:71 inc/autolinks.php:72 -#: inc/autolinks.php:125 inc/functions.inc.php:380 +#: inc/autolinks.php:125 inc/functions.inc.php:386 msgid "Auto Links" msgstr "" -#: inc/autolinks.php:128 inc/functions.inc.php:381 +#: inc/autolinks.php:128 msgid "" "Auto Links can automatically create links to your defined terms. For example," " if you have a term called “WordPress”, the Auto Links feature can find the " @@ -744,7 +740,7 @@ msgstr "" msgid "Auto term settings not found" msgstr "" -#: inc/autoterms.php:74 inc/autoterms.php:75 inc/functions.inc.php:386 +#: inc/autoterms.php:74 inc/autoterms.php:75 inc/functions.inc.php:392 msgid "Auto Terms" msgstr "" @@ -752,7 +748,7 @@ msgstr "" msgid "Auto terms" msgstr "" -#: inc/autoterms.php:241 inc/functions.inc.php:387 +#: inc/autoterms.php:241 inc/functions.inc.php:393 msgid "" "Auto Terms can scan your content and automatically assign new and existing " "terms." @@ -822,7 +818,7 @@ msgstr "" msgid "Automatic Term Suggestions" msgstr "" -#: includes-core/TaxopressCoreAdmin.php:178 +#: includes-core/TaxopressCoreAdmin.php:179 msgid "Automatically add new terms to your content" msgstr "" @@ -915,7 +911,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: inc/class.admin.php:390 +#: inc/class.admin.php:392 msgid "Change selection" msgstr "" @@ -1143,7 +1139,7 @@ msgstr "" msgid "Design" msgstr "" -#: includes-core/TaxopressCoreAdmin.php:129 +#: includes-core/TaxopressCoreAdmin.php:130 msgid "Detailed documentation is also available on the plugin website." msgstr "" @@ -1229,7 +1225,7 @@ msgstr "" msgid "Edit Taxonomy" msgstr "" -#: inc/class.admin.php:479 +#: inc/class.admin.php:481 msgid "Edit TaxoPress Logs" msgstr "" @@ -1249,7 +1245,7 @@ msgstr "" msgid "Em" msgstr "" -#: inc/class.admin.php:803 +#: inc/class.admin.php:805 msgid "Embedded Tags" msgstr "" @@ -1319,7 +1315,7 @@ msgstr "" msgid "Error. You need to enter a single term to merge to in new term name !" msgstr "" -#: inc/class.admin.php:169 +#: inc/class.admin.php:171 msgid "Error: wrong data" msgstr "" @@ -1390,11 +1386,11 @@ msgstr "" msgid "False" msgstr "" -#: includes-core/TaxopressCoreAdmin.php:104 +#: includes-core/TaxopressCoreAdmin.php:105 msgid "Fast, professional support" msgstr "" -#: inc/class.admin.php:801 +#: inc/class.admin.php:803 msgid "Features" msgstr "" @@ -1579,7 +1575,7 @@ msgid "" "will never replace these terms. Separate multiple entries with a comma." msgstr "" -#: includes-core/TaxopressCoreAdmin.php:120 +#: includes-core/TaxopressCoreAdmin.php:121 msgid "If you need help or have a new feature request, let us know." msgstr "" @@ -1602,7 +1598,7 @@ msgstr "" msgid "Invalid access token !" msgstr "" -#: inc/class.admin.php:164 +#: inc/class.admin.php:166 msgid "Invalid nonce token!" msgstr "" @@ -1654,7 +1650,7 @@ msgstr "" msgid "Least popular font size:" msgstr "" -#: inc/class.admin.php:809 +#: inc/class.admin.php:811 msgid "Legacy" msgstr "" @@ -1712,6 +1708,7 @@ msgid "Manage Taxonomy" msgstr "" #: inc/class.admin.manage.php:61 inc/class.admin.manage.php:132 +#: inc/functions.inc.php:410 msgid "Manage Terms" msgstr "" @@ -1727,14 +1724,10 @@ msgstr "" msgid "Manual post update" msgstr "" -#: inc/class.admin.mass.php:31 +#: inc/class.admin.mass.php:31 inc/functions.inc.php:404 msgid "Mass Edit Terms" msgstr "" -#: inc/functions.inc.php:398 -msgid "Mass Edit terms" -msgstr "" - #: inc/class.admin.mass.php:115 msgid "Mass edit terms" msgstr "" @@ -1888,7 +1881,7 @@ msgstr "" msgid "Name" msgstr "" -#: includes-core/TaxopressCoreAdmin.php:115 +#: includes-core/TaxopressCoreAdmin.php:116 msgid "Need TaxoPress Support?" msgstr "" @@ -1912,7 +1905,7 @@ msgstr "" msgid "New Media Tag name" msgstr "" -#: inc/class.admin.php:482 +#: inc/class.admin.php:484 msgid "New TaxoPress Logs" msgstr "" @@ -1958,7 +1951,7 @@ msgstr "" msgid "No %s found." msgstr "" -#: includes-core/TaxopressCoreAdmin.php:105 +#: includes-core/TaxopressCoreAdmin.php:106 msgid "No ads inside the plugin" msgstr "" @@ -2002,7 +1995,7 @@ msgstr "" msgid "No new/old valid term specified!" msgstr "" -#: inc/class.admin.php:154 +#: inc/class.admin.php:156 msgid "No permission!" msgstr "" @@ -2010,7 +2003,7 @@ msgstr "" msgid "No Related Posts shortcode available. Add new shortcode " msgstr "" -#: inc/class.client.related_posts.php:101 inc/helper.options.default.php:47 +#: inc/class.client.related_posts.php:101 inc/helper.options.default.php:48 #: inc/related-posts-functions.php:155 msgid "No related posts." msgstr "" @@ -2031,12 +2024,12 @@ msgstr "" msgid "No tag for this post." msgstr "" -#: inc/helper.options.default.php:36 +#: inc/helper.options.default.php:37 msgid "No tags for this post." msgstr "" #: inc/class.client.tagcloud.php:66 inc/class.client.tagcloud.php:273 -#: inc/helper.options.default.php:58 +#: inc/helper.options.default.php:59 msgid "No tags." msgstr "" @@ -2162,11 +2155,12 @@ msgid "" "obtain a key and set it on TaxoPress options." msgstr "" -#: inc/autoterms.php:412 inc/post-tags.php:298 inc/related-posts.php:290 +#: inc/autolinks.php:315 inc/autoterms.php:412 inc/post-tags.php:298 +#: inc/related-posts.php:290 msgid "Options" msgstr "" -#: inc/class.admin.php:582 +#: inc/class.admin.php:584 msgid "Options saved" msgstr "" @@ -2314,7 +2308,7 @@ msgstr "" msgid "Please provide a taxonomy to delete" msgstr "" -#: inc/class.admin.php:425 +#: inc/class.admin.php:427 msgid "Please select a valid" msgstr "" @@ -2373,7 +2367,7 @@ msgstr "" msgid "Post tag separator string:" msgstr "" -#: inc/class.admin.php:293 +#: inc/class.admin.php:295 msgid "Post tags" msgstr "" @@ -2405,11 +2399,11 @@ msgstr "" msgid "Post Types" msgstr "" -#: inc/class.admin.php:294 +#: inc/class.admin.php:296 msgid "Posts" msgstr "" -#: inc/autolinks-functions.php:160 inc/helper.options.default.php:28 +#: inc/autolinks-functions.php:160 inc/helper.options.default.php:29 #, php-format msgid "Posts tagged with %s" msgstr "" @@ -2507,7 +2501,7 @@ msgstr "" msgid "Related Post" msgstr "" -#: inc/class.admin.php:807 inc/functions.inc.php:374 +#: inc/class.admin.php:809 inc/functions.inc.php:380 #: inc/related-posts-table.php:15 inc/related-posts.php:72 #: inc/related-posts.php:73 inc/related-posts.php:126 msgid "Related Posts" @@ -2595,7 +2589,7 @@ msgstr "" msgid "Replaced by the tag’s name, formatted for attribute HTML" msgstr "" -#: includes-core/TaxopressCoreAdmin.php:122 +#: includes-core/TaxopressCoreAdmin.php:123 msgid "Request Support" msgstr "" @@ -2664,7 +2658,7 @@ msgstr "" msgid "Schedule" msgstr "" -#: includes-core/TaxopressCoreAdmin.php:154 +#: includes-core/TaxopressCoreAdmin.php:155 msgid "Schedule Auto Terms for your content" msgstr "" @@ -2742,7 +2736,7 @@ msgstr "" msgid "Search Taxonomies" msgstr "" -#: inc/class.admin.php:477 +#: inc/class.admin.php:479 msgid "Search TaxoPress Logs" msgstr "" @@ -2832,7 +2826,7 @@ msgid "Sets a custom query_var slug for this taxonomy." msgstr "" #: inc/autoterms-logs-table.php:164 inc/autoterms-logs-table.php:195 -#: inc/class.admin.php:529 +#: inc/class.admin.php:531 msgid "Settings" msgstr "" @@ -2978,7 +2972,7 @@ msgstr "" msgid "Suggest Term Post type" msgstr "" -#: inc/functions.inc.php:392 inc/suggestterms-table.php:15 +#: inc/functions.inc.php:398 inc/suggestterms-table.php:15 #: inc/suggestterms.php:71 inc/suggestterms.php:72 inc/suggestterms.php:125 msgid "Suggest Terms" msgstr "" @@ -3003,7 +2997,7 @@ msgstr "" msgid "Support hashtags symbols # in Auto Terms." msgstr "" -#: inc/autolinks.php:315 inc/terms-table.php:116 +#: inc/terms-table.php:116 msgid "Synonyms" msgstr "" @@ -3040,11 +3034,11 @@ msgstr "" msgid "Tags cloud type format:" msgstr "" -#: inc/class.admin.php:805 +#: inc/class.admin.php:807 msgid "Tags for Current Post" msgstr "" -#: inc/class.client.post_tags.php:106 inc/helper.options.default.php:34 +#: inc/class.client.post_tags.php:106 inc/helper.options.default.php:35 #: inc/post-tags-functions.php:152 msgid "Tags: " msgstr "" @@ -3095,7 +3089,7 @@ msgstr "" #. Name of the plugin #. Author of the plugin -#: inc/class-taxonomies-table.php:353 inc/class.admin.php:516 +#: inc/class-taxonomies-table.php:353 inc/class.admin.php:518 #: inc/class.admin.post.php:38 msgid "TaxoPress" msgstr "" @@ -3110,29 +3104,29 @@ msgstr "" msgid "TaxoPress and Languages" msgstr "" -#: inc/class.admin.php:475 inc/class.admin.php:476 inc/class.admin.php:478 -#: inc/class.admin.php:483 +#: inc/class.admin.php:477 inc/class.admin.php:478 inc/class.admin.php:480 +#: inc/class.admin.php:485 msgid "TaxoPress Logs" msgstr "" -#: inc/class.admin.php:588 +#: inc/class.admin.php:590 msgid "TaxoPress options resetted to default options!" msgstr "" -#: includes-core/TaxopressCoreAdmin.php:207 +#: includes-core/TaxopressCoreAdmin.php:208 msgid "" "TaxoPress Pro allows you to change how Auto Terms analyzes your posts. You " "will need to know how to write Regular Expressions to use this feature." msgstr "" -#: includes-core/TaxopressCoreAdmin.php:183 +#: includes-core/TaxopressCoreAdmin.php:184 msgid "" "TaxoPress Pro allows you to generate new terms for your content using the " "Dandelion and Open Calais services. These services can analyze your content " "and add new terms." msgstr "" -#: includes-core/TaxopressCoreAdmin.php:159 +#: includes-core/TaxopressCoreAdmin.php:160 msgid "" "TaxoPress Pro allows you to schedule the \"Auto Terms to existing content\" " "feature. This is helpful if you regularly import content into WordPress. " @@ -3178,7 +3172,7 @@ msgstr "" msgid "TaxoPress: Mass Edit Terms" msgstr "" -#: inc/class.admin.php:515 inc/class.admin.php:528 +#: inc/class.admin.php:517 inc/class.admin.php:530 #: views/admin/page-settings.php:3 msgid "TaxoPress: Options" msgstr "" @@ -3247,7 +3241,8 @@ msgstr "" msgid "Term(s) to rename:" msgstr "" -#: inc/terms-table.php:15 inc/terms.php:171 inc/terms.php:172 inc/terms.php:223 +#: inc/functions.inc.php:362 inc/terms-table.php:15 inc/terms.php:171 +#: inc/terms.php:172 inc/terms.php:223 msgid "Terms" msgstr "" @@ -3268,7 +3263,7 @@ msgstr "" msgid "Terms deleted successfully." msgstr "" -#: inc/functions.inc.php:362 inc/tag-clouds-table.php:14 +#: inc/functions.inc.php:368 inc/tag-clouds-table.php:14 #: inc/tag-clouds-table.php:15 inc/tag-clouds.php:72 inc/tag-clouds.php:73 #: inc/tag-clouds.php:126 msgid "Terms Display" @@ -3290,7 +3285,7 @@ msgstr "" msgid "Terms Display successfully deleted." msgstr "" -#: inc/functions.inc.php:368 inc/post-tags-table.php:14 +#: inc/functions.inc.php:374 inc/post-tags-table.php:14 #: inc/post-tags-table.php:15 inc/post-tags.php:71 inc/post-tags.php:125 #: inc/post-tags.php:712 msgid "Terms for Current Post" @@ -3349,7 +3344,7 @@ msgstr "" msgid "Text to show when there is no related post" msgstr "" -#: inc/class.admin.php:669 +#: inc/class.admin.php:671 #, php-format msgid "Thanks for using TaxoPress | %1sTaxoPress.com%2s | Version %3s" msgstr "" @@ -3435,7 +3430,7 @@ msgstr "" msgid "The post excerpt" msgstr "" -#: inc/functions.inc.php:375 inc/related-posts.php:130 +#: inc/related-posts.php:130 msgid "" "The Related Posts feature works by checking for shared taxonomy terms. If " "your post has the terms “WordPress” and “Website”, then Related Posts will " @@ -3527,7 +3522,7 @@ msgid "" "Current Post\" screen instead." msgstr "" -#: inc/class.admin.php:333 +#: inc/class.admin.php:335 msgid "This custom post type not have taxonomies." msgstr "" @@ -3543,13 +3538,19 @@ msgid "" "Existing Content feature." msgstr "" -#: inc/functions.inc.php:369 inc/post-tags.php:128 +#: inc/functions.inc.php:375 inc/post-tags.php:128 msgid "" "This feature allows you create a customizable display of all the terms " "assigned to the current post." msgstr "" -#: inc/functions.inc.php:363 inc/tag-clouds.php:130 +#: inc/functions.inc.php:411 +msgid "" +"This feature allows you to add, rename, merge, and delete terms for any " +"taxonomy." +msgstr "" + +#: inc/functions.inc.php:369 inc/tag-clouds.php:130 msgid "" "This feature allows you to create a customizable display of all the terms in " "one taxonomy." @@ -3566,29 +3567,48 @@ msgid "" "This feature allows you to display related posts based on terms relation." msgstr "" -#: inc/functions.inc.php:399 +#: inc/functions.inc.php:405 msgid "" -"This feature allows you to edit the terms of any taxonomy for multiple posts " +"This feature allows you to quickly edit the terms attached to multiple posts " "at the same time." msgstr "" -#: inc/functions.inc.php:405 +#: inc/class.admin.manage.php:306 +msgid "This feature allows you to remove rarely used terms." +msgstr "" + +#: inc/functions.inc.php:363 +msgid "This feature allows you to search and edit all the terms on your site." +msgstr "" + +#: inc/functions.inc.php:387 msgid "" -"This feature allows you to edit, merge, delete and add terms for any " -"taxonomy." +"This feature automatically adds links to your chosen terms. If you have a " +"term called “WordPress”, Auto Links finds the word “WordPress” in your " +"content and add links to the archive page for that term." msgstr "" -#: inc/class.admin.manage.php:306 -msgid "This feature allows you to remove rarely used terms." +#: inc/functions.inc.php:381 +msgid "" +"This feature creates a display of similar posts. If a post has the terms " +"“WordPress” and “Website”, Related Posts will display other posts with those " +"same terms." msgstr "" -#: inc/functions.inc.php:393 inc/suggestterms.php:130 +#: inc/suggestterms.php:130 msgid "" "This feature helps when you're writing content. \"Suggest Terms\" can show a " "metabox where you can browse all your existing terms. \"Suggest Terms\" can " "also analyze your content and find new ideas for terms." msgstr "" +#: inc/functions.inc.php:399 +msgid "" +"This feature helps when you're writing content. \"Suggest Terms\" shows a " +"box with all existing terms, and can also analyze your content to find new " +"ideas for terms." +msgstr "" + #: inc/class.admin.manage.php:169 #, php-format msgid "" @@ -3596,7 +3616,7 @@ msgid "" "the terms given." msgstr "" -#: inc/class.admin.php:634 +#: inc/class.admin.php:636 msgid "This feature requires at least 1 tag to work. Begin by adding tags!" msgstr "" @@ -3611,7 +3631,7 @@ msgid "" "This feature shows a metabox where you can browse all your existing terms." msgstr "" -#: inc/class.admin.php:636 +#: inc/class.admin.php:638 msgid "" "This feature works only with activated JavaScript. Activate it in your Web " "browser so you can!" @@ -3834,16 +3854,16 @@ msgstr "" msgid "Update options »" msgstr "" -#: inc/class.admin.php:480 +#: inc/class.admin.php:482 msgid "Update TaxoPress Logs" msgstr "" #: inc/autolinks.php:899 inc/autoterms.php:1056 inc/post-tags.php:639 #: inc/related-posts.php:763 inc/suggestterms.php:717 inc/tag-clouds.php:731 -#: includes-core/TaxopressCoreAdmin.php:108 -#: includes-core/TaxopressCoreAdmin.php:161 -#: includes-core/TaxopressCoreAdmin.php:185 -#: includes-core/TaxopressCoreAdmin.php:209 +#: includes-core/TaxopressCoreAdmin.php:109 +#: includes-core/TaxopressCoreAdmin.php:162 +#: includes-core/TaxopressCoreAdmin.php:186 +#: includes-core/TaxopressCoreAdmin.php:210 msgid "Upgrade to Pro" msgstr "" @@ -3877,10 +3897,14 @@ msgstr "" msgid "Use only some terms in the selected taxonomy." msgstr "" -#: includes-core/TaxopressCoreAdmin.php:202 +#: includes-core/TaxopressCoreAdmin.php:203 msgid "Use Regular Expressions to modify Auto Terms" msgstr "" +#: includes-core/TaxopressCoreAdmin.php:104 +msgid "Use synonyms for terms" +msgstr "" + #: inc/taxonomies.php:1042 msgid "" "Used as tab text when showing all terms for hierarchical taxonomy while " @@ -3926,7 +3950,7 @@ msgstr "" msgid "View Item" msgstr "" -#: includes-core/TaxopressCoreAdmin.php:131 +#: includes-core/TaxopressCoreAdmin.php:132 msgid "View Knowledge Base" msgstr ""