Fix indentation

This commit is contained in:
IanDelMar 2018-11-19 00:38:50 +01:00
parent b1f541fcfc
commit 8ecfeb4436
1 changed files with 35 additions and 31 deletions

View File

@ -32,15 +32,19 @@ if ( ! function_exists( 'understrap_add_site_info' ) ) {
esc_url( __( 'http://wordpress.org/', 'understrap' ) ),
sprintf(
/* translators:*/
esc_html__( 'Proudly powered by %s', 'understrap' ), 'WordPress'
esc_html__( 'Proudly powered by %s', 'understrap' ),
'WordPress'
),
sprintf( // WPCS: XSS ok.
/* translators:*/
esc_html__( 'Theme: %1$s by %2$s.', 'understrap' ), $the_theme->get( 'Name' ), '<a href="' . esc_url( __( 'http://understrap.com', 'understrap' ) ) . '">understrap.com</a>'
esc_html__( 'Theme: %1$s by %2$s.', 'understrap' ),
$the_theme->get( 'Name' ),
'<a href="' . esc_url( __( 'http://understrap.com', 'understrap' ) ) . '">understrap.com</a>'
),
sprintf( // WPCS: XSS ok.
/* translators:*/
esc_html__( 'Version: %1$s', 'understrap' ), $the_theme->get( 'Version' )
esc_html__( 'Version: %1$s', 'understrap' ),
$the_theme->get( 'Version' )
)
);