Auto-disable Page Optimize plugin
It breaks the theme.
This commit is contained in:
parent
4a8a710116
commit
f9eccadd60
@ -286,7 +286,7 @@ Fictioneer customizes WordPress by using as many standard action and filter hook
|
||||
| `edit_user_profile` | `fictioneer_custom_profile_fields`
|
||||
| `edit_user_profile_update` | `fictioneer_update_admin_user_profile`, `fictioneer_update_my_user_profile`, `fictioneer_update_admin_unlocked_posts`
|
||||
| `get_header` | `fictioneer_maintenance_mode`
|
||||
| `init` | `fictioneer_add_character_taxonomy`, `fictioneer_add_content_warning_taxonomy`, `fictioneer_add_epub_download_endpoint`, `fictioneer_add_fandom_taxonomy`, `fictioneer_add_genre_taxonomy`, `fictioneer_add_logout_endpoint`, `fictioneer_add_oauth2_endpoint`, `fictioneer_restrict_admin_panel`, `fictioneer_disable_heartbeat`, `fictioneer_fcn_chapter_post_type`, `fictioneer_fcn_collection_post_type`, `fictioneer_fcn_recommendation_post_type`, `fictioneer_fcn_story_post_type`, `fictioneer_modify_allowed_tags`, `fictioneer_story_rss`, `fictioneer_remove_custom_fields_supports`, `fictioneer_add_sitemap_rewrite_rule`, `fictioneer_fast_ajax`, `fictioneer_add_chapter_rewrite_tags`, `fictioneer_add_chapter_rewrite_rules`, `fictioneer_rewrite_chapter_permalink`, `fictioneer_disable_emojis`
|
||||
| `init` | `fictioneer_add_character_taxonomy`, `fictioneer_add_content_warning_taxonomy`, `fictioneer_add_epub_download_endpoint`, `fictioneer_add_fandom_taxonomy`, `fictioneer_add_genre_taxonomy`, `fictioneer_add_logout_endpoint`, `fictioneer_add_oauth2_endpoint`, `fictioneer_restrict_admin_panel`, `fictioneer_disable_heartbeat`, `fictioneer_fcn_chapter_post_type`, `fictioneer_fcn_collection_post_type`, `fictioneer_fcn_recommendation_post_type`, `fictioneer_fcn_story_post_type`, `fictioneer_modify_allowed_tags`, `fictioneer_story_rss`, `fictioneer_remove_custom_fields_supports`, `fictioneer_add_sitemap_rewrite_rule`, `fictioneer_fast_ajax`, `fictioneer_add_chapter_rewrite_tags`, `fictioneer_add_chapter_rewrite_rules`, `fictioneer_rewrite_chapter_permalink`, `fictioneer_disable_emojis`, `fictioneer_disable_page_optimize_plugin`
|
||||
| `login_form` | `fictioneer_after_logout_cleanup`
|
||||
| `login_head` | `fictioneer_wp_login_scripts`
|
||||
| `manage_comments_custom_column` | `fictioneer_add_comments_report_column_content`
|
||||
|
@ -2364,3 +2364,42 @@ function fictioneer_default_cover( $thumbnail_id, $post ) {
|
||||
if ( ! is_admin() && get_theme_mod( 'default_story_cover' ) ) {
|
||||
add_filter( 'post_thumbnail_id', 'fictioneer_default_cover', 10, 2 );
|
||||
}
|
||||
|
||||
// =============================================================================
|
||||
// DISABLE INCOMPATIBLE PLUGINS
|
||||
// =============================================================================
|
||||
|
||||
/**
|
||||
* Disables the incompatible Page Optimize plugin
|
||||
*
|
||||
* @since 5.24.1
|
||||
*/
|
||||
|
||||
function fictioneer_disable_page_optimize_plugin() {
|
||||
if ( is_plugin_active( 'page-optimize/page-optimize.php' ) ) {
|
||||
deactivate_plugins( 'page-optimize/page-optimize.php' );
|
||||
add_action( 'admin_notices', 'show_page_optimize_deactivated_notice' );
|
||||
}
|
||||
}
|
||||
add_action( 'init', 'fictioneer_disable_page_optimize_plugin' );
|
||||
|
||||
/**
|
||||
* Shows notice when the Page Optimize plugin is disabled
|
||||
*
|
||||
* @since 5.24.1
|
||||
*/
|
||||
|
||||
function show_page_optimize_deactivated_notice() {
|
||||
if ( ! is_admin() ) {
|
||||
return;
|
||||
}
|
||||
|
||||
wp_admin_notice(
|
||||
__( 'The Page Optimize plugin has been disabled due to compatibility issues.', 'fictioneer' ),
|
||||
array(
|
||||
'type' => 'info',
|
||||
'dismissible' => true,
|
||||
'additional_classes' => ['fictioneer-disabled-plugin-notice']
|
||||
)
|
||||
);
|
||||
}
|
||||
|
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Fictioneer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-09-19 19:55+0000\n"
|
||||
"POT-Creation-Date: 2024-09-21 20:21+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: \n"
|
||||
@ -53,8 +53,8 @@ msgstr ""
|
||||
msgid "%s connection successfully unset."
|
||||
msgstr ""
|
||||
|
||||
#: partials/_showcase.php:189 partials/_card-story.php:93
|
||||
#: partials/_card-chapter.php:83 includes/functions/_helpers-templates.php:603
|
||||
#: partials/_showcase.php:192 partials/_card-story.php:93
|
||||
#: partials/_card-chapter.php:87 includes/functions/_helpers-templates.php:603
|
||||
#: includes/functions/_helpers-templates.php:643
|
||||
#, php-format
|
||||
msgid "%s Cover"
|
||||
@ -120,8 +120,8 @@ msgstr ""
|
||||
#: partials/_card-story.php:142 partials/_card-page.php:42
|
||||
#: partials/_card-page.php:69 partials/_card-collection.php:96
|
||||
#: partials/_card-collection.php:126 partials/_card-post.php:43
|
||||
#: partials/_card-post.php:70 partials/_card-chapter.php:145
|
||||
#: partials/_card-chapter.php:155
|
||||
#: partials/_card-post.php:70 partials/_card-chapter.php:149
|
||||
#: partials/_card-chapter.php:159
|
||||
#, php-format
|
||||
msgid "%s Thumbnail"
|
||||
msgstr ""
|
||||
@ -678,7 +678,7 @@ msgstr ""
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-theme.php:1870
|
||||
#: includes/functions/_setup-theme.php:1890
|
||||
#: includes/functions/users/_admin-profile.php:805
|
||||
msgid "Account already linked to another profile."
|
||||
msgstr ""
|
||||
@ -688,7 +688,7 @@ msgstr ""
|
||||
msgid "Account Bindings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-theme.php:1872
|
||||
#: includes/functions/_setup-theme.php:1892
|
||||
msgid "Account has been successfully linked."
|
||||
msgstr ""
|
||||
|
||||
@ -714,7 +714,7 @@ msgid ""
|
||||
"0."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-theme.php:1809
|
||||
#: includes/functions/_setup-theme.php:1829
|
||||
msgid "Add Chapter"
|
||||
msgstr ""
|
||||
|
||||
@ -933,7 +933,7 @@ msgstr ""
|
||||
msgid "Advanced Capabilities"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:790
|
||||
#: includes/functions/hooks/_general_hooks.php:801
|
||||
msgctxt "Advanced search heading."
|
||||
msgid "Age Rating"
|
||||
msgstr ""
|
||||
@ -998,12 +998,12 @@ msgctxt "Advanced search heading."
|
||||
msgid "Match"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:880
|
||||
#: includes/functions/hooks/_general_hooks.php:891
|
||||
msgctxt "Advanced search heading."
|
||||
msgid "Max Words"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:849
|
||||
#: includes/functions/hooks/_general_hooks.php:860
|
||||
msgctxt "Advanced search heading."
|
||||
msgid "Min Words"
|
||||
msgstr ""
|
||||
@ -1018,7 +1018,7 @@ msgctxt "Advanced search heading."
|
||||
msgid "Sort"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:822
|
||||
#: includes/functions/hooks/_general_hooks.php:833
|
||||
msgctxt "Advanced search heading."
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
@ -1055,64 +1055,64 @@ msgctxt "Advanced search operator."
|
||||
msgid "OR"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:852
|
||||
#: includes/functions/hooks/_general_hooks.php:883
|
||||
#: includes/functions/hooks/_general_hooks.php:863
|
||||
#: includes/functions/hooks/_general_hooks.php:894
|
||||
msgctxt "Advanced search option."
|
||||
msgid "1,000 Words"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:860
|
||||
#: includes/functions/hooks/_general_hooks.php:891
|
||||
#: includes/functions/hooks/_general_hooks.php:871
|
||||
#: includes/functions/hooks/_general_hooks.php:902
|
||||
msgctxt "Advanced search option."
|
||||
msgid "1,000,000 Words"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:854
|
||||
#: includes/functions/hooks/_general_hooks.php:885
|
||||
#: includes/functions/hooks/_general_hooks.php:865
|
||||
#: includes/functions/hooks/_general_hooks.php:896
|
||||
msgctxt "Advanced search option."
|
||||
msgid "10,000 Words"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:857
|
||||
#: includes/functions/hooks/_general_hooks.php:888
|
||||
#: includes/functions/hooks/_general_hooks.php:868
|
||||
#: includes/functions/hooks/_general_hooks.php:899
|
||||
msgctxt "Advanced search option."
|
||||
msgid "100,000 Words"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:855
|
||||
#: includes/functions/hooks/_general_hooks.php:886
|
||||
#: includes/functions/hooks/_general_hooks.php:866
|
||||
#: includes/functions/hooks/_general_hooks.php:897
|
||||
msgctxt "Advanced search option."
|
||||
msgid "25,000 Words"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:858
|
||||
#: includes/functions/hooks/_general_hooks.php:889
|
||||
#: includes/functions/hooks/_general_hooks.php:869
|
||||
#: includes/functions/hooks/_general_hooks.php:900
|
||||
msgctxt "Advanced search option."
|
||||
msgid "250,000 Words"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:853
|
||||
#: includes/functions/hooks/_general_hooks.php:884
|
||||
#: includes/functions/hooks/_general_hooks.php:864
|
||||
#: includes/functions/hooks/_general_hooks.php:895
|
||||
msgctxt "Advanced search option."
|
||||
msgid "5,000 Words"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:856
|
||||
#: includes/functions/hooks/_general_hooks.php:887
|
||||
#: includes/functions/hooks/_general_hooks.php:867
|
||||
#: includes/functions/hooks/_general_hooks.php:898
|
||||
msgctxt "Advanced search option."
|
||||
msgid "50,000 Words"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:859
|
||||
#: includes/functions/hooks/_general_hooks.php:890
|
||||
#: includes/functions/hooks/_general_hooks.php:870
|
||||
#: includes/functions/hooks/_general_hooks.php:901
|
||||
msgctxt "Advanced search option."
|
||||
msgid "500,000 Words"
|
||||
msgstr ""
|
||||
|
||||
#: searchform.php:159 searchform.php:214 searchform.php:221 searchform.php:229
|
||||
#: searchform.php:238 searchform.php:322
|
||||
#: includes/functions/hooks/_general_hooks.php:792
|
||||
#: includes/functions/hooks/_general_hooks.php:824
|
||||
#: includes/functions/hooks/_general_hooks.php:803
|
||||
#: includes/functions/hooks/_general_hooks.php:835
|
||||
msgctxt "Advanced search option."
|
||||
msgid "Any"
|
||||
msgstr ""
|
||||
@ -1142,12 +1142,12 @@ msgctxt "Advanced search option."
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:882
|
||||
#: includes/functions/hooks/_general_hooks.php:893
|
||||
msgctxt "Advanced search option."
|
||||
msgid "Maximum"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:851
|
||||
#: includes/functions/hooks/_general_hooks.php:862
|
||||
msgctxt "Advanced search option."
|
||||
msgid "Minimum"
|
||||
msgstr ""
|
||||
@ -1483,7 +1483,7 @@ msgstr ""
|
||||
msgid "All Genres"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:596
|
||||
#: includes/functions/hooks/_general_hooks.php:607
|
||||
msgid "All Posts"
|
||||
msgstr ""
|
||||
|
||||
@ -1586,7 +1586,7 @@ msgstr ""
|
||||
msgid "Any"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:653
|
||||
#: includes/functions/hooks/_general_hooks.php:664
|
||||
msgid "Any Date"
|
||||
msgstr ""
|
||||
|
||||
@ -1677,7 +1677,7 @@ msgid ""
|
||||
"Subscribers. Enter %s to confirm."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-theme.php:1477
|
||||
#: includes/functions/_setup-theme.php:1497
|
||||
msgid "Are you sure?"
|
||||
msgstr ""
|
||||
|
||||
@ -1921,7 +1921,7 @@ msgctxt "Blog page name, mainly used in breadcrumbs."
|
||||
msgid "Blog"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:600
|
||||
#: includes/functions/hooks/_general_hooks.php:611
|
||||
msgid "Blog Posts"
|
||||
msgstr ""
|
||||
|
||||
@ -2938,7 +2938,7 @@ msgstr ""
|
||||
msgid "Chapter Capabilities"
|
||||
msgstr ""
|
||||
|
||||
#: partials/_card-chapter.php:104
|
||||
#: partials/_card-chapter.php:108
|
||||
msgctxt "Chapter card label."
|
||||
msgid "Chapter"
|
||||
msgstr ""
|
||||
@ -2948,7 +2948,7 @@ msgctxt "Chapter card/list title meta field label."
|
||||
msgid "Card/List Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-shortcodes.php:1290
|
||||
#: includes/functions/_setup-shortcodes.php:1292
|
||||
#: includes/functions/hooks/_story_hooks.php:719
|
||||
#, php-format
|
||||
msgid "Chapter checkmark for %s."
|
||||
@ -3163,13 +3163,13 @@ msgstr ""
|
||||
|
||||
#. Name of the template
|
||||
#: chapters.php:2 chapters.php:107 author.php:53 author.php:141
|
||||
#: partials/_card-story.php:251 partials/_latest-stories.php:323
|
||||
#: partials/_latest-stories-compact.php:336 partials/_card-collection.php:209
|
||||
#: partials/_latest-updates.php:439 partials/_collection-statistics.php:39
|
||||
#: partials/_card-story.php:251 partials/_latest-stories.php:326
|
||||
#: partials/_latest-stories-compact.php:339 partials/_card-collection.php:209
|
||||
#: partials/_latest-updates.php:442 partials/_collection-statistics.php:39
|
||||
#: includes/functions/_setup-types-and-terms.php:185
|
||||
#: includes/functions/settings/_settings_page_epubs.php:82
|
||||
#: includes/functions/hooks/_mobile_menu_hooks.php:320
|
||||
#: includes/functions/hooks/_general_hooks.php:608
|
||||
#: includes/functions/hooks/_general_hooks.php:619
|
||||
msgid "Chapters"
|
||||
msgstr ""
|
||||
|
||||
@ -3216,7 +3216,7 @@ msgstr ""
|
||||
msgid "Checkmarks could not be cleared."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-theme.php:1862
|
||||
#: includes/functions/_setup-theme.php:1882
|
||||
msgid "Checkmarks re-synchronized."
|
||||
msgstr ""
|
||||
|
||||
@ -3238,7 +3238,7 @@ msgid ""
|
||||
"href=\"%s\" target=\"_blank\" rel=\"noopener\">base child theme</a>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:1065
|
||||
#: includes/functions/hooks/_general_hooks.php:1076
|
||||
#, php-format
|
||||
msgid "Choose a %s to browse"
|
||||
msgstr ""
|
||||
@ -3314,7 +3314,7 @@ msgstr ""
|
||||
msgid "Clear %s (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-shortcodes.php:1018
|
||||
#: includes/functions/_setup-shortcodes.php:1020
|
||||
msgid "Clear Cookies"
|
||||
msgstr ""
|
||||
|
||||
@ -3409,7 +3409,7 @@ msgstr ""
|
||||
#. Name of the template
|
||||
#: collections.php:2 collections.php:67
|
||||
#: includes/functions/_setup-types-and-terms.php:331
|
||||
#: includes/functions/hooks/_general_hooks.php:612
|
||||
#: includes/functions/hooks/_general_hooks.php:623
|
||||
msgid "Collections"
|
||||
msgstr ""
|
||||
|
||||
@ -3747,10 +3747,10 @@ msgid "Commenting is disabled."
|
||||
msgstr ""
|
||||
|
||||
#: author.php:149 partials/_card-story.php:268 partials/_card-story.php:268
|
||||
#: partials/_card-page.php:91 partials/_article-cards.php:302
|
||||
#: partials/_card-page.php:91 partials/_article-cards.php:305
|
||||
#: partials/_card-collection.php:219 partials/_collection-statistics.php:47
|
||||
#: partials/_card-post.php:114 partials/_latest-chapters.php:345
|
||||
#: partials/_card-chapter.php:261 partials/account/_data.php:119
|
||||
#: partials/_card-post.php:114 partials/_latest-chapters.php:352
|
||||
#: partials/_card-chapter.php:265 partials/account/_data.php:119
|
||||
#: includes/functions/settings/_settings_page_general.php:825
|
||||
#: includes/functions/hooks/_story_hooks.php:41
|
||||
msgid "Comments"
|
||||
@ -3874,7 +3874,7 @@ msgctxt "Contact form."
|
||||
msgid "Message field empty."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-shortcodes.php:1343
|
||||
#: includes/functions/_setup-shortcodes.php:1345
|
||||
#: includes/functions/_module-forms.php:57
|
||||
msgctxt "Contact form."
|
||||
msgid "Nameless Form"
|
||||
@ -3929,13 +3929,13 @@ msgstr ""
|
||||
msgid "Cookie consent banner"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-shortcodes.php:1018
|
||||
#: includes/functions/_setup-shortcodes.php:1020
|
||||
msgid ""
|
||||
"Cookies and local storage have been cleared. To keep it that way, you should "
|
||||
"leave the site."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-theme.php:1868
|
||||
#: includes/functions/_setup-theme.php:1888
|
||||
msgid "Copied to clipboard!"
|
||||
msgstr ""
|
||||
|
||||
@ -3982,7 +3982,7 @@ msgstr ""
|
||||
msgid "Current status of the story."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:717
|
||||
#: includes/functions/hooks/_general_hooks.php:728
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
@ -5407,22 +5407,22 @@ msgstr ""
|
||||
msgid "Editor capabilities have been updated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-theme.php:2149
|
||||
#: includes/functions/_setup-theme.php:2169
|
||||
msgctxt "Elementor color override hint."
|
||||
msgid "(--fg-300)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-theme.php:2161
|
||||
#: includes/functions/_setup-theme.php:2181
|
||||
msgctxt "Elementor color override hint."
|
||||
msgid "(--fg-500)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-theme.php:2173
|
||||
#: includes/functions/_setup-theme.php:2193
|
||||
msgctxt "Elementor color override hint."
|
||||
msgid "(--fg-700)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-theme.php:2137
|
||||
#: includes/functions/_setup-theme.php:2157
|
||||
msgctxt "Elementor color override hint."
|
||||
msgid "(--primary-500)"
|
||||
msgstr ""
|
||||
@ -5981,8 +5981,8 @@ msgid "Features"
|
||||
msgstr ""
|
||||
|
||||
#. Name of the theme
|
||||
#: includes/functions/_setup-theme.php:2003
|
||||
#: includes/functions/_setup-theme.php:2202
|
||||
#: includes/functions/_setup-theme.php:2023
|
||||
#: includes/functions/_setup-theme.php:2222
|
||||
#: includes/functions/settings/_settings.php:28
|
||||
#: includes/functions/settings/_settings.php:257
|
||||
#: includes/functions/users/_admin-profile.php:868
|
||||
@ -6028,7 +6028,7 @@ msgctxt "Fictioneer theme major version notice."
|
||||
msgid "Fictioneer %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-theme.php:2006
|
||||
#: includes/functions/_setup-theme.php:2026
|
||||
msgid "Fictioneer Theme Settings"
|
||||
msgstr ""
|
||||
|
||||
@ -6158,7 +6158,7 @@ msgstr ""
|
||||
msgid "Follows could not be cleared."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-theme.php:1864
|
||||
#: includes/functions/_setup-theme.php:1884
|
||||
msgid "Follows re-synchronized."
|
||||
msgstr ""
|
||||
|
||||
@ -6339,7 +6339,7 @@ msgstr ""
|
||||
msgid "Generic donation link"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-theme.php:1861
|
||||
#: includes/functions/_setup-theme.php:1881
|
||||
msgctxt "Generic error notification."
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
@ -6964,7 +6964,7 @@ msgid "Large Border Radius"
|
||||
msgstr ""
|
||||
|
||||
#: partials/_card-recommendation.php:113 partials/_card-story.php:155
|
||||
#: partials/_card-chapter.php:178
|
||||
#: partials/_card-chapter.php:182
|
||||
#, php-format
|
||||
msgctxt "Large card: by {Author} —."
|
||||
msgid "by %s —"
|
||||
@ -6978,10 +6978,10 @@ msgid ""
|
||||
"more</strong> is met unless the comment is set to ignore reports."
|
||||
msgstr ""
|
||||
|
||||
#: partials/_card-story.php:261 partials/_latest-stories.php:334
|
||||
#: partials/_latest-stories-compact.php:347 partials/_article-cards.php:295
|
||||
#: partials/_card-collection.php:216 partials/_latest-updates.php:449
|
||||
#: partials/_latest-chapters.php:338 partials/_card-chapter.php:254
|
||||
#: partials/_card-story.php:261 partials/_latest-stories.php:337
|
||||
#: partials/_latest-stories-compact.php:350 partials/_article-cards.php:298
|
||||
#: partials/_card-collection.php:216 partials/_latest-updates.php:452
|
||||
#: partials/_latest-chapters.php:345 partials/_card-chapter.php:258
|
||||
msgid "Last Updated"
|
||||
msgstr ""
|
||||
|
||||
@ -7255,7 +7255,7 @@ msgstr ""
|
||||
msgid "Limit comments to [n] link(s) or less"
|
||||
msgstr ""
|
||||
|
||||
#: partials/_modal-sharing.php:73 includes/functions/_setup-theme.php:1867
|
||||
#: partials/_modal-sharing.php:73 includes/functions/_setup-theme.php:1887
|
||||
msgid "Link copied to clipboard!"
|
||||
msgstr ""
|
||||
|
||||
@ -7371,7 +7371,7 @@ msgctxt "Login modal heading."
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:947
|
||||
#: includes/functions/hooks/_general_hooks.php:958
|
||||
msgid "Login/Register"
|
||||
msgstr ""
|
||||
|
||||
@ -7536,7 +7536,7 @@ msgstr ""
|
||||
msgid "Maximum site width in pixels, should not be less than 896. Default 960."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-shortcodes.php:1416
|
||||
#: includes/functions/_setup-shortcodes.php:1418
|
||||
msgid "Message sent!"
|
||||
msgstr ""
|
||||
|
||||
@ -7692,7 +7692,7 @@ msgstr ""
|
||||
msgid "Mobile Menu Style"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-theme.php:2051
|
||||
#: includes/functions/_setup-theme.php:2071
|
||||
msgid "Mobile Navigation Menu"
|
||||
msgstr ""
|
||||
|
||||
@ -7859,7 +7859,7 @@ msgstr ""
|
||||
msgid "Navigation"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-theme.php:2033
|
||||
#: includes/functions/_setup-theme.php:2053
|
||||
msgid "Navigation Bar"
|
||||
msgstr ""
|
||||
|
||||
@ -7867,7 +7867,7 @@ msgstr ""
|
||||
msgid "Navigation Item Font"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-theme.php:2042
|
||||
#: includes/functions/_setup-theme.php:2062
|
||||
msgid "Navigation Menu"
|
||||
msgstr ""
|
||||
|
||||
@ -7949,7 +7949,7 @@ msgstr ""
|
||||
msgid "No chapters found."
|
||||
msgstr ""
|
||||
|
||||
#: author.php:62 includes/functions/_setup-shortcodes.php:1053
|
||||
#: author.php:62 includes/functions/_setup-shortcodes.php:1055
|
||||
#: includes/functions/hooks/_story_hooks.php:735
|
||||
msgid "No chapters published yet."
|
||||
msgstr ""
|
||||
@ -7967,7 +7967,7 @@ msgid "No collections found."
|
||||
msgstr ""
|
||||
|
||||
#: partials/_card-story.php:159 partials/_card-collection.php:136
|
||||
#: partials/_card-chapter.php:182
|
||||
#: partials/_card-chapter.php:186
|
||||
#: includes/functions/_setup-meta-fields.php:4290
|
||||
msgid "No description provided yet."
|
||||
msgstr ""
|
||||
@ -8025,7 +8025,7 @@ msgid "No recommendations published yet."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_helpers-query.php:44
|
||||
#: includes/functions/hooks/_general_hooks.php:916
|
||||
#: includes/functions/hooks/_general_hooks.php:927
|
||||
msgid "No results."
|
||||
msgstr ""
|
||||
|
||||
@ -8051,10 +8051,10 @@ msgstr ""
|
||||
msgid "No stories published yet."
|
||||
msgstr ""
|
||||
|
||||
#: partials/_latest-stories.php:307
|
||||
#: partials/_latest-recommendations-compact.php:259
|
||||
#: partials/_latest-stories-compact.php:319
|
||||
#: partials/_latest-recommendations.php:272 partials/_latest-updates.php:423
|
||||
#: partials/_latest-stories.php:310
|
||||
#: partials/_latest-recommendations-compact.php:262
|
||||
#: partials/_latest-stories-compact.php:322
|
||||
#: partials/_latest-recommendations.php:275 partials/_latest-updates.php:426
|
||||
msgid "No taxonomies specified yet."
|
||||
msgstr ""
|
||||
|
||||
@ -8109,15 +8109,15 @@ msgstr ""
|
||||
msgid "Not the author of the comment."
|
||||
msgstr ""
|
||||
|
||||
#: partials/_latest-chapters-compact.php:316 partials/_latest-stories.php:377
|
||||
#: partials/_latest-recommendations-compact.php:274
|
||||
#: partials/_latest-stories-compact.php:391
|
||||
#: partials/_latest-updates-list.php:369
|
||||
#: partials/_latest-recommendations.php:289 partials/_article-cards.php:332
|
||||
#: partials/_latest-chapters-list.php:326 partials/_latest-updates.php:489
|
||||
#: partials/_latest-stories-list.php:333
|
||||
#: partials/_latest-updates-compact.php:375 partials/_latest-posts.php:137
|
||||
#: partials/_latest-chapters.php:385
|
||||
#: partials/_latest-chapters-compact.php:319 partials/_latest-stories.php:380
|
||||
#: partials/_latest-recommendations-compact.php:277
|
||||
#: partials/_latest-stories-compact.php:394
|
||||
#: partials/_latest-updates-list.php:372
|
||||
#: partials/_latest-recommendations.php:292 partials/_article-cards.php:335
|
||||
#: partials/_latest-chapters-list.php:333 partials/_latest-updates.php:492
|
||||
#: partials/_latest-stories-list.php:336
|
||||
#: partials/_latest-updates-compact.php:378 partials/_latest-posts.php:140
|
||||
#: partials/_latest-chapters.php:392
|
||||
msgid "Nothing to show."
|
||||
msgstr ""
|
||||
|
||||
@ -8222,10 +8222,10 @@ msgid ""
|
||||
"snippets. Incompatible with SEO plugins."
|
||||
msgstr ""
|
||||
|
||||
#: partials/_latest-chapters-compact.php:218
|
||||
#: partials/_latest-recommendations-compact.php:188
|
||||
#: partials/_latest-stories-compact.php:247
|
||||
#: partials/_latest-updates-compact.php:261
|
||||
#: partials/_latest-chapters-compact.php:221
|
||||
#: partials/_latest-recommendations-compact.php:191
|
||||
#: partials/_latest-stories-compact.php:250
|
||||
#: partials/_latest-updates-compact.php:264
|
||||
msgid "Open info box"
|
||||
msgstr ""
|
||||
|
||||
@ -8262,7 +8262,7 @@ msgstr ""
|
||||
msgid "Optional, leave empty to hide."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:719
|
||||
#: includes/functions/hooks/_general_hooks.php:730
|
||||
msgid "Order By"
|
||||
msgstr ""
|
||||
|
||||
@ -8304,7 +8304,7 @@ msgstr ""
|
||||
msgid "Page Assignments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-theme.php:2069
|
||||
#: includes/functions/_setup-theme.php:2089
|
||||
msgid "Page Background"
|
||||
msgstr ""
|
||||
|
||||
@ -8331,7 +8331,7 @@ msgstr ""
|
||||
msgid "Page Style"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-theme.php:1859
|
||||
#: includes/functions/_setup-theme.php:1879
|
||||
msgctxt "Pagination jump prompt."
|
||||
msgid "Enter page number:"
|
||||
msgstr ""
|
||||
@ -8432,36 +8432,36 @@ msgstr ""
|
||||
msgid "Password required. Comments could not be loaded."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:736
|
||||
#: includes/functions/hooks/_general_hooks.php:747
|
||||
#, php-format
|
||||
msgid "Past %s Days"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:657
|
||||
#: includes/functions/hooks/_general_hooks.php:668
|
||||
msgid "Past 24 Hours"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:661
|
||||
#: includes/functions/hooks/_general_hooks.php:672
|
||||
msgid "Past 3 Days"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:673
|
||||
#: includes/functions/hooks/_general_hooks.php:684
|
||||
msgid "Past 3 Months"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:677
|
||||
#: includes/functions/hooks/_general_hooks.php:688
|
||||
msgid "Past 6 Months"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:669
|
||||
#: includes/functions/hooks/_general_hooks.php:680
|
||||
msgid "Past Month"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:665
|
||||
#: includes/functions/hooks/_general_hooks.php:676
|
||||
msgid "Past Week"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:681
|
||||
#: includes/functions/hooks/_general_hooks.php:692
|
||||
msgid "Past Year"
|
||||
msgstr ""
|
||||
|
||||
@ -8691,11 +8691,11 @@ msgstr ""
|
||||
msgid "Play"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:905
|
||||
#: includes/functions/hooks/_general_hooks.php:916
|
||||
msgid "Please enter search parameters."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-shortcodes.php:1403
|
||||
#: includes/functions/_setup-shortcodes.php:1405
|
||||
msgid "Please enter your message."
|
||||
msgstr ""
|
||||
|
||||
@ -8730,7 +8730,7 @@ msgstr ""
|
||||
msgid "Post relationship registry reset."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:704
|
||||
#: includes/functions/hooks/_general_hooks.php:715
|
||||
msgid "Post Type"
|
||||
msgstr ""
|
||||
|
||||
@ -8952,7 +8952,7 @@ msgctxt "Prompt deletion confirmation string."
|
||||
msgid "DELETE"
|
||||
msgstr ""
|
||||
|
||||
#: partials/_article-cards.php:100
|
||||
#: partials/_article-cards.php:101
|
||||
msgctxt "Protected post content obfuscation character."
|
||||
msgid "· "
|
||||
msgstr ""
|
||||
@ -8961,11 +8961,11 @@ msgstr ""
|
||||
msgid "Provided post ID is not a story ID."
|
||||
msgstr ""
|
||||
|
||||
#: partials/_card-story.php:259 partials/_latest-stories.php:336
|
||||
#: partials/_story-footer.php:39 partials/_latest-stories-compact.php:349
|
||||
#: partials/_card-page.php:88 partials/_article-cards.php:297
|
||||
#: partials/_card-story.php:259 partials/_latest-stories.php:339
|
||||
#: partials/_story-footer.php:39 partials/_latest-stories-compact.php:352
|
||||
#: partials/_card-page.php:88 partials/_article-cards.php:300
|
||||
#: partials/_card-collection.php:214 partials/_card-post.php:112
|
||||
#: partials/_latest-chapters.php:340 partials/_card-chapter.php:252
|
||||
#: partials/_latest-chapters.php:347 partials/_card-chapter.php:256
|
||||
#: includes/functions/_helpers-templates.php:1640
|
||||
msgid "Published"
|
||||
msgstr ""
|
||||
@ -9011,7 +9011,7 @@ msgstr ""
|
||||
msgid "Quick buttons to wrap text selection in BBCodes."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-theme.php:1866
|
||||
#: includes/functions/_setup-theme.php:1886
|
||||
msgid ""
|
||||
"Quote appended to comment!<br><a style=\"font-weight: 700;\" "
|
||||
"href=\"#comments\">Go to comment section.</a>"
|
||||
@ -9027,7 +9027,7 @@ msgctxt "Rate for text-to-speech voice."
|
||||
msgid "Rate"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-theme.php:1860
|
||||
#: includes/functions/_setup-theme.php:1880
|
||||
msgctxt "Rate limit reached notification."
|
||||
msgid "Slow down."
|
||||
msgstr ""
|
||||
@ -9042,7 +9042,7 @@ msgid ""
|
||||
"your stories (metadata only)."
|
||||
msgstr ""
|
||||
|
||||
#: partials/_post.php:23 partials/_latest-posts.php:97
|
||||
#: partials/_post.php:23 partials/_latest-posts.php:100
|
||||
#, php-format
|
||||
msgctxt "Read more link aria label"
|
||||
msgid "Continue reading %s"
|
||||
@ -9130,7 +9130,7 @@ msgstr ""
|
||||
#. Name of the template
|
||||
#: recommendations.php:2 recommendations.php:67 author.php:68
|
||||
#: single-fcn_recommendation.php:97
|
||||
#: includes/functions/hooks/_general_hooks.php:616
|
||||
#: includes/functions/hooks/_general_hooks.php:627
|
||||
msgid "Recommendations"
|
||||
msgstr ""
|
||||
|
||||
@ -9210,7 +9210,7 @@ msgstr ""
|
||||
msgid "Reminders could not be cleared."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-theme.php:1863
|
||||
#: includes/functions/_setup-theme.php:1883
|
||||
msgid "Reminders re-synchronized."
|
||||
msgstr ""
|
||||
|
||||
@ -9407,7 +9407,7 @@ msgstr ""
|
||||
msgid "Reset Colors"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-shortcodes.php:1017
|
||||
#: includes/functions/_setup-shortcodes.php:1019
|
||||
msgid "Reset Consent"
|
||||
msgstr ""
|
||||
|
||||
@ -9810,7 +9810,7 @@ msgstr ""
|
||||
msgid "Select which tiers ignore the password."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-shortcodes.php:1416
|
||||
#: includes/functions/_setup-shortcodes.php:1418
|
||||
msgid "Sending…"
|
||||
msgstr ""
|
||||
|
||||
@ -10300,40 +10300,40 @@ msgstr ""
|
||||
msgid "Small Border Radius"
|
||||
msgstr ""
|
||||
|
||||
#: partials/_latest-recommendations.php:228
|
||||
#: partials/_latest-recommendations.php:231
|
||||
#, php-format
|
||||
msgctxt "Small card: by {Author} on."
|
||||
msgid "by %s on"
|
||||
msgstr ""
|
||||
|
||||
#: partials/_latest-stories.php:270
|
||||
#: partials/_latest-recommendations-compact.php:218
|
||||
#: partials/_latest-stories-compact.php:283 partials/_latest-updates.php:334
|
||||
#: partials/_latest-updates-compact.php:297
|
||||
#: partials/_latest-stories.php:273
|
||||
#: partials/_latest-recommendations-compact.php:221
|
||||
#: partials/_latest-stories-compact.php:286 partials/_latest-updates.php:337
|
||||
#: partials/_latest-updates-compact.php:300
|
||||
#, php-format
|
||||
msgctxt "Small card: by {Author} —."
|
||||
msgid "by %s —"
|
||||
msgstr ""
|
||||
|
||||
#: partials/_latest-chapters-compact.php:258 partials/_latest-chapters.php:278
|
||||
#: partials/_latest-chapters-compact.php:261 partials/_latest-chapters.php:285
|
||||
#, php-format
|
||||
msgctxt "Small card: by {Author}."
|
||||
msgid "by %s"
|
||||
msgstr ""
|
||||
|
||||
#: partials/_latest-chapters-compact.php:267 partials/_latest-chapters.php:287
|
||||
#: partials/_latest-chapters-compact.php:270 partials/_latest-chapters.php:294
|
||||
#, php-format
|
||||
msgctxt "Small card: in {Link to Story}."
|
||||
msgid "in <a href=\"%1$s\" class=\"bold-link\">%2$s</a>"
|
||||
msgstr ""
|
||||
|
||||
#: partials/_latest-chapters-compact.php:280
|
||||
#: partials/_latest-chapters-compact.php:283
|
||||
#, php-format
|
||||
msgctxt "Small card: {n} Words on {Date}."
|
||||
msgid "%1$s Words on %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: partials/_latest-chapters-compact.php:287
|
||||
#: partials/_latest-chapters-compact.php:290
|
||||
#, php-format
|
||||
msgctxt "Small card: {n} Words."
|
||||
msgid "%1$s Words"
|
||||
@ -10376,22 +10376,22 @@ msgid ""
|
||||
"depends on the browser and OS."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:631
|
||||
#: includes/functions/hooks/_general_hooks.php:642
|
||||
msgctxt "Sort and filter option."
|
||||
msgid "Published"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:635
|
||||
#: includes/functions/hooks/_general_hooks.php:646
|
||||
msgctxt "Sort and filter option."
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:627
|
||||
#: includes/functions/hooks/_general_hooks.php:638
|
||||
msgctxt "Sort and filter option."
|
||||
msgid "Updated"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:642
|
||||
#: includes/functions/hooks/_general_hooks.php:653
|
||||
msgctxt "Sort and filter option."
|
||||
msgid "Words"
|
||||
msgstr ""
|
||||
@ -10412,19 +10412,19 @@ msgstr ""
|
||||
msgid "Spam"
|
||||
msgstr ""
|
||||
|
||||
#: partials/_showcase.php:117 partials/_latest-chapters-compact.php:135
|
||||
#: partials/_latest-stories.php:140
|
||||
#: partials/_latest-recommendations-compact.php:114
|
||||
#: partials/_latest-stories-compact.php:139
|
||||
#: partials/_latest-updates-list.php:151
|
||||
#: partials/_latest-recommendations.php:111 partials/_article-cards.php:139
|
||||
#: partials/_latest-chapters-list.php:140 partials/_latest-updates.php:154
|
||||
#: partials/_latest-stories-list.php:140
|
||||
#: partials/_latest-updates-compact.php:148 partials/_latest-chapters.php:140
|
||||
#: partials/_showcase.php:120 partials/_latest-chapters-compact.php:138
|
||||
#: partials/_latest-stories.php:143
|
||||
#: partials/_latest-recommendations-compact.php:117
|
||||
#: partials/_latest-stories-compact.php:142
|
||||
#: partials/_latest-updates-list.php:154
|
||||
#: partials/_latest-recommendations.php:114 partials/_article-cards.php:142
|
||||
#: partials/_latest-chapters-list.php:143 partials/_latest-updates.php:157
|
||||
#: partials/_latest-stories-list.php:143
|
||||
#: partials/_latest-updates-compact.php:151 partials/_latest-chapters.php:143
|
||||
msgid "Splide JSON is invalid and has been ignored."
|
||||
msgstr ""
|
||||
|
||||
#: partials/_latest-chapters.php:295
|
||||
#: partials/_latest-chapters.php:302
|
||||
msgctxt "Spoiler obfuscation character."
|
||||
msgid "· "
|
||||
msgstr ""
|
||||
@ -10480,7 +10480,7 @@ msgstr ""
|
||||
#: stories.php:114 author.php:38 author.php:137 single-fcn_chapter.php:223
|
||||
#: partials/_card-collection.php:207 partials/_collection-statistics.php:35
|
||||
#: includes/functions/_setup-types-and-terms.php:116
|
||||
#: includes/functions/hooks/_general_hooks.php:604
|
||||
#: includes/functions/hooks/_general_hooks.php:615
|
||||
#: includes/functions/hooks/_story_hooks.php:33
|
||||
msgid "Stories"
|
||||
msgstr ""
|
||||
@ -10676,7 +10676,7 @@ msgctxt "Story global note meta field label."
|
||||
msgid "Global Note"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-theme.php:2060
|
||||
#: includes/functions/_setup-theme.php:2080
|
||||
msgid "Story Header"
|
||||
msgstr ""
|
||||
|
||||
@ -10692,7 +10692,7 @@ msgstr ""
|
||||
msgid "Story ID did not pass validation."
|
||||
msgstr ""
|
||||
|
||||
#: partials/_latest-chapters-list.php:244
|
||||
#: partials/_latest-chapters-list.php:251
|
||||
#, php-format
|
||||
msgctxt "Story in Latest * shortcode (type: list)."
|
||||
msgid ""
|
||||
@ -10840,7 +10840,7 @@ msgstr ""
|
||||
msgid "Subitem short date format"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-shortcodes.php:1344
|
||||
#: includes/functions/_setup-shortcodes.php:1346
|
||||
#: includes/functions/settings/_settings_page_setup.php:142
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
@ -10885,7 +10885,7 @@ msgstr ""
|
||||
msgid "Suggest color-coded text changes in the comments."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-theme.php:1865
|
||||
#: includes/functions/_setup-theme.php:1885
|
||||
msgid ""
|
||||
"Suggestion appended to comment!<br><a style=\"font-weight: 700;\" "
|
||||
"href=\"#comments\">Go to comment section.</a>"
|
||||
@ -11144,7 +11144,7 @@ msgid ""
|
||||
"it may require more server resources."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-theme.php:1869
|
||||
#: includes/functions/_setup-theme.php:1889
|
||||
msgid ""
|
||||
"The associated email address is already taken. You can link additional "
|
||||
"accounts in your profile."
|
||||
@ -11189,6 +11189,10 @@ msgstr ""
|
||||
msgid "The name of the author. Separate multiple authors with commas."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-theme.php:2398
|
||||
msgid "The Page Optimize plugin has been disabled due to compatibility issues."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/settings/_settings_actions.php:141
|
||||
msgid "The Patreon access token could not be retrieved."
|
||||
msgstr ""
|
||||
@ -11389,7 +11393,7 @@ msgctxt "Thumbnail link title"
|
||||
msgid "Link to %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:743
|
||||
#: includes/functions/hooks/_general_hooks.php:754
|
||||
msgid "Time Range"
|
||||
msgstr ""
|
||||
|
||||
@ -11409,7 +11413,7 @@ msgid ""
|
||||
"the Elementor plugin."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:754
|
||||
#: includes/functions/hooks/_general_hooks.php:765
|
||||
#: includes/functions/hooks/_story_hooks.php:346
|
||||
msgid "Toggle between ascending and descending order"
|
||||
msgstr ""
|
||||
@ -11422,8 +11426,8 @@ msgstr ""
|
||||
msgid "Toggle between list and grid view"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-shortcodes.php:1047
|
||||
#: includes/functions/_setup-shortcodes.php:1177
|
||||
#: includes/functions/_setup-shortcodes.php:1049
|
||||
#: includes/functions/_setup-shortcodes.php:1179
|
||||
#: includes/functions/hooks/_story_hooks.php:601
|
||||
#, php-format
|
||||
msgid "Toggle chapter group: %s"
|
||||
@ -11485,9 +11489,9 @@ msgstr ""
|
||||
msgid "Top Web Fiction"
|
||||
msgstr ""
|
||||
|
||||
#: partials/_card-story.php:255 partials/_latest-stories.php:327
|
||||
#: partials/_story-footer.php:42 partials/_latest-stories-compact.php:340
|
||||
#: partials/_card-collection.php:211 partials/_latest-updates.php:443
|
||||
#: partials/_card-story.php:255 partials/_latest-stories.php:330
|
||||
#: partials/_story-footer.php:42 partials/_latest-stories-compact.php:343
|
||||
#: partials/_card-collection.php:211 partials/_latest-updates.php:446
|
||||
msgid "Total Words"
|
||||
msgstr ""
|
||||
|
||||
@ -11548,7 +11552,7 @@ msgstr ""
|
||||
msgid "Unapprove"
|
||||
msgstr ""
|
||||
|
||||
#: partials/_card-chapter.php:94
|
||||
#: partials/_card-chapter.php:98
|
||||
msgid "Unavailable"
|
||||
msgstr ""
|
||||
|
||||
@ -11557,7 +11561,7 @@ msgctxt "Undefined recommendation author."
|
||||
msgid "Undefined"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/hooks/_general_hooks.php:702
|
||||
#: includes/functions/hooks/_general_hooks.php:713
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
@ -12217,15 +12221,15 @@ msgctxt "Word count in chapter list."
|
||||
msgid "%s Words"
|
||||
msgstr ""
|
||||
|
||||
#: partials/_latest-updates-list.php:277 partials/_latest-chapters-list.php:256
|
||||
#: partials/_latest-stories-list.php:239
|
||||
#: partials/_latest-updates-list.php:280 partials/_latest-chapters-list.php:263
|
||||
#: partials/_latest-stories-list.php:242
|
||||
#, php-format
|
||||
msgctxt "Word count in Latest * shortcode (type: list)."
|
||||
msgid "%s Words"
|
||||
msgstr ""
|
||||
|
||||
#: partials/_card-story.php:210 partials/_latest-chapters.php:330
|
||||
#: partials/_card-chapter.php:208 partials/_card-chapter.php:248
|
||||
#: partials/_card-story.php:210 partials/_latest-chapters.php:337
|
||||
#: partials/_card-chapter.php:212 partials/_card-chapter.php:252
|
||||
#: includes/functions/settings/_settings_page_epubs.php:83
|
||||
msgid "Words"
|
||||
msgstr ""
|
||||
@ -12486,7 +12490,7 @@ msgid ""
|
||||
"scripts not loading."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/_setup-theme.php:1871
|
||||
#: includes/functions/_setup-theme.php:1891
|
||||
msgid ""
|
||||
"Your account has been successfully linked. <strong>Hint:</strong> You can "
|
||||
"change your display name in your profile and link additional accounts."
|
||||
|
Loading…
x
Reference in New Issue
Block a user