Skip to content

Commit

Permalink
Kigen: Fix text domain in the footers (#7192)
Browse files Browse the repository at this point in the history
* Kigen: Fix text domain in the footers

* Version bump

---------

Co-authored-by: Vicente Canales <[email protected]>
  • Loading branch information
iamtakashi and Vicente Canales authored Jul 4, 2023
1 parent d97a27f commit 05b60ef
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 15 deletions.
11 changes: 4 additions & 7 deletions kigen/patterns/footer-2.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,11 @@
?>

<!-- wp:paragraph {"style":{"spacing":{"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}},"fontSize":"x-small"} -->
<p class="has-x-small-font-size" style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px">
<?php
$wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'lineup' ) ) . '" rel="nofollow">WordPress</a>';
<p class="has-x-small-font-size" style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px"><?php
$wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'kigen' ) ) . '" rel="nofollow">WordPress</a>';
echo sprintf(
/* Translators: WordPress link. */
esc_html__( 'Designed with %1$s', 'lineup' ),
esc_html__( 'Designed with %1$s', 'kigen' ),
$wordpress_link
);
?>
</p>
);?></p>
<!-- /wp:paragraph -->
11 changes: 4 additions & 7 deletions kigen/patterns/footer.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,13 @@
<!-- wp:navigation {"style":{"spacing":{"blockGap":"var:preset|spacing|30"}},"fontSize":"x-small"} /-->

<!-- wp:paragraph {"align":"right","className":"has-x-small-font-size","fontSize":"x-small"} -->
<p class="has-text-align-right has-x-small-font-size">
<?php
$wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'lineup' ) ) . '" rel="nofollow">WordPress</a>';
<p class="has-text-align-right has-x-small-font-size"><?php
$wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'kigen' ) ) . '" rel="nofollow">WordPress</a>';
echo sprintf(
/* Translators: WordPress link. */
esc_html__( 'Designed with %1$s', 'lineup' ),
esc_html__( 'Designed with %1$s', 'kigen' ),
$wordpress_link
);
?>
</p>
);?></p>
<!-- /wp:paragraph -->
</div>
<!-- /wp:group -->
Expand Down
3 changes: 3 additions & 0 deletions kigen/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ Kigen is a simple portfolio theme

== Changelog ==

= 1.0.1 =
* Kigen: Fix text domain in the footers

= 1.0 =
* Initial release

Expand Down
2 changes: 1 addition & 1 deletion kigen/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Description: Kigen is a simple portfolio theme
Requires at least: 5.8
Tested up to: 6.1.1
Requires PHP: 5.7
Version: 1.0.0
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Template:
Expand Down

0 comments on commit 05b60ef

Please sign in to comment.