Skip to content

Commit

Permalink
little bid formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
bueltge committed Jun 14, 2018
1 parent e40f49d commit 213ccd3
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions patterns/admin-notices.php
Expand Up @@ -29,7 +29,7 @@
<?php
printf(
// translators: Leave always a hint for translators to understand the placeholders.
esc_attr__( 'class %s with paragraph and %2$s class', 'WpAdminStyle' ),
esc_attr__( 'class %1$s with paragraph and %2$s class', 'WpAdminStyle' ),
'<code>.notice-error</code>',
'<code>.inline</code>'
);
Expand All @@ -52,7 +52,8 @@

<div class="notice notice-success inline">
<p>
<?php printf(
<?php
printf(
// translators: Leave always a hint for translators to understand the placeholders.
esc_html__( 'class %1$s with paragraph and %2$s class', 'WpAdminStyle' ),
'<code>.notice-success</code>',
Expand All @@ -64,9 +65,10 @@

<div class="notice notice-info is-dismissible inline">
<p>
<?php printf(
<?php
printf(
// translators: Leave always a hint for translators to understand the placeholders.
esc_attr__( 'class %1$s with paragraph include %2$s and %3$s class','WpAdminStyle' ),
esc_attr__( 'class %1$s with paragraph include %2$s and %3$s class', 'WpAdminStyle' ),
'<code>.notice-info</code>',
'<code>.is-dismissible</code>',
'<code>.inline</code>'
Expand Down

0 comments on commit 213ccd3

Please sign in to comment.