diff --git a/css/settings.css b/css/settings.css
index f4a89a5d6..a06db8309 100644
--- a/css/settings.css
+++ b/css/settings.css
@@ -835,7 +835,6 @@ input.fz-switch-toggle[type=checkbox]:checked:before{
outline: 0;
cursor: pointer;
text-decoration: none;
- text-transform: capitalize;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
@@ -1564,7 +1563,6 @@ input.fz-switch-toggle[type=checkbox]:checked:before{
background: transparent;
border-color: #4268CF;
color: #4268CF;
- text-transform: capitalize;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
@@ -2250,7 +2248,6 @@ li.draggable-item .components-panel__body-toggle.components-button{
}
.fz-content-action div .tagify__tag-text {
padding-right: 10px;
- text-transform: capitalize;
}
.popover-action-list ul li.fz-action-disabled {
cursor: not-allowed !important;
diff --git a/feedzy-rss-feed.php b/feedzy-rss-feed.php
index 63ca97ceb..7ebc1bac5 100644
--- a/feedzy-rss-feed.php
+++ b/feedzy-rss-feed.php
@@ -324,6 +324,28 @@ function ( $labels ) {
);
}
+ if ( isset( $labels['about_us'] ) ) {
+ $labels['about_us'] = array_merge(
+ $labels['about_us'],
+ array(
+ 'title' => __( 'About Us', 'feedzy-rss-feeds' ),
+ 'heroHeader' => __( 'Our Story', 'feedzy-rss-feeds' ),
+ 'heroTextFirst' => __( 'Themeisle was founded in 2012 by a group of passionate developers who wanted to create beautiful and functional WordPress themes and plugins. Since then, we have grown into a team of over 20 dedicated professionals who are committed to delivering the best possible products to our customers.', 'feedzy-rss-feeds' ),
+ 'heroTextSecond' => __( 'At Themeisle, we offer a wide range of WordPress themes and plugins that are designed to meet the needs of both beginners and advanced users. Our products are feature-rich, easy to use, and are designed to help you create beautiful and functional websites.', 'feedzy-rss-feeds' ),
+ 'teamImageCaption' => __( 'Our team in WCEU2022 in Portugal', 'feedzy-rss-feeds' ),
+ 'newsHeading' => __( 'Stay connected for news & updates!', 'feedzy-rss-feeds' ),
+ 'emailPlaceholder' => __( 'Your email address', 'feedzy-rss-feeds' ),
+ 'signMeUp' => __( 'Sign me up', 'feedzy-rss-feeds' ),
+ 'installNow' => __( 'Install Now', 'feedzy-rss-feeds' ),
+ 'activate' => __( 'Activate', 'feedzy-rss-feeds' ),
+ 'learnMore' => __( 'Learn More', 'feedzy-rss-feeds' ),
+ 'installed' => __( 'Installed', 'feedzy-rss-feeds' ),
+ 'notInstalled' => __( 'Not Installed', 'feedzy-rss-feeds' ),
+ 'active' => __( 'Active', 'feedzy-rss-feeds' ),
+ )
+ );
+ }
+
return $labels;
}
);
diff --git a/includes/admin/feedzy-rss-feeds-admin.php b/includes/admin/feedzy-rss-feeds-admin.php
index 6d6ff973f..51b2cb01a 100644
--- a/includes/admin/feedzy-rss-feeds-admin.php
+++ b/includes/admin/feedzy-rss-feeds-admin.php
@@ -950,7 +950,7 @@ public function feedzy_category_feed() {
' .
sprintf(
// translators: %1$s and %2$s are placeholders for HTML anchor tags.
- __( 'Please be aware that multiple feeds, when mashed together, may sometimes not work as expected as explained %1$s here %2$s.', 'feedzy-rss-feeds' ),
+ __( 'Please be aware that multiple feeds, when mashed together, may sometimes not work as expected as explained %1$shere%2$s.', 'feedzy-rss-feeds' ),
'',
''
)
diff --git a/includes/admin/feedzy-rss-feeds-import.php b/includes/admin/feedzy-rss-feeds-import.php
index 650315a67..40220593b 100644
--- a/includes/admin/feedzy-rss-feeds-import.php
+++ b/includes/admin/feedzy-rss-feeds-import.php
@@ -105,8 +105,12 @@ public function upsell_content( $content, $area, $location ) {
tag for author, 2: closing tag, 3: tag for date, 4: closing tag, 5: tag for time, 6: closing tag, 7: tag for documentation link, 8: closing tag.
- __( 'Should we display additional meta fields out of %1$s author %2$s, %3$s date %4$s and %5$s time %6$s? (comma-separated list, in order of display). View documentation %7$s here %8$s.', 'feedzy-rss-feeds' ),
- '',
- '',
- '',
- '',
+ // translators: 1: tag for author, 2: closing tag, 3: tag for documentation link, 4: closing tag.
+ __( 'Should we display additional meta fields out of %1$sauthor%2$s, %3$sdate%4$s and %5$stime%6$s? (comma-separated list, in order of display). View documentation %3$shere%4$s.', 'feedzy-rss-feeds' ),
'',
'',
'',
@@ -103,14 +99,8 @@ public static function get_form_elements() {
);
if ( has_filter( 'feedzy_retrieve_categories' ) ) {
$meta = sprintf(
- // translators: 1: tag for author, 2: closing tag, 3: tag for date, 4: closing tag, 5: tag for time, 6: closing tag, 7: tag for categories, 8: closing tag, 9: tag for documentation link, 10: closing tag.
- __( 'Should we display additional meta fields out of %1$s author%2$s, %3$s date%4$s, %5$s time %6$s and %7$s categories %8$s? (comma-separated list). View documentation %9$s here %10$s.', 'feedzy-rss-feeds' ),
- '',
- '',
- '',
- '',
- '',
- '',
+ // translators: %1$s is tag, %2$s is closing tag, %3$s is tag for documentation link, %4$s: closing tag.
+ __( 'Should we display additional meta fields out of %1$sauthor%2$s, %1$sdate%2$s, %1$stime%2$s and %1$scategories%2$s? (comma-separated list). View documentation %3$shere%4$s.', 'feedzy-rss-feeds' ),
'',
'',
'',
@@ -120,7 +110,7 @@ public static function get_form_elements() {
$multiple = sprintf(
// translators: 1: tag for source, 2: closing tag.
- __( 'When using multiple sources, should we display additional meta fields? %1$s source %2$s (feed title).', 'feedzy-rss-feeds' ),
+ __( 'When using multiple sources, should we display additional meta fields?%1$ssource%2$s(feed title).', 'feedzy-rss-feeds' ),
'',
''
);
@@ -134,7 +124,7 @@ public static function get_form_elements() {
__( 'The feed(s) URL (comma-separated list).', 'feedzy-rss-feeds' ) . ' ' .
sprintf(
// translators: 1: tag opening, 2: tag closing.
- __( 'Click %1$s here %2$s to check if feed is valid.', 'feedzy-rss-feeds' ),
+ __( 'Click %1$shere%2$s to check if feed is valid.', 'feedzy-rss-feeds' ),
'',
''
)
@@ -484,12 +474,12 @@ public static function get_form_elements() {
),
'section_pro' => array(
'title' => __( 'PRO Options', 'feedzy-rss-feeds' ),
- 'description' => __( 'Get access to more options and customizations with full version of Feedzy RSS Feeds . Use existing templates or extend them and make them your own.', 'feedzy-rss-feeds' ) . '
' . __( 'See more features of Feedzy RSS Feeds PRO', 'feedzy-rss-feeds' ) . '',
+ 'description' => __( 'Get access to more options and customizations with full version of Feedzy RSS Feeds. Use existing templates or extend them and make them your own.', 'feedzy-rss-feeds' ) . '
' . __( 'See more features of Feedzy RSS Feeds PRO', 'feedzy-rss-feeds' ) . '',
'elements' => array(
'price' => array(
'label' => sprintf(
// translators: 1:
tag, 2: tag opening, 3: tag closing.
- __( 'Should we display the price from the feed if it is available? %1$s You can read about how to extract price from a custom tag %2$s here %3$s', 'feedzy-rss-feeds' ),
+ __( 'Should we display the price from the feed if it is available?%1$sYou can read about how to extract price from a custom tag %2$shere%3$s', 'feedzy-rss-feeds' ),
'
',
'',
''
@@ -511,7 +501,7 @@ public static function get_form_elements() {
'referral_url' => array(
'label' => sprintf(
// translators: 1: tag opening, 2: tag closing.
- __( 'Referral URL parameters as per %1$s this document here %2$s', 'feedzy-rss-feeds' ),
+ __( 'Referral URL parameters as per %1$sthis document here%2$s', 'feedzy-rss-feeds' ),
'',
''
),
@@ -531,7 +521,7 @@ public static function get_form_elements() {
'mapping' => array(
'label' => sprintf(
// translators: 1: tag opening, 2: tag closing.
- __( 'Provide mapping for custom feed elements as per %1$s this document here %2$s. This will only work for single feeds, not comma-separated feeds.', 'feedzy-rss-feeds' ),
+ __( 'Provide mapping for custom feed elements as per %1$sthis document here%2$s. This will only work for single feeds, not comma-separated feeds.', 'feedzy-rss-feeds' ),
'',
''
),
diff --git a/includes/admin/feedzy-rss-feeds-ui.php b/includes/admin/feedzy-rss-feeds-ui.php
index aa02b874e..e1ae6d612 100644
--- a/includes/admin/feedzy-rss-feeds-ui.php
+++ b/includes/admin/feedzy-rss-feeds-ui.php
@@ -238,7 +238,7 @@ public function feedzy_import_post_title_section() {
$content = __( 'You are using Feedzy Lite.', 'feedzy-rss-feeds' ) . ' ';
// translators: %1$s: opening anchor tag, %2$s: closing anchor tag.
- $content .= wp_sprintf( __( 'Unlock more powerful features, by %1$s upgrading to Feedzy Pro %2$s and get 50%% off.', 'feedzy-rss-feeds' ), '', '' );
+ $content .= wp_sprintf( __( 'Unlock more powerful features, by %1$supgrading to Feedzy Pro%2$s and get 50%% off.', 'feedzy-rss-feeds' ), '', '' );
echo wp_kses_post( $content );
?>
diff --git a/includes/elementor/widgets/register-widget.php b/includes/elementor/widgets/register-widget.php
index 745e7cc45..3abfd7075 100644
--- a/includes/elementor/widgets/register-widget.php
+++ b/includes/elementor/widgets/register-widget.php
@@ -106,7 +106,7 @@ protected function register_controls() { // phpcs:ignore PSR2.Methods.MethodDecl
'type' => Controls_Manager::TEXTAREA,
'description' => wp_sprintf(
// translators: %1$s: opening anchor tag, %2$s: closing anchor tag.
- __( 'You can add multiple sources at once, by separating them with commas. %1$s Click here %2$s to check if the feed is valid. Invalid feeds may not import anything.', 'feedzy-rss-feeds' ),
+ __( 'You can add multiple sources at once, by separating them with commas. %1$sClick here%2$s to check if the feed is valid. Invalid feeds may not import anything.', 'feedzy-rss-feeds' ),
'',
''
),
@@ -505,7 +505,7 @@ protected function register_controls() { // phpcs:ignore PSR2.Methods.MethodDecl
'description' => wp_sprintf(
// translators: %1$s: opening anchor tag, %2$s: closing anchor tag.
__(
- 'Learn more about this feature in %1$s Feedzy docs %2$s .',
+ 'Learn more about this feature in %1$sFeedzy docs%2$s.',
'feedzy-rss-feeds'
),
'',
@@ -572,7 +572,7 @@ protected function register_controls() { // phpcs:ignore PSR2.Methods.MethodDecl
! feedzy_is_pro() ?
wp_sprintf(
// translators: %1$s: opening anchor tag, %2$s: closing anchor tag.
- __( 'Unlock this feature and more advanced options with %1$s Feedzy Pro %1$s.', 'feedzy-rss-feeds' ),
+ __( 'Unlock this feature and more advanced options with %1$sFeedzy Pro%2$s.', 'feedzy-rss-feeds' ),
'',
''
)
diff --git a/includes/layouts/feedzy-improve.php b/includes/layouts/feedzy-improve.php
index 97dc10bf1..7bb3e6073 100644
--- a/includes/layouts/feedzy-improve.php
+++ b/includes/layouts/feedzy-improve.php
@@ -8,9 +8,10 @@
- +
--