You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'not_found' => __( 'No groups found', 'feedzy-rss-feeds' ),
289
+
'not_found_in_trash' => __( 'No groups in the trash', 'feedzy-rss-feeds' ),
290
290
);
291
291
$supports = array(
292
292
'title',
@@ -346,7 +346,7 @@ public function register_admin_capabilities() {
346
346
publicfunctionadd_feedzy_post_type_metaboxes() {
347
347
add_meta_box(
348
348
'feedzy_category_feeds',
349
-
__( 'Category Feeds', 'feedzy-rss-feeds' ),
349
+
__( 'Group Feeds', 'feedzy-rss-feeds' ),
350
350
array(
351
351
$this,
352
352
'feedzy_category_feed',
@@ -413,7 +413,7 @@ public function feedzy_category_feed() {
413
413
. '</strong><br/><br/>'
414
414
. $invalid
415
415
. '<textarea name="feedzy_category_feed" rows="15" class="widefat" placeholder="' . __( 'Place your URL\'s here followed by a comma.', 'feedzy-rss-feeds' ) . '" >' . $feed . '</textarea>
416
-
<p><a href="' . esc_url( 'https://docs.themeisle.com/article/1119-feedzy-rss-feeds-documentation#categories' ) . '" target="_blank">' . __( 'Learn how to organize feeds in Categories', 'feedzy-rss-feeds' ) . '</a></p>
416
+
<p><a href="' . esc_url( 'https://docs.themeisle.com/article/1119-feedzy-rss-feeds-documentation#categories' ) . '" target="_blank">' . __( 'Learn how to organize feeds in Groups', 'feedzy-rss-feeds' ) . '</a></p>
esc_html_e( 'Add magic tags to extract custom elements from your feed. This will work only for single-feeds, not feed categories.', 'feedzy-rss-feeds' );
648
+
esc_html_e( 'Add magic tags to extract custom elements from your feed. This will work only for single-feeds, not feed groups.', 'feedzy-rss-feeds' );
Copy file name to clipboardexpand all lines: js/FeedzyBlock/Editor.js
+3-3
Original file line number
Diff line number
Diff line change
@@ -405,7 +405,7 @@ class Editor extends Component {
405
405
<TextControl
406
406
type="url"
407
407
className="feedzy-source"
408
-
placeholder={__('Enter URL or category of your feed here...','feedzy-rss-feeds')}
408
+
placeholder={__('Enter URL or group of your feed here...','feedzy-rss-feeds')}
409
409
onChange={this.onChangeFeed}
410
410
onKeyUp={this.handleKeyUp}
411
411
value={this.props.attributes.feeds}
@@ -437,8 +437,8 @@ class Editor extends Component {
437
437
),
438
438
(this.state.error)&&<div>{__('Feed URL is invalid or unreachable by WordPress SimplePie and will NOT display items.','feedzy-rss-feeds')}</div>,
439
439
<p>
440
-
{__('Enter the full URL of the feed source you wish to display here, or the name of a category you\'ve created. Also you can add multiple URLs just separate them with a comma. You can manage your categories feed from','feedzy-rss-feeds')}
{__('Enter the full URL of the feed source you wish to display here, or the name of a group you\'ve created. Also you can add multiple URLs just separate them with a comma. You can manage your groups feed from','feedzy-rss-feeds')}
441
+
<ahref="edit.php?post_type=feedzy_categories"title={__('Feedzy Groups ','feedzy-rss-feeds')}target="_blank">{__('here ','feedzy-rss-feeds')}</a>
Copy file name to clipboardexpand all lines: js/Onboarding/import-onboarding.js
+1-1
Original file line number
Diff line number
Diff line change
@@ -59,7 +59,7 @@ const Onboarding = () => {
59
59
},
60
60
{
61
61
target: '.fz-input-group-left .fz-input-icon',
62
-
content: __('Add here your RSS feed URL which Feedzy will use to fetch the content from. You can use Feedzy\'s Feed categories too.','feedzy-rss-feeds'),
62
+
content: __('Add here your RSS feed URL which Feedzy will use to fetch the content from. You can use Feedzy\'s Feed Groups too.','feedzy-rss-feeds'),
0 commit comments