further translation tweaks

This commit is contained in:
Jonas Heinrich 2020-04-27 21:16:39 +02:00
parent 8318c715fb
commit 4b401a4623
6 changed files with 62 additions and 5 deletions

View file

@ -9,7 +9,7 @@ get_header();
<div class="headline-element" id="c145">
<h2><?php _e('Search'); ?></h2>
<h2><?php _e('Search', 'kit'); ?></h2>
</div>
<div id="c139" class="frame frame-default frame-type-list frame-layout-0">
@ -23,12 +23,12 @@ get_header();
<form method="get" role="search" action="<?php echo site_url(/); ?>">
<fieldset>
<div class="tx-indexedsearch-form">
<label for="tx-indexedsearch-searchbox-sword"><?php _e('Search for:'); ?></label>
<label for="tx-indexedsearch-searchbox-sword"><?php _e('Search for', 'kit'); ?>:</label>
<input class="tx-indexedsearch-searchbox-sword" type="text" name="s" value="<?php the_search_query(); ?>" />
</div>
<div class="tx-indexedsearch-search-submit">
<button type="submit" class="tx-indexedsearch-searchbox-button" />
<span><?php _e('Search'); ?></span>
<span><?php _e('Search', 'kit'); ?></span>
</button>
</div>
</fieldset>
@ -46,7 +46,7 @@ get_header();
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$post_count_start = (($paged -1) * 10) + 1;
$post_count_end = ((($paged -1) * 10) + $wp_query->post_count);
_e("Showing results from") . _e(" <strong>" . $post_count_start . " to " . $post_count_end . "</strong>. Total results: <strong>" . $wp_query->found_posts. "</strong>");
_e("Showing results from", 'kit') . _e(" <strong>" . $post_count_start . " to " . $post_count_end . "</strong>. Total results: <strong>" . $wp_query->found_posts. "</strong>");
?>
</p>