__( 'The maximum age allowed for feed items. '. '
'. 'Items already imported will be deleted if they eventually exceed this age limit. '. 'Also, items in the RSS feed that are already older than this age will not be imported at all. '. '
'. 'Leave empty for no limit.', WPRSS_TEXT_DOMAIN), // Limit feed items per feed 'limit-feed-items-imported' => __('The maximum number of imported items to keep stored, for feed sources that do not have their own limit. '. '
'. 'When new items are imported and the limit for a feed source is exceeded, the oldest feed items for that feed source will be deleted to make room for the new ones. '. 'If you already have items imported from this feed source, setting this option now may delete some of your items, in order to comply with the limit. '. '
'. 'Use 0 or leave empty for no limit.', WPRSS_TEXT_DOMAIN), // Limit feed items per import 'limit_feed_items_per_import' => __('The maximum amount of items to process per import. '. '
'. 'Will not process more than this amount of items every time the feed source updates, regardless of other settings. '. 'The frequency of updates is determined by the feed processing interval. '. '
'. 'Leave empty for no limit.', WPRSS_TEXT_DOMAIN), // Feed items import order 'feed_items_import_order' => __('The order, in which the feed items will be imported. '. '
'. 'Select Any if the order is not significant. '. 'Selecting Latest First will cause the most recent items to be imported first. '. 'Selecting Oldest First will cause the oldest items to be imported first. '. 'This setting is very useful in combination with the per-import limit. '. '
'. 'Default: Any.', WPRSS_TEXT_DOMAIN), // Feed processing interval 'cron-interval' => __('How frequently should the feed sources (that do not have their own update interval) check for updates and fetch items accordingly. '. 'It is recommended to not have more than 20 feed sources that use this global update interval. Having too many feed sources updating precisely at the same time can cause the WP Cron System to crash.', WPRSS_TEXT_DOMAIN), // Unique titles only 'unique-titles' => __('Whether to allow multiple feed items to have the same title. When checked, if a feed item has the same title as a previously-imported feed item from any feed source, it will not be imported. '. 'This can be useful in cases where permalinks change, or where multiple permalinks refer to the same item. '. 'Since this feature requires checking every post title, WordPress installs with a significant amount of posts may notice a slight slowdown of the post import process.', WPRSS_TEXT_DOMAIN), // Custom Feed URL 'custom-feed-url' => __('The URL of the custom feed, located at http://yoursite.com/[custom feed url]. '. '
'. 'WP RSS Aggregator allows you to create a custom RSS feed, that contains all of your imported feed items. This setting allows you to change the URL of this custom feed. '. '
'. 'Note: You may be required to refresh you Permalinks after you change this setting, by going to Settings Permalinks and clicking Save.', WPRSS_TEXT_DOMAIN), // Custom Feed Title 'custom-feed-title' => __('The title of the custom feed. '. 'This title will be included in the RSS source of the custom feed, in a <title> tag.', WPRSS_TEXT_DOMAIN), // Custom Feed Limit 'custom-feed-limit' => __('The maximum number of feed items in the custom feed.', WPRSS_TEXT_DOMAIN), /* -------------------------- * General Display Settings * -------------------------- */ // Link titles 'link-enable' => __('Check this box to make the feed item titles link to the original article.', WPRSS_TEXT_DOMAIN), // Title Maximum length 'title-limit' => __('Set the maximum number of characters to show for feed item titles. '. '
'. 'Leave empty for no limit.', WPRSS_TEXT_DOMAIN), // Show Authors 'authors-enable' => __('Check this box to show the author for each feed item, if it is available.', WPRSS_TEXT_DOMAIN), // Video Links 'video-links' => __('For feed items from YouTube, Vimeo or Dailymotion, you can choose whether you want to have the items link to the original page link, or a link to the embedded video player only.', WPRSS_TEXT_DOMAIN), // Pagination Type 'pagination' => __('The type of pagination to use when showing feed items on multiple pages. '. 'The first shows two links, "Older" and "Newer", which allow you to navigate through the pages. '. 'The second shows links for all the pages, together with links for the next and previous pages.', WPRSS_TEXT_DOMAIN), // Feed Limit 'feed-limit' => __('The maximum number of feed items to display when using the shortcode. '. 'This enables pagination if set to a number smaller than the number of items to be displayed.', WPRSS_TEXT_DOMAIN), // Open Links Behaviour 'open-dd' => __('Choose how you want links to be opened. This applies to the feed item title and the source link.', WPRSS_TEXT_DOMAIN), // Set links as no follow 'follow-dd' => __('Enable this option to set all links displayed as "NoFollow". '. '
'. '"Nofollow" provides a way to tell search engines to not follow certain links, such as links to feed items in this case.', WPRSS_TEXT_DOMAIN), /* ------------------------- * Source Display Settings * ------------------------- */ // Source Enabled 'source-enable' => __('Enable this option to show the feed source name for each feed item.', WPRSS_TEXT_DOMAIN), // Text preceding source 'text-preceding-source' => __('Enter the text that you want to show before the source name. A space is automatically added between this text and the feed source name.', WPRSS_TEXT_DOMAIN), // Source Link 'source-link' => __('Enable this option to link the feed source name to the RSS feed\'s source site.', WPRSS_TEXT_DOMAIN), /* ------------------------- * Date Display Settings * ------------------------- */ // Source Enabled 'date-enable' => __('Enable this to show the feed item\'s date.', WPRSS_TEXT_DOMAIN), // Text preceding date 'text-preceding-date' => __('Enter the text that you want to show before the feed item date. A space is automatically added between this text and the date.', WPRSS_TEXT_DOMAIN), // Date Format 'date-format' => __('The format to use for the feed item dates, as a PHP date format.', WPRSS_TEXT_DOMAIN), // Time Ago Format Enable 'time-ago-format-enable' => __('Enable this option to show the elapsed time from the feed item\'s date and time to the present time. '. 'Eg. 2 hours ago', WPRSS_TEXT_DOMAIN), /* -------- * Styles * -------- */ // Styles Disable 'styles-disable' => __('Check this box to disable all plugin styles used for displaying feed items. '. 'This will allow you to provide your own custom CSS styles for displaying the feed items.', WPRSS_TEXT_DOMAIN), /* * ------- * Other * ------- */ // Certificate Path 'certificate-path' => __( 'Path to the file containing one or more certificates. '. 'These will be used to verify certificates over secure connection, such as when fetching a remote resource over HTTPS. '. 'Relative path will be relative to the WordPress root. '. 'Default: path to certificate file bundled with WordPress.', WPRSS_TEXT_DOMAIN ), /** @since 4.8.2 */ 'feed_request_useragent' => __( 'The string to be used as the useragent for feed requests. '. 'If non-empty, this exact string will be sent with every request made by WP RSS Aggregator for a feed source XML document. '. 'Some servers react in unexpected ways to the default value. In such cases, try changing this to something else. '. 'The default value is determined by the SimplePie library, and reflects its name, version and build numbers, and some other information.'), ); $help->add_tooltips( $tooltips, $prefix ); // Feed source specific $prefix = 'field_'; $help->add_tooltips(array( WPRSS_Feed_Access::SETTING_KEY_FEED_REQUEST_USERAGENT => $wprss->__( array('The string to be used as the useragent for feed requests. '. 'If non-empty, this exact string will be sent with every request made by %1$s for a feed source XML document. '. 'Leave this empty to inherit the general setting. '. 'Some servers react in unexpected ways to the default value. In such cases, try changing this to something else. '. 'The default value is determined by the SimplePie library, and reflects its name, version and build numbers, and some other information.', $wprss->getName())) ), $prefix); } }