Changeset 14418
- Timestamp:
- 04/11/2025 06:01:19 AM (2 months ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-breathe-2024
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-breathe-2024/functions.php
r14405 r14418 63 63 if ( is_callable( 'global_fonts_preload' ) ) { 64 64 /* translators: Subsets can be any of cyrillic, cyrillic-ext, greek, greek-ext, vietnamese, latin, latin-ext. */ 65 $subsets = _x( 'Latin', 'Heading font subsets, comma separated', 'wporg -breathe' );65 $subsets = _x( 'Latin', 'Heading font subsets, comma separated', 'wporg' ); 66 66 // All headings. 67 67 global_fonts_preload( 'Inter', $subsets ); … … 194 194 $redirect_url = home_url( $wp->request ); 195 195 $login_item = array( 196 'label' => __( 'Log in', 'wporg -breathe' ),196 'label' => __( 'Log in', 'wporg' ), 197 197 'url' => wp_login_url( $redirect_url ), 198 198 ); … … 678 678 ?> 679 679 <nav role="navigation" id="<?php echo esc_attr( $nav_id ); ?>" class="<?php echo $nav_class; ?>"> 680 <h2 class="screen-reader-text"><?php _e( 'Post navigation', ' p2-breathe' ); ?></h2>680 <h2 class="screen-reader-text"><?php _e( 'Post navigation', 'wporg' ); ?></h2> 681 681 682 682 <?php if ( is_single() ) : // navigation links for single posts ?> 683 683 684 <?php previous_post_link( '<div class="nav-previous">%link</div>', '<span class="meta-nav">' . _x( '←', 'Previous post link', ' p2-breathe' ) . '</span> %title' ); ?>685 <?php next_post_link( '<div class="nav-next">%link</div>', '%title <span class="meta-nav">' . _x( '→', 'Next post link', ' p2-breathe' ) . '</span>' ); ?>684 <?php previous_post_link( '<div class="nav-previous">%link</div>', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'wporg' ) . '</span> %title' ); ?> 685 <?php next_post_link( '<div class="nav-next">%link</div>', '%title <span class="meta-nav">' . _x( '→', 'Next post link', 'wporg' ) . '</span>' ); ?> 686 686 687 687 <?php elseif ( $wp_query->max_num_pages > 1 && ( is_home() || is_archive() || is_search() ) ) : // navigation links for home, archive, and search pages ?> 688 688 689 689 <?php if ( get_next_posts_link() ) : ?> 690 <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', ' p2-breathe' ) ); ?></div>690 <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'wporg' ) ); ?></div> 691 691 <?php endif; ?> 692 692 693 693 <?php if ( get_previous_posts_link() ) : ?> 694 <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', ' p2-breathe' ) ); ?></div>694 <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'wporg' ) ); ?></div> 695 695 <?php endif; ?> 696 696 … … 727 727 '/<a\b[^>]*>(.*?)<\/a>/', 728 728 '<a target="_self" rel="home" href="' . esc_url( $make_home_url ) . '">' . 729 esc_html__( 'Make WordPress', 'wporg -breathe' ) .729 esc_html__( 'Make WordPress', 'wporg' ) . 730 730 '</a>', 731 731 $block_content -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-breathe-2024/header.php
r14195 r14418 40 40 $before_name, 41 41 $is_updates_or_project 42 ? esc_html__( 'Make WordPress', 'wporg -breathe' )42 ? esc_html__( 'Make WordPress', 'wporg' ) 43 43 : esc_html( get_bloginfo('name') ) 44 44 )
Note: See TracChangeset
for help on using the changeset viewer.