__( 'Skip to content', 'bstone' ), // Blog Default Strings. 'string-blog-navigation-next' => __( 'Next Page', 'bstone' ) . ' ', 'string-blog-navigation-previous' => ' ' . __( 'Previous Page', 'bstone' ), 'string-single-page-links-before' => __( 'Pages:', 'bstone' ), 'string-blog-navigation-next' => __( 'Next Page', 'bstone' ) . ' ', 'string-blog-navigation-previous' => ' ' . __( 'Previous Page', 'bstone' ), 'string-post-by-title' => __( 'Posts by', 'bstone' ), // Single Post Default Strings. 'string-single-page-links-before' => __( 'Pages:', 'bstone' ), /* translators: 1: Post type label */ 'string-single-navigation-next' => __( 'Next %s', 'bstone' ) . ' ', /* translators: 1: Post type label */ 'string-single-navigation-previous' => ' ' . __( 'Previous %s', 'bstone' ), 'string-related-posts-title' => __( 'Related Posts', 'bstone' ), // Content None. 'string-content-nothing-found-message' => __( 'It seems we can’t find what you’re looking for. Perhaps searching can help.', 'bstone' ), // Search Page Strings. 'string-search-nothing-found' => __( 'Nothing Found', 'bstone' ), 'string-search-nothing-found-message' => __( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'bstone' ), 'string-full-width-search-message' => __( 'Start typing and press enter to search', 'bstone' ), 'string-full-width-search-placeholder' => __( 'Start Typing…', 'bstone' ), 'string-header-cover-search-placeholder' => __( 'Start Typing…', 'bstone' ), 'string-search-input-placeholder' => __( 'Search …', 'bstone' ), // Breadcrumb Strings 'string-breadcrumb-home' => __( 'Home', 'bstone' ), 'string-breadcrumb-author-archive' => __( 'Author archive for ', 'bstone' ), 'string-breadcrumb-search' => __( 'Search query for: ', 'bstone' ), 'string-breadcrumb-not-found' => __( 'Error 404: ', 'bstone' ), ) ); if ( is_rtl() ) { $defaults['string-blog-navigation-next'] = __( 'Next Page', 'bstone' ) . ' '; $defaults['string-blog-navigation-previous'] = ' ' . __( 'Previous Page', 'bstone' ); /* translators: 1: Post type label */ $defaults['string-single-navigation-next'] = __( 'Next %s', 'bstone' ) . ' '; /* translators: 1: Post type label */ $defaults['string-single-navigation-previous'] = ' ' . __( 'Previous %s', 'bstone' ); } $output = isset( $defaults[ $key ] ) ? $defaults[ $key ] : ''; /** * Print or return */ if ( $echo ) { echo $output; } else { return $output; } } }// End if().