From f21b6133bfd492fe672457fbf7cc53afa8a53f8f Mon Sep 17 00:00:00 2001 From: John Fraskos Date: Tue, 5 Dec 2023 18:43:56 +0200 Subject: [PATCH] Update Core.php Added some more strings that were used on templates and loop patterns --- inc/Core.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/inc/Core.php b/inc/Core.php index 3b0689b..8db274b 100644 --- a/inc/Core.php +++ b/inc/Core.php @@ -148,6 +148,19 @@ public function strings( $strings = array() ) { // FAQ patterns. 'faq_section_title' => __( 'Frequently Asked Questions', 'raft' ), 'faq_title' => __( 'Just a frequent question', 'raft' ), + + // Portfolio patterns. + 'portfolio_section_title' => __( 'Explore my work', 'raft' ), + 'portfolio_title' => __( 'A portfolio title', 'raft' ), + 'portfolio_client' => __( 'Client Name', 'raft' ), + + // Loops and other. + 'read_more' => __( 'Read more', 'raft' ), + 'continue_reading' => __( 'Continue reading', 'raft' ), + 'no_posts_found' => __( 'Unfortunately no posts were found', 'raft' ), + 'search' => __( 'Search for a keyword...', 'raft' ), + '404' => __( '404', 'raft' ), + 'page_not_found' => __( 'Unfortunately the page was not found.', 'raft' ), // Content Patterns. 'content_title' => __( 'A generic content title', 'raft' ),