Skip to content

Commit 961d1f3

Browse files
authored
correct directive matching translators comment (#240)
1 parent 7764721 commit 961d1f3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

wp-multi-network/includes/metaboxes/move-site.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ function wpmn_move_site_assign_metabox( $site = null ) {
9191
<?php
9292
printf(
9393
/* translators: %s: site registration date */
94-
esc_html__( 'Created: %1$s', 'wp-multi-network' ),
94+
esc_html__( 'Created: %s', 'wp-multi-network' ),
9595
'<strong>' . esc_html( $site->registered ) . '</strong>'
9696
);
9797
?>
@@ -102,7 +102,7 @@ function wpmn_move_site_assign_metabox( $site = null ) {
102102
<?php
103103
printf(
104104
/* translators: %s: site domain */
105-
esc_html__( 'Domain: %1$s', 'wp-multi-network' ),
105+
esc_html__( 'Domain: %s', 'wp-multi-network' ),
106106
'<strong>' . esc_html( $site->domain ) . '</strong>'
107107
);
108108
?>
@@ -113,7 +113,7 @@ function wpmn_move_site_assign_metabox( $site = null ) {
113113
<?php
114114
printf(
115115
/* translators: %s: site path */
116-
esc_html__( 'Path: %1$s', 'wp-multi-network' ),
116+
esc_html__( 'Path: %s', 'wp-multi-network' ),
117117
'<strong>' . esc_html( $site->path ) . '</strong>'
118118
);
119119
?>

0 commit comments

Comments
 (0)